/* ============================================================
   JOTA COMBOS — LANDING PAGE CSS
   Paleta NEON MADRUGADA: Magenta · Laranja · Roxo · Dourado
   Vibe: festa, energia, vibrante — nunca escuro demais
   ============================================================ */

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

:root {
  /* ── Cores Neon da Marca — ROXO + LARANJA (menos rosa) ── */
  --black:    #0a0a14;   /* azul-preto profundo */
  --black2:   #0f0f1e;
  --black3:   #161628;
  --black4:   #1e1e38;
  --neon-mag: #cc00ff;   /* roxo-violeta (não rosa) */
  --neon-pur: #8800ee;   /* roxo escuro */
  --neon-ora: #ff6200;   /* laranja neon principal */
  --neon-pin: #ff3399;   /* rosa apenas como accent pontual */
  --neon-cya: #00e5ff;   /* ciano elétrico accent */
  --red:      #dd1111;
  --red-dark: #aa0d0d;
  --gold:     #ffaa00;
  --gold-light: #ffd000;
  --magenta:  #cc00ff;
  --orange:   #ff6200;
  --white:    #f0f0ff;
  --white2:   #ffffff;
  --gray:     #9090b0;
  --gray2:    #5555aa;

  /* ── Gradientes — roxo + laranja, sem rosa dominante ── */
  --grad-main:  linear-gradient(135deg, #ff6200 0%, #cc00ff 100%);
  --grad-fire:  linear-gradient(135deg, #ff6200 0%, #8800ee 100%);
  --grad-gold:  linear-gradient(135deg, #ffaa00 0%, #ff6200 100%);
  --grad-neon:  linear-gradient(135deg, #8800ee 0%, #cc00ff 40%, #ff6200 100%);
  --grad-night: linear-gradient(160deg, #080812 0%, #0f0a1e 50%, #140a20 100%);
  --grad-day:   linear-gradient(160deg, #0d2640 0%, #0a1e35 50%, #112d4e 100%);

  /* ── Sombras Neon — roxo e laranja predominam ── */
  --shadow-mag:    0 0 35px rgba(204,0,255,0.55);
  --shadow-pur:    0 0 35px rgba(136,0,238,0.55);
  --shadow-ora:    0 0 35px rgba(255,98,0,0.60);
  --shadow-gold:   0 0 35px rgba(255,170,0,0.55);
  --shadow-glow-red: 0 0 35px rgba(221,17,17,0.45);
  --shadow-glow-gold: 0 0 35px rgba(255,170,0,0.45);
  --shadow-glow-mag: 0 0 35px rgba(204,0,255,0.55);

  /* ── Variáveis de Modo ── */
  --bg-body:    var(--black);
  --bg-section: var(--black2);
  --text-main:  var(--white);
  --text-sub:   rgba(220,220,255,0.78);
  --card-bg:    rgba(255,255,255,0.05);
  --card-border:rgba(204,0,255,0.15);
  --header-bg:  rgba(8,8,18,0.97);

  /* ── Fontes ── */
  --font-title: 'Bebas Neue', sans-serif;
  --font-brand: 'Rajdhani', sans-serif;
  --font-body:  'Inter', sans-serif;

  /* ── Espaçamentos ── */
  --section-py: 90px;
  --radius:     16px;
  --radius-sm:  8px;
  --radius-lg:  24px;
}

/* ── MODO DIA ── */
body.mode-day {
  --bg-body:    #0d2640;
  --bg-section: #0a1e35;
  --black:      #0a1e35;
  --black2:     #0d2640;
  --black3:     #112d4e;
  --black4:     #1a3a5c;
  --card-bg:    rgba(255,255,255,0.06);
  --card-border:rgba(255,184,0,0.15);
  --header-bg:  rgba(10,30,55,0.97);
  --grad-main:  linear-gradient(135deg,#ffaa00,#ff6200);
  --grad-night: var(--grad-day);
  --neon-mag:   #ffaa00;
  --neon-pur:   #ff6200;
  --shadow-mag: 0 0 30px rgba(255,170,0,0.45);
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   LOGOS REAIS — INTEGRAÇÃO
   ============================================================ */

/* Header logo */
.logo-img-header {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px rgba(224,0,122,0.45));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-img-header:hover {
  filter: drop-shadow(0 0 22px rgba(224,0,122,0.75)) brightness(1.1);
  transform: scale(1.04);
}

/* Hero 2-colunas */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-logo-col {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

/* ── hero-logo-neon-wrap não usado mais (removido do HTML) ── */

.hero-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  animation: heroLogoFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(212,43,43,0.5)) drop-shadow(0 0 80px rgba(224,0,122,0.3));
  position: relative;
  z-index: 2;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-14px) scale(1.02); }
}

.hero-logo-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,43,43,0.25) 0%, rgba(224,0,122,0.12) 50%, transparent 70%);
  animation: glowPulseHero 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes glowPulseHero {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Footer logo */
.footer-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 18px rgba(224,0,122,0.4)) brightness(1.05);
  border-radius: 14px;
}

/* Copão section - logo em vez de copo CSS */
.copao-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copao-logo-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  animation: floatCup 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(212,43,43,0.45)) drop-shadow(0 0 60px rgba(224,0,122,0.25));
}

/* Período banner - logos nos cards */
.periodo-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.periodo-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 16px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.periodo-card:hover .periodo-logo {
  transform: scale(1.08);
  filter: drop-shadow(0 0 16px rgba(212,43,43,0.5));
}

/* Cart drawer logo */
.cart-drawer-logo {
  flex-shrink: 0;
}

/* ── HERO IMAGEM REAL ── */
/* (.hero-logo-col já definida acima, adicionando position:relative) */

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Anel de glow giratório — roxo + laranja */
.hero-img-glow-ring {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(204,0,255,0.65) 0%,
    rgba(136,0,238,0.55) 20%,
    rgba(255,98,0,0.70) 50%,
    rgba(255,170,0,0.50) 70%,
    rgba(204,0,255,0.65) 100%
  );
  animation: ringRotate 5s linear infinite;
  filter: blur(16px);
  opacity: 0.60;
  z-index: 0;
}

@keyframes ringRotate {
  from { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.06); }
  to   { transform: rotate(360deg) scale(1); }
}

/* Imagem hero principal — cara + garrafas + logo — DESTAQUE MÁXIMO */
.hero-real-img {
  width: 100%;
  max-width: 540px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  border-radius: 0;
  animation: heroLogoFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255,0,170,0.70)) saturate(1.2) brightness(1.05);
  transition: filter 0.5s ease;
}
body.mode-day .hero-real-img {
  filter: drop-shadow(0 0 30px rgba(255,184,0,0.70)) saturate(1.2) brightness(1.05);
}
body.mode-day .hero-img-glow-ring {
  background: conic-gradient(
    from 0deg,
    rgba(255,184,0,0.6) 0%,
    rgba(255,85,0,0.5) 30%,
    rgba(255,220,0,0.5) 60%,
    rgba(255,184,0,0.6) 100%
  );
}

.hero-logo-glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,98,0,0.22) 0%, rgba(136,0,238,0.12) 50%, transparent 70%);
  animation: glowPulseHero 4s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

/* Pill de horário — roxo/laranja */
.hero-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,8,18,0.82);
  border: 1px solid rgba(204,0,255,0.40);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-top: 16px;
  backdrop-filter: blur(14px);
  animation: fadeInUp 0.7s ease 0.6s both;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 16px rgba(136,0,238,0.18), inset 0 0 10px rgba(136,0,238,0.05);
  letter-spacing: 0.5px;
}
.hero-time-pill i { color: var(--gold-light); filter: drop-shadow(0 0 6px rgba(255,204,0,0.8)); }
.pill-dot {
  width: 8px; height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: dotPulse 1.5s ease infinite;
  box-shadow: 0 0 8px #00ff88, 0 0 16px rgba(0,255,136,0.5);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--neon-mag); border-radius: 3px; }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,0,170,0.25);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
}

/* LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px; height: 44px;
  background: var(--grad-main);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title);
  font-size: 18px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: var(--shadow-glow-red);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-jota {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.logo-combos {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white2);
  text-transform: uppercase;
}

/* NAV */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover { color: var(--white2); background: rgba(255,255,255,0.08); }

.nav-cta {
  background: var(--grad-main);
  color: #fff !important;
  border-radius: 30px;
  padding: 7px 16px;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(212,43,43,0.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-red);
  background: rgba(255,255,255,0.1) !important;
}

.nav-admin {
  font-size: 18px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

/* MODE TOGGLE */
.mode-toggle-wrap { flex-shrink: 0; }

.mode-toggle {
  position: relative;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 6px 14px;
  cursor: pointer;
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mode-toggle:hover { background: rgba(255,255,255,0.12); }

.mode-icon-day { display: none; color: var(--gold); }
.mode-icon-night { display: flex; align-items: center; gap: 5px; color: #a78bfa; }

body.mode-day .mode-icon-day { display: flex; align-items: center; gap: 5px; }
body.mode-day .mode-icon-night { display: none; }

/* CART BTN */
.cart-btn {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--white2);
  font-size: 16px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.cart-btn:hover { background: var(--red); box-shadow: var(--shadow-glow-red); }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--grad-gold);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}

.cart-count.show { display: flex; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--white2);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 997;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

/* ── GARRAFAS DECORATIVAS CSS NO FUNDO ── */
.hero-bottles-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Linhas neon verticais simulando garrafas */
.bottle-deco {
  position: absolute;
  border-radius: 6px 6px 4px 4px;
  animation: bottleGlow ease-in-out infinite alternate;
}

.bd1 {
  width: 14px; height: 200px;
  bottom: 0; left: 6%;
  background: linear-gradient(180deg, rgba(204,0,255,0) 0%, rgba(204,0,255,0.55) 50%, rgba(204,0,255,0.85) 100%);
  box-shadow: 0 0 28px rgba(204,0,255,0.55), 0 0 55px rgba(204,0,255,0.25);
  animation-duration: 3.5s; animation-delay: 0s;
}
.bd2 {
  width: 10px; height: 270px;
  bottom: 0; left: 9%;
  background: linear-gradient(180deg, rgba(255,98,0,0) 0%, rgba(255,98,0,0.55) 50%, rgba(255,98,0,0.85) 100%);
  box-shadow: 0 0 25px rgba(255,98,0,0.55), 0 0 50px rgba(255,98,0,0.25);
  animation-duration: 4.2s; animation-delay: -1.5s;
}
.bd3 {
  width: 16px; height: 230px;
  bottom: 0; right: 5%;
  background: linear-gradient(180deg, rgba(255,170,0,0) 0%, rgba(255,170,0,0.55) 50%, rgba(255,170,0,0.85) 100%);
  box-shadow: 0 0 28px rgba(255,170,0,0.55), 0 0 55px rgba(255,170,0,0.25);
  animation-duration: 3.8s; animation-delay: -0.8s;
}
.bd4 {
  width: 11px; height: 180px;
  bottom: 0; right: 9%;
  background: linear-gradient(180deg, rgba(136,0,238,0) 0%, rgba(136,0,238,0.55) 50%, rgba(136,0,238,0.85) 100%);
  box-shadow: 0 0 22px rgba(136,0,238,0.55), 0 0 44px rgba(136,0,238,0.25);
  animation-duration: 4.5s; animation-delay: -2s;
}
.bd5 {
  width: 13px; height: 240px;
  bottom: 0; left: 18%;
  background: linear-gradient(180deg, rgba(255,98,0,0) 0%, rgba(255,98,0,0.45) 50%, rgba(255,98,0,0.75) 100%);
  box-shadow: 0 0 24px rgba(255,98,0,0.45), 0 0 48px rgba(255,98,0,0.20);
  animation-duration: 5s; animation-delay: -3s;
}
.bd6 {
  width: 9px; height: 160px;
  bottom: 0; right: 16%;
  background: linear-gradient(180deg, rgba(204,0,255,0) 0%, rgba(204,0,255,0.50) 50%, rgba(204,0,255,0.80) 100%);
  box-shadow: 0 0 22px rgba(204,0,255,0.50), 0 0 44px rgba(204,0,255,0.22);
  animation-duration: 3.2s; animation-delay: -1s;
}

@keyframes bottleGlow {
  0%   { opacity: 0.5; filter: brightness(0.8); }
  100% { opacity: 1;   filter: brightness(1.3); }
}

/* ── Garrafas SVG posicionadas no fundo ── */
.bottle-svg {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  animation: bottleSvgFloat ease-in-out infinite alternate;
  filter: blur(0.5px);
}

.bsv1 {
  bottom: 0; left: 3%;
  width: 55px; height: 220px;
  animation-duration: 4s; animation-delay: 0s;
  opacity: 0.6;
}
.bsv2 {
  bottom: 0; right: 4%;
  width: 50px; height: 200px;
  animation-duration: 5s; animation-delay: -1.5s;
  opacity: 0.55;
}
.bsv3 {
  bottom: 0; left: 13%;
  width: 48px; height: 185px;
  animation-duration: 4.5s; animation-delay: -0.8s;
  opacity: 0.50;
}
.bsv4 {
  bottom: 0; right: 14%;
  width: 45px; height: 175px;
  animation-duration: 5.5s; animation-delay: -2.5s;
  opacity: 0.50;
}

@keyframes bottleSvgFloat {
  0%   { transform: translateY(0px);   filter: blur(0.5px) brightness(0.9); }
  100% { transform: translateY(-12px); filter: blur(0px)   brightness(1.2); }
}

/* Orbs neon de brilho ambiente */
.neon-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orbPulse ease-in-out infinite alternate;
  filter: blur(40px);
}
.no1 {
  width: 300px; height: 300px;
  bottom: -80px; left: -60px;
  background: radial-gradient(circle, rgba(204,0,255,0.28) 0%, transparent 70%);
  animation-duration: 5s;
}
.no2 {
  width: 250px; height: 250px;
  top: -60px; right: -40px;
  background: radial-gradient(circle, rgba(255,98,0,0.30) 0%, transparent 70%);
  animation-duration: 6s; animation-delay: -2s;
}
.no3 {
  width: 200px; height: 200px;
  bottom: 20%; left: 40%;
  background: radial-gradient(circle, rgba(255,170,0,0.22) 0%, transparent 70%);
  animation-duration: 4s; animation-delay: -1s;
}

@keyframes orbPulse {
  0%   { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; }
}

/* Fundo do hero — gradiente puro, sem imagem duplicada */
.hero-bg-image {
  display: none;
}

/* Overlay gradiente — ROXO + LARANJA, sem rosa dominante */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg,
      rgba(8,8,18,0.90) 0%,
      rgba(15,10,30,0.75) 30%,
      rgba(20,8,35,0.48) 60%,
      rgba(8,8,18,0.72) 100%),
    radial-gradient(ellipse at 12% 60%, rgba(136,0,238,0.40) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(255,98,0,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 95%, rgba(204,0,255,0.25) 0%, transparent 45%),
    radial-gradient(ellipse at 65% 75%, rgba(255,98,0,0.18) 0%, transparent 40%);
}

body.mode-day .hero-overlay {
  background:
    linear-gradient(110deg,
      rgba(10,30,55,0.92) 0%,
      rgba(10,25,50,0.80) 40%,
      rgba(8,20,45,0.55) 70%,
      rgba(10,30,55,0.75) 100%),
    radial-gradient(ellipse at 20% 60%, rgba(255,184,0,0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 40%, rgba(255,85,0,0.15) 0%, transparent 55%);
}

/* Partículas */
.hero-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0.4;
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
  8%   { opacity: 0.4; }
  92%  { opacity: 0.4; }
  100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}

/* Marcas flutuando no fundo */
.hero-brands-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

/* ── Marcas de bebidas flutuando VISÍVEIS no fundo ── */
.brand-float {
  position: absolute;
  font-weight: 900;
  letter-spacing: 2px;
  white-space: nowrap;
  font-family: var(--font-brand);
  text-transform: uppercase;
  animation: brandDrift linear infinite;
  pointer-events: none;
  /* text-shadow para brilho neon */
}

/* Jack Daniel's — laranja neon */
.bf1 {
  top: 6%;  left: 4%;
  font-size: 22px;
  color: rgba(255,98,0,0.55);
  text-shadow: 0 0 20px rgba(255,98,0,0.80), 0 0 40px rgba(255,98,0,0.35);
  animation-duration: 26s; animation-delay: 0s;
}
/* Johnnie Walker — roxo elétrico */
.bf2 {
  top: 16%; right: 5%;
  font-size: 18px;
  color: rgba(136,0,238,0.55);
  text-shadow: 0 0 18px rgba(136,0,238,0.85), 0 0 36px rgba(204,0,255,0.35);
  animation-duration: 32s; animation-delay: -7s;
}
/* Ballantine's — âmbar dourado */
.bf3 {
  top: 32%; left: 1%;
  font-size: 20px;
  color: rgba(255,170,0,0.50);
  text-shadow: 0 0 18px rgba(255,170,0,0.80), 0 0 36px rgba(255,170,0,0.30);
  animation-duration: 38s; animation-delay: -14s;
}
/* Smirnoff — ciano elétrico */
.bf4 {
  top: 52%; right: 2%;
  font-size: 17px;
  color: rgba(0,229,255,0.40);
  text-shadow: 0 0 16px rgba(0,229,255,0.70), 0 0 30px rgba(0,229,255,0.25);
  animation-duration: 30s; animation-delay: -4s;
}
/* Tanqueray — dourado âmbar */
.bf5 {
  top: 68%; left: 8%;
  font-size: 16px;
  color: rgba(255,170,0,0.45);
  text-shadow: 0 0 16px rgba(255,170,0,0.80), 0 0 30px rgba(255,170,0,0.30);
  animation-duration: 35s; animation-delay: -19s;
}
/* Monster — verde neon */
.bf6 {
  top: 78%; right: 10%;
  font-size: 18px;
  color: rgba(0,230,80,0.40);
  text-shadow: 0 0 16px rgba(0,230,80,0.70), 0 0 30px rgba(0,230,80,0.25);
  animation-duration: 28s; animation-delay: -2s;
}
/* Chivas Regal — roxo-violeta */
.bf7 {
  top: 40%; left: 38%;
  font-size: 14px;
  color: rgba(204,0,255,0.38);
  text-shadow: 0 0 14px rgba(204,0,255,0.65), 0 0 28px rgba(204,0,255,0.22);
  animation-duration: 44s; animation-delay: -11s;
}
/* Heineken — verde */
.bf8 {
  top: 22%; left: 22%;
  font-size: 16px;
  color: rgba(0,200,80,0.40);
  text-shadow: 0 0 16px rgba(0,200,80,0.70), 0 0 28px rgba(0,200,80,0.25);
  animation-duration: 36s; animation-delay: -17s;
}
/* Red Label — laranja-âmbar */
.bf9 {
  top: 88%; left: 28%;
  font-size: 19px;
  color: rgba(255,140,0,0.48);
  text-shadow: 0 0 18px rgba(255,140,0,0.80), 0 0 36px rgba(255,140,0,0.30);
  animation-duration: 34s; animation-delay: -8s;
}

@keyframes brandDrift {
  0%   { transform: translateY(0px)   translateX(0px);   opacity: 0; }
  8%   { opacity: 1; }
  30%  { transform: translateY(-15px)  translateX(10px); }
  60%  { transform: translateY(-35px)  translateX(-8px); }
  90%  { opacity: 1; }
  100% { transform: translateY(-70px)  translateX(12px); opacity: 0; }
}

/* ── Borda neon inferior do hero ── */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(136,0,238,0.80) 15%,
    rgba(255,98,0,0.90) 40%,
    rgba(255,170,0,0.80) 60%,
    rgba(136,0,238,0.80) 85%,
    transparent 100%);
  box-shadow: 0 0 20px rgba(255,98,0,0.60), 0 0 40px rgba(136,0,238,0.40);
  z-index: 10;
  animation: neonLinePulse 3s ease-in-out infinite;
}
body.mode-day .hero::after {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,204,0,0.8) 20%,
    rgba(255,102,0,0.9) 50%,
    rgba(255,204,0,0.8) 80%,
    transparent 100%);
  box-shadow: 0 0 20px rgba(255,204,0,0.6), 0 0 40px rgba(255,102,0,0.4);
}
@keyframes neonLinePulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; box-shadow: 0 0 30px rgba(255,98,0,0.85), 0 0 60px rgba(136,0,238,0.45); }
}

/* Efeito scanlines sutil no hero para vibe synthwave */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  z-index: 4;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 110px;
  padding-bottom: 80px;
  max-width: 1200px !important;
  width: 100%;
}

/* Badge com dot piscante — roxo + laranja */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(136,0,238,0.18);
  border: 1px solid rgba(204,0,255,0.45);
  border-radius: 30px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 22px;
  animation: fadeInDown 0.6s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 18px rgba(136,0,238,0.22), inset 0 0 12px rgba(136,0,238,0.06);
  text-shadow: 0 0 10px rgba(255,170,0,0.5);
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: dotPulse 1.5s ease infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,255,136,0.5); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 5px rgba(0,255,136,0); }
}

body.mode-day .hero-badge {
  background: rgba(255,184,0,0.12);
  border-color: rgba(255,184,0,0.35);
  color: var(--gold-light);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(54px, 9vw, 112px);
  line-height: 0.88;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
  text-shadow: 0 0 60px rgba(255,0,170,0.4), 0 0 120px rgba(170,0,255,0.2);
}

.hero-title-main {
  display: block;
  color: #fff;
}

.hero-gradient {
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(255,0,170,0.8)) drop-shadow(0 0 50px rgba(170,0,255,0.5));
}

.neon-text {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(255,204,0,0.9), 0 0 40px rgba(255,102,0,0.6), 0 0 70px rgba(255,204,0,0.3);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,240,255,0.78);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.65;
  animation: fadeInUp 0.7s ease 0.2s both;
}

/* ── Tags de marcas no hero ── */
.hero-brands-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease 0.25s both;
}
.brand-chip {
  background: rgba(255,98,0,0.14);
  border: 1px solid rgba(255,98,0,0.45);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,235,210,0.95);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  text-shadow: 0 0 8px rgba(255,170,0,0.45);
  box-shadow: 0 0 10px rgba(255,98,0,0.12);
  letter-spacing: 0.5px;
}
.brand-chip:hover {
  background: rgba(255,98,0,0.30);
  border-color: rgba(255,98,0,0.75);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255,98,0,0.38), 0 4px 14px rgba(136,0,238,0.18);
}
body.mode-day .brand-chip {
  background: rgba(255,184,0,0.12);
  border-color: rgba(255,184,0,0.30);
  color: rgba(255,240,200,0.85);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

/* ── Botões Neon ── */
/* Botões neon — laranja + roxo */
.btn-neon {
  background: var(--grad-main);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 0 28px rgba(255,98,0,0.60), 0 4px 22px rgba(136,0,238,0.40);
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}
.btn-neon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  border-radius: inherit;
}
.btn-neon:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 45px rgba(255,98,0,0.80), 0 8px 35px rgba(136,0,238,0.55);
}
.btn-neon-outline {
  background: rgba(204,0,255,0.08);
  color: #fff;
  border: 2px solid rgba(204,0,255,0.55);
  font-weight: 700;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 14px rgba(204,0,255,0.14), inset 0 0 12px rgba(204,0,255,0.05);
}
.btn-neon-outline:hover {
  background: rgba(204,0,255,0.18);
  border-color: var(--neon-mag);
  box-shadow: 0 0 30px rgba(204,0,255,0.40), inset 0 0 18px rgba(204,0,255,0.08);
  transform: translateY(-3px);
}
body.mode-day .btn-neon {
  background: var(--grad-gold);
  box-shadow: 0 0 25px rgba(255,184,0,0.45), 0 4px 20px rgba(255,85,0,0.3);
}
body.mode-day .btn-neon:hover {
  box-shadow: 0 0 40px rgba(255,184,0,0.65), 0 8px 30px rgba(255,85,0,0.4);
}
body.mode-day .btn-neon-outline {
  border-color: rgba(255,184,0,0.5);
}
body.mode-day .btn-neon-outline:hover {
  background: rgba(255,184,0,0.15);
  border-color: var(--gold);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

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

.stat-num {
  font-family: var(--font-title);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-sub);
  font-size: 20px;
  animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── BOTÕES ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,0,144,0.35), 0 0 30px rgba(155,29,255,0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 35px rgba(255,0,144,0.55), 0 0 50px rgba(155,29,255,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--white2);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

.btn-gold {
  background: var(--grad-gold);
  color: #000;
  font-weight: 800;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}

.btn-glow {
  animation: glowPulse 3s ease infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,0,144,0.35), 0 0 30px rgba(155,29,255,0.15); }
  50% { box-shadow: 0 4px 45px rgba(255,0,144,0.65), 0 0 70px rgba(155,29,255,0.30); }
}

.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 12px; }

/* ── SECTION BASE ── */
.section { padding: var(--section-py) 0; }

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

.section-badge {
  display: inline-block;
  background: rgba(255,0,144,0.10);
  border: 1px solid rgba(255,0,144,0.25);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 2px;
  color: var(--white2);
  margin-bottom: 10px;
  line-height: 1;
}

.section-sub {
  color: var(--text-sub);
  font-size: 15px;
}

.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── PROMO SECTION ── */
.promo-section { background: var(--bg-section); }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.promo-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
}

.promo-card.destaque {
  border-color: rgba(212,43,43,0.3);
  background: rgba(212,43,43,0.06);
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,43,43,0.4);
  box-shadow: 0 12px 40px rgba(212,43,43,0.2);
}

.promo-emoji { font-size: 40px; margin-bottom: 12px; display: block; }

.promo-titulo {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white2);
  margin-bottom: 8px;
}

.promo-desc {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 16px;
  line-height: 1.5;
}

.promo-prices {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.promo-price-orig {
  font-size: 14px;
  color: var(--gray);
  text-decoration: line-through;
}

.promo-price-new {
  font-family: var(--font-title);
  font-size: 28px;
  color: var(--gold);
}

.promo-economia {
  background: rgba(242,169,0,0.15);
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

.promo-validade {
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.promo-badge-periodo {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0,0,0,0.5);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
}

/* ── PERIODO BANNER ── */
.periodo-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(212,43,43,0.05) 0%, rgba(224,0,122,0.05) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.periodo-cards {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.periodo-card {
  flex: 1;
  max-width: 380px;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s ease;
}

.periodo-card:hover, .periodo-card.active {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(212,43,43,0.25);
}

.periodo-noite:hover, .periodo-noite.active {
  border-color: rgba(160,100,255,0.5);
  background: rgba(100,50,200,0.1);
  box-shadow: 0 16px 50px rgba(130,60,255,0.2);
}

.periodo-dia:hover, .periodo-dia.active {
  border-color: rgba(242,169,0,0.5);
  background: rgba(242,169,0,0.08);
  box-shadow: 0 16px 50px rgba(242,169,0,0.2);
}

.periodo-icon { font-size: 50px; margin-bottom: 14px; }

.periodo-card h3 {
  font-family: var(--font-title);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--white2);
  margin-bottom: 10px;
}

.periodo-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 14px;
}

.periodo-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 1px;
}

.periodo-vs {
  font-family: var(--font-title);
  font-size: 36px;
  color: var(--red);
  flex-shrink: 0;
  text-shadow: 0 0 30px rgba(212,43,43,0.5);
}

/* ── FILTER TABS ── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}

.filter-tab {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-sub);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.filter-tab:hover, .filter-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 0 15px rgba(212,43,43,0.3);
}

/* ── COMBOS GRID ── */
.combos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.combo-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.combo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
  border-color: rgba(212,43,43,0.35);
}

.combo-card-header {
  padding: 22px 22px 16px;
  background: linear-gradient(135deg, rgba(212,43,43,0.12) 0%, rgba(224,0,122,0.06) 100%);
  border-bottom: 1px solid var(--card-border);
}

.combo-periodo-badge {
  display: inline-block;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.combo-periodo-badge.noite {
  background: rgba(100,50,255,0.2);
  color: #a78bfa;
  border: 1px solid rgba(100,50,255,0.3);
}

.combo-periodo-badge.dia {
  background: rgba(242,169,0,0.2);
  color: var(--gold);
  border: 1px solid rgba(242,169,0,0.3);
}

.combo-periodo-badge.ambos {
  background: rgba(255,255,255,0.1);
  color: var(--text-sub);
  border: 1px solid rgba(255,255,255,0.15);
}

.combo-nome {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white2);
  margin-bottom: 6px;
}

.combo-desc {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.5;
}

.combo-card-body {
  padding: 16px 22px;
}

.combo-itens {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.combo-itens li {
  font-size: 12px;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 6px;
}

.combo-itens li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 11px;
}

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

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

.combo-economia {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
}

.combo-price {
  font-family: var(--font-title);
  font-size: 28px;
  color: var(--white2);
}

.combo-add-btn {
  background: var(--grad-main);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  white-space: nowrap;
}

.combo-add-btn:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-glow-red);
}

.destaque-badge {
  display: inline-block;
  background: var(--grad-gold);
  color: #000;
  font-size: 9px;
  font-weight: 900;
  border-radius: 20px;
  padding: 2px 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}

/* ── COMBO BUILDER ── */
.monte-combo-section {
  background: var(--bg-section);
}

.combo-builder {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

.builder-panel, .builder-summary {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.builder-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.builder-header h3 {
  font-family: var(--font-title);
  font-size: 20px;
  letter-spacing: 1px;
}

.builder-mode-tabs {
  display: flex;
  gap: 6px;
}

.builder-tab {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-sub);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.builder-tab.active, .builder-tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.builder-products {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  max-height: 420px;
  overflow-y: auto;
}

.builder-product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.builder-product-card:hover {
  border-color: rgba(212,43,43,0.35);
  background: rgba(212,43,43,0.06);
}

.builder-product-card.selected {
  border-color: var(--red);
  background: rgba(212,43,43,0.1);
}

.builder-product-emoji { font-size: 28px; margin-bottom: 6px; }

.builder-product-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--white2);
  margin-bottom: 4px;
  line-height: 1.3;
}

.builder-product-price {
  font-family: var(--font-title);
  font-size: 16px;
  color: var(--gold);
}

.builder-product-qty {
  position: absolute;
  top: 6px; right: 6px;
  background: var(--grad-main);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}

.builder-product-card.selected .builder-product-qty { display: flex; }

/* Summary */
.summary-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.summary-header h3 {
  font-family: var(--font-title);
  font-size: 20px;
  letter-spacing: 1px;
}

.clear-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-sub);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.clear-btn:hover { border-color: var(--red); color: var(--red); }

.summary-items {
  padding: 16px;
  min-height: 200px;
  max-height: 300px;
  overflow-y: auto;
}

.summary-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-sub);
}

.summary-empty i {
  font-size: 36px;
  margin-bottom: 10px;
  opacity: 0.4;
  display: block;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.summary-item:last-child { border-bottom: none; }

.summary-item-emoji { font-size: 20px; flex-shrink: 0; }

.summary-item-info { flex: 1; min-width: 0; }

.summary-item-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--white2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.summary-item-price { font-size: 11px; color: var(--text-sub); }

.summary-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.qty-btn {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  color: var(--white2);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.qty-btn:hover { background: var(--red); }

.qty-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--white2);
  min-width: 16px;
  text-align: center;
}

.summary-footer {
  padding: 16px 22px;
  border-top: 1px solid var(--card-border);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.summary-total span:first-child { color: var(--text-sub); font-weight: 600; }

.total-value {
  font-family: var(--font-title);
  font-size: 28px;
  color: var(--gold);
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,43,43,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.product-emoji { font-size: 44px; margin-bottom: 12px; }

.product-badge-periodo {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 14px;
}

.product-nome {
  font-weight: 700;
  font-size: 14px;
  color: var(--white2);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-desc {
  font-size: 11px;
  color: var(--text-sub);
  margin-bottom: 14px;
  line-height: 1.5;
}

.product-prices {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 14px;
}

.product-price-unit {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--white2);
}

.product-price-combo {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
}

.product-add-btn {
  background: rgba(212,43,43,0.12);
  border: 1px solid rgba(212,43,43,0.25);
  color: var(--white2);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-body);
}

.product-add-btn:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 15px rgba(212,43,43,0.4);
}

/* ── COPÃO SECTION ── */
.copao-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(212,43,43,0.08) 0%, rgba(224,0,122,0.05) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.copao-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.copao-title {
  font-family: var(--font-title);
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 18px;
}

.copao-desc {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.copao-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.copao-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-sub);
}

.copao-features li i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.copao-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.price-from { font-size: 13px; color: var(--text-sub); }

.price-value {
  font-family: var(--font-title);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}

/* CUP ANIMATION */
.copao-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.copao-cup {
  position: relative;
  animation: floatCup 4s ease-in-out infinite;
}

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

.cup-body {
  width: 160px;
  height: 220px;
  background: linear-gradient(180deg, rgba(212,43,43,0.3) 0%, rgba(100,0,180,0.3) 100%);
  border-radius: 10px 10px 30px 30px;
  border: 2px solid rgba(212,43,43,0.5);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 20px;
  box-shadow: 0 0 60px rgba(212,43,43,0.3), 0 0 120px rgba(224,0,122,0.15);
}

.cup-liquid {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(200,50,50,0.6) 0%, rgba(150,0,100,0.8) 100%);
  animation: liquidWave 3s ease-in-out infinite;
}

@keyframes liquidWave {
  0%, 100% { height: 60%; }
  50% { height: 65%; }
}

.cup-ice {
  position: relative;
  z-index: 2;
  font-size: 22px;
  margin-bottom: 8px;
}

.cup-brand {
  position: relative;
  z-index: 2;
  font-family: var(--font-title);
  font-size: 36px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(212,43,43,0.8);
}

.cup-glow {
  position: absolute;
  bottom: -20px;
  left: 50%; transform: translateX(-50%);
  width: 180px; height: 40px;
  background: rgba(212,43,43,0.3);
  filter: blur(20px);
  border-radius: 50%;
}

.copao-bubbles { position: absolute; inset: 0; pointer-events: none; }

.bubble {
  position: absolute;
  font-size: 24px;
  animation: bubbleFloat linear infinite;
}

.b1 { left: 10%; bottom: 20%; animation-duration: 5s; animation-delay: 0s; }
.b2 { right: 10%; bottom: 30%; animation-duration: 6s; animation-delay: 1s; }
.b3 { left: 20%; top: 20%; animation-duration: 4.5s; animation-delay: 2s; }
.b4 { right: 20%; top: 25%; animation-duration: 5.5s; animation-delay: 0.5s; }

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
  50% { transform: translateY(-20px) rotate(10deg); opacity: 1; }
}

/* ── PEDIDO SECTION ── */
.pedido-section { background: var(--bg-section); }

.pedido-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.cart-summary, .order-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cart-summary-title {
  padding: 20px 22px;
  border-bottom: 1px solid var(--card-border);
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 1px;
}

.cart-items-list {
  padding: 16px;
  min-height: 200px;
  max-height: 350px;
  overflow-y: auto;
}

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-sub);
}

.cart-empty i {
  font-size: 40px;
  opacity: 0.3;
  display: block;
  margin-bottom: 10px;
}

.cart-empty p { margin-bottom: 14px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-emoji { font-size: 22px; flex-shrink: 0; }

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white2);
}

.cart-item-qty {
  font-size: 11px;
  color: var(--text-sub);
}

.cart-item-price {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-sub);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.cart-item-remove:hover { color: var(--red); }

.cart-total-wrap {
  padding: 16px 22px;
  border-top: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-subtotal, .cart-entrega {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-sub);
}

.cart-total-final {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--white2);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.entrega-gratis { color: var(--gold); font-weight: 700; font-size: 12px; }

/* FORM */
.order-form-wrap { padding: 28px; }

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-label i { color: var(--gold); }

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--white2);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--red);
  background: rgba(212,43,43,0.06);
  box-shadow: 0 0 0 3px rgba(212,43,43,0.12);
}

.form-input::placeholder { color: var(--gray2); }

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.payment-opt {
  cursor: pointer;
}

.payment-opt input { display: none; }

.payment-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  transition: all 0.2s ease;
  cursor: pointer;
}

.payment-opt input:checked + .payment-card {
  border-color: var(--red);
  background: rgba(212,43,43,0.12);
  color: var(--white2);
  box-shadow: 0 0 12px rgba(212,43,43,0.2);
}

.payment-card:hover {
  border-color: rgba(212,43,43,0.35);
  color: var(--white2);
}

/* ── MODO DIA — DESTAQUES ── */
.dia-destaques {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 28px 20px;
  background: linear-gradient(135deg, rgba(242,169,0,0.06) 0%, rgba(255,107,0,0.04) 100%);
  border-top: 1px solid rgba(242,169,0,0.12);
  border-bottom: 1px solid rgba(242,169,0,0.12);
}

.dia-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242,169,0,0.2);
  border-radius: 14px;
  padding: 18px 22px;
  min-width: 130px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  animation: fadeInUp 0.5s ease both;
}

.dia-card:hover {
  background: rgba(242,169,0,0.1);
  border-color: rgba(242,169,0,0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(242,169,0,0.15);
}

.dia-icon  { font-size: 32px; }
.dia-label { font-weight: 800; font-size: 13px; color: var(--white2); }
.dia-sub   { font-size: 11px; color: var(--gold); font-weight: 600; }

/* Produto/Combo com destaque do período atual */
.combo-card-highlight {
  border-color: rgba(212,43,43,0.4) !important;
  background: rgba(212,43,43,0.05) !important;
}
body.mode-day .combo-card-highlight {
  border-color: rgba(242,169,0,0.4) !important;
  background: rgba(242,169,0,0.05) !important;
}

.product-card-highlight {
  border-color: rgba(212,43,43,0.35) !important;
}
body.mode-day .product-card-highlight {
  border-color: rgba(242,169,0,0.4) !important;
}

.product-badge-agora {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 6px;
}

/* Modo dia — tematizar acento ── */
body.mode-day .section-badge {
  background: rgba(242,169,0,0.15);
  border-color: rgba(242,169,0,0.25);
  color: var(--gold);
}

body.mode-day .filter-tab:hover,
body.mode-day .filter-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 0 15px rgba(242,169,0,0.35);
}

body.mode-day .btn-primary {
  background: linear-gradient(135deg, #f2a900 0%, #ff6b00 100%);
}

body.mode-day .promo-card::before {
  background: linear-gradient(90deg, var(--gold), var(--orange));
}

body.mode-day .hero-badge {
  background: rgba(242,169,0,0.15);
  border-color: rgba(242,169,0,0.3);
  color: var(--gold);
}

body.mode-day .nav-cta {
  background: linear-gradient(135deg, #f2a900, #ff6b00);
}

body.mode-day .cart-btn:hover {
  background: var(--gold);
  box-shadow: 0 0 15px rgba(242,169,0,0.4);
}

/* Logo troca suave */
#heroLogoImg {
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.4s ease;
}

/* ── BRAND STRIP ── */
.brand-strip {
  padding: 80px 0;
  background: var(--black2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.brand-strip-inner {
  display: grid;
  grid-template-columns: 260px 1fr 300px;
  gap: 48px;
  align-items: center;
}

.brand-strip-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-strip-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 0 24px rgba(212,43,43,0.35));
  transition: all 0.4s ease;
}

.brand-strip-img:hover {
  filter: drop-shadow(0 0 40px rgba(212,43,43,0.6)) brightness(1.05);
  transform: scale(1.03);
}

.brand-strip-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 3px;
  color: var(--white2);
  margin-bottom: 4px;
  line-height: 1;
}

.brand-strip-subtitle {
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.brand-strip-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 22px;
}

.brand-strip-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.brand-badge:hover {
  background: rgba(212,43,43,0.12);
  border-color: rgba(212,43,43,0.3);
  color: var(--white2);
}

.brand-strip-logos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.brand-logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.brand-logo-small {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  background: rgba(255,255,255,0.03);
  padding: 6px;
  transition: all 0.3s ease;
  filter: brightness(0.9);
}

.brand-logo-small:hover {
  filter: brightness(1.1) drop-shadow(0 0 12px rgba(212,43,43,0.4));
  transform: translateY(-3px);
  border-color: rgba(212,43,43,0.3);
}

.brand-logo-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .brand-strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .brand-strip-img { max-width: 180px; }

  .brand-strip-badges { justify-content: center; }

  .brand-strip-logos {
    flex-direction: row;
    justify-content: center;
  }

  .brand-logo-small { width: 110px; height: 110px; }
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 14px;
  line-height: 1.7;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-title);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-links a, .footer-contact a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover, .footer-contact a:hover { color: var(--white2); }

.footer-hours {
  font-size: 12px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray2);
}

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 360px;
  max-width: 90vw;
  background: var(--black2);
  border-left: 1px solid var(--card-border);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  padding: 20px 22px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h3 {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 1px;
}

.close-cart {
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--white2);
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}

.close-cart:hover { background: var(--red); }

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-drawer-footer {
  padding: 20px 22px;
  border-top: 1px solid var(--card-border);
}

.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.cart-drawer-total span:first-child { font-weight: 600; color: var(--text-sub); }

#cartDrawerTotal {
  font-family: var(--font-title);
  font-size: 28px;
  color: var(--gold);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.product-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  background: var(--black2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 480px;
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white2);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover { background: var(--red); }

.modal-content { padding: 28px; }

/* ── TOAST ── */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  pointer-events: none;
}

.toast {
  background: var(--black2);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.5s forwards;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.toast.success { border-color: #22c55e; background: rgba(34,197,94,0.1); }
.toast.error { border-color: var(--red); background: rgba(212,43,43,0.1); }
.toast.info { border-color: var(--gold); background: rgba(242,169,0,0.1); }

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

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(37,211,102,0.4);
  z-index: 900;
  transition: all 0.3s ease;
  animation: waPulse 3s ease infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(37,211,102,0.6);
}

.whatsapp-float i { font-size: 20px; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 50px rgba(37,211,102,0.6), 0 0 80px rgba(37,211,102,0.2); }
}

/* ── LOADING ── */
.loading-cards {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px;
  color: var(--text-sub);
}

.loading-spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 14px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── ANIMATIONS ── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .combo-builder {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-logo-col {
    order: -1;
  }

  .hero-logo-neon {
    max-width: 240px;
  }

  .hero-logo-neon-ring {
    width: 270px; height: 270px;
  }

  .hero-logo-img {
    max-width: 280px;
  }

  .hero-real-img {
    max-width: 420px;
  }

  .hero-img-glow-ring {
    width: 440px; height: 440px;
  }

  .hero-logo-glow {
    width: 240px;
    height: 240px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .copao-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .copao-visual { margin-top: 40px; order: -1; }

  .copao-logo-img { max-width: 280px; }

  .copao-features li { justify-content: center; }
  .copao-price { justify-content: center; }

  .pedido-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }

  .logo-img-header {
    height: 40px;
  }

  .hero-real-img {
    max-width: 320px;
  }
  .hero-img-glow-ring {
    width: 340px; height: 340px;
  }

  .hero-logo-img {
    max-width: 220px;
  }

  .footer-logo-img {
    height: 80px;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    background: rgba(12,12,28,0.98);
    flex-direction: column;
    padding: 16px;
    border: 1px solid var(--card-border);
    border-radius: 18px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.26s ease, opacity 0.26s ease;
    z-index: 1000;
    gap: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link { padding: 10px 16px; width: 100%; }

  .hamburger { display: flex; }
  .nav-overlay { display: block; }

  .mode-toggle-wrap { order: -1; }

  .periodo-cards {
    flex-direction: column;
  }

  .periodo-card { max-width: 100%; width: 100%; }

  .periodo-vs {
    transform: rotate(90deg);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-stats { flex-wrap: wrap; gap: 14px; }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .payment-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 48px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .builder-products { grid-template-columns: repeat(2, 1fr); }
  .combos-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .whatsapp-label { display: none; }
  .whatsapp-float { border-radius: 50%; padding: 14px; }
}

/* ============================================================
   NOVOS ELEMENTOS — HERO & MODO DIA/NOITE APRIMORADO
   ============================================================ */

/* Strip de produtos no hero */
.hero-products-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  animation: fadeInUp 0.7s ease 0.5s both;
}
.hero-product-chip {
  background: rgba(136,0,238,0.12);
  border: 1px solid rgba(204,0,255,0.38);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(230,210,255,0.92);
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(204,0,255,0.35);
  box-shadow: 0 0 10px rgba(136,0,238,0.10);
  backdrop-filter: blur(6px);
}
.hero-product-chip:hover {
  background: rgba(136,0,238,0.26);
  border-color: rgba(204,0,255,0.70);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(136,0,238,0.35);
}
body.mode-day .hero-product-chip {
  background: rgba(255,204,0,0.12);
  border-color: rgba(255,204,0,0.40);
  color: rgba(255,240,200,0.90);
  text-shadow: 0 0 8px rgba(255,204,0,0.4);
}
body.mode-day .hero-product-chip:hover {
  background: rgba(255,204,0,0.28);
  border-color: rgba(255,204,0,0.75);
  color: #fff;
  box-shadow: 0 0 18px rgba(255,204,0,0.35);
}

/* Pill de horário flutuante no hero */
.hero-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white2);
  margin-top: 18px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.7s ease 0.6s both;
}
.hero-time-pill i { color: var(--gold); }

/* Modo dia: hero-logo-glow dourado */
body.mode-day .hero-logo-glow {
  background: radial-gradient(circle, rgba(242,169,0,0.25) 0%, rgba(255,107,0,0.12) 50%, transparent 70%);
}

/* Modo dia: gradient no hero-gradient text */
body.mode-day .hero-gradient {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Faixa de modo ativo */
.modo-faixa {
  background: linear-gradient(90deg, rgba(212,43,43,0.15) 0%, rgba(224,0,122,0.1) 50%, rgba(212,43,43,0.15) 100%);
  border-top: 1px solid rgba(212,43,43,0.2);
  border-bottom: 1px solid rgba(212,43,43,0.2);
  padding: 10px 0;
  transition: all 0.4s ease;
}
body.mode-day .modo-faixa {
  background: linear-gradient(90deg, rgba(242,169,0,0.12) 0%, rgba(255,107,0,0.08) 50%, rgba(242,169,0,0.12) 100%);
  border-color: rgba(242,169,0,0.2);
}
.modo-faixa-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.modo-faixa-icon { font-size: 18px; }
.modo-faixa-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
}
.modo-faixa-btn {
  background: var(--grad-main);
  border: none;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}
.modo-faixa-btn:hover { opacity: 0.85; transform: scale(1.03); }
body.mode-day .modo-faixa-btn { background: var(--grad-gold); color: #000; }

/* Período cards - lista de itens */
.periodo-lista {
  list-style: none;
  text-align: left;
  margin: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.periodo-lista li {
  font-size: 12px;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Botão dentro do período card */
.periodo-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}
.periodo-btn-noite {
  background: rgba(130,60,255,0.2);
  color: #a78bfa;
  border: 1px solid rgba(130,60,255,0.3);
}
.periodo-btn-noite:hover,
.periodo-noite.active .periodo-btn-noite {
  background: #6c3dff;
  color: #fff;
}
.periodo-btn-dia {
  background: rgba(242,169,0,0.15);
  color: var(--gold);
  border: 1px solid rgba(242,169,0,0.3);
}
.periodo-btn-dia:hover,
.periodo-dia.active .periodo-btn-dia {
  background: var(--gold);
  color: #000;
}

/* VS aprimorado */
.periodo-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.periodo-vs-circle {
  width: 54px; height: 54px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 22px;
  color: #fff;
  box-shadow: var(--shadow-glow-red);
  animation: glowPulse 3s ease infinite;
}
.periodo-vs-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  display: none;
}

/* Seção de destaques dia/noite */
.dia-destaques-section {
  padding: 30px 0;
  background: linear-gradient(135deg, rgba(212,43,43,0.04) 0%, rgba(224,0,122,0.03) 100%);
}
.dia-destaques {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dia-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.dia-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,43,43,0.3);
  box-shadow: 0 8px 30px rgba(212,43,43,0.15);
}
body.mode-day .dia-card:hover {
  border-color: rgba(242,169,0,0.35);
  box-shadow: 0 8px 30px rgba(242,169,0,0.15);
}
.dia-icon { font-size: 36px; }
.dia-label { font-weight: 700; font-size: 14px; color: var(--white2); }
.dia-sub { font-size: 11px; color: var(--text-sub); }

/* Combo card highlight no modo atual */
.combo-card-highlight {
  border-color: rgba(212,43,43,0.35) !important;
  box-shadow: 0 4px 20px rgba(212,43,43,0.12);
}
body.mode-day .combo-card-highlight {
  border-color: rgba(242,169,0,0.35) !important;
  box-shadow: 0 4px 20px rgba(242,169,0,0.12);
}

/* Product card highlight */
.product-card-highlight {
  border-color: rgba(212,43,43,0.3) !important;
}
body.mode-day .product-card-highlight {
  border-color: rgba(242,169,0,0.3) !important;
}
.product-badge-agora {
  display: inline-block;
  background: var(--grad-gold);
  color: #000;
  font-size: 9px;
  font-weight: 900;
  border-radius: 20px;
  padding: 2px 8px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* Brand strip logos */
.brand-strip-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 0 20px rgba(212,43,43,0.3));
}
.brand-logo-small {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 0 12px rgba(212,43,43,0.25));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.brand-logo-small:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 20px rgba(212,43,43,0.5));
}

/* Admin stripe logo */
.brand-strip {
  background: linear-gradient(135deg, rgba(20,10,40,0.9) 0%, rgba(30,10,20,0.9) 100%);
  border-top: 1px solid rgba(212,43,43,0.15);
  border-bottom: 1px solid rgba(212,43,43,0.15);
  padding: 50px 0;
}
.brand-strip-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 40px;
  align-items: center;
}
.brand-strip-title {
  font-family: var(--font-title);
  font-size: 42px;
  letter-spacing: 4px;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.brand-strip-subtitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.brand-strip-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 18px;
}
.brand-strip-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-badge {
  background: rgba(212,43,43,0.12);
  border: 1px solid rgba(212,43,43,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-sub);
}
.brand-strip-logos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.brand-logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.brand-logo-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-sub);
  text-transform: uppercase;
}

/* Sidebar logo no admin */
.sidebar-logo-img {
  width: 100%;
  max-width: 130px;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 0 14px rgba(212,43,43,0.3));
}

/* Responsive - novos elementos */
@media (max-width: 1024px) {
  .brand-strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .brand-strip-logo { display: flex; justify-content: center; }
  .brand-strip-badges { justify-content: center; }
  .brand-strip-logos { flex-direction: row; justify-content: center; }
  .dia-destaques { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .hero-products-strip { justify-content: center; }
  .hero-time-pill { display: none; }
  .modo-faixa-text { display: none; }
  .dia-destaques { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .dia-destaques { grid-template-columns: repeat(2,1fr); }
  .brand-strip-logos { flex-wrap: wrap; }
  .periodo-vs { flex-direction: row; }
  .periodo-vs-circle { width: 40px; height: 40px; font-size: 16px; }
}

/* ── DIA-NOITE HERO BACKGROUND ── */
body.mode-night .hero {
  background: linear-gradient(160deg, #0a0a1a 0%, #1a0a2e 50%, #0d0d1e 100%);
}
body.mode-day .hero {
  background: linear-gradient(160deg, #0d2640 0%, #0a1e35 50%, #112d4e 100%);
}
body.mode-day .hero-overlay {
  background: radial-gradient(ellipse at 30% 50%, rgba(242,169,0,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(255,107,0,0.06) 0%, transparent 60%);
}

/* Scrollbar modo dia */
body.mode-day::-webkit-scrollbar-thumb { background: var(--gold); }

/* Copão section modo dia */
body.mode-day .copao-section {
  background: linear-gradient(135deg, rgba(242,169,0,0.06) 0%, rgba(255,107,0,0.04) 100%);
}

/* Glow mode day - filter tabs */
body.mode-day .filter-tab:hover,
body.mode-day .filter-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 0 15px rgba(242,169,0,0.35);
}
body.mode-day .builder-tab.active,
body.mode-day .builder-tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* Modo dia - destaque promo card */
body.mode-day .promo-card::before {
  background: var(--grad-gold);
}
body.mode-day .promo-card:hover {
  border-color: rgba(242,169,0,0.4);
  box-shadow: 0 12px 40px rgba(242,169,0,0.15);
}

/* Modo dia - nav CTA */
body.mode-day .nav-cta {
  background: var(--grad-gold);
  color: #000 !important;
}
body.mode-day .btn-primary {
  background: var(--grad-gold);
  color: #000;
  box-shadow: 0 4px 20px rgba(242,169,0,0.3);
}
body.mode-day .btn-primary:hover {
  box-shadow: 0 6px 30px rgba(242,169,0,0.5);
}
body.mode-day .btn-glow {
  animation: glowPulseDay 3s ease infinite;
}
@keyframes glowPulseDay {
  0%, 100% { box-shadow: 0 4px 20px rgba(242,169,0,0.3); }
  50% { box-shadow: 0 4px 35px rgba(242,169,0,0.6), 0 0 60px rgba(255,107,0,0.2); }
}

/* Modo dia - secção header cor âmbar */
body.mode-day .header {
  border-bottom-color: rgba(242,169,0,0.2);
}
body.mode-day .logo-img-header {
  filter: drop-shadow(0 0 12px rgba(242,169,0,0.45));
}
body.mode-day .cart-btn:hover {
  background: var(--gold);
  box-shadow: var(--shadow-glow-gold);
}

/* Modo dia - section badge */
body.mode-day .section-badge {
  background: rgba(242,169,0,0.12);
  border-color: rgba(242,169,0,0.25);
}
body.mode-day .gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Modo dia - copão */
body.mode-day .copao-logo-img {
  filter: drop-shadow(0 0 30px rgba(242,169,0,0.45)) drop-shadow(0 0 60px rgba(255,107,0,0.25));
}

/* Modo dia - cards */
body.mode-day .combo-add-btn {
  background: var(--grad-gold);
  color: #000;
}
body.mode-day .combo-add-btn:hover {
  box-shadow: var(--shadow-glow-gold);
}
body.mode-day .product-add-btn {
  background: var(--grad-gold);
  color: #000;
}
body.mode-day .promo-price-new {
  color: var(--orange);
}
body.mode-day .combo-price {
  color: var(--gold);
}

/* Modo dia - periodo banner */
body.mode-day .periodo-banner {
  background: linear-gradient(135deg, rgba(242,169,0,0.05) 0%, rgba(255,107,0,0.05) 100%);
}

/* Modo dia - brand strip */
body.mode-day .brand-strip {
  background: linear-gradient(135deg, rgba(10,30,50,0.9) 0%, rgba(15,40,60,0.9) 100%);
}
body.mode-day .brand-strip-title {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
}
body.mode-day .brand-badge {
  background: rgba(242,169,0,0.1);
  border-color: rgba(242,169,0,0.2);
}
body.mode-day .brand-logo-small {
  filter: drop-shadow(0 0 12px rgba(242,169,0,0.3));
}
body.mode-day .brand-strip-img {
  filter: drop-shadow(0 0 20px rgba(242,169,0,0.35));
}

/* Modo dia - whatsapp float */
body.mode-day .whatsapp-float {
  background: #128c7e;
}

/* Modo dia - periodo-noite highlight desativado */
body.mode-day .periodo-noite {
  opacity: 0.75;
}
body.mode-day .periodo-dia {
  opacity: 1;
}
body.mode-night .periodo-dia {
  opacity: 0.75;
}
body.mode-night .periodo-noite {
  opacity: 1;
}

/* Scrollbar dia */
body.mode-day::-webkit-scrollbar-thumb { background: var(--gold); }

/* Hero logo col - posição relativa para pill */
.hero-logo-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero content ajuste para 2 colunas */
.hero-content {
  max-width: 1200px !important;
  width: 100%;
}
