/* 
   PATCH SOBERANO V26 - HARDENING DE UX & CONVERSÃO
   Focado em: Mobile First, Desejo Visual e Fricção Zero.
*/

:root {
    --patch-primary: #FF6A00;
    --patch-secondary: #00BFA5;
    --patch-bg: #0a0908;
    --patch-card: rgba(255, 255, 255, 0.03);
}

/* TAREFA 1 — RELÓGIO PROFISSIONAL (STRIP FINA) */
.urgency-float {
    height: 38px !important;
    padding: 0 15px !important;
    background: #000 !important;
    border-bottom: 1px solid var(--patch-primary) !important;
    font-size: 0.6rem !important;
}

#timer {
    font-variant-numeric: tabular-nums;
    font-weight: 900;
    color: var(--patch-primary);
    background: rgba(255, 106, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.hero {
    padding-top: 45px !important; /* Respiro para a barra fixa */
}

/* TAREFA 2 — CTA STICKY INTELIGENTE (MOBILE) */
.floating-cta-mobile {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--patch-primary);
    color: #000;
    text-align: center;
    padding: 16px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    z-index: 1500;
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.5);
    text-transform: uppercase;
    text-decoration: none;
    display: none; /* Ativado via JS */
    animation: slideUpFade 0.4s ease forwards;
}

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

/* TAREFA 3 — THUMBS QUE VENDEM */
.hero-thumb {
    border: 1px solid rgba(255,255,255,0.1) !important;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.hero-thumb.active {
    opacity: 1 !important;
    border-color: var(--patch-primary) !important;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.3);
}

/* TAREFA 4 — MOBILE SOBERANO (FECHAMENTO TIGHT) */
@media (max-width: 768px) {
    .hero { padding-top: 42px !important; padding-bottom: 20px !important; min-height: 95svh !important; }
    .hero h1 { font-size: 1.6rem !important; margin-bottom: 8px !important; line-height: 1.1 !important; }
    .hero-badge { font-size: 0.5rem !important; padding: 4px 8px !important; margin-bottom: 8px !important; }
    .micro-proof { margin: 8px 0 !important; font-size: 0.55rem !important; gap: 6px !important; }
    .product-hero-card { padding: 12px !important; margin-top: 5px !important; border-radius: 16px !important; }
    .hero-main-display { gap: 8px !important; }
    .hero-img-wrapper { max-width: 160px !important; }
    .hero-img-wrapper img { width: 100% !important; height: auto !important; }
    .card-price-info .value { font-size: 1.4rem !important; }
    .card-price-info .label, .card-price-info .sub-label { font-size: 0.5rem !important; }
    .hero-gallery-thumbs { gap: 6px !important; margin-top: 8px !important; }
    .hero-thumb { flex: 0 0 42px !important; height: 42px !important; }
    .btn-posse { padding: 14px 20px !important; font-size: 0.95rem !important; border-radius: 12px !important; }
    .btn-pwa-link1 { padding: 10px !important; font-size: 0.6rem !important; }
    .security-checkmarks { display: none !important; } /* Ocultar para ganhar dobra */
}

/* TAREFA 5 — CAPTAÇÃO DE LEAD FORTE */
.form-group input {
    height: 54px !important;
    font-size: 1rem !important;
    border: 2px solid rgba(255,255,255,0.05) !important;
    background: rgba(255,255,255,0.02) !important;
}

.form-group input:focus {
    border-color: var(--patch-primary) !important;
    background: rgba(255, 106, 0, 0.05) !important;
}

.form-group label {
    font-size: 0.7rem !important;
    color: var(--patch-primary) !important;
    margin-bottom: 8px !important;
}

.cta-group .btn-primary {
    height: 60px !important;
    font-size: 1.1rem !important;
    letter-spacing: 1px !important;
}
