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

:root {
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7e22ce;
    --purple-800: #6b21a8;
    --purple-900: #581c87;
    --purple-950: #3b0764;

    --pink-400: #f472b6;
    --pink-500: #ec4899;

    --dark-900: #0c0a1a;
    --dark-800: #13102b;
    --dark-700: #1a1535;

    --gold: #fbbf24;

    --font-main: 'Outfit', 'Noto Sans KR', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background: var(--dark-900);
    color: #f0e6ff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* ===== URGENCY BAR ===== */
.urgency-bar {
    background: linear-gradient(90deg, var(--purple-900), var(--purple-700), var(--pink-500), var(--purple-700), var(--purple-900));
    background-size: 200% 100%;
    animation: shimmerBar 3s ease-in-out infinite;
    padding: 10px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@keyframes shimmerBar {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.urgency-bar p {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: white;
}

.urgency-pulse {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(147, 51, 234, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 60%),
                var(--dark-900);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--purple-400);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 6s ease-in-out infinite;
}

@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

.hero-content {
    flex: 1;
    max-width: 550px;
    z-index: 2;
    text-align: left;
}

.badge-official {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 16px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.title-sub {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--purple-300);
    text-transform: uppercase;
}

.title-main {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, var(--purple-200) 50%, var(--pink-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-ver {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 300;
    color: var(--purple-300);
    letter-spacing: 3px;
}

.highlight-4 {
    font-weight: 900;
    font-size: 1.3em;
    background: linear-gradient(135deg, var(--purple-400), var(--pink-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--purple-200);
    margin-bottom: 28px;
    font-weight: 400;
    animation: fadeInDown 0.8s ease-out 0.4s both;
}

.hero-price-box {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease-out 0.5s both;
}

.price-old {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
}

.price-current {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
}

.price-installment {
    font-size: 0.85rem;
    color: var(--purple-300);
    width: 100%;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-600) 0%, var(--pink-500) 50%, var(--purple-600) 100%);
    background-size: 200% 200%;
    color: white;
    padding: 18px 40px;
    border-radius: 60px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(147, 51, 234, 0.4), 0 0 60px rgba(147, 51, 234, 0.15);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(147, 51, 234, 0.6), 0 0 80px rgba(236, 72, 153, 0.3);
    background-position: 100% 0;
}

.cta-pulse {
    animation: fadeInUp 0.8s ease-out 0.6s both, ctaPulse 2.5s ease-in-out infinite 1.4s;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 25px rgba(147, 51, 234, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(147, 51, 234, 0.7), 0 0 80px rgba(236, 72, 153, 0.3); }
}

.cta-sub {
    font-size: 0.8rem;
    color: var(--purple-300);
    margin-top: 12px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* ===== HERO IMAGE ===== */
.hero-image {
    flex: 1;
    max-width: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.glow-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.product-img-main {
    max-height: 500px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(147, 51, 234, 0.4));
    position: relative;
    z-index: 2;
    animation: floatProduct 4s ease-in-out infinite;
}

@keyframes floatProduct {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    background: linear-gradient(180deg, var(--dark-800), var(--dark-900));
    padding: 50px 20px;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proof-number {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-300), var(--pink-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 0.8rem;
    color: var(--purple-200);
    font-weight: 400;
    opacity: 0.8;
}

/* ===== PRODUCT GALLERY ===== */
.product-gallery {
    padding: 80px 20px;
    background: var(--dark-900);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark-800);
    border: 1px solid rgba(147, 51, 234, 0.15);
    transition: all 0.4s ease;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--purple-500);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.section-title-left {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.text-purple {
    background: linear-gradient(135deg, var(--purple-400), var(--pink-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== VIDEO FULL WIDTH ===== */
.video-full {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-full iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===== FEATURES ===== */
.features {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-900), var(--dark-800));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(147, 51, 234, 0.08), rgba(236, 72, 153, 0.04));
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-600), var(--pink-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple-500);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--purple-200);
    opacity: 0.85;
    line-height: 1.6;
}

/* ===== WHAT'S INCLUDED ===== */
.whats-included {
    padding: 80px 20px;
    background: var(--dark-800);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.kit-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 700px;
    margin: 36px auto 32px;
}

.kit-img-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(147, 51, 234, 0.2);
    background: var(--dark-700);
    transition: all 0.4s ease;
}

.kit-img-item:hover {
    transform: translateY(-4px);
    border-color: var(--purple-500);
    box-shadow: 0 10px 35px rgba(147, 51, 234, 0.2);
}

.kit-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.kit-img-item:hover img {
    transform: scale(1.03);
}

@media (max-width: 500px) {
    .kit-images {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.included-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(147, 51, 234, 0.06);
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.included-item:hover {
    border-color: var(--purple-500);
    background: rgba(147, 51, 234, 0.1);
}

.included-item.bonus {
    border-color: rgba(236, 72, 153, 0.3);
    background: rgba(236, 72, 153, 0.06);
}

.included-item.bonus:hover {
    border-color: var(--pink-500);
    background: rgba(236, 72, 153, 0.1);
}

.included-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.bonus-check {
    width: auto;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.6rem;
    background: linear-gradient(135deg, var(--pink-500), var(--purple-600));
    letter-spacing: 1px;
}

.included-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--purple-100);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-800), var(--dark-900));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(147, 51, 234, 0.08), rgba(30, 20, 60, 0.8));
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple-400);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.15);
}

.stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--purple-100);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    color: white;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--purple-300);
    opacity: 0.7;
}

/* ===== COMPATIBILITY ===== */
.compatibility {
    padding: 80px 20px;
    background: var(--dark-900);
}

.compat-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.compat-content p {
    font-size: 1rem;
    color: var(--purple-200);
    line-height: 1.8;
    margin-bottom: 28px;
    opacity: 0.85;
}

.compat-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    text-align: left;
}

.compat-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--purple-100);
    padding: 12px 16px;
    background: rgba(147, 51, 234, 0.06);
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 10px;
}

.compat-list li::before {
    content: '◆';
    color: var(--purple-400);
    font-size: 0.6rem;
    flex-shrink: 0;
}

/* ===== TRUST / MERCADO PAGO ===== */
.trust-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-900), var(--dark-800));
}

.trust-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--purple-200);
    opacity: 0.8;
    margin-top: 8px;
    margin-bottom: 36px;
}

.trust-main-card {
    display: flex;
    align-items: center;
    gap: 28px;
    background: linear-gradient(145deg, rgba(0, 158, 227, 0.08), rgba(0, 158, 227, 0.03));
    border: 1px solid rgba(0, 158, 227, 0.25);
    border-radius: 20px;
    padding: 32px 36px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-mp-logo {
    flex-shrink: 0;
}

.mp-logo-img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    background: white;
    padding: 8px 12px;
}

.trust-mp-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.trust-mp-info p {
    font-size: 0.88rem;
    color: var(--purple-200);
    line-height: 1.7;
    opacity: 0.85;
}

.trust-mp-info strong {
    color: #4ade80;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-card {
    background: rgba(74, 222, 128, 0.04);
    border: 1px solid rgba(74, 222, 128, 0.12);
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: rgba(74, 222, 128, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.08);
}

.trust-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 222, 128, 0.08);
    border-radius: 50%;
    margin: 0 auto 14px;
}

.trust-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.trust-card p {
    font-size: 0.78rem;
    color: var(--purple-200);
    line-height: 1.5;
    opacity: 0.75;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(147, 51, 234, 0.06);
    border: 1px solid rgba(147, 51, 234, 0.12);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.75rem;
    color: var(--purple-200);
    font-weight: 500;
}

@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-main-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .mp-logo-img {
        width: 140px;
    }
}

@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .trust-badges {
        gap: 10px;
    }

    .trust-badge-item {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 20px;
    background: var(--dark-800);
}

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

.faq-item {
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--purple-500);
}

.faq-item.active {
    border-color: var(--purple-500);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-main);
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(147, 51, 234, 0.06);
}

.faq-arrow {
    font-size: 1.4rem;
    color: var(--purple-400);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-arrow {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 8px;
}

.faq-answer p {
    padding: 0 0 12px;
    font-size: 0.9rem;
    color: var(--purple-200);
    line-height: 1.7;
    opacity: 0.85;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 80px 20px;
    background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.12) 0%, transparent 70%),
                var(--dark-900);
}

.cta-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(147, 51, 234, 0.1), rgba(30, 20, 60, 0.9));
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(147, 51, 234, 0.05), transparent, rgba(236, 72, 153, 0.05), transparent);
    animation: rotateBg 8s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    to { transform: rotate(360deg); }
}

.cta-card > * {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-card h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.cta-desc {
    color: var(--purple-200);
    font-size: 0.9rem;
    margin-bottom: 24px;
    opacity: 0.8;
}

.cta-product-img {
    width: 200px;
    margin: 0 auto 24px;
}

.cta-product-img img {
    filter: drop-shadow(0 10px 30px rgba(147, 51, 234, 0.3));
}

/* ===== CTA PRICE BOX ===== */
.cta-price-box {
    margin-bottom: 28px;
}

.price-comparison {
    margin-bottom: 4px;
}

.price-label {
    font-size: 0.8rem;
    color: var(--purple-300);
    opacity: 0.7;
}

.price-old-cta {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
    margin-left: 6px;
}

.price-main {
    margin-bottom: 8px;
}

.price-big {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin-left: 8px;
    text-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
}

.price-pix {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: 10px;
    padding: 10px 16px;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--purple-100);
}

.price-pix strong {
    color: #4ade80;
    font-size: 1.1rem;
}

.price-installment-cta {
    font-size: 0.85rem;
    color: var(--purple-300);
    display: block;
    margin-top: 4px;
}

/* ===== CTA BENEFITS ===== */
.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    font-size: 0.85rem;
    color: var(--purple-100);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-item::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
    border-radius: 50%;
    font-size: 0.65rem;
    color: white;
    flex-shrink: 0;
}

/* ===== CTA BIG BUTTON ===== */
.cta-button-big {
    display: block;
    width: 100%;
    padding: 20px 30px;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.secure-text {
    font-size: 0.75rem;
    color: var(--purple-300);
    opacity: 0.6;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.secure-text::before {
    content: '🔒';
}

/* ===== PAYMENT ICONS ===== */
.payment-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pay-icon {
    background: rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.7rem;
    color: var(--purple-200);
    font-weight: 500;
}

/* ===== COUNTDOWN ===== */
.countdown-box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(147, 51, 234, 0.15);
}

.countdown-box p {
    font-size: 0.8rem;
    color: var(--purple-300);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-num {
    background: linear-gradient(145deg, rgba(147, 51, 234, 0.2), rgba(30, 20, 60, 0.8));
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    min-width: 60px;
    text-align: center;
}

.countdown-label {
    font-size: 0.65rem;
    color: var(--purple-300);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-sep {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--purple-400);
    margin-bottom: 18px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-900);
    border-top: 1px solid rgba(147, 51, 234, 0.1);
    padding: 40px 20px;
    text-align: center;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple-400), var(--pink-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.footer p {
    font-size: 0.8rem;
    color: var(--purple-300);
    opacity: 0.5;
    margin-bottom: 6px;
}

.footer-disclaimer {
    font-size: 0.7rem !important;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 16px;
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--purple-300);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(147, 51, 234, 0.25);
    padding: 12px 16px;
    z-index: 998;
    justify-content: space-between;
    align-items: center;
}

.mobile-cta-price {
    display: flex;
    flex-direction: column;
}

.mobile-old {
    font-size: 0.7rem;
    color: #666;
    text-decoration: line-through;
}

.mobile-current {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}

.mobile-cta-btn {
    background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-price-box {
        justify-content: center;
    }

    .hero-image {
        max-width: 300px;
        margin-top: 30px;
    }

    .product-img-main {
        max-height: 350px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .compat-list {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .cta-card {
        padding: 36px 24px;
    }

    .price-big {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .urgency-bar p {
        font-size: 0.72rem;
    }

    .title-sub {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 0.9rem;
        width: 100%;
    }

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

    .gallery-item:nth-child(3) {
        grid-column: span 2;
    }

    .mobile-cta-bar {
        display: flex;
    }

    .whatsapp-float {
        bottom: 80px;
    }

    .footer {
        padding-bottom: 80px;
    }

    .final-cta {
        padding-bottom: 100px;
    }

    .countdown-num {
        padding: 10px 14px;
        font-size: 1.3rem;
        min-width: 50px;
    }
}

/* ===== SELECTION COLOR ===== */
::selection {
    background: var(--purple-600);
    color: white;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-900);
}

::-webkit-scrollbar-thumb {
    background: var(--purple-800);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--purple-600);
}
