/* =============================================
   DESIGN SYSTEM
   ============================================= */
:root {
    --rosa: #FF416C;
    --rosa-esc: #e03060;
    --verde: #16A34A;
    --verde-cl: #22C55E;
    --ouro: #F59E0B;
    --ouro-esc: #D97706;
    --azul-esc: #1E3A8A;

    --cinza-900: #0F172A;
    --cinza-800: #1E293B;
    --cinza-700: #334155;
    --cinza-500: #64748B;
    --cinza-400: #94A3B8;
    --cinza-200: #E2E8F0;
    --cinza-100: #F1F5F9;
    --cinza-50: #F8FAFC;
    --branco: #FFFFFF;

    --sombra-suave: 0 4px 24px rgba(0, 0, 0, 0.08);
    --sombra-media: 0 8px 32px rgba(0, 0, 0, 0.12);
    --sombra-forte: 0 16px 48px rgba(0, 0, 0, 0.18);
    --sombra-verde: 0 8px 24px rgba(22, 163, 74, 0.35);
    --sombra-ouro: 0 8px 24px rgba(245, 158, 11, 0.35);

    --raio-sm: 8px;
    --raio-md: 16px;
    --raio-lg: 24px;
    --raio-pill: 50px;

    --font-tit: 'Outfit', sans-serif;
    --fonte: 'Outfit', sans-serif;
    --container: 1100px;
}

/* =============================================
   RESET
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: var(--fonte);
    font-size: 16px;
    line-height: 1.65;
    color: var(--cinza-700);
    background: var(--cinza-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--cinza-800);
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.mt-4 {
    margin-top: 2rem;
}

.text-verde {
    color: var(--verde);
}

.text-ouro {
    color: var(--ouro-esc);
}

.text-rosa {
    color: var(--rosa);
}

/* =============================================
   ANIMAÇÕES
   ============================================= */
@keyframes pulsoVerde {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }

    60% {
        box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);
    }
}

@keyframes shimmerOuro {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes flutuar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes entrar {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal on scroll — opacity/transform applied by JS, not CSS */
.reveal {
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.active {
    opacity: 1 !important;
    transform: none !important;
}

/* =============================================
   BOTÕES
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2.2rem;
    font-family: var(--fonte);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--raio-pill);
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: normal;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Verde principal */
.btn-verde {
    background: var(--verde);
    color: white;
    box-shadow: var(--sombra-verde);
    font-size: 1.05rem;
    font-weight: 800;
}

.btn-verde:hover {
    background: #15803D;
    box-shadow: 0 12px 32px rgba(22, 163, 74, 0.45);
}

/* Verde pulsante */
.btn-cta {
    background: var(--verde);
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 1.15rem 2.5rem;
    border-radius: var(--raio-pill);
    box-shadow: var(--sombra-verde);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    animation: pulsoVerde 1.8s infinite;
    will-change: transform;
}

.btn-cta:hover {
    background: #15803D;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(22, 163, 74, 0.5);
    animation: none;
}

/* Sucesso (modal) */
.btn-sucesso {
    background: var(--verde);
    color: white;
    box-shadow: var(--sombra-verde);
    font-size: clamp(0.9rem, 3.5vw, 1.05rem);
    font-weight: 800;
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
    padding: 1rem 1.2rem;
    animation: pulsoVerde 1.5s infinite;
}

.btn-sucesso:hover {
    animation: none;
}

/* Garantia */
.btn-garantia {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    background: var(--verde);
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: var(--raio-pill);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: var(--sombra-verde);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-garantia:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(22, 163, 74, 0.45);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    background: linear-gradient(160deg, #fff8f9 0%, #fff3f6 50%, #f5efff 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--cinza-200);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: white;
    border: 1px solid rgba(255, 65, 108, 0.2);
    color: var(--rosa);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: var(--raio-pill);
    box-shadow: 0 2px 12px rgba(255, 65, 108, 0.12);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline {
    font-family: var(--font-tit);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--cinza-800);
    letter-spacing: -1px;
    line-height: 1.18;
    margin-bottom: 1rem;
}

.hl {
    color: var(--rosa);
    position: relative;
}

.subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--cinza-500);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.secure-text {
    font-size: 0.82rem;
    color: var(--cinza-400);
    display: flex;
    align-items: center;
    gap: 5px;
}

.secure-text i {
    color: var(--verde-cl);
}

/* Trusted row */
.trusted-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.trusted-avatars {
    display: flex;
}

.trusted-avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -7px;
}

.trusted-avatars img:first-child {
    margin-left: 0;
}

.trusted-text {
    font-size: 0.85rem;
    color: var(--cinza-700);
    font-weight: 600;
}

.trusted-text strong {
    color: var(--cinza-800);
}

.stars-row {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--ouro);
    font-size: 0.82rem;
}

/* =============================================
   VSL (Video Sales Letter)
   ============================================= */
.mockup-area {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid var(--cinza-200);
}

/* Container centralizado — portrait 9:16 */
.vsl-wrapper {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    position: relative;
}

/* Facade — thumbnail */
.vsl-facade {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #0a0a0a;
    overflow: hidden;
}

.vsl-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Overlay: gradiente embaixo + itens centralizados */
.vsl-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 10;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.0) 40%,
            rgba(0, 0, 0, 0.55) 100%);
    transition: opacity 0.4s ease;
    pointer-events: all;
}

.vsl-overlay--hidden {
    opacity: 0;
    pointer-events: none;
}

/* Botão círculo de play */
.vsl-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 20px rgba(255, 65, 108, 0.7));
    animation: glowPulse 2.2s ease-in-out infinite;
    transition: transform 0.2s, filter 0.2s;
}

.vsl-play-btn svg {
    width: 80px;
    height: 80px;
    display: block;
}

.vsl-play-btn:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 28px rgba(255, 65, 108, 0.9));
    animation: none;
}

.vsl-play-btn:active {
    transform: scale(0.95);
}

/* Texto CTA embaixo do botão */
.vsl-cta-text {
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--fonte);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    text-align: center;
    margin: 0;
}

@keyframes glowPulse {

    0%,
    100% {
        filter: drop-shadow(0 4px 20px rgba(255, 65, 108, 0.7));
    }

    50% {
        filter: drop-shadow(0 6px 32px rgba(255, 65, 108, 1));
    }
}

@media (max-width: 480px) {
    .vsl-wrapper {
        max-width: 320px;
        border-radius: 16px;
    }

    .vsl-play-btn,
    .vsl-play-btn svg {
        width: 68px;
        height: 68px;
    }
}

/* =============================================
   O QUE VOCÊ RECEBE (CLEAN)
   ============================================= */
.receive-clean {
    background: #ffffff;
    padding: 4rem 0 5rem;
}

.receive-clean-box {
    max-width: 800px;
    margin: 2rem auto 0;
}

/* Checklist grid compacto */
.checklist-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cinza-700);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 7px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cinza-700);
    padding: 7px 10px;
    border-radius: 8px;
}

.checklist-item i {
    font-size: 0.7rem;
    flex-shrink: 0;
}

.checklist-item.green {
    background: rgba(16, 185, 129, 0.08);
    color: #064e35;
}

.checklist-item.green i {
    color: var(--verde-cl);
}

.checklist-item.gold {
    background: rgba(245, 158, 11, 0.08);
    color: #713f12;
}

.checklist-item.gold i {
    color: var(--ouro-esc);
}


.clean-section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--cinza-800);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.8rem;
}

.clean-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--cinza-700);
    padding: 10px 14px;
    background: #FAFAFA;
    border-radius: var(--raio-md);
    border: 1px solid var(--cinza-200);
    transition: var(--transicao);
}

.clean-list li:hover {
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border-color: var(--cinza-300);
}

.clean-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.clean-icon.green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--verde-cl);
}

.clean-icon.gold {
    background: rgba(245, 158, 11, 0.15);
    color: var(--ouro-esc);
}

.clean-list span {
    line-height: 1.4;
}

.clean-list strong {
    color: var(--cinza-800);
    font-weight: 700;
}

@media (max-width: 480px) {
    .clean-list {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    
    .clean-list li {
        padding: 8px 12px;
        gap: 10px;
        font-size: 0.85rem;
    }
    
    .clean-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
}

/* =============================================
   BENEFÍCIOS (4 cards)
   ============================================= */
.what-you-get {
    background: var(--cinza-50);
    padding: 5rem 0;
}

.section-header {

    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--cinza-800);
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.05rem;
    color: var(--cinza-500);
    max-width: 580px;
    margin: 0.5rem auto 0;
    line-height: 1.6;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--rosa);
    border-radius: 4px;
    margin: 12px auto 0;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/* Feature Card (Web Component injects this class) */
.feature-card.glass-panel {
    background: white;
    border: 1px solid var(--cinza-200);
    border-radius: var(--raio-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--sombra-suave);
    text-align: left;
    transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card.glass-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra-media);
}

.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #FFF5F7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon {
    font-size: 1.6rem;
    color: var(--rosa);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--cinza-800);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--cinza-500);
    line-height: 1.55;
}

/* =============================================
   COMPARAÇÃO (DORES vs DESEJOS)
   ============================================= */
.why-choose {
    background: white;
    padding: 5rem 0;
    border-top: 1px solid var(--cinza-200);
    border-bottom: 1px solid var(--cinza-200);
}

.comparison-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 3rem;
}

.comparison-box {
    flex: 1;
    min-width: 280px;
    max-width: 480px;
    background: var(--cinza-50);
    border-radius: var(--raio-lg);
    padding: 2rem 1.75rem;
    border: 1px solid var(--cinza-200);
    position: relative;
    overflow: hidden;
}

.comparison-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.negative-card::before {
    background: #EF4444;
}

.positive-card::before {
    background: var(--verde-cl);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.icon-circle.red {
    background: #EF4444;
}

.icon-circle.green {
    background: var(--verde-cl);
}

.comparison-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--cinza-800);
}

.comparison-box ul {
    list-style: none;
}

.comparison-box ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--cinza-200);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.97rem;
    color: var(--cinza-700);
}

.comparison-box ul li:last-child {
    border-bottom: none;
}

.comparison-box ul li i {
    font-size: 0.85rem;
}

/* =============================================
   BÔNUS
   ============================================= */
.bonus-section {
    background: var(--cinza-50);
    padding: 5rem 0;
    border-top: 1px solid var(--cinza-200);
}

.badge-accent {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 860px;
    margin: 0 auto;
}

.bonus-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    border: 1px solid var(--cinza-200);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra-media);
}

.bonus-card-wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
}

.bonus-card-img-wrap {
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF7ED, #FEF3C7);
    flex-shrink: 0;
}

.bonus-card-wide .bonus-card-img-wrap {
    width: 220px;
    height: auto;
    min-height: 150px;
}

.bonus-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bonus-number-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--rosa);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.bonus-card-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.bonus-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cinza-800);
    line-height: 1.35;
}

.bonus-card-desc {
    font-size: 0.83rem;
    color: var(--cinza-400);
    line-height: 1.45;
}

.bonus-card-price {
    font-size: 0.82rem;
    color: var(--cinza-400);
    margin-top: 4px;
}

.bonus-free {
    color: var(--verde);
    font-weight: 800;
}

@media (max-width: 600px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .bonus-card-wide {
        flex-direction: column;
    }

    .bonus-card-wide .bonus-card-img-wrap {
        width: 100%;
        height: 160px;
    }
}

/* =============================================
   TESTIMONIAIS (marquee)
   ============================================= */
.testimonials {
    background: white;
    padding: 5rem 0 4rem;
    overflow: hidden;
    border-top: 1px solid var(--cinza-200);
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    contain: layout paint;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    padding: 16px 0;
}

.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee 28s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

@media (hover: hover) and (pointer: fine) {
    .marquee-track:hover {
        animation-play-state: paused;
    }
}

/* Cards de depoimento */
.review-card {
    width: 300px;
    flex-shrink: 0;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #111;
    border: 1px solid var(--cinza-200);
}

.wpp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #008069;
    padding: 10px 12px;
    color: white;
}

.wpp-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.wpp-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wpp-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.wpp-status {
    font-size: 0.7rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #75f77c;
    display: inline-block;
}

.wpp-icons {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.wpp-body {
    background: #e5ddd5;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 180px;
}

.wpp-bubble {
    max-width: 90%;
    padding: 8px 10px 6px;
    border-radius: 8px;
    font-size: 0.86rem;
    line-height: 1.45;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.wpp-bubble.received {
    background: white;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wpp-bubble.sent {
    background: #d9fdd3;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.bubble-time {
    font-size: 0.65rem;
    color: #999;
    float: right;
    margin-left: 6px;
}

.bubble-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3px;
    margin-top: 2px;
}

.blue-tick {
    color: #53bdeb;
    font-size: 0.65rem;
}

.ig-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: white;
    border-bottom: 1px solid #DBDBDB;
}

.ig-arrow {
    color: #262626;
    font-size: 0.95rem;
}

.ig-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ig-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: #262626;
}

.ig-active {
    font-size: 0.7rem;
    color: #8E8E8E;
}

.ig-call-icons {
    display: flex;
    gap: 12px;
    font-size: 1rem;
    color: #262626;
}

.ig-body {
    background: white;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 170px;
}

.ig-bubble {
    max-width: 90%;
    padding: 9px 12px;
    border-radius: 20px;
    font-size: 0.86rem;
    line-height: 1.45;
}

.ig-received {
    background: #EFEFEF;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    color: #262626;
}

.ig-sent {
    background: #3797F0;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.ig-seen {
    font-size: 0.68rem;
    color: #8E8E8E;
    align-self: flex-end;
}

.ig-comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: white;
    border-bottom: 1px solid #DBDBDB;
}

.ig-follow-btn {
    font-size: 0.76rem;
    color: #3797F0;
    font-weight: 600;
    white-space: nowrap;
}

.ig-comment-body {
    background: white;
    padding: 10px 12px 14px;
}

.ig-like-row {
    display: flex;
    gap: 12px;
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #262626;
}

.ig-heart-icon {
    color: #ED4956;
}

.ig-cmt-icon {
    color: #262626;
}

.ig-likes {
    font-weight: 700;
    font-size: 0.84rem;
    color: #262626;
    margin-bottom: 4px;
}

.ig-comment-text {
    font-size: 0.84rem;
    line-height: 1.5;
    color: #262626;
    margin-bottom: 4px;
}

.ig-comment-time {
    font-size: 0.7rem;
    color: #8E8E8E;
}

/* =============================================
   CONTAGEM REGRESSIVA
   ============================================= */
.countdown-bar {
    background: white;
    border: 1.5px solid var(--cinza-200);
    border-radius: var(--raio-md);
    padding: 1.2rem 2rem;
    text-align: center;
    margin: 0 auto 2.5rem;
    max-width: 580px;
    box-shadow: var(--sombra-suave);
}

.countdown-label {
    color: var(--cinza-400);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.countdown-units {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-digits {
    background: var(--cinza-50);
    border: 1.5px solid var(--cinza-200);
    color: var(--cinza-800);
    font-size: 2rem;
    font-weight: 800;
    width: 62px;
    height: 62px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-variant-numeric: tabular-nums;
}

.countdown-unit-label {
    color: var(--cinza-400);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.countdown-sep {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cinza-200);
    margin-bottom: 20px;
}

/* =============================================
   PROOF BANNER
   ============================================= */
.social-proof-banner {
    background: var(--cinza-50);
    border: 1px solid var(--cinza-200);
    border-radius: var(--raio-lg);
    padding: 1.75rem 2rem;
    max-width: 820px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.sp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0.5rem 2rem;
}

.sp-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--cinza-800);
    line-height: 1;
}

.sp-stat-label {
    font-size: 0.72rem;
    color: var(--cinza-400);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sp-divider {
    width: 1px;
    height: 36px;
    background: var(--cinza-200);
}

/* =============================================
   PRICING CARDS
   ============================================= */
.pricing {
    background: var(--cinza-50);
    padding: 5rem 0;
    border-top: 1px solid var(--cinza-200);
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
}

/* ---- Básico ---- */
.price-card {
    background: white;
    border-radius: var(--raio-lg);
    border: 1.5px solid var(--cinza-200);
    box-shadow: var(--sombra-suave);
    flex: 1;
    min-width: 290px;
    max-width: 390px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s;
}

.price-card:hover {
    transform: translateY(-4px);
}

/* ---- Premium ---- */
.premium-card {
    border: 2.5px solid var(--ouro);
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.2), var(--sombra-media);
    transform: scale(1.02);
    background: white;
    position: relative;
    z-index: 1;
}

.premium-card:hover {
    transform: scale(1.02) translateY(-4px);
}

.card-inner {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ouro);
    color: white;
    padding: 4px 18px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    white-space: nowrap;
    text-transform: uppercase;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cinza-800);
    text-align: center;
    margin-bottom: 0;
}

.old-price {
    text-align: center;
    text-decoration: line-through;
    color: var(--cinza-400);
    font-size: 0.95rem;
    margin-top: 10px;
}

.price-amount {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 4rem;
    font-weight: 800;
    color: var(--cinza-800);
    line-height: 1;
    margin: 4px 0;
}

.currency {
    font-size: 1.7rem;
    margin-top: 10px;
    margin-right: 2px;
}

.cents {
    font-size: 1.7rem;
    margin-top: 10px;
}

.highlight-price {
    color: var(--rosa);
}

.savings-badge {
    text-align: center;
    background: #FFF3F6;
    color: var(--rosa-esc);
    border-radius: 8px;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.premium-badge-verde {
    background: #ECFDF5;
    color: var(--verde);
}

/* Lista de features */
.list-styled {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
    margin-top: 8px;
}

.list-styled li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--cinza-100);
    font-size: 0.92rem;
    color: var(--cinza-700);
}

.list-styled li:last-child {
    border-bottom: none;
}

.list-styled li.disabled {
    opacity: 0.45;
}

.list-styled li strong {
    color: var(--cinza-800);
}

.feature-svg-icon {
    min-width: 1.1rem;
    height: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.gift-icon {
    min-width: 1rem;
    height: 1rem;
    margin-top: 3px;
}

.card-action {
    margin-top: auto;
}

.social-proof-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--cinza-500);
    margin-top: 10px;
    font-weight: 600;
}

.social-proof-inline i {
    color: var(--ouro-esc);
}

.checkout-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.checkout-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.73rem;
    color: var(--cinza-400);
}

.checkout-trust i {
    color: var(--verde-cl);
    font-size: 0.7rem;
}

/* =============================================
   MODAL / POPUP
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.glass-modal {
    background: white;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--raio-lg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    word-break: break-word;
    overflow-wrap: break-word;
    flex-shrink: 0;
}

.modal-overlay.active .glass-modal {
    transform: none;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--cinza-100);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--cinza-400);
    transition: background 0.2s, color 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--cinza-200);
    color: #EF4444;
}

.modal-header {
    background: #FFF5F7;
    padding: 24px 18px 14px;
    text-align: center;
    border-bottom: 1px solid #FFE4E6;
}

.warning-icon {
    font-size: 2.5rem;
    color: #EF4444;
    margin-bottom: 10px;
}

.modal-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    font-weight: 800;
    color: #EF4444;
    margin: 0;
    word-break: break-word;
}

.modal-subtitle {
    font-size: clamp(0.88rem, 3.5vw, 1rem);
    color: var(--cinza-800);
    font-weight: 600;
    margin-top: 4px;
    word-break: break-word;
}

.modal-body {
    padding: 16px 18px;
    text-align: center;
}

.modal-body p {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    color: var(--cinza-700);
    line-height: 1.6;
    word-break: break-word;
}

.special-offer-box {
    background: #FFFBEB;
    border: 2px dashed var(--ouro);
    border-radius: var(--raio-md);
    padding: 16px;
    margin-top: 16px;
}

.offer-text {
    font-weight: 700;
    color: #92400E;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.offer-price {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    font-weight: 800;
    color: #EF4444;
    line-height: 1;
}

.modal-actions {
    padding: 0 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-downsell {
    background: none;
    border: none;
    color: var(--cinza-400);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.82rem;
    font-family: var(--fonte);
    transition: color 0.2s;
}

.btn-downsell:hover {
    color: var(--cinza-700);
}

/* =============================================
   GARANTIA
   ============================================= */
.guarantee {
    background: white;
    padding: 4.5rem 0;
    border-top: 1px solid var(--cinza-200);
    border-bottom: 1px solid var(--cinza-200);
}

.guarantee-card {
    background: var(--cinza-50);
    border: 1.5px solid var(--cinza-200);
    border-radius: var(--raio-lg);
    padding: 3rem 2rem;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--sombra-suave);
}

.guarantee-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--verde-cl);
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
}

.guarantee-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #7C3AED;
    margin-bottom: 0.75rem;
}

.guarantee-card-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cinza-800);
    max-width: 460px;
    margin: 0 auto 0.6rem;
    line-height: 1.55;
}

.guarantee-card-check {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--verde-cl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 1.75rem;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    background: var(--cinza-50);
    padding: 5rem 0;
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--raio-md);
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--cinza-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--fonte);
    font-size: 1rem;
    font-weight: 700;
    color: var(--cinza-800);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
    gap: 12px;
}

.faq-question:hover {
    background: #FFF8F9;
}

.icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cinza-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rosa);
    transition: transform 0.35s, background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0, 1, 0, 1);
}

.answer-inner {
    padding: 0 24px 20px;
    color: var(--cinza-500);
    font-size: 0.97rem;
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    transition: max-height 0.5s ease-in-out;
}

.faq-item.active .icon-wrap {
    transform: rotate(180deg);
    background: var(--rosa);
    color: white;
}

/* =============================================
   FOOTER CTA
   ============================================= */
.footer-cta {
    padding: 5rem 0;
    text-align: center;
    background: white;
    border-top: 1px solid var(--cinza-200);
}

.cta-heading {
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    font-weight: 800;
    color: var(--cinza-800);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.cta-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--cinza-900);
    color: var(--cinza-400);
    padding: 3rem 0 2rem;
    text-align: center;
    font-size: 0.88rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.05rem;
    color: white;
    margin-bottom: 1.25rem;
}

.footer-brand i {
    color: var(--ouro);
}

.copyright {
    margin-bottom: 1.25rem;
}

/* =============================================
   STICKY MOBILE CTA
   ============================================= */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8888;
    pointer-events: none;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta-inner {
    background: var(--verde);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-cta-bar a {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.97rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sticky-cta-price {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
    position: fixed;
    width: 52px;
    height: 52px;
    bottom: 72px;
    right: 18px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 26px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.25);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

@media (min-width: 769px) {
    .whatsapp-float {
        width: 58px;
        height: 58px;
        bottom: 32px;
        right: 32px;
        font-size: 28px;
    }

    .sticky-cta-bar {
        display: none !important;
    }
}

/* =============================================
   RESPONSIVO — TABLET
   ============================================= */
@media (max-width: 900px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .premium-card {
        transform: none;
        max-width: 480px;
        width: 100%;
    }

    .premium-card:hover {
        transform: translateY(-4px);
    }

    .price-card {
        max-width: 480px;
        width: 100%;
    }

    .comparison-container {
        flex-direction: column;
    }

    .comparison-box {
        min-width: unset;
    }
}

/* =============================================
   RESPONSIVO — MOBILE 480px
   ============================================= */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    section,
    .testimonials,
    .what-you-get,
    .why-choose,
    .bonus-section,
    .pricing,
    .guarantee,
    .faq,
    .footer-cta {
        padding: 3rem 0;
    }

    .hero {
        padding: 3rem 0 2.5rem;
    }

    .headline {
        font-size: clamp(1.8rem, 7.5vw, 2.2rem);
        letter-spacing: -0.5px;
    }

    .subheadline {
        font-size: 0.97rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .feature-card.glass-panel {
        padding: 1rem 0.9rem;
    }

    .feature-icon-wrapper {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }

    .feature-icon {
        font-size: 1.4rem;
    }

    .feature-card h3 {
        font-size: 0.83rem;
    }

    .feature-card p {
        font-size: 0.76rem;
    }

    .section-title {
        font-size: clamp(1.3rem, 5.5vw, 1.7rem);
    }

    .price-amount {
        font-size: 3rem;
    }

    .currency,
    .cents {
        font-size: 1.5rem;
        margin-top: 8px;
    }

    .card-inner {
        padding: 1.5rem 1.2rem;
    }

    .package-name {
        font-size: 1.25rem;
    }

    .list-styled li {
        font-size: 0.85rem;
    }

    .countdown-digits {
        width: 52px;
        height: 52px;
        font-size: 1.8rem;
    }

    .countdown-sep {
        font-size: 1.5rem;
    }

    .countdown-bar {
        border-radius: var(--raio-md);
        padding: 1.2rem 1rem;
    }

    .social-proof-banner {
        padding: 1.2rem 0.75rem;
        gap: 0;
    }

    .sp-stat {
        padding: 0.4rem 1rem;
    }

    .sp-stat-number {
        font-size: 1.3rem;
    }

    .sp-divider {
        display: none;
    }

    .review-card {
        width: 268px;
    }

    .guarantee-card {
        padding: 1.75rem 1rem;
        margin: 0 8px;
    }

    .guarantee-card-title {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 0.93rem;
        padding: 16px 18px;
    }

    .answer-inner {
        padding: 0 18px 16px;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        min-height: 56px;
        font-size: 1rem;
        padding: 0.9rem 1rem;
        white-space: normal;
        text-align: center;
    }

    .cta-center {
        align-items: stretch;
        padding: 0;
    }

    .btn-garantia {
        width: 100%;
        justify-content: center;
    }

    .trusted-row {
        gap: 10px;
    }

    .trusted-avatars img {
        width: 26px;
        height: 26px;
    }

    .trusted-text {
        font-size: 0.78rem;
    }

    .cta-heading {
        font-size: 1.55rem;
    }

    /* Modal */
    .glass-modal {
        border-radius: 14px;
    }

    .modal-header {
        padding: 22px 18px 14px;
    }

    .warning-icon {
        font-size: 2rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-subtitle {
        font-size: 0.9rem;
    }

    .modal-body {
        padding: 14px 18px;
    }

    .modal-body p {
        font-size: 0.88rem;
    }

    .modal-actions {
        padding: 0 18px 18px;
    }

    .offer-price {
        font-size: 2.2rem;
    }
}