/* style.v84.css - Infinite Marquee Implementation + Restored Content + Christmas Fixes */
:root {
    /* Colors */
    --color-primary: #4a0080;
    --color-primary-dark: #370060;
    --color-secondary: #ffcc00;
    --color-accent: #178028;

    /* Backgrounds */
    --color-bg: #fffde7;
    /* Global Pale Yellow (Cream/Moon Light) */
    --color-box-highlight: #fff59d;
    --color-surface: #ffffff;
    --color-text-main: #1f2937;
    --color-text-muted: #4b5563;
    --color-bright-green: #39ff14;
    --color-deep-green-box: #1e5525;

    /* Gradients */
    --gradient-hero: var(--color-bg);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2rem;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-float: 0 20px 40px -5px rgba(74, 0, 128, 0.3);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Global Wrapper to prevent overflow from decorations/images */
.site-overflow-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center {
    text-align: center;
}

.text-white {
    color: white !important;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-green-highlight {
    color: #2e7d32;
    /* Matching the price green */
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

/* Components */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #00d200, #00aa00);
    color: white;
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-md);
    font-size: 1.3rem;
    box-shadow: 0 4px 0 #007700, 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-cta:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #007700, inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 4px 0 #007700, 0 0 0 0 rgba(0, 210, 0, 0.7);
    }

    70% {
        box-shadow: 0 4px 0 #007700, 0 0 0 20px rgba(0, 210, 0, 0);
    }

    100% {
        box-shadow: 0 4px 0 #007700, 0 0 0 0 rgba(0, 210, 0, 0);
    }
}

/* Block 1: Hero Refinements */
.hero-marquee-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
    margin-top: -1rem;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.payment-info-light {
    font-size: 0.6rem;
    font-weight: 620;
    text-transform: uppercase;
    color: #5d4037;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.hero-marquee-track {
    display: flex;
    gap: 0.5rem;
    width: max-content;
    animation: marquee-scroll 12s linear infinite;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

.hero-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

.badge-soft {
    display: inline-block;
    background: rgba(74, 0, 128, 0.08);
    color: var(--color-primary);
    padding: 2px 10px;
    border-radius: 99px;
    font-weight: 600;
    white-space: nowrap;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: var(--spacing-lg) auto;
    color: var(--color-text-main);
}

.hero-combo-img {
    width: 100%;
    max-width: 800px;
    margin: 1.5rem auto;
    display: block;
    border-radius: var(--radius-md);
}

.hero-microtext {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-sm);
}

/* UPDATED: Force single line with Clamp Scaling */
.hero-microtext2 {
    font-size: clamp(0.55rem, 2.5vw, 0.85rem);
    /* Scales font down on mobile to fit */
    white-space: nowrap;
    /* Forces single line */
    overflow: hidden;
    /* Prevents overflow */
    text-overflow: ellipsis;
    /* Safety */
    color: white !important;
    margin-top: var(--spacing-sm);
    width: 100%;
    display: block;
}

/* UPDATED: YouTube Embed Vertical Wrapper */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    /* Constrain width on desktop to resemble phone */
    margin: 0 auto;
    background: #000;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-secondary);
    /* 16:9 Aspect Ratio */
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden !important;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    /* Zoom fix */
    transform: scale(1.05);
    transform-origin: center center;
}

/* BLOCK 2 OVERRIDE: Remove padding bottom to fix gap */
.inside-section {
    background-color: var(--color-bg);
    padding-bottom: 0 !important;
    /* v49 FIX */
}

.section-subtext {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-muted);
}

/* BLOCK 3 OVERRIDE: Remove padding top to fix gap */
.package-summary-section {
    padding-top: 1.5rem !important;
    /* Reduced top padding */
}

/* Purple Section (Reference for Card Style) */
.games-purple-section {
    background: #4a0080;
    padding: var(--spacing-xl) 0;
    color: white;
    text-align: center;
    border-radius: var(--radius-lg);
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.offer-yellow-title {
    color: var(--color-secondary);
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.offer-yellow-badge {
    background: var(--color-secondary);
    color: black;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
    display: inline-block;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
}

.offer-subtext {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.offer-leva-tambem {
    color: #39ff14;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 2rem 0 1rem 0;
    line-height: 1;
}

.purple-plus-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 3rem auto;
    list-style: none;
    font-size: 1.1rem;
}

.purple-plus-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 600;
}

.purple-plus-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: white;
    font-size: 1.2rem;
}

.games-header-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
    color: #39ff14;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 0 4px 0 #000;
    margin-bottom: 2rem;
}

.games-center-image {
    width: 100%;
    /* Reset from 140% to prevent overflow */
    max-width: 600px;
    margin: 0 auto 1rem auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    display: block;
}

.games-bottom-text {
    font-size: 1.5rem;
    color: var(--color-secondary);
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    /* INCREASED to 2.5rem bottom margin */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.games-summary-box {
    background: var(--color-deep-green-box);
    border: 2px solid white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 600px;
    margin: 3rem auto;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.summary-title {
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.summary-list {
    list-style: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.summary-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.summary-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.summary-list li:last-child {
    border-bottom: none;
}

.text-vitalicio {
    color: #39ff14;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 2rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.purple-price-old {
    text-decoration: line-through;
    color: #fd5d93;
    font-size: 1.5rem;
    opacity: 0.8;
}

/* NEW: Prominent Anchor Price */
.offer-anchor-price {
    font-size: 1.8rem;
    color: #ff6b6b;
    text-decoration: line-through;
    opacity: 0.9;
    font-weight: 700;
    margin-bottom: 0px;
}

.purple-price-val {
    font-size: 4.5rem;
    color: var(--color-secondary);
    font-weight: 900;
    line-height: 1;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.purple-price-sub {
    color: var(--color-secondary);
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
}

.purple-scarcity {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-trust-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.trust-icon-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.trust-icon-img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

.bottom-trust-list {
    margin-top: 2rem;
    color: white;
    font-size: 0.9rem;
    list-style: none;
    text-align: center;
    display: inline-block;
}

.bottom-trust-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bottom-checkbox-icon {
    background: #68bd45;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* 
   ------------------------------------------
   NEW INFINITE MARQUEE SECTION (Replacing Carousel)
   ------------------------------------------
*/
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    margin: 2rem 0;
}

.marquee-track {
    display: flex;
    gap: 10px;
    /* Reference: 10px spacing */
    width: max-content;
    animation: infinite-scroll 40s linear infinite;
    /* Slow consistent speed */
}

.marquee-track:hover {
    /* animation-play-state: paused; */
}

@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Start of second set repeats first set position */
    }
}

.marquee-card {
    flex: 0 0 auto;
    width: 140px;
    /* Mobile width */
    height: auto;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s;
}

@media (min-width: 768px) {
    .marquee-card {
        width: 180px;
    }
}

.marquee-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}



/* 
    -------------------------------------------------------------------------
    RESTORED STYLES (Previously Missing from v81)
    -------------------------------------------------------------------------
*/

/* Carousel (Manual - Keep for the Games/Second Carousel) */
.carousel-section {
    position: relative;
    max-width: 682px;
    margin: 2rem auto 1.5rem auto;
    padding: 0 4px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 682/1024;
    background: #000;
    border: 4px solid var(--color-primary);
}

.carousel-section.games-section {
    max-width: 1000px;
    margin: 3rem auto 2rem auto;
    margin-top: 0rem;
    /* REMOVED top margin */
}

.carousel-container.games-modifier {
    aspect-ratio: 1/1;
    background: #0f172a;
    border: 4px solid var(--color-secondary);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    list-style: none;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    outline: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-primary);
    z-index: 10;
    transition: all 0.3s;
    user-select: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background: white;
    color: var(--color-accent);
}

.carousel-btn.prev-btn {
    left: 10px;
}

.carousel-btn.next-btn {
    right: 10px;
}

/* Transparent carousel overrides */
.games-purple-section .carousel-container.games-modifier {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.games-purple-section .carousel-slide {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.games-purple-section .carousel-btn {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.games-purple-section .carousel-btn:hover {
    color: var(--color-primary-dark);
    transform: translateY(-50%) scale(1.1);
}

/* Green List */
.green-list-section {
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto var(--spacing-xl) auto;
    box-shadow: var(--shadow-float);
    position: relative;
    border: 4px solid white;
    outline: 4px solid var(--color-accent);
}

.green-list-title {
    font-size: 2rem;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.green-list-items {
    list-style: none;
    font-size: 1.1rem;
}

.green-list-items li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.green-list-items li::before {
    content: '•';
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Ideal Para */
.ideal-btn-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    max-width: 500px;
    margin: 0 auto;
}

.ideal-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 2rem 1rem;
    text-align: center;
    background: white;
    border-radius: var(--radius-full);
    text-decoration: none;
    color: black;
    box-shadow: 0 5px 0 #ddd, 0 10px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s, box-shadow 0.1s;
    border: 2px solid transparent;
}

.ideal-btn:active {
    transform: translateY(5px);
    box-shadow: 0 0 0 #ddd, inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ideal-btn.blue {
    border-color: #3b82f6;
    color: #3b82f6;
    box-shadow: 0 5px 0 #2563eb;
}

.ideal-btn.yellow {
    border-color: #eab308;
    color: #ca8a04;
    box-shadow: 0 5px 0 #ca8a04;
}

.ideal-btn.green {
    border-color: #22c55e;
    color: #16a34a;
    box-shadow: 0 5px 0 #16a34a;
}

.ideal-btn.purple {
    border-color: #a855f7;
    color: #9333ea;
    box-shadow: 0 5px 0 #9333ea;
}

.ideal-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.ideal-title {
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.2;
}

.ideal-subtitle {
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.2;
}

/* Steps */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0 auto;
}

.step-card {
    background: #178028;
    /* Solid Green Match */
    border: 2px solid white;
    /* Defined White Border */
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centered as per v79/desc */
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
    /* Ensure text centers */
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-icon {
    font-size: 3.5rem;
    /* Increased size since circle is gone */
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    display: block;
    /* Simply block since it's an icon */
    box-shadow: none;
    flex-shrink: 0;
    margin: 0 auto 1rem auto;
    /* Center with spacing */
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
    /* Shadow directly on icon */
}

.step-title {
    color: #ffcc00;
    /* Yellow for contrast/match */
    font-size: 1.25rem;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 800;
}

.step-desc {
    color: white;
    opacity: 1;
    font-size: 1rem;
    font-weight: 500;
}

/* Feedback Section */
.feedback-img-max {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* Animations */
.animate-fade-down {
    animation: fadeDown 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 1;
    /* HOTFIX: Force visibility */
    transform: translateY(0);
    /* HOTFIX: No offset */
    transition: none;
    /* Disable transition for now */
}

/* 
   ------------------------------------------
   v115: REELS FEEDBACK SECTION
   ------------------------------------------
*/

.reels-section {
    background-color: #fff;
    /* Light background as requested */
    text-align: center;
    padding-bottom: 4rem;
}

.reels-header {
    margin-bottom: 2.5rem;
}

.reels-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #1f2937;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Scrollable Container */
.reels-container {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 1.5rem 3rem 1.5rem;
    /* Bottom padding for shadow */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;

    /* Center alignment for few items */
    justify-content: flex-start;
    /* Ensure scroll works */
}

/* Hide Scrollbar */
.reels-container::-webkit-scrollbar {
    display: none;
}

.reels-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Desktop Grid Override */
@media (min-width: 992px) {
    .reels-container {
        justify-content: center;
        flex-wrap: wrap;
        /* Grid on desktop */
        overflow-x: visible;
    }
}


/* Video Card */
.reel-card {
    flex: 0 0 280px;
    /* Standard phone width approx */
    aspect-ratio: 9 / 16;
    background-color: #000;
    /* Video placeholder bg */
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

.reel-card:hover {
    transform: translateY(-5px);
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fake UI Overlays (Optional, based on Reel look) */
.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: left;
    pointer-events: none;
    /* Let clicks pass to video controls */
}

.reel-user {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reel-user img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid white;
}


.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Why Section */
.why-title {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.8rem;
}

.why-box {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* Works Section (Steps) */
.works-section {
    background: #178028;
    /* CORRECTED: Green Background */
    color: white;
    width: 90%;
    max-width: 1000px;
    margin: 3rem auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-xl) 0;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--color-box-highlight);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.faq-question {
    padding: 1.25rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    transition: background 0.2s;
    color: var(--color-primary);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.5);
}

.faq-icon {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
    color: var(--color-text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.25rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Footer Details */
.footer-section {
    background: #f3f4f6;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

.copyright {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 2rem;
}

/* Santa/Christmas Extras */
.ornament-corner {
    position: absolute;
    width: 120px;
    top: -40px;
    z-index: 10;
    pointer-events: none;
}

.ornament-left {
    left: -20px;
    transform: rotate(-15deg);
}

.ornament-right {
    right: -20px;
    transform: rotate(15deg) scaleX(-1);
}

.santa-bubble-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.santa-img {
    width: 80px;
    height: auto;
    position: absolute;
    left: 0;
    bottom: -10px;
    z-index: 2;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
}

.santa-bubble {
    background: white;
    color: var(--color-primary);
    padding: 1rem 1.5rem 1rem 4rem;
    /* Extra left padding for santa */
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    font-size: 1.1rem;
    line-height: 1.3;
}

.santa-bubble::after {
    content: '';
    position: absolute;
    left: 40px;
    bottom: 10px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
    z-index: 1;
}

.btn-cta-christmas-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 1rem;
}

.santa-hat-icon {
    position: absolute;
    top: -25px;
    left: -20px;
    width: 50px;
    height: auto;
    z-index: 10;
    transform: rotate(-15deg);
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

/* CHRISTMAS THEME OVERRIDES (Restored specific colors for Offer Section) */
.offer-summary-section {
    background: #c62828 !important;
    /* Christmas Red */
    border: 4px solid #FFD700 !important;
    /* Gold Border */
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden !important;
    width: 90%;
    max-width: 1000px;
    margin: 3rem auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.offer-anchor-price {
    color: #ffeb3b !important;
    /* Bright Yellow/Gold */
    opacity: 1 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.offer-price-val {
    color: #ffffff !important;
    text-shadow: 3px 3px 0 #b71c1c;
}

.purple-price-sub {
    color: #ffe0b2 !important;
}

.offer-bonus-text {
    background: #006400 !important;
    /* Dark Green */
    border: 1px solid #FFD700 !important;
    color: #FFD700 !important;
    /* Gold Text */
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    display: inline-block;
    margin: 0.5rem;
    font-weight: 700;
}

/* CTA Green Override */
.btn-cta {
    background: linear-gradient(to bottom, #2e7d32, #1b5e20) !important;
    border: 2px solid #FFD700;
}

/* Package List & Misc */
.package-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.package-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    background: var(--color-box-highlight);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.package-icon {
    font-size: 2rem;
}

.package-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-contact {
    display: inline-block;
    background: var(--color-box-highlight);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 204, 0, 0.3);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.guarantee-box {
    background: var(--color-box-highlight);
    border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 1rem 2rem 2rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 1rem;
    box-shadow: var(--shadow-sm);
}

/* =========================================
   NEW LIGHT OFFER SECTION (v86)
   ========================================= */
.offer-summary-section {
    background-color: transparent !important;
    /* Let body bg or gradient show, or set specific if needed */
    padding-bottom: 0rem;
    margin-bottom: -2rem;
    /* Negative margin to pull next section up */
}

.new-offer-card {
    background-color: #FFFDE7;
    /* Sunshine / Butter Yellow */
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft diffuse shadow */
    border: 2px solid #FFF59D;
    /* Slightly darker yellow border */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Header inside card */
.new-offer-card h2 {
    color: #5d4037;
    /* Warm dark brown */
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Price Block */
.price-block-light {
    margin: 2rem 0;
    color: #5d4037;
}

.old-price-light {
    font-size: 1rem;
    color: #a1887f;
    /* Muted brown */
    text-decoration: line-through;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.installments-label {
    font-size: 1.1rem;
    color: #5d4037;
    margin-bottom: -5px;
    display: block;
}

.big-price-light {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2e7d32;
    /* Soft, welcoming green */
    line-height: 1;
    letter-spacing: -1px;
}

.big-price-currency {
    font-size: 1.5rem;
    vertical-align: super;
    font-weight: 600;
    margin-right: 2px;
}

.cash-price-light {
    font-size: 0.9rem;
    color: #8d6e63;
    margin-top: 0.5rem;
}

.offer-divider {
    border: 0;
    height: 2px;
    background: #eaddcf;
    margin: 0 auto 1rem auto;
    /* Reduced from 1.5rem */
    width: 60%;
    opacity: 0.8;
    border-radius: 10px;
}

/* Feature List */
.feature-list-light {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    /* Reduced from 2rem 0 */
    text-align: left;
    display: inline-block;
    /* To center the block but align text left */
}

.feature-item-light {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #4e342e;
    margin-bottom: 0.5rem;
    /* Reduced from 0.8rem */
    line-height: 1.3;
}

/* =========================================
   COMPARISON SECTION (v89)
   ========================================= */
.comparison-section {
    background-color: #0b0711;
    /* Extremely Dark Purple (almost black) for impact, per reference */
    color: white;
    padding: 3rem 1rem 4rem 1rem;
    text-align: center;
    position: relative;
    border-top: 4px solid var(--color-secondary);
    border-bottom: 4px solid var(--color-secondary);
}

.comparison-headline {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.arrow-divider {
    width: 60px;
    height: auto;
    margin: 1rem auto 2rem auto;
    display: block;
    opacity: 0.3;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Individual Blocks */
.comparison-card {
    background: transparent;
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    color: white;
    line-height: 1;
}

.comparison-label-bad {
    color: #ff3b3b;
    /* Red */
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 1px;
}

.comparison-label-good {
    color: #39ff14;
    /* Neon Green */
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 1px;
}

.comparison-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: none;
}

/* Green highlight for the good one */
.border-green {
    border: none;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

/* Fix Logo Size (v93) - Further reduced */
.hero-logo {
    max-width: 150px;
    /* Reduced to ~150px per user request */
    width: 100%;
    margin: 0 auto;
    display: block;
}

/* Fix Headline Size (v93) - Restored smaller size */
.hero-headline {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    /* Much smaller range */
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

/* User Manual Updates Support (v94) */
.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    /* Stack button and text vertically */
    align-items: center;
    /* Center them */
    justify-content: center;
    margin-top: 1.5rem;
    width: 100%;
    gap: 1rem;
    /* Add spacing between button and text */
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #2e7d32, #1b5e20);
    /* Green */
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    border: 2px solid #FFD700;
    /* Gold border */
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.6);
    color: white;
}

.btn-lg {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    width: auto;
    min-width: 280px;
}

/* Specialized Offer Button (v107) */
.btn-offer-special {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #2e7d32, #1b5e20);
    /* Dark Green */
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 1rem;
    /* Sleeker vertical padding */
    border-radius: 99px;
    /* Pill shape */
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    border: 3px solid #FFD700;
    /* Distinct Gold Border */
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    /* Stretch horizontally */
    max-width: 100%;
    /* Remove width cap */
    line-height: 1.2;
    text-align: center;
}

/* Fix Hero Spacing (v109) */
.hero-subheadline {
    margin-bottom: 0.5rem !important;
    /* Tight spacing to video */
}

.hero-video-wrapper {
    margin-top: 0 !important;
}

/* 
   ------------------------------------------
   v110 PRICING REDESIGN (User Request)
   ------------------------------------------
*/

/* 1. Background & Container */
.offer-section-redesign {
    background-color: #FFF8E6;
    /* Soft Beige */
    padding: 4rem 1rem;
}

.offer-card-redesign {
    background-color: #FFFFFF;
    /* Pure White */
    border: 3px solid #1F6F43;
    /* Dark Green Border */
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 25px rgba(31, 111, 67, 0.15);
    /* Soft Green Shadow */
    position: relative;
    overflow: visible;
    /* For badges */
}

/* Optional: Golden variant for border if requested later, but starting with Green */

/* 2. Headlines & Text */
.offer-headline-re {
    font-family: var(--font-heading);
    color: #1F6F43;
    /* Dark Green */
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 800;
}

.offer-headline-re .highlight {
    color: #F2B705;
    /* Gold/Yellow */
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* 3. Badge (Lock / Payment) */
.price-badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #E8F5EE;
    /* Very Light Green */
    color: #1F6F43;
    /* Dark Green */
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(31, 111, 67, 0.2);
}

/* 4. Pricing Hierarchy */
.pricing-block-re {
    margin-bottom: 2.5rem;
}

.price-old-re {
    font-size: 1.1rem;
    color: #B5B5B5;
    /* Light Gray */
    text-decoration: line-through;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.price-installments-re {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-small-text {
    font-size: 1.2rem;
    color: #1F6F43;
    font-weight: 600;
}

.price-huge-val {
    font-size: 4.5rem;
    /* HUGE */
    color: #1F6F43;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.price-currency-huge {
    font-size: 2rem;
    color: #1F6F43;
    font-weight: 800;
    margin-right: 2px;
}

.price-cash-re {
    font-size: 1rem;
    color: #727586;
    font-weight: 500;
    margin-top: 0.5rem;
    display: block;
}

/* 5. Comparison / Emotional Box */
.comparison-emotional-box {
    background-color: #FFF1C1;
    /* Soft Yellow */
    color: #1F6F43;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    margin: 2rem auto;
    max-width: 90%;
    border: 1px solid rgba(242, 183, 5, 0.3);
}

/* 6. Benefits List */
.benefits-list-re {
    list-style: none;
    text-align: left;
    margin: 2rem auto;
    display: inline-block;
    max-width: 100%;
}

.benefits-list-re li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.benefits-list-re li.highlight-item {
    color: #1f2937;
    font-weight: 700;
}

.check-icon-re {
    color: #1F6F43;
    font-weight: bold;
}

/* 7. New CTA Button (Decision) */
.btn-decision {
    background-color: #1F6F43;
    /* Darker Green */
    color: white;
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    /* Taller */
    border-radius: var(--radius-md);
    border-bottom: 5px solid #144d2e;
    /* 3D effect darker */
    border-top: 2px solid #F2B705;
    /* Yellow Highlight top */
    box-shadow: 0 10px 20px rgba(31, 111, 67, 0.3);
    text-decoration: none;
    display: inline-block;
    width: 100%;
    transition: all 0.2s ease;
}

.btn-decision:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(31, 111, 67, 0.4);
    filter: brightness(1.05);
}

.btn-decision:active {
    transform: translateY(2px);
    border-bottom-width: 2px;
    box-shadow: none;
}


/* 
   ------------------------------------------
   v111 REFINEMENTS (User Request)
   ------------------------------------------
*/

/* 1. Button Rounded */
.btn-decision {
    border-radius: 50px !important;
    /* Fully rounded as requested */
}

/* 2. List Styling Refinements */
.benefits-list-re li {
    color: #727586 !important;
    /* Lighter/Muted text */
    font-weight: 500 !important;
    /* Not too bold */
    font-size: 1.05rem !important;
}

.benefits-list-re li.highlight-item {
    color: #4b5563 !important;
    /* Slightly darker but not black */
    font-weight: 500 !important;
}

/* Remove check icon specific styling if we are using emoji directly in HTML, 
   but keep spacing */
.check-icon-re {
    margin-right: 5px;
}

/* 3. Badge Re-positioning handled in HTML structure */
.price-badge-container {
    margin-bottom: 0;
    margin-top: 1.5rem;
    /* Space from price block above */
}

/* 
   ------------------------------------------
   v112 REFINEMENTS (Layout Swap & Color Fix)
   ------------------------------------------
*/

/* 1. Make the first 3 list items DARKER */
.benefits-list-re li.highlight-item {
    color: #111827 !important;
    /* Very Dark Gray/Almost Black */
    font-weight: 600 !important;
}

/* 2. Last two remain lighter as previously set, but ensuring contrast priority */
.benefits-list-re li:not(.highlight-item) {
    color: #727586 !important;
}

/* 3. Badge re-position spacing fix (since we are moving it up again) */
.price-badge-container {
    margin-top: 0;
    margin-bottom: 2rem;
    /* Restore bottom margin */
}

/* 
   ------------------------------------------
   v113 REFINEMENTS (List Color Unification)
   ------------------------------------------
*/

/* 1. Reset Top 3 to match v111 (Dark Grey but not Black) */
.benefits-list-re li.highlight-item {
    color: #4b5563 !important;
    /* Restoring Gray 600 */
    font-weight: 500 !important;
    /* Reducing weight slightly as requested ("leave as they were") */
}

/* 2. Darken Bottom 2 to match (remove opacity/lightness) */
.benefits-list-re li:not(.highlight-item) {
    color: #4b5563 !important;
    /* Unified Color */
    font-weight: 500 !important;
    opacity: 1 !important;
    /* Make sure they aren't faded */
}