/* ============================================================
   MÉTODO VENDEDOR OCULTO — Clean Light Landing Page
   ============================================================ */

:root {
    --primary: #FF0000;
    --primary-dark: #950606;
    --primary-light: #EBF2FF;
    --accent: #FF0000;
    --bg-body: #FFFFFF;
    --bg-card: #F8FAFC;
    --bg-card-hover: #F1F5F9;
    --bg-section-alt: #F1F5F9;
    --text-dark: #1A1A2E;
    --text-body: #334155;
    --text-muted: #64748B;
    --danger: #DC2626;
    --success: #16A34A;
    --gradient-cta: linear-gradient(135deg, #FF0000 0%, #950606 100%);
    --gradient-hero: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    --gradient-blue: linear-gradient(135deg, #FF0000 0%, #950606 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.05);
    --shadow-cta: 0 8px 28px rgba(0, 102, 255, 0.3);
    --radius-l: 20px;
    --radius-m: 14px;
    --radius-s: 10px;
}

/* ---- RESET ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 52px;
}

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 1rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ---- UTILITY CLASSES ---- */
.text-primary {
    color: var(--primary);
}

.text-danger {
    color: var(--danger);
}

.text-accent {
    color: var(--accent);
}

/* ---- URGENCY BAR ---- */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #DC2626 0%, #EF4444 50%, #DC2626 100%);
    background-size: 200% 100%;
    animation: shimmer-bar 3s ease infinite;
    color: white;
    padding: 0.7rem 5%;
    font-weight: 800;
    z-index: 99999;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@keyframes shimmer-bar {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ---- HERO SECTION ---- */
.hero-section {
    padding: 2.5rem 5% 4rem;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 102, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Badge MVO */
.badge-mvo {
    display: inline-block;
    background: var(--gradient-blue);
    color: white;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

h1 {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.hero-sub strong {
    color: var(--primary);
}

/* Video Wrapper */
.hero-video-wrap {
    margin: 1.5rem auto 2rem;
    max-width: 350px;
}

/* ---- OFFER CARD ---- */
.offer-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-l);
    padding: 2.5rem 1.5rem 2rem;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.offer-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-blue);
    color: white;
    padding: 0.4rem 1.8rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
    letter-spacing: 1px;
}

.stars-badge {
    color: #FBBF24;
    font-size: 0.7rem;
    margin-bottom: 1px;
}

.offer-title {
    color: var(--text-dark);
    font-size: 1.6rem;
    margin: 1rem 0 0.5rem;
}

.old-price {
    display: block;
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: line-through;
}

.new-price {
    display: block;
    color: var(--primary);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    margin: 0.3rem 0;
}

.payment-info {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.anchor-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1.2rem;
}

/* Offer Features List */
.offer-features-list {
    margin: 1rem 0 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding-top: 1rem;
    border-top: 1px solid #E2E8F0;
}

.offer-feat {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.4;
}

.offer-feat i {
    color: var(--success);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-feat strong {
    color: var(--text-dark);
}

/* Micro Proof */
.micro-proof {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.micro-proof i {
    color: var(--success);
}

/* ---- CTA BUTTONS ---- */
.btn-cta {
    display: inline-block;
    background: var(--gradient-cta);
    color: #FFFFFF;
    font-weight: 900;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: var(--shadow-cta);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 360px;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.45);
}

.pulse-cta {
    animation: pulse-cta-anim 2.5s infinite;
}

@keyframes pulse-cta-anim {
    0% {
        box-shadow: var(--shadow-cta);
    }

    50% {
        box-shadow: 0 8px 28px rgba(0, 102, 255, 0.3), 0 0 0 10px rgba(0, 102, 255, 0.06);
    }

    100% {
        box-shadow: var(--shadow-cta);
    }
}

/* ---- SECTION EYEBROW ---- */
.section-eyebrow {
    text-align: center;
    display: inline-block;
    background: rgba(220, 38, 38, 0.08);
    color: var(--danger);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-eyebrow.eyebrow-blue {
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
}

/* ---- PROBLEM SECTION ---- */
.problem-section {
    padding: 5rem 5%;
    background: var(--bg-section-alt);
    text-align: center;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.problem-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-m);
    padding: 2rem 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(220, 38, 38, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.08);
    color: var(--danger);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-body);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.problem-card strong {
    color: var(--text-dark);
}

/* ---- SOLUTION SECTION ---- */
.solution-section {
    padding: 5rem 5%;
    background: var(--bg-body);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.solution-desc {
    max-width: 680px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    text-align: center;
}

.solution-desc strong {
    color: var(--primary);
}

/* MVO Pillars */
.mvo-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pillar-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-l);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pillar-card:hover {
    border-color: rgba(0, 102, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.15);
}

.pillar-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ---- KIT SECTION ---- */
.kit-section {
    padding: 5rem 5%;
    background: var(--bg-section-alt);
    text-align: center;
}

.kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 2.5rem auto 0;
}

.kit-item {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-l);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.kit-item:hover {
    border-color: rgba(0, 102, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.kit-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.kit-item h3 {
    color: var(--text-dark);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.kit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ---- STEPS ---- */
.steps-section {
    padding: 5rem 5%;
    background: var(--bg-body);
}

.steps-section h2 {
    margin-bottom: 3rem;
}

.steps-timeline {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--bg-card);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-m);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 102, 255, 0.2);
    transform: translateX(6px);
}

.step-num {
    width: 44px;
    height: 44px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.step-text h4 {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.step-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.step-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.2), rgba(0, 102, 255, 0.05));
    margin-left: 2.2rem;
}

/* ---- TESTIMONIALS CAROUSEL ---- */
.testimonials-carousel {
    padding: 5rem 0;
    background: var(--bg-section-alt);
    overflow: hidden;
    position: relative;
    --item-width: 300px;
    --item-gap: 25px;
    --items-count: 6;
}

.testimonials-carousel h2 {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 5%;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-section-alt), transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-section-alt), transparent);
}

.carousel-track {
    display: flex;
    gap: var(--item-gap);
    width: max-content;
    animation: scroll-carousel 40s linear infinite;
    padding-left: var(--item-gap);
}

.carousel-track:hover {
    animation-play-state: paused;
}

.testimonial-item {
    width: var(--item-width);
    flex-shrink: 0;
}

.testimonial-item img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #E2E8F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.testimonial-item:hover img {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * (var(--item-width) * var(--items-count) + var(--item-gap) * var(--items-count))));
    }
}

/* ---- TARGET AUDIENCE ---- */
.target-section {
    padding: 5rem 5%;
    background: var(--bg-body);
    text-align: center;
}

.target-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    max-width: 960px;
    margin: 2rem auto 2.5rem;
}

.target-card {
    background: var(--bg-card);
    border: 1px solid #E2E8F0;
    padding: 1.3rem 1.5rem;
    border-radius: var(--radius-m);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.target-card:hover {
    border-color: rgba(22, 163, 74, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.target-icon {
    width: 40px;
    height: 40px;
    background: rgba(22, 163, 74, 0.1);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.target-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.4;
}

.target-card strong {
    color: var(--text-dark);
}

.target-footer {
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    line-height: 1.8;
}

.tf-no {
    color: var(--danger);
}

.tf-divider {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.tf-yes {
    color: var(--success);
}

/* ---- PRICING SECTION ---- */
.pricing-section {
    padding: 5rem 5%;
    background: var(--bg-section-alt);
    text-align: center;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-offer {
    max-width: 440px;
    margin: 2rem auto;
    border-color: rgba(0, 102, 255, 0.15);
}

.pricing-offer:hover {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.08);
}

/* ---- COUNTDOWN TIMER ---- */
.countdown-timer {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: var(--radius-l);
    padding: 1.5rem 2rem;
    margin: 0 auto 2rem;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
    text-align: center;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.countdown-header i {
    font-size: 1.2rem;
    animation: bell-ring 2s infinite;
}

@keyframes bell-ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.time-unit {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 75px;
}

.time-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.time-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    margin-top: 0.2rem;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 2rem;
    color: white;
    font-weight: 800;
}

/* Guarantee Strip */
.guarantee-strip {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    max-width: 500px;
    margin: 2.5rem auto 0;
    background: white;
    border: 1px solid #E2E8F0;
    padding: 1.5rem;
    border-radius: var(--radius-m);
    text-align: left;
    box-shadow: var(--shadow-soft);
}

.guarantee-icon {
    width: 52px;
    height: 52px;
    background: rgba(22, 163, 74, 0.08);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guarantee-strip strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.guarantee-strip p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ---- FAQ SECTION ---- */
.faq-section {
    padding: 5rem 5%;
    background: var(--bg-body);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-section h2 {
    margin-bottom: 2.5rem;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 0.8rem;
    border-radius: var(--radius-m);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.faq-item.active {
    background: var(--primary-light);
    border-color: rgba(0, 102, 255, 0.2);
}

.faq-question {
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    user-select: none;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 300px;
}

/* ---- WHATSAPP SECTION ---- */
.whatsapp-section {
    padding: 4rem 5%;
    background: var(--bg-section-alt);
}

.whatsapp-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-text {
    text-align: center;
}

.contact-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-text > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-weight: 800;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.4rem;
}

/* ---- FOOTER ---- */
.footer {
    background: #F8FAFC;
    color: var(--text-muted);
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid #E2E8F0;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: var(--text-muted);
    opacity: 0.7;
}

/* ---- PURCHASE NOTIFICATION ---- */
.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    border: 1px solid #E2E8F0;
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    opacity: 0;
    transform: translateX(-400px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 280px;
    max-width: 320px;
}

.purchase-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.purchase-notification.hide {
    opacity: 0;
    transform: translateX(-400px);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.notification-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    line-height: 1.3;
}

.notification-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.notification-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .urgency-bar {
        font-size: 0.75rem;
        padding: 0.6rem 3%;
        min-height: 48px;
        line-height: 1.4;
    }

    body {
        padding-top: 50px;
    }

    .hero-section {
        padding: 1.5rem 5% 3rem;
    }

    .problem-grid,
    .mvo-pillars,
    .kit-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .purchase-notification {
        left: 15px;
        bottom: 15px;
        min-width: 260px;
        max-width: calc(100% - 30px);
        padding: 0.9rem 1.2rem;
    }

    .testimonials-carousel {
        padding: 3.5rem 0;
        --item-width: 250px;
        --item-gap: 15px;
    }

    .testimonials-carousel h2 {
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }

    .carousel-container::before,
    .carousel-container::after {
        width: 50px;
    }

    .testimonial-item {
        max-height: 450px;
        overflow: hidden;
        border-radius: 16px;
    }

    .testimonial-item img {
        object-fit: cover;
        object-position: top;
    }

    .carousel-track {
        animation-duration: 30s;
    }

    .countdown-timer {
        padding: 1rem;
        border-radius: 14px;
    }

    .countdown-header {
        font-size: 0.8rem;
    }

    .time-unit {
        padding: 0.6rem 0.8rem;
        min-width: 60px;
    }

    .time-value {
        font-size: 1.8rem;
    }

    .time-separator {
        font-size: 1.5rem;
    }

    .target-grid {
        flex-direction: column;
        align-items: center;
    }

    .target-card {
        width: 100%;
        max-width: 100%;
    }

    .target-footer {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 1rem;
    }

    .tf-divider {
        display: none;
    }

    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .offer-card {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .guarantee-strip {
        flex-direction: column;
        text-align: center;
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .badge-mvo {
        font-size: 0.65rem;
        padding: 0.3rem 1rem;
    }

    .hero-sub {
        font-size: 0.9rem;
    }

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

    .contact-image img {
        width: 140px;
        height: 140px;
    }
}