/* === HERO SECTION === */
.hero {
    position: relative;
    width: 100%;
    min-height: 40vh;
    display: flex;
    color: #14213D;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* === FUNDO COM OPACIDADE === */
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../image/frame_1/img_fundo_hero.png') no-repeat center/cover;
    z-index: 0;
}

/* Sobreposição escura */
.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 33, 61, 0.7);
    z-index: 1;
}

/* === CONTEÚDO CENTRAL === */
.container-hero {
    margin-top: 20px;
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* === CONTAINER PARA ORGANIZAR LOGO, BOTÃO E MENTORA === */
.action-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
    gap: 15px;
}

/* === LOGO === */
.logo {
    width: 150px;
    height: auto;
}

.logo img {
    width: 100%;
    height: auto;
}

/* === IMAGEM DA MENTORA === */
.mentora {
    width: 200px;
    position: relative;
    margin-bottom: 2%;
}

/* === RESPONSIVIDADE (MOBILE-FIRST) === */
@media (min-width: 600px) {
    .title {
        font-size: clamp(24px, 5vw, 32px);
        text-align: center;
    }
    
    .subtitle {
        font-size: 16px;
        max-width: 85%;
    }
    
    .mentora {
        width: 220px;
    }
    
    .cta {
        padding: 15px 20px;
    }
}

@media (min-width: 1024px) {
    .title {
        font-size: clamp(28px, 5vw, 50px);
        max-width: 90%;
    }
    
    .subtitle {
        font-size: 18px;
        max-width: 90%;
    }
    
    .action-container {
        flex-direction: row;
        align-items: center;
        gap: 25px;
    }
    
    .logo {
        width: 180px;
    }
    
    .mentora {
        width: 280px;
    }
}
