/* hero.css */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grayscale {
    filter: grayscale(30%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0 var(--red);
    line-height: 1;
}

.hero-title span {
    display: block;
    font-size: 3rem;
    text-shadow: 3px 3px 0 var(--white);
    color: var(--red);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.btn-hero {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-top: 2rem;
}

.btn-hero:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-scroll span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.8rem;
    letter-spacing: 3px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--white);
    margin: 0 auto;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { height: 50px; opacity: 1; }
    50% { height: 30px; opacity: 0.5; }
    100% { height: 50px; opacity: 1; }
}

/* Parte final do css/components/hero.css */

/* Responsividade Hero */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title span {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title span {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-title span {
        font-size: 1.2rem;
    }
}