/* ===================================================================
   HERO SECTION - LAYOUT SIMPLIFICADO COM IMAGEM DE FUNDO
   =================================================================== */

/* Hero com imagem de fundo */
.hero-section.hero-background {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    overflow: hidden;
}

/* Overlay escuro sobre a imagem de fundo para melhor legibilidade */
.hero-section.hero-background .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.65) 0%, rgba(14, 165, 233, 0.60) 100%);
    z-index: 1;
}

/* Container do conteúdo */
.hero-section.hero-background .container {
    position: relative;
    z-index: 2;
}

/* Conteúdo centralizado */
.hero-section.hero-background .hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Título da hero */
.hero-section.hero-background .hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section.hero-background .hero-title span {
    color: #93c5fd;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Subtítulo da hero */
.hero-section.hero-background .hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto 35px;
    max-width: 700px;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Botões da hero */
.hero-section.hero-background .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-section.hero-background .hero-buttons .btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-section.hero-background .hero-buttons .btn-primary {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--bs-primary);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.hero-section.hero-background .hero-buttons .btn-primary:hover {
    background-color: var(--bs-primary-lighter);
    border-color: var(--bs-primary-lighter);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.hero-section.hero-background .hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
    background-color: transparent;
}

.hero-section.hero-background .hero-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

/* ===================================================================
   RESPONSIVIDADE
   =================================================================== */

/* Tablets */
@media (max-width: 991px) {
    .hero-section.hero-background {
        min-height: 500px;
        padding: 80px 0;
    }
    
    .hero-section.hero-background .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-section.hero-background .hero-subtitle {
        font-size: 1.15rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-section.hero-background {
        min-height: 450px;
        padding: 60px 0;
    }
    
    .hero-section.hero-background .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-section.hero-background .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-section.hero-background .hero-buttons .btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
}

/* Mobile pequeno */
@media (max-width: 575px) {
    .hero-section.hero-background {
        min-height: 400px;
        padding: 40px 0;
    }
    
    .hero-section.hero-background .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-section.hero-background .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-section.hero-background .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-section.hero-background .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
    }
}
