/* ========================================
   HERO SECTION - Seção Principal
   ======================================== */

.hero-section {
    margin-top: 80px;
    text-align: center;
    padding: 4rem 0 3rem;
    position: relative;
    background: transparent;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -2px;
    color: var(--light);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 6px;
    background: linear-gradient(90deg, transparent 0%, rgba(20, 20, 25, 0.95) 20%, rgba(255, 255, 255, 0.2) 50%, rgba(20, 20, 25, 0.95) 80%, transparent 100%);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}


.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--light-70);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}


/* Responsividade Hero */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0 2rem;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}
