/* ==========================================================================
   DESIGN TOKENS — Brinquedoteca Premium (Identidade Infantil)
   Azul Bebê #7CC6FE | Teal #4ECDC4 | Amarelo #FFD166 | Verde Menta CTA #34D399
   ========================================================================== */
:root {
    /* Colors */
    --color-primary: #7CC6FE;
    --color-primary-dark: #5DB6F7;
    --color-primary-light: #E8F5FF;
    --color-secondary: #4ECDC4;
    --color-secondary-dark: #38B2AB;
    --color-secondary-light: #E6F9F8;
    --color-accent: #FFD166;
    --color-accent-dark: #E5B830;
    --color-accent-light: #FFF9E6;
    --color-cta: #34D399;
    --color-cta-hover: #10B981;
    --bg-white: #FFFFFF;
    --bg-light: #F8FCFF;
    --text-dark: #2D3748;
    --text-medium: #4A5568;
    --text-muted: #718096;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 55, 72, 0.04);
    --shadow-md: 0 4px 16px rgba(124, 198, 254, 0.12);
    --shadow-lg: 0 8px 32px rgba(124, 198, 254, 0.15);
    --shadow-xl: 0 16px 48px rgba(124, 198, 254, 0.18);
    --shadow-cta: 0 8px 24px rgba(52, 211, 153, 0.35);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-pill: 999px;

    /* Spacing (8px scale) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-8: 56px;
    --space-10: 64px;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    pointer-events: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-dark);
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(124, 198, 254, 0.25);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 32px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative background shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(124, 198, 254, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Floating decorative dots */
.hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-deco::before {
    content: '★ ✦ ★ ✦ ★';
    position: absolute;
    top: 60px;
    left: 5%;
    font-size: 14px;
    color: var(--color-primary);
    opacity: 0.35;
    letter-spacing: 16px;
    animation: floatDots 6s ease-in-out infinite;
}

.hero-deco::after {
    content: '✦ ★ ✦ ★ ✦';
    position: absolute;
    top: 60px;
    right: 5%;
    font-size: 14px;
    color: var(--color-secondary);
    opacity: 0.3;
    letter-spacing: 16px;
    animation: floatDots 7s ease-in-out infinite reverse;
}

@keyframes floatDots {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Logo */
@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.brand-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -10px;
    margin-bottom: -70px;
    position: relative;
    z-index: 2;
}

.brand-logo {
    max-width: 700px;
    height: auto;
    animation: floatLogo 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 16px rgba(124, 198, 254, 0.2));
}

@media (max-width: 768px) {
    .brand-logo { max-width: 320px; }
    .brand-logo-wrapper { margin-bottom: -45px; }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Social proof — estrutura tecnicamente robusta (não quebra após deploy) */
.sp-proof-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 16px;
    box-sizing: border-box;
    padding: 0 20px;
}

.social-proof-stars {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    border: 1px solid rgba(124, 198, 254, 0.35);
    border-radius: var(--radius-pill);
    padding: 6px 16px 6px 6px;
    box-shadow: var(--shadow-md);
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.sp-avatar-stack {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    flex: 0 0 auto;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 0;
}

.sp-avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    margin: 0 0 0 -9px;
    padding: 0;
    flex: 0 0 auto;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    object-fit: cover;
    overflow: hidden;
    box-sizing: content-box;
}

.sp-avatar-stack > .sp-avatar:first-child,
.sp-avatar:first-child {
    margin-left: 0;
}

.sp-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-medium);
    line-height: 1.4;
    text-align: left;
    flex: 1 1 auto;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}

@media (max-width: 480px) {
    .sp-proof-wrap {
        padding: 0 12px;
    }
    .social-proof-stars {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        padding: 6px 12px 6px 6px;
        gap: 8px;
    }
    .sp-label {
        text-align: left;
        font-size: 11px;
        line-height: 1.3;
    }
}

.hero-headline {
    font-size: 38px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-wrap: balance;
}

.headline-accent {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subheadline {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 640px;
    margin: 0 auto 24px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-quick-benefits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 8px;
    max-width: 600px;
    padding: 0;
}

.hero-quick-benefits li {
    background: var(--bg-white);
    color: var(--color-primary-dark);
    border: 1.5px solid var(--color-primary-light);
    border-radius: var(--radius-pill);
    padding: 7px 14px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: var(--shadow-sm);
}

/* CTA Wrapper */
.cta-wrapper {
    text-align: center;
    margin: 32px 0;
}

.btn-cta {
    display: inline-block;
    background: var(--color-cta);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    padding: 20px 44px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-cta);
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.2;
}

.btn-cta:hover {
    background: var(--color-cta-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 36px rgba(52, 211, 153, 0.45);
    color: #fff;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-cta); }
    50% { transform: scale(1.025); box-shadow: 0 12px 32px rgba(52, 211, 153, 0.4); }
}

.pulse-animation { animation: pulse 2.4s ease-in-out infinite; }
.pulse-animation:hover { animation: none; }

.cta-subtext {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 14px;
}

.cta-subtext svg { color: var(--color-primary); flex-shrink: 0; }

/* VSL Video */
.hero-video-wrapper {
    margin: 40px auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 4px solid rgba(124, 198, 254, 0.25);
    background: #000;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    position: relative;
    box-shadow: 0 24px 56px rgba(124, 198, 254, 0.18);
}

.vsl-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
}

.vsl-video.active { opacity: 1; }

.unmute-overlay {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.unmute-overlay.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.vsl-wrapper.clickable { cursor: pointer; }

@media (max-width: 768px) {
    .hero { padding: 24px 0 60px; }
    .hero-headline { font-size: 26px; }
    .hero-subheadline { font-size: 16px; }
    .hero-video-wrapper { max-width: 100%; border-width: 3px; margin: 24px auto; }
    .btn-cta { font-size: 17px; padding: 18px 32px; width: 100%; max-width: 360px; }
    .cta-subtext { font-size: 11px; line-height: 1.3; gap: 4px; padding: 0 4px; }
}

/* ==========================================================================
   TESTIMONIAL HIGHLIGHT
   ========================================================================== */
.testimonial-highlight {
    padding: 48px 0;
    background: var(--bg-white);
}

.testimonial-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 40px 48px;
    border-radius: var(--radius-xl);
    border-left: 5px solid var(--color-primary);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 120px;
    color: var(--color-primary);
    opacity: 0.1;
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 20px;
    pointer-events: none;
}

.testimonial-card p {
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.testimonial-cta-wrapper {
    margin-top: 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}
@media (max-width: 768px) {
    .testimonial-card { padding: 32px 24px; }
    .testimonial-card p { font-size: 18px; }
}

/* ==========================================================================
   SECTION TITLES
   ========================================================================== */
.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--space-5);
    line-height: 1.25;
}

@media (max-width: 768px) {
    .section-title { font-size: 22px; }
}

/* ==========================================================================
   EMOTIONAL PAYOFF SECTION
   ========================================================================== */
.emotional-payoff-section {
    padding: 56px 0 48px;
    background: var(--bg-light);
}

/* Teacher Block */
.ep-teacher-block {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 56px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(124, 198, 254, 0.15);
}

.ep-teacher-photo-wrap {
    position: relative;
    flex-shrink: 0;
    width: 140px;
}

.ep-teacher-photo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 4px solid var(--color-secondary);
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.3);
}

.ep-teacher-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.35);
}

.ep-teacher-quote-wrap {
    flex: 1;
    position: relative;
    padding-left: 8px;
}

.ep-quote-icon {
    font-family: Georgia, serif;
    font-size: 72px;
    color: var(--color-primary);
    opacity: 0.12;
    line-height: 1;
    position: absolute;
    top: -20px;
    left: 0;
    pointer-events: none;
}

.ep-teacher-quote {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 18px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.ep-teacher-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ep-name-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.ep-stars { font-size: 13px; letter-spacing: 1px; }

/* Divider */
.ep-divider {
    text-align: center;
    position: relative;
    margin-bottom: 36px;
}

.ep-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 198, 254, 0.2), transparent);
}

.ep-divider-text {
    display: inline-block;
    background: var(--bg-light);
    padding: 0 24px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

/* Gallery */
.ep-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

@media (min-width: 769px) {
    .ep-gallery-grid { grid-template-columns: 1fr 1fr; }
}

.ep-gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ep-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.ep-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.ep-supporting-editorial {
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 520px;
    margin: 0 auto 44px;
    font-style: italic;
}

/* EP CTA Block */
.ep-cta-block {
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 198, 254, 0.1) 0%, rgba(78, 205, 196, 0.05) 100%);
    border-radius: var(--radius-xl);
    padding: 40px 24px;
    border: 1px solid rgba(124, 198, 254, 0.2);
}

.ep-cta-headline {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.ep-cta-block .cta-wrapper { margin: 20px 0 0; }

@media (max-width: 768px) {
    .emotional-payoff-section { padding: 40px 0; }
    .ep-teacher-block { flex-direction: column; align-items: center; text-align: center; gap: 24px; padding: 24px 20px; }
    .ep-teacher-name { justify-content: center; flex-wrap: wrap; gap: 8px; }
    .ep-quote-icon { display: none; }
    .ep-teacher-quote { font-size: 15px; }
    .ep-divider-text { font-size: 20px; }
    .ep-cta-headline { font-size: 18px; }
    .ep-cta-block { padding: 28px 16px; }
}

/* ==========================================================================
   BONUSES SECTION
   ========================================================================== */
.bonuses-section {
    padding: 56px 0;
    background: var(--bg-white);
}

.bonuses-section .section-title {
    font-size: 26px;
    max-width: 820px;
    margin: 0 auto var(--space-6);
    color: var(--text-dark);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.bonus-card {
    background: var(--bg-white);
    border: 1px solid rgba(124, 198, 254, 0.15);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(124, 198, 254, 0.3);
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(124, 198, 254, 0.12);
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    border: 1.5px solid rgba(124, 198, 254, 0.25);
}

.bonus-image-container {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(124, 198, 254, 0.15);
}

.bonus-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-image-container img { transform: scale(1.06); }

.bonus-desc {
    font-size: 14.5px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.bonus-price {
    border-top: 1px solid rgba(124, 198, 254, 0.12);
    padding-top: 16px;
    margin-top: 16px;
}

.price-old {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-new {
    display: block;
    font-size: 26px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-secondary-dark);
}

@media (max-width: 768px) {
    .bonuses-section .section-title { font-size: 20px; }
    .bonus-card { padding: 24px 20px; }
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits-section {
    padding: 56px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.benefit-item {
    background: var(--bg-white);
    border: 1.5px solid rgba(124, 198, 254, 0.1);
    padding: 32px 20px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(124, 198, 254, 0.12);
    border-color: rgba(124, 198, 254, 0.2);
}

.icon-placeholder {
    font-size: 44px;
    margin-bottom: 12px;
    display: block;
}

.benefit-item h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 8px 0 6px;
}

.benefit-sub {
    font-size: 13.5px;
    color: var(--text-medium);
    line-height: 1.5;
}

.cta-highlight {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.benefit-cta { margin-top: 0; }

@media (max-width: 768px) {
    .benefit-item { padding: 24px 16px; }
    .benefit-item h3 { font-size: 15px; }
}

/* ==========================================================================
   TESTIMONIALS — Facebook Style
   ========================================================================== */
.testimonials-section {
    padding: 56px 0;
    background: var(--bg-white);
}

.fb-comments-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid rgba(124, 198, 254, 0.15);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.fb-header {
    border-bottom: 1px solid rgba(124, 198, 254, 0.12);
    padding-bottom: 14px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 14px;
}

.fb-comment {
    display: flex;
    margin-bottom: 20px;
}

.fb-avatar { margin-right: 12px; }

.fb-avatar img {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: var(--shadow-sm);
    pointer-events: none;
}

.fb-content {
    background: var(--bg-light);
    border: 1px solid rgba(124, 198, 254, 0.12);
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    flex: 1;
}

.fb-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 3px;
}

.fb-text {
    font-size: 14.5px;
    color: var(--text-medium);
    line-height: 1.55;
}

.fb-actions {
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 8px;
}

.fb-actions span { cursor: pointer; }
.fb-actions span:hover { text-decoration: underline; }
.fb-time { font-weight: 400; }

.fb-plugin-tag {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(124, 198, 254, 0.12);
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.fb-plugin-tag img { margin-right: 8px; width: 16px; height: 16px; object-fit: contain; }

@media (max-width: 768px) {
    .fb-comments-wrapper { padding: 16px; }
}

/* ==========================================================================
   PRODUCT CONTENT SECTION
   ========================================================================== */
.product-content-section {
    padding: 56px 0;
    background: var(--bg-light);
}

.product-box {
    max-width: 920px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 2.5px solid rgba(124, 198, 254, 0.25);
    border-radius: var(--radius-2xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.product-flex {
    display: flex;
    align-items: center;
    gap: 48px;
}

.product-image { flex: 1; }

.product-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.product-info { flex: 1.2; }

.product-info .subtitle,
.product-info .highlight-title { text-align: left; }

.subtitle {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.highlight-title {
    font-size: 30px;
    color: var(--color-primary);
    margin-bottom: 28px;
}

.check-list {
    list-style: none;
    font-size: 16px;
    padding: 0;
}

.check-list li {
    margin-bottom: 12px;
    padding-left: 8px;
    border-bottom: 1px solid rgba(124, 198, 254, 0.1);
    padding-bottom: 10px;
    color: var(--text-medium);
}

.bonus-list-item {
    font-weight: 700;
    color: var(--color-secondary-dark);
}

@media (max-width: 768px) {
    .product-box { padding: 24px 20px; }
    .product-flex { flex-direction: column; gap: 24px; }
    .product-info .subtitle, .product-info .highlight-title { text-align: center; }
    .highlight-title { font-size: 22px; }
}

/* ==========================================================================
   GUARANTEE SECTION
   ========================================================================== */
.guarantee-section {
    padding: 48px 0;
    background: var(--bg-white);
}

.guarantee-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: var(--radius-2xl);
    padding: 56px;
    display: flex;
    align-items: center;
    gap: 48px;
    border: 1px solid rgba(124, 198, 254, 0.2);
    box-shadow: var(--shadow-lg);
}

.guarantee-seal {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(124, 198, 254, 0.3);
    box-shadow: 0 16px 40px rgba(124, 198, 254, 0.2);
    flex-shrink: 0;
}

.guarantee-seal img { width: 100%; height: 100%; object-fit: cover; }

.guarantee-content { flex: 1; }

.brand-logo-guarantee {
    max-height: 64px;
    width: auto;
    margin-bottom: 20px;
    animation: floatLogo 4.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}

.guarantee-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.2;
    text-transform: uppercase;
}

.guarantee-highlight { color: var(--color-accent); }

.guarantee-desc {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 16px;
}

.guarantee-trust-icons {
    margin-top: 28px;
    display: flex;
    gap: 20px;
    opacity: 0.35;
    filter: grayscale(1);
}

@media (max-width: 768px) {
    .guarantee-wrapper { flex-direction: column; text-align: center; padding: 32px 24px; gap: 28px; border-radius: var(--radius-xl); }
    .guarantee-seal { width: 160px; height: 160px; }
    .guarantee-title { font-size: 22px; }
    .guarantee-trust-icons { justify-content: center; }
}

/* ==========================================================================
   OFFER SECTION
   ========================================================================== */
.offer-section {
    padding: var(--space-10) 0;
    background: var(--bg-light);
}

.plans-title {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.plans-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 48px;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.plans-grid-premium-first {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    margin-top: 24px;
}

/* Offer Box Base */
.offer-box {
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(124, 198, 254, 0.1);
}

/* Plan Card Base */
.plan-card {
    max-width: none;
    margin: 0;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.plan-card .price-container,
.plan-card .plan-name { text-align: center; }

.plan-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.price-container { margin-bottom: 28px; }

.price-old-total {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.price-notice {
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    color: var(--text-medium);
}

.price-final {
    font-size: 60px;
    color: var(--text-dark);
    font-weight: 900;
    line-height: 1;
    margin: 8px 0 16px;
}

.price-save {
    display: inline-block;
    background: var(--color-secondary-light);
    color: var(--color-secondary-dark);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-family: var(--font-heading);
}

.plan-includes {
    font-size: 15px;
    color: var(--text-dark);
    margin: 16px 0 10px;
    font-weight: 600;
}

.plan-features,
.plan-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-features li,
.plan-benefits li {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.5;
}

.plan-benefits {
    border-top: 1px dashed rgba(124, 198, 254, 0.2);
    padding-top: 16px;
    margin-bottom: 24px;
}

.plan-card .btn-cta { margin-top: auto; }

.plan-footnote {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* Badges */
.plan-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -52px 0 14px;
    justify-content: center;
}

.plan-badges .discount-badge {
    position: static;
    transform: none;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.4px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    white-space: nowrap;
}

.discount-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(124, 198, 254, 0.35);
}

.premium-badge-strong {
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
}

.value-badge {
    background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-dark));
    color: #fff;
}

/* Plan Premium */
.plan-card.plan-highlight {
    border: 3px solid var(--color-primary) !important;
    background: linear-gradient(180deg, rgba(124, 198, 254, 0.08) 0%, var(--bg-white) 50%);
    box-shadow:
        0 28px 60px -20px rgba(124, 198, 254, 0.3),
        0 8px 24px rgba(45, 55, 72, 0.1);
    transform: scale(1.02);
    z-index: 2;
    position: relative;
    border-radius: var(--radius-2xl);
}

.plan-card.plan-highlight::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark), var(--color-primary));
    z-index: -1;
    filter: blur(14px);
    opacity: 0.2;
}

.plan-card.plan-highlight .plan-name {
    color: var(--color-primary-dark);
    font-size: 28px;
}

.plan-card.plan-highlight .price-final {
    color: var(--text-dark);
    font-size: 52px;
}

.plan-card.plan-highlight .plan-benefits {
    background: rgba(124, 198, 254, 0.05);
    border: 1px dashed rgba(124, 198, 254, 0.25);
    border-radius: var(--radius-md);
    padding: 14px 16px;
}

.plan-card.plan-highlight .plan-benefits li {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.btn-premium {
    background: var(--color-cta) !important;
    box-shadow: var(--shadow-cta) !important;
}

.btn-premium:hover {
    background: var(--color-cta-hover) !important;
    box-shadow: 0 18px 40px rgba(52, 211, 153, 0.4) !important;
}

.btn-large {
    font-size: 22px;
    padding: 22px 48px;
    width: 100%;
}

/* Plan Basic */
.plan-card.plan-secondary {
    border: 1px solid rgba(124, 198, 254, 0.1) !important;
    background: var(--bg-white);
    opacity: 0.96;
    transform: scale(0.97);
    border-radius: var(--radius-xl);
}

.plan-card.plan-secondary .plan-name {
    color: var(--text-medium);
    font-size: 22px;
}

.plan-card.plan-secondary .price-final {
    color: var(--text-medium);
    font-size: 36px;
}

.plan-tag-entry {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    background: rgba(124, 198, 254, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
}

.btn-secondary-plan {
    background: var(--bg-white) !important;
    color: var(--text-medium) !important;
    border: 1.5px solid rgba(124, 198, 254, 0.2) !important;
    box-shadow: var(--shadow-sm) !important;
    font-weight: 700;
}

.btn-secondary-plan:hover {
    background: var(--bg-light) !important;
    color: var(--text-dark) !important;
    transform: translateY(-2px) !important;
}

/* Urgency text */
.urgency-text {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-weight: 700;
}

/* Comparison Table */
.plans-compare-wrapper {
    max-width: 900px;
    margin: 64px auto 0;
}

.plans-compare-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.plans-compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
}

.plans-compare {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.plans-compare th,
.plans-compare td {
    padding: 14px 18px;
    text-align: center;
    font-size: 14.5px;
    color: var(--text-medium);
    border-bottom: 1px solid rgba(124, 198, 254, 0.08);
}

.plans-compare th {
    background: var(--bg-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

.plans-compare th:first-child,
.plans-compare td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.plans-compare tbody tr:last-child td { border-bottom: none; }

.plans-compare .col-premium {
    background: rgba(124, 198, 254, 0.06);
    color: var(--color-primary-dark);
    font-weight: 700;
}

.plans-compare thead th.col-premium {
    background: var(--color-primary);
    color: #fff;
}

@media (max-width: 860px) {
    .plans-grid,
    .plans-grid-premium-first { grid-template-columns: 1fr; gap: 28px; }
    .plan-premium,
    .plan-card.plan-highlight,
    .plan-card.plan-secondary { transform: none; }
    .plans-title { font-size: 28px; }
    .plan-card { padding: 36px 24px; }
    .price-final { font-size: 48px; }
    .plans-compare-wrapper { margin-top: 40px; }
    .plans-compare th, .plans-compare td { padding: 12px 10px; font-size: 13px; }
}

@media (max-width: 600px) {
    .plans-title { font-size: 22px; line-height: 1.25; }
    .offer-section { padding: 48px 0; }
    .plan-card { padding: 28px 18px; }
    .btn-large { font-size: 18px; padding: 18px 28px; }
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    background: var(--bg-white);
    padding: 48px 16px;
    margin: 0 16px var(--space-4);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(124, 198, 254, 0.12);
    box-shadow: var(--shadow-sm);
}

.faq-container {
    max-width: 680px;
    margin: 0 auto;
}

.faq-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid rgba(124, 198, 254, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 17px;
    color: var(--text-dark);
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: background-color 0.15s ease;
    gap: 12px;
}

.faq-question:hover { background: rgba(124, 198, 254, 0.05); }

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
    background: var(--bg-light);
}

.faq-answer p {
    padding-bottom: 22px;
    color: var(--text-medium);
    line-height: 1.65;
    font-size: 15.5px;
    margin: 0;
}

.faq-item.active .faq-answer { max-height: 320px; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-item.active { border-color: rgba(124, 198, 254, 0.3); }

@media (max-width: 640px) {
    .faq-section { padding: var(--space-6) 12px; margin: 0 8px var(--space-4); border-radius: var(--radius-xl); }
    .faq-title { font-size: 26px; margin-bottom: 32px; }
    .faq-question { padding: 18px 20px; font-size: 15px; }
    .faq-answer p { font-size: 14.5px; padding-bottom: 18px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.premium-footer {
    background: var(--text-dark);
    color: var(--text-muted);
    padding: 56px 0 28px;
    border-top: 3px solid var(--color-primary);
}

.footer-minimal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
}

.brand-logo-footer {
    max-width: 440px;
    height: auto;
    margin: -24px auto -50px;
    display: block;
    animation: floatLogo 5s ease-in-out infinite;
    pointer-events: auto;
}

.brand-logo-footer:hover {
}

@media (max-width: 768px) {
    .brand-logo-footer { max-width: 260px; margin: -10px auto -36px; }
}

.footer-links-minimal { text-align: center; }

.footer-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 8px 0 12px 0;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #a0aec0;
    font-size: 12px;
    font-weight: 500;
}

.trust-badge-icon {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
    opacity: 0.85;
}

.footer-security-note {
    font-size: 11px;
    color: #4A5568;
    margin: 0 0 16px 0;
    font-style: italic;
}

.support-email {
    display: block;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s ease;
}

.support-email:hover { color: var(--color-primary-dark); }

.legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.legal-links a {
    color: #718096;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover { color: #fff; }
.legal-links .separator { color: #4A5568; font-size: 12px; }

.footer-bottom-minimal {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 22px;
    text-align: center;
}

.copyright {
    font-size: 13px;
    color: #4A5568;
}

@media (max-width: 768px) {
    .premium-footer { padding: 40px 0 20px; }
}

/* ==========================================================================
   UPSELL MODAL — Basic → Premium
   ========================================================================== */
.upsell-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 55, 72, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    animation: upsellFadeIn 0.25s ease;
}
.upsell-modal-overlay[hidden] { display: none; }

@keyframes upsellFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes upsellSlideUp { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

.upsell-modal {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-4);
    max-width: 640px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    animation: upsellSlideUp 0.3s ease;
    font-family: var(--font-body);
}

.upsell-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 30px;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    transition: background 0.2s;
}
.upsell-close:hover { background: var(--color-primary-light); color: var(--text-dark); }

.upsell-header { text-align: center; margin-bottom: var(--space-3); padding-right: 24px; }
.upsell-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 4vw, 28px);
    color: var(--text-dark);
    margin-bottom: var(--space-1);
}
.upsell-subtitle {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.5;
}

.upsell-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.upsell-plan {
    border: 2px solid var(--color-primary-light);
    border-radius: var(--radius-lg);
    padding: var(--space-2);
    background: var(--bg-light);
    position: relative;
    display: flex;
    flex-direction: column;
}

.upsell-plan-premium {
    border-color: var(--color-cta);
    background: linear-gradient(180deg, #ECFDF5 0%, #FFFFFF 100%);
    box-shadow: var(--shadow-md);
}

.upsell-recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-cta);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.3px;
}

.upsell-plan-name {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 6px;
    margin-top: 6px;
    color: var(--text-dark);
}

.upsell-plan-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: var(--space-1);
}
.upsell-plan-premium .upsell-plan-price { color: var(--color-cta-hover); }

.upsell-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}
.upsell-plan-features li { padding: 2px 0; }

.upsell-actions { display: flex; flex-direction: column; gap: var(--space-1); align-items: stretch; }

.upsell-btn-primary {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.upsell-btn-secondary {
    display: block;
    text-align: center;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    padding: 12px;
    text-decoration: underline;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: color 0.2s;
}
.upsell-btn-secondary:hover { color: var(--text-dark); }

@media (max-width: 560px) {
    .upsell-modal { padding: var(--space-3) var(--space-2); border-radius: var(--radius-lg); }
    .upsell-compare { grid-template-columns: 1fr; gap: var(--space-3); }
    .upsell-recommended-badge { font-size: 11px; }
    .upsell-title { font-size: 22px; }
    .upsell-subtitle { font-size: 14px; }
}
