/* --- SEÇÃO: O QUE VOCÊ VAI APRENDER --- */
#learn-section {
    background-color: var(--dark-bg);
    padding: 100px 20px;
}
.trocaCOR {
    animation: trocaCor 1s infinite alternate;
}

@keyframes trocaCor {
    from {
        color: #ffffff;
    }
    to {
        color: #FF5722;
    }
}

.learn-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#learn-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 20px 0;
    line-height: 1.2;
}

#learn-section h2 span {
    color: var(--primary-orange);
}

.learn-subtitle {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}
.mentor-card-mobile {
    display: none;
}

@media (max-width: 768px) {
    .mentor-card-mobile {
        display: block;
        margin-top: 40px;
        background-color: #0a0a0a;
        border-radius: 20px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    }

    .mentor-card-mobile img {
        width: 100%;
        max-width: 320px;
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .mentor-name {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .mentor-role {
        font-size: 0.9rem;
        color: #aaa;
    }
}

.learn-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px 25px;
    transition: 0.3s;
}

.learn-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.learn-item i {
    font-size: 2.2rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.learn-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.learn-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}
/* --- SEÇÃO: QUEM É O PROFESSOR --- */
#teacher-section {
    position: relative;
    min-height: 100vh;
    background-image: url('https://raw.githubusercontent.com/GabrielVinhati/img-wesley/refs/heads/main/Design%20sem%20nome.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
#teacher-section img{
    display: none;
}
/* Overlay escuro */
.teacher-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.8) 50%,
        rgba(0,0,0,0.3) 100%
    );
    z-index: 1;
}

.teacher-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.teacher-content {
    max-width: 600px;
}

#teacher-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 20px 0;
    line-height: 1.2;
}

#teacher-section h2 span {
    color: var(--primary-orange);
}

.teacher-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 20px;
}

.teacher-role {
    font-size: 1rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.teacher-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* --- MOBILE --- */
.teacher-mobile {
    display: none;
}

/* --- FOOTER --- */
#site-footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-event {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.footer-copy {
    font-size: 0.8rem;
    color: #777;
}
/* --- NAVBAR STICKY --- */
#sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* Navbar visível */
#sticky-navbar.active {
    transform: translateY(0);
}

.navbar-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

/* Botão central */
#navbar-cta {
    padding: 12px 30px;
    background-color: var(--primary-orange);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

#navbar-cta:hover {
    transform: scale(1.05);
    background-color: #e64a19;
}
/* --- WHATSAPP FLOAT --- */
#whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Balão de mensagem */
.whatsapp-bubble {
    max-width: 220px;
    background-color: #fff;
    color: #333;
    font-size: 0.85rem;
    padding: 10px 14px;
    border-radius: 12px 12px 0 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    position: relative;
}

/* Pontinha do balão */
.whatsapp-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}

/* Botão WhatsApp */
.whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}
/* --- Estilos da Barra Superior --- */
.top-red-banner {
    background-color: #cc0000; /* Vermelho forte */
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* --- Estilos da Seção Principal --- */
#capture-section {
    position: relative;
    /* IMPORTANTE: Mantenha sua imagem de fundo original aqui.
       Exemplo: background-image: url('caminho/para/foto-advogado.jpg'); */
    background-size: cover;
    background-position: center top;
    min-height: 90vh; /* Altura mínima para preencher bem a tela */
    display: flex;
    align-items: flex-start; /* Alinha o conteúdo mais ao topo */
    justify-content: center;
    padding: 5px 20px 100px 20px; /* Espaço extra embaixo para não cobrir o rosto */
    color: #ffffff;
}

/* Overlay com gradiente para imitar a referência */
#capture-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente: Bem escuro no topo, clareando em baixo para mostrar o advogado */
    background: linear-gradient(to top, 
        rgba(0,0,0,0.95) 0%, 
        rgba(0,0,0,0.9) 40%, 
        rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* Container Centralizado */
.content-container.central-layout {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- Tipografia e Elementos --- */

/* Logotipo */
.hero-logo {
    max-width: 100px; /* Ajuste o tamanho conforme necessário */
    height: auto;
    margin-bottom: 30px;
}

/* Título Principal */
.hero-headline {
    font-size: 30px;
    font-weight: 900; /* Fonte bem grossa */
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Destaque Amarelo */
.highlight-yellow {
    color: #FFCC00; /* Amarelo ouro */
}

/* Subtítulo */
.hero-subtext {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Data e Info */
.hero-date {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* --- Botão WhatsApp --- */
.whatsapp-cta-button {
    display: inline-block;
    background-color: #25D366; /* Verde WhatsApp */
    color: white;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    width: 100%;
    max-width: 450px; /* Largura máxima do botão */
}

.whatsapp-cta-button:hover {
    background-color: #1da851; /* Verde um pouco mais escuro no hover */
    transform: translateY(-2px); /* Efeito de levantar ligeiramente */
}

/* --- Responsividade (Mobile) --- */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 100px;
    }
    .hero-headline {
        font-size: 26px;
    }
    .hero-subtext {
        font-size: 16px;
    }
    .hero-date {
        font-size: 20px;
    }
    .whatsapp-cta-button {
        font-size: 18px;
        padding: 15px 20px;
    }
    #capture-section {
        /* O primeiro valor (75%) move a imagem horizontalmente.
           0% é esquerda, 50% é centro, 100% é direita total.
           75% geralmente é o ponto ideal para focar em alguém que está na direita 
           sem cortar o ombro.
           
           O segundo valor (top) mantém o alinhamento vertical no topo.
        */
        background-position: 75% top !important;
    }
}

@media (max-width: 768px) {
    /* esconde a versão desktop no mobile */
    #teacher-section {
        background-image: none !important;
        min-height: auto !important;
        align-items: flex-start !important;
    }

    .teacher-content {
        display: none !important;
    }

    /* mostra a versão mobile */
    .teacher-mobile {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }

    .teacher-mobile img {
        display: block !important; /* seu CSS tinha display:none pra img geral */
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto 16px !important;
        border-radius: 16px !important;
    }
}
@media (max-width: 768px) {
    #teacher-section {
        min-height: auto !important;
        padding-bottom: 40px !important;
    }
}
