/* ============================================================================
   INOVA DROGARIA · DESIGN SYSTEM v2 (inova-ds.css)
   ----------------------------------------------------------------------------
   Camada visual nova — carregada DEPOIS de public.css pra sobrepor.
   Tokens oficiais (Preto/Branco/Vermelho + amarelo oferta + Pix turquesa).
   Premium hover, glassmorphism, shimmer, scroll reveal, magnetic, tilt 3D.
   ========================================================================== */

:root {
  /* CORES ESSENCIAIS ─────────────────────────────────────────── */
  --color-primary:        #c8102e;   /* vermelho Inova */
  --color-primary-hover:  #a50d24;
  --color-primary-deep:   #7a0817;
  --color-bg:             #ffffff;
  --color-bg-soft:        #f5f5f7;
  --color-bg-darker:      #ececef;
  --color-text:           #1a1a1a;
  --color-text-soft:      #404048;
  --color-text-muted:     #666670;
  --color-text-faint:     #9a9aa1;
  --color-border:         #e5e5e8;
  --color-border-soft:    #f0f0f3;

  /* DESTAQUES COMERCIAIS ─────────────────────────────────────── */
  --color-badge-oferta:   #ffd200;   /* amarelo oferta */
  --color-badge-text:     #2a1a00;   /* contraste no amarelo */
  --color-star:           #ffb800;
  --color-pix:            #32bcad;   /* Pix oficial */
  --color-success:        #00875a;
  --color-success-soft:   #e6f5ee;
  --color-warning:        #ff8c1a;
  --color-info:           #0066ff;

  /* TIPOGRAFIA ──────────────────────────────────────────────── */
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Manrope', 'Inter', sans-serif;

  /* ESCALA TIPOGRÁFICA fluida ─────────────────────────────────── */
  --fs-12: clamp(11px, 0.72vw + 9px, 12px);
  --fs-13: clamp(12px, 0.78vw + 10px, 13px);
  --fs-14: clamp(13px, 0.86vw + 11px, 14px);
  --fs-16: clamp(14px, 1vw + 12px, 16px);
  --fs-18: clamp(16px, 1.1vw + 13px, 18px);
  --fs-22: clamp(18px, 1.4vw + 14px, 22px);
  --fs-28: clamp(22px, 1.9vw + 16px, 28px);
  --fs-36: clamp(26px, 2.6vw + 18px, 36px);
  --fs-48: clamp(32px, 3.8vw + 20px, 48px);
  --fs-64: clamp(40px, 5.2vw + 22px, 64px);

  /* ESPAÇAMENTOS — escala consistente ─────────────────────────── */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px;  --sp-6: 24px;  --sp-7: 32px;  --sp-8: 40px;
  --sp-9: 56px;  --sp-10: 72px; --sp-11: 96px; --sp-12: 128px;

  /* RAIOS ─────────────────────────────────────────────────────── */
  --r-2: 4px;  --r-3: 6px;  --r-4: 10px;  --r-5: 14px;
  --r-6: 18px; --r-7: 24px; --r-pill: 999px;

  /* SOMBRAS PREMIUM (suaves e profundas) ─────────────────────── */
  --shadow-xs:  0 1px 2px rgba(15,15,16,.04), 0 1px 1px rgba(15,15,16,.03);
  --shadow-sm:  0 2px 6px rgba(15,15,16,.05), 0 1px 2px rgba(15,15,16,.04);
  --shadow-md:  0 6px 16px rgba(15,15,16,.07), 0 2px 4px rgba(15,15,16,.04);
  --shadow-lg:  0 12px 24px rgba(15,15,16,.12), 0 4px 8px rgba(15,15,16,.06);
  --shadow-xl:  0 24px 48px rgba(15,15,16,.16), 0 8px 16px rgba(15,15,16,.08);
  --shadow-red: 0 16px 32px rgba(200,16,46,.22), 0 4px 12px rgba(200,16,46,.18);
  --shadow-yellow: 0 8px 24px rgba(255,210,0,.36);

  /* GRADIENTES ────────────────────────────────────────────────── */
  --grad-red:    linear-gradient(135deg, #c8102e 0%, #a50d24 55%, #7a0817 100%);
  --grad-red-soft: linear-gradient(135deg, #ff4d6b 0%, #c8102e 100%);
  --grad-dark:   linear-gradient(135deg, #1a1a1a 0%, #2a2a2e 50%, #1a1a1a 100%);
  --grad-gold:   linear-gradient(135deg, #ffd200 0%, #ffb800 100%);

  /* CURVAS DE EASING ─────────────────────────────────────────── */
  --ease-out-soft:  cubic-bezier(.22,.61,.36,1);
  --ease-out-back:  cubic-bezier(.34,1.56,.64,1);
  --ease-in-out:    cubic-bezier(.65,0,.35,1);

  /* CONTAINER ─────────────────────────────────────────────────── */
  --container-max: 1280px;
  --container-pad: 24px;
}

/* ============================================================================
   RESET FINO E TIPOGRAFIA BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto } }
body {
  font-family: var(--font-sans);
  font-feature-settings: 'cv11','ss01','ss03';
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  line-height: 1.55;
}
h1, h2, h3, h4, h5 { font-family: var(--font-display); letter-spacing: -0.025em; line-height: 1.1 }
::selection { background: var(--color-primary); color: #fff }

img, picture, svg, video { display: block; max-width: 100% }
button { font-family: inherit; cursor: pointer }
input, textarea, select { font-family: inherit; color: inherit }

/* Container global (sobrepõe public.css quando aplicável) */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad) }

/* ============================================================================
   SKIP-LINKS (A11y obrigatório)
   ========================================================================== */
.skip-links { position: absolute; left: -9999px; top: 0; z-index: 9999 }
.skip-links a {
  position: absolute; left: 12px; top: 12px;
  padding: 10px 18px; background: var(--color-text); color: #fff;
  border-radius: var(--r-pill); font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity .18s, transform .18s var(--ease-out-back);
}
.skip-links a:focus { opacity: 1; pointer-events: auto; transform: translateY(0); outline: 3px solid var(--color-primary); outline-offset: 3px }

/* ============================================================================
   TOPBAR PROMOCIONAL — faixa fina superior
   ========================================================================== */
.ds-topbar {
  background: linear-gradient(90deg, #0f0f10 0%, #1a1a1a 50%, #0f0f10 100%);
  color: #fff; font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em; position: relative; z-index: 60;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ds-topbar-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 36px; padding: 6px 24px;
  max-width: var(--container-max); margin: 0 auto;
}
.ds-topbar-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap }
.ds-topbar-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
}
.ds-topbar-pill.live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #10b981; box-shadow: 0 0 0 4px rgba(16,185,129,.25);
  animation: ds-pulse-dot 1.6s infinite;
}
.ds-topbar-pill.live.fechado::before { background: #f87171; box-shadow: 0 0 0 4px rgba(248,113,113,.25) }
.ds-topbar-rotativo {
  flex: 1; min-width: 0; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  overflow: hidden; position: relative; min-height: 18px;
}
.ds-topbar-rotativo .rt-msg {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap; opacity: 0;
  transition: opacity .6s var(--ease-out-soft), transform .6s var(--ease-out-soft);
}
.ds-topbar-rotativo .rt-msg.ativo { opacity: 1; transform: translate(-50%, -50%) }
.ds-topbar-rotativo strong { color: #ffd200; font-weight: 800 }
.ds-topbar-right { display: flex; align-items: center; gap: 14px }
.ds-topbar-right a { color: #fff; opacity: .85; transition: opacity .2s }
.ds-topbar-right a:hover { opacity: 1 }
.ds-topbar-right a.has-ic { display: inline-flex; align-items: center; gap: 5px }

@keyframes ds-pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1 }
  50%      { transform: scale(1.2); opacity: .7 }
}

@media (max-width: 720px) {
  .ds-topbar-row { padding: 6px 16px }
  .ds-topbar-right { display: none }
  .ds-topbar-left .ds-topbar-pill:not(.live) { display: none }
}

/* ============================================================================
   HEADER PRINCIPAL — sticky, glass-bottom, premium
   ========================================================================== */
.ds-header {
  position: sticky; top: 0; z-index: 50; background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 0 rgba(15,15,16,.02);
  transition: box-shadow .25s var(--ease-out-soft);
}
.ds-header.is-scrolled { box-shadow: var(--shadow-md) }

.ds-header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 28px;
  padding: 14px var(--container-pad);
  max-width: var(--container-max); margin: 0 auto;
}

/* Logo */
.ds-logo { display: inline-flex; align-items: center; gap: 10px }
.ds-logo img { height: 46px; width: auto; display: block }
.ds-logo:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 4px; border-radius: 6px }

/* Bloco central: CEP + busca */
.ds-header-center { display: flex; align-items: center; gap: 14px; min-width: 0 }

/* Botão CEP (modal trigger) */
.ds-cep-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--r-4);
  border: 1px solid var(--color-border); background: var(--color-bg-soft);
  font-size: 12px; font-weight: 600; color: var(--color-text);
  cursor: pointer; transition: all .2s var(--ease-out-soft);
  white-space: nowrap; max-width: 220px;
}
.ds-cep-btn:hover { border-color: var(--color-primary); background: #fff; box-shadow: var(--shadow-sm) }
.ds-cep-btn .pin {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grad-red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ds-cep-btn .info { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; min-width: 0 }
.ds-cep-btn .info small { font-size: 10px; color: var(--color-text-muted); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600 }
.ds-cep-btn .info strong { font-size: 13px; color: var(--color-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 160px }

/* Busca pill */
.ds-busca {
  flex: 1; min-width: 0; position: relative;
  display: flex; align-items: center;
  background: #fff; border-radius: var(--r-pill);
  border: 2px solid var(--color-border);
  transition: border-color .2s, box-shadow .2s;
}
.ds-busca:focus-within { border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(200,16,46,.1) }
.ds-busca .ic-busca {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; color: var(--color-text-muted);
}
.ds-busca input {
  flex: 1; min-width: 0; height: 44px; border: none; outline: none;
  background: transparent; font-size: 15px; color: var(--color-text);
  padding: 0 8px;
}
.ds-busca input::placeholder { color: var(--color-text-faint) }
.ds-busca button[type="submit"] {
  height: 44px; padding: 0 22px; margin-right: 4px;
  background: var(--grad-red); color: #fff; border: none;
  border-radius: var(--r-pill); font-weight: 800; font-size: 13px;
  letter-spacing: 0.06em; transition: transform .15s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.ds-busca button[type="submit"]:hover { transform: translateY(-1px); box-shadow: var(--shadow-red) }
.ds-busca button[type="submit"]:active { transform: translateY(0) }
.ds-busca .busca-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border-radius: var(--r-5);
  box-shadow: var(--shadow-xl); border: 1px solid var(--color-border-soft);
  max-height: 480px; overflow-y: auto; z-index: 30; padding: 8px;
}

/* Ações: cashback, conta, carrinho */
.ds-header-acoes { display: flex; align-items: center; gap: 8px }
.ds-acao {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: var(--r-4);
  font-size: 12px; font-weight: 700; color: var(--color-text);
  transition: background .2s, color .2s;
}
.ds-acao:hover { background: var(--color-bg-soft); color: var(--color-primary) }
.ds-acao .ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-bg-soft); display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-text); transition: background .2s, color .2s;
}
.ds-acao:hover .ic { background: var(--color-primary); color: #fff }
.ds-acao .label { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; letter-spacing: 0.02em }
.ds-acao .label small { font-size: 10px; color: var(--color-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em }
.ds-acao .label strong { font-size: 13px; color: inherit }

.ds-acao .badge-mini {
  position: absolute; top: 2px; left: 30px; min-width: 18px; height: 18px;
  padding: 0 5px; background: var(--color-primary); color: #fff;
  border-radius: var(--r-pill); font-size: 10px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 2px #fff;
}

/* CATEGORIAS BAR */
.ds-cats-bar {
  background: #fff; border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border);
}
.ds-cats-row {
  display: flex; align-items: center; gap: 6px;
  padding: 0 var(--container-pad); max-width: var(--container-max); margin: 0 auto;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.ds-cats-row::-webkit-scrollbar { display: none }
.ds-megamenu-btn {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  padding: 14px 18px; background: var(--color-text); color: #fff;
  border: none; font-weight: 800; font-size: 12px;
  letter-spacing: 0.08em; cursor: pointer; transition: background .2s;
  border-radius: 0;
}
.ds-megamenu-btn:hover { background: var(--color-primary) }
.ds-megamenu-btn[aria-expanded="true"] { background: var(--color-primary) }
.ds-cat-link {
  position: relative; flex-shrink: 0;
  padding: 14px 14px; font-size: 12px; font-weight: 700;
  color: var(--color-text-soft); letter-spacing: 0.04em;
  white-space: nowrap; transition: color .2s;
}
.ds-cat-link:hover { color: var(--color-primary) }
.ds-cat-link::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--marca-cor, var(--color-primary));
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease-out-soft);
}
.ds-cat-link:hover::after { transform: scaleX(1) }
.ds-cat-link.destaque {
  color: var(--color-primary);
  background: linear-gradient(180deg, transparent 70%, rgba(200,16,46,.06) 100%);
}
.ds-cat-link.destaque-promo { color: #00875a }

/* MEGA-MENU drop */
.ds-megamenu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; box-shadow: var(--shadow-xl);
  border-top: 1px solid var(--color-border);
  z-index: 40; opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .25s, transform .25s var(--ease-out-soft);
}
.ds-megamenu[aria-hidden="false"] { opacity: 1; transform: translateY(0); pointer-events: auto }
.ds-megamenu-grid {
  display: grid; grid-template-columns: 1.1fr 1.1fr 1fr 0.9fr;
  gap: 28px; padding: 36px var(--container-pad);
  max-width: var(--container-max); margin: 0 auto;
}
.ds-mm-col strong.ds-mm-titulo {
  display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  color: var(--color-text-muted); text-transform: uppercase;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
}
.ds-mm-cats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.ds-mm-cat {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--r-3);
  font-size: 13px; font-weight: 600; color: var(--color-text);
  transition: background .15s, transform .15s;
}
.ds-mm-cat:hover { background: var(--color-bg-soft); transform: translateX(4px); color: var(--color-primary) }
.ds-mm-cat .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--marca-cor, var(--color-primary));
  flex-shrink: 0; box-shadow: 0 0 0 3px var(--color-bg-soft);
}
.ds-mm-marcas {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.ds-mm-marca {
  display: flex; align-items: center; justify-content: center;
  height: 56px; padding: 10px;
  border: 1px solid var(--color-border); border-radius: var(--r-3);
  background: #fff; transition: all .2s var(--ease-out-soft);
}
.ds-mm-marca:hover { border-color: var(--color-primary); box-shadow: var(--shadow-sm); transform: translateY(-2px) }
.ds-mm-marca img { max-height: 36px; max-width: 100%; object-fit: contain; filter: grayscale(.4); transition: filter .2s }
.ds-mm-marca:hover img { filter: grayscale(0) }
.ds-mm-marca span { font-size: 11px; font-weight: 700; color: var(--color-text-muted); letter-spacing: 0.04em }
.ds-mm-promo {
  background: var(--grad-red); color: #fff; padding: 24px;
  border-radius: var(--r-5); position: relative; overflow: hidden;
}
.ds-mm-promo::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.ds-mm-promo strong.ds-mm-titulo { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.2) }
.ds-mm-promo h4 { font-size: 22px; margin-bottom: 8px; font-weight: 900 }
.ds-mm-promo p { font-size: 13px; opacity: .9; margin-bottom: 16px; position: relative; z-index: 2 }
.ds-mm-promo .ds-mm-cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
  background: #fff; color: var(--color-primary); border-radius: var(--r-pill);
  font-weight: 800; font-size: 12px; letter-spacing: 0.06em;
  transition: transform .2s var(--ease-out-back), box-shadow .2s;
  position: relative; z-index: 2;
}
.ds-mm-promo .ds-mm-cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-lg) }

/* Header responsivo */
@media (max-width: 980px) {
  .ds-header-row { grid-template-columns: auto 1fr auto; gap: 16px; padding: 12px 16px }
  .ds-cep-btn { display: none }
  .ds-acao .label { display: none }
  .ds-acao .badge-mini { left: auto; right: -2px; top: -2px }
  .ds-megamenu-grid { grid-template-columns: 1fr; gap: 24px; padding: 24px 16px }
  .ds-mm-marcas { grid-template-columns: repeat(2, 1fr) }
}
@media (max-width: 640px) {
  .ds-logo img { height: 36px }
  .ds-busca input { font-size: 14px; height: 40px }
  .ds-busca .ic-busca { width: 38px; height: 40px }
  .ds-busca button[type="submit"] { height: 36px; padding: 0 14px; font-size: 11px }
  .ds-acao { padding: 6px 8px }
}

/* ============================================================================
   MODAL CEP
   ========================================================================== */
.ds-modal-backdrop {
  position: fixed; inset: 0; background: rgba(15,15,16,.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  z-index: 100; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.ds-modal-backdrop.aberto { opacity: 1; pointer-events: auto }
.ds-modal-card {
  background: #fff; border-radius: var(--r-6); padding: 32px;
  max-width: 460px; width: 100%; box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(.96);
  transition: transform .3s var(--ease-out-back);
}
.ds-modal-backdrop.aberto .ds-modal-card { transform: translateY(0) scale(1) }
.ds-modal-card h3 {
  font-size: 22px; margin-bottom: 6px; display: flex; align-items: center; gap: 10px;
}
.ds-modal-card h3 svg { color: var(--color-primary) }
.ds-modal-card p { color: var(--color-text-muted); font-size: 14px; margin-bottom: 20px }
.ds-modal-fechar {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--color-bg-soft); color: var(--color-text);
  font-size: 20px; display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.ds-modal-fechar:hover { background: var(--color-border); transform: rotate(90deg) }
.ds-modal-card { position: relative }

.ds-input-float {
  position: relative; margin-bottom: 14px;
}
.ds-input-float input {
  width: 100%; height: 56px; padding: 22px 16px 6px;
  border: 2px solid var(--color-border); border-radius: var(--r-4);
  background: #fff; font-size: 16px; font-weight: 600;
  color: var(--color-text); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.ds-input-float input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(200,16,46,.08) }
.ds-input-float label {
  position: absolute; left: 16px; top: 16px;
  font-size: 14px; color: var(--color-text-muted);
  pointer-events: none; transition: all .2s var(--ease-out-soft);
  background: transparent; padding: 0 4px;
}
.ds-input-float input:focus + label,
.ds-input-float input:not(:placeholder-shown) + label {
  top: -8px; left: 12px; font-size: 11px; color: var(--color-primary);
  background: #fff; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.ds-modal-card .cta { width: 100%; height: 52px; font-size: 14px }

/* ============================================================================
   HERO + ELEMENTOS DA HOME
   ========================================================================== */
.ds-hero {
  position: relative; overflow: hidden;
  background: var(--grad-dark);
  min-height: 540px;
}
.ds-hero-track {
  position: relative; height: 540px;
  display: flex; transition: transform .8s var(--ease-out-soft);
}
.ds-hero-slide {
  flex: 0 0 100%; position: relative; min-width: 100%;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.ds-hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,15,16,.85) 0%, rgba(15,15,16,.55) 40%, rgba(15,15,16,.2) 70%, transparent 100%);
}
.ds-hero-slide.dir::after {
  background: linear-gradient(255deg, rgba(15,15,16,.85) 0%, rgba(15,15,16,.55) 40%, rgba(15,15,16,.2) 70%, transparent 100%);
}
.ds-hero-content {
  position: relative; z-index: 3; color: #fff;
  max-width: 620px; padding: 60px 0;
}
.ds-hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  color: #ffd200; margin-bottom: 22px;
}
.ds-hero-content h1 {
  font-size: var(--fs-64); font-weight: 900; line-height: 1.02;
  letter-spacing: -0.03em; margin-bottom: 18px;
}
.ds-hero-content h1 .accent {
  background: linear-gradient(180deg, #fff 60%, #ffd200 60%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ds-hero-content p {
  font-size: var(--fs-18); color: rgba(255,255,255,.85);
  margin-bottom: 30px; max-width: 520px; line-height: 1.5;
}
.ds-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center }
.ds-hero-actions .micro {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.9); font-size: 13px; font-weight: 600;
  padding: 12px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.06); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
}
.ds-hero-actions .micro strong { color: #ffd200 }

/* Badge promo no canto */
.ds-hero-medal {
  position: absolute; right: 6%; top: 50%;
  transform: translateY(-50%); z-index: 3;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--grad-gold); color: #2a1a00;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; line-height: 1;
  box-shadow: var(--shadow-yellow);
  animation: ds-medal-spin 22s linear infinite, ds-medal-bob 4s ease-in-out infinite;
}
.ds-hero-medal::before {
  content: ''; position: absolute; inset: 8px;
  border: 2px dashed rgba(42,26,0,.32);
  border-radius: 50%;
  animation: ds-medal-counter 18s linear infinite;
}
.ds-hero-medal small { font-size: 11px; letter-spacing: 0.2em; opacity: .8 }
.ds-hero-medal strong { font-size: 48px; line-height: 1; margin: 2px 0 }
.ds-hero-medal span { font-size: 14px; font-weight: 800; letter-spacing: 0.1em }
@keyframes ds-medal-spin { to { transform: translateY(-50%) rotate(360deg) } }
@keyframes ds-medal-counter { to { transform: rotate(-360deg) } }
@keyframes ds-medal-bob {
  50% { filter: drop-shadow(0 16px 32px rgba(255,210,0,.5)) }
}

/* Controles do hero */
.ds-hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 4; transition: all .2s var(--ease-out-soft);
}
.ds-hero-arrow:hover { background: var(--color-primary); border-color: var(--color-primary); transform: translateY(-50%) scale(1.06) }
.ds-hero-arrow.prev { left: 24px } .ds-hero-arrow.next { right: 24px }
.ds-hero-dots {
  position: absolute; bottom: 24px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px; z-index: 4;
}
.ds-hero-dot {
  width: 28px; height: 4px; border-radius: 2px; border: none;
  background: rgba(255,255,255,.3); cursor: pointer;
  transition: background .2s, transform .2s;
}
.ds-hero-dot.ativo { background: #ffd200; width: 44px }
.ds-hero-dot:hover { background: rgba(255,255,255,.6) }

@media (max-width: 840px) {
  .ds-hero, .ds-hero-track { min-height: 420px; height: auto }
  .ds-hero-track { height: auto }
  .ds-hero-slide { padding: 40px 0 }
  .ds-hero-content { padding: 30px 0; text-align: left }
  .ds-hero-medal { display: none }
  .ds-hero-arrow { display: none }
}

/* ============================================================================
   STORY CARDS — círculos com scroll horizontal
   ========================================================================== */
.ds-stories {
  padding: 36px 0 8px;
}
.ds-stories-scroll {
  display: flex; gap: 18px; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 20px; margin: 0 -4px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.ds-stories-scroll::-webkit-scrollbar { display: none }
.ds-story {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 10px;
  scroll-snap-align: start; transition: transform .25s var(--ease-out-back);
  width: 96px;
}
.ds-story:hover { transform: translateY(-4px) }
.ds-story-ring {
  width: 88px; height: 88px; border-radius: 50%;
  background: conic-gradient(from 180deg, var(--marca-cor, var(--color-primary)), #ffd200, var(--marca-cor, var(--color-primary)));
  padding: 3px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease-out-back), filter .25s;
}
.ds-story:hover .ds-story-ring { filter: drop-shadow(0 8px 16px rgba(200,16,46,.25)) }
.ds-story-ring-inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: inset 0 0 0 2px #fff;
}
.ds-story-ring-inner img { width: 100%; height: 100%; object-fit: cover }
.ds-story-ring-inner .emoji { font-size: 36px; line-height: 1 }
.ds-story strong {
  font-size: 11px; font-weight: 800; text-align: center;
  letter-spacing: 0.04em; color: var(--color-text);
  text-transform: uppercase; line-height: 1.2;
}

/* ============================================================================
   BARRA DE BENEFÍCIOS (6 chips conversão Tamoio-style)
   ========================================================================== */
.ds-beneficios {
  background: #fff; padding: 20px 0;
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}
.ds-beneficios-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.ds-beneficio {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: var(--r-5);
  background: var(--color-bg-soft); border: 1px solid transparent;
  transition: all .25s var(--ease-out-soft);
  position: relative; overflow: hidden;
}
.ds-beneficio:hover {
  background: #fff; border-color: var(--color-border);
  transform: translateY(-3px); box-shadow: var(--shadow-md);
}
.ds-beneficio::before {
  content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 100%;
  background: var(--ben-cor, var(--color-primary));
  transform: scaleY(0); transition: transform .25s var(--ease-out-soft);
}
.ds-beneficio:hover::before { transform: scaleY(1) }
.ds-beneficio-ic {
  width: 42px; height: 42px; border-radius: var(--r-3);
  background: var(--ben-cor-soft, rgba(200,16,46,.08));
  color: var(--ben-cor, var(--color-primary));
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .25s var(--ease-out-back);
}
.ds-beneficio:hover .ds-beneficio-ic { transform: rotate(-8deg) scale(1.08) }
.ds-beneficio-txt { display: flex; flex-direction: column; line-height: 1.2; min-width: 0 }
.ds-beneficio-txt strong { font-size: 13px; font-weight: 800; color: var(--color-text); letter-spacing: -0.01em }
.ds-beneficio-txt small { font-size: 11px; color: var(--color-text-muted); font-weight: 500; margin-top: 2px }
.ds-beneficio-txt strong .pix-logo {
  display: inline-flex; align-items: center; gap: 4px; color: var(--color-pix);
}

@media (max-width: 980px) { .ds-beneficios-grid { grid-template-columns: repeat(3, 1fr) } }
@media (max-width: 640px) {
  .ds-beneficios-grid { grid-template-columns: repeat(2, 1fr) }
  .ds-beneficio { padding: 10px 12px }
  .ds-beneficio-ic { width: 36px; height: 36px }
}

/* ============================================================================
   SEÇÕES (vitrines, faixas temáticas) — respiro premium
   ========================================================================== */
.ds-section { padding: 72px 0; position: relative }
.ds-section.compact { padding: 48px 0 }
.ds-section.spacious { padding: 96px 0 }

.ds-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 32px; flex-wrap: wrap;
}
.ds-section-head .left { min-width: 0 }
.ds-section-head .ds-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--color-primary); text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-pill);
  background: rgba(200,16,46,.08); margin-bottom: 12px;
}
.ds-section-head h2 {
  font-size: var(--fs-36); font-weight: 900; line-height: 1.05;
  letter-spacing: -0.025em; color: var(--color-text);
}
.ds-section-head h2 .accent {
  background: var(--grad-red); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ds-section-head p { color: var(--color-text-muted); font-size: 14px; margin-top: 6px; max-width: 540px }
.ds-link-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.06em;
  color: var(--color-primary); padding: 10px 16px;
  border: 2px solid var(--color-primary); border-radius: var(--r-pill);
  transition: all .2s var(--ease-out-soft);
}
.ds-link-all:hover { background: var(--color-primary); color: #fff; transform: translateX(2px) }

.ds-section.dark {
  background: var(--grad-dark); color: #fff;
}
.ds-section.dark .ds-section-head h2 { color: #fff }
.ds-section.dark .ds-section-head p { color: rgba(255,255,255,.7) }
.ds-section.soft { background: var(--color-bg-soft) }

/* Grade de produtos */
.ds-grid-produtos {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 1024px) { .ds-grid-produtos { grid-template-columns: repeat(3, 1fr) } }
@media (max-width: 720px) {
  .ds-grid-produtos { grid-template-columns: repeat(2, 1fr); gap: 12px }
}

/* ============================================================================
   CARD DE PRODUTO v2 — Pacheco-style
   ========================================================================== */
.ds-prod {
  position: relative; background: #fff;
  border: 1px solid var(--color-border-soft); border-radius: var(--r-5);
  padding: 16px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s var(--ease-out-soft), box-shadow .25s, border-color .2s;
  overflow: hidden;
}
.ds-prod:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: var(--color-border);
}
.ds-prod-foto {
  position: relative; aspect-ratio: 1 / 1;
  background: var(--color-bg-soft); border-radius: var(--r-4);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.ds-prod-foto img {
  width: 100%; height: 100%; object-fit: contain; padding: 10px;
  transition: transform .35s var(--ease-out-back);
}
.ds-prod:hover .ds-prod-foto img { transform: scale(1.06) }
.ds-prod-placeholder {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad-red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 900; opacity: .8;
}

/* Badges canto sup esq */
.ds-prod-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start; z-index: 2;
}
.ds-prod-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: var(--r-pill);
  font-size: 10px; font-weight: 900; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ds-prod-badge.oferta {
  background: var(--color-badge-oferta); color: var(--color-badge-text);
  box-shadow: var(--shadow-yellow);
}
.ds-prod-badge.novo { background: var(--color-info); color: #fff }
.ds-prod-badge.frete { background: var(--color-success); color: #fff }

/* Ações flutuantes top-right */
.ds-prod-quick {
  position: absolute; top: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 6px; z-index: 2;
  opacity: 0; transform: translateX(6px);
  transition: opacity .2s, transform .2s;
}
.ds-prod:hover .ds-prod-quick { opacity: 1; transform: translateX(0) }
.ds-prod-quick button {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.95); border: 1px solid var(--color-border);
  color: var(--color-text-soft); display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all .15s;
  box-shadow: var(--shadow-xs);
}
.ds-prod-quick button:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary) }

/* Marca + nome + estrelas */
.ds-prod-marca {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  color: var(--color-text-muted); text-transform: uppercase;
}
.ds-prod-nome {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600; line-height: 1.35;
  color: var(--color-text); min-height: 38px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.ds-prod-nome a:hover { color: var(--color-primary) }
.ds-prod-stars {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px;
  color: var(--color-text-muted);
}
.ds-prod-stars .stars-fill { color: var(--color-star); letter-spacing: 1px; font-size: 12px }

/* Preço — DESTAQUE GIGANTE */
.ds-prod-preco { margin-top: auto; line-height: 1.1 }
.ds-prod-preco .de {
  font-size: 11px; color: var(--color-text-faint); text-decoration: line-through;
  display: inline-block; margin-bottom: 2px; font-weight: 600;
}
.ds-prod-preco .por {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 900; color: var(--color-primary);
  letter-spacing: -0.02em; line-height: 1;
  display: block;
}
.ds-prod-preco .por .real { font-size: 16px; vertical-align: top; margin-right: 2px; opacity: .85 }
.ds-prod-preco .por .cents { font-size: 16px; vertical-align: top; margin-left: 2px; opacity: .85 }
.ds-prod-preco .parcela {
  display: block; font-size: 11px; color: var(--color-text-muted); margin-top: 4px;
}
.ds-prod-preco .parcela strong { color: var(--color-text); font-weight: 800 }

.ds-prod-pix {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 4px; padding: 3px 8px; border-radius: var(--r-3);
  background: rgba(50,188,173,.1); color: var(--color-pix);
  font-size: 11px; font-weight: 700;
}

.ds-prod-pbm {
  margin-top: 4px; display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; color: var(--color-success);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.ds-prod-pbm::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 3px rgba(0,135,90,.18);
}

/* Botão COMPRAR — outline que preenche */
.ds-prod-cta {
  margin-top: 6px; width: 100%; height: 42px;
  background: transparent; color: var(--color-primary);
  border: 2px solid var(--color-primary); border-radius: var(--r-pill);
  font-weight: 800; font-size: 12px; letter-spacing: 0.1em;
  cursor: pointer; position: relative; overflow: hidden;
  transition: color .2s; z-index: 1;
}
.ds-prod-cta::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--grad-red);
  transform: translateY(100%);
  transition: transform .25s var(--ease-out-soft);
}
.ds-prod-cta:hover { color: #fff }
.ds-prod-cta:hover::before { transform: translateY(0) }
.ds-prod-cta:disabled {
  border-color: var(--color-border); color: var(--color-text-faint);
  cursor: not-allowed;
}
.ds-prod-cta:disabled::before { display: none }

@media (max-width: 720px) {
  .ds-prod { padding: 10px }
  .ds-prod-nome { font-size: 13px; min-height: 36px }
  .ds-prod-preco .por { font-size: 24px }
  .ds-prod-cta { height: 38px; font-size: 11px }
}

/* ============================================================================
   BANNER PROVA SOCIAL (Google 4.7 estrelas)
   ========================================================================== */
.ds-google-prova {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px; background: #fff;
  border: 1px solid var(--color-border); border-radius: var(--r-5);
  box-shadow: var(--shadow-sm); max-width: 420px;
}
.ds-google-logo {
  width: 46px; height: 46px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--color-bg-soft);
}
.ds-google-info { line-height: 1.2 }
.ds-google-info .stars {
  color: var(--color-star); font-size: 18px; letter-spacing: 1px;
  font-weight: 900;
}
.ds-google-info strong { font-size: 22px; font-weight: 900; color: var(--color-text); margin-right: 6px }
.ds-google-info small { font-size: 12px; color: var(--color-text-muted); display: block; margin-top: 2px }

/* ============================================================================
   FOOTER classe mundial
   ========================================================================== */
.ds-footer {
  background: #fafafb; color: var(--color-text);
  border-top: 1px solid var(--color-border);
  position: relative;
  padding-top: 56px;
}
.ds-footer-grid {
  display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px;
  padding-bottom: 36px;
}
.ds-footer-col-marca .ds-logo { margin-bottom: 18px }
.ds-footer-col-marca .ds-logo img { height: 50px }
.ds-footer-slogan { color: var(--color-text-muted); font-size: 14px; line-height: 1.5; margin-bottom: 18px; max-width: 320px }

.ds-footer-contato { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px }
.ds-footer-contato li {
  display: flex; align-items: flex-start; gap: 12px; list-style: none;
  font-size: 13px; color: var(--color-text-soft); line-height: 1.4;
}
.ds-footer-contato .ic {
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff; border: 1px solid var(--color-border);
  color: var(--color-primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ds-footer-contato strong { display: block; font-weight: 700; color: var(--color-text); font-size: 13px }
.ds-footer-contato small { color: var(--color-text-muted); font-size: 12px; display: block; margin-top: 2px }

.ds-footer-redes { display: flex; gap: 10px; margin-bottom: 22px }
.ds-footer-redes a {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--color-border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-text-soft);
  transition: all .25s var(--ease-out-back);
}
.ds-footer-redes a:hover { transform: translateY(-3px) scale(1.05); color: #fff; box-shadow: var(--shadow-md) }
.ds-footer-redes a.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent }
.ds-footer-redes a.fb:hover { background: #1877f2; border-color: #1877f2 }
.ds-footer-redes a.wa:hover { background: #25d366; border-color: #25d366 }
.ds-footer-redes a.tt:hover { background: #000; border-color: #000 }

.ds-footer-col h4 {
  font-family: var(--font-display); font-size: 12px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-text); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.ds-footer-col h4::after {
  content: ''; flex: 1; height: 1px; background: var(--color-border);
}
.ds-footer-col ul { list-style: none }
.ds-footer-col ul li { margin-bottom: 9px }
.ds-footer-col ul li a {
  color: var(--color-text-soft); font-size: 13px; font-weight: 500;
  transition: color .2s, transform .2s;
  display: inline-block;
}
.ds-footer-col ul li a:hover { color: var(--color-primary); transform: translateX(3px) }

.ds-footer-pag {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 32px 0; border-top: 1px solid var(--color-border);
}
.ds-footer-pag-bloco strong {
  display: block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: 12px;
}
.ds-footer-pag-imgs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center }
.ds-footer-pag-imgs img {
  height: 28px; width: auto; padding: 4px 8px;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--r-2); object-fit: contain;
}
.ds-footer-pag-imgs .pix-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px; background: var(--color-pix); color: #fff;
  border-radius: var(--r-2); font-size: 11px; font-weight: 800;
}

.ds-footer-selos {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
  padding-bottom: 24px;
}
.ds-selo-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 14px 8px; background: #fff;
  border: 1px solid var(--color-border); border-radius: var(--r-4);
  text-align: center; gap: 4px;
  transition: all .25s var(--ease-out-soft);
}
.ds-selo-card:hover { border-color: var(--color-primary); transform: translateY(-2px); box-shadow: var(--shadow-sm) }
.ds-selo-card strong { font-size: 14px; font-weight: 900; color: var(--color-primary); letter-spacing: 0.04em }
.ds-selo-card small { font-size: 9px; color: var(--color-text-muted); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700 }
.ds-selo-card img { max-height: 28px; width: auto }

.ds-footer-aviso {
  padding: 18px 0; text-align: center;
  font-size: 11px; color: var(--color-text-muted);
  border-top: 1px solid var(--color-border); line-height: 1.5;
}

.ds-footer-creditos {
  background: var(--color-text); color: rgba(255,255,255,.65);
  padding: 14px 0; text-align: center; font-size: 11px;
  letter-spacing: 0.06em;
}
.ds-footer-creditos strong { color: #fff; font-weight: 800 }

@media (max-width: 980px) {
  .ds-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px }
  .ds-footer-pag { grid-template-columns: 1fr }
  .ds-footer-selos { grid-template-columns: repeat(3, 1fr) }
}
@media (max-width: 540px) {
  .ds-footer-grid { grid-template-columns: 1fr }
  .ds-footer-selos { grid-template-columns: repeat(2, 1fr) }
}

/* ============================================================================
   BANNER INSTITUCIONAL (meio da home)
   ========================================================================== */
.ds-banner-meio {
  position: relative; background: var(--grad-red);
  color: #fff; border-radius: var(--r-7); overflow: hidden;
  padding: 56px 56px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.ds-banner-meio::before, .ds-banner-meio::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.08); pointer-events: none;
}
.ds-banner-meio::before { width: 360px; height: 360px; top: -100px; right: -120px }
.ds-banner-meio::after  { width: 220px; height: 220px; bottom: -60px; left: -60px }
.ds-banner-meio .info { position: relative; z-index: 2; max-width: 620px }
.ds-banner-meio .kicker {
  display: inline-block; padding: 6px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.18); font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; margin-bottom: 16px;
}
.ds-banner-meio h2 {
  font-size: var(--fs-48); font-weight: 900; line-height: 1.05;
  letter-spacing: -0.025em; margin-bottom: 12px;
}
.ds-banner-meio h2 .accent { color: #ffd200 }
.ds-banner-meio p { font-size: 15px; opacity: .92; margin-bottom: 22px; line-height: 1.55; max-width: 540px }
.ds-banner-meio .selo-anos {
  position: relative; z-index: 2; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(0,0,0,.25); border: 2px dashed rgba(255,255,255,.4);
  text-align: center;
}
.ds-banner-meio .selo-anos strong { font-size: 64px; font-weight: 900; line-height: 1; color: #ffd200; font-family: var(--font-display) }
.ds-banner-meio .selo-anos small { font-size: 11px; letter-spacing: 0.2em; opacity: .8; margin-top: 6px }

.ds-banner-meio .cta-branco {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; background: #fff; color: var(--color-primary);
  border-radius: var(--r-pill); font-weight: 800; font-size: 13px;
  letter-spacing: 0.06em; transition: transform .2s var(--ease-out-back), box-shadow .2s;
}
.ds-banner-meio .cta-branco:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl) }

@media (max-width: 840px) {
  .ds-banner-meio { padding: 36px 24px; grid-template-columns: 1fr }
  .ds-banner-meio .selo-anos { display: none }
}

/* ============================================================================
   UTILITÁRIOS / ANIMAÇÕES MAGNÍFICAS
   ========================================================================== */

/* Reveal on scroll · Defensivo: começa com opacity .001 (invisível mas não "vazio"
   estruturalmente) e ganha .is-in via IntersectionObserver. Se o JS não rodar
   (no-js, SEO, screenshot full-page), o seletor .no-js força tudo visível. */
.ds-reveal { opacity: .001; transform: translateY(28px); transition: opacity .8s var(--ease-out-soft), transform .8s var(--ease-out-soft) }
.ds-reveal.is-in { opacity: 1; transform: translateY(0) }
.ds-reveal-stagger > * { opacity: .001; transform: translateY(20px); transition: opacity .6s var(--ease-out-soft), transform .6s var(--ease-out-soft) }
.ds-reveal-stagger.is-in > * { opacity: 1; transform: translateY(0) }
/* Fallback no-JS · garante conteúdo visível mesmo sem JS */
html.no-js .ds-reveal,
html.no-js .ds-reveal-stagger > * { opacity: 1; transform: none }
.ds-reveal-stagger.is-in > *:nth-child(1) { transition-delay: .04s }
.ds-reveal-stagger.is-in > *:nth-child(2) { transition-delay: .08s }
.ds-reveal-stagger.is-in > *:nth-child(3) { transition-delay: .12s }
.ds-reveal-stagger.is-in > *:nth-child(4) { transition-delay: .16s }
.ds-reveal-stagger.is-in > *:nth-child(5) { transition-delay: .20s }
.ds-reveal-stagger.is-in > *:nth-child(6) { transition-delay: .24s }
.ds-reveal-stagger.is-in > *:nth-child(7) { transition-delay: .28s }
.ds-reveal-stagger.is-in > *:nth-child(8) { transition-delay: .32s }

/* Shimmer no CTA */
.ds-shimmer { position: relative; overflow: hidden }
.ds-shimmer::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.35) 50%, transparent 75%);
  transform: skewX(-25deg); animation: ds-shimmer-loop 3.2s infinite;
  pointer-events: none;
}
@keyframes ds-shimmer-loop {
  0% { left: -100% } 60%, 100% { left: 150% }
}

/* Tilt 3D leve */
.ds-tilt { transform-style: preserve-3d; transition: transform .25s var(--ease-out-soft) }

/* Float animation */
@keyframes ds-float-a {
  0%, 100% { transform: translate(0, 0) }
  50% { transform: translate(20px, -30px) }
}
@keyframes ds-float-b {
  0%, 100% { transform: translate(0, 0) }
  50% { transform: translate(-30px, 20px) }
}

/* Disable animações se usuário pedir */
@media (prefers-reduced-motion: reduce) {
  .ds-reveal, .ds-reveal-stagger > *, .ds-shimmer::after { transition: none; animation: none }
  .ds-reveal, .ds-reveal-stagger > * { opacity: 1; transform: none }
}

/* ============================================================================
   ASSISTENTE / GRUPO VIP / NEWSLETTER (variações cleanup)
   ========================================================================== */
.ds-newsletter {
  background: var(--grad-dark); color: #fff;
  padding: 64px 0; position: relative; overflow: hidden;
}
.ds-newsletter::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(200,16,46,.25), transparent 60%);
}
.ds-newsletter-row {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
  position: relative; z-index: 2;
}
.ds-newsletter h2 {
  font-size: var(--fs-36); margin-bottom: 8px; font-weight: 900;
}
.ds-newsletter h2 .accent { color: #ffd200 }
.ds-newsletter p { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.5 }
.ds-newsletter-form { display: flex; flex-direction: column; gap: 10px }
.ds-newsletter-form input {
  width: 100%; height: 52px; padding: 0 18px;
  border: 2px solid rgba(255,255,255,.15); border-radius: var(--r-pill);
  background: rgba(255,255,255,.06); color: #fff; font-size: 14px;
  outline: none; transition: border-color .2s, background .2s;
}
.ds-newsletter-form input::placeholder { color: rgba(255,255,255,.5) }
.ds-newsletter-form input:focus { border-color: #ffd200; background: rgba(255,255,255,.1) }
.ds-newsletter-form button {
  height: 52px; padding: 0 28px; border: none;
  background: var(--grad-red); color: #fff;
  border-radius: var(--r-pill); font-weight: 800; font-size: 13px;
  letter-spacing: 0.08em; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.ds-newsletter-form button:hover { transform: translateY(-2px); box-shadow: var(--shadow-red) }

@media (max-width: 720px) {
  .ds-newsletter-row { grid-template-columns: 1fr; gap: 24px }
  .ds-newsletter { padding: 48px 0 }
}

/* ============================================================================
   FIM
   ========================================================================== */
