/* ============================================ */
/* DESIGN SYSTEM & VARIABLES                    */
/* ============================================ */
:root {
    /* Colors */
    --rose-50: #FFF1F2;
    --rose-100: #FFE4E6;
    --rose-200: #FECDD3;
    --rose-300: #FDA4AF;
    --rose-400: #FB7185;
    --rose-500: #F43F5E;
    --rose-600: #E11D48;
    --rose-700: #BE123C;

    --warm-50: #FFF9F5;
    --warm-100: #FFF3EB;
    --warm-200: #FFE8D6;
    --warm-300: #FFDCC0;

    --gold-400: #D4A05C;
    --gold-500: #C78D3F;
    --gold-600: #B07A2E;

    --sage-50: #F0FAF0;
    --sage-100: #DCEFDC;
    --sage-400: #66BB6A;
    --sage-500: #4CAF50;

    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #E5E5E5;
    --neutral-300: #D4D4D4;
    --neutral-400: #8A8A8A;
    --neutral-500: #636363;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;

    --white: #FFFFFF;
    --black: #0A0A0A;

    /* Gradients */
    --grad-hero: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 30%, #FFF3EB 70%, #FFF9F5 100%);
    --grad-rose: linear-gradient(135deg, #F43F5E 0%, #E11D48 100%);
    --grad-warm: linear-gradient(135deg, #D4A05C 0%, #E8C98A 100%);
    --grad-offer: linear-gradient(135deg, #1E1B2E 0%, #2D2640 40%, #3A1F3D 100%);
    --grad-cta: linear-gradient(135deg, #34D399 0%, #10B981 100%);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-py: clamp(4rem, 8vw, 7rem);
    --container-max: 1140px;
    --container-px: clamp(1.25rem, 4vw, 2.5rem);

    /* Borders & Shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.16);
    --shadow-glow-rose: 0 8px 30px rgba(244, 63, 94, 0.3);
    --shadow-glow-green: 0 8px 30px rgba(52, 211, 153, 0.35);
}

/* ============================================ */
/* RESET & BASE                                 */
/* ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background-color: var(--rose-50);
    padding-top: env(safe-area-inset-top, 0px);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-700);
    background-color: var(--rose-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--neutral-900);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section {
    padding: var(--section-py) 0;
}

/* ============================================ */
/* SHARED COMPONENTS                            */
/* ============================================ */

/* Section Labels */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose-500);
    background: var(--rose-50);
    padding: 0.4em 1.2em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-label.light {
    color: var(--rose-200);
    background: rgba(255, 255, 255, 0.1);
}

/* Section Titles */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--neutral-900);
    text-align: center;
    max-width: 750px;
    margin: 0 auto 1.25rem;
}

.section-desc {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: var(--neutral-500);
}

/* Highlight text */
.highlight {
    color: var(--rose-500);
    position: relative;
}

.highlight-light {
    color: var(--rose-300);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-full);
    padding: 1em 2em;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-rose);
    color: var(--white);
    box-shadow: var(--shadow-glow-rose);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(244, 63, 94, 0.45);
}

.btn-cta {
    background: var(--grad-cta);
    color: var(--white);
    box-shadow: var(--shadow-glow-green);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(52, 211, 153, 0.5);
}

.btn-lg {
    font-size: 1.05rem;
    padding: 1.15em 2.5em;
}

/* Pulse animation on CTA - GPU composited */
.pulse-btn {
    position: relative;
    z-index: 1;
}

.pulse-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    z-index: -1;
    opacity: 0;
    animation: pulse-glow 2.5s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }
}

/* ============================================ */
/* SECTION 1: HERO                              */
/* ============================================ */
.hero {
    position: relative;
    background: var(--grad-hero);
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(6rem, 12vw, 10rem);
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--rose-300);
    top: -100px;
    right: -80px;
    filter: blur(80px);
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--warm-300);
    bottom: -50px;
    left: -60px;
    filter: blur(70px);
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--rose-400);
    top: 40%;
    left: 50%;
    filter: blur(90px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--rose-600);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5em 1.3em;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 1.25rem;
    animation: fadeInDown 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--neutral-600);
    margin-bottom: 2rem;
    max-width: 520px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero-cta-wrap {
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

.hero-micro {
    margin-top: 0.85rem;
    font-size: 0.85rem;
    color: var(--neutral-600);
    font-weight: 500;
}

/* Hero Image */
.hero-image-wrap {
    position: relative;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
    will-change: transform;
    contain: layout style;
}

.hero-image-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* Floating cards */
.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 0.7em 1.1em;
    display: flex;
    align-items: center;
    gap: 0.5em;
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neutral-800);
    animation: float 3s ease-in-out infinite;
    will-change: transform;
}

.card-1 {
    top: 15%;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 1.5s;
}

.float-icon {
    font-size: 1.3rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================ */
/* SECTION 2: QUÉ VAS A RECIBIR                */
/* ============================================ */
.section-receive {
    background: var(--warm-50);
}

.receive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.receive-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.receive-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rose-200);
}

.receive-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--rose-50);
    color: var(--rose-500);
    margin-bottom: 1.25rem;
}

.receive-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--neutral-800);
}

.receive-card p {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

/* ============================================ */
/* SECTION 3: POR QUÉ ELEGIR                   */
/* ============================================ */
.section-why {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--neutral-50);
    border: 1px solid transparent;
    transition: all 0.35s ease;
}

.why-item:hover {
    background: var(--white);
    border-color: var(--rose-100);
    box-shadow: var(--shadow-md);
}

.why-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.why-emoji {
    font-size: 1.5rem;
}

.why-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 0.3rem;
}

.why-text p {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

/* ============================================ */
/* SECTION 4: BONOS                             */
/* ============================================ */
.section-bonuses {
    background: var(--warm-50);
}

/* ============================================ */
/* SECTION 5: APP MOCKUP                        */
/* ============================================ */
.section-app-mockup {
    background: var(--white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bonus-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.75rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-warm);
}

.bonus-card.featured {
    border-color: var(--rose-200);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
}

.bonus-card.featured::before {
    background: var(--grad-rose);
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.bonus-card.featured:hover {
    transform: translateY(-6px) scale(1.03);
}

.bonus-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--neutral-100);
    position: absolute;
    top: 12px;
    right: 16px;
    line-height: 1;
}

.bonus-badge {
    display: inline-block;
    background: var(--sage-50);
    color: var(--sage-500);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.35em 1em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.bonus-name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.bonus-desc {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.bonus-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--neutral-200);
}

.bonus-old {
    font-size: 0.85rem;
    color: var(--neutral-400);
    text-decoration: line-through;
}

.bonus-free {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--rose-500);
}

/* ============================================ */
/* SECTION 5: OFERTA                            */
/* ============================================ */
.section-offer {
    background: var(--grad-offer);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.section-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.offer-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.offer-title {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    color: var(--white);
    margin-bottom: 2rem;
}

.offer-summary {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.offer-item strong {
    color: var(--white);
}

.offer-price-box {
    margin-bottom: 2rem;
}

.offer-original {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.offer-original s {
    color: var(--rose-300);
}

.offer-promo-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.offer-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.15em;
    color: var(--white);
}

.offer-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5em;
}

.offer-price .amount {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.offer-price .cents {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0.4em;
}

/* Timer */
.offer-timer {
    margin-bottom: 2rem;
}

.timer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 0.6em 1em;
    min-width: 70px;
    text-align: center;
}

.timer-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    font-family: var(--font-body);
    font-variant-numeric: tabular-nums;
}

.timer-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.timer-sep {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
}

.offer-secure {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================ */
/* SECTION 6: EJEMPLOS (CARRUSEL)               */
/* ============================================ */
.section-examples {
    background: var(--white);
}

.carousel-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.carousel {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--neutral-100);
}

.carousel-track {
    position: relative;
}

.carousel-slide {
    display: none;
    position: relative;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.carousel-slide picture {
    display: block;
    line-height: 0;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    padding: 3rem 1.75rem 1.5rem;
    color: var(--white);
}

.slide-number {
    display: inline-block;
    background: var(--rose-500);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25em 0.7em;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}

.slide-caption h4 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.slide-caption p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--neutral-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-600);
    transition: all 0.3s ease;
    background: var(--white);
}

.carousel-btn:hover {
    border-color: var(--rose-400);
    color: var(--rose-500);
    background: var(--rose-50);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neutral-200);
    transition: all 0.3s ease;
}

.dot.active::after {
    background: var(--rose-500);
    transform: translate(-50%, -50%) scale(1.3);
}

/* ============================================ */
/* SECTION 7: TESTIMONIOS                       */
/* ============================================ */
.section-testimonials {
    background: var(--warm-50);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-rose);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--neutral-800);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--neutral-400);
}

/* ============================================ */
/* SECTION 8: GARANTÍA                          */
/* ============================================ */
.section-guarantee {
    background: var(--white);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 850px;
    margin: 0 auto;
    background: var(--neutral-50);
    border: 2px solid var(--neutral-100);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-title {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
    color: var(--neutral-900);
}

.guarantee-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--rose-500);
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 0.95rem;
    color: var(--neutral-600);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.guarantee-bold {
    font-weight: 600;
    color: var(--neutral-800) !important;
}

/* ============================================ */
/* SECTION 9: FAQ                               */
/* ============================================ */
.section-faq {
    background: var(--warm-50);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neutral-800);
    text-align: left;
    background: transparent;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--rose-500);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--neutral-400);
    transition: transform 0.35s ease, color 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--rose-500);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.7;
}

.faq-cta-wrap {
    text-align: center;
}

/* ============================================ */
/* SOCIAL PROOF CAROUSEL (Sección 2B)           */
/* ============================================ */
#spTrack::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .sp-section-container {
        padding: 0 0.5rem !important;
    }

    /* Wrapper: deixa espaço suficiente só para os botões de seta */
    .sp-wrapper {
        padding: 0 44px !important;
    }

    /* Cada card ocupa 100% da área visível entre as setas */
    #spTrack > div {
        min-width: 100% !important;
        max-width: 100% !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
    }

    /* Imagem dentro do card: não corta, mostra completa */
    #spTrack > div img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        display: block !important;
    }

    /* Track: sem gap no mobile para o card ficar exato */
    #spTrack {
        gap: 0 !important;
    }
}

/* ============================================ */
/* SECTION 10: FOOTER                           */
/* ============================================ */
.footer {
    background: var(--neutral-900);
    padding: 2rem 0;
    text-align: center;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--neutral-500);
}

/* ============================================ */
/* SOCIAL PROOF NOTIFICATIONS                   */
/* ============================================ */
.social-proof {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 9999;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    max-width: 320px;
    pointer-events: none;
}

.social-proof.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.sp-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--sage-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.sp-content {
    flex: 1;
    min-width: 0;
}

.sp-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neutral-800);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-action {
    font-size: 0.75rem;
    color: var(--neutral-500);
    line-height: 1.3;
}

.sp-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--neutral-400);
    transition: all 0.2s ease;
    cursor: pointer;
    background: transparent;
    border: none;
}

.sp-close:hover {
    background: var(--neutral-100);
    color: var(--neutral-700);
}

@media (max-width: 640px) {
    .social-proof {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}

/* ============================================ */
/* ANIMATIONS                                   */
/* ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================ */
/* SCROLL REVEAL ANIMATIONS                     */
/* ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image-frame {
        max-width: 500px;
        margin: 0 auto;
    }

    .card-1 {
        left: 10px;
        top: 10%;
    }

    .card-2 {
        right: 10px;
        bottom: 10%;
    }

    .receive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .bonus-card.featured {
        transform: none;
    }

    .bonus-card.featured:hover {
        transform: translateY(-6px);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
        gap: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(5rem, 10vw, 7rem);
    }

    .hero-title {
        font-size: clamp(1.7rem, 6vw, 2.4rem);
    }

    .receive-grid {
        grid-template-columns: 1fr;
    }

    .btn-lg {
        font-size: 0.95rem;
        padding: 1em 1.75em;
        white-space: normal;
    }

    .carousel-slide img {
        height: 300px;
        aspect-ratio: 3 / 2;
    }

    .offer-price .amount {
        font-size: 4rem;
    }

    .guarantee-box {
        padding: 2rem 1.5rem;
    }

    .hero-float-card {
        display: none;
    }
}