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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #3E2723;
    background: #FDFBF7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 44px;
    /* Space for the sticky urgency banner */
}

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

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

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

/* ===== URGENCY BANNER ===== */
.urgency-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #a85f68;
    color: #ffffff;
    text-align: center;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
}

@media (max-width: 450px) {
    .urgency-banner {
        justify-content: space-between;
        padding: 6px 15px;
        font-size: 0.75rem;
    }
}

.banner-text {
    flex: 1;
    text-align: right;
    line-height: 1.2;
}

@media (max-width: 450px) {
    .banner-text {
        text-align: left;
    }
}

.timer-container {
    display: flex;
    align-items: center;
    gap: 4px;
}

.timer-box {
    background-color: #fff;
    color: #3E2723;
    border-radius: 4px;
    padding: 2px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.timer-num {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    font-family: monospace;
}

.timer-label {
    font-size: 0.65rem;
    font-weight: 600;
    opacity: 0.7;
    margin-top: 2px;
}

.timer-separator {
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    padding-bottom: 4px;
}

.flashing-red .timer-num,
.flashing-red .timer-label {
    animation: text-flash 1s infinite;
}

@keyframes text-flash {

    0%,
    100% {
        color: #3E2723;
    }

    50% {
        color: #d32f2f;
    }
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SECTION 1: HERO ===== */
.section-hero {
    background: linear-gradient(180deg, #fff9f7 0%, #ffffff 100%);
    padding: 40px 0 30px;
    text-align: center;
}

.pre-headline {
    font-size: 0.85rem;
    font-weight: 500;
    color: #b8627d;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.25;
    background: linear-gradient(135deg, #D4AF37 0%, #AA7700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.headline .highlight {
    background: linear-gradient(135deg, #b8627d 0%, #8b3a54 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
}

.sub-headline {
    font-size: 0.9rem;
    color: #3E2723;
    margin-bottom: 50px;
    line-height: 1.4;
}

.banner-text {
    text-align: center;
    /* Centraliza o texto dentro da div */
    line-height: 1.2;
    /* Opcional: ajusta o espaçamento entre as duas linhas */
}

/* ===== HERO BUNDLE IMAGE ===== */
.hero-bundle-wrapper {
    margin: 20px auto 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-bundle-img {
    max-height: 450px;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotateX(0deg);
    }

    50% {
        transform: translateY(-8px) rotateX(2deg);
    }

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

/* ===== CTA BUTTONS ===== */
.btn-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 800;
    text-align: center;
    transition: all 0.3s ease;
    line-height: 1.2;
    border: none;
    cursor: pointer;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #AA7700 100%);
    color: #4A2B32;
    /* Deep dusty pink/brown for text */
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(212, 175, 55, 0.45);
}

.btn-cta-primary:active {
    transform: translateY(0);
}

.btn-emoji {
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.btn-price {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 2px;
}

/* Trust Badge */
.trust-badge {
    margin-top: 16px;
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ===== SECTION 2: PROBLEM ===== */
.section-problem {
    background: linear-gradient(180deg, #FDFBF7 0%, #E2C2C6 100%);
    padding: 48px 0;
    color: #3E2723;
    overflow-x: hidden;
}

.section-title-problem {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #AA7700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.3;
}

.problem-blocks p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 520px;
    background: #FFFFFF;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #D4A5A5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.problem-blocks strong {
    color: #AA7700;
}

.problem-emphasis {
    margin-top: 40px;
    padding: 18px;
    background: #FFFFFF;
    border-left: 4px solid #D4AF37;
    border-radius: 0 10px 10px 0;
    font-weight: 500;
}

/* ===== SECTION 3: SOLUTION ===== */
.section-solution {
    background: linear-gradient(180deg, #ebd6d9 0%, #FDFBF7 100%);
    padding: 48px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #AA7700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.subtitle-accent {
    color: #b8627d;
    display: block;
    font-size: 0.95em;
}

.solution-intro,
.solution-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.65;
}

/* Bible Verse */
.bible-verse {
    background: #FFFFFF;
    border-left: 4px solid #D4AF37;
    padding: 20px 24px;
    margin: 28px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.bible-verse p {
    font-size: 1.05rem;
    font-style: italic;
    color: #3E2723;
    line-height: 1.6;
    margin-bottom: 8px;
}

.bible-verse cite {
    font-size: 0.85rem;
    font-weight: 700;
    color: #AA7700;
    font-style: normal;
}

/* Slogan Image */
.method-slogan-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 35px auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

/* Checkmarks */
.checkmarks {
    margin-top: 24px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    font-size: 1rem;
    line-height: 1.5;
}

.check-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== SECTION 4: OFFER ===== */
.section-offer {
    background: #fff;
    padding: 48px 0;
}

.offer-intro {
    font-size: 1rem;
    color: #444;
    margin-bottom: 28px;
    text-align: center;
    line-height: 1.6;
}

.product-mockups {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.mockup-img {
    width: 48%;
    max-width: 260px;
    border-radius: 12px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}

/* Bonus Cards */
.bonus-list {
    margin-bottom: 32px;
}

.bonus-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fffaf8, #fef7f4);
    border: 1px solid #f5e6df;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.bonus-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #ebd1c3;
}

.bonus-card-surprise {
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    border-color: #f0d0e0;
}

.bonus-icon-img {
    width: 60px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 4px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

.bonus-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bonus-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.bonus-content p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.5;
}

.bonus-pricing {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-strike {
    font-size: 0.85rem;
    color: #a85f68;
    text-decoration: line-through;
}

.price-free {
    font-size: 0.9rem;
    font-weight: 800;
    color: #AA7700;
    background: #FDFBF7;
    border: 1px solid #D4AF37;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Pricing Cards */
.pricing-cards-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .pricing-cards-container {
        flex-direction: row;
        align-items: stretch;
    }
}

.pricing-card {
    background: #fff;
    border: 1px solid #f5e6df;
    border-radius: 16px;
    padding: 32px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
    border: 2px solid #D4AF37;
    background: linear-gradient(135deg, #fefefe, #faf5f2);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37 0%, #AA7700 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #3E2723;
    margin-bottom: 8px;
    text-align: center;
}

.plan-desc {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.4;
    min-height: 40px;
}

.plan-price {
    text-align: center;
    margin-bottom: 4px;
}

.plan-price .price-currency {
    font-size: 1.4rem;
    font-weight: 600;
    vertical-align: top;
    color: #3E2723;
}

.plan-price .price-amount {
    font-size: 3.2rem;
    font-weight: 900;
    color: #3E2723;
    line-height: 1;
}

.plan-price.highlight-price .price-amount,
.plan-price.highlight-price .price-currency {
    color: #AA7700;
}

.price-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-bottom: 24px;
}

.plan-includes {
    margin-bottom: 24px;
    flex-grow: 1;
}

.plan-includes h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #3E2723;
    border-bottom: 1px solid #f5e6df;
    padding-bottom: 8px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.plan-features .check-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tiny-icon {
    width: 20px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #AA7700;
    box-shadow: none;
    font-size: 1rem;
    margin-top: auto;
}

.btn-cta-outline:hover {
    background: #D4AF37;
    color: #fff;
    transform: translateY(-2px);
}

.price-anchor {
    margin-bottom: 8px;
    text-align: center;
}

.price-label {
    font-size: 0.9rem;
    color: #888;
    display: block;
    margin-bottom: 2px;
}

.price-old {
    font-size: 1.2rem;
    font-weight: 700;
    color: #a85f68;
    text-decoration: line-through;
}

/* ===== SECTION 5: TESTIMONIALS ===== */
.section-testimonials {
    background: linear-gradient(180deg, #f8f5f2 0%, #fff 100%);
    padding: 48px 0;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    position: relative;
    border: 1px solid #f0ebe8;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a0b9, #b8627d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
}

.testimonial-stars {
    font-size: 0.8rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-tail {
    position: absolute;
    bottom: -8px;
    left: 28px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-right: 1px solid #f0ebe8;
    border-bottom: 1px solid #f0ebe8;
    transform: rotate(45deg);
}

/* ===== SECTION 6: GUARANTEE ===== */
.section-guarantee {
    background: linear-gradient(135deg, #FDFBF7, #F4E9EA);
    padding: 48px 0;
}

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

.guarantee-shield {
    width: 100px;
    height: auto;
    margin: 0 auto 20px;
}

.guarantee-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.guarantee-title .highlight {
    color: #AA7700;
}

.guarantee-box p {
    font-size: 0.95rem;
    color: #3E2723;
    line-height: 1.65;
    margin-bottom: 12px;
}

/* ===== SECTION 7: FINAL CTA & FAQ ===== */
.section-final {
    background: #fff;
    padding: 48px 0 120px;
    text-align: center;
}

.urgency-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.5;
}

.faith-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Pulsating Button */
.btn-pulse {
    animation: pulse 2s infinite;
    margin: 0 auto;
    display: flex;
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
    }

    50% {
        box-shadow: 0 6px 40px rgba(212, 175, 55, 0.55), 0 0 0 10px rgba(212, 175, 55, 0.1);
    }

    100% {
        box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
    }
}

.offer-expiry {
    font-size: 0.8rem;
    color: #a85f68;
    margin-top: 12px;
    font-weight: 500;
}

/* FAQ */
.faq-section {
    margin-top: 48px;
    text-align: left;
}

.faq-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    border: 1px solid #ede8e4;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #faf8f6;
    transition: background 0.3s;
}

.faq-item.open {
    background: #fff;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    gap: 12px;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: #b8627d;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 18px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 18px 16px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    justify-content: center;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.btn-cta-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #AA7700 100%);
    color: #4A2B32;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-cta-sticky::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shimmer 3s infinite linear;
}

.btn-cta-sticky:hover {
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Staggering for lists */
.check-item.reveal {
    transition-delay: 0.1s;
}

.check-item.reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.check-item.reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.bonus-card.reveal {
    transition-delay: 0.1s;
}

.bonus-card.reveal:nth-child(even) {
    transition-delay: 0.2s;
}

.testimonial-card.reveal {
    transition-delay: 0.1s;
}

.testimonial-card.reveal:nth-child(even) {
    transition-delay: 0.2s;
}


/* ===== DESKTOP ENHANCEMENTS ===== */
@media (min-width: 768px) {
    .headline {
        font-size: 2.4rem;
    }

    .section-title,
    .section-title-problem {
        font-size: 1.8rem;
    }

    .sub-headline {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 32px;
    }

    .section-hero,
    .section-problem,
    .section-solution,
    .section-offer,
    .section-testimonials,
    .section-guarantee,
    .section-final {
        padding: 64px 0;
    }

    .section-final {
        padding-bottom: 80px;
    }

    .method-title {
        font-size: 1.8rem;
    }

    .price-current {
        font-size: 2.8rem;
    }

    .testimonial-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1;
        min-width: 280px;
    }

    .testimonial-tail {
        display: none;
    }
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid #D4AF37;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.8rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
}

.modal-header {
    background: linear-gradient(135deg, #fefefe, #faf5f2);
    padding: 24px 24px 16px;
    text-align: center;
    border-bottom: 1px solid #f5e6df;
}

.modal-header h2 {
    color: #a85f68;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.modal-header p {
    color: #3E2723;
    font-size: 0.95rem;
    font-weight: 600;
}

.modal-body {
    padding: 20px 24px;
}

.modal-body>p {
    color: #a85f68;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-bonuses {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.modal-bonuses li {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-offer {
    text-align: center;
    background: #fdfaf7;
    border: 1px dashed #D4AF37;
    padding: 16px;
    border-radius: 8px;
}

.modal-offer p {
    font-size: 0.9rem;
    color: #3E2723;
    margin-bottom: 4px;
}

.modal-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #AA7700;
}

.modal-footer {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-btn-primary {
    width: 100%;
}

.modal-btn-discreet {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
    display: block;
}

.modal-btn-discreet:hover {
    color: #555;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

/* ===== MARQUEE CAROUSELS ===== */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0 20px;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f5f2, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f5f2, transparent);
}

.marquee-row {
    display: flex;
    width: max-content;
    margin-bottom: 24px;
}

.marquee-row.ltr {
    animation: marqueeLtr 25s linear infinite;
}

.marquee-row.rtl {
    animation: marqueeRtl 25s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 20px;
    padding-right: 20px;
}

@keyframes marqueeLtr {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRtl {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.marquee-row:hover {
    animation-play-state: paused;
}

.testimonial-card,
.chat-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0ebe8;
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a0b9, #b8627d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
}

.testimonial-stars {
    font-size: 0.8rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    font-style: italic;
}

/* Chat Cards */
.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

.chat-name {
    display: flex;
    flex-direction: column;
}

.chat-name strong {
    font-size: 0.95rem;
    color: #333;
}

.chat-name span {
    font-size: 0.75rem;
    color: #888;
}

.chat-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-body .msg {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    max-width: 90%;
}

.msg-time {
    display: block;
    text-align: right;
    font-size: 0.65rem;
    color: rgba(0, 0, 0, 0.45);
    margin-top: 4px;
}

.whatsapp .chat-header {
    background: #075E54;
    border-radius: 16px 16px 0 0;
    margin: -20px -20px 16px -20px;
    padding: 12px 16px;
}

.whatsapp .chat-header strong,
.whatsapp .chat-header span {
    color: #fff;
}

.whatsapp .chat-body {
    background: #E5DDD5;
    margin: -16px -20px -20px -20px;
    padding: 16px;
    border-radius: 0 0 16px 16px;
    min-height: 120px;
}

.whatsapp .msg.received {
    background: #fff;
    color: #303030;
    align-self: flex-start;
    border-top-left-radius: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.instagram .chat-header {
    background: #fff;
}

.instagram .chat-body .msg {
    background: #EFEFEF;
    color: #262626;
    align-self: flex-start;
}

/* ===== SCROLL DOWN INDICATOR ===== */
.scroll-down-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    opacity: 0.8;
}

.scroll-down-indicator .chevron {
    width: 20px;
    height: 20px;
    border-right: 3px solid #b8627d;
    border-bottom: 3px solid #b8627d;
    transform: rotate(45deg);
    animation: chevronBounce 2s infinite;
    margin-bottom: -10px;
}

.scroll-down-indicator .chevron:nth-child(1) {
    animation-delay: 0s;
}

.scroll-down-indicator .chevron:nth-child(2) {
    animation-delay: 0.15s;
}

.scroll-down-indicator .chevron:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes chevronBounce {
    0% {
        opacity: 0;
        transform: translateY(-10px) rotate(45deg);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(10px) rotate(45deg);
    }
}

/* ===== SALES NOTIFICATION ===== */
.sales-notification {
    position: fixed;
    bottom: 40px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    z-index: 10000;
    border-left: 4px solid #D4AF37;
    transform: translateX(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    max-width: 280px;
}

.sales-notification.active {
    transform: translateX(0);
    opacity: 1;
}

.sn-icon {
    font-size: 1.6rem;
}

.sn-content p {
    margin: 0;
}

.sn-title {
    font-size: 0.8rem;
    color: #666;
}

.sn-title span {
    font-weight: 700;
    color: #3E2723;
}

.sn-product {
    font-weight: 700;
    font-size: 0.85rem;
    color: #a85f68;
    margin: 2px 0 !important;
}

.sn-time {
    font-size: 0.7rem;
    color: #999;
}

@media (max-width: 480px) {
    .sales-notification {
        right: 10px;
        left: auto;
        bottom: 10px;
        max-width: 280px;
    }
}

/* Move sales notification up when sticky CTA is active to prevent overlapping */
.sticky-cta.visible ~ .sales-notification {
    bottom: 95px;
}

@media (max-width: 480px) {
    .sticky-cta.visible ~ .sales-notification {
        bottom: 95px;
    }
}

/* ===== PROBLEM CARDS ===== */
.problem-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FDFBF7;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    min-height: 130px;
}

.problem-card.slide-left {
    transform: translateX(-50px);
}

.problem-card.slide-right {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.problem-card.slide-up {
    transform: translateY(50px);
    justify-content: center;
    text-align: center;
}

.problem-card.active {
    opacity: 1;
    transform: translate(0, 0);
}

.problem-img-placeholder {
    width: 60px;
    height: 60px;
    background-color: #E2C2C6;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    text-align: center;
    border: 2px dashed #b8627d;
}

.problem-img-placeholder::after {
    content: 'Imagen';
}

.problem-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
    object-fit: cover;
    border: 2px solid #b8627d;
}

.problem-card-bg-img {
    position: absolute;
    top: 0;
    width: 48%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
}

.problem-card.slide-left .problem-card-bg-img {
    left: 0;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 100%);
}

.problem-card.slide-right .problem-card-bg-img {
    right: 0;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 100%);
}

.problem-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 1.15rem;
    color: #3E2723;
    line-height: 1.5;
    flex: 1;
}

.problem-card.slide-left p {
    margin-left: 38%;
}

.problem-card.slide-right p {
    margin-right: 38%;
    text-align: right;
}

@media (max-width: 576px) {
    .problem-card {
        padding: 20px;
        min-height: 100px;
    }

    .problem-card.slide-left p {
        margin-left: 35%;
    }

    .problem-card.slide-right p {
        margin-right: 35%;
    }

    .problem-card p {
        font-size: 1.05rem;
    }
}

.problem-emphasis-card {
    background: #FDFBF7;
    border: 2px solid #E2C2C6;
}

.problem-emphasis-card .problem-emphasis {
    font-size: 1.1rem;
    color: #3E2723;
    font-weight: 500;
}

/* ===== AUTHORITY SECTION ===== */
.authority-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
    border-top: 4px solid #b8627d;
    gap: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .authority-box {
        flex-direction: row;
        text-align: left;
    }
}

.authority-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FDFBF7;
    box-shadow: 0 4px 15px rgba(184, 98, 125, 0.3);
    flex-shrink: 0;
}

.authority-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #3E2723;
    margin-bottom: 10px;
}

.authority-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 30px 16px 120px;
    /* Extra bottom padding to avoid overlapping with sticky CTA on mobile */
    background: #fdfaf8;
    text-align: center;
    border-top: 1px solid #f5e6df;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}