/* deep_style.css - Versão completa ajustada */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fbefee;
    color: #2E241F;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Importação da Fonte Google Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* PALETA */
:root {
    --pink-dark: #A52B58;
    --pink-light: #FBEFEE;
    --blue-dark: #1F3057;
    --clay: #A52B58;
    --clay-dark: #8d244b;
    --sand: #F8ECEA;
    --deep-brown: #1F3057;
    --taupe: #6B6B6B;
    --cream: #FFF8F7;
    --shadow-sm: 0 15px 35px -12px rgba(0,0,0,0.06);
    --shadow-md: 0 25px 40px -12px rgba(0,0,0,0.10);
    --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--blue-dark);
}

.text-clay {
    color: var(--pink-dark);
    font-weight: 700;
}

/* BOTÕES */
.btn-primary {
    background: var(--pink-dark);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(165, 43, 88, 0.35);
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--clay-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -8px rgba(165, 43, 88, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--pink-dark);
    color: var(--pink-dark);
    padding: 0.8rem 1.8rem;
    border-radius: 60px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* LOADER */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.loader {
    width: 70px;
    aspect-ratio: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    animation: rotateLoader 1.5s infinite ease;
}

.loader span {
    width: 28px;
    height: 28px;
    background: var(--pink-dark);
    border-radius: 8px;
    animation: scaleJump 1s infinite alternate;
}

.loader span:nth-child(2) { animation-delay: 0.2s; }
.loader span:nth-child(3) { animation-delay: 0.4s; }
.loader span:nth-child(4) { animation-delay: 0.1s; }

@keyframes scaleJump {
    0% { transform: scale(1) translateY(0); opacity: 0.6; }
    100% { transform: scale(1.2) translateY(-6px); opacity: 1; }
}

@keyframes rotateLoader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* TIMER */
.timer-card {
    background: var(--blue-dark);
    color: var(--sand);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    display: inline-flex;
    gap: 1.2rem;
    font-weight: 700;
}

.timer-unit {
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 1.3rem;
}

/* ANIMAÇÃO */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.fade-up.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* CARDS */
.bonus-card, .feature-card {
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid #f0e2d8;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

/* GRID */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-bonus {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-bonus {
    display: grid;
    gap: 1.8rem;
}

/* ============================================ */
/* HEADER - MENU FIXO COM LARGURA TOTAL */
/* ============================================ */

.nav-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
    left: 0;
    right: 0;
    box-sizing: border-box;
}

@media (min-width: 1280px) {
    .nav-mobile {
        padding: 1rem calc((100% - 1280px) / 2 + 24px);
    }
}

.logo-svg { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.steering-wheel-icon { 
    width: 45px; 
    height: 45px; 
}

.logo-text { 
    display: flex; 
    flex-direction: column; 
    line-height: 1.1; 
}

.logo-title { 
    font-size: 14px; 
    font-weight: 400; 
    color: var(--blue-dark); 
}

.logo-subtitle { 
    font-size: 20px; 
    font-weight: 800; 
    text-transform: uppercase; 
    color: var(--blue-dark); 
}

.menu-desktop {
    display: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .menu-desktop { display: flex; }
    .menu-mobile-icon { display: none; }
}

.menu-desktop a {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue-dark);
    padding: 5px 0;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-desktop a:hover,
.menu-desktop a.active {
    color: var(--pink-dark);
    font-weight: 600;
}

.menu-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--pink-dark);
    transition: width 0.3s ease;
}

.menu-desktop a:hover::after,
.menu-desktop a.active::after {
    width: 100%;
}

.menu-mobile-icon {
    font-size: 1.8rem;
    cursor: pointer;
}

/* SIDEBAR MENU MOBILE */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--cream);
    box-shadow: -5px 0 20px rgba(0,0,0,0.05);
    z-index: 1001;
    padding: 2rem;
    transition: 0.3s ease;
}

.sidebar-menu.open {
    right: 0;
}

.sidebar-menu a {
    display: block;
    margin: 1.5rem 0;
    text-decoration: none;
    color: var(--blue-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.sidebar-menu a:hover {
    color: var(--pink-dark);
}

/* CTA FIXO */
.cta-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--pink-dark);
    color: white;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: bold;
    z-index: 99;
    box-shadow: 0 10px 25px rgba(165, 43, 88, 0.4);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cta-fixed:hover {
    transform: scale(1.05);
}

/* FAQ */
details {
    background: white;
    border-radius: 24px;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    border: 1px solid #f0e2d8;
}

summary {
    font-weight: 700;
    cursor: pointer;
    color: var(--blue-dark);
}

/* FOOTER */
footer {
    background: var(--sand);
    padding: 2rem;
    text-align: center;
    color: #5b4b3e;
}

/* LINKS ATIVOS */
.menu-desktop a.active {
    color: var(--pink-dark);
    font-weight: 600;
}

.menu-desktop a.active::after {
    width: 100%;
}

/* ===== LIVRO ALINHADO (VERSÃO CORRETA) ===== */
/* ===== SEÇÃO LIVRO ===== */

.book-section {
    background: var(--cream);
    padding: 4rem 0;
}

.book-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* ===== ESTRUTURA DO LIVRO ===== */

.book-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 900px;
    margin: auto;
    position: relative;
    background: #f2e9e4;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* SOMBRA DO LIVRO */
.book-wrapper::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 25px;
    bottom: -15px;
    left: 15%;
    background: rgba(0,0,0,0.25);
    filter: blur(18px);
    border-radius: 50%;
}

/* ESPINHA DO LIVRO (AJUSTADA) */
.book-wrapper::after {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.25),
        rgba(255,255,255,0.08),
        rgba(0,0,0,0.25)
    );

    border-radius: 10px;
    box-shadow:
        inset 0 0 6px rgba(0,0,0,0.5),
        0 0 8px rgba(0,0,0,0.2);
}

/* ===== PÁGINAS ===== */

.book-page {
    flex: 1;
    padding: 2.8rem;
    background: linear-gradient(145deg, var(--deep-brown), #2a3a5e);
    color: #fff;
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* CURVATURA SUAVE */
.book-page.left {
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    box-shadow: inset -6px 0 12px rgba(0,0,0,0.2);
}

.book-page.right {
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
    box-shadow: inset 6px 0 12px rgba(0,0,0,0.2);
}

/* ===== TEXTO ===== */

.book-page ul {
    list-style: none;
    max-width: 90%;
}

.book-page li {
    margin-bottom: 1.5rem;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* MARCADOR */
.book-page li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #a52b58;
    position: absolute;
    left: 0;
    top: 6px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(165,43,88,0.6);
}

/* ===== RESPONSIVO ===== */

@media(max-width:768px){
    .book-wrapper {
        flex-direction: column;
    }

    .book-page {
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .book-wrapper::after,
    .book-wrapper::before {
        display: none;
    }
}

/*area de bonus*/

/* ===== BONUS VERTICAL (OFERTA) ===== */
/* ===== BONUS CLARO (VERSÃO FINAL) ===== */

.bonus-stack {
    background: var(--cream);
    padding: 5rem 0;
}

/* HEADER */
.bonus-header {
    text-align: center;
    margin-bottom: 3rem;
}

.badge {
    background: #a52b58;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.bonus-header h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--deep-brown);
}

.highlight {
    color: #a52b58;
}

.bonus-timer {
    margin-top: 10px;
    font-weight: 600;
    color: var(--deep-brown);
}

.bonus-timer span {
    color: #a52b58;
}

/* LISTA */
.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* CARD */
.bonus-card-v {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 2rem;
    border-radius: 16px;

    background: #fff;

    border: 1px solid rgba(0,0,0,0.06);

    box-shadow: 0 15px 35px rgba(0,0,0,0.06);

    transition: 0.3s;
}

.bonus-card-v:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* TEXTO */
.bonus-text {
    max-width: 60%;
}

.bonus-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--deep-brown);
}

.bonus-text h3 span {
    color: #a52b58;
    font-weight: 400;
}

.bonus-text p {
    font-size: 0.95rem;
    color: var(--taupe);
}

.old-price {
    margin-top: 10px;
    text-decoration: line-through;
    color: #a52b58;
    font-weight: 600;
}

/* IMAGEM */
.bonus-img img {
    width: 200px;
    transition: 0.3s;
}

.bonus-card-v:hover img {
    transform: scale(1.05);
}

/* RESPONSIVO */
@media(max-width:768px){

    .bonus-card-v {
        flex-direction: column;
        text-align: center;
    }

    .bonus-text {
        max-width: 100%;
    }

    .bonus-img img {
        margin-top: 20px;
        width: 160px;
    }
}


/* ===== OFERTA PREMIUM ===== */

.offer-section {
    background: linear-gradient(180deg, #0c0c10, #14080c);
    padding: 5rem 0;
    color: #fff;
}

/* BOX */
.offer-box {
    max-width: 900px;
    margin: auto;
    padding: 2.5rem;

    border-radius: 20px;

    background: linear-gradient(
        145deg,
        rgba(20,20,20,0.95),
        rgba(60,10,20,0.9)
    );

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* TÍTULO */
.offer-title {
    text-align: center;
    margin-bottom: 2rem;
}

.offer-title span {
    color: #a52b58;
}

/* LAYOUT */
.offer-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* LISTA */
.offer-list ul {
    list-style: none;
}

.offer-list li {
    margin-bottom: 12px;
    padding-left: 26px;
    position: relative;
}

/* CHECK */
.offer-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #1ecb5f;
    position: absolute;
    left: 0;
    top: 6px;
}

/* PREÇO */
.offer-price {
    text-align: center;
   
}

.total {
    opacity: 0.7;
}

.old-price {
    text-decoration: line-through;
    color: #ff4d4d;
    font-weight: bold;
    margin-bottom: 10px;
}

.offer-text {
    margin-bottom: 10px;
}

.price {
    font-size: 2.8rem;
    color: #1ecb5f;
    font-weight: 800;
}

.cash {
    margin-top: 5px;
    opacity: 0.8;
}

/* BOTÃO */
.btn-offer {
    display: block;
    margin: 1.5rem auto;
    padding: 14px;

    background: #a52b58;
    color: white;

    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;

    box-shadow: 0 10px 25px rgba(165,43,88,0.4);

    transition: 0.3s;
}

.btn-offer:hover {
    transform: translateY(-2px);
    background: #8d244b;
}

/* SEGURANÇA */
.secure {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* COMPARAÇÃO */
.offer-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.compare-card {
    padding: 1.5rem;
    border-radius: 14px;
}

.compare-card.good {
    background: rgba(30,203,95,0.1);
    border: 1px solid rgba(30,203,95,0.3);
}

.compare-card.bad {
    background: rgba(255,50,50,0.1);
    border: 1px solid rgba(255,50,50,0.3);
}

/* RESPONSIVO */
@media(max-width:768px){
    .offer-content {
        flex-direction: column;
    }

    .offer-compare {
        grid-template-columns: 1fr;
    }
}



        /* --- SEÇÃO 6: COMPARATIVO --- */
        #comparativo { background-color: var(--pink-light); }
        .comparativo-table { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .col-guia, .col-outros { padding: 40px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .col-guia { background-color: var(--pink-dark); color: white; }
        .col-guia h4 { font-size: 18px; font-weight: 700; margin-bottom: 25px; text-transform: uppercase; text-align: center; color: white; }
        .col-guia ul li, .col-outros ul li { font-size: 14px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .check-svg-comp { width: 18px; height: 18px; }
        .check-svg-comp path { fill: white; }

        .col-outros { background-color: var(--blue-dark); color: white; }
        .col-outros h4 { font-size: 18px; font-weight: 700; margin-bottom: 25px; text-transform: uppercase; text-align: center; color: white; }
        .x-svg { width: 18px; height: 18px; }
        .x-svg path { fill: white; }