/* =============================================
   1000+ Atividades Lúdicas - Landing Page CSS
   Color Theme: Blue Sticker / Grid Paper
   ============================================= */

:root {
    /* Core Colors - Cool Blue & Pink Sticker Palette */
    --color-bg: #f0f4ff;
    --color-text: #1a2744;
    --color-text-light: #5a6a8a;

    --color-primary: #f06292;
    --color-primary-dark: #e91e8c;
    --color-secondary: #f48fb1;
    --color-accent: #3b5bdb;

    --color-white: #ffffff;

    --color-blue: #3b82f6;
    --color-blue-light: #dbeafe;
    --color-green: #10b981;
    --color-green-light: #ecfdf5;
    --color-purple: #8b5cf6;
    --color-coral: #f87171;
    --color-teal: #14b8a6;
    --color-amber: #f59e0b;
    --color-bg-dark: #1a2744;

    --shadow-sm: 0 4px 6px rgba(59, 91, 219, 0.06);
    --shadow-md: 0 10px 25px rgba(59, 91, 219, 0.10);
    --shadow-lg: 0 20px 40px rgba(240, 98, 146, 0.20);
    --shadow-premium: 0 0 40px rgba(240, 98, 146, 0.25);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --gradient-primary: linear-gradient(135deg, #f48fb1, #f06292);
    --gradient-hero: linear-gradient(135deg, #3b5bdb 0%, #7c3aed 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='%233b5bdb' stroke-opacity='0.08' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

/* Background Particles */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatParticle 20s ease-in-out infinite;
}

.p1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #3b5bdb 0%, transparent 70%);
    top: -5%; left: 5%;
    animation-duration: 25s;
}

.p2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, #f06292 0%, transparent 70%);
    top: 30%; right: -3%;
    animation-duration: 18s;
    animation-delay: -5s;
}

.p3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
    bottom: 10%; left: 10%;
    animation-duration: 22s;
    animation-delay: -10s;
}

.p4 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
    top: 60%; left: 50%;
    animation-duration: 28s;
    animation-delay: -8s;
}

.p5 {
    width: 220px; height: 220px;
    background: radial-gradient(circle, #f48fb1 0%, transparent 70%);
    top: 10%; right: 20%;
    animation-duration: 20s;
    animation-delay: -3s;
}

.p6 {
    width: 160px; height: 160px;
    background: radial-gradient(circle, #60a5fa 0%, transparent 70%);
    bottom: 30%; right: 15%;
    animation-duration: 24s;
    animation-delay: -12s;
}

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.container-narrow { max-width: 800px; }
.container-medium { max-width: 920px; }

/* Typography */
h1, h2, h3, h4, h5 {
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1rem;
}

.highlight-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text.big {
    font-size: 2.8rem;
}

.highlight-box {
    background: var(--gradient-hero);
    color: white;
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    display: inline-block;
    transform: rotate(-1deg);
    -webkit-text-fill-color: white;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--color-white);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    width: auto;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 25px 50px rgba(232, 72, 92, 0.3);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(240, 98, 146, 0.45); }
    70% { box-shadow: 0 0 0 18px rgba(240, 98, 146, 0); }
    100% { box-shadow: 0 0 0 0 rgba(240, 98, 146, 0); }
}

.secure-checkout {
    font-size: 0.9rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.secure-checkout i {
    color: var(--color-green);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    padding: 80px 0 60px;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59, 91, 219, 0.08), rgba(124, 58, 237, 0.08));
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-text);
    margin-bottom: 24px;
    border: 1px solid rgba(59, 91, 219, 0.2);
}

.badge i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.badge-highlight {
    background: var(--color-green);
    color: white;
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.7;
}

/* Hero Media - Card Stack Visual */
.hero-media {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-card-stack {
    position: relative;
    width: 360px;
    height: 420px;
}

.hero-float-card {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 3;
    border: 1px solid rgba(0,0,0,0.04);
    animation: floatCard 6s ease-in-out infinite;
}

.hero-float-card i {
    font-size: 28px;
}

.hero-float-card.card-1 {
    top: 10px; left: -30px;
    animation-delay: 0s;
}
.hero-float-card.card-1 i { color: var(--color-accent); }

.hero-float-card.card-2 {
    top: 80px; right: -20px;
    animation-delay: -2s;
}
.hero-float-card.card-2 i { color: var(--color-primary); }

.hero-float-card.card-3 {
    bottom: 60px; left: -10px;
    animation-delay: -4s;
}
.hero-float-card.card-3 i { color: var(--color-teal); }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 60px rgba(232, 72, 92, 0.35), inset 0 0 40px rgba(255,255,255,0.1);
    z-index: 2;
    text-align: center;
}

.visual-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.visual-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 4px;
}

.visual-badge-bottom {
    position: absolute;
    bottom: -15px;
    background: var(--color-white);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.visual-badge-bottom i {
    color: var(--color-amber);
}


/* Hero Info Card */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 60px; /* Extra rounded */
    padding: 30px 50px;
    max-width: 850px;
    margin: 0 auto 40px;
    box-shadow: 
        0 20px 40px rgba(59, 91, 219, 0.08),
        0 0 0 4px rgba(240, 98, 146, 0.03); /* Soft outer glow */
    text-align: center;
    position: relative;
    overflow: hidden;
    display: block;
    animation: floatingInfo 5s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-info-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 25px 50px rgba(59, 91, 219, 0.12);
}

@keyframes floatingInfo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
    background-size: 200% 100%;
    animation: slideGradient 4s linear infinite;
}

@keyframes slideGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.hero-info-card-text h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--color-primary-dark);
    letter-spacing: -0.5px;
}

.hero-info-card-text p {
    font-size: 1.05rem;
    color: var(--color-text); /* Higher contrast for clarity */
    line-height: 1.7;
    font-weight: 500;
}

.hero-info-card-text span {
    color: var(--color-accent);
    font-weight: 700;
}

/* Hero Video Card */
.hero-video-card {
    max-width: 900px;
    width: 100%;
    margin: 0 auto 60px;
    background: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1a2744 0%, #000 100%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 20 L80 50 L30 80 Z' fill='white' fill-opacity='0.1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 150px;
    opacity: 0.1;
}

.play-button-overlay {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(240, 98, 146, 0.4);
    z-index: 5;
    transition: all 0.3s ease;
}

.play-button-overlay i {
    font-size: 50px;
    color: white;
    margin-left: 8px; /* Offset for visual centering of triangle */
}

.video-placeholder:hover .play-button-overlay {
    transform: scale(1.15);
    box-shadow: 0 0 70px rgba(240, 98, 146, 0.6);
}

.video-caption {
    position: absolute;
    bottom: 30px;
    left: 40px;
    color: white;
    z-index: 5;
    text-align: left;
}

.video-caption h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.video-caption p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Phone Video: remove old media override */
@media (max-width: 768px) {
    .play-button-overlay {
        width: 70px;
        height: 70px;
    }
    .play-button-overlay i {
        font-size: 35px;
    }
}

/* =============================================
   VIDEO STICKER FRAME
   ============================================= */
.video-sticker-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 60px;
    padding: 20px 0;
    max-width: 320px;
}

.video-sticker-frame {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 6px; /* A moldura branca/clara */
    border-radius: 42px; /* Cantos bem arredondados conforme a foto */
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.1),
        0 5px 15px rgba(0,0,0,0.05);
    z-index: 2;
    border: 1px solid rgba(240, 98, 146, 0.1);
}

.video-sticker-frame .video-container {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 36px; /* Um pouco menor que o frame */
    overflow: hidden;
    background: #000;
    position: relative; /* Para os controles */
}

/* Custom Controls Layout */
.video-controls-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.video-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.video-control-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
}

.video-control-btn:active {
    transform: scale(0.95);
}

.video-sticker-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sticker-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(240, 98, 146, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .video-sticker-wrapper {
        max-width: 280px;
        margin-bottom: 40px;
    }
}

.phone-caption p {
    font-size: 0.75rem;
    opacity: 0.75;
}

/* Screen shine / reflection */
.phone-shine {
    position: absolute;
    top: 14px;
    left: 12px;
    width: 30%;
    height: 85%;
    background: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, transparent 60%);
    border-radius: 24px;
    pointer-events: none;
    z-index: 10;
}

/* Responsive phone mockup */
@media (max-width: 480px) {
    .phone-mockup {
        width: 230px;
        border-radius: 38px;
    }
}


/* =============================================
   SECTIONS GLOBAL
   ============================================= */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--color-text-light);
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section {
    background-image:
        linear-gradient(to bottom, transparent, var(--color-bg) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8485c' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: var(--color-white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 91, 219, 0.2);
}

.icon-wrapper {
    background: linear-gradient(135deg, rgba(232, 72, 92, 0.08), rgba(124, 58, 237, 0.08));
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-primary);
    font-size: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Ages Banner */
.ages-banner {
    background: linear-gradient(to right, #ffffff, rgba(59, 91, 219, 0.04));
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-accent);
    position: relative;
    overflow: hidden;
}

.ages-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 72, 92, 0.04));
    transform: skewX(-20deg);
}

.ages-icon {
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.ages-text { flex: 1; }
.ages-text h3 { margin-bottom: 4px; }
.ages-text p { color: var(--color-text-light); }

.text-link {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1.1rem;
    z-index: 2;
    white-space: nowrap;
}

.text-link:hover { text-decoration: underline; }

/* =============================================
   WHY US SECTION
   ============================================= */
.why-us-section {
    background-color: #e8eeff;
    border-top: 2px dashed rgba(59, 91, 219, 0.15);
    border-bottom: 2px dashed rgba(59, 91, 219, 0.15);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 72, 92, 0.12);
}

.why-card i {
    font-size: 40px;
    margin-bottom: 16px;
    display: inline-block;
}

.why-card h4 { margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--color-text-light); }

.text-blue { color: var(--color-blue); }
.text-green { color: var(--color-green); }
.text-purple { color: var(--color-purple); }
.text-coral { color: var(--color-coral); }

/* =============================================
   BONUSES SECTION
   ============================================= */
.bonuses-section {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(59, 91, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(240, 98, 146, 0.05) 0%, transparent 50%);
}

.badge-center {
    background: linear-gradient(135deg, rgba(59, 91, 219, 0.08), rgba(240, 98, 146, 0.08));
    color: var(--color-accent);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    display: table;
    margin: 0 auto 20px;
    border: 1px solid rgba(59, 91, 219, 0.25);
    font-size: 0.95rem;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.bonus-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bonus-tag {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 0 0 10px 10px;
    z-index: 10;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(232, 72, 92, 0.3);
    letter-spacing: 0.5px;
}

.bonus-image-real {
    width: 100%;
    aspect-ratio: 1 / 1; /* Mantém o topo do card quadrado como as artes */
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.bonus-image-real img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Preenche tudo sem deixar bordas brancas */
    display: block;
    transition: transform 0.5s ease;
}

.bonus-card:hover .bonus-image-real img {
    transform: scale(1.05);
}

.bonus-content {
    padding: 28px;
    text-align: center;
}

.bonus-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    min-height: 55px;
    font-size: 0.95rem;
}

.price-strike {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.price-free {
    color: var(--color-green);
    font-size: 1.8rem;
    font-weight: 900;
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section {
    background-color: var(--color-bg);
    padding: 100px 0;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
}

.pricing-card {
    background-color: white;
    padding: 35px 30px;
    border-radius: 22px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    width: 370px;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.basic {
    margin-top: 30px;
    margin-bottom: 30px;
}

.pricing-card.premium {
    border: 3px solid var(--color-primary);
    box-shadow: 0 20px 50px rgba(232, 72, 92, 0.15);
    z-index: 10;
    padding: 45px 35px;
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 22px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.65rem;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(232, 72, 92, 0.3);
    letter-spacing: 0.5px;
}

.social-proof {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    font-size: 0.6rem;
    font-weight: 800;
    text-align: center;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin: 5px auto 25px;
    display: inline-block;
    width: max-content;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #1f2937;
}

.text-accent { color: var(--color-primary) !important; }

.price-strike-small {
    text-align: center;
    text-decoration: line-through;
    color: #9ca3af;
    margin-bottom: 2px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 15px;
}

.price .currency {
    font-size: 1rem;
    font-weight: 800;
    margin-right: 2px;
    margin-top: 8px;
}

.price .amount {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -1.5px;
}

.price .cents {
    font-size: 1rem;
    font-weight: 800;
    align-self: flex-end;
    margin-bottom: 6px;
    margin-left: 2px;
}

.text-dark-gray { color: #1f2937; }

.cash-price {
    text-align: center;
    color: #9ca3af;
    font-weight: 700;
    font-size: 0.6rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-section .cta-button {
    width: 100%;
    margin-bottom: 20px;
    padding: 14px 30px;
    font-size: 0.9rem;
}

.btn-basic {
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    color: #92400e;
    box-shadow: none;
}

.btn-basic:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-2px);
}

.btn-premium {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 25px rgba(232, 72, 92, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(232, 72, 92, 0.4);
}

.immediate-access {
    text-align: center;
    color: #9ca3af;
    font-size: 0.65rem;
    margin-bottom: 25px;
    margin-top: -12px;
}

.features-list {
    list-style: none;
    margin-top: 10px;
}

.features-list li {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: #4b5563;
}

.text-light-accent {
    color: var(--color-secondary);
    font-size: 16px;
    margin-top: 2px;
}

.check-icon-circle {
    background: linear-gradient(135deg, rgba(232, 72, 92, 0.1), rgba(255, 122, 92, 0.1));
    color: var(--color-primary);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 9px;
    margin-top: 2px;
}

.feature-text {
    line-height: 1.4;
}

.feature-text strong {
    color: #1f2937;
    font-weight: 700;
}

.premium {
    text-align: center;
}

.premium .features-list {
    text-align: left;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    background-color: white;
    text-align: center;
}

.stars {
    color: var(--color-amber);
}

.stars.big {
    font-size: 24px;
    margin-top: 10px;
}

.testimonials-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    min-height: 250px;
}

.testimonial-card {
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.03);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid white;
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-top: 30px;
}

.client-info h4 {
    margin-bottom: 4px;
}

.testimonial-content p {
    font-size: 1.05rem;
    font-style: italic;
    margin: 18px 0;
    color: var(--color-text);
    line-height: 1.7;
}

.verified-buyer {
    color: var(--color-green);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--color-green-light);
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

.dots-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gradient-primary);
    width: 28px;
    border-radius: 10px;
}

/* =============================================
   AUTHOR SECTION
   ============================================= */
.author-section {
    background-color: #f9f7f5;
}

.author-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.author-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.author-image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.decorative-blob {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 360px;
    background: linear-gradient(135deg, rgba(232, 72, 92, 0.08), rgba(124, 58, 237, 0.08));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; }
}

.author-info {
    flex: 1.2;
}

.author-info h2 {
    font-size: 1.1rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.author-info h3 {
    font-size: 2.4rem;
    margin-bottom: 5px;
}

.author-cred {
    font-size: 1.05rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 24px;
}

.author-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.stat { display: flex; flex-direction: column; }

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.author-bio {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* =============================================
   GUARANTEE SECTION
   ============================================= */
.guarantee-section {
    background-color: white;
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(232, 72, 92, 0.04), rgba(124, 58, 237, 0.04));
    border: 2px dashed rgba(232, 72, 92, 0.3);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    position: relative;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    margin-top: -90px;
    box-shadow: 0 10px 30px rgba(232, 72, 92, 0.3);
}

.guarantee-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.guarantee-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-light);
}

.flat {
    background: var(--gradient-primary);
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    background-color: var(--color-bg);
    padding-bottom: 100px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 22px 24px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--color-primary);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 24px 22px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* =============================================
   FINAL CTA SECTION
   ============================================= */
.final-cta-section {
    background: linear-gradient(135deg, rgba(232, 72, 92, 0.03), rgba(124, 58, 237, 0.03));
    padding: 80px 0;
    border-top: 1px dashed rgba(0,0,0,0.06);
}

.final-cta-section h2 {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.final-cta-section p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background-color: var(--color-bg-dark);
    color: rgba(255,255,255,0.65);
    padding: 40px 0;
    text-align: center;
}

.footer-secure {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-secure i {
    color: var(--color-green);
}

footer p {
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

.feature-card.reveal-element:nth-child(1) { transition-delay: 0s; }
.feature-card.reveal-element:nth-child(2) { transition-delay: 0.1s; }
.feature-card.reveal-element:nth-child(3) { transition-delay: 0.2s; }
.feature-card.reveal-element:nth-child(4) { transition-delay: 0.3s; }

.why-card.reveal-element:nth-child(1) { transition-delay: 0s; }
.why-card.reveal-element:nth-child(2) { transition-delay: 0.1s; }
.why-card.reveal-element:nth-child(3) { transition-delay: 0.2s; }
.why-card.reveal-element:nth-child(4) { transition-delay: 0.3s; }

.bonus-card.reveal-element:nth-child(1) { transition-delay: 0s; }
.bonus-card.reveal-element:nth-child(2) { transition-delay: 0.15s; }
.bonus-card.reveal-element:nth-child(3) { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 { font-size: 2.6rem; }
    .hero-sticker-title { font-size: 3rem; }
    .hero-description { margin: 0 auto 30px; }
    .badge { margin: 0 auto 24px; }

    .hero-card-stack {
        width: 300px;
        height: 340px;
    }

    .hero-main-visual {
        width: 200px;
        height: 200px;
    }

    .visual-number { font-size: 2.4rem; }

    .features-grid, .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card.premium { transform: scale(1); }

    .author-container {
        flex-direction: column;
        text-align: center;
    }

    .author-stats { justify-content: center; }

    .highlight-text.big { font-size: 2rem; }
}

@media (max-width: 768px) {
    .features-grid, .why-us-grid {
        grid-template-columns: 1fr;
    }

    .ages-banner {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
    }

    .hero-float-card.card-1 { left: 0; }
    .hero-float-card.card-2 { right: 0; }
    .hero-float-card.card-3 { left: 10px; }

    .section-header h2 { font-size: 1.8rem; }
    .guarantee-box { padding: 40px 24px; }
    .guarantee-box h2 { font-size: 1.6rem; }

    .final-cta-section h2 { font-size: 1.8rem; }

    /* Subir o título no mobile - AGRESSIVO */
    .top-banner { padding: 6px 12px; font-size: 0.75rem; }
    .hero-section { padding-top: 5px !important; }
    .badge { margin-bottom: 6px; transform: scale(0.88); transform-origin: center; }

    .highlight-number {
        font-size: 3.8rem !important;
        display: block;
        margin-bottom: 0px;
        color: var(--color-primary-dark);
        text-shadow: 0 0 24px rgba(240, 98, 146, 0.45);
        letter-spacing: -2px;
        line-height: 1;
    }

    .hero-sticker-title {
        font-size: 2.8rem !important;
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .hero-sticker-title .sticker-box {
        font-size: 2.8rem;
        padding: 2px 16px 10px;
        border-radius: 14px;
        box-shadow: 0 10px 32px rgba(240, 98, 146, 0.55);
        transform: rotate(-1.5deg);
        display: inline-block;
    }

    .hero-sticker-title .blue-underline {
        color: var(--color-accent);
        position: relative;
    }

    .hero-sticker-title .blue-underline::after {
        height: 5px;
        bottom: -4px;
    }
}

@media (max-width: 480px) {
    .hero-sticker-title {
        font-size: 2.5rem !important;
        letter-spacing: -0.8px;
        line-height: 1.1;
    }

    .hero-sticker-title .sticker-box {
        font-size: 2.5rem;
        padding: 2px 14px 9px;
    }
}

/* =============================================
   BLUE STICKER HERO ADDITIONS
   ============================================= */

/* Top Announcement Banner */
.top-banner {
    background: linear-gradient(90deg, #3b5bdb, #7c3aed);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 100;
}

/* Floating Doodles Background */
.doodles-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.doodle {
    position: absolute;
    font-size: 2rem;
    opacity: 0.12;
    animation: floatDoodle 20s ease-in-out infinite;
    user-select: none;
}

.d1 { top: 8%; left: 4%; animation-duration: 22s; animation-delay: 0s; }
.d2 { top: 12%; right: 6%; animation-duration: 18s; animation-delay: -3s; }
.d3 { top: 30%; left: 2%; animation-duration: 25s; animation-delay: -7s; }
.d4 { top: 60%; right: 3%; animation-duration: 20s; animation-delay: -5s; }
.d5 { top: 72%; left: 7%; animation-duration: 23s; animation-delay: -10s; }
.d6 { top: 40%; right: 8%; animation-duration: 17s; animation-delay: -2s; }
.d7 { bottom: 10%; left: 15%; animation-duration: 21s; animation-delay: -8s; }
.d8 { bottom: 20%; right: 12%; animation-duration: 19s; animation-delay: -4s; }

@keyframes floatDoodle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, 15px) rotate(-5deg); }
    75% { transform: translate(20px, 10px) rotate(3deg); }
}

/* Hero Sticker Typography */
.hero-section {
    padding: 60px 0 50px;
    position: relative;
    z-index: 1;
}

.hero-sticker-title {
    font-size: 4.2rem;
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: center;
}

.highlight-number {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(240, 98, 146, 0.3));
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(240, 98, 146, 0.3)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(240, 98, 146, 0.6)); }
}

.sticker-box {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 2px 18px 6px;
    border-radius: 10px;
    -webkit-text-fill-color: white;
    transform: rotate(-1.5deg);
    box-shadow: 0 6px 20px rgba(240, 98, 146, 0.35);
}

.blue-underline {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.blue-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 5px;
    background: var(--color-accent);
    border-radius: 3px;
    clip-path: polygon(0 30%, 5% 0%, 10% 30%, 15% 0%, 20% 30%, 25% 0%, 30% 30%, 35% 0%, 40% 30%, 45% 0%, 50% 30%, 55% 0%, 60% 30%, 65% 0%, 70% 30%, 75% 0%, 80% 30%, 85% 0%, 90% 30%, 95% 0%, 100% 30%, 100% 100%, 0 100%);
}

/* Mobile shimmer animation for +1000 */
@keyframes shimmerTitle {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Hero Keyword Pills */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
}

.pill {
    background: white;
    border: 1.5px solid rgba(59, 91, 219, 0.2);
    color: var(--color-text);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(59, 91, 219, 0.08);
}

/* Content Subtitle Section */
.content-subtitle-section {
    padding: 24px 0 0;
    text-align: center;
}

.content-subtitle-section h2 {
    font-size: 1.8rem;
    color: var(--color-text);
    font-weight: 700;
}

.em-pink {
    font-style: italic;
    color: var(--color-primary);
    -webkit-text-fill-color: var(--color-primary);
}

/* Testimonials background to white still */
.testimonials-section {
    background-color: white;
}

/* Author section stays light */
.author-section {
    background-color: #eef1ff;
}

/* =============================================
   UPSELL POPUP
   ============================================= */
.upsell-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.upsell-overlay.active {
    display: flex;
    animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.upsell-modal {
    background: white;
    border-radius: 24px;
    max-width: 340px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    animation: slideUpModal 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUpModal {
    from { transform: translateY(60px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.upsell-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}

.upsell-close:hover { background: rgba(255,255,255,0.35); }

/* Header rosa */
.upsell-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%);
    padding: 36px 28px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.upsell-header::before {
    content: '';
    position: absolute;
    top: -30px; left: -30px;
    width: 140px; height: 140px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.upsell-header::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 100px; height: 100px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.upsell-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.upsell-headline {
    color: white;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 0;
}

/* Body */
.upsell-body {
    padding: 24px 24px 20px;
    text-align: center;
}

.upsell-text {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 18px;
}

.upsell-text strong {
    color: var(--color-primary);
}

.upsell-offer-box {
    background: #fff0f3;
    border: 2px solid #ffd1dc;
    border-radius: 16px;
    padding: 18px 16px;
    margin-bottom: 20px;
}

.upsell-combo-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.upsell-price-strike {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.upsell-price-big {
    font-size: 2.6rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 10px;
}

.upsell-benefits {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.upsell-btn-yes {
    width: 100%;
    background: var(--gradient-primary) !important;
    font-size: 0.95rem !important;
    padding: 16px 20px !important;
    margin-bottom: 12px;
    box-shadow: 0 8px 25px rgba(240, 98, 146, 0.4) !important;
}

.upsell-btn-yes:hover {
    box-shadow: 0 12px 35px rgba(240, 98, 146, 0.55) !important;
}

.upsell-btn-no {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    padding: 6px;
    display: block;
    width: 100%;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.upsell-btn-no:hover { color: #6b7280; }

.upsell-secure {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    opacity: 0.8;
}

