/* ==================================================
   1. ESTILOS GERAIS DO SISTEMA (RESET + GLOBAL)
================================================== */

/* Fonte base, fundo animado, remoção de seleção */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.5;
    background: linear-gradient(45deg, #000000, #111111, #000000, #111111);
    background-size: 400%;
    animation: gradienteFundo 15s ease infinite;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Bloqueia interação e download de imagens */
img {
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    -webkit-touch-callout: none;
}

/* Containers centralizados */
.container {
    width: 90%;
    max-width: 1300px;
    margin: 20px auto;
    padding: 15px;
}

/* Títulos gerais */
h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/* Título H1 com animação */
h1 {
    font-size: 2em;
    color: #fff;
    animation: pulsar-titulo 2s infinite alternate;
}

.destaque-titulo {
    color: #4fe24a;
}

h2 {
    font-size: 1.6em;
    color: #fff;
}

h3 {
    font-size: 1.3em;
    color: #4fe24a;
}

/* Parágrafos e texto */
p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #ddd;
}

strong {
    font-weight: 700;
    color: #fff;
}

/* === Estilos de Botões === */
.botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    color: black;
    background: linear-gradient(to right, #FFD700, #FFA500);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

/* Adicionado para estilizar e alinhar o ícone da seta com borda circular */
.botao i {
    margin-left: 15px;
    /* Espaçamento do texto */
    font-size: 0.9em;
    /* Tamanho do ícone da seta */
    width: 32px;
    /* Largura do contêiner circular */
    height: 32px;
    /* Altura do contêiner circular */
    border: 2px solid black;
    /* Borda preta */
    border-radius: 50%;
    /* Transforma em círculo */
    display: inline-flex;
    /* Habilita flexbox */
    align-items: center;
    /* Centraliza verticalmente */
    justify-content: center;
    /* Centraliza horizontalmente */
    transition: all 0.3s ease;
    flex-shrink: 0;
    /* Impede que o ícone seja espremido */
}

/* Botão primário (azul clínico) */
.botao-primario {
    background-color: #4fe24a;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* Hover do botão primário */
.botao-primario:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    animation-play-state: paused;
}

/* ==================================================
   1.1 ANIMAÇÕES GLOBAIS
================================================== */
@keyframes gradienteFundo {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulsar-titulo {
    0% {
        text-shadow: 0 0 1px #FFFFFF, 0 0 2px #FFFFFF;
    }

    100% {
        text-shadow: 0 0 3px #000000, 0 0 4px #4fe24a, 0 0 5px #000000;
    }
}

@keyframes pulsar {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.10);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.10);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulseSeta {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

/* ==================================================
   2. MENU DE NAVEGAÇÃO PRINCIPAL
================================================== */
.menu-principal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 20px;
    z-index: 1001;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(40px);
    background-color: rgba(28, 37, 38, 0.2);
}

.menu-items {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menu-items li {
    margin: 0 15px;
}

.menu-items a {
    color: #4fe24a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu-items a:hover {
    color: #050505;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
    transform: translateY(-2px);
    transition: all 0.5s ease;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    color: #fff;
    cursor: pointer;
    margin-right: 20px;
}

.menu-items .matricula {
    background-color: #FFD700;
    padding: 8px;
    border-radius: 25px;
    color: #000000;
    font-weight: bold;
}

.menu-items .matricula:hover {
    color: #fff;
    background-color: #4fe24a;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
    transform: translateY(-2px);
    transition: all 0.5s ease;
    font-weight: bold;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-items {
        display: none;
        position: absolute;
        top: 60px;
        left: 20px;
        background-color: rgba(28, 37, 38, 0.8);
        backdrop-filter: blur(10px);
        flex-direction: column;
        width: 200px;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    .menu-items.active {
        display: flex;
    }

    .menu-items li {
        margin: 10px 0;
    }

    .menu-principal {
        justify-content: space-between;
    }
}

/* ==================================================
   3. SEÇÃO INÍCIO (HERO)
================================================== */
.secao-inicio {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    text-align: center;
    min-height: 100vh;
}

.secao-inicio h1 {
    font-size: 3em !important;
    padding: 0 !important;
    padding: 80px 0 40px 7px;
}

.secao-inicio p {
    font-size: 1.2em !important;
    padding: 0 15px !important;
    font-size: 2em;
    text-align: left !important;
}

.secao-inicio .imagem-hero {
    margin: 60px 30px !important;
    width: 580px !important;
}

.secao-inicio .imagem-hero img {
    width: 100%;
    height: auto;
}

@media (min-width: 769px) {
    .secao-inicio {
        flex-direction: row;
        text-align: left;
        min-height: auto;
    }

    .secao-inicio .container {
        width: 55%;
        max-width: 720px;
    }

    .secao-inicio h1 {
        font-size: 6em !important;
        padding: 80px 0 40px 7px !important;
    }

    .secao-inicio p {
        font-size: 2em !important;
        padding-left: 15px !important;
        text-align: left !important;
        /* AJUSTE DE 'justify' PARA 'left' */
    }

    .secao-inicio .imagem-hero {
        display: block;
        width: 45% !important;
        max-width: 580px !important;
        margin: 60px 30px 0 0 !important;
    }

    .secao-inicio .imagem-hero img {
        width: 100%;
        height: auto;
    }
}

/* ==================================================
   4. SEÇÃO PROBLEMA
================================================== */
.secao-problema {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 25px;
    border-radius: 10px;
    background: linear-gradient(45deg, #000000, #111111, #000000, #111111);
    background-size: 400%;
    animation: gradienteFundo 15s ease infinite;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.secao-problema .container {
    width: 100%;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.background-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    background-size: 400%;
    animation: gradienteFundo 15s ease infinite;
    opacity: 0.85;
    z-index: 1;
}

.secao-problema .imagem-problema {
    display: none;
}

.secao-problema p {
    font-size: 1.2em;
    padding-left: 15px;
}

.secao-problema h2 {
    margin-top: 1px;
    margin-bottom: 20px;
    font-size: 2.8em;
}

.secao-problema p strong {
    font-size: 1.4em;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 60px 0 60px 0;
}

@media (min-width: 769px) {
    .secao-problema {
        text-align: left;
    }

    .secao-problema .container {
        width: 55%;
        order: 2;
    }

    .secao-problema p {
        padding-left: 100px !important;
        text-align: justify !important;
    }

    .secao-problema .imagem-problema {
        display: block;
        width: 40%;
        min-height: 300px;
        height: auto;
        order: 1;
    }

    .secao-problema .imagem-problema img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* ==================================================
   5. SEÇÃO SOLUÇÃO
================================================== */
.secao-solucao {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    text-align: center;
    margin-bottom: 25px;
    border-radius: 10px;
    background-size: cover;
    animation: gradienteFundo 15s ease infinite;
}

.secao-solucao .container {
    width: 100%;
    padding: 0 15px;
    max-width: 1300px;
}

.secao-solucao .container p {
    font-size: 1.7em;
    text-align: center;
}

.secao-solucao .container .botao .botao-primario {
    margin-left: 150px;
}

.secao-solucao h2 {
    font-size: 2em;
    margin-right: 80px;
}

.secao-solucao h1 .destaque-titulo {
    font-size: 1em !important;
}

.secao-solucao .imagem-solucao {
    margin-top: 20px;
    width: 80% !important;
    max-width: 600px !important;
}

.secao-solucao .imagem-solucao img {
    width: 100%;
    height: auto;
    margin-top: 50px;
}

@media (min-width: 769px) {
    .secao-solucao {
        flex-direction: row;
        text-align: left;
    }

    .secao-solucao .container {
        width: 55%;
        order: 2;
    }

    .secao-solucao .imagem-solucao {
        display: block;
        width: 40% !important;
        max-width: 600px !important;
        min-height: 300px;
        height: auto;
        order: 1;
        margin-top: 50px !important;
    }

    .secao-solucao .imagem-solucao img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* ==================================================
   6. SEÇÃO MENTOR
================================================== */
.secao-mentor {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0 0 40px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 25px;
    background-size: 400%;
    animation: gradienteFundo 15s ease infinite;
}

.imagem-mentor {
    width: 80%;
    max-width: 600px;
}

.imagem-mentor img {
    width: 100%;
    height: auto;
}

.secao-mentor #mentor {
    font-size: 1.9em;
}

.container #identificacao {
    font-size: 1.4em;
    text-align: center;
    justify-content: center;
    display: flex;
}

.secao-mentor .container p {
    padding-left: 20px !important;
    text-align: left !important;
    font-size: 1.1em;
}

.secao-mentoria a .botao .botao-primario {
    margin-top: 100px;
    padding: 5px 10px;
    margin-left: 100px;
}

@media (min-width: 769px) {
    .secao-mentor {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .imagem-mentor {
        width: 40% !important;
        max-width: none;
        margin-right: 40px;
        margin-bottom: 0;
    }

    .imagem-mentor img {
        width: 100% !important;
        height: auto;
    }

    .secao-mentor .container {
        width: 60%;
        margin: 0;
    }
}

/* ==================================================
   7. SEÇÃO GRUPO DE MENTORIA CLÍNICA
================================================== */
.secao-mentoria {
    padding: 60px 0;
    text-align: center;
    min-height: 400px;
    margin-bottom: 25px;
    border-radius: 10px;
    background: linear-gradient(45deg, #000000, #111111, #000000, #111111);
    background-size: 400%;
    animation: gradienteFundo 15s ease infinite;
}

.secao-mentoria .container {
    max-width: 1100px;
    margin: 0 auto;
}

.secao-mentoria h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-top: 5px;
}

.secao-mentoria p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.secao-mentoria .item-modulo {
    background-color: #2a3436;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.secao-mentoria .item-modulo:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px 2px #4fe24a;
}

.secao-mentoria .icone-modulo {
    font-size: 2.2em;
    color: #4fe24a;
    margin-bottom: 12px;
}

.secao-mentoria .item-modulo h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #fff;
}

.secao-mentoria .item-modulo p {
    font-size: 1.2em;
    color: #ddd;
}

/* Layout base para mentoria - mobile first */
.secao-mentoria .lista-modulos {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .secao-mentoria .lista-modulos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1366px) {
    .secao-mentoria .lista-modulos {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==================================================
   8. SEÇÃO CONTEÚDO (MÓDULOS INTERATIVOS)
================================================== */
.secao-conteudo {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0 0 40px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 25px;
    background-size: 400%;
    animation: gradienteFundo 15s ease infinite;
}

.lista-modulos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.item-modulo {
    background-color: #2a3436;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
    min-height: 20px;
}

.icone-modulo {
    font-size: 3em;
    color: #4fe24a;
    margin-bottom: 0;
    margin-top: 5px;
    display: block;
    text-align: center;
}

.espaco-icone {
    height: 24px;
}

.item-modulo h3 {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 15px;
    text-align: center;
}

.secao-solucao .item-modulo {
    transition: box-shadow 0.2s, transform 0.2s;
}

.secao-solucao .item-modulo:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px 2px #4fe24a;
}

.secao-conteudo .container {
    max-width: 1300px;
}

.secao-conteudo a .botao .botao-primario {
    margin-top: 100px;
    padding: 5px 10px;
    margin-left: 100px;
}

/* Layout base para conteudo - mobile first */
.secao-conteudo .lista-modulos {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .secao-conteudo .lista-modulos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1366px) {
    .secao-conteudo .lista-modulos {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==================================================
   9. SEÇÃO MÓDULOS (CARROSSEL SIMPLES)
================================================== */
.secao-modulos {
    padding: 60px 0;
    text-align: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 16px;
    background: linear-gradient(45deg, #000000, #111111, #000000, #111111);
    background-size: 400%;
    animation: gradienteFundo 15s ease infinite;
}

.carrossel-container-novo {
    position: relative;
    width: 100%;
    max-width: 1400px;
    overflow: hidden;
    margin: 40px auto;
}

.carrossel-wrapper-novo {
    display: flex;
    animation: slideLoop 60s linear infinite;
    white-space: nowrap;
}

.carrossel-wrapper-novo:hover {
    animation-play-state: paused;
}

.secao-mentoria a .botao .botao-primario {
    margin-top: 100px;
    padding: 5px 10px;
    margin-left: 100px;
}

.carrossel-card-novo {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    padding: 0 10px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: center;
}

.carrossel-card-novo img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    border-radius: 16px;
    border: 2px solid #fff;
    transition: transform 0.3s ease;
}

.carrossel-card-novo img:hover {
    transform: scale(1.05);
}

@keyframes slideLoop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * (300px + (20px * 4)) * 5));
    }
}

@media (max-width: 768px) {
    .secao-modulos .botao {
        margin: 0 auto;
    }
}

/* ==================================================
   10. SEÇÃO ZEUS (BÔNUS EXCLUSIVO)
================================================== */
.secao-zeus {
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(45deg, #000000, #111111, #000000, #111111);
    background-size: 200% 200%;
    animation: gradienteFundo 15s ease infinite;
    position: relative;
}

.secao-zeus .zeus-header {
    padding-bottom: 30px;
}

.secao-zeus .titulo-zeus {
    font-size: 2.8em;
    margin-top: 0;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 700;
}

.secao-zeus .subtitulo-zeus {
    font-size: 1.6em;
    color: #4fe24a;
    font-weight: 500;
    text-transform: uppercase;
}

/* Estilo para os parágrafos */
.secao-zeus .texto-principal {
    color: #f0f0f0;
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 900px;
    margin: 20px auto;
}

.secao-zeus .texto-secundario {
    color: #c0c0c0;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px;
}

.secao-zeus .lista-titulo {
    font-size: 1.8em;
    color: #ffffff;
    margin: 40px 0 20px;
    text-transform: uppercase;
}

/* Layout dos cards Zeus - Mobile First */
.secao-zeus .lista-modulos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    padding: 20px 0;
}

.secao-zeus .item-modulo {
    padding: 25px;
    text-align: center;
    background: #2a3436;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.secao-zeus .item-modulo:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px 2px #4fe24a;
}

.secao-zeus .icone-modulo {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #4fe24a;
}

.secao-zeus .item-modulo p {
    font-size: 1.1em;
    color: #ddd;
}

#bonus {
    color: #4fe24a;
}

#limitadas {
    color: #FFD700;
}

#zeus {
    padding: 5px;
    color: #4fe24a;
    border-radius: 20px;
    font-size: 1.5em;
}

/* Destaque para o aviso de urgência */
.aviso-urgencia {
    background-color: #443c2c;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    margin: 40px auto;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.aviso-urgencia i {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.aviso-urgencia .aviso-titulo {
    font-size: 1.3em;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
}

.aviso-urgencia .aviso-texto {
    font-size: 1.1em;
    color: #f0f0f0;
}

#atencao {
    font-size: 1.3em;
}

/* Ajustes de Grid para Zeus em Tablets */
@media (min-width: 768px) {
    .secao-zeus .lista-modulos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1366px) {
    .secao-zeus .lista-modulos {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==================================================
   11. SEÇÃO VALOR / OFERTA
================================================== */
.secao-valor {
    padding: 60px 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 10px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/banner3.jpg') no-repeat center center/cover;
    background-size: cover;
}

.secao-valor .container {
    position: relative;
    z-index: 1;
    background: rgba(28, 37, 38, 0.9);
    padding: 20px;
    border-radius: 8px;
}

.caixa-valor {
    background-color: #222;
    border: 2px solid #4fe24a;
    border-radius: 10px;
    max-width: 400px;
    margin: 30px auto 0;
}

.valor-header-title {
    background-color: #4fe24a;
    color: #000;
    padding: 15px;
}

.valor-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.valor-body {
    padding: 5px 60px;
    overflow: hidden;
}

.valor-de {
    font-size: 1.2rem;
    justify-content: center;
    align-items: center;
    display: flex;
}

.valor-por {
    font-size: 1.1rem;
    margin-top: 15px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.valor-principal {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4fe24a;
    margin: 10px 0;
    line-height: 1;
    justify-content: center;
    align-items: center;
    display: flex;
    text-shadow: 0 0 5px #4fe24a;
    transition: text-shadow 0.3s ease-in-out;
}

.valor-principal:hover {
    text-shadow: 0 0 2px #FFD700, 0 0 4px #FFD700;
    font-size: 4rem;
    font-weight: 800;
}

.valor-avista {
    font-size: 1rem;
    justify-content: center;
    align-items: center;
    display: flex;
}

.valor-footer {
    background-color: #333;
    padding: 5px;
    font-size: 0.8rem;
}

/* ==================================================
   12. SEÇÃO ESCASSEZ / CHAMADA PARA AÇÃO (CTA)
================================================== */
.secao-cta {
    padding: 60px 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #000000, #111111, #000000, #111111);
    background-size: 400%;
    animation: gradienteFundo 15s ease infinite;
}

.secao-cta h2 {
    font-size: 3.8em;
    padding-bottom: 20px;
}

.secao-cta p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.secao-cta strong {
    font-size: 1.3em;
}

.text-cta strong {
    padding: 5px;
    color: #4fe24a;
    border-radius: 20px;
    font-size: 1.3em;
}

/* ==================================================
   13. SEÇÃO PERGUNTAS FREQUENTES (FAQ)
================================================== */

.secao-perguntas {
    padding: 60px 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 10px;
    background: linear-gradient(45deg, #000000, #111111, #000000, #111111);
    background-size: 400%;
    animation: gradienteFundo 15s ease infinite;
}

/* Lista das perguntas */
.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

/* Item individual da FAQ */
.faq-item {
    margin-bottom: 15px;
}

/* Pergunta (visível) */
.faq-question {
    font-size: 1.2em;
    font-weight: 600;
    color: #fff;
    padding: 20px;
    background-color: #2a3436;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.5s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hover da pergunta */
.faq-question:hover {
    background-color: #357abd;
}

/* Ícone de toggle (+ ou X) */
.faq-toggle-icon {
    transition: transform 0.3s ease;
    font-size: 1.2em;
    font-weight: bold;
}

/* Quando a pergunta está ativa, gira o ícone */
.faq-question.active .faq-toggle-icon {
    transform: rotate(45deg);
    /* + vira X */
}

/* Resposta (oculta por padrão) */
.faq-answer {
    display: none;
    padding: 10px 15px;
    background-color: #1c2526;
    color: #ddd;
    border-radius: 5px;
    margin-top: 5px;
}

/* Resposta visível */
.faq-answer.active {
    display: block;
}

/* ==================================================
   14. RODAPÉ PRINCIPAL
================================================== */
.rodape-principal {
    padding: 60px 0;
    text-align: center;
    font-size: 0.85em;
    color: #ddd;
    margin-top: 25px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(45deg, #000000, #111111, #000000, #111111);
    background-size: 400%;
    animation: gradienteFundo 15s ease infinite;
}

.rodape-principal .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#copy-rodape {
    font-size: 0.9em;
    margin-bottom: 0;
}

.navegacao-rodape {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1em;
    margin-top: 0;
}

.navegacao-rodape a {
    color: #4fe24a;
    text-decoration: none;
    margin: 0 8px;
}

.navegacao-rodape a:hover {
    color: #357abd;
    text-decoration: underline;
}

#instagram-link {
    font-size: 30px;
    width: 30px;
}

.separador {
    margin: 0 5px;
    font-weight: bold;
}

@media (min-width: 769px) {
    .rodape-principal .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .navegacao-rodape {
        font-size: 1em;
    }
}

/* ==================================================
   15. BOTÃO WHATSAPP FLUTUANTE E POP-UP
================================================== */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.botao-whatsapp {
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.botao-whatsapp:hover {
    transform: scale(1.1);
}

.whatsapp-popup-message {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    background-color: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 0.4em;
    font-weight: b;
    pointer-events: none;
}

.botao-whatsapp:hover .whatsapp-popup-message {
    opacity: 1;
    right: 70px;
}

.whatsapp-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    pointer-events: none;
    justify-content: center;
    align-items: center;
}

.whatsapp-popup.active {
    display: flex;
    pointer-events: auto;
}

.whatsapp-popup-content {
    background-color: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: absolute;
    bottom: 90px;
    right: 20px;
    transform: scale(0.8);
    opacity: 0;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.whatsapp-popup.active .whatsapp-popup-content {
    transform: scale(1);
    opacity: 1;
}

.whatsapp-popup-header {
    background-color: #25D366;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1em;
    font-weight: 600;
}

.whatsapp-popup-header .whatsapp-header-icon {
    font-size: 1.2em;
    margin-right: 10px;
}

.whatsapp-popup-close {
    cursor: pointer;
    font-size: 1.5em;
    font-weight: bold;
}

.whatsapp-popup-body {
    padding: 20px;
    text-align: center;
}

.whatsapp-popup-chat-bubble {
    background-color: #f0f0f0;
    border-radius: 15px 15px 15px 0;
    padding: 15px;
    margin-bottom: 20px;
    color: #333;
    font-size: 0.95em;
    line-height: 1.4;
    text-align: left;
    position: relative;
}

.botao-whatsapp-popup-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.botao-whatsapp-popup-link:hover {
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .whatsapp-popup-content {
        bottom: 100px;
        right: 40px;
    }
}

@media (min-width: 1366px) {
    .menu-items li {
        margin: 0 20px;
    }
}

/* ==================================================
   16. AJUSTES E CORREÇÕES DE BUGS
================================================== */

/* BUG FIX: secao-problema - Centralizar texto abaixo do destaque */
#secao-problema p#topico {
    text-align: center !important;
    padding-left: 15px !important;
    padding-right: 15px;
}

/* BUG FIX: secao-conteudo - Centralizar botão */
#secao-conteudo.secao-solucao .container {
    text-align: center;
}

/* BUG FIX: secao-rodape - Centralizar texto de copyright */
#rodape #copy-rodape {
    width: 100%;
    text-align: center;
}

/* ==================================================
   17. AJUSTES ESPECÍFICOS ADICIONAIS
================================================== */

/* BUG FIX: secao-problema - Centralizar texto "Isso não é sua culpa." */
#secao-problema #texto-centralizado {
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
}

/* ==================================================
   18. AJUSTES DE RESPONSIVIDADE
================================================== */

/* === Correções para telas móveis pequenas (360px, 390px, 428px) === */
@media (max-width: 428px) {

    /* Correção do ícone do botão - garantir que seja circular */
    .botao i {
        width: 28px !important;
        height: 28px !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.8em !important;
        border: 2px solid black !important;
    }

    /* Seção Solução - Botão depois da imagem */
    .secao-solucao {
        flex-direction: column;
    }

    .secao-solucao .container {
        order: 2;
        width: 90%;
    }

    .secao-solucao .imagem-solucao {
        order: 1;
        width: 80% !important;
        margin: 20px auto !important;
    }

    /* Seção Mentor - Imagem antes do botão */
    .secao-mentor {
        flex-direction: column;
    }

    .imagem-mentor {
        order: 2;
        width: 80% !important;
        margin: 20px auto !important;
    }

    .secao-mentor .container {
        order: 1;
        width: 90%;
    }

    /* Zeus - Cards com mesma largura que outras seções */
    .secao-zeus .lista-modulos {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .secao-zeus .item-modulo {
        width: 85%;
        max-width: none;
    }
}

/* === Correções para tablet 768px === */
@media (min-width: 768px) and (max-width: 800px) {

    /* Seção Solução - Botão depois da imagem */
    .secao-solucao {
        flex-direction: column;
    }

    .secao-solucao .container {
        order: 2;
        width: 80%;
        text-align: center;
    }

    .secao-solucao .imagem-solucao {
        order: 1;
        width: 60% !important;
        margin: 20px auto !important;
    }

    /* Seção Mentor - Imagem antes do botão */
    .secao-mentor {
        flex-direction: column;
    }

    .imagem-mentor {
        order: 2;
        width: 60% !important;
        margin: 20px auto !important;
    }

    .secao-mentor .container {
        order: 1;
        width: 80%;
        text-align: center;
    }

    /* Conteúdo e Mentoria - Grid 2x2 */
    .secao-conteudo .lista-modulos,
    .secao-mentoria .lista-modulos {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    /* Zeus - Grid 2x2 igual às outras seções */
    .secao-zeus .lista-modulos {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

/* === Correções específicas para 800px === */
@media (min-width: 800px) and (max-width: 820px) {

    /* Seção Solução - Botão depois da imagem */
    .secao-solucao {
        flex-direction: column;
    }

    .secao-solucao .container {
        order: 2;
        width: 75%;
        text-align: center;
    }

    .secao-solucao .imagem-solucao {
        order: 1;
        width: 55% !important;
        margin: 20px auto !important;
    }

    /* Seção Mentor - Imagem antes do botão */
    .secao-mentor {
        flex-direction: column;
    }

    .imagem-mentor {
        order: 1;
        width: 55% !important;
        margin: 20px auto !important;
    }

    .secao-mentor .container {
        order: 2;
        width: 75%;
        text-align: center;
    }

    /* Mentoria - Grid 2x2 igual ao conteúdo */
    .secao-mentoria .lista-modulos {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

/* === Telas de Tablet e menores (até 1024px) === */
@media (max-width: 1024px) {

    /* Ajustes Gerais */
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2.2em;
    }

    p {
        font-size: 1.1em;
    }

    /* Seção Início */
    .secao-inicio {
        padding-top: 80px;
    }

    .secao-inicio,
    .secao-solucao,
    .secao-mentor {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }

    .secao-inicio .container,
    .secao-solucao .container,
    .secao-mentor .container {
        width: 90%;
        text-align: center;
        order: 0;
        padding: 20px;
    }

    .secao-inicio p,
    .secao-mentor .container p {
        text-align: center !important;
        padding: 0 !important;
    }

    .secao-inicio .imagem-hero,
    .secao-solucao .imagem-solucao,
    .imagem-mentor {
        width: 80% !important;
        max-width: 450px !important;
        margin: 20px auto !important;
    }

    /* Seção Problema */
    .secao-problema p {
        padding-left: 15px !important;
        text-align: center !important;
    }

    /* Seção Solução */
    .secao-solucao h2 {
        margin-right: 0;
    }

    .secao-solucao .container p {
        font-size: 1.4em;
    }

    /* Listas de Módulos */
    .lista-modulos {
        justify-content: center;
    }

    .item-modulo {
        flex-basis: 45%;
    }

    /* Caixa de valor */
    .caixa-valor {
        max-width: 90%;
    }
}

/* === Telas de Celular (até 768px) === */
@media (max-width: 768px) {

    /* Ajustes Gerais */
    h1 {
        font-size: 2.2em;
    }

    .secao-inicio h1 {
        font-size: 2.5em !important;
    }

    h2 {
        font-size: 2em;
    }

    .secao-cta h2 {
        font-size: 2.8em;
    }

    /* Seção Mentor */
    .container #identificacao {
        font-size: 1.2em;
    }

    /* Listas de Módulos */
    .item-modulo {
        flex-basis: 80%;
        /* Ocupa quase toda a largura */
        min-height: auto;
    }

    /* Seção Valor */
    .valor-body {
        padding: 5px 20px;
    }

    .valor-principal {
        font-size: 3rem;
    }

    /* Rodapé */
    .navegacao-rodape {
        flex-direction: column;
    }

    .navegacao-rodape span.separador {
        display: none;
    }

    .navegacao-rodape a {
        margin: 5px 0;
    }
}

/* === Telas de Celular Pequenas (até 480px) === */
@media (max-width: 480px) {

    /* Ajustes Gerais */
    body {
        overflow-x: hidden;
        /* Previne scroll horizontal */
    }

    h1 {
        font-size: 1.8em;
    }

    .secao-inicio h1 {
        font-size: 2.2em !important;
    }

    h2 {
        font-size: 1.6em;
    }

    .secao-cta h2 {
        font-size: 2.2em;
    }

    .secao-zeus .titulo-zeus {
        font-size: 2.2em;
    }

    p {
        font-size: 1em;
    }

    .secao-inicio p {
        font-size: 1.2em !important;
    }

    .secao-solucao .container p {
        font-size: 1.2em;
    }

    .botao {
        font-size: 1em;
        padding: 12px 25px;
    }

    .botao i {
        width: 28px;
        height: 28px;
        font-size: 0.8em;
    }

    /* Seção Problema */
    .secao-problema p strong {
        font-size: 1.2em;
        margin: 40px 0;
    }

    /* Listas de Módulos */
    .item-modulo {
        flex-basis: 95%;
        /* Quase 100% da largura */
    }

    /* Seção Zeus */
    #zeus {
        font-size: 1.2em;
    }

    /* Caixa de Valor */
    .valor-principal {
        font-size: 2.5rem;
    }

    .valor-de,
    .valor-por,
    .valor-avista {
        font-size: 1rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 1em;
        padding: 15px;
    }
}