/* Variáveis CSS */
:root {
    --primary-50: #ECFDF5;
    --primary-100: #D1FAE5;
    --primary-200: #A7F3D0;
    --primary-300: #6EE7B7;
    --primary-400: #34D399;
    --primary-500: #10B981;
    --primary-600: #059669;
    --primary-700: #047857;
    --primary-800: #065F46;
    --primary-900: #064E3B;
    --whatsapp-50: #ECFDF5;
    --whatsapp-100: #D1FAE5;
    --whatsapp-200: #A7F3D0;
    --whatsapp-300: #6EE7B7;
    --whatsapp-400: #34D399;
    --whatsapp-500: #25D366;
    --whatsapp-600: #20B358;
    --whatsapp-700: #1BA94C;
    --whatsapp-800: #16A085;
    --whatsapp-900: #128C7E;
    --neutral-50: #F8FAFC;
    --neutral-100: #F1F5F9;
    --neutral-200: #E2E8F0;
    --neutral-300: #CBD5E1;
    --neutral-400: #94A3B8;
    --neutral-500: #64748B;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1E293B;
    --neutral-900: #0F172A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    /* Removido overflow-x: hidden */
}

@media (max-width: 768px) {
    html, body {
        height: auto; /* Permite que a altura da página se ajuste ao conteúdo no mobile */
    }
}

@media (max-width: 600px) {
  .fold-3-content {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 8px;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: 100%;
    max-width: 1000px;
    min-width: 0;
    box-sizing: border-box;
    padding: 0;
    margin: 0 auto;
    gap: 2rem;
  }
  .pricing-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 2rem;
    margin: 0;
    border-radius: 16px;
    /* Removido overflow-x: hidden */
    background: white;
  }
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: #000000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Seleção de texto permitida */
p, h1, h2, h3, h4, h5, h6, blockquote {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', system-ui, sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================= */
/* 📏 CONTROLE DE ESPAÇAMENTO ENTRE SEÇÕES */
/* ========================================= */

/* SISTEMA DE DOBRAS PROGRESSIVAS */
.fold {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center; /* Manter para desktop */
    justify-content: center; /* Manter para desktop */
    /* Removido overflow: hidden */
    margin-bottom: 0px; 
}

/* Altura automática para seções com conteúdo dinâmico */
.fold-2, .fold-3, .fold-4 {
    height: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
    display: none; /* Oculta completamente a dobra e não ocupa espaço */
    /* REMOVIDO: visibility: hidden; */
    /* REMOVIDO: opacity: 0; */
    /* REMOVIDO: transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out; */
}

/* Mantém a primeira dobra com 100vh */
.fold-1 {
    /* REMOVIDO: height: 100vh; */
    /* REMOVIDO: A .fold-1-content já controla seu scroll interno */
}

/* ESPAÇAMENTOS ESPECÍFICOS POR DOBRA (OPCIONAL) */
.fold-1 {
    margin-bottom: 0px; /* 🎯 SEM espaço após a primeira dobra */
}

.fold-2 {
    margin-bottom: 0px; /* 🎯 SEM espaço após a segunda dobra - CORRIGIDO */
}

.fold-3 {
    margin-bottom: 0px; /* 🎯 SEM espaço após a terceira dobra */
}

.fold-4 {
    margin-bottom: 0; /* Última dobra não precisa de espaço */
}

/* RESPONSIVIDADE DO ESPAÇAMENTO */
@media (max-width: 768px) {
    .fold {
        margin-bottom: 0px; /* 🎯 SEM espaçamento no mobile */
        align-items: flex-start; /* Alinha o conteúdo ao topo no mobile */
        justify-content: flex-start; /* Alinha o conteúdo à esquerda no mobile */
    }
    
    .fold-1 { margin-bottom: 0px; }
    .fold-2 { margin-bottom: 0px; }
    .fold-3 { margin-bottom: 0px; }

    .fold-1-content {
        height: auto; /* Remove a altura fixa para ser responsivo */
        overflow-y: visible; /* Permite que o conteúdo da dobra 1 role com a página */
        padding: 30px 20px; /* Aumenta o padding superior para a headline, mantém lateral */
    }

    body {
        padding-top: 30px; /* Adiciona padding no topo para afastar do limite da tela em mobile */
        margin: 0;
        padding-bottom: 0; /* Garante que não haja padding extra na parte inferior do body */
        overflow-y: auto; /* Garante que o body pode rolar no eixo Y no mobile */
    }
}

@media (max-width: 480px) {
    .fold {
        margin-bottom: 0px; /* 🎯 SEM espaçamento no mobile pequeno */
        align-items: flex-start; /* Alinha o conteúdo ao topo no mobile */
        justify-content: flex-start; /* Alinha o conteúdo à esquerda no mobile */
    }
    
    .fold-1 { margin-bottom: 0px; }
    .fold-2 { margin-bottom: 0px; }
    .fold-3 { margin-bottom: 0px; }

    .fold-1-content {
        height: auto; /* Remove a altura fixa para ser responsivo */
        overflow-y: visible; /* Permite que o conteúdo da dobra 1 role com a página */
        padding: 30px 15px; /* Aumenta o padding superior para telas muito pequenas, mantém lateral */
    }

    body {
        padding-top: 20px; /* Padding um pouco menor para telas menores ainda */
        margin: 0;
        padding-bottom: 0;
        overflow-y: auto; /* Garante que o body pode rolar no eixo Y no mobile */
    }

    .vsl-video {
        min-height: unset; /* Remove min-height para evitar espaço em branco */
        margin-bottom: 15px; /* Reduz a margem inferior para mobile */
    }
    .vsl-video video, #main-video {
        min-height: unset; /* Remove min-height do vídeo também */
    }
}

@media (max-width: 768px) {
    .fold-2, .fold-3, .fold-4 {
        padding-top: 4rem;
        padding-bottom: 4rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ========================================= */
/* FIM DO CONTROLE DE ESPAÇAMENTO */
/* ========================================= */

/* DOBRA 1: VSL PRINCIPAL */
.fold-1 {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    text-align: center;
    /* Removido: height, display, align-items, justify-content para evitar corte no mobile */
    position: relative;
}

.fold-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 211, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* NOVO: Suporte ao scroll livre na primeira seção */
.fold-1-content {
    width: 100%;
    max-width: 1000px;
    /* REMOVIDO: height: 90vh; */
    /* REMOVIDO: overflow-y: auto; */
    /* Removido overflow-x: hidden */
    /* REMOVIDO: padding: 20px; */
    position: relative;
    z-index: 1;
    /* ESCONDE SCROLLBAR MAS MANTÉM FUNCIONALIDADE */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE e Edge */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.fold-1-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Scroll customizado alternativo para primeira seção */
.fold-1-content.show-scrollbar {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
}

.fold-1-content.show-scrollbar::-webkit-scrollbar {
    display: block;
    width: 8px;
}

.fold-1-content.show-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.fold-1-content.show-scrollbar::-webkit-scrollbar-thumb {
    background: var(--whatsapp-500);
    border-radius: 4px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.fold-1-content.show-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--whatsapp-600);
    opacity: 1;
}

/* STATUS DO VÍDEO */
.video-status {
    background: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp-700);
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--whatsapp-500);
    margin: 25px 0;
    text-align: center;
    display: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

.video-status.show {
    display: block;
    animation: fadeInDown 0.5s ease;
}

/* ELEMENTOS DA DOBRA 1 */
.vsl-headline {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.vsl-headline .red {
    color: #ff3333;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
}

.vsl-texto {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.vsl-texto p {
    font-size: 1.5rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.vsl-texto .red {
    color: #ff3333;
    font-weight: 900;
    font-size: 1.7rem;
}

/* VÍDEO NA DOBRA 1 */
.vsl-video {
    min-height: 220px; /* Altura mínima para prevenir CLS */
    max-width: 700px;
    margin: 0 auto 30px;
}

.vsl-video video, #main-video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    min-height: 300px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.video-description {
    font-size: 1.1rem;
    color: #cccccc;
    font-style: italic;
}

/* PROGRESS BAR */
.video-progress {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.video-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--whatsapp-500), var(--whatsapp-300));
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 4px;
    position: relative;
    will-change: width;
}

.video-progress-bar::after {
    display: none; /* REMOVE COMPLETAMENTE A PONTA BRANCA */
}

/* DOBRA 2: SOCIAL PROOF */
.fold-2 {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 4rem 1rem;
    position: relative;
    z-index: 1;
}

.fold-2-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-proof-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--whatsapp-300);
}

.depoimentos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    position: relative;
    z-index: 1;
}

.depoimento {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.depoimento:nth-child(1) { animation-delay: 0.2s; }
.depoimento:nth-child(2) { animation-delay: 0.4s; }
.depoimento:nth-child(3) { animation-delay: 0.6s; }

.depoimento:hover {
    transform: translateY(-8px);
}

.depoimento blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.depoimento .autor {
    font-weight: 700;
    color: var(--whatsapp-300);
    font-size: 1rem;
}

/* ========================================= */
/* DOBRA 3: CTA FINAL */
/* ========================================= */
.fold-3 {
    min-height: auto; /* Remove o min-height anterior */
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.fold-3-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.pricing-main-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100%;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.basic {
    background: linear-gradient(135deg, white 0%, var(--neutral-50) 100%);
}

.pricing-card.complete {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    transform: scale(1.05);
    border: 2px solid var(--accent-300);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12),
                0 0 30px rgba(255, 87, 34, 0.1);
}

.pricing-card.complete:hover {
    transform: scale(1.07);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15),
                0 0 40px rgba(255, 87, 34, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-500);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card.complete .pricing-badge {
    background: #FF5722;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    margin-top: 24px;
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.pricing-card.complete .pricing-header h3 {
    color: white;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-600);
    line-height: 1.5;
}

.pricing-card.complete .pricing-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-amount {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
}

.pricing-card.complete .pricing-amount {
    background: rgba(255, 255, 255, 0.9);
}

.amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-right: 4px;
}

.value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1;
}

.cents {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-900);
}

.period {
    font-size: 1.25rem;
    color: var(--neutral-600);
    margin-bottom: 8px;
}

.includes,
.cancel {
    font-size: 1rem;
    color: var(--neutral-700);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    line-height: 1.3; /* Reduzindo o espaçamento entre linhas */
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem; /* Reduzindo o espaçamento entre itens */
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.pricing-features .icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-features .not-included {
    color: var(--neutral-500);
}

.pricing-cta {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-cta.basic {
    background: var(--primary-500);
    color: white;
}

.pricing-cta.basic:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
}

.pricing-cta.complete {
    background: #FF5722;
    color: white;
    font-size: 1.25rem;
    padding: 18px 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-cta.complete:hover {
    background: #F4511E;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.pricing-note {
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0.8;
    color: var(--neutral-500); /* Mesma cor do "por mês" */
}

.pricing-card.complete .pricing-note {
    color: rgba(255, 255, 255, 0.8); /* Versão semi-transparente do branco para o card completo */
}

/* DOBRA 4: ROI - ALTURA AUTOMÁTICA */
.fold-4 {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--neutral-800);
    text-align: center;
    /* ALTURA AUTOMÁTICA PARA ELIMINAR ESPAÇOS */
    height: auto;
    min-height: auto;
    padding: 40px 20px;
}

.fold-4.show {
    display: flex;
    animation: slideInUp 1s ease-out;
}

.fold-4-content {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.roi-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 40px;
    text-align: center;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1000px;
}

.roi-item {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    will-change: transform;
}

.roi-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--whatsapp-500), var(--whatsapp-300));
}

.roi-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.roi-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    position: relative;
}

.roi-icon.crescimento {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.roi-icon.tempo {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.roi-icon.clareza {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.roi-icon.confianca {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.roi-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.roi-item p {
    color: var(--neutral-600);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

/* CONTINUE BUTTON */
.continue-button, .scroll-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--whatsapp-500), var(--whatsapp-600));
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    z-index: 9999;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    will-change: transform;
    animation: bounceIn 0.8s ease;
}

.continue-button:hover, .scroll-indicator:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* ANIMAÇÕES OTIMIZADAS */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pulse-vsl {
    0% { 
        box-shadow: 
            0 15px 40px rgba(37, 211, 102, 0.4),
            0 0 0 4px rgba(255, 255, 255, 0.1),
            0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% { 
        box-shadow: 
            0 15px 40px rgba(37, 211, 102, 0.4),
            0 0 0 4px rgba(255, 255, 255, 0.1),
            0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% { 
        box-shadow: 
            0 15px 40px rgba(37, 211, 102, 0.4),
            0 0 0 4px rgba(255, 255, 255, 0.1),
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3) translateY(100px); }
    50% { opacity: 1; transform: scale(1.05) translateY(0); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* MEDIA QUERIES PARA RESPONSIVIDADE */
@media (max-width: 1024px) {
    .roi-title {
        font-size: 2.4rem;
        margin-bottom: 35px;
    }

    .roi-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .roi-item {
        padding: 30px 20px;
    }

    .roi-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .fold-3 {
        padding: 2rem 0;
    }

    .fold-4 {
        padding: 30px 15px; /* MENOS padding no mobile */
    }

    .fold-4-content {
        padding: 15px;
    }

    .vsl-headline {
        font-size: 2.2rem;
    }

    .vsl-texto p {
        font-size: 1.3rem;
    }

    .vsl-video video, #main-video {
        min-height: 250px;
        max-height: 350px;
    }

    .social-proof-title {
        font-size: 2rem;
    }

    .depoimentos {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-title {
        font-size: 2.2rem;
        margin-bottom: 15px; /* MENOS margin no mobile */
    }

    .price-highlight {
        font-size: 2.2rem;
        margin: 10px 0; /* MENOS margin no mobile */
    }

    .btn-vsl-final {
        padding: 20px 40px;
        font-size: 1.3rem;
        margin-top: 15px; /* MENOS margin no mobile */
    }

    .roi-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .roi-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .roi-item {
        padding: 25px 15px;
    }

    .roi-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .roi-item h3 {
        font-size: 1.2rem;
    }

    .roi-item p {
        font-size: 0.9rem;
    }

    .continue-button, .scroll-indicator {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 13px;
    }

    .fold-1 .container {
        padding: 15px 20px;
        min-height: 100vh;
    }

    .fold-1-content::-webkit-scrollbar {
        width: 6px;
    }

    .pricing-main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .pricing-card.complete {
        transform: none;
    }

    .pricing-card.complete:hover {
        transform: translateY(-4px);
    }

    .pricing-header h3 {
        font-size: 1.75rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
    }

    .pricing-amount {
        padding: 16px;
    }

    .currency {
        font-size: 1.5rem;
    }

    .value {
        font-size: 3rem;
    }

    .cents {
        font-size: 1.5rem;
    }

    .pricing-features li {
        font-size: 0.875rem;
        margin-bottom: 12px;
    }

    .pricing-cta {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .fold-3 {
        padding: 2rem 0;
    }

    .fold-3-content {
        width: 100%;
        padding: 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem; /* Aumentado o espaço entre cards */
        padding: 0.5rem;
        margin: 0 auto;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        /* Removido overflow-x: hidden */
    }
    .pricing-card {
        padding: 1.2rem 0.5rem;
        margin: 0 0 1rem 0; /* Adicionado margin-bottom para mais espaço */
        width: 100%;
        min-width: 0;
        max-width: 100vw;
        box-sizing: border-box;
        border-radius: 14px;
        /* Removido overflow-x: hidden */
    }

    .cta-title {
        margin-bottom: 10px; /* MENOS margin */
    }

    .price-vsl {
        margin-bottom: 10px; /* MENOS margin */
    }

    .price-highlight {
        font-size: 2rem;
        margin: 8px 0; /* MENOS margin */
    }

    .btn-vsl-final {
        margin-top: 12px; /* MENOS margin */
    }

    .roi-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .roi-grid {
        gap: 12px;
    }

    .roi-item {
        padding: 20px 12px;
    }

    .roi-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .roi-item h3 {
        font-size: 1.1rem;
    }

    .roi-item p {
        font-size: 0.85rem;
    }

    .fold-1 .container {
        padding: 10px 16px;
    }

    .vsl-texto p {
        font-size: 1.1rem;
    }

    .video-status {
        padding: 12px 20px;
        font-size: 14px;
        margin: 20px 0;
    }

    #main-video {
        border-radius: 8px;
    }

    .pricing-card.complete {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        position: relative;
        overflow: visible;
        padding-top: 45px;
    }

    .pricing-card.complete .pricing-badge {
        background: #FF5722;
        color: white;
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        top: -0.75rem;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: fit-content;
        min-width: 200px;
        max-width: 85%;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        z-index: 2;
    }

    .pricing-card {
        padding: 1.5rem 1rem; /* Mais espaço vertical, menos horizontal */
        margin: 0 0 1.5rem 0; /* Adicionado margin-bottom para mais espaço */
        width: auto;
        border-radius: 16px;
    }

    .pricing-header h3 {
        font-size: 1.4rem; /* Um pouco maior para hierarquia */
        margin-bottom: 8px;
    }

    .pricing-subtitle {
        font-size: 0.9rem; /* Mais legível */
        line-height: 1.4;
    }

    .pricing-amount {
        padding: 1rem; /* Padding uniforme */
        margin-bottom: 20px;
    }

    .currency {
        font-size: 1.5rem;
    }

    .value {
        font-size: 2.8rem; /* Ligeiramente menor para caber melhor */
    }

    .cents {
        font-size: 1.5rem;
    }

    .period {
        font-size: 1rem; /* Mais legível */
        margin-bottom: 8px;
    }

    .includes,
    .cancel {
        font-size: 0.875rem; /* Mais legível */
    }

    .pricing-features {
        margin: 1.5rem 0;
    }

    .pricing-features li {
        font-size: 0.9rem; /* Mais legível */
        margin-bottom: 12px;
        line-height: 1.5; /* Espaçamento melhorado */
    }

    .pricing-features .icon {
        font-size: 1rem; /* Ícone um pouco maior */
        margin-right: 8px;
    }

    .pricing-cta {
        padding: 1rem 1.25rem; /* Botão mais robusto */
        font-size: 1rem;
        border-radius: 8px;
    }

    .pricing-note {
        font-size: 0.875rem; /* Mais legível */
        margin-top: 1rem;
        line-height: 1.5;
        text-align: center; /* Centraliza o texto */
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem; /* Aumentado ainda mais o espaço entre cards */
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 1200px;
        width: 100%;
    }

    .pricing-card {
        padding: 2rem;
        margin: 0;
        width: 100%;
        min-width: 280px;
        max-width: 100%;
        border-radius: 20px;
    }

    .pricing-card.complete {
        transform: scale(1.02);
        padding-top: 3rem;
    }

    .pricing-header h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .pricing-subtitle {
        font-size: 1.25rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .pricing-amount {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }

    .currency {
        font-size: 2rem;
    }

    .value {
        font-size: 3.5rem;
    }

    .cents {
        font-size: 2rem;
    }

    .period {
        font-size: 1.25rem;
        margin: 0.75rem 0;
    }

    .includes,
    .cancel {
        font-size: 1.125rem;
    }

    .pricing-features {
        margin: 2rem 0;
    }

    .pricing-features li {
        font-size: 1.125rem;
        margin-bottom: 1rem;
        line-height: 1.4;
        gap: 0.75rem;
    }

    .pricing-features .icon {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }

    .pricing-cta {
        padding: 1.25rem;
        font-size: 1.25rem;
        border-radius: 12px;
        margin-top: 1.5rem;
        font-weight: 700;
    }

    .pricing-note {
        font-size: 1rem;
        margin-top: 1.25rem;
        line-height: 1.5;
    }

    .pricing-card.complete .pricing-badge {
        font-size: 1.125rem;
        padding: 1rem 1.5rem;
        top: -1rem;
        min-width: 200px;
        max-width: 90%;
        line-height: 1.3;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 320px) {
    .fold-3 {
        padding: 1.5rem 0;
    }

    .pricing-card {
        padding: 1.5rem;
        min-width: unset; /* Remove o min-width para evitar overflow */
        max-width: 100%;
    }

    .pricing-header h3 {
        font-size: 1.75rem;
    }

    .pricing-subtitle {
        font-size: 1.125rem;
    }

    .pricing-features li {
        font-size: 1rem;
    }

    .pricing-cta {
        font-size: 1.125rem;
        padding: 1.125rem;
    }

    .pricing-card.complete .pricing-badge {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
        width: 94%;
        max-width: 94%;
        top: -0.875rem;
    }
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    color: var(--neutral-400);
    font-size: 1rem;
}

/* ========================================= */
/* CORREÇÃO FINAL: REMOVE ESPAÇOS PRETOS */
/* ========================================= */
.fold-2 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.fold-3 {
    margin-top: 0 !important;
    padding-top: 30px !important;
}

/* Suporte para scroll suave global */
html {
    scroll-behavior: smooth;
}

/* Melhora a performance do scroll */
.fold-1-content * {
    will-change: auto;
}

.fold-1-content.scrolling * {
    will-change: transform;
}

.pricing-card.complete .pricing-amount .cancel {
    color: var(--neutral-600); /* Corrigido para ter a mesma cor do "por mês" */
}

.pricing-card.complete .pricing-features li {
    color: #ffffff;
}

.pricing-card.complete .pricing-features .icon {
    color: var(--whatsapp-300);
}

/* Otimizações para fontes */
@font-face {
    font-family: 'Inter';
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-display: swap;
}

@media (max-width: 768px) {
    .fold-3 {
        padding: 2rem 0;
    }

    .fold-3-content {
        width: 100%;
        padding: 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem; /* Aumentado o espaço entre cards */
        padding: 0;
        width: 100%;
    }

    .pricing-card {
        padding: 2rem;
        margin: 0 0 2.5rem 0; /* Aumentado margin-bottom para mais espaço */
        width: 100%;
        min-width: 280px;
        max-width: 100%;
        border-radius: 20px;
    }

    .pricing-card:last-child {
        margin-bottom: 0; /* Remove o espaço do último card */
    }

    .pricing-card.complete {
        transform: scale(1.02);
        padding-top: 3rem;
    }

    .pricing-card.complete:hover {
        transform: translateY(-4px) scale(1.02);
    }

    .pricing-badge {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        white-space: normal;
        text-align: center;
        max-width: 92%;
        width: 92%;
        border-radius: 12px;
        top: -1rem;
    }

    .pricing-header h3 {
        font-size: 2rem;
        margin-top: 1rem;
    }

    .pricing-subtitle {
        font-size: 1.25rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .pricing-amount {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }

    .currency {
        font-size: 2rem;
    }

    .value {
        font-size: 3.5rem;
    }

    .cents {
        font-size: 2rem;
    }

    .period {
        font-size: 1.25rem;
        margin: 0.75rem 0;
    }

    .includes,
    .cancel {
        font-size: 1.125rem;
    }

    .pricing-features {
        margin: 2rem 0;
    }

    .pricing-features li {
        font-size: 1.125rem;
        margin-bottom: 1rem;
        line-height: 1.4;
        gap: 0.75rem;
    }

    .pricing-features .icon {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }

    .pricing-cta {
        padding: 1.25rem;
        font-size: 1.25rem;
        border-radius: 12px;
        margin-top: 1.5rem;
        font-weight: 700;
    }

    .pricing-note {
        font-size: 1rem;
        margin-top: 1.25rem;
        line-height: 1.5;
        text-align: center; /* Centraliza o texto */
    }

    .pricing-card.complete .pricing-badge {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        top: -1rem;
        min-width: 200px;
        max-width: 90%;
        line-height: 1.3;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    /* Otimizações para vídeo em mobile */
    .vsl-video {
        min-height: 200px;
    }

    .vsl-video video, #main-video {
        height: 200px; /* Altura menor para mobile */
        min-height: 200px;
    }

    .fold-1-content {
        height: auto; /* Remove a altura fixa para ser responsivo */
        overflow-y: visible; /* Permite que o conteúdo da dobra 1 role com a página */
        padding: 10px; /* Ajusta o padding para mobile */
    }
}

/* === PADRÃO UNIVERSAL PARA TODOS OS CARDS DE GRID === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
}
.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 40px 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 8px;
  }
  .pricing-card {
    padding: 32px 16px;
    border-radius: 20px;
    margin: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  }
}

/* Regra específica para espaçamento entre cards em mobile */
@media (max-width: 768px) {
    .pricing-grid {
        gap: 3rem !important;
    }
    
    .pricing-card {
        margin-bottom: 2.5rem !important;
    }
    
    .pricing-card:last-child {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        gap: 3.5rem !important;
    }
    
    .pricing-card {
        margin-bottom: 3rem !important;
    }
    
    .pricing-card:last-child {
        margin-bottom: 0 !important;
    }
}

.pricing-card, .pricing-grid, .fold-3-content, .fold-3, .fold {
  max-width: 100vw !important;
  min-width: 0 !important;
  width: 100% !important;
}

.pricing-card, .pricing-card.complete, .pricing-card.basic {
  min-width: 0 !important;
  max-width: 100vw !important;
}

@media (min-width: 769px) {
  .fold-1-content {
    height: 90vh;
    overflow-y: auto;
    padding: 20px;
  }
}
