﻿/* --- VARIABLES & SETUP --- */
:root {
    /* Palette - Lovable / Soft Premium (High Contrast Update) */
    --primary: #E07A84;
    /* Punchier, more vivid Pink */
    --primary-dark: #C05D66;
    --secondary: #F2E3DC;
    /* Soft Peach */
    --accent: #8DA5B8;
    /* Slightly darker Blue for better visibility */

    --text-dark: #1A1A1A;
    /* Near Black for sharp contrast */
    --text-light: #554D4D;
    /* Darker Grey */
    --white: #FFFFFF;
    --bg-page: #FFFCF8;
    /* Warm White */

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #E07A84 0%, #F0A5AB 100%);
    --grad-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    --grad-blob: linear-gradient(135deg, #FFD1D5 0%, #D4E4EF 100%);

    /* Shadows & Effects (More Defined) */
    --shadow-soft: 0 10px 40px -10px rgba(224, 122, 132, 0.25);
    --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.08);
    /* Deeper shadow */
    --glass-border: 1px solid rgba(255, 255, 255, 0.7);
    /* Stronger border */
    --backdrop: blur(16px);
    /* More blur */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-page);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 800;
    /* Bolder headings */
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- UTILITIES --- */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.text-highlight {
    color: var(--primary);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary);
    z-index: -1;
    opacity: 0.6;
    border-radius: 4px;
}

.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    /* Standard property for compatibility */
    -webkit-text-fill-color: transparent;
}

/* --- BACKGROUND BLOBS --- */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: floatBlob 10s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #FAE3E3;
}

.blob-2 {
    top: 30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: #E3F2FA;
    animation-delay: 2s;
}

.blob-3 {
    bottom: 10%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: #FBE8D5;
    animation-delay: 4s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

@keyframes floatBlobMobile {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(18px, 28px) scale(1.06);
    }
}

/* --- COMPONENTS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    gap: 8px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(224, 122, 132, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 122, 132, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-text {
    color: var(--text-light);
    font-weight: 500;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-150%) rotate(45deg);
    }

    100% {
        transform: translateX(150%) rotate(45deg);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: var(--backdrop);
    border: var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
}

/* --- HEADER / HERO (Redesigned - Dark Premium) --- */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2E1A16 0%, #4A2C2A 100%);
    /* Dark Chocolate/Rose Gradient */
    color: #FFFFFF;
}

.hero-container {
    display: flex;
    /* Changed from grid to flex column */
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    /* Larger title */
    line-height: 1.1;
    margin-bottom: 25px;
    color: #F9F3F0;
    /* Off-white */
}

.text-highlight {
    background: linear-gradient(90deg, #D4AF37, #F2C94C);
    /* Gold Gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Product Name in Hero */
.hero-product-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #F2C94C;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.3rem;
    color: #E0CECA;
    /* Soft Pinkish Grey */
    margin: 0 auto 40px;
    max-width: 600px;
    font-weight: 300;
}

/* Hero specific overrides for contrast */
.hero .btn-text {
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* White outline */
    background: rgba(255, 255, 255, 0.05);
    /* Subtle glass bg */
    backdrop-filter: blur(5px);
    border-radius: 50px;
    /* Pill shape matches primary button */
    padding: 16px 36px;
    /* Match size of primary button */
    text-decoration: none;
    /* Remove underline if any */
}

.hero .btn-text:hover {
    background: #FFFFFF;
    color: #2E1A16;
    /* Dark text on white hover */
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero .trust-badge {
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    /* Make text brighter */
}

.hero .trust-badge p {
    color: #F2C94C;
    /* Gold text for social proof */
    font-weight: 500;
}

/* Hide blobs in hero or make them very subtle */
.hero .bg-blob {
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.badge-pill {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.avatars img {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
    background: #EEE;
    position: relative;
    z-index: 1;
}

.avatars img:first-child {
    margin-left: 0;
    z-index: 5;
}

.avatars img:nth-child(2) {
    z-index: 4;
}

.avatars img:nth-child(3) {
    z-index: 3;
}

.avatars img:nth-child(4) {
    z-index: 2;
}

.avatars img:nth-child(5) {
    z-index: 1;
}

/* Redefine images for this new layout */
.image-stack {
    position: relative;
    width: 100%;
    min-height: 500px;
    /* Ensure space for the tall image */
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-stack img.main-hero-img {
    display: block;
    /* Show the mother image again */
    position: relative;
    right: auto;
    transform: none;
    bottom: auto;
    max-width: 100%;
    max-height: 500px;
    z-index: 1;
    opacity: 1;
    /* Fully visible */
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    /* Nice shadow */
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    /* Soft fade at bottom */
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.floating-book {
    display: none;
    /* Hide the ebook mockup to focus on the mother image as requested */
}

/* Floating Bonuses (Cards) */
.floating-bonus-card {
    position: absolute;
    z-index: 5;
    background: #FFFFFF;
    padding: 12px;
    border-radius: 20px;
    /* Rounded container */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    /* Deep shadow */
    width: 150px;
    /* Fixed width for consistency */
    aspect-ratio: 1 / 1;
    /* Prevent tall images from stretching the card */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.floating-bonus-card:hover {
    transform: scale(1.05) rotate(0deg) !important;
    /* Interactive hover */
    z-index: 15;
}

.floating-bonus-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    /* Inner radius */
    display: block;
}

/* 5-Point Surround Layout */
.pos-top-left {
    top: 5%;
    left: -20%;
    /* Pushed out from -5% */
    transform: rotate(-8deg);
}

.pos-mid-left {
    top: 40%;
    left: -25%;
    /* Pushed out from -12% */
    transform: rotate(5deg);
}

.pos-bottom-left {
    bottom: 5%;
    left: -20%;
    /* Pushed out from -5% */
    transform: rotate(-5deg);
}

.pos-top-right {
    top: 8%;
    right: -20%;
    /* Balanced right side too */
    transform: rotate(10deg);
}

.pos-bottom-right {
    bottom: 15%;
    right: -15%;
    /* Balanced right side */
    transform: rotate(-8deg);
}

/* Emotional Badge (Heart) */
.info-card {
    display: flex;
    position: absolute;
    bottom: 20px;
    /* Position at bottom */
    left: 50%;
    transform: translateX(-50%);
    /* Center horizontally */
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 20;
    /* On top of everything */
    align-items: center;
    gap: 10px;
    width: auto;
    white-space: nowrap;
    border: 1px solid rgba(227, 242, 250, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.info-card i {
    color: #FF7E8B;
    font-size: 1.2rem;
}

.info-card span {
    font-family: 'Playfair Display', serif;
    /* Emotional typography */
    font-weight: 600;
    /* Bold but elegant */
    font-size: 1.05rem;
    /* Slightly larger */
    color: #2E1A16 !important;
    /* Force Dark Chocolate */
    font-style: italic;
    /* More emotive */
    letter-spacing: 0.5px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* --- PAIN SECTION --- */
.pain-section {
    padding: 100px 0;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pain-card {
    padding: 40px 30px;
    text-align: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.reassurance-banner {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 40px;
}

/* --- SOLUTION --- */
.solution-section {
    padding: 80px 0;
}

.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-visual {
    position: relative;
}

.rounded-visual {
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    width: 100%;
}

.decorative-float {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    z-index: -1;
    animation: floatBlob 8s infinite;
}

.solution-content .overline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.benefit-list {
    list-style: none;
    margin: 30px 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
}

.benefit-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* --- MODULES --- */
.modules-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.5);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.module-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #F0F0F0;
    transition: 0.3s;
}

.module-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    /* High contrast background */
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px -5px rgba(224, 122, 132, 0.5);
    /* Glowing shadow */
    transition: transform 0.3s ease;
}

.module-item:hover .module-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* --- BONUS --- */
.bonus-section {
    padding: 100px 0;
}

.bonus-wrapper-vertical {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.bonus-item-card {
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 40px;
    background: white;
    /* Clean white background */
    border: 1px solid #EEE;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s;
}

.bonus-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.bonus-item-card.reverse {
    flex-direction: row-reverse;
}

.bonus-info {
    flex: 1;
}

.bonus-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-visual img {
    max-height: 250px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s;
}

.bonus-item-card:hover .bonus-visual img {
    transform: scale(1.05) rotate(2deg);
}

.bonus-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #FFF0F1;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 6px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.bonus-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.bonus-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.bonus-value {
    font-size: 0.9rem;
    color: #999;
}

.bonus-value .strike {
    text-decoration: line-through;
}

.bonus-value .free {
    color: #4CAF50;
    font-weight: 800;
    font-size: 1.1rem;
    margin-left: 5px;
}

@media (max-width: 768px) {

    .bonus-item-card,
    .bonus-item-card.reverse {
        flex-direction: column-reverse;
        padding: 30px 20px;
        text-align: center;
    }

    .bonus-visual img {
        max-height: 200px;
    }
}

/* --- REVIEWS CAROUSEL --- */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    background-color: #FFFFFF;
    /* Clean White Section */
}

.reviews-carousel-wrapper {
    position: relative;
    max-width: 1140px;
    /* Exact fit: (270px card + 20px gap) * 4 cards - 20px last gap = 1140px */
    margin: 50px auto 0;
    padding: 0;
    /* Remove padding to ensure exact fit */
}

.reviews-track {
    display: flex;
    overflow-x: auto;
    /* scroll-snap-type removed */
    gap: 20px;
    padding-bottom: 30px;
    scrollbar-width: none;
    /* scroll-behavior managed by JS for infinite loop */
    padding: 10px;
    /* Buffer for shadow */
}

@media (max-width: 768px) {
    .reviews-track {
        gap: 0;
        /* Let card margin handle spacing for calculation */
    }
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 270px;
    flex: 0 0 270px;
    scroll-snap-align: start;
    background: #EEEEEE;
    /* Light Gray */
    padding: 30px 25px;
    border-radius: 20px;
    border: 1px solid #BBBBBB;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Subtler shadow */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(224, 122, 132, 0.15);
}

.stars {
    color: #E07A84;
    /* Pink Stars */
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-light);
    /* Dark text for readability */
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: normal;
    /* Cleaner look */
    flex: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    width: 100%;
    border-top: 1px solid #F5F5F5;
    padding-top: 15px;
}

/* Initials Avatar Style */
.avatar-initials {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.reviewer-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.reviewer-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.reviewer-info span {
    font-size: 0.75rem;
    color: #888;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #EEE;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 1200px) {
    .reviews-carousel-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .reviews-carousel-wrapper {
        padding: 0 20px;
    }

    .carousel-btn {
        display: none;
        /* Swipe on mobile */
    }

    .review-card {
        min-width: 280px;
        /* Bigger on mobile for readability */
        flex: 0 0 280px;
    }
}

/* --- OFFER --- */
.offer-section {
    padding: 100px 0;
}

.offer-card-main {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    background: var(--white);
    border: 2px solid var(--secondary);
}

.offer-label {
    background: var(--text-dark);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.pricing-display {
    margin: 40px 0;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
}

.price-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.price-current .value {
    font-size: 4rem;
    font-family: var(--font-heading);
    line-height: 1;
    color: var(--primary-dark);
}

.payment-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.guarantee-badge {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
    background: #EEE;
    padding: 8px 16px;
    border-radius: 8px;
}

.secure-icons {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #999;
}

/* --- FAQ REVAMP --- */
.faq-section {
    background-color: #FAF7F5;
    padding: 80px 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
    transition: box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 6px 24px rgba(224, 122, 132, 0.12);
}

.faq-btn {
    width: 100%;
    background: #FFFFFF;
    border: none;
    padding: 22px 30px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    transition: color 0.2s ease;
}

.faq-btn:hover {
    color: var(--primary);
}

.faq-btn i {
    font-size: 1.2rem;
    color: #bbb;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        color 0.4s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-btn i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.33, 1, 0.68, 1),
        opacity 0.4s ease;
    opacity: 0;
}

.faq-content>p {
    overflow: hidden;
    min-height: 0;
    padding: 0 28px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    transition: padding 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.faq-item.active .faq-content {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-item.active .faq-content>p {
    padding: 4px 28px 24px;
}

/* --- FOOTER --- */
.main-footer {
    background: white;
    padding: 40px 0;
    border-top: 1px solid #F5F5F5;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #999;
}

.footer-meta .links a {
    margin-left: 20px;
    color: #999;
}

/* --- ANIMATIONS (Fade In) --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Float animation for mockups: animate inner image only so card rotation/position stays stable */
.float-anim img {
    animation: float 6s ease-in-out infinite;
}

.float-anim.delay-1 img {
    animation-delay: 0.2s;
}

.float-anim.delay-2 img {
    animation-delay: 0.4s;
}

.float-anim.delay-3 img {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wobble {
    animation: none;
}

.wobble:hover {
    animation: wobble 1s;
}

/* --- RESPONSIVE --- */
/* Global Overflow Fix */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

@media (max-width: 968px) {
    /* ... existing styles ... */

    h1 {
        font-size: 2.2rem;
        /* Reduced from 2.5rem */
        line-height: 1.2;
    }

    .badge-pill {
        font-size: 0.8rem;
        white-space: normal;
        /* Allow wrap if needed */
        text-align: center;
        max-width: 90%;
        margin: 0 auto 15px;
    }

    /* Ensure container doesn't overflow - BUT allow bubbles to bleed slightly */
    .container {
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: visible;
        /* Changed from hidden to allow bonus cards to float */
    }

    .hero-container,
    .grid-split,
    .bonus-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
        width: 100%;
        /* Force fit */
    }

    /* ... rest of existing mobile styles ... */

    .hero {
        padding-top: 72px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Mobile hero rules live in the dedicated @media (max-width: 768px) block below.
       Keeping a single source of truth avoids conflicts and "off-center" bugs. */

    /* Adjust Emotional Badge on Mobile */
    .info-card {
        bottom: 0px;
        /* Slight lift */
        padding: 8px 15px;
        min-width: 85%;
        /* Ensure fits text */
        justify-content: center;
    }

    .info-card span {
        font-size: 0.8rem;
        /* Smaller text */
    }

    .pain-grid,
    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .bonus-image {
        height: 300px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .blob-1,
    .blob-2 {
        opacity: 0.4;
    }
}

/* --- NEW VISUAL LAYOUTS --- */
.modules-grid-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.vertical-visual {
    height: 100%;
    object-fit: cover;
    max-height: 600px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

.footer-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.small-visual {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-soft);
}

/* New Images Styles */
.pain-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.pain-img-wrapper {
    position: relative;
}

.pain-img-wrapper img {
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.offer-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.offer-img {
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    margin-top: -30px;
    z-index: -1;
}

@media (max-width: 968px) {
    .modules-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .vertical-visual {
        max-height: 300px;
        width: 100%;
        margin-bottom: 30px;
    }

    .pain-visual-grid {
        grid-template-columns: 1fr;
    }

    .pain-img-wrapper {
        order: -1;
    }
}

/* --- CONVERSION ELEMENTS (Popup & Toast) --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: 0.3s;
    border: 2px solid var(--primary);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.popup-offer {
    margin: 20px 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.popup-offer .old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    margin-right: 10px;
}

.popup-offer .new-price {
    color: var(--primary);
    font-weight: 700;
}

.full-width {
    width: 100%;
}



/* --- PREMIUM OFFER CARD REVAMP --- */

/* Section Heading */
.offer-section h2 {
    font-family: 'Playfair Display', serif;
    color: #4A3B32;
    font-size: 2.5rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

/* Main Card Container */
.premium-offer-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FFF9FA 100%);
    border: 1px solid #F8E6E9;
    /* Very subtle pink border */
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(188, 108, 116, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.02);
    /* Multi-layered shadow for depth */
    padding: 60px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Left Column - Image */
.offer-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Add a glowing backdrop behind the book */
.offer-visual-wrapper::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #FAD0C4 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.6;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
}

.offer-visual-wrapper img {
    max-width: 100%;
    width: 380px;
    /* Bolder size as requested */
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.15));
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.offer-visual-wrapper img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.03);
}

/* Right Column - Content */
.offer-content-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.offer-list-label {
    font-size: 0.95rem;
    color: #8D7F7D;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.offer-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.offer-benefits-list li {
    font-size: 1.05rem;
    color: #4A3B32;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    color: #C07B83;
    /* Matching the button tone */
    font-size: 1.2rem;
}

/* Pricing Block */
.premium-price-block {
    margin-top: 15px;
}

.price-strike {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-bottom: 5px;
    display: block;
}

.price-final {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    /* Larger impact */
    color: #2D2D2D;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 5px;
}

.price-final .currency {
    font-size: 1.8rem;
    margin-top: 10px;
    font-weight: 600;
}

.price-final .cents {
    font-size: 1.8rem;
    margin-top: 10px;
    font-weight: 600;
    color: #999;
}

.limited-offer-tag {
    font-size: 0.85rem;
    color: #B56C73;
    margin-top: 5px;
    font-weight: 600;
}

/* CTA Button */
.btn-premium-cta {
    background-color: #B56C73;
    /* Darker, richer Dusty Rose */
    color: white;
    padding: 22px 45px;
    /* Bigger button */
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(181, 108, 115, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    letter-spacing: 0.5px;
}

.btn-premium-cta:hover {
    background-color: #A35A60;
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(181, 108, 115, 0.5);
}

.section-checkout-cta {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.section-checkout-cta .btn-premium-cta {
    width: 100%;
    max-width: 520px;
}

.guarantee-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #888;
    justify-content: center;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 968px) {
    .premium-offer-card {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        gap: 40px;
        text-align: center;
    }

    .offer-content-col {
        align-items: center;
        text-align: center;
    }

    .offer-benefits-list {
        align-items: flex-start;
        /* Keep list left-aligned for readability even if container is centered */
        text-align: left;
        display: inline-flex;
        /* content width */
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .offer-visual-wrapper img {
        width: 280px;
        /* Smaller on mobile */
    }

    .price-final {
        justify-content: center;
        font-size: 3.5rem;
    }

    /* Pain Section Mobile */
    .pain-visual-grid {
        flex-direction: column;
        text-align: center;
    }

    .pain-card {
        margin-bottom: 0;
        /* Remove margin, let gap handle spacing */
        padding: 20px 15px;
        /* Aggressively reduce internal padding */
    }

    .section-header p {
        margin-bottom: 25px;
        /* Reduce space below header text */
    }

    .reassurance-banner {
        margin-top: 25px;
        /* Reduce space above reassurance text */
    }

    .pain-visual-grid {
        gap: 20px;
        /* Reduce visual grid gap */
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .pain-section,
    .solution-section,
    .modules-section,
    .bonus-section,
    .testimonials-section,
    .offer-section,
    .faq-section,
    .final-cta-section {
        padding: 44px 0;
    }

    /* Section has inline padding in HTML; override only on mobile */
    .kit-sos-highlight {
        padding: 44px 0 !important;
    }

    .section-header h2 {
        font-size: 1.9rem;
        line-height: 1.15;
    }

    .section-header p {
        font-size: 1rem;
        margin: 0 auto 18px;
    }

    .sos-hook-box {
        margin: 14px auto !important;
    }

    .module-item {
        padding: 22px;
    }

    .faq-wrapper {
        margin-top: 14px;
    }

    .faq-btn {
        padding: 18px 18px;
        font-size: 1rem;
    }

    .faq-content>p {
        padding: 0 18px 18px;
        font-size: 0.98rem;
    }

    .hero-buttons .btn {
        width: 100%;
        /* Full width buttons */
        justify-content: center;
    }

    .reviews-carousel-wrapper {
        padding: 0;
        margin-top: 32px;
    }

    .reviews-track {
        padding: 10px 20px 26px;
        gap: 20px;
        scroll-padding-left: 20px;
        scroll-padding-right: 20px;
        scroll-snap-type: x mandatory;
    }

    .review-card {
        flex: 0 0 82vw;
        min-width: 82vw;
        max-width: 380px;
        scroll-snap-align: start;
    }

    /* ... existing styles ... */

    .modules-grid {
        grid-template-columns: 1fr 1fr;
        /* Force 2 columns */
        gap: 15px;
        /* Smaller gap for mobile */
    }

    .module-item {
        padding: 20px 15px;
        /* Smaller padding */
        text-align: center;
    }

    .module-icon {
        margin: 0 auto 15px;
        /* Center icon */
    }

    .pain-visual-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* ... rest of the existing media query ... */

    .pain-img-wrapper img {
        max-width: 100%;
        border-radius: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
        /* Smaller headings */
    }

    .final-cta-section h3 {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .big-heart {
        font-size: 3.5rem;
        /* Scale down heart */
    }

    .btn-final-cta {
        width: 100% !important;
        padding: 20px;
        font-size: 1rem;
    }

    .footer-links-clean {
        flex-direction: column;
        gap: 15px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        /* Stack pain cards */
        gap: 15px;
        /* Reduce gap from 30px to 15px */
    }

    .premium-offer-card {
        padding: 30px 20px;
        border-radius: 30px;
    }

    .btn-premium-cta {
        width: 100%;
        font-size: 1rem;
        padding: 18px;
    }
}


/* --- FINAL EMOTIONAL CTA --- */
.final-cta-section {
    background-color: #FAF7F5;
    /* Matches FAQ bg */
    padding: 60px 0 100px;
    position: relative;
}

.heart-icon-wrapper {
    margin-bottom: 25px;
}

.big-heart {
    font-size: 3rem;
    color: #C07B83;
    /* Dusty Rose Outline */
    font-weight: normal;
    /* Make it outline if icon set supports it, usually ri-heart-line is thin */
}

.final-cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #3A2E2C;
    /* Dark Brown */
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Kit SOS Highlight Section */
.kit-sos-highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #ffebee 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #333;
}

.sos-badge {
    background: #ef5350;
    color: white;
    border-color: #ef5350;
}

.sos-content h2 {
    margin-top: 15px;
    color: #c62828;
}

.sos-quote {
    margin-top: 20px;
    font-style: italic;
}

.sos-hook-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* Stronger shadow */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-left: 4px solid #b71c1c;
    /* Darker Red */
}

.sos-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #b71c1c;
    /* High contrast dark red */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sos-content .lead {
    font-size: 1.15rem;
    color: #2c2c2c;
    /* Near black for readability */
    margin-bottom: 30px;
    font-weight: 500;
}

.benefit-list li strong {
    color: #b71c1c;
}

/* Bonus Card Contrast */
.bonus-info h3 {
    color: #1a1a1a;
    /* Pitch black */
    font-weight: 800;
}

.bonus-info p {
    color: #444;
    /* Darker grey */
}


.final-cta-text {
    font-size: 1.1rem;
    color: #7D706B;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.btn-final-cta {
    display: inline-flex;
    width: auto;
    min-width: 300px;
}

.guarantee-row-light {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #8D7F7D;
}

/* --- LIGHT FOOTER --- */
.main-footer-light {
    background-color: #FAF7F5;
    padding-bottom: 40px;
}

.footer-divider {
    height: 1px;
    background-color: #E5DCD6;
    /* Very light divider */
    width: 100%;
    margin-bottom: 30px;
}

.footer-bottom-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
}

.footer-links-clean {
    display: flex;
    gap: 25px;
}

.footer-links-clean a {
    text-decoration: none;
    color: #777;
    transition: color 0.2s;
}

.footer-links-clean a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .bg-blob {
        opacity: 0.45;
        filter: blur(70px);
        animation: floatBlobMobile 14s infinite alternate;
    }

    .blob-1 {
        width: 420px;
        height: 420px;
    }

    .blob-2 {
        width: 360px;
        height: 360px;
    }

    .blob-3 {
        width: 280px;
        height: 280px;
    }

    .hero {
        padding: 36px 0 40px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero-content .badge-pill {
        order: 1;
    }

    .hero-content .hero-product-name {
        order: 2;
    }

    .hero-content h1 {
        order: 3;
    }

    .hero-content .hero-visual {
        order: 4;
    }

    .hero-content .hero-buttons {
        order: 5;
    }

    .hero-content .trust-badge {
        order: 6;
    }

    .hero-content .hero-sub {
        order: 7;
    }

    .hero-content h1 {
        font-size: 1.35rem;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .hero-product-name {
        font-size: 0.85rem;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .hero-sub {
        font-size: 0.9rem;
        margin: 12px auto 0;
        line-height: 1.5;
    }

    .badge-pill {
        margin-bottom: 14px;
    }

    .final-cta-section h3 {
        font-size: 1.8rem;
    }

    .btn-final-cta {
        width: 100%;
    }

    .footer-links-clean {
        flex-direction: column;
        gap: 10px;
    }

    /* HERO (mobile) - versão própria e estável */
    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 24px;
    }

    .image-stack {
        position: relative;
        /* Compensa o padding lateral do .container para encostar mais na borda da tela */
        width: calc(100% + 40px);
        max-width: 520px;
        margin: 0 -20px;
        min-height: 0;
        padding: 0;
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Mostrar mockups flotantes en mobile (tamaño y posiciones adaptadas) */
    .floating-bonus-card {
        display: flex !important;
        width: clamp(74px, 18.5vw, 110px);
        padding: clamp(7px, 1.5vw, 10px);
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    }

    .floating-bonus-card img {
        border-radius: 12px;
    }

    /* Reposiciona para que queden alrededor y dentro del contenedor */
    .pos-top-left {
        top: 12%;
        left: clamp(4px, 1.2vw, 10px);
        transform: rotate(-8deg);
    }

    .pos-mid-left {
        top: 34%;
        left: clamp(4px, 1.2vw, 10px);
        transform: rotate(5deg);
    }

    .pos-bottom-left {
        top: 54%;
        left: clamp(4px, 1.2vw, 10px);
        transform: rotate(-5deg);
    }

    .pos-top-right {
        top: 10%;
        right: clamp(4px, 1.2vw, 10px);
        transform: rotate(10deg);
    }

    .pos-bottom-right {
        bottom: 20%;
        right: clamp(4px, 1.2vw, 10px);
        transform: rotate(-8deg);
    }

    /* No mobile, desliga o float para não parecer "aleatório" */
    .float-anim img {
        animation: none;
    }

    .image-stack img.main-hero-img {
        margin: 0 auto !important;
        width: clamp(300px, 92vw, 480px);
        max-height: clamp(420px, 110vw, 600px);
        display: block;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .info-card {
        display: flex !important;
        position: absolute;
        left: 50%;
        bottom: 14px;
        transform: translateX(-50%);
        margin: 0;
        max-width: 92%;
        white-space: normal;
        justify-content: center;
        text-align: center;
    }

    /* Trust badge mobile: stack vertically and center */
    .trust-badge {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .trust-badge p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .avatars {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Centralización Universal de Imágenes en Mobile */
    .pain-img-wrapper,
    .solution-visual,
    .sos-visual,
    .modules-visual,
    .offer-visual-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 18px;
    }

    .pain-img-wrapper img,
    .solution-visual img,
    .sos-visual img,
    .modules-visual img,
    .offer-visual-wrapper img {
        margin: 0 auto;
        display: block;
        max-width: 100%;
        height: auto;
    }

    /* Corregir Grid Split en Mobile */
    .grid-split {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .grid-split.reverse-mobile {
        flex-direction: column-reverse;
    }
}

/* Em telas bem pequenas, puxa pra dentro para não cortar */
@media (max-width: 380px) {
    .image-stack {
        max-width: 420px;
        min-height: 0;
    }

    .floating-bonus-card {
        width: clamp(68px, 23vw, 96px);
    }

    .image-stack img.main-hero-img {
        width: min(100%, 235px);
        max-height: 340px;
    }

    .pos-top-left {
        top: 12%;
        left: 6px;
        transform: rotate(-8deg);
    }

    .pos-mid-left {
        top: 25%;
        left: 6px;
        transform: rotate(5deg);
    }

    .pos-bottom-left {
        top: 36%;
        left: 6px;
        transform: rotate(-5deg);
    }

    .pos-top-left,
    .pos-mid-left,
    .pos-bottom-left {
        left: 6px;
    }

    .pos-top-right,
    .pos-bottom-right {
        right: 6px;
    }
}

/* Touch feedback (mobile) */
@media (hover: none) {

    .btn:active,
    .btn-premium-cta:active {
        transform: translateY(1px) scale(0.985);
        filter: brightness(0.98);
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 768px) {

    /* Reduz "vazios" entre blocos no mobile */
    .section-checkout-cta {
        margin-top: 14px;
    }

    .pain-grid {
        gap: 16px;
        margin-bottom: 20px;
    }

    .reassurance-banner {
        margin-top: 14px;
    }

    .benefit-list {
        margin: 16px 0;
    }

    .grid-split {
        gap: 22px;
    }

    .bonus-wrapper-vertical {
        gap: 22px;
    }
}