/* --- VARIÁVEIS CSS --- */
:root {
  --primary: #FFD700;          /* Dourado */
  --primary-dark: #C7A200;     /* Dourado mais escuro */
  --primary-light: #FFF3A3;    /* Dourado claro */
  --accent: #00CFFF;           /* Azul elétrico */
  --bg: #0A1931;               /* Azul marinho */
  --bg-soft: #0b1629;          /* Azul marinho mais suave */
  --card-bg: #0F1E3A;          /* Fundo de cards */
  --text-main: #FFFFFF;        /* Branco */
  --text-muted: #D9D9D9;       /* Cinza claro */
  --danger: #FF4D4D;           /* Vermelho de alerta */
  --ice-white: #F8F9FA;        /* Branco gelo */
  --border-soft: rgba(1, 1, 1, 0.2);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 999px;
  --grad-main: linear-gradient(135deg, #FFD700, #FFE55C);
  --grad-btn: linear-gradient(135deg, #FFD700, #FFE55C);
  --grad-bg: radial-gradient(circle at top left, rgba(255, 215, 0, 0.12), transparent 60%),
             radial-gradient(circle at bottom right, rgba(0, 207, 255, 0.15), transparent 60%),
             linear-gradient(180deg, #0A1931, #000000);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
  scroll-padding-bottom: 400px;
}

* {
  scroll-behavior: smooth;
}






/* --- RESET BÁSICO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    width: 100%;
    overflow-x: hidden;
    background: var(--grad-bg);
    color: var(--text-main);
}

/* Garante que imagens não estouram a tela */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container centralizado */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .container {
        width: 85%;
        max-width: 1200px;
    }
}

/* --- BARRA DE AVISO --- */
.top-bar {
    background-color: #000000;
    color: var(--text-main);
    text-align: center;
    padding: 12px 10px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .top-bar {
        padding: 16px 20px;
        font-size: 1rem;
        letter-spacing: 2px;
    }
}






/* --- SESSÃO HERO (ESTRUTURA GERAL) --- */
.hero {
    background-color:white;
    padding: 15px 0 30px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-soft);
}

.hero2 {
    width: 100%;
    background-color: var(--bg);
    padding-bottom: 22px;
}




/* LAYOUT FLEXBOX */
.hero-container {
    display: flex;
    /* MOBILE FIRST: Coluna invertida (Imagem em cima, texto em baixo) */
    flex-direction: column-reverse; 
    align-items: center;
    gap: 30px;
    text-align: center; /* Centraliza texto no mobile */
}

/* Apenas para mobile */
@media (max-width: 767px) {
   
    .hero-img {
        background-color: var(--bg);
    }
    
}

/* --- ESTILIZAÇÃO DOS TEXTOS --- */
.hero-text h1 {
    font-size: 1.8rem;
    color: var(--bg);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text h1 strong {
    font-weight: 900;
}

.hero-text h1 u {
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.hero-text .description {
    font-size: 1rem;
    color: var(--bg);
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-text .price {
    font-size: 1.3rem;
    color: var(--bg);
    font-weight: bold;
    margin-bottom: 35px;
}

/* --- BOTÃO (CTA) --- */
.btn-cta {
    display: block;
    background: #00FF00;
    color: #000;
    padding: 18px 30px;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0px 8px 25px rgba(0, 255, 0, 0.5);
    transition: transform 0.2s ease;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    animation: pulseSoft 2s infinite;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

.btn-cta:hover {
    transform: scale(1.05);
    animation: none;
}

/* --- IMAGEM --- */
.hero-img img {
    width: 100%;
    max-width: 320px; /* Tamanho controlado no mobile */
}

/* Imagem superior (top.png) */
.hero-img-top {
    margin-bottom: 30px;
}

/* Imagem inferior (Parte-de-Baixo.png) */
.hero-img-bottom {
    max-width: 400px;
    width: 100%;
    padding-bottom: 10px;
    transform: scale(1.2);
}

/* --- SEÇÃO HERO BOTTOM (SEGUNDA IMAGEM) --- */
.hero-bottom {
    background-color: var(--ice-white);
    padding: 100px 0 60px 0;
    text-align: center;
}

.hero-bottom-img img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

/* --- RESPONSIVIDADE (DESKTOP) --- */
@media (min-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero2 {
        padding: 60px 0;
    }

    .hero-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: left;
        gap: 60px;
        max-width: 1200px;
    }

    .hero-copy {
        flex: 1;
        max-width: 550px;
    }
    
    .hero-media {
        flex: 1;
        max-width: 550px;
        display: flex;
        justify-content: center;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 25px;
    }
    
    .hero-text .description {
        font-size: 1.2rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .hero-text .price {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .hero-img {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .hero-img-top {
        max-width: 450px !important;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-img-bottom {
        max-width: 550px !important;
        width: 100%;
    }
    
    .btn-cta {
        font-size: 1.3rem;
        padding: 22px 50px;
        max-width: 450px;
    }
}


/* --- SESSÃO 2: CARROSSEL A4 (TAMANHO ORIGINAL COPIADO) --- */

.carousel-section {
    background-color: var(--bg);
    padding: 20px 0 80px 0; 
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.carousel-title {
    color: var(--text-main);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    margin-top: 10px;
    padding: 0 15px;
}

/* Movimento linear contínuo */
.swiper-wrapper {
    transition-timing-function: linear !important;
}

/* --- ESTILO DAS FOLHAS (MOBILE) --- */
.swiper-slide {
    /* Largura reduzida */
    width: 254px !important;
    max-width: 254px !important;
    
    /* Proporção A4 (Papel) */
    aspect-ratio: 210/297; 
    
    border-radius: 4px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* --- RESPONSIVIDADE (COMPUTADOR) --- */
@media (min-width: 768px) {
    .carousel-section { 
        padding: 80px 0 100px 0;
    }
    
    .carousel-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
        line-height: 1.3;
    }

    .swiper-slide {
        width: 350px !important;
        max-width: 350px !important;
    }
}

/* --- SESSÃO 3: BENEFÍCIOS --- */

.benefits-section {
    background-color: var(--ice-white);
    padding: 50px 0;
    text-align: center;
}

.section-title {
    font-size: 1.6rem;
    color: #1a1a1a;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 10px;
    padding: 0 15px;
}

.section-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
    padding: 0 20px;
    line-height: 1.5;
}

.transformation-text {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 40px;
    padding: 0 20px;
    line-height: 1.6;
}

.transformation-text strong {
    color: #000000;
    font-weight: 900;
}

/* A Grade dos cartões */
.benefits-grid {
    display: grid;
    /* Mobile: 1 coluna por padrão */
    grid-template-columns: 1fr; 
    gap: 20px;
    padding: 0 20px; /* Margem lateral para não colar na borda do celular */
    max-width: 800px; /* Largura máxima para não ficar esticado no PC */
    margin: 0 auto 40px auto; /* Centraliza a grade */
}

/* O Cartão Individual */
.benefit-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 25px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    /* Sombra suave */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.benefit-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Utilitário para margem no botão */
.mt-30 {
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: fit-content;
}

/* --- RESPONSIVIDADE (PC) --- */
@media (min-width: 768px) {
    .benefits-section {
        padding: 100px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 60px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1100px; 
        gap: 40px;
        padding: 0 30px;
    }
    
    .benefit-card {
        padding: 35px 30px;
    }
    
    .benefit-card .icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .benefit-card h3 {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
    
    .benefit-card p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}

/* --- SESSÃO 4: ANTES E DEPOIS --- */

.ba-section {
    background: var(--bg);
    padding: 50px 0;
    text-align: center;
}

/* Container do Slider */
.ba-slider {
    position: relative;
    width: 100%;
    max-width: 600px; /* Tamanho máximo no PC */
    margin: 30px auto;
    
    /* Define a altura do comparador. Ajuste conforme suas imagens */
    /* Exemplo: se forem quadradas, use aspect-ratio: 1/1 */
    aspect-ratio: 4/3; 
    
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 4px solid #fff; /* Moldura branca */
    cursor: col-resize; /* Ícone do mouse muda para indicar que pode arrastar */
}

/* Wrapper das Imagens */
.ba-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Essencial para cortar a imagem de cima */
}

.ba-img-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que preencha o espaço sem distorcer */
    object-position: center center; /* Fixa a imagem no centro */
    position: absolute; /* Fixa a imagem na posição */
    top: 0;
    left: 0;
    pointer-events: none; /* Evita arrastar a imagem fantasma */
}

/* A imagem do "Depois" fica por cima (z-index maior) */
.ba-img-wrapper.after {
    z-index: 2;
    width: 50%; /* Começa na metade */
    border-right: 2px solid #fff; /* Linha branca de separação */
}

/* Etiquetas (Antes/Depois) */
.ba-label {
    position: absolute;
    top: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    pointer-events: none;
}
.before-label { left: 20px; }
.after-label { right: 20px; }

/* --- O PUXADOR (HANDLE) --- */
.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fff; /* Linha vertical branca */
    z-index: 3;
    transform: translateX(-50%); /* Centraliza o puxador na posição */
    pointer-events: none; /* O JS cuida do movimento */
}

/* A bolinha central */
.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Ícone SVG dentro da bolinha */
.handle-circle svg {
    width: 24px;
    height: 24px;
}

/* --- RESPONSIVIDADE (PC) --- */
@media (min-width: 768px) {
    .ba-section {
        padding: 100px 0;
    }
    
    .ba-slider {
        max-width: 800px;
        margin: 50px auto;
    }
}


/* --- SESSÃO 5: PROMESSA (FAIXA ESCURA) --- */
.promise-section {
    background-color: #05101f;
    padding: 50px 0;
    text-align: center;
    color: #FFFFFF;
}

.promise-section h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 600;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
}

.promise-section .highlight {
    color: var(--primary);
    font-weight: 900;
    font-size: 1.6rem;
    display: block;
    margin-top: 10px;
    text-transform: uppercase;
}

/* --- SESSÃO 6: IDEAL PARA VOCÊ --- */
.ideal-section {
    background-color: var(--card-bg);
    padding: 60px 0;
}

.ideal-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.ideal-card {
    display: flex;
    align-items: flex-start; /* Alinha ícone e texto no topo */
    gap: 15px;
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    padding: 20px;
    border-radius: 10px;
    /* Efeito suave ao passar o mouse */
    transition: transform 0.2s, box-shadow 0.2s;
}

.ideal-card:hover {
    transform: translateX(5px);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-soft);
}

.check-icon {
    background-color: var(--primary);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%; /* Bolinha */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0; /* Impede o ícone de amassar */
}

.ideal-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.ideal-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- RESPONSIVIDADE (PC) --- */
@media (min-width: 768px) {
    .promise-section {
        padding: 80px 0;
    }
    
    .promise-section h2 {
        font-size: 2.2rem;
        line-height: 1.5;
    }
    
    .promise-section .highlight {
        font-size: 2rem;
        margin-top: 20px;
    }
    
    .ideal-section {
        padding: 100px 0;
    }

    .ideal-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 1100px;
    }
    
    .ideal-card {
        padding: 30px;
    }
    
    .ideal-content h3 {
        font-size: 1.25rem;
    }
    
    .ideal-content p {
        font-size: 1.05rem;
    }
}

/* --- SESSÃO 7: O QUE VEM NO PACOTE --- */
.includes-section {
    background-color: var(--ice-white);
    padding: 60px 0;
    text-align: center;
}

/* Imagem do Mockup Centralizada */
.product-highlight-img {
    margin: 30px auto;
    max-width: 350px; /* Tamanho controlado */
    padding: 20px 0;
}

.product-highlight-img img {
    transform: scale(1.2);
}

/* Caixa que agrupa as informações */
.product-details-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px 20px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative; /* Para posicionar o badge */
    overflow: hidden;
}

/* Etiqueta "ITEM 01" */
.item-badge {
    background-color: var(--primary);
    color: #000;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1.5rem;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.divider-line {
    height: 2px;
    width: 60px;
    background-color: var(--primary);
    margin: 0 auto 30px auto; /* Centraliza a linha */
}

/* Lista de Características */
.feature-list {
    list-style: none; /* Remove as bolinhas padrões feias */
    text-align: left; /* Texto alinhado à esquerda para facilitar leitura */
    padding: 0;
    margin: 0 auto;
    display: inline-block; /* Faz a lista ficar centralizada no bloco */
}

.feature-list li {
    font-size: 1rem;
    color: #555;
    padding: 8px 0;
    padding-left: 25px; /* Espaço para o ícone */
    position: relative;
    border-bottom: 1px dashed #eee; /* Linha pontilhada suave entre itens */
}

/* Ícone de bolinha personalizada antes de cada item */
.feature-list li::before {
    content: "•";
    color: var(--primary);
    font-size: 2rem; /* Bolinha grande */
    position: absolute;
    left: 0;
    top: -5px; /* Ajuste fino da altura */
    line-height: 1;
}

.and-more {
    margin-top: 25px;
    font-weight: 900;
    font-size: 1.2rem;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- RESPONSIVIDADE (PC) --- */
@media (min-width: 768px) {
    .includes-section {
        padding: 100px 0;
    }
    
    .product-highlight-img {
        max-width: 450px;
        margin: 40px auto;
    }
    
    .product-details-box {
        padding: 50px 40px;
        max-width: 850px;
    }
    
    .product-name {
        font-size: 2rem;
    }
    
    .feature-list li {
        font-size: 1.1rem;
        padding: 12px 0;
    }
    
    .and-more {
        font-size: 1.4rem;
        margin-top: 35px;
    }
}

/* --- SESSÃO 8: INTRODUÇÃO AOS BÔNUS --- */
.bonus-intro-section {
    background-color: var(--bg);
    padding: 60px 0;
    text-align: center;
    color: var(--text-main);
    border-top: 4px solid var(--primary); 
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.bonus-title .highlight-big {
    color: var(--primary);
    font-size: 2.5rem;
    display: block;
    margin-top: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.bonus-subtitle {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Caixa de destaque "8 BÔNUS" */
.bonus-badge {
    display: inline-block;
    border: 2px dashed var(--primary);
    padding: 15px 30px;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-main);
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- RESPONSIVIDADE (PC) --- */
@media (min-width: 768px) {
    .bonus-intro-section {
        padding: 100px 0;
    }

    .bonus-title {
        font-size: 2.5rem;
    }

    .bonus-title .highlight-big {
        font-size: 5rem;
        margin-top: 20px;
    }
    
    .bonus-subtitle {
        font-size: 1.4rem;
        margin-bottom: 50px;
    }

    .bonus-badge {
        font-size: 2rem;
        padding: 25px 60px;
    }
}

/* --- SESSÃO 9: CARDS DE BÔNUS (GRID) --- */
.bonus-list-section {
    background-color: var(--ice-white);
    padding: 50px 0;
}

/* O GRANDE SEGREDO: DISPLAY GRID */
.bonus-grid {
    display: grid;
    /* Mobile: 1 coluna */
    grid-template-columns: 1fr; 
    gap: 25px;
    padding: 0;
    width: 100%;
    margin: 0;
}

/* O VISUAL DO CARD (RETANGULAR) */
.bonus-card {
    background: var(--bg);
    border: 1px solid var(--primary);
    border-radius: 15px;
    padding: 30px 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    width: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* Etiqueta no topo do card */
.bonus-tag {
    background-color: var(--bg);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Estilo especial para o último bônus (Ouro) */
.bonus-tag.gold {
    background-color: #FFD700; /* Dourado */
    color: #000;
}

.bonus-img {
    width: 100%;
    display: block;
    margin: 0;
    padding: 20px 0 20px 0;
    overflow: hidden;
}

.bonus-img img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 25px 0;
    border-radius: 8px;
    transform: scale(1.5);
}

.card-title {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.4;
    padding: 0 10px;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-desc {
    font-size: 0.95rem;
    color: #FFFFFF;
    line-height: 1.5;
}

/* --- RESPONSIVIDADE (PC) --- */
@media (min-width: 768px) {
    .bonus-list-section {
        padding: 80px 0;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 30px;
    }

    .bonus-card {
        padding: 50px 40px;
        min-height: 600px;
        border-radius: 20px;
    }
    
    .bonus-img img {
        max-width: 525px;
        border-radius: 12px;
    }

    .card-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
        min-height: 70px;
        line-height: 1.5;
    }
    
    .card-desc {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}


/* --- SESSÃO 10: TABELA DE PREÇOS --- */
.plans-section {
    background-color: var(--card-bg);
    padding: 60px 0;
    text-align: center;
}

.plans-container {
    max-width: 500px; /* No mobile fica estreito e focado */
    margin: 0 auto;
}

/* ESTILO GERAL DO CARD */
.plan-card {
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: 15px;
    padding: 30px 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 15px;
    margin-top: 20px;
    text-transform: uppercase;
}

.plan-img {
    padding-bottom: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan-img img {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

/* LISTA DE ITENS */
.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    color: var(--text-muted);
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* PREÇO */
.price-box {
    margin-bottom: 25px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
}

.price-installments {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* --- ESTILOS ESPECÍFICOS DO PLANO COMPLETO --- */
.plan-card.complete {
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-soft);
    transform: scale(1.02);
    background: var(--bg-soft);
}

.best-value-badge {
    background-color: var(--primary);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    padding: 8px 0;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.9rem;
}

.plan-sub {
    font-size: 0.9rem;
    background: var(--bg);
    color: var(--primary);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: bold;
}

.check-list li::before {
    content: "✔ ";
    color: green;
    font-weight: bold;
}

.price-old {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 5px;
}

.green-text {
    color: #00FF00;
}

.price-economy {
    background-color: var(--accent);
    color: #000;
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 3px;
}

.scarcity-text {
    color: var(--danger);
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 15px;
}

/* Botão Cinza para o plano básico (menos chamativo) */
.btn-gray {
    background-color: var(--card-bg);
    color: var(--text-muted);
    box-shadow: none;
    font-weight: bold;
}
.btn-gray:hover {
    background-color: #ddd;
    transform: none;
}

/* Caixa de Atenção entre os planos */
.attention-box {
    background-color: var(--card-bg);
    color: var(--text-main);
    border: 1px solid var(--primary);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

/* Animação de Pulsar no Botão Principal */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(173, 255, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(173, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(173, 255, 0, 0); }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* Animação de Bounce para Seta */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.arrow-bounce {
    display: inline-block;
    animation: bounce 2s infinite;
}

/* --- RESPONSIVIDADE PC --- */
@media (min-width: 768px) {
    .plans-section {
        padding: 100px 0;
    }
    
    .plans-container {
        max-width: 1100px;
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 50px;
    }

    .plan-card {
        width: 48%;
        margin-bottom: 0;
        padding: 40px 35px;
    }
    
    .plan-card.complete {
        transform: scale(1.05);
    }
    
    .plan-name {
        font-size: 1.8rem;
    }
    
    .plan-img img {
        max-width: 250px;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .plan-features li {
        font-size: 1.05rem;
        padding: 10px 0;
    }

    .attention-box {
        display: none;
    }
}

/* --- SESSÃO 11: FAQ (ACORDEÃO) --- */
.faq-section {
    background-color: var(--ice-white);
    padding: 60px 0;
}

.faq-grid {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

/* --- RESPONSIVIDADE (PC) --- */
@media (min-width: 768px) {
    .faq-section {
        padding: 100px 0;
    }
    
    .faq-grid {
        max-width: 900px;
    }
    
    .faq-item summary {
        font-size: 1.3rem;
        padding-right: 40px;
    }
    
    .faq-item p {
        font-size: 1.1rem;
        margin-top: 15px;
        line-height: 1.7;
    }
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

/* A Pergunta (Clicável) */
.faq-item summary {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    cursor: pointer;
    list-style: none; /* Remove a setinha padrão feia */
    position: relative;
    padding-right: 30px;
}

/* Criando uma setinha personalizada (+) */
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    position: absolute;
    right: 0;
    top: -5px;
    font-weight: bold;
}

/* Quando estiver aberto, muda para (-) */
.faq-item[open] summary::after {
    content: '-';
    color: var(--primary);
}

/* A Resposta */
.faq-item p {
    margin-top: 10px;
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
    padding-right: 20px;
}

/* --- RODAPÉ --- */
.site-footer {
    background-color: var(--bg);
    color: var(--text-muted);
    padding: 40px 0;
    text-align: center;
    font-size: 0.85rem;
    border-top: 4px solid var(--primary);
}

/* --- RESPONSIVIDADE (PC) --- */
@media (min-width: 768px) {
    .site-footer {
        padding: 60px 0;
        font-size: 0.95rem;
    }
    
    .copyright {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .disclaimer {
        font-size: 1rem;
        max-width: 1000px;
    }
}

.copyright {
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

.disclaimer {
    margin-bottom: 20px;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* === POPUP DE UPSELL === */
.upsell-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.upsell-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    max-width: 340px;
    width: 100%;
    padding: 0;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    border: 3px solid var(--primary);
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.upsell-header {
    background: linear-gradient(135deg, var(--primary), #FFC107);
    padding: 20px;
    border-radius: 17px 17px 0 0;
    text-align: center;
}

.upsell-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.upsell-subtitle {
    margin: 8px 0 0 0;
    font-size: 0.95rem;
    color: #000;
    font-weight: 600;
}

.upsell-content {
    padding: 20px 18px;
}

.discount-badge {
    background: linear-gradient(135deg, #FF4444, #CC0000);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

.discount-text {
    display: block;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.discount-value {
    display: block;
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 900;
    margin-top: 5px;
}

.upsell-offer {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.4;
}

.highlight-text {
    color: var(--primary);
    font-weight: 900;
}

.upsell-price {
    text-align: center;
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 2px dashed var(--primary);
}

.old-price {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.new-price {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 900;
    margin: 8px 0;
}

.installments {
    color: #ccc;
    font-size: 0.95rem;
}

.upsell-benefits {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
}

.benefits-title {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.upsell-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.upsell-benefits li {
    color: #fff;
    padding: 6px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.upsell-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.btn-upsell-accept {
    background: linear-gradient(135deg, #00D084, #00A86B);
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 208, 132, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: pulseSoft 2s infinite;
}

.btn-upsell-accept::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

@keyframes pulseSoft {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.btn-upsell-accept:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 208, 132, 0.6);
    animation: none;
}

.btn-upsell-decline {
    background: transparent;
    color: #999;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid #444;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-upsell-decline:hover {
    color: #fff;
    border-color: #666;
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .upsell-header h2 {
        font-size: 1.5rem;
    }
    
    .upsell-subtitle {
        font-size: 0.95rem;
    }
    
    .discount-value {
        font-size: 1.5rem;
    }
    
    .upsell-offer {
        font-size: 1.1rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .btn-upsell-accept {
        font-size: 1rem;
        padding: 15px 20px;
    }
}