/* ============================================================
   INOVA-ANIM.CSS · Sistema de animações premium
   Portado da landing Claude Design (Rede Inova Centro Muriaé)
   ============================================================ */

/* ---------- KEYFRAMES BASE ---------- */
@keyframes inova-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes inova-scale-in {
  from { opacity: 0; transform: scale(0.96) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes inova-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}
@keyframes inova-grad-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes inova-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(24px, -36px) scale(1.06); }
}
@keyframes inova-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-30px, 28px) scale(0.96); }
}
@keyframes inova-shimmer {
  0%   { transform: translateX(-130%) skewX(-20deg); }
  100% { transform: translateX(260%) skewX(-20deg); }
}
@keyframes inova-bob {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-8deg) translateY(-6px); }
}
@keyframes inova-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes inova-confete {
  0%   { transform: translateY(0) rotate(0deg);   opacity: 1; }
  100% { transform: translateY(520px) rotate(720deg); opacity: 0; }
}
@keyframes inova-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}
@keyframes inova-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- CLASSES UTILITÁRIAS ---------- */

/* Entrada suave (use em elementos que aparecem) */
.inova-fade-in  { animation: inova-fade-in  0.32s cubic-bezier(.2,.7,.2,1) both; }
.inova-scale-in { animation: inova-scale-in 0.36s cubic-bezier(.2,.7,.2,1) both; }

/* Erro tremendo (use em input inválido / formulário rejeitado) */
.inova-shake { animation: inova-shake 0.4s cubic-bezier(.36,.07,.19,.97) both; }

/* Tilt suave (use em cards de produto no hover) */
.inova-tilt {
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s, border-color 0.3s;
  transform-style: preserve-3d;
}
.inova-tilt:hover {
  transform: translateY(-4px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 18px 40px -16px rgba(200, 16, 46, 0.25);
}

/* Gradiente animado em texto (use no <h1> do hero) */
.inova-grad-text {
  background: linear-gradient(120deg, #c8102e 0%, #FF6B7A 25%, #FF3A4D 50%, #A00C24 75%, #c8102e 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: inova-grad-shift 7s ease-in-out infinite;
}
/* Spans aninhados (palavras destacadas no h1) herdam o gradient ao invés de cor sólida */
.inova-grad-text span,
.inova-grad-text strong,
.inova-grad-text em {
  color: inherit;
  background: inherit;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: inherit;
}

/* Float (orbs decorativos de fundo) */
.inova-float-a { animation: inova-float   14s ease-in-out infinite; }
.inova-float-b { animation: inova-float-2 18s ease-in-out infinite; }

/* Shimmer reflexivo (use em botões CTA principais) */
.inova-shimmer { position: relative; overflow: hidden; isolation: isolate; }
.inova-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-130%) skewX(-20deg);
  animation: inova-shimmer 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.inova-shimmer > * { position: relative; z-index: 2; }

/* Bobbing sticker (selos com pequeno balanço) */
.inova-bob { animation: inova-bob 3s ease-in-out infinite; }

/* Spin lento (selos de garantia rotacionando) */
.inova-spin-slow { animation: inova-spin-slow 22s linear infinite; }

/* Pulse dot (use em "Aberto agora") */
.inova-pulse-dot { animation: inova-pulse-dot 2s ease-in-out infinite; }

/* Marquee (use em barra de promos no topo) */
.inova-marquee-track {
  display: inline-flex;
  animation: inova-marquee 40s linear infinite;
}

/* ---------- SCROLLBAR MODERNA ---------- */
.inova-scroll::-webkit-scrollbar { width: 6px; height: 6px; }
.inova-scroll::-webkit-scrollbar-track { background: transparent; }
.inova-scroll::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.12);
  border-radius: 9999px;
  transition: background 0.2s;
}
.inova-scroll:hover::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.22); }
.inova-scroll { scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.15) transparent; }

/* Scrollbar global discreta (page-wide) */
html::-webkit-scrollbar { width: 10px; }
html::-webkit-scrollbar-track { background: #f3f4f6; }
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d1d5db 0%, #9ca3af 100%);
  border-radius: 9999px;
  border: 2px solid #f3f4f6;
}
html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c8102e 0%, #A00C24 100%);
}

/* ---------- LINE-CLAMP (truncar texto em N linhas) ---------- */
.inova-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.inova-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- REVEAL ON SCROLL (controlado por JS) ---------- */
.inova-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.inova-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- ORBS DECORATIVOS NO HERO ---------- */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.42;
}
.hero-orb-a {
  width: 380px; height: 380px;
  top: -120px; left: -80px;
  background: radial-gradient(circle, #c8102e 0%, transparent 70%);
}
.hero-orb-b {
  width: 460px; height: 460px;
  bottom: -160px; right: -120px;
  background: radial-gradient(circle, #FF6B7A 0%, transparent 70%);
}

/* ---------- TOPO-FAIXA · status + aviso ---------- */
.topo-faixa {
  background: #0f0f10;
  color: #e5e5e8;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
}
.topo-faixa-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topo-aviso-texto {
  font-weight: 600;
  color: #d1d1d6;
  font-size: 12px;
}
@media (max-width: 640px) {
  .topo-faixa-row { justify-content: center; }
  .topo-aviso-texto { display: none; }
}

/* ---------- HEADER · "Aberto agora" pulsante ---------- */
.inova-aberto-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #047857;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.inova-aberto-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  animation: inova-pulse-dot 2s ease-in-out infinite;
}
.inova-aberto-pill.fechado {
  background: rgba(239, 68, 68, 0.10);
  border-color: rgba(239, 68, 68, 0.35);
  color: #b91c1c;
}
.inova-aberto-pill.fechado::before { background: #ef4444; animation: none; }

/* ---------- NEWSLETTER WHATS · bloco premium antes do footer ---------- */
.newsletter-whats {
  background: linear-gradient(135deg, #0f0f10 0%, #1a1a1c 100%);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-whats::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.newsletter-whats-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .newsletter-whats-row { grid-template-columns: 1fr; gap: 24px; }
}
.nw-info h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 12px 0 8px;
}
.nw-info p {
  font-size: 14px;
  color: #a1a1aa;
  max-width: 460px;
  line-height: 1.5;
  margin: 0;
}
.nw-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.35);
  color: #6ee7b7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
}
.nw-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 12px;
}
.nw-form-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nw-form input[type="tel"] {
  flex: 1;
  min-width: 180px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  padding: 12px 16px;
  font-family: inherit;
}
.nw-form input[type="tel"]::placeholder { color: #6b7280; }
.nw-form .cta {
  background: #10B981 !important;
  color: #fff !important;
  border: none;
  padding: 12px 20px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}
.nw-form .cta:hover { background: #0EA371 !important; }
.nw-form .cta:active { transform: scale(0.97); }
.nw-form .cta:disabled { background: #4b5563 !important; cursor: not-allowed; }
.nw-lgpd {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 11px;
  margin-top: 10px;
  padding: 0 4px;
}
.nw-feedback {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
}
.nw-feedback.ok {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.35);
  color: #6ee7b7;
}
.nw-feedback.erro {
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.35);
  color: #fca5a5;
}

/* ---------- ASSISTENTE BLOCO · cards de pedido por motivo ---------- */
.assistente-bloco {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #fef2f2 100%);
  padding: 60px 0;
}
.assistente-grade {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.assistente-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 14px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.assistente-card:hover {
  border-color: #10b981;
  box-shadow: 0 12px 28px -12px rgba(16,185,129,0.35);
}
.assistente-emoji {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}
.assistente-card strong {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #111;
}
.assistente-card small {
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.assistente-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
}

/* ---------- FAB WHATSAPP INTELIGENTE ---------- */
.inova-fab {
  position: relative;
  isolation: isolate;
  transition: opacity 0.35s, transform 0.35s, visibility 0.35s;
}
.inova-fab.is-hidden {
  opacity: 0;
  transform: translateY(14px) scale(0.85);
  pointer-events: none;
  visibility: hidden;
}
.inova-fab-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.45);
  animation: inova-fab-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes inova-fab-ping {
  0%   { transform: scale(0.8); opacity: 0.8; }
  75%, 100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- AVATAR leIA · animações e variantes ---------- */
.leia-avatar { display: inline-block; vertical-align: middle; }
.leia-avatar-anim svg { animation: leia-blink 5s ease-in-out infinite; }
@keyframes leia-blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95%, 97%      { transform: scaleY(0.1); }
}
.leia-hero-avatar {
  display: inline-block;
  margin-bottom: 8px;
  filter: drop-shadow(0 8px 16px rgba(16,185,129,0.25));
}
.bloco-head-assistente {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.leia-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}
.leia-head .leia-avatar { flex-shrink: 0; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12)); }
.leia-head-info { flex: 1; display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.leia-head-info strong { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 800; }
.leia-head-info small { font-size: 11px; color: #6b7280; display: flex; align-items: center; gap: 4px; }
.leia-online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  animation: inova-pulse-dot 2s ease-in-out infinite;
}
.float-chat { line-height: 0; padding: 0; overflow: visible; }

/* ---------- FOTOS · slots dragáveis no admin ---------- */
.fotos-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.foto-slot {
  background: #f8f9fb;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.foto-slot:hover { border-color: #c8102e; }
.foto-slot-preview {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.foto-slot-preview img { width: 100%; height: 100%; object-fit: cover; }
.foto-slot-placeholder { font-size: 32px; opacity: 0.4; }
.foto-slot strong { font-size: 13px; font-weight: 700; color: #111; }
.foto-slot small { font-size: 11px; color: #6b7280; }
.foto-slot-acoes { display: flex; gap: 6px; }
.btn-mini {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-mini.btn-upload { background: #c8102e; color: #fff; border-color: #c8102e; }
.btn-mini.btn-remover { color: #b91c1c; }

/* ---------- FOTOS REAIS · galeria fachada/equipe ---------- */
.fotos-reais { padding: 60px 0; }
.fotos-reais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.foto-real-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 12px 30px -16px rgba(0,0,0,0.25);
  background: #f3f4f6;
}
.foto-real-card img { width: 100%; height: 100%; object-fit: cover; }
.foto-real-card figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72));
  color: #fff;
  padding: 24px 16px 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
}

/* ---------- leIA PROATIVA · balão flutuante ---------- */
.leia-proativa {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9998;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 340px;
  animation: leia-prox-pop 0.5s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes leia-prox-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.leia-proativa.saindo {
  animation: leia-prox-out 0.35s cubic-bezier(.4,0,.6,1) forwards;
}
@keyframes leia-prox-out {
  to { opacity: 0; transform: translateY(20px) scale(0.85); }
}
.leia-prox-avatar { flex-shrink: 0; }
.leia-prox-bubble { flex: 1; }
.leia-prox-bubble strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #111;
  margin-bottom: 4px;
}
.leia-prox-bubble p {
  margin: 0 0 10px;
  font-size: 13px;
  color: #374151;
  line-height: 1.4;
}
.leia-prox-cta {
  background: #c8102e;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.leia-prox-cta:hover { background: #A00C24; }
.leia-prox-cta:active { transform: scale(0.96); }
.leia-prox-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #9ca3af;
  cursor: pointer;
  padding: 2px 6px;
}
.leia-prox-close:hover { color: #111; }
@media (max-width: 640px) {
  .leia-proativa {
    bottom: 80px;
    right: 12px;
    left: 12px;
    max-width: none;
  }
}

/* ---------- PÁGINA /PROMOCOES ---------- */
.promo-hero {
  position: relative;
  background: linear-gradient(135deg, #0f0f10 0%, #1f1f22 60%, #3a0a13 100%);
  color: #fff;
  padding: 80px 0 60px;
  overflow: hidden;
  text-align: center;
}
.promo-hero .container { position: relative; z-index: 2; }
.promo-hero .kicker {
  display: inline-block;
  color: #FF6B7A;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.promo-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 14px;
}
.promo-hero p {
  font-size: 17px;
  color: #d1d5db;
  max-width: 580px;
  margin: 0 auto 28px;
}
.promo-hero-stats {
  display: inline-flex;
  gap: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 18px 30px;
}
.promo-stat strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #FF6B7A;
  line-height: 1;
}
.promo-stat small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

.promo-cupons { padding: 60px 0; background: #fafafa; }
.cupons-grade {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.cupom-card {
  background: #fff;
  border: 2px dashed #c8102e;
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cupom-card::before {
  content: "";
  position: absolute;
  left: -8px; top: 50%; width: 16px; height: 16px;
  background: #fafafa;
  border-radius: 50%;
  transform: translateY(-50%);
}
.cupom-card::after {
  content: "";
  position: absolute;
  right: -8px; top: 50%; width: 16px; height: 16px;
  background: #fafafa;
  border-radius: 50%;
  transform: translateY(-50%);
}
.cupom-card.cupom-frete {
  border-color: #10b981;
  background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
}
.cupom-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: #c8102e;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.cupom-card.cupom-frete .cupom-desc { color: #10b981; font-size: 22px; }
.cupom-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #6b7280;
}
.cupom-codigo-box {
  display: flex;
  margin: 12px 0 8px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.cupom-codigo-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 10px;
  font-family: 'Manrope', monospace;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.08em;
  color: #111;
  background: transparent;
}
.cupom-copiar {
  background: #111;
  color: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.cupom-copiar.copiado { background: #10b981; }
.cupom-descricao { font-size: 12px; color: #4b5563; margin: 8px 0 4px; }
.cupom-validade, .cupom-restantes { display: block; font-size: 11px; color: #6b7280; }

.promo-compartilhar {
  background: linear-gradient(135deg, #c8102e 0%, #A00C24 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.promo-compartilhar h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  margin: 0 0 8px;
}
.promo-compartilhar p { color: rgba(255,255,255,0.85); margin: 0 0 22px; }
.promo-share-acoes { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.promo-share-acoes .cta-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 20px;
  border-radius: 9999px;
  font-weight: 800;
  cursor: pointer;
}

/* ---------- HERO COUNTDOWN (fecha em XhYmin) ---------- */
.hero-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.hero-countdown svg { animation: inova-spin-slow 60s linear infinite; }

/* ---------- BUSCA POR VOZ ---------- */
.busca-mic {
  background: transparent;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.busca-mic:hover { color: #c8102e; background: rgba(200,16,46,0.08); }
.busca-mic.escutando {
  color: #fff;
  background: #c8102e;
  animation: leia-mic-pulse 1s ease-in-out infinite;
}
@keyframes leia-mic-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,16,46,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(200,16,46,0); }
}

/* ---------- MODO ESCURO (auto após 19h) ---------- */
html[data-theme="dark"] body { background: #0f0f10 !important; color: #e5e7eb !important; }
html[data-theme="dark"] .header { background: #1a1a1c !important; border-color: #2a2a2c !important; }
html[data-theme="dark"] .header-link { color: #d1d5db !important; }
html[data-theme="dark"] .busca input { background: #2a2a2c !important; color: #fff !important; border-color: #3a3a3c !important; }
html[data-theme="dark"] .busca input::placeholder { color: #6b7280 !important; }
html[data-theme="dark"] .categorias-bar { background: #1a1a1c !important; border-color: #2a2a2c !important; }
html[data-theme="dark"] .cat-rapida { color: #d1d5db !important; }
html[data-theme="dark"] .info-strip { background: #1a1a1c !important; }
html[data-theme="dark"] .info-card { color: #d1d5db !important; }
html[data-theme="dark"] .prod-card,
html[data-theme="dark"] .card,
html[data-theme="dark"] .auth-card,
html[data-theme="dark"] .selo-card,
html[data-theme="dark"] .ps-card,
html[data-theme="dark"] .assistente-card,
html[data-theme="dark"] .cupom-card,
html[data-theme="dark"] .foto-real-card { background: #1a1a1c !important; border-color: #2a2a2c !important; color: #e5e7eb !important; }
html[data-theme="dark"] .prod-card h3 a,
html[data-theme="dark"] .assistente-card strong { color: #f9fafb !important; }
html[data-theme="dark"] .faixa-tematica,
html[data-theme="dark"] .banner-meio,
html[data-theme="dark"] .prova-social,
html[data-theme="dark"] .fotos-reais,
html[data-theme="dark"] .promo-cupons,
html[data-theme="dark"] .assistente-bloco,
html[data-theme="dark"] .marcas-strip { background: #0f0f10 !important; }
html[data-theme="dark"] html::-webkit-scrollbar-track { background: #1a1a1c !important; }

/* ---------- ACESSIBILIDADE · respeita prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  .inova-fade-in, .inova-scale-in, .inova-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
