/* ═══════════════════════════════════════════
   MERCADO MIND — LP3 VSL EDITION
   Premium Conversion Design
   ═══════════════════════════════════════════ */

:root {
    --primary: #FFE600;
    /* Mercado Livre Yellow */
    --accent: #00A650;
    /* Success Green */
    --bg-dark: #0A0C10;
    --bg-card: #151921;
    --text-main: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.7);
    --border: rgba(255, 255, 255, 0.1);

    --font-head: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

.c-yellow { color: var(--primary); }
.c-green { color: var(--accent); }
.u { text-decoration: underline; }
.b { font-weight: 800; }

/* --- Header --- */
.header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

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

.logo-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 500;
}

.logo-name strong {
    color: var(--primary);
}

/* --- Delayed Reveal --- */
.delayed-reveal {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in;
}

.delayed-reveal.show {
    display: block;
    opacity: 1;
}

/* --- Hero / VSL Section --- */
.vsl-section {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top, rgba(255, 230, 0, 0.05) 0%, transparent 70%);
}

.eyebrow {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.headline {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 8vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

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

.subheadline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-dim);
    max-width: 750px;
    margin: 0 auto 40px;
    padding: 0 10px;
}

/* VSL Player */
.vsl-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.vsl-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
}

.vsl-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Price Anchor */
.price-anchor {
    margin: 40px auto;
    text-align: center;
}

.price-anchor-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-anchor-old {
    text-decoration: line-through;
    opacity: 0.6;
}

.price-anchor-value {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 8px;
}

.price-anchor-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dim);
    margin-top: 8px;
}

.price-anchor-amount {
    font-size: 5rem;
    font-weight: 900;
    font-family: var(--font-head);
    line-height: 1;
    color: var(--primary);
    letter-spacing: -2px;
}

.price-anchor-sub {
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.6;
    margin-bottom: 24px;
}

/* CTA */
.cta-area {
    margin-top: 0;
}

.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(to bottom, var(--primary), #e1cc00);
    color: #000;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 40px rgba(255, 230, 0, 0.2);
}

.btn-secondary {
    background: var(--accent);
    color: #fff;
    font-size: 1.2rem;
    padding: 24px 60px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 40px rgba(0, 166, 80, 0.2);
}

.btn-text {
    font-size: clamp(1rem, 4vw, 1.25rem);
    font-family: var(--font-head);
    line-height: 1.2;
}

.btn-subtext {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 4px;
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
    filter: brightness(1.1);
}

.pulse {
    animation: pulseKey 2s infinite;
}

@keyframes pulseKey {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* --- Footer --- */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.footer__copy {
    font-size: 0.9rem;
    color: var(--text-dim);
}

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

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .vsl-section {
        padding-top: 60px;
    }

    .vsl-wrapper {
        padding: 5px;
        border-radius: 8px;
    }

    .btn {
        padding: 14px 20px;
    }

    .btn-subtext {
        font-size: 0.7rem;
    }

    .price-anchor-amount {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }
}

@media (max-width: 380px) {
    .headline {
        font-size: 1.5rem;
    }
}