:root {
    --bg-pink: #FAF5F9;
    /* Very light pink background */
    --bg-card: #F5EBF5;
    /* Slightly darker pink for cards */
    --text-dark: #333333;
    --text-gray: #666666;
    --accent-pink: #E85D75;
    /* The 'Começar' color approx */
    --accent-orange: #FF7F50;
    /* The 'Frente'/Button color approx */
    --highlight-pink: #FF6FA5;
    /* +2000 moldes part */
    --btn-primary: #FF7055;
    --btn-shadow: #E05035;
    --card-border-radius: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #fff;
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 600px;
    /* Mobile-first width based on image, stretches on desktop */
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #FF9AAD, #FFB6C1);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Typography */
h1.main-headline {
    font-family: 'Fredoka', 'Nunito', sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 30px 0 15px;
    color: #4A4A4A;
}

.highlight-pink {
    color: #FF6B8B;
    font-weight: 800;
}

.highlight-orange {
    color: #FF7F50;
    font-weight: 800;
}

.subheadline {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 25px;
    max-width: 400px;
    /* Limit width */
    margin-left: auto;
    margin-right: auto;
}

.bold-pink {
    color: #FF6B8B;
    font-weight: 700;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    color: var(--accent-pink);
    /* Or matching the image */
    margin: 30px 0 10px;
}

.section-title span {
    color: var(--accent-orange);
}

/* Video Placeholder */
.video-container {
    margin: 20px auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

wistia-player {
    max-width: 260px !important;
    /* Smaller size forced */
    width: 100% !important;
}

.video-placeholder {
    width: 100%;
    max-width: 320px;
    /* Portrait video size approx */
    aspect-ratio: 9/16;
    background-color: #ddd;
    border-radius: 12px;
    position: relative;
    background-image: url('https://placehold.co/320x570/333/fff?text=Video+Preview');
    /* Temporary */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #3b5bdb;
    /* Blue from image */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 91, 219, 0.4);
    cursor: pointer;
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Badges on Video */
.badge-blue {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #D1D8F5;
    color: #333;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.bottom-badge {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #A855F7, #EC4899);
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Utilities */
@media (min-width: 768px) {
    h1.main-headline {
        font-size: 2.5rem;
    }

    .container {
        max-width: 800px;
    }
}

/* Categories Grid */
.categories {
    padding: 40px 0;
    background-color: #fff;
}

.grid-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Mobile: 2 cols */
    gap: 15px;
    margin-top: 30px;
}

@media (min-width: 600px) {
    .grid-categories {
        grid-template-columns: repeat(4, 1fr);
        /* Desktop: 4 cols */
    }
}

/* 3D & Animation */
.cat-card-container {
    perspective: 1000px;
}

.cat-card {
    background-color: #F8F0F5;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: floatCard 4s ease-in-out infinite;
}

/* Stagger animations slightly for a wavelike effect is hard in pure CSS without nth-child, 
   but we can just let them float together or add a delay inline if requested. 
   For now, a global float. */

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.cat-card:hover {
    transform: translateY(-12px) scale(1.05) rotateX(5deg);
    background-color: #fff;
    box-shadow: 0 15px 30px rgba(232, 93, 117, 0.2);
    border-bottom: 4px solid var(--accent-pink);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--accent-pink);
    transition: transform 0.3s;
    transform: translateZ(20px);
    /* Pop out */
}

.cat-card:hover .icon-box {
    transform: translateZ(30px) scale(1.1);
}

.cat-card h3 {
    font-size: 1rem;
    color: #555;
    font-weight: 700;
    transform: translateZ(10px);
}

/* Gallery / Carousel */
.gallery {
    padding: 20px 0;
    overflow: hidden;
    background-color: #F3EAF6;
    /* Light purple tint */
    position: relative;
    text-align: center;
}

.gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 30px;
    /* Slight increase */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: auto;
    /* Changed from smooth to auto for seamless jumps */

    /* New Background Styles - Removed as per request to color entire section */
    /* background-color: transparent; */
    border-radius: 30px;
    margin: 20px auto;
    /* Centered */
    max-width: 95%;
    /* Don't touch edges */
}

.gallery-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.gallery-card {
    background: white;
    width: 250px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--accent-pink);
    /* Default colorful border */
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(232, 93, 117, 0.15);
    flex-shrink: 0;
    overflow: hidden;
    scroll-snap-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Rotating colors for cards */
.gallery-track .gallery-card:nth-child(4n+1) {
    border-color: #E85D75;
    box-shadow: 0 8px 20px rgba(232, 93, 117, 0.2);
}

.gallery-track .gallery-card:nth-child(4n+2) {
    border-color: #FF7F50;
    box-shadow: 0 8px 20px rgba(255, 127, 80, 0.2);
}

.gallery-track .gallery-card:nth-child(4n+3) {
    border-color: #A855F7;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.2);
}

.gallery-track .gallery-card:nth-child(4n+4) {
    border-color: #10B981;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    margin-top: 20px;
}

.gallery-nav button {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin: 0 10px;
}

/* Benefits Section */
.benefits {
    padding: 50px 0;
    background-color: #fff;
}

.grid-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .grid-benefits {
        grid-template-columns: 1fr 1fr;
    }
}

.benefit-card {
    background-color: #FDF2F8;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    /* Row layout */
    gap: 20px;
    text-align: left;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: white;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
}

.benefit-icon.red {
    background-color: #EF4444;
}

.benefit-icon.pink {
    background-color: #EC4899;
}

.benefit-icon.orange {
    background-color: #F97316;
}

.benefit-icon.red-light {
    background-color: #F43F5E;
}

.benefit-text h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 800;
}

.benefit-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Pricing Section */
.pricing {
    padding: 50px 0 80px;
    background-color: #fff;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .pricing-grid {
        flex-direction: row;
        align-items: stretch;
        /* Equal height */
        justify-content: center;
    }
}

.plan-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    position: relative;
    text-align: left;
}

.plan-card.basic {
    border: 2px solid #FF6B8B;
}

.plan-card.premium {
    border: 2px solid #FF7F50;
    transform: scale(1.02);
    /* Slightly larger */
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF7F50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 127, 80, 0.3);
    white-space: nowrap;
}

.plan-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.price-box {
    display: flex;
    align-items: flex-start;
    color: #333;
    margin: 5px 0;
}

.currency {
    font-size: 1.2rem;
    margin-top: 5px;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.payment-type {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.savings {
    color: #10B981;
    /* Green */
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-proof-text {
    font-size: 0.85rem;
    color: #444;
    margin: 5px 0 20px;
    background: #FFF4F0;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

@keyframes pulse-text {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        color: #FF7F50;
    }

    100% {
        transform: scale(1);
    }
}

.pulse-text {
    animation: pulse-text 0.5s ease-in-out;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.feature-icon {
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.features li i {
    color: #10B981;
    /* Green check */
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 220px;
    margin: 0 auto;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: white;
    background: linear-gradient(90deg, #F472B6, #EC4899);
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.5);
    animation: buttonPulse 2s infinite;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(244, 114, 182, 0.7);
    filter: brightness(1.1);
}

.btn-basic {
    /* Inherits from .btn */
    /* Pinkish gradient */

}

.btn-premium {
    /* Inherits from .btn */
    /* Orange gradient */

}

/* Detailed List Section */
.detailed-list {
    padding: 40px 0 60px;
    background-color: #fff;
}

.list-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    /* Reduced from 40px for mobile */
    margin-top: 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .list-card {
        padding: 50px;
    }
}

.detailed-items {
    list-style: none;
}

.detailed-items li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detailed-items li i {
    color: #10B981;
    /* Green icon */
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Warranty Section */
.warranty {
    padding: 60px 0 80px;
    background-color: #fff;
    text-align: center;
}

.warranty-icon {
    width: 90px;
    height: 90px;
    background-color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.warranty-icon svg {
    color: white;
}

.warranty-text {
    max-width: 600px;
    margin: 20px auto;
    color: #555;
    font-size: 1.05rem;
}

.risk-free-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 700px;
    margin: 30px auto 0;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    line-height: 1.6;
}




/* Live Viewers Section */
.live-section {
    text-align: center;
    margin-top: 0px;
    animation: fadeIn 1s ease-out;
}

.live-section .section-title {
    margin-top: 0px;
    margin-bottom: 5px;
}

.live-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #EF4444;
    /* Red/Pink dot */
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.live-text strong {
    color: #333;
    font-weight: 800;
}

.pill-container {
    margin-top: 15px;
}

.pink-pill {
    background: linear-gradient(90deg, #F472B6, #EC4899);
    /* Strong pink */
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 220px;
    margin: 0 auto;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.5);
    text-transform: uppercase;
    transition: all 0.3s ease;
    animation: buttonPulse 2s infinite;
    border: none;
    text-decoration: none;
}

.pink-pill:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 8px 25px rgba(244, 114, 182, 0.7);
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 114, 182, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(244, 114, 182, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 114, 182, 0);
    }
}

/* Notification Toast */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.notification {
    background: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    /* Center vertically */
    gap: 10px;
    width: 260px;
    animation: slideIn 0.5s ease-out forwards;
    border-left: 4px solid #10B981;
    /* Green accent */
    pointer-events: auto;
}

.notification.hide {
    animation: slideOut 0.5s ease-in forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.notif-icon {
    color: #10B981;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notif-content {
    font-size: 0.75rem;
    color: #333;
    text-align: left;
    /* Ensure left alignment */
}

.notif-title {
    font-weight: 700;
    color: #10B981;
    margin-bottom: 2px;
}

.notif-text {
    line-height: 1.3;
    margin-bottom: 2px;
}

.highlight-plan {
    color: var(--accent-pink);
    font-weight: 700;
}



/* Numbers Section (Gallery Container) */
.numbers-preview {
    margin-top: 60px;
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
    border: none;
}

.number-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.num-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    line-height: 1;
}

.num-row span {
    font-family: 'Fredoka', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    color: white;
    -webkit-text-stroke: 1px #333;
    text-shadow: none;
}

.num-divider {
    width: 100%;
    height: 4px;
    background-color: #333;
    margin: 10px 0;
    border-radius: 2px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.green-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 40px 0;
    background-color: var(--bg-pink);
    text-align: center;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 30px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    border-radius: 30px;
    margin: 20px auto;
    max-width: 95%;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 30px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    border-radius: 30px;
    margin: 20px auto;
    max-width: 95%;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.testim-card {
    width: 250px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    background: #fff;
    flex-shrink: 0;
    scroll-snap-align: center;
}

.testim-card:hover {
    transform: translateY(-5px);
}

.testim-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Novos Estilos para Organização --- */

/* Bônus no Plano Premium */
.bonus-header {
    background: #FFF4F0;
    color: #FF7F50;
    font-weight: 800;
    padding: 10px 15px;
    border-radius: 12px;
    margin: 20px 0 10px !important;
    font-size: 1rem !important;
    display: block !important;
    text-align: center;
    border: 2px dashed #FF7F50;
}

.bonus-item {
    font-weight: 600;
    color: #555;
    margin-bottom: 10px !important;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    padding-left: 5px;
    text-align: left;
}

/* Lista Detalhada "O Que Vem no Kit" */
.detailed-items-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0;
}

@media (min-width: 600px) {
    .detailed-items-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.detailed-items-grid li {
    background: #fdfdfd;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #444;
    transition: transform 0.2s, box-shadow 0.2s;
}

.detailed-items-grid li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-pink);
}

.kit-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Hero Specific Kit List */
.hero-kit-list {
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.8s ease-out both;
}

.hero-kit-list .detailed-items-grid {
    gap: 10px;
}

.hero-kit-list .detailed-items-grid li {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Upsell Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.upsell-content {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    animation: modalSlide 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.upsell-header {
    background: #E63946;
    /* Vibrant Red */
    color: white;
    padding: 30px 20px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.upsell-star-icon {
    background: rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.upsell-header h2 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 800;
    line-height: 1.3;
}

.upsell-header p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 700;
    margin-top: 10px;
    color: #333;
    /* Darker text for readability against the red/white transition or below it */
}

/* Adjusting the header text to match image better */
.upsell-header p {
    color: #444;
    background: white;
    padding: 10px;
    width: calc(100% + 40px);
    margin-bottom: -25px;
}

.upsell-body {
    padding: 40px 25px 20px;
    text-align: center;
}

.upsell-price-box {
    border: 1px solid #FFC2D1;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.upsell-price-box h3 {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 10px;
    margin-top: 0;
}

.upsell-old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.upsell-new-price {
    color: #D63384;
    /* Pinkish-magenta price */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 15px;
}

.upsell-currency {
    font-size: 1.2rem;
    font-weight: 700;
}

.upsell-amount {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.9;
}

.upsell-bonus-text {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.upsell-urgency {
    color: #444;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.upsell-footer {
    padding: 0 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.upsell-footer .btn-premium {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    padding: 16px 20px;
    font-size: 1rem;
    background: linear-gradient(90deg, #FF6B8B, #FF8E72);
    box-shadow: 0 4px 15px rgba(255, 107, 139, 0.4);
    line-height: 1.2;
}

.upsell-decline {
    background: none;
    border: none;
    color: #777;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.upsell-decline:hover {
    color: #333;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
    z-index: 10001;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.close-lightbox:hover {
    color: var(--accent-pink);
    transform: scale(1.1);
}

/* Responsive Refinements */
@media (max-width: 480px) {
    .upsell-amount {
        font-size: 3.5rem;
    }

    .upsell-header h2 {
        font-size: 1.2rem;
    }

    .close-lightbox {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }

    .modal-overlay {
        padding: 10px;
    }

    .upsell-content {
        max-width: 100%;
    }
}

@media (max-width: 360px) {
    h1.main-headline {
        font-size: 1.5rem;
    }

    .upsell-amount {
        font-size: 3rem;
    }

    .btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* WhatsApp Recovery Content (Inside Modal) */
.wa-recovery-content {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.5s ease-out;
}

.wa-icon-svg {
    width: 60px;
    height: 60px;
    fill: #25D366;
    margin-bottom: 15px;
}

.wa-headline-recovery {
    font-family: 'Fredoka', sans-serif;
    color: #333;
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
}

.wa-headline-recovery span {
    color: var(--highlight-pink);
}

.wa-text-recovery {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.wa-benefit-list {
    text-align: left;
    width: 100%;
    background: #fdf2f4;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.wa-benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #444;
    font-size: 0.95rem;
}

.wa-benefit-item span {
    margin-right: 10px;
    font-size: 1.1rem;
}

.wa-btn-link {
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    width: 100%;
    display: block;
    text-align: center;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite ease-in-out;
}

@keyframes pulse-wa {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInRecovery {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}