/* ==========================================================================
   WILL BE MAKE — MÉTODO SUPREMO
   CSS Premium | Identidade Visual: Bordo, Oliva, Bege
   ========================================================================== */

/* ==========================================================================
   1. VARIÁVEIS & RESET
   ========================================================================== */
:root {
    /* Paleta de Cores */
    --burgundy: #7a3a2e;     /* Bordo Principal */
    --burgundy-lt: #a35d4d;  /* Bordo Claro */
    --burgundy-dk: #5c2b22;  /* Bordo Escuro */
    --oliva: #6b6d46;
    --oliva-dk: #4a4c31;
    --bege: #f2e1d4;
    --bege-dk: #e0c8b5;
    --preto: #1a1a1a;
    --preto-soft: #2d2b28;
    --branco: #ffffff;
    --cinza-bg: #faf7f5;

    /* Tipografia */
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;

    /* Espaçamento */
    --section-pad: 100px;
    --container: 1180px;

    /* Efeitos */
    --radius: 16px;
    --shadow-sm: 0 4px 16px rgba(26, 26, 26, .08);
    --shadow-md: 0 12px 40px rgba(26, 26, 26, .14);
    --shadow-lg: 0 24px 60px rgba(26, 26, 26, .2);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--preto);
    background-color: var(--cinza-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ==========================================================================
   2. TIPOGRAFIA GERAL
   ========================================================================== */
.section-label {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 14px;
    position: relative;
    padding-left: 24px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 1.5px;
    background: var(--burgundy);
}

.section-label.light { color: var(--bege); }
.section-label.light::before { background: var(--bege); }
.section-label.gold { color: #b87b5a; }
.section-label.gold::before { background: #b87b5a; }

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--preto);
    margin-bottom: 16px;
}

.section-title.light { color: var(--branco); }
.section-title em { font-style: italic; color: var(--burgundy-lt); }

.section-sub {
    font-size: 1rem;
    color: #777;
    max-width: 540px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ==========================================================================
   3. BOTÕES CTA
   ========================================================================== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--burgundy);
    color: var(--branco);
    padding: 18px 36px;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 0 var(--burgundy-dk), 0 12px 30px rgba(122, 58, 46, .3);
    position: relative;
    top: 0;
    white-space: nowrap;
}

.btn-cta:hover {
    background: var(--burgundy-lt);
    box-shadow: 0 8px 0 var(--burgundy-dk), 0 18px 40px rgba(122, 58, 46, .4);
    transform: translateY(-2px);
}

.btn-cta:active {
    top: 6px;
    box-shadow: none;
    transform: translateY(0);
}

.btn-cta.full { width: 100%; }
.btn-cta.large { padding: 22px 48px; font-size: 1rem; border-radius: 8px; }
.btn-cta i { font-size: 0.85rem; transition: transform 0.3s; }
.btn-cta:hover i { transform: translateX(4px); }

/* ==========================================================================
   4. BARRA TOPO
   ========================================================================== */
.top-bar {
    background: var(--preto);
    color: var(--bege);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    display: inline-block;
    animation: pulse-dot 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.top-bar-link {
    color: var(--bege-dk);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.top-bar-link:hover { color: var(--branco); }

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero {
    background: var(--cinza-bg);
    padding: 80px 0 0;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-blob-1 { width: 700px; height: 700px; background: var(--burgundy-lt); top: -200px; left: -100px; }
.hero-blob-2 { width: 500px; height: 500px; background: var(--bege-dk); bottom: -100px; right: -80px; opacity: 0.4; }

.hero-top {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto 60px;
}

.logo-hero { margin: 0 auto 30px auto; display: block; opacity: 0.9; }

.headline {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--preto);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.headline em { font-style: italic; color: var(--burgundy); }

.headline-num {
    display: inline-block;
    color: var(--burgundy);
    font-style: italic;
    position: relative;
}

.headline-num::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--burgundy);
    opacity: 0.4;
    border-radius: 2px;
}

.sub-headline {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 44px;
    line-height: 1.8;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-wrap { margin-bottom: 44px; }

.hero-btn {
    padding: 20px 48px;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 8px 0 var(--burgundy-dk), 0 16px 40px rgba(122, 58, 46, .35);
}

.cta-sub {
    font-size: 0.9rem;
    color: #666;
    margin-top: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-video-wrap {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(122, 58, 46, 0.3);
}

.video-container video, .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
}

/* Customização do Player de Vídeo */
video::-webkit-media-controls-timeline { display: none !important; }
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display { display: none !important; }
video::-webkit-media-controls-seek-back-button,
video::-webkit-media-controls-seek-forward-button { display: none !important; }

/* ==========================================================================
   6. IDENTIFICAÇÃO DA DOR
   ========================================================================== */
.dores {
    padding: var(--section-pad) 0 40px 0;
    background: var(--branco);
}

.dores-wrapper { max-width: 800px; margin: 0 auto; }

.lista-dores { list-style: none; margin: 30px 0; }

.lista-dores li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--preto);
    margin-bottom: 16px;
    font-weight: 500;
}

.lista-dores i {
    color: #d32f2f;
    font-size: 1.2rem;
    background: #ffebee;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dores-destaque {
    background: var(--cinza-bg);
    padding: 30px;
    border-left: 5px solid var(--burgundy);
    border-radius: 8px;
    margin-top: 30px;
}

.dores-destaque p { margin-bottom: 10px; color: var(--preto-soft); line-height: 1.6; }
.dores-destaque p:last-child { margin-bottom: 0; }

/* ==========================================================================
   7. PARA QUEM É
   ========================================================================== */
.para-quem {
    padding: var(--section-pad) 0;
    background: var(--branco);
    position: relative;
    overflow: hidden;
}

.para-quem-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.pq-img-stack { position: relative; }

.pq-img-stack img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.pq-tag {
    position: absolute;
    bottom: 28px;
    right: -20px;
    background: var(--burgundy);
    color: var(--branco);
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

.lista-check {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0 40px;
}

.lista-check li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.check-icon {
    color: var(--burgundy);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.lista-check li strong { color: var(--preto); }

/* ==========================================================================
   8. MÉTODO E MÓDULOS
   ========================================================================== */
.conteudo {
    padding: var(--section-pad) 0;
    background: var(--cinza-bg);
}

.grade-modulos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.modulo-item {
    background: var(--branco);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid rgba(122, 58, 46, .1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.modulo-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--burgundy);
    transform: translateY(-4px);
}

.modulo-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--burgundy-lt);
    line-height: 1;
    flex-shrink: 0;
    min-width: 50px;
}

.modulo-item h3 {
    font-family: var(--sans);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 8px;
    line-height: 1.4;
}

.modulo-item p { font-size: 1rem; color: #777; line-height: 1.6; }

/* Grade de Técnicas (Galeria) */
.grid-tecnicas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.tecnica-card {
    background: var(--branco);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
}

.tecnica-card img { border-radius: 8px; margin-bottom: 10px; }
.tecnica-card p { font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--preto); }

/* ==========================================================================
   9. COMPARAÇÃO (Nós vs Eles)
   ========================================================================== */
.comparacao { 
    padding: var(--section-pad) 0; 
    background: var(--cinza-bg); 
}

.comp-wrapper { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    max-width: 900px; 
    margin: 50px auto 40px auto; 
}

.comp-card { 
    padding: 40px; 
    border-radius: 20px; 
    box-shadow: var(--shadow-md); 
    position: relative; 
}

.comp-card h3 { 
    font-family: var(--serif); 
    font-size: 1.8rem; 
    margin-bottom: 25px; 
    text-align: center; 
    color: var(--preto); 
}

.comp-card ul { list-style: none; padding: 0; margin: 0; }
.comp-card li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-size: 1.05rem; }

.comp-card.bad { background: var(--branco); border: 1px solid #eee; color: #666; }
.comp-card.bad i { color: #999; }

.comp-card.good { 
    background: var(--burgundy); 
    color: var(--branco); 
    transform: scale(1.05); 
    border: 2px solid var(--burgundy-lt); 
    box-shadow: 0 20px 40px rgba(122, 58, 46, 0.2); 
}
.comp-card.good h3 { color: var(--branco); }
.comp-card.good i { color: var(--bege); }

.comp-icon { 
    width: 60px; 
    height: 60px; 
    position: absolute; 
    top: -30px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: var(--branco); 
    border-radius: 50%; 
    padding: 10px; 
    object-fit: contain; 
    border: 3px solid var(--burgundy-lt); 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.comp-fechamento { text-align: center; font-size: 1.1rem; color: var(--preto-soft); line-height: 1.6; margin-top: 40px; }
.comp-fechamento strong { color: var(--burgundy); }

/* ==========================================================================
   10. BÔNUS
   ========================================================================== */
.bonus {
    padding: var(--section-pad) 0;
    background: var(--preto-soft);
    position: relative;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bonus-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.bonus-card:hover {
    background: rgba(122, 58, 46, .08);
    border-color: rgba(122, 58, 46, .3);
    transform: translateY(-6px);
}

.bonus-card.featured {
    border-color: var(--burgundy);
    background: rgba(122, 58, 46, .08);
}

.bonus-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--burgundy);
    color: var(--branco);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.bonus-icon {
    width: 60px;
    height: 60px;
    background: rgba(122, 58, 46, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--burgundy-lt);
}

.bonus-card h3 {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--branco);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    line-height: 1.4;
}

.bonus-card p { font-size: 0.85rem; color: #aaa; line-height: 1.7; margin-bottom: 20px; }
.bonus-valor { font-size: 0.75rem; font-weight: 700; color: var(--burgundy-lt); letter-spacing: 0.05em; text-transform: uppercase; }

/* ==========================================================================
   11. CERTIFICADO
   ========================================================================== */
.certificado { padding: var(--section-pad) 0; background: var(--branco); }

.cert-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cert-text p { color: #666; line-height: 1.8; margin-bottom: 16px; }
.cert-text .btn-cta { margin-top: 16px; }
.cert-img img { border-radius: 16px; box-shadow: var(--shadow-lg); border: 2px solid rgba(122, 58, 46, .2); }

/* ==========================================================================
   12. MENTORA
   ========================================================================== */
.mentora { padding: var(--section-pad) 0; background: var(--cinza-bg); }

.mentora-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mentora-img { position: relative; }
.mentora-img img { border-radius: 20px; box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }

.mentora-tag {
    position: absolute;
    bottom: 28px;
    left: -20px;
    background: var(--burgundy);
    color: var(--branco);
    padding: 14px 22px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.mentora-tag strong { display: block; font-family: var(--serif); font-size: 1.6rem; font-weight: 600; line-height: 1; margin-bottom: 2px; }
.mentora-tag span { font-size: 0.75rem; opacity: 0.85; }

.mentora-text .section-title { color: var(--preto) !important; }
.mentora-text .section-title em { color: var(--burgundy) !important; }

.mentora-bio p {
    color: #444 !important;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: left;
}

.mentora-text .btn-cta {
    background: var(--burgundy);
    color: var(--branco);
    box-shadow: 0 6px 0 var(--burgundy-dk), 0 12px 30px rgba(122, 58, 46, .3);
    margin-top: 28px;
    transition: var(--transition);
}

.mentora-text .btn-cta:hover {
    background: var(--burgundy-lt);
    box-shadow: 0 8px 0 var(--burgundy-dk), 0 18px 40px rgba(122, 58, 46, .4);
    transform: translateY(-2px);
}

/* ==========================================================================
   13. OFERTA (Fundo Escuro)
   ========================================================================== */
.oferta {
    padding: var(--section-pad) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2b28 100%);
    position: relative;
    overflow: hidden;
}

.oferta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px; width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(122, 58, 46, .06);
    pointer-events: none;
}

.oferta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.oferta-desc { color: #bbb; margin: 20px 0 32px; line-height: 1.8; }
.oferta-lista { display: flex; flex-direction: column; gap: 12px; margin-bottom: 0; }
.oferta-lista li { font-size: 0.9rem; color: #ccc; font-weight: 500; }
.oferta-lista li i { color: var(--burgundy-lt); }

.card-preco {
    background: var(--branco);
    border-radius: 24px;
    padding: 44px 36px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-preco::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--burgundy-lt));
}

.urgencia-bar {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #fff3cd; border: 1px solid #ffc107; color: #856404;
    padding: 8px 16px; border-radius: 8px; font-size: 0.78rem; font-weight: 700; margin-bottom: 28px;
}

.urgencia-dot { width: 8px; height: 8px; background: #dc3545; border-radius: 50%; animation: pulse-dot 1.2s ease-in-out infinite; }

.preco-de { font-size: 0.85rem; color: #999; margin-bottom: 4px; }
.preco-de s { color: #bbb; }
.preco-parcela { font-size: 1.1rem; color: var(--preto); margin-bottom: 4px; }
.preco-parcela strong { font-family: var(--serif); font-size: 2.8rem; color: var(--burgundy); line-height: 1; }
.preco-vista { font-size: 0.9rem; color: #666; margin-bottom: 28px; }

.preco-seguro {
    display: flex; justify-content: center; gap: 20px; margin-top: 20px;
    font-size: 0.75rem; color: #999; flex-wrap: wrap;
}
.preco-seguro i { color: #4caf50; margin-right: 4px; }

/* ==========================================================================
   14. FAQ
   ========================================================================== */
.faq { padding: var(--section-pad) 0; background: var(--cinza-bg); }

.accordion { max-width: 760px; margin: 0 auto; }

.acc-item {
    border: 1px solid rgba(122, 58, 46, .12);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.acc-item:has(.acc-btn[aria-expanded="true"]) { border-color: var(--burgundy); }

.acc-btn {
    width: 100%; background: none; border: none; padding: 22px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    cursor: pointer; font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
    color: var(--preto); text-align: left; transition: var(--transition);
}

.acc-btn:hover, .acc-btn[aria-expanded="true"] { color: var(--burgundy); }

.acc-icon { flex-shrink: 0; color: var(--burgundy); font-size: 0.85rem; transition: transform 0.35s; }
.acc-btn[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }

.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; background: #fdf9f7; }
.acc-panel p { padding: 0 24px 22px; font-size: 0.9rem; color: #666; line-height: 1.8; }

/* ==========================================================================
   15. CTA FINAL
   ========================================================================== */
.cta-final {
    padding: var(--section-pad) 0;
    background: linear-gradient(135deg, var(--preto) 0%, #2d2b28 100%);
    text-align: center; position: relative; overflow: hidden;
}

.cta-final::before {
    content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 58, 46, .1) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}

.cta-final-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-logo { margin: 0 auto 28px; display: block; opacity: 0.9; }
.cta-final .section-title em { color: var(--bege); }
.cta-final .btn-cta { margin: 0 auto; }

/* ==========================================================================
   16. FOOTER PREMIUM E BOTÕES FLUTUANTES
   ========================================================================== */
.footer {
    background: var(--preto); padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.7); font-size: 0.9rem;
}

.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px;
    margin-bottom: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo { width: 160px; margin-bottom: 15px; opacity: 0.9; }
.footer-tagline { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--bege); margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    display: flex; align-items: center; justify-content: center; width: 42px; height: 42px;
    border-radius: 50%; background: rgba(255, 255, 255, 0.05); color: var(--branco);
    font-size: 1.1rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--burgundy); color: var(--branco); transform: translateY(-4px); }

.footer h4 { color: var(--branco); font-family: var(--sans); font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; padding: 0; }
.footer-links-col a { display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); color: var(--branco); }
.footer-links-col a:hover { color: var(--bege); }

.payment-icons { display: flex; gap: 12px; font-size: 2rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 16px; }
.security-badge {
    display: inline-flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px; border-radius: 8px; font-size: 0.85rem; color: var(--branco); font-weight: 600;
}
.security-badge i { color: #4caf50; font-size: 1rem; }

.footer-bottom { text-align: center; }
.footer-disclaimer { max-width: 800px; margin: 0 auto 20px; font-size: 0.75rem; line-height: 1.6; color: var(--branco); opacity: 0.6; }
.footer-copy { font-size: 0.8rem; letter-spacing: 0.02em; line-height: 1.6; color: var(--branco); }

.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: #FFF;
    width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 34px; box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); z-index: 1000; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #20b858; box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3); color: #FFF; }

.sticky-mobile {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    padding: 12px 16px; background: var(--branco); box-shadow: 0 -4px 24px rgba(0, 0, 0, .12); z-index: 999;
}
.sticky-btn {
    display: block; background: var(--oliva); color: var(--branco); text-align: center;
    padding: 16px; border-radius: 8px; font-weight: 800; font-size: 0.88rem; letter-spacing: 0.06em;
    text-transform: uppercase; box-shadow: 0 4px 0 var(--oliva-dk); transition: var(--transition);
}
.sticky-btn:hover { background: #7a7c50; }

/* Animações Scroll */
.reveal-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--delay, 0s); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.revealed { opacity: 1; transform: translate(0); }


/* ==========================================================================
   17. RESPONSIVIDADE (Mobile, Tablet, Desktop)
   ========================================================================== */

/* Laptops Pequenos e Tablets Horizontais */
@media (max-width: 1100px) {
    .grade-modulos { grid-template-columns: repeat(2, 1fr); }
    .grid-tecnicas { grid-template-columns: repeat(2, 1fr); } /* Evita fotos pequenas demais */
}

/* Tablets e Celulares Deitados */
@media (max-width: 900px) {
    :root { --section-pad: 70px; }

    .hero-top { max-width: 100%; }
    .hero-video-wrap { max-width: 100%; }

    /* Grades 1 Coluna */
    .para-quem-wrapper, .oferta-wrapper, .cert-wrapper, .mentora-wrapper, .comp-wrapper { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }

    /* Ajuste de Ordem (Imagem p/ Cima e Benefícios antes do Preço) */
    .pq-img-stack, .mentora-img { order: -1; }
    .oferta-left { order: 1; text-align: center; }
    .card-preco { order: 2; }
    .oferta-lista { align-items: center; }
    
    .cert-img { order: 0; } /* Deixa a imagem do certificado abaixo do texto no tablet/mobile */

    .mentora-wrapper { text-align: left; }
    .mentora-tag { left: 15px; bottom: 20px; }
    .mentora-bio p { text-align: left; }

    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
    .comp-card.good { transform: scale(1); margin-top: 30px; } /* Ajuste de escala do card */

    /* Rodapé e Botoes Fixos */
    .sticky-mobile { display: block; }
    body { padding-bottom: 72px; } /* Respiro para não cobrir final do site */
    .whatsapp-float { bottom: 90px; right: 20px; width: 55px; height: 55px; font-size: 30px; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-logo { margin: 0 auto 15px auto; }
    .footer-social, .payment-icons, .security-badge { justify-content: center; }
    .footer-links-col a { justify-content: center; }
}

/* Celulares Padrão (Smartphones) */
@media (max-width: 600px) {
    :root { --section-pad: 56px; }

    /* Topo Hero Otimizado (First Fold) */
    .top-bar-inner { flex-direction: column; gap: 4px; font-size: 0.72rem; padding: 5px; }
    .hero { padding: 40px 0 0; }
    .logo-hero { width: 160px; margin-bottom: 20px; }
    .headline { font-size: 2.1rem; margin-bottom: 16px; }
    .sub-headline { font-size: 0.95rem; margin-bottom: 28px; line-height: 1.6; }
    .hero-top { margin-bottom: 30px; }
    
    /* Configuração Global de Botoes no Mobile (Quebra de Linha Suave) */
    .btn-cta { 
        width: 100%; 
        white-space: normal; /* Permite texto em 2 linhas */
        line-height: 1.4; 
        font-size: 0.85rem; 
        padding: 16px 20px; 
    }
    .hero-cta-wrap { display: flex; flex-direction: column; padding: 0 10px; }
    .cta-sub { font-size: 0.8rem; }

    /* Dores */
    .lista-dores li { align-items: flex-start; font-size: 1rem; }
    .lista-dores i { margin-top: 3px; }
    .dores-destaque { padding: 20px; margin-top: 20px; }

    /* Grades 1 Coluna Fixas */
    .grade-modulos, .bonus-grid { grid-template-columns: 1fr; }
    
    /* O SEGREDO DO DESIGN: Técnicas 1 embaixo da outra no celular (Como no print) */
    .grid-tecnicas { grid-template-columns: 1fr; gap: 20px; }
    
    .bonus-card.featured { transform: none; }

    /* Mentora */
    .mentora-img img { height: 420px; object-fit: cover; object-position: top center; }
    .mentora-tag strong { font-size: 1.3rem; }
    .mentora-text .section-title { font-size: 2.2rem; }

    /* Oferta e Preço */
    .preco-parcela strong { font-size: 2.4rem; }

    /* FAQ */
    .acc-btn { padding: 18px; font-size: 0.9rem; }
    .acc-panel p { padding: 0 18px 18px; }

    /* CTA Final */
    .cta-final .section-title { font-size: 1.8rem !important; line-height: 1.3; }
    .cta-final .btn-cta i { margin-left: 5px; }
}