/* ═══════════════════════════════════════════════════════════
   AURUM OSS — Main Styles
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.text-gold { color: var(--gold); }

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc { margin-top: 16px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}

.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(200,168,75,0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(200,168,75,0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gold-border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   LOADER
══════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-loader);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.loader-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  animation: loader-pulse 1.4s ease-in-out infinite;
}

.loader-text {
  /* Fonte display (substituta da The Seasons, igual ao "AURUM" do header). */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(200,168,75,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: loader-bar 1.8s ease-in-out forwards;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--gold-border), 0 8px 32px rgba(0,0,0,0.4);
}

/* Mobile: header já começa fosco, sem esperar o scroll */
@media (max-width: 900px) {
  .navbar {
    background: rgba(10,10,10,0.6);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 1px 0 var(--gold-border), 0 8px 32px rgba(0,0,0,0.4);
  }
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-logo-text {
  /* Fonte display do site (substituta da The Seasons enquanto o arquivo real
     não é adicionado). Ao trocar --font-display pela The Seasons, o header segue. */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.16em;
  color: var(--gold);
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t-fast);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--text); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--gold);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--t);
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 18px;
  height: 18px;
  background: #e74c3c;
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,168,75,0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
}

.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════ */
.announcement-bar {
  position: relative;
  z-index: calc(var(--z-nav) - 1);
  margin-top: 80px;
  background: var(--gold);
  overflow: hidden;
  padding: 10px 0;
}

.announcement-track {
  display: flex;
  white-space: nowrap;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000;
}

.announcement-item span { opacity: 0.5; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 var(--container-px);
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 40px;
  overflow: hidden;
}

.hero-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.hero-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(200,168,75,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,168,75,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  background: var(--gold-glow-sm);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 20px;
}

.hero-title-main {
  display: block;
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-title-sub {
  display: block;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold-border);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
  justify-content: center;
}

.hero-stat-suffix {
  font-size: 20px;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gold-border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 580px;
}

.hero-spartan {
  position: relative;
  z-index: 3;
  width: 320px;
  height: 320px;
  color: var(--gold);
  filter: drop-shadow(0 0 60px rgba(200,168,75,0.25));
  animation: float 5s ease-in-out infinite;
}

.hero-spartan svg,
.hero-spartan img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-rotate 20s linear infinite;
}

.hero-ring.r1 { width: 380px; height: 380px; animation-duration: 20s; }
.hero-ring.r2 { width: 460px; height: 460px; animation-duration: 30s; animation-direction: reverse; border-style: dashed; }
.hero-ring.r3 { width: 540px; height: 540px; animation-duration: 40s; border-color: rgba(200,168,75,0.08); }

.hero-ring.r1::before,
.hero-ring.r2::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--gold);
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 10;
  animation: bounce-scroll 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ══════════════════════════════════════
   PRODUCTS SECTION
══════════════════════════════════════ */
.products-section {
  padding: var(--section-py) 0;
  position: relative;
  background: var(--bg);
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

/* Filter Tabs */
.products-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 22px;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  transition: var(--t);
}

.filter-btn:hover {
  color: var(--text);
  border-color: var(--gold-border-h);
}

.filter-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  font-weight: 700;
}

/* Product Grid */
.products-grid {
  display: grid;
  /* auto-fit: 3 colunas no desktop, reorganiza sozinho conforme a tela e a quantidade de cards */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  /* align-items:start (em vez do stretch padrão do grid): com fotos de
     proporção diferente, cards da mesma fileira têm alturas diferentes —
     sem isso o grid esticava o card mais baixo, sobrando vão vazio embaixo
     da foto antes do nome/preço. */
  align-items: start;
  gap: 28px;
  margin-bottom: 48px;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--gold-border-h);
  box-shadow: var(--shadow-hover);
}

.product-card.featured {
  border-color: rgba(200,168,75,0.4);
  background: linear-gradient(135deg, #131313, #0f0f0f);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

/* Foto de kit (.product-photo--kit): a caixa se adapta à proporção
   natural da própria foto — o 3/4 fixo cortava as pontas (kimono/calça
   saindo da moldura). Escopado só aos kits: as outras fotos (rashguard,
   kimono avulso) seguem o 3/4 + cover de sempre, ver .product-photo. */
.product-image-wrap:has(.product-photo--kit) {
  aspect-ratio: auto;
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img-placeholder.kimono {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200,168,75,0.12) 0%, transparent 60%),
    linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
}

.product-img-placeholder.rashguard {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200,168,75,0.10) 0%, transparent 60%),
    linear-gradient(160deg, #141414 0%, #080808 100%);
}

.product-img-placeholder.shorts {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200,168,75,0.10) 0%, transparent 60%),
    linear-gradient(160deg, #161616 0%, #0a0a0a 100%);
}

.product-img-placeholder.acessorio {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200,168,75,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #141414 0%, #0c0c0c 100%);
}

.product-img-placeholder.kit {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200,168,75,0.16) 0%, transparent 60%),
    linear-gradient(160deg, #1c1a14 0%, #0b0b0b 100%);
}

/* Lista de itens incluídos no kit */
.kit-contents {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kit-contents li {
  position: relative;
  padding-left: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-muted);
}
.kit-contents li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
}

.product-img-icon {
  width: 120px;
  height: 120px;
  color: rgba(200,168,75,0.35);
  transition: transform var(--t), color var(--t);
}

.product-card:hover .product-img-icon {
  transform: scale(1.08);
  color: rgba(200,168,75,0.55);
}

/* ── Foto única do produto (proporção 3/4, padrão de todo card) ── */
.product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ── Foto de kit: renderiza na proporção natural da imagem, sem cortar
      (a caixa em volta se adapta, ver .product-image-wrap acima) ── */
.product-photo--kit {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: initial;
}

/* ── Troca de mídia por cor: garante que o painel oculto não renderize
      (regras de display de .pdp-media/.product-* sobrescreveriam [hidden]) ── */
[data-for-color][hidden], [data-for-gender][hidden] { display: none !important; }

/* ── Seletores de variante no card (gênero / manga / tamanho) ── */
.product-genders, .product-sleeves { display: flex; gap: 8px; margin: 4px 0 10px; }
.product-sizes { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 14px; }
.product-opt-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 10px 0 4px;
}
.gender-btn, .sleeve-btn, .size-btn {
  padding: 9px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.gender-btn, .sleeve-btn { flex: 1; }
.size-btn { flex: 0 0 auto; min-width: 46px; padding: 9px 12px; }
.gender-btn:hover, .sleeve-btn:hover, .size-btn:hover { border-color: var(--gold-border); color: var(--text); }
.gender-btn.active, .sleeve-btn.active, .size-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(200,168,75,.08); }

/* ── Carrossel de fotos do produto (dentro do card, proporção 3/4) ── */
.product-carousel { position: absolute; inset: 0; z-index: 1; }
.product-carousel .pc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s var(--ease, ease);
}
.product-carousel .pc-img.active { opacity: 1; }

.pc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  background: rgba(10,10,10,0.55);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
  opacity: 0;
  transition: opacity .25s var(--ease, ease), background .2s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.product-image-wrap:hover .pc-arrow { opacity: 1; }
.pc-arrow:hover { background: rgba(10,10,10,0.85); }
.pc-prev { left: 10px; }
.pc-next { right: 10px; }

.pc-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}
.pc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(245,245,240,0.45);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.pc-dot.active { background: var(--gold); transform: scale(1.25); }

/* Em telas de toque as setas ficam sempre visíveis. */
@media (hover: none) {
  .pc-arrow { opacity: 1; }
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: #000;
  z-index: 5;
}

.product-badge.sale { background: #e74c3c; color: #fff; }
.product-badge.featured-badge {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--t);
}

.product-card:hover .product-overlay { opacity: 1; }

.overlay-btn {
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,168,75,0.1);
  transition: var(--t);
}

.overlay-btn:hover {
  background: var(--gold);
  color: #000;
}

/* Product Info */
.product-info {
  padding: 22px 24px 24px;
}

.product-category {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.product-colors {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--t-fast), transform var(--t-fast);
}

.color-dot:hover { transform: scale(1.15); }
.color-dot.active { border-color: var(--gold); }
.color-dot.c-black  { background: #1a1a1a; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15); }
.color-dot.c-white  { background: #f0ede8; }
.color-dot.c-navy   { background: #1a2744; }
.color-dot.c-royal  { background: #1a3a6e; }
.color-dot.c-military { background: #5c5f45; }
.color-dot.c-gray      { background: #8f8f8f; }
.color-dot.c-black-pink { background: linear-gradient(135deg, #1a1a1a 0 49%, #d9aecb 51% 100%); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22); }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-from {
  font-size: 11px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

/* Parcela em destaque (pós-lançamento) + valor à vista de apoio */
.price-parcel {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  margin-top: 3px;
}

/* Estado pré-lançamento */
.price-current.price-soon {
  font-size: 18px;
  letter-spacing: 0.04em;
}
.pdp-price-current.price-soon { color: var(--gold); letter-spacing: 0.02em; }
.btn.btn-soon { opacity: 0.6; cursor: not-allowed; filter: grayscale(0.2); }

.add-cart-btn {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  transition: var(--t);
}

.add-cart-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* Link "ACESSAR" no card (visual de botão, sem ser add-cart-btn p/ não disparar o carrinho) */
.access-btn {
  display: inline-block;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: var(--t);
}
.access-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }

.products-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* ── Sold Out state ── */
.product-badge.sold-out-badge {
  background: #222;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.12);
}

.product-card.sold-out { cursor: default; }
.product-card.sold-out:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-sm);
}
.product-card.sold-out .product-img-placeholder {
  filter: grayscale(1) brightness(0.5);
}
.product-card.sold-out:hover .product-img-icon {
  transform: none;
  color: rgba(200,168,75,0.35);
}
.product-card.sold-out .product-overlay {
  opacity: 1;
  background: rgba(0,0,0,0.55);
}
.overlay-soldout {
  font-family: var(--font-accent);
  font-size: 28px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 22px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}
.product-card.sold-out .price-current { color: var(--text-muted); }

.notify-btn {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--text-dim);
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--t);
}
.notify-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow-sm);
}

/* ══════════════════════════════════════
   PRÓXIMO DROP
══════════════════════════════════════ */
.drop-section {
  padding: var(--section-py) 0;
  background: var(--bg-subtle);
  border-top: 1px solid rgba(200,168,75,0.08);
  border-bottom: 1px solid rgba(200,168,75,0.08);
  position: relative;
  overflow: hidden;
}

/* Empilhado: a foto do drop é deitada, então ocupa a largura toda em cima
   e a copy vem embaixo. Largura limitada pra foto não virar um mural. */
.drop-card {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 56px auto 0;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #131313, #0d0d0d);
}

.drop-card-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gold-border);
  background:
    radial-gradient(ellipse at 50% 40%, rgba(200,168,75,0.14) 0%, transparent 62%),
    linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
}

.drop-card-visual img {
  width: 175px;
  opacity: 0.85;
  filter: drop-shadow(0 0 32px rgba(200,168,75,0.25));
  animation: dropFloat 6s var(--ease-in-out) infinite;
}

@keyframes dropFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Variação com foto real do produto (preenche o card).
   A razão bate com a da foto (1280x854), então o cover não corta nada. */
.drop-card-visual--photo {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1280 / 854;
}
.drop-card-visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  animation: none;
}

.drop-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: #000;
}

/* Selo do drop já liberado — fica acima dos fogos */
.drop-badge--live {
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.drop-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  animation: dropPulse 1.6s var(--ease-in-out) infinite;
}
@keyframes dropPulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.72); }
}

/* Vinheta leve só nos cantos: dá contraste ao selo e assenta a foto no
   card, sem apagar o dourado da tampa da caixa (a foto já é escura). */
.drop-card-visual--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 45%, transparent 45%, rgba(6,6,6,0.45) 100%);
}

/* Fogos sobre a foto do drop */
.drop-fireworks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Faixa "vendas abertas" — ocupa o lugar do antigo cronômetro */
.drop-live {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 14px 18px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background: rgba(200,168,75,0.06);
}
.drop-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(200,168,75,0.55);
  animation: dropLivePulse 2s var(--ease-in-out) infinite;
}
@keyframes dropLivePulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,168,75,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(200,168,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,168,75,0); }
}
.drop-live-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.drop-live-meta {
  font-size: 12px;
  color: var(--text-muted);
}
@media (prefers-reduced-motion: reduce) {
  .drop-badge-dot, .drop-live-dot { animation: none; }
}

.drop-card-content { padding: 44px clamp(28px, 4vw, 52px); }

.drop-chapter {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.drop-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.drop-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.drop-countdown {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
}

.countdown-block {
  flex: 1;
  text-align: center;
  padding: 16px 8px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background: rgba(200,168,75,0.04);
}

.countdown-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.countdown-label {
  display: block;
  margin-top: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.drop-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.drop-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
}

@media (max-width: 420px) {
  /* Tela estreita: a foto deitada fica baixa demais, então respira menos */
  .drop-card { margin-top: 40px; }
}

@media (max-width: 420px) {
  .drop-countdown { gap: 8px; }
  .countdown-block { padding: 12px 4px; }
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-section {
  padding: var(--section-py) 0;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

.about-section::after {
  content: 'AURUM';
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-accent);
  font-size: 220px;
  color: rgba(200,168,75,0.03);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  /* no overflow:hidden — allows .about-border-deco to show outside frame */
}

.about-img-placeholder {
  aspect-ratio: 3/4;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(200,168,75,0.12) 0%, transparent 55%),
    linear-gradient(145deg, #161616 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
}

.about-img-spartan {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 50%;
}

.about-border-deco {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--gold-border);
  border-radius: calc(var(--radius-lg) + 12px);
  pointer-events: none;
}

.about-float-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(200,168,75,0.4);
}

.float-badge-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: #000;
  line-height: 1;
}

.float-badge-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.7);
  text-align: center;
  line-height: 1.3;
  padding: 0 8px;
}

/* About Content */
.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-content .section-label { text-align: left; }

.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.about-features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  transition: border-color var(--t), box-shadow var(--t);
}

.about-feature:hover {
  border-color: var(--gold-border-h);
  box-shadow: var(--shadow-gold);
}

.feature-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--gold-glow-sm);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.about-feature-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.about-feature-text p {
  font-size: 13px;
  margin: 0;
}

/* ══════════════════════════════════════
   DIFERENCIAIS
══════════════════════════════════════ */
.diferenciais-section {
  padding: var(--section-py) 0;
  position: relative;
  background: var(--bg);
}

.diferenciais-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

.diferenciais-grid {
  display: grid;
  /* auto-fit: novos diferenciais se acomodam automaticamente */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
}

.diferencial-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}

.diferencial-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--t-slow);
}

.diferencial-card:hover {
  border-color: rgba(200,168,75,0.45);
  box-shadow: var(--shadow-hover);
}

.diferencial-card:hover::before { transform: scaleX(1); }

.diferencial-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--gold-glow-sm);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  transition: background var(--t), border-color var(--t), transform var(--t);
}

.diferencial-card:hover .diferencial-icon-wrap {
  background: var(--gold-glow);
  border-color: var(--gold-border-h);
  transform: scale(1.08);
}

.diferencial-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.diferencial-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section {
  padding: var(--section-py) 0;
  background: var(--bg-elevated);
  overflow: hidden;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.author-belt {
  font-size: 12px;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}

.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  transition: var(--t);
  cursor: pointer;
}

.dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200,168,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  margin-top: 14px;
}

.cta-desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.cta-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--t);
}

.cta-input:focus { border-color: var(--gold); }
.cta-input::placeholder { color: var(--text-dim); }

.cta-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  padding: 72px 0 0;
  background: #080808;
  border-top: 1px solid var(--gold-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--t);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer-col ul li a:hover { color: var(--text); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.6;
}

/* ══════════════════════════════════════
   MOBILE NAV OVERLAY
══════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(20px);
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  transition: color var(--t);
}

.mobile-nav a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .testimonial-card { flex: 0 0 calc(50% - 12px); max-width: calc(50% - 12px); }
}

@media (max-width: 900px) {
  :root { --section-py: 72px; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }

  .hero-tagline { justify-content: center; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { height: 360px; }
  .hero-spartan { width: 220px; height: 220px; }
  .hero-ring.r1 { width: 260px; height: 260px; }
  .hero-ring.r2 { width: 310px; height: 310px; }
  .hero-ring.r3 { width: 360px; height: 360px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 640px) {
  .testimonial-card { flex: 0 0 100%; max-width: 100%; }
  .cta-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-ring.r1 { display: none; }
  .hero-ring.r2 { display: none; }

  /* Carrinho vira só-ícone p/ caber o botão "Lista de Espera" no mobile */
  .nav-cta-label { display: none; }
  .nav-cta { padding: 9px 11px; gap: 0; }
}

/* ── Celular (≤520px) ── */
@media (max-width: 520px) {
  :root { --section-py: 60px; }

  /* Navbar compacta */
  .nav-container { gap: 12px; }
  .nav-logo-text { font-size: 18px; }
  .nav-cta { padding: 8px 14px; font-size: 10px; letter-spacing: 0.1em; gap: 6px; }

  /* Barra de avisos mais leve */
  .announcement-item { gap: 22px; padding: 0 22px; font-size: 10px; }

  /* Hero */
  .hero-content { padding-top: 24px; }
  .hero-badge { font-size: 9px; padding: 6px 12px; letter-spacing: 0.14em; }
  .hero-desc { font-size: 14px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; text-align: center; }
  .hero-stats { gap: 16px; }
  .hero-stat-number { font-size: 26px; }
  .hero-stat-suffix { font-size: 16px; }
  .hero-stat-divider { height: 32px; }

  /* Produtos */
  .products-filter { display: flex; flex-wrap: wrap; justify-content: center; }
  .products-grid { gap: 18px; }

  /* CTA / newsletter */
  .cta-input, .cta-form .btn { width: 100%; }

  /* Próximo drop */
  .drop-card-content { padding: 28px 22px; }
  .drop-countdown { gap: 8px; }
  .drop-actions { flex-direction: column; }
  .drop-actions .btn { width: 100%; justify-content: center; text-align: center; }
}

/* ── Celular pequeno (≤380px) ── */
@media (max-width: 380px) {
  .nav-logo-text { font-size: 16px; }
  .announcement-item { gap: 16px; padding: 0 16px; }
  .hero-stats { gap: 10px; }
  .hero-stat-number { font-size: 22px; }
  .hero-stat-label { font-size: 9px; letter-spacing: 0.1em; }
  .countdown-num { font-size: 22px; }
}
