:root {
    /* Colors - Pastel/Clean Palette */
    --bg-cream: #FFFDF7;
    --bg-white: #FFFFFF;
    --bg-yellow-highlight: #FFF9C4;
    --bg-yellow-section: #FEF9E3;

    --bg-blue-soft: #EBF5FF;
    /* New Blue Card */
    --bg-green-soft: #C8E6C9;
    /* New Green Card (Darker pastel) */
    --bg-green-light: #E8F5E9;

    --text-dark: #4A4A4A;
    --text-medium: #6B6B6B;
    --text-red: #E74C3C;
    --text-green: #27AE60;

    --accent-green: #2ecc71;
    --accent-green-hover: #27ae60;
    --accent-red-soft: #FFEDED;
    --border-red-dashed: #E74C3C;
    --border-dashed-gold: #F1C40F;
    --border-dashed-brown: #8D6E63;
    /* New Brown Border */
    --text-gold-brown: #B08D55;
    /* Gold/Brown for numbers */

    /* Fonts */
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Mulish', sans-serif;

    /* Spacing */
    --container-width: 900px;
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-pill: 50px;
}

/* Reset & Basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

/* Text Highlights */
.highlight-yellow {
    background: linear-gradient(120deg, var(--bg-yellow-highlight) 0%, var(--bg-yellow-highlight) 100%);
    background-repeat: no-repeat;
    background-size: 100% 45%;
    background-position: 0 85%;
    padding: 0 5px;
}

.text-center {
    text-align: center;
}

.text-red {
    color: var(--text-red);
}

.text-green {
    color: var(--text-green);
    font-weight: 700;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

/* Icons */
.icon-check {
    color: #F1C40F;
    margin-right: 10px;
}

/* Buttons */
.btn-green {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    padding: 18px 40px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 450px;
}

.btn-green:hover {
    background: var(--accent-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

/* Hero Section */
.hero {
    text-align: center;
    padding-top: 40px;
    background: var(--bg-white);
}

.hero-mockup {
    max-width: 500px;
    margin: 0 auto 30px;
}

/* Dashed Box (User Pain Points) */
.dashed-box-red {
    background-color: var(--accent-red-soft);
    border: 2px dashed var(--border-red-dashed);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin: 15px auto;
    max-width: 700px;
    text-align: center;
    color: var(--text-red);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dashed-box-red i {
    font-size: 1.2rem;
}

/* Yellow Section (Bottom) */
.bg-yellow-soft {
    background-color: var(--bg-yellow-section);
    position: relative;
}

/* Warning Triangle */
.warning-icon {
    font-size: 3rem;
    color: #F39C12;
    margin: 0 auto 20px;
    display: block;
}

/* Yellow Dashed Box (Solution) */
.dashed-box-yellow {
    border: 2px dashed var(--border-dashed-gold);
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Benefits Grid */
.benefits-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.benefit-pill {
    background: var(--bg-yellow-section);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-pill i {
    color: #F1C40F;
}

/* -- What You Need visuals -- */
/* -- What You Need visuals -- */
.kit-visuals {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align bottom to look like they are sitting together */
    gap: 0;
    /* Remove gap if using negative margin, or small gap */
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
}

.kit-mockup-large {
    max-width: 450px;
    width: 100%;
    /* Ensure it can scale down */
    z-index: 1;
    margin-right: -30px;
    /* Overlap effect on desktop */
}

.kit-kids-photos {
    max-width: 200px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 0;
    position: relative;
    bottom: 20px;
    /* Slight offset */
}

/* Mobile Fix for Kit Visuals */
@media (max-width: 768px) {
    .kit-visuals {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .kit-mockup-large {
        margin-right: 0;
        max-width: 320px;
        /* Smaller max width for mobile */
    }

    .kit-kids-photos {
        max-width: 200px;
        /* Reset width */
        bottom: 0;
    }
}

/* -- Scroll Animations -- */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Micro-animation: Hover Lift */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.custom-checklist {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.custom-checklist li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    color: #444;
}

.custom-checklist li i {
    color: #fff;
    background: #2ecc71;
    border-radius: 4px;
    padding: 2px;
    font-size: 1rem;
    margin-top: 5px;
}

/* -- Why It Works (Blue/Green Cards) -- */
.colored-lines {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.line-segment {
    width: 40px;
    height: 4px;
    border-radius: 2px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.card-blue-soft {
    background-color: var(--bg-blue-soft);
}

.card-green-soft {
    background-color: #BBEEC4;
}

.card-image-wrapper {
    flex: 0 0 250px;
    border-radius: 15px;
    overflow: hidden;
    max-height: 250px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.checklist-white {
    list-style: none;
    margin-top: 20px;
}

.checklist-white li {
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.checklist-white li i {
    color: #2ecc71;
    font-size: 1.1rem;
}

.pencil-divider {
    background: #F9F9F9;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    color: #795548;
    font-size: 1.5rem;
}

.cta-box-bottom {
    background: #FFF9C4;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

/* -- Learning Modules (Dashed Brown Cards) -- */
.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.dashed-card-brown {
    border: 3px dashed var(--border-dashed-brown);
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    background: white;
}

.dashed-card-brown h4 {
    color: var(--border-dashed-brown);
    /* Or dark text */
    margin: 15px 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.dashed-card-brown p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* -- Vertical Video -- */
.video-vertical-wrapper {
    max-width: 320px;
    /* Phone width */
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-overlay-sound {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(180, 160, 20, 0.9);
    /* Goldish background */
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 80%;
    cursor: pointer;
}

.video-overlay-sound i {
    font-size: 2rem;
    margin-bottom: 5px;
    display: block;
}

.arrow-down-green {
    color: #2ecc71;
    font-size: 2rem;
    margin-top: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* -- Numbered Benefits (Gold Numbers) -- */
.big-number-gold {
    font-size: 5rem;
    font-weight: 800;
    color: var(--text-gold-brown);
    line-height: 1;
    margin-bottom: 10px;
}

.dashed-card-brown strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333;
}

/* -- NEW: Facebook Comments / Testimonials -- */
.fb-comments-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    text-align: left;
}

.fb-header {
    border-bottom: 1px solid #e9ebee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #4b4f56;
    font-weight: 600;
}

.fb-comment {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ebee;
    padding-bottom: 15px;
}

.fb-comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fb-avatar {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 5px;
    /* Square with slight radius like FB */
    object-fit: cover;
}

.fb-content {
    flex: 1;
}

.fb-bubble {
    /* Facebook comments don't use bubbles anymore in all versions, 
     but the print looks like standard text. 
     If copying the "feed" style: */
    margin-bottom: 5px;
}

.fb-name {
    color: #3b5998;
    /* FB Blue */
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 2px;
    display: block;
}

.fb-text {
    color: #1d2129;
    font-size: 0.95rem;
    line-height: 1.4;
}

.fb-interactions {
    font-size: 0.8rem;
    color: #90949c;
    display: flex;
    gap: 15px;
    align-items: center;
}

.fb-link {
    color: #3b5998;
    /* Or #90949c */
    text-decoration: none;
    cursor: pointer;
}

.fb-link:hover {
    text-decoration: underline;
}

.fb-reactions {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #90949c;
}

.fb-footer-plugin {
    margin-top: 15px;
    border-top: 1px solid #e9ebee;
    padding-top: 10px;
    font-size: 0.75rem;
    color: #90949c;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .card-image-wrapper {
        width: 100%;
        flex: 0 0 200px;
    }

    .checklist-white li {
        text-align: left;
    }
}

/* -- Level 2 Notebook Section -- */
.level2-section {
    background-color: #f4f4f4;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.notebook-cover {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 10px 10px 0px rgba(100, 100, 100, 0.1);
    position: relative;
    transform: rotate(-1deg);
    border: 1px solid #e0e0e0;
}

/* Spiral binding effect (Top) */
.notebook-cover::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 20px;
    right: 20px;
    height: 30px;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 19px,
            #333 19px,
            #333 24px,
            transparent 24px,
            transparent 40px);
    z-index: 10;
}

.title-bubble {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.title-pink {
    color: #FF8A80;
    font-size: 2.5rem;
}

.title-blue {
    color: #82B1FF;
    font-size: 3.5rem;
    margin: 5px 0;
}

.title-green {
    color: #9CCC65;
    font-size: 2.2rem;
}

.level-text {
    font-family: 'Patrick Hand', 'Quicksand', cursive, sans-serif;
    font-size: 3rem;
    color: #333;
    margin-top: 20px;
    transform: rotate(-3deg);
    display: inline-block;
}

/* Decorations */
.deco-sun {
    position: absolute;
    top: -50px;
    left: -50px;
    font-size: 4rem;
    color: #FFD54F;
    animation: spin 10s linear infinite;
}

.deco-crayon-pink {
    position: absolute;
    right: -40px;
    top: 50%;
    font-size: 3rem;
    color: #FF8A80;
    transform: rotate(45deg);
}

.deco-crayon-blue {
    position: absolute;
    bottom: -30px;
    left: 20px;
    font-size: 3rem;
    color: #82B1FF;
    transform: rotate(15deg);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* -- What You Receive Section (Exact Print Match) -- */
.receive-section {
    background-color: #806000;
    /* Dark Gold/Olive matching user print */
    padding: 60px 0 80px;
    color: white;
}

.receive-header {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Horizontal Carousel Container */
/* -- Cute Infinite Carousel (Marquee) -- */
.carousel-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px 0;
    max-width: 100%;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
    /* Mask for fade effect on logic */
    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);
}

.carousel-track {
    display: flex;
    gap: 20px;
    /* Space between items */
    width: max-content;
    /* Ensure it stretches */
    animation: scroll-left 40s linear infinite;
    /* Smooth continuous scroll */
}

/* Pause on hover for better UX */
.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-track img {
    height: 220px;
    /* Fixed height for consistency */
    width: auto;
    /* Auto width to maintain aspect ratio */
    border-radius: 15px;
    /* Cute rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    /* Soft floaty shadow */
    border: 4px solid white;
    /* Photo frame effect */
    transition: transform 0.3s ease;
}

.carousel-track img:hover {
    transform: scale(1.05) rotate(1deg);
    /* Cute playful lift */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move by half the width (assuming 2 sets of images) or enough to loop */
        transform: translateX(-50%);
    }
}

/* -- Mobile Specific Adjustments -- */
@media (max-width: 768px) {

    /* 1. Better Typography Size */
    html {
        font-size: 18px;
        /* Bump base size up */
    }

    p,
    li {
        line-height: 1.6;
    }

    /* 2. Kids Image Fix */
    .kit-kids-photos {
        max-width: 320px !important;
        /* Force larger size */
        width: 90%;
        margin: 0 auto;
    }

    .kit-mockup-large {
        margin-bottom: -100px;
        /* Pull them closer on mobile stack if needed */
    }

    /* 3. Carousel Mobile */
    .carousel-track img {
        height: 160px;
        /* Slightly smaller on phone but still visible */
        border-width: 2px;
    }
}

/* Feature Bars Stack */
.feature-bars {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-bar {
    padding: 18px 20px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    top: 0;
    transition: top 0.1s;
}

.feature-bar:active {
    top: 2px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

/* Specific Bar Colors (Matched to Print) */
.bar-green {
    background-color: #4CAF50;
}

.bar-orange {
    background-color: #FB8C00;
}

.bar-blue {
    background-color: #2979FF;
}

.bar-red {
    background-color: #D32F2F;
}

.bar-yellow {
    background-color: #FFA000;
}

/* -- Simple Steps Section (Cream Background) -- */
.simple-steps-section {
    background-color: #FFFDE7;
    /* Light Cream Yellow */
    padding: 80px 0 0;
    /* Padding top, 0 bottom because of the bar */
}

.steps-title {
    color: #333;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 80px;
    /* Margin bottom for spacing before bar */
}

.step-card {
    background: white;
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.step-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #333;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.step-card p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
    max-width: 250px;
    margin: 0 auto;
}

/* Bottom Bar "E ainda não acabou" */
.steps-bottom-bar {
    background-color: #8B6B0E;
    /* Dark Gold/Brown matching print */
    padding: 15px 0;
    text-align: center;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: lowercase;
    /* print shows lowercase/mixed? let's match 'e ainda não acabou...' */
}

@media (max-width: 768px) {
    .receive-header {
        font-size: 1.5rem;
    }

    .feature-bar {
        font-size: 0.8rem;
        padding: 12px;
    }

    .carousel-item {
        flex: 0 0 80%;
    }
}

/* -- Bonus Section (Gray) -- */
.bonus-section {
    background-color: #F2F2F2;
    /* Light Gray */
    padding: 60px 0 80px;
}

.bonus-header {
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}

.bonus-header h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.bonus-header .highlight-text {
    color: #F1C40F;
    /* Gold */
    font-weight: 900;
    text-shadow: 1px 1px 0 #ddd;
    font-size: 2rem;
    text-transform: uppercase;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.bonus-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.warranty-section {
    background-color: #FFFDE7;
    /* Cream */
    padding: 60px 0 80px;
    text-align: center;
}

.warranty-badge-container {
    margin-bottom: 30px;
}

.warranty-badge {
    max-width: 250px;
    /* Use a transformative drop shadow to make it pop like the print */
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
}

.warranty-content h2 {
    font-size: 1.5rem;
    color: #333;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 0px;
}

.warranty-content p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 15px;
    font-weight: 500;
}

.warranty-content .small-print {
    font-size: 0.75rem;
    color: #777;
    margin-top: 20px;
}

.security-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.security-badges img {
    height: 45px;
    width: auto;
}

/* -- FAQ Section -- */
.faq-section {
    background-color: #ECEFF1;
    /* Light Gray */
    padding: 50px 0 70px;
}

.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-header h2 {
    font-size: 1.6rem;
    color: #333;
    /* Dark Text */
    text-transform: uppercase;
    font-weight: 800;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #CFD8DC;
    /* Visible separator */
    padding: 15px 0;
}

.faq-item:first-child {
    border-top: 1px solid #CFD8DC;
}

.faq-item details {
    cursor: pointer;
}

.faq-item summary {
    list-style: none;
    font-weight: 700;
    color: #333;
    /* Dark Text */
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Space between arrow and text */
}

/* Custom Blue Arrow similar to print */
.faq-item summary::before {
    content: "▶";
    color: #2980B9;
    /* Specific Blue */
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.faq-item details[open] summary::before {
    transform: rotate(90deg);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

/* -- Mobile Responsiveness -- */
@media (max-width: 768px) {
    h1 {
        font-size: 1.6rem;
        /* Smaller H1 */
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
        /* Smaller H2 */
    }

    .hero-mockup {
        width: 100%;
        max-width: 350px;
        /* Limit size on mobile */
    }

    .container {
        padding: 0 15px;
    }

    .btn-green {
        font-size: 1.1rem;
        padding: 15px 20px;
        width: 100%;
    }

    /* Offer Section Mobile */
    .offer-card {
        padding: 20px 15px;
    }

    .price-large {
        font-size: 3rem;
        /* Smaller price on mobile */
    }

    .offer-checklist li {
        font-size: 0.95rem;
        /* Readable list text */
        flex-direction: column;
        /* Stack if needed, or keep inline */
        align-items: flex-start;
    }

    .offer-checklist .strike-price {
        margin-left: 0;
        display: block;
        /* Move price to new line on very small screens if crowded */
        margin-top: 2px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.4rem;
    }

    .benefit-pill {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .dashed-box-red,
    .dashed-box-yellow {
        padding: 20px;
    }

    .price-large {
        font-size: 2.8rem;
    }
}

/* -- Cute Infinite Carousel (Clean Marquee) -- */
.carousel-box {
    background: transparent;
    /* Clean */
    padding: 30px 0;
    max-width: 100%;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-left 50s linear infinite;
    /* Smooth, slower scroll */
}

/* Pause on hover for better UX */
.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-track img {
    height: 220px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    /* Nice shadow */
    /* No border as requested */
    transition: transform 0.3s ease;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.carousel-track img:hover {
    transform: scale(1.05);
    /* Just scale, no rotate */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* -- Refined Offer Section (Final Reference Clone) -- */
.offer-section {
    background-color: #FFFDF7;
    /* Creamy background from image */
    padding: 60px 0 80px;
    font-family: 'Quicksand', sans-serif;
    /* Rounded font like image */
}

/* Header Text */
.offer-header {
    text-align: center;
    margin-bottom: 30px;
    display: block;
}

.offer-header h2 {
    font-size: 1.6rem;
    color: #444;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: none;
    /* Normal case */
}

.offer-header .highlight-gold {
    background-color: #FFF59D;
    /* Light Yellow Highlight */
    color: #B08D55;
    /* Gold/Brown text */
    padding: 2px 10px;
    font-weight: 700;
    font-size: 1.7rem;
    display: inline-block;
}

/* Card */
.offer-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 25px;
    padding: 40px 30px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    position: relative;
}

/* Mockup Image */
.offer-mockup {
    max-width: 100%;
    margin-bottom: 25px;
}

/* Checklist */
.offer-checklist {
    list-style: none;
    text-align: left;
    width: 100%;
    margin: 0 auto 20px;
    padding: 0;
    max-width: 520px;
}

/* Checklist Layout Hardening */
.offer-checklist li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
    display: flex;
    flex-direction: row;
    /* Force row */
    align-items: center;
    /* Center align check with text */
    justify-content: flex-start;
    line-height: 1.3;
    font-weight: 500;
    /* Normal weight for regular text */
}

.offer-checklist li strong {
    font-weight: 800;
    /* Bold for Bonus Prefix */
    margin-right: 5px;
    color: #000;
}

.offer-checklist .check-icon {
    flex-shrink: 0;
    /* Prevent icon shrinking */
    color: #00C853;
    /* Green Square */
    font-size: 1.3rem;
    /* Slightly larger icon */
    margin-right: 10px;
    margin-top: 0;
    /* Align center */
}

.strike-price {
    color: #D32F2F;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 0.95rem;
    margin-left: 5px;
}

/* Support Row */
.support-row {
    text-align: left;
    max-width: 520px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-item {
    font-size: 1rem;
    color: #555;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.support-item span.emoji {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Price Block */
.price-block {
    text-align: center;
    margin-top: 25px;
}

.price-anchor-text {
    font-size: 1.4rem;
    /* Significantly Larger */
    color: #444;
    margin-bottom: 10px;
    /* Reduced gap to price */
    line-height: 1.3;
    font-weight: 700;
}

.price-anchor-strike {
    color: #D32F2F;
    /* Red */
    text-decoration: line-through;
    font-weight: 800;
    /* Extra Bold */
    font-size: 1.4rem;
    /* Match anchor text size */
    margin-left: 5px;
}

.price-large {
    font-size: 5.5rem;
    /* Massive as per print */
    font-weight: 900;
    /* Black weight */
    color: #00C853;
    /* Bright Print Green */
    line-height: 0.9;
    margin: 10px 0 5px;
    letter-spacing: -3px;
}

.price-installments {
    font-size: 1.5rem;
    /* Larger */
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
}

/* Divider */
.price-divider {
    height: 1px;
    background-color: #ccc;
    margin: 20px auto;
    width: 60%;
    /* Shorter line as visually estimated */
}

.access-info {
    font-size: 0.75rem;
    /* Reduced size */
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* Button - Adjusted size & Mobile Responsive */
.btn-green-pulse {
    background-color: #2ecc71;
    color: white;
    font-weight: 800;
    padding: 20px 30px;
    /* Slightly reduced desktop padding */
    border-radius: 50px;
    font-size: 1.15rem;
    /* Slightly reduced desktop font */
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: transform 0.2s;
    width: 100%;
    max-width: 100%;
    /* Ensure it doesn't overflow container */
    border: none;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    white-space: normal;
    /* Allow text wrapping if needed on tiny screens */
    line-height: 1.2;
}

.btn-green-pulse:hover {
    transform: scale(1.02);
}

/* Trust Badges Image */
.trust-badges-img {
    max-width: 100%;
    width: 300px;
    /* Adjust based on image aspect ratio */
    height: auto;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Badges - Text with Icon */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    font-size: 0.75rem;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    flex-wrap: wrap;
}

.trust-badges div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-badges i {
    font-size: 1.1rem;
    color: #555;
}

/* Green Arrow Down */
.arrow-down-green-large {
    color: #69F0AE;
    /* Light bright green */
    font-size: 3rem;
    text-align: center;
    margin-top: 30px;
    animation: bounce 2s infinite;
    display: block;
    /* Ensure visibility */
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .offer-card {
        padding: 30px 20px;
    }

    .price-large {
        font-size: 3.8rem;
    }

    .offer-checklist li {
        font-size: 0.95rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 5px;
    }

    .btn-green-pulse {
        font-size: 1rem;
        padding: 16px 20px;
        /* More reasonable mobile padding */
    }

    .price-block {
        margin-top: 15px;
    }
}

/* -- Infinite Carousel Animation -- */
.carousel-box {
    width: 100%;
    margin-bottom: 30px;
}

.carousel-track {
    display: inline-block;
    animation: scroll 40s linear infinite;
}

.carousel-track img {
    height: 220px;
    margin: 0 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    vertical-align: middle;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Scroll half way (the length of one set) */
    }
}

/* -- FAQ Section (Final Polish) -- */
.faq-section {
    background-color: #F0F0F0;
    padding: 50px 0 70px;
    font-family: 'Arial', 'Helvetica', sans-serif;
    /* Force standard font to match print */
}

.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-header h2 {
    font-size: 1.6rem;
    color: #222;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 0px;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #CCC;
    padding: 0;
}

.faq-item:first-child {
    border-top: 1px solid #CCC;
}

.faq-item details {
    cursor: pointer;
    padding: 12px 0;
    transition: background-color 0.1s;
}

.faq-item details:hover {
    background-color: #EAEAEA;
}

.faq-item summary {
    list-style: none;
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-left: 20px;
}

/* CSS Triangle for sharp arrow */
.faq-item summary::before {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #3498DB;
    /* Blue Triangle */
    transition: transform 0.2s;
}

.faq-item details[open] summary::before {
    transform: rotate(90deg);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-answer {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 8px;
    padding-left: 20px;
}