/* --- VARIÁVEIS & RESET (PALETA NOVA) --- */
:root {
    --primary: #E65100; /* Laranja Logo Forte */
    --primary-light: #FF833A;
    --primary-dark: #AC3E00;
    --secondary: #263238; /* Chumbo Profundo */
    --text-body: #455A64;
    --bg-light: #FFF8F0; /* Nude/Areia bem suave */
    --white: #FFFFFF;
    --accent: #FFB300; /* Dourado para detalhes */
    --gray-light: #F5F5F5;
    --dark-bg: #121212; /* Fundo escuro para o FAQ */
    
    --font-main: 'Montserrat', sans-serif;
    --font-script: 'Dancing Script', cursive;
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px rgba(230, 81, 0, 0.15);
    --radius: 12px;
    --container: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--text-body);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: 0.3s; }

ul { list-style: none; }

/* --- UTILITÁRIOS --- */
.container {
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: center;
}

.btn:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-title p {
    margin-top: 15px;
    font-size: 1.1rem;
}

/* --- HEADER --- */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px; /* Ajuste conforme necessidade */
}

.nav-menu {
    display: none; /* Mobile first: oculto */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nav-menu.active { display: flex; }

.nav-menu li { margin: 15px 0; }

.nav-menu a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
}

.nav-menu a:hover { color: var(--primary); }

.menu-toggle {
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    /* Ajuste: Imagem local da Ingrid e posicionamento no topo */
    background: linear-gradient(135deg, rgba(38, 50, 56, 0.95), rgba(230, 81, 0, 0.85)), url('img/ingrid.jpg');
    background-size: cover;
    background-position: top; 
    color: var(--white);
    padding: 140px 0 180px; 
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    line-height: 1.25;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero span.highlight {
    color: var(--primary);
    background: rgba(255,255,255,0.1);
    padding: 0 10px;
    border-radius: 8px;
    white-space: nowrap;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.hero-icons a {
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.7;
}
.hero-icons a:hover { opacity: 1; color: var(--primary); }

/* Divisor de Onda SVG */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-bottom .shape-fill {
    fill: var(--bg-light);
}

/* --- SEÇÃO: PARA QUEM É --- */
.para-quem {
    padding: 80px 0;
    background-color: var(--white);
}

.target-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.2s;
}

.target-item:hover {
    transform: translateX(5px);
    background: #fff0e0;
}

.target-item i {
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 3px;
}

.target-item p {
    font-weight: 500;
    color: var(--secondary);
    font-size: 1.05rem;
}


/* --- NOVA SEÇÃO: MÉTODO SLIDER (CARROSSEL) --- */
.metodo-slider-section {
    background-color: var(--bg-light);
    padding: 80px 0;
    overflow: hidden; /* Importante para o swiper não vazar */
}

/* Estilo do Swiper */
.swiper {
    width: 100%;
    padding-bottom: 50px !important; /* Espaço para a paginação */
    padding-left: 10px;
    padding-right: 10px;
}

.swiper-slide {
    width: 300px; /* Largura base do card */
    height: 450px; /* Altura do card vertical */
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
}

/* Card Estilo Imersivo */
.metodo-card {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ATUALIZAÇÃO: Overlay Escuro Reforçado */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degradê preto mais forte para garantir leitura */
    background: linear-gradient(to top, rgba(0,0,0,1) 15%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: #fff;
}

.card-content {
    transform: translateY(0);
    transition: transform 0.3s;
}

/* Tag do Módulo */
.module-tag {
    background-color: var(--primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.metodo-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.module-desc {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.95; /* Aumentei a opacidade */
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8); /* Sombra para leitura */
}

.module-list {
    font-size: 0.9rem;
    opacity: 0.95; /* Aumentei a opacidade */
    text-shadow: 0 1px 2px rgba(0,0,0,0.8); /* Sombra para leitura */
}

.module-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.module-list li i {
    color: var(--primary);
}

/* Customização da Paginação do Swiper */
.swiper-pagination-bullet {
    background: var(--secondary) !important;
    opacity: 0.3;
}
.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1;
    width: 20px;
    border-radius: 10px;
}

/* --- SEÇÃO: RESULTADOS --- */
.resultados {
    padding: 80px 0;
    background-color: var(--white);
    background-image: radial-gradient(#e6510015 1px, transparent 1px);
    background-size: 20px 20px;
}

.results-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #eee;
}

.check-list {
    list-style: none;
    display: grid;
    gap: 15px;
}

@media (min-width: 768px) {
    .check-list {
        grid-template-columns: 1fr 1fr;
    }
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-body);
}

.check-list li i {
    color: #4CAF50; /* Verde sucesso */
    font-size: 1.3rem;
}


/* --- SOBRE MIM --- */
.sobre {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.sobre-grid {
    display: grid;
    gap: 40px;
}

.sobre-img-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.sobre-img-container img {
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.sobre-bg-detail {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary);
    border-radius: 20px;
    z-index: 1;
}

/* --- PROVA SOCIAL (DEPOIMENTOS) --- */
.depoimentos {
    padding: 80px 0;
    background-color: var(--secondary);
    color: var(--white);
    text-align: center;
}

.depoimentos .section-title h2 { color: var(--white); }
.depoimentos .section-title h2::after { background-color: var(--primary); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-grid img {
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.05); }

.video-wrapper {
    margin-top: 40px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- INSCRIÇÃO & CHECKOUT --- */
.inscricao {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.cta-box {
    background: var(--bg-light);
    padding: 50px 30px;
    border-radius: 20px;
    border: 2px solid var(--primary);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.cta-box h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 800;
}

.cta-box p.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-body);
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 40px;
    box-shadow: 0 10px 20px rgba(230, 81, 0, 0.3);
}

.cta-features {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
    align-items: center;
    flex-wrap: wrap;
}

/* --- FAQ --- */
.faq {
    padding: 90px 0;
    background-color: var(--dark-bg); /* Fundo Escuro */
    color: var(--white);
}

.faq .section-title h2 {
    color: var(--white);
}

.faq .section-title span {
    color: var(--primary); /* Destaque "dúvida" em laranja */
}

.faq .section-title p {
    color: rgba(255,255,255,0.7);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr; /* Duas colunas no desktop */
    }
}

.accordion-item {
    background-color: #2c2c2c; /* Fundo cinza escuro do item */
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #333;
}

.accordion-header i {
    color: var(--white);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #222;
}

.accordion-content p {
    padding: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Estado Ativo do FAQ */
.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 300px; /* Altura suficiente para o conteúdo */
}

/* --- CONTATO --- */
.contato {
    padding: 80px 0;
    background: var(--bg-light);
}

.form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    max-width: 600px;
    margin: 0 auto;
}

.form-group { margin-bottom: 20px; }

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.1);
}

/* --- FOOTER --- */
footer {
    background: #1a2327;
    color: rgba(255,255,255,0.7);
    padding: 50px 0 20px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-logo {
    width: 120px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

/* --- MEDIA QUERIES (DESKTOP) --- */
@media (min-width: 768px) {
    .menu-toggle { display: none; }
    
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
    
    .nav-menu li { margin: 0 0 0 30px; }
    
    .hero { padding: 160px 0 200px; }
    
    .sobre-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .sobre-img-container { margin: 0; }
}

/* Floating Whatsapp */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.float-wa:hover { transform: scale(1.1); background-color: #20ba5a; }