/* ========================================
        1. VARIÁVEIS E ESTILOS BASE
        ========================================
        */
        :root {
            /* Paleta de Cores (Original) */
            --cor-fundo: #fff;
            --cor-titulo: #716d6d;
            --cor-texto: #e5bc5c;
            --dourado-escuro: #ffe0eb;
            --cor-texto2: #2c2c2c;
            --cor-branco: #ffffff;
            /* Overlay (Original) */
            --cor-overlay: rgba(73, 71, 65, 0.705);

            /* Fontes (Original) */
            --fonte-titulo: 'Playfair Display', serif;
            --fonte-corpo: 'Montserrat', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--fonte-corpo);
            background-color: var(--cor-fundo);
            color: var(--cor-texto);
            line-height: 1.6;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ========================================
        2. BOTÃO CTA (CALL TO ACTION)
        (Estilo original mantido)
        ========================================
        */
        .cta-button {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--cor-texto);
            color: var(--cor-branco);
            font-family: var(--fonte-corpo);
            font-weight: 700;
            font-size: 16px;
            border-radius: 5px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .cta-button:hover {
            transform: scale(1.05);
            background-color: var(--dourado-escuro);
            color: var(--cor-titulo);
            
        }

        /* ========================================
        3. NOVA SEÇÃO HERO (HEADER + HERO)
        ========================================
        */
        .hero-main {
            /* Ocupa a tela inteira */
            min-height: 100vh; 
            
            /* Imagem de fundo e overlay (como no seu .hero) */
            position: relative;
            background-image: url('img/background-mobile.jpg'); /* ATENÇÃO: Substitua pelo seu img/background.jpg */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

            /* Flex para organizar o conteúdo */
            display: flex;
            flex-direction: column; /* Coloca o logo acima do conteúdo */
            padding: 20px 0; /* Espaçamento interno */
        }

        /* Overlay escuro (como no seu .hero::before) */
        .hero-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--cor-overlay);
            z-index: 1;
        }

        /* Container ajustado para ficar acima do overlay */
        .hero-main .container {
            position: relative;
            z-index: 2;
            width: 100%;
            /* Faz o container crescer para preencher o espaço */
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        /* Wrapper do Logo (Topo) */
        .hero-logo-wrapper {
            display: flex;
            justify-content: center; /* Centraliza logo em mobile */
            align-items: center;
            padding-bottom: 30px; /* Espaço entre logo e conteúdo */
        }

        .logo img {
            max-height: 100px; /* Altura ajustada para o novo layout */
            width: auto;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
        }

        /* Wrapper do Conteúdo (Esquerda/Direita) */
        .hero-content-wrapper {
            flex: 1; /* Ocupa o espaço restante */
            display: flex;
            flex-direction: column; /* Mobile: Texto em cima, vídeo embaixo */
            justify-content: center;
            align-items: center;
            gap: 40px;
        }

        /* Coluna da Esquerda (Texto) */
        .hero-text {
            flex: 1; /* Ocupa 50% do espaço no desktop */
            text-align: center; /* Mobile: Centralizado */
            color: var(--cor-branco);
        }

        .hero-text h1 {
            font-family: var(--fonte-titulo);
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .hero-text p {
            font-size: 14px;
            margin-bottom: 32px;
            max-width: 600px;
            color: #f0f0f0;
        }

        .hero-main-cta {
            font-size: 12px;
            padding: 15px 35px;

        }
        
        /* ========================================
        4. GATILHO DE VÍDEO (COLUNA DIREITA)
        ========================================
        */
        .hero-video-trigger {
            flex: 1; /* Ocupa 50% do espaço no desktop */
            width: 100%;
            max-width: 500px; /* Limita o tamanho do vídeo */
            aspect-ratio: 16 / 9; /* Proporção de vídeo */
            background-color: #333;
            border-radius: 10px;
            cursor: pointer;
            position: relative; /* Para o ícone de play */
            overflow: hidden;
            transition: transform 0.3s ease;
            border: 3px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);

            /* Imagem de thumbnail do vídeo */
            background-image: url('img/thumb.PNG'); /* ATENÇÃO: Coloque sua thumbnail */
            background-size: cover;
            background-position: center;
        }

        .hero-video-trigger:hover {
            transform: scale(1.03);
        }

        /* Ícone de Play (CSS) */
        .hero-video-trigger::before {
            content: '▶';
            font-size: 40px;
            color: var(--cor-branco);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.5);
            width: 80px;
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            padding-left: 5px; /* Ajuste fino do triângulo */
        }
        
        .hero-video-trigger:hover::before {
            background: rgba(0, 0, 0, 0.8);
            transform: translate(-50%, -50%) scale(1.1);
        }


        /* ========================================
        5. MODAL DE VÍDEO
        ========================================
        */
        .modal {
            display: none; /* Escondido por padrão */
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
            
            /* Para centralizar o conteúdo */
            justify-content: center;
            align-items: center;
        }

        .modal.active {
            display: flex; /* Mostra o modal */
        }

        .modal-content {
            position: relative;
            margin: auto;
            width: 90%;
            max-width: 900px;
        }
        
        .modal-video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }

        .modal-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .close-modal {
            position: absolute;
            top: -40px; /* Acima do vídeo */
            right: 0;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.2s;
        }

        .close-modal:hover {
            color: #ccc;
        }


        /* ========================================
        6. RESPONSIVIDADE
        ========================================
        */


        

        /* A partir de 768px (Tablets) */
        @media (min-width: 768px) {
            .hero-main {
            background-image: url('img/background.jpg'); /* ATENÇÃO: Substitua pelo seu img/background.jpg */
            background-attachment: fixed;

        }

            .hero-logo-wrapper {
                justify-content: flex-start; /* Alinha logo à esquerda */
                
            }

            .logo img {
                max-height: 100px; /* Logo um pouco maior */
            }

            .hero-text {
                text-align: left; /* Texto alinhado à esquerda */
            }

            .hero-text h1 {
                font-size: 48px;
            }

            .hero-text p {
                font-size: 19px;
            }

             .hero-main-cta {
            font-size: 18px;
            padding: 15px 35px;
        }
        
        }
        
        /* A partir de 992px (Desktops) */
        @media (min-width: 992px) {
            .hero-content-wrapper {
                flex-direction: row; /* Divide em duas colunas */
                gap: 60px;
            }

            .hero-text h1 {
                font-size: 46px;
            }

            .hero-text p {
                font-size: 16px;
            }
        }

/* ========================================
   7. SEÇÃO SOBRE OS MENTORES (MENTORS)
   (Estilo "Split Layout" com Accordion)
   ========================================
*/
/* ===================================
   CSS para Info e Redes Sociais
====================================== */

/* Novo wrapper para agrupar nome e social */
.mentor-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Estilo do link do Instagram */
.mentor-social {
    display: flex;          /* Alinha o ícone e o texto */
    align-items: center;
    gap: 6px;               /* Espaço entre ícone e texto */
    
    color: var(--cor-texto);/* Cor do texto (puxa da sua variável) */
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;  /* Remove sublinhado */
    margin-top: 5px;        /* Espaço abaixo do nome */
    transition: color 0.3s ease;
}

/* Efeito hover - usa sua cor dourada */
.mentor-social:hover {
    color: var(--dourado-escuro); 
}

/* Estilo do Ícone SVG */
.mentor-social-icon {
    width: 16px;
    height: 16px;
    /* A cor do ícone (stroke) é herdada do link (currentColor) */
    stroke-width: 2.5; /* Linha um pouco mais grossa */
}
#mentors {
    
    background-color: var(--cor-titulo); 
    padding: 60px 0;
    overflow: hidden; /* Garante que nada vaze */
}

/* Wrapper principal (Mobile: empilhado) */
.mentors-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Coluna da Esquerda (Texto) */
.mentors-wrapper {
    /* No mobile, é apenas um bloco de texto */
    text-align: center;
}

.section-title {
    font-family: var(--fonte-titulo);
    font-size: 22px;
    color: var(--cor-texto);
    margin-bottom: 20px;
}
.section-title-mentors {
    font-family: var(--fonte-titulo);
    font-size: 22px;
    color: var(--dourado-escuro);
    margin-bottom: 20px;
}

.section-intro {
    font-size: 14px;
    color: var(--cor-texto2);
    max-width: 500px; /* Limita largura no mobile */
    margin: 0 auto 30px auto;
    line-height: 1.7;
}
.section-intro-mentors {
    font-size: 14px;
    color: var(--cor-branco);
    max-width: 500px; /* Limita largura no mobile */
    margin: 0 auto 30px auto;
    line-height: 1.7;
}

.section-outro {
    font-size: 14px;
    font-style: italic;
    color: var(--cor-branco);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-outro strong {
    display: block;
    font-style: normal;
    font-weight: 700;
    margin-top: 10px;
    font-family: var(--fonte-corpo);
    color: var(--cor-branco);
}

/* Coluna da Direita (Cards) */
.mentor-card-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px; /* Limita largura no mobile */
    margin: 0 auto;
    width: 100%;
}

.mentor-card {
    background-color: var(--cor-branco);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mentor-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.mentor-card-header img {
    width: 80px; /* Tamanho da foto */
    height: 80px;
    border-radius: 50%; /* Foto redonda */
    object-fit: cover;
    border: 3px solid #f7f3e8;
}

.mentor-card-header h3 {
    font-family: var(--fonte-titulo);
    font-size: 24px;
    color: var(--cor-titulo);
    margin: 0;
}

/* Biografia oculta (JavaScript vai controlar) */
.mentor-bio {
    max-height: 0; /* Começa fechado */
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.mentor-bio p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--cor-texto);
    padding-top: 15px; /* Só aplica padding quando aberto */
    border-top: 1px solid #e0d9c9; /* Linha divisória */
}

/* Estado aberto (quando o JS adicionar a classe) */
.mentor-bio.is-open {
    max-height: 300px; /* Altura suficiente para o texto */
}


/* Botão "Conhecer" */
.conhecer-btn {
    background-color: transparent;
    border: 2px solid var(--cor-titulo);
    color: var(--cor-titulo);
    padding: 8px 16px;
    font-weight: 700;
    font-family: var(--fonte-corpo);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px; /* Espaço do conteúdo */
    align-self: flex-start; /* Alinha o botão à esquerda */
}

.conhecer-btn:hover {
    background-color: var(--cor-titulo);
    color: var(--cor-branco);
}

/* ----------------------------------------
   Responsividade (Seção Mentors)
   
   ----------------------------------------
*/

@media (min-width: 992px) {
    #mentors {
        padding: 80px 0;
    }

    /* O layout "Split" de 2 colunas começa aqui */
    .mentors-content-wrapper {
        flex-direction: row; /* Lado a lado */
        align-items: flex-start; /* Alinha no topo */
        gap: 60px; /* Espaço entre as colunas */
    }

    /* Coluna Esquerda (Texto) */
    .mentors-wrapper {
        flex: 1; /* Ocupa 50% */
        text-align: left; /* Alinha texto à esquerda */
        max-width: 500px; /* Limita largura */
        margin: 0; /* Reseta margens */
    }

    /*
     * AJUSTE FEITO AQUI: 
     * O Título da seção fica centralizado
    */
    #mentors .section-title-mentors {
        text-align: center; /* <<< GARANTE QUE O TÍTULO FIQUE CENTRALIZADO */
        font-size: 30px ;
    }

    /* O restante do texto da coluna esquerda (intro e outro) fica alinhado à esquerda */
    .section-intro-mentors,
    .section-outro {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%; /* Remove limite de largura */
    }

    .section-intro-mentors {
        font-size: 15px;
    }

    .section-outro {
        font-size: 15px;
    }

    /* Coluna Direita (Cards) */
    .mentor-card-area {
        flex: 1; /* Ocupa 50% */
        max-width: 500px;
        margin: 0;
    }
}

/* ========================================
   8. SEÇÃO A JORNADA (JOURNEY)
   (Estilo revisado - "Mapa" de Linha do Tempo)
   ========================================
*/

#journey {
    background-color: var(--cor-fundo); /* Fundo bege claro */
    padding: 60px 0;
    position: relative; /* Contexto para a linha */
}

/* Títulos */
#journey .section-title {
    margin-bottom: 20px;
}
#journey .section-intro {
    margin-bottom: 60px; /* Mais espaço para a linha do tempo */
    max-width: 800px;
}

/* A Linha do Tempo (Container) */
.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* A LINHA PONTILHADA (no Desktop) */
.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    
    /* Mágica da linha pontilhada */
    background-image: linear-gradient(
        var(--cor-texto) 33%, 
        rgba(255,255,255,0) 0%
    );
    background-position: right;
    background-size: 2px 10px;
    background-repeat: repeat-y;
}

/* Cada passo da jornada (Mobile-first) */
.journey-step {
    position: relative;
    margin-bottom: 30px;
    
    /* Layout Mobile: tudo à direita da linha */
    padding-left: 70px; /* Espaço para o ícone */
}

/* O ÍCONE (o "ponto" no mapa) */
.step-icon {
    position: absolute;
    left: 0;
    top: 0;
    
    font-size: 20px;
    color: var(--cor-branco); /* Ícone branco */
    background-color: var(--cor-titulo); /* Fundo marrom */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--cor-fundo);
    box-shadow: 0 0 0 3px var(--cor-titulo); /* Borda dupla */
    z-index: 10;
}

/* O CARD DE CONTEÚDO */
.step-content {
    background-color: var(--cor-branco);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0d9c9;
    position: relative;
}

.step-content h3 {
    font-family: var(--fonte-titulo);
    font-size: 21px;
    color: var(--cor-titulo);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--cor-texto);
}

/* ========================================
   8.1 ESTILOS DO ACCORDION (JOURNEY)
   ========================================
*/

.step-content h3 {
    margin-bottom: 10px; /* Espaço para o botão */
}

/* O conteúdo oculto */
.step-bio {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.step-bio p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--cor-texto);
    padding-top: 15px; /* Só aparece quando aberto */
    margin-top: 15px;
    border-top: 1px solid #e0d9c9; /* Linha divisória */
}

/* Estado aberto (controlado pelo JS) */
.step-bio.is-open {
    max-height: 250px; /* Altura suficiente para o texto */
}


/* Botão "Saiba Mais" */
.saiba-mais-btn {
    background-color: transparent;
    border: 1px solid var(--cor-titulo);
    color: var(--cor-titulo);
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--fonte-corpo);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.saiba-mais-btn:hover {
    background-color: var(--cor-titulo);
    color: var(--cor-branco);
}

/* ----------------------------------------
   Responsividade (Seção Journey)
   Onde a mágica do "mapa" acontece
   ----------------------------------------
*/

@media (min-width: 768px) {
    
    #journey {
        padding: 80px 0;
    }

    /* LINHA PONTILHADA (Mobile) - Ajuste */
    .journey-timeline::before {
        /* No mobile, a linha fica na esquerda */
        left: 25px; 
    }

    .journey-step {
        padding-left: 80px; /* Mais espaço */
    }

    .step-icon {
        left: 0;
    }
}

@media (min-width: 992px) {
    
    /* LINHA PONTILHADA (Desktop) - Centraliza */
    .journey-timeline::before {
        left: 50%;
    }

    /* O PASSO */
    .journey-step {
        padding-left: 0; /* Reseta o padding mobile */
        width: 50%; /* Cada passo ocupa metade */
        margin-bottom: 40px;
    }
    
    /* PASSO ÍMPAR (Esquerda) */
    .journey-step:nth-child(odd) {
        left: 0;
        padding-right: 45px; /* Espaço da linha */
        text-align: right;
    }
    
    /* PASSO PAR (Direita) */
    .journey-step:nth-child(even) {
        left: 50%;
        padding-left: 45px; /* Espaço da linha */
    }

    /* ÍCONE (Centraliza na linha) */
    .step-icon {
        /* Posição padrão para a direita (passos pares) */
        left: -25px; /* (metade da largura) */
        top: 0;
    }
    
    /* ÍCONE (Passos ímpares) */
    .journey-step:nth-child(odd) .step-icon {
        left: auto; /* Desliga o "left" */
        right: -25px; /* Posiciona na direita */
    }

    /* Ajuste de alinhamento do card de conteúdo */
    .step-content {
        text-align: left; /* Garante que o texto dentro do card fique à esquerda */
    }
}


/* ========================================
   9. SEÇÃO BENEFÍCIOS (BENEFITS)
   (Estilo revisado - Menos "IA")
   ========================================
*/

#benefits {
    background-color: var(--cor-titulo); /* Fundo marrom escuro */
    color: var(--cor-fundo); /* Texto bege claro */
    padding: 60px 0;
}

#benefits .section-intro-dark-bg {
    margin-bottom: 50px;
}

/* Lista de Benefícios (Mobile: 1 coluna) */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Espaço entre os itens */
    max-width: 700px; 
    margin: 0 auto;
}

/* Card de Benefício (agora é um item de lista horizontal) */
.benefit-card {
    display: flex; /* LAYOUT HORIZONTAL */
    align-items: flex-start; /* Alinha no topo */
    gap: 25px;
    padding: 0;
    border: 0;
    text-align: left; /* ALINHAMENTO À ESQUERDA */
}

.benefit-icon {
    font-size: 28px; 
    color: var(--cor-branco);
    
    /* Círculo para o ícone */
    flex-shrink: 0; /* Não deixa o ícone espremer */
    width: 60px;
    height: 60px;
    background-color: var(--cor-texto); /* Marrom médio (tom sobre tom) */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-text {
    flex: 1; /* Ocupa o espaço restante */
}

.benefit-card h3 {
    font-family: var(--fonte-titulo);
    font-size: 22px;
    color: var(--cor-branco);
    margin: 0 0 8px 0; /* Remove margem de cima */
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--cor-fundo);
    margin: 0;
}


/* ----------------------------------------
   Responsividade (Seção Benefits)
   ----------------------------------------
*/

@media (min-width: 768px) {
    #benefits {
        padding: 80px 0;
    }

    #benefits .section-intro-dark-bg {
        margin-bottom: 60px;
    }

    /* Em desktop, voltamos pro grid 2x2 pra economizar espaço,
       mas o *estilo* do item continua sendo o horizontal 
    */
    .benefits-list {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 colunas */
        gap: 40px 50px; /* 40px vertical, 50px horizontal */
        max-width: 900px;
    }
}



/* ========================================
   10. SEÇÃO PROVA SOCIAL (TESTIMONIALS)
   (Estilo de Carrossel - Versão Compacta)
   ========================================
*/

#testimonials {
    background-color: var(--cor-fundo);
    padding: 50px 0; /* ALTURA REDUZIDA (era 60px) */
    border-top: 1px solid #e0d9c9;
}

#testimonials .section-title {
    margin-bottom: 20px;
}
#testimonials .section-intro {
    margin-bottom: 40px; /* ALTURA REDUZIDA (era 50px) */
    max-width: 700px;
}

/* Container do Carrossel */
.carousel-container {
    max-width: 200px;
    max-width: 600px; /* LARGURA REDUZIDA (era 800px) */
    position: relative;
    margin: auto;
}

/* Slides do Carrossel */
.carousel-slide {
    display: none; /* Esconde todos por padrão, JS mostra */
    text-align: center;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    max-width: 100%;
}

/* Botões de navegação (Previous/Next) */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 14px; /* TAMANHO REDUZIDO (era 16px) */
    margin-top: -22px;
    color: var(--cor-titulo);
    font-weight: bold;
    font-size: 22px; /* TAMANHO REDUZIDO (era 25px) */
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    color: var(--cor-branco);
}

/* Indicadores (bolinhas) */
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: var(--cor-titulo);
}

/* Efeito de fade para os slides (opcional, mas legal) */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


/* ----------------------------------------
   Responsividade (Seção Testimonials)
   ----------------------------------------
*/

@media (min-width: 768px) {
    #testimonials {
        padding: 70px 0; /* ALTURA REDUZIDA (era 80px) */
    }

    #testimonials .section-intro {
        margin-bottom: 50px; /* ALTURA REDUZIDA (era 60px) */
    }

    /* Aumenta o tamanho dos botões de navegação em telas maiores */
    .prev, .next {
        font-size: 28px; /* TAMANHO REDUZIDO (era 30px) */
        padding: 18px; /* TAMANHO REDUZIDO (era 20px) */
    }
}


/* ========================================
   11. SEÇÃO CTA FINAL
   ========================================
*/
#cta {
    background-image: url('img/pexels-melquizedeque-31209631.jpg'); /* <<<< Mude para sua imagem! */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: var(--cor-branco); /* Cor de texto padrão para contrastar */
}

/* Camada escura sobre a imagem para garantir a legibilidade do texto */
.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 25, 20, 0.7); /* Marrom escuro com transparência */
    z-index: 1;
}

#cta .container {
    position: relative;
    z-index: 2; /* Garante que o conteúdo fique acima do overlay */
    text-align: center; /* Padrão mobile */
}

/* Wrapper para o layout split */
.cta-content-wrapper {
    display: flex;
    flex-direction: column; /* Mobile: empilhado */
    gap: 30px;
    align-items: center; /* Centraliza no mobile */
}

/* Área de Texto (Esquerda no desktop) */
.cta-text-area {
    max-width: 600px; /* Limita largura do texto no mobile */
    margin: 0 auto;
}

.cta-phrase {
    font-family: var(--fonte-titulo);
    font-size: 22px;
    font-style: italic;
    color: var(--cor-fundo); /* Bege claro */
    margin-bottom: 15px;
}

#cta h2 {
    font-family: var(--fonte-titulo);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--cor-branco);
}

#cta p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 0; /* Remove margem inferior para o parágrafo */
    color: var(--cor-fundo);
}

/* Área do Botão (Direita no desktop) */
.cta-button-area {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza itens no mobile */
}

.cta-final-btn {
    display: inline-block;
    padding: 18px 45px;
    font-family: var(--fonte-corpo);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    
    background-color: var(--cor-texto);
    color: var(--cor-branco);
    
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-animation 2s infinite;
}

.cta-final-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: none;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

#cta span {
    display: block;
    margin-top: 25px;
    font-family: var(--fonte-titulo);
    font-style: italic;
    font-size: 18px;
    color: var(--cor-fundo);
    max-width: 300px; /* Limita largura da frase do slogan */
    text-align: center;
}


/* ----------------------------------------
   Responsividade (Seção CTA)
   ----------------------------------------
*/

@media (min-width: 768px) {
    #cta {
        padding: 100px 0;
    }
    
    .cta-phrase {
        font-size: 24px;
    }

    #cta h2 {
        font-size: 48px;
    }

    #cta p {
        font-size: 20px;
    }

    .cta-final-btn {
        font-size: 20px;
        padding: 20px 50px;
    }

    #cta span {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .cta-content-wrapper {
        flex-direction: row; /* Desktop: lado a lado */
        justify-content: space-between; /* Espaça as colunas */
        align-items: center; /* Alinha verticalmente */
        text-align: left; /* Alinha o texto da esquerda */
        gap: 50px;
    }

    .cta-text-area {
        flex: 2; /* Ocupa mais espaço que o botão */
        margin: 0;
    }

    .cta-button-area {
        flex: 1; /* Ocupa menos espaço */
        align-items: flex-end; /* Alinha botão à direita */
    }

    #cta span {
        text-align: right; /* Alinha o slogan à direita */
    }
}


/* ========================================
   12. RODAPÉ (FOOTER)
   ========================================
*/

#footer {
    margin-top: 80px;
    background-color: var(--cor-titulo); /* Fundo marrom escuro */
    padding: 40px 0;
    color: var(--cor-fundo); /* Texto bege claro */
    border-top: 5px solid var(--cor-texto); /* Borda em marrom médio */
}

.footer-wrapper {
    display: flex;
    flex-direction: column; /* Mobile: empilhado */
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-col {
    flex: 1;
}

/* Logo no footer */
.footer-logo .logo {
    color: var(--cor-branco); /* Logo em branco */
    font-size: 26px;
}

/* Copyright */
.footer-copyright p {
    font-size: 14px;
    color: var(--cor-fundo);
    line-height: 1.7;
}

.footer-copyright .dev-note {
    font-size: 13px;
    margin-top: 5px;
    color: #a79592; /* Cor mais sutil */
}

/* Redes Sociais */
.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--cor-branco);
    font-size: 22px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2);
    color: #f7f3e8; /* Bege claro no hover */
}


/* ----------------------------------------
   Responsividade (Footer)
   ----------------------------------------
*/

@media (min-width: 768px) {
    #footer {
        padding: 50px 0;
    }
    
    .footer-wrapper {
        flex-direction: row; /* Desktop: lado a lado */
        justify-content: space-between;
        text-align: left;
        gap: 20px;
    }

    /* Alinha a logo à esquerda */
    .footer-col.footer-logo {
        text-align: left;
    }

    /* Alinha o copyright no centro */
    .footer-col.footer-copyright {
        text-align: center;
    }

    /* Alinha as redes à direita */
    .footer-col.footer-social {
        justify-content: flex-end;
    }
}
/* ----------------------------------------
   Responsividade (CTA e Footer)
   ----------------------------------------
*/

#audience {
    background-color: var(--cor-titulo); /* Fundo marrom escuro */
    color: var(--cor-fundo); /* Texto bege claro */
    padding: 60px 0;
    text-align: center;
}

/* Reutilizando a classe de título para fundo escuro */
#audience .section-title-dark-bg {
    font-size: 32px;
    margin-bottom: 50px;
}

.audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto 50px auto;
    text-align: left;
}

.audience-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.audience-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #6c5651; /* Marrom médio */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cor-branco);
}

.audience-list p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--cor-branco);
}



/* ----------------------------------------
   Responsividade (Seção Audience)
   ----------------------------------------
*/

@media (min-width: 768px) {
    #audience {
        padding: 80px 0;
    }

    #audience .section-title-dark-bg {
        font-size: 40px;
    }

    .audience-list {
        max-width: 700px;
        gap: 30px;
    }

    .audience-list p {
        font-size: 20px;
    }
}
