:root {
  --gold: #d4af37;
  --gold-light: #f0cf5f;
  --maroon: #6b0f1a;
  --maroon-dark: #3d0a10;
  --black: #0c0c0c;
  --white: #f5f1e8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, var(--maroon) 0%, var(--maroon-dark) 55%, var(--black) 100%);
  overflow: hidden;
}

.hero-media-row {
  position: absolute;
  inset: 0;
  display: flex;
}

.hero-video {
  flex: 1 1 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

/* Mobile: só o 1º vídeo, tela cheia (igual ao formato stories original) */
.hero-video:not(:first-child) { display: none; }

/* Tablet: 3 vídeos lado a lado, largura natural (9:16) e bloco centralizado —
   se a soma ultrapassar a tela, corta igual dos dois lados, não só da direita */
@media (min-width: 700px) {
  .hero-media-row { justify-content: center; }
  .hero-video:nth-child(-n+3) {
    display: block;
    flex: 0 0 auto;
    width: auto;
    aspect-ratio: 9 / 16;
  }
}

/* Desktop: os 4 vídeos lado a lado, mesmo esquema centralizado */
@media (min-width: 1100px) {
  .hero-video:nth-child(-n+4) {
    display: block;
    flex: 0 0 auto;
    width: auto;
    aspect-ratio: 9 / 16;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.focus-logo {
  width: min(90vw, 720px);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(212,175,55,0.35)) drop-shadow(0 4px 14px rgba(0,0,0,0.6));
}

.scroll-cta {
  display: inline-block;
  margin-top: 2.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid var(--gold);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.scroll-cta:hover { background: var(--gold); color: var(--black); }

/* ---------- Stores ---------- */
.stores {
  max-width: 640px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 28px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

.store-badge {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--maroon-dark);
  border: 2px solid var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.badge-img { width: 68%; height: 68%; object-fit: contain; }

.store-info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.store-info h3 {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--maroon-dark);
  font-weight: 700;
}

.address {
  display: inline-block;
  font-size: 0.82rem;
  color: #4a2a12;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.address:hover { border-bottom-color: #4a2a12; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  background: var(--maroon-dark);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.2s ease;
}

.whatsapp-btn:hover { background: var(--maroon); transform: translateY(-1px); }

.wa-icon { width: 16px; height: 16px; fill: #25D366; flex-shrink: 0; }

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 2.5rem 1rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(212,175,55,0.4);
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.ig-link:hover { background: var(--gold); color: var(--black); }

.ig-icon { width: 18px; height: 18px; fill: currentColor; }

.copy {
  font-size: 0.75rem;
  color: rgba(245,241,232,0.4);
  letter-spacing: 0.05em;
}

@media (min-width: 560px) {
  .stores { padding-top: 4.5rem; }
}

/* Desktop: grade 2x2 em vez de coluna única esticada, cartões maiores */
@media (min-width: 860px) {
  .stores {
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    padding-top: 5rem;
  }

  .store-card {
    padding: 1.5rem 1.75rem;
    gap: 1.4rem;
  }

  .store-badge {
    width: 84px;
    height: 84px;
  }

  .store-info h3 {
    font-size: 1.3rem;
  }

  .address,
  .whatsapp-btn {
    font-size: 0.88rem;
  }
}
