/* =========================================================
   GARAGEM DAS PROMOS - DESIGN DE ALTA CONVERSÃO (DIRECT RESPONSE)
   Baseado nas melhores referências do mercado automotivo/off-road
   ========================================================= */

:root {
    --bg-dark: #0a0a0c;
    --bg-card: #121216;
    --bg-card-border: rgba(255, 255, 255, 0.08);
    
    --color-orange: #ff4500;
    --color-orange-glow: rgba(255, 69, 0, 0.4);
    --color-green: #25d366;
    --color-green-glow: rgba(37, 211, 102, 0.4);

    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-muted: #6b7280;
    
    --font-impact: 'Bebas Neue', 'Impact', sans-serif;
    --font-text: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

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

/* 1. FAIXA SUPERIOR */
.top-status-bar {
    background: #050507;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #e2e8f0;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
}

/* CONTAINER CENTRAL (MOBILE FIRST) */
.page-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 32px 20px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 2. PÍLULA DE PROVA SOCIAL */
.proof-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.4);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #ff7744;
    margin-bottom: 20px;
}

/* 3. HEADLINE AGRESSIVA */
.main-headline {
    font-family: var(--font-impact);
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: #ffffff;
}

.highlight-orange {
    color: var(--color-orange);
    text-shadow: 0 0 25px rgba(255, 69, 0, 0.35);
}

/* 4. SUBHEADLINE */
.main-subheadline {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.55;
    margin-bottom: 26px;
    padding: 0 4px;
}

.main-subheadline strong {
    color: #ffffff;
}

/* 5. CTA BUTTON (LARANJA OU VERDE COM SUPER IMPACTO) */
.cta-block {
    width: 100%;
    margin-bottom: 28px;
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(180deg, #ff5500 0%, #e63900 100%);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-impact);
    font-size: 1.45rem;
    letter-spacing: 0.8px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px var(--color-orange-glow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-cta:hover,
.btn-cta:active {
    transform: scale(1.02);
    box-shadow: 0 14px 35px rgba(255, 69, 0, 0.6);
}

.pulse-cta {
    animation: pulse-orange 2.2s infinite;
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(255, 69, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
}

.whatsapp-svg {
    flex-shrink: 0;
}

/* LIVE SAVINGS TICKER */
.live-savings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 0.82rem;
    color: #cbd5e1;
}

.check-icon {
    width: 18px;
    height: 18px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid #22c55e;
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* MOCKUP WHATSAPP COM CAPACETE E PREÇO GIGANTE */
.mockup-container {
    width: 100%;
    margin-bottom: 26px;
}

.mockup-card {
    background: #0b141a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7);
    text-align: left;
}

.mockup-header {
    background: #1f2c34;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-avatar {
    width: 34px;
    height: 34px;
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.mockup-title-area strong {
    font-size: 0.85rem;
    color: #fff;
    display: block;
}

.mockup-title-area small {
    font-size: 0.68rem;
    color: #8696a0;
}

.mockup-body {
    padding: 14px 10px;
    background: #0d1418;
}

.mockup-bubble {
    background: #005c4b;
    border-radius: 10px 10px 2px 10px;
    padding: 8px;
    max-width: 95%;
    margin-left: auto;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.bubble-photo {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
    text-align: center;
}

.bubble-photo img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    display: block;
}

.discount-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #e63900;
    color: #fff;
    font-family: var(--font-impact);
    font-size: 0.95rem;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.bubble-content {
    font-size: 0.82rem;
    color: #e9edef;
    line-height: 1.4;
}

.bubble-hook {
    color: #ffeb3b;
    font-weight: 800;
    margin-bottom: 3px;
}

.bubble-prod-name {
    color: #fff;
    margin-bottom: 8px;
}

/* DESTAQUE MÁXIMO DO PREÇO */
.bubble-price-highlight {
    background: rgba(0, 0, 0, 0.25);
    border-left: 3px solid #ffeb3b;
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.price-was {
    display: block;
    text-decoration: line-through;
    color: #a0aec0;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-now {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.3px;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.3);
}

.bubble-url {
    color: #53bdeb;
    margin-bottom: 4px;
}

.bubble-store {
    font-size: 0.72rem;
    color: #d1d5db;
}

.bubble-timestamp {
    display: block;
    text-align: right;
    font-size: 0.62rem;
    color: #8696a0;
    margin-top: 2px;
}

/* 6. URGÊNCIA & CONTADOR */
.urgency-card {
    width: 100%;
    background: #111115;
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    margin-bottom: 24px;
}

.urgency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-impact);
    font-size: 1.15rem;
    letter-spacing: 0.6px;
    color: var(--color-orange);
    margin-bottom: 14px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.countdown-col {
    background: #18181f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 10px 4px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cd-num {
    font-family: var(--font-impact);
    font-size: 2.1rem;
    line-height: 1;
    color: #ffffff;
}

.cd-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* 7. CARDS DE BENEFÍCIOS (IDÊNTICO À REFERÊNCIA) */
.benefits-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    transition: border-color 0.2s;
}

.benefit-card:hover {
    border-color: rgba(255, 69, 0, 0.35);
}

.b-icon-box {
    width: 42px;
    height: 42px;
    background: rgba(255, 69, 0, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.35);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    font-family: var(--font-impact);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.b-text-box h3 {
    font-family: var(--font-impact);
    font-size: 1.25rem;
    letter-spacing: 0.6px;
    color: #ffffff;
    margin-bottom: 4px;
}

.b-text-box p {
    font-size: 0.84rem;
    color: var(--text-gray);
    line-height: 1.45;
}

/* 8. CTA FINAL E SELO */
.bottom-cta-area {
    width: 100%;
    margin-bottom: 16px;
}

.security-badge {
    margin-top: 14px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* 9. FAIXA LETREIRO MARQUEE */
.marquee-strip {
    width: 100%;
    background: #ff4500;
    color: #000000;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-family: var(--font-impact);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.marquee-content {
    display: inline-block;
    animation: marquee-scroll 22s linear infinite;
}

.marquee-content span {
    margin: 0 10px;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* RESPONSIVIDADE */
@media (max-width: 360px) {
    .main-headline {
        font-size: 2.7rem;
    }
    .btn-cta {
        font-size: 1.25rem;
        padding: 16px 14px;
    }
    .cd-num {
        font-size: 1.75rem;
    }
}
