/* Barlow Condensed (SIL Open Font License 1.1) - servida pelo proprio site. */
@font-face {
  font-family: "Barlow Condensed";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/barlow-condensed-italic-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/barlow-condensed-italic-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/barlow-condensed-italic-800-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/barlow-condensed-italic-800-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --destaque: #1e90ff;
  --destaque-2: #00d0ff;
  --destaque-escuro: #0b5ed7;
  --destaque-suave: rgba(30, 144, 255, 0.14);
  --brilho: rgba(30, 144, 255, 0.45);
  --fundo: #000000;
  --fundo-2: #0a0a0e;
  --fundo-3: #121219;
  --borda: #1c1c26;
  --texto: #ffffff;
  --texto-2: #8e8ea3;
  --verde: #22c55e;
  --vermelho: #ef4444;
  --whats: #25d366;
  --raio: 14px;
  --largura: 1080px;
  --display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--fundo);
  color: var(--texto);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  padding-bottom: 96px;
}

/* Brilho azul difuso no topo, como o fundo da marca. */
body::before {
  content: "";
  position: fixed;
  top: -260px;
  left: 50%;
  width: 760px;
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(30, 144, 255, 0.18), transparent);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3 { margin: 0; line-height: 1.05; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
[hidden] { display: none !important; }

.titulo-marca {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- portao de idade ---------- */

.portao {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 24px;
}

.portao__caixa {
  position: relative;
  background: linear-gradient(180deg, #0c0c12 0%, #000 100%);
  border: 1px solid var(--borda);
  border-radius: 18px;
  padding: 30px 22px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 60px rgba(30, 144, 255, 0.12);
}

.portao__selo {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  gap: 0;
  color: var(--destaque);
  border: 2px solid var(--destaque);
  background: var(--destaque-suave);
  box-shadow: 0 0 26px var(--brilho), inset 0 0 18px rgba(30, 144, 255, 0.18);
}

.portao__selo svg { width: 22px; height: 22px; filter: drop-shadow(0 0 6px var(--brilho)); }

.portao__selo span {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
}

.portao__titulo {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.portao__texto { color: var(--texto-2); font-size: 14px; margin: 0 0 22px; }
.portao__acoes { display: grid; gap: 10px; }

/* ---------- capa ---------- */

.capa { position: relative; overflow: hidden; z-index: 1; }

.capa__imagem {
  height: 168px;
  background: #000;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Risco diagonal de energia atras da marca. */
.capa__imagem::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 38%, rgba(30, 144, 255, 0.5) 49%, rgba(0, 208, 255, 0.15) 52%, transparent 62%),
    linear-gradient(180deg, rgba(11, 94, 215, 0.25) 0%, transparent 70%);
}

.capa__imagem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, var(--fundo) 96%);
}

.capa__conteudo {
  max-width: var(--largura);
  margin: -58px auto 0;
  padding: 0 16px 18px;
  position: relative;
  text-align: center;
}

.capa__marca {
  width: 100%;
  max-width: 230px;
  margin: 0 auto 6px;
  filter: drop-shadow(0 0 30px rgba(30, 144, 255, 0.35));
}

.capa__logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 12px;
  border-radius: 22px;
  border: 1px solid var(--borda);
  background: var(--fundo-3) center/cover no-repeat;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(30, 144, 255, 0.18);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 40px;
  font-weight: 800;
  color: var(--destaque);
}

.capa__nome {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 34px;
  letter-spacing: 0.5px;
}

.capa__slogan {
  color: var(--texto-2);
  margin: 8px 0 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.capa__meta {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pill {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--verde);
  border: 1px solid rgba(34, 197, 94, 0.32);
}

.pill--fechado {
  background: rgba(239, 68, 68, 0.12);
  color: var(--vermelho);
  border-color: rgba(239, 68, 68, 0.32);
}

.pill--suave { background: var(--fundo-3); color: var(--texto-2); border-color: var(--borda); }

.capa__links { display: flex; gap: 8px; justify-content: center; margin-top: 14px; flex-wrap: wrap; }

.link-icone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--fundo-2);
  border: 1px solid var(--borda);
  color: var(--texto);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.link-icone svg { width: 16px; height: 16px; color: var(--destaque); }
.link-icone:hover { border-color: var(--destaque); box-shadow: 0 0 18px rgba(30, 144, 255, 0.22); }

/* ---------- barra de busca e categorias ---------- */

.barra {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borda);
  padding: 10px 0 0;
}

.busca {
  position: relative;
  max-width: var(--largura);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
}

.busca__icone {
  position: absolute;
  left: 30px;
  width: 18px;
  height: 18px;
  color: var(--texto-2);
  pointer-events: none;
}

.busca input {
  width: 100%;
  background: var(--fundo-2);
  border: 1px solid var(--borda);
  border-radius: 11px;
  color: var(--texto);
  padding: 11px 38px 11px 40px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.busca input:focus { border-color: var(--destaque); box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.12); }
.busca input::-webkit-search-cancel-button { display: none; }

.busca__limpar {
  position: absolute;
  right: 26px;
  background: none;
  border: 0;
  color: var(--texto-2);
  font-size: 22px;
  line-height: 1;
  padding: 0 4px;
}

.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 16px;
  max-width: var(--largura);
  margin: 0 auto;
  scrollbar-width: none;
}

.chips::-webkit-scrollbar { display: none; }

.chip {
  flex: 0 0 auto;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--fundo-2);
  border: 1px solid var(--borda);
  color: var(--texto-2);
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.chip--ativo {
  background: linear-gradient(120deg, var(--destaque-escuro), var(--destaque-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.35);
}

/* ---------- catalogo ---------- */

.conteudo { position: relative; z-index: 1; max-width: var(--largura); margin: 0 auto; padding: 20px 16px 40px; }

.secao { margin-bottom: 28px; }

.secao__titulo {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--texto);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.secao__titulo::before {
  content: "";
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, var(--destaque-2), var(--destaque-escuro));
  transform: skewX(-12deg);
  box-shadow: 0 0 12px var(--brilho);
}

.secao__titulo::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--borda), transparent);
}

.grade { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

@media (min-width: 620px) { .grade { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 900px) { .grade { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: linear-gradient(180deg, var(--fundo-2) 0%, #000 100%);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  overflow: hidden;
  text-align: left;
  padding: 0;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 144, 255, 0.55);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.7), 0 0 24px rgba(30, 144, 255, 0.18);
}

.card--esgotado { opacity: 0.5; }

.card__midia {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #08080c center/cover no-repeat;
  display: grid;
  place-items: center;
  color: #2a2a3c;
  font-size: 30px;
}

.card__selo {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 9px;
  border-radius: 4px;
  background: linear-gradient(120deg, var(--destaque-escuro), var(--destaque-2));
  color: #fff;
  box-shadow: 0 0 16px rgba(30, 144, 255, 0.4);
}

.card__selo--esgotado { background: #24242f; color: var(--texto-2); box-shadow: none; }
.card__selo--promo { background: linear-gradient(120deg, #b91c1c, #f43f5e); box-shadow: 0 0 16px rgba(244, 63, 94, 0.35); }

.card__corpo { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 4px; flex: 1; }

.card__nome {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.card__descricao {
  font-size: 12px;
  color: var(--texto-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__rodape { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-top: auto; padding-top: 8px; }

.card__preco {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  font-weight: 800;
  color: var(--texto);
  line-height: 1;
}

.card__preco small {
  display: block;
  font-size: 12px;
  color: var(--texto-2);
  text-decoration: line-through;
  font-weight: 600;
  margin-bottom: 1px;
}

.card__mais {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 0;
  background: linear-gradient(140deg, var(--destaque-escuro), var(--destaque-2));
  color: #fff;
  font-size: 19px;
  line-height: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 0 18px rgba(30, 144, 255, 0.35);
}

.vazio { text-align: center; padding: 56px 16px; color: var(--texto-2); }
.vazio__icone { color: var(--destaque); opacity: 0.55; margin-bottom: 10px; }
.vazio__icone svg { width: 34px; height: 34px; margin: 0 auto; }

/* ---------- botoes ---------- */

.botao {
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 12px 18px;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--texto);
  background: var(--fundo-3);
}

.botao--primario {
  background: linear-gradient(120deg, var(--destaque-escuro), var(--destaque-2));
  color: #fff;
  box-shadow: 0 0 22px rgba(30, 144, 255, 0.3);
}

.botao--primario:disabled { background: #1c1c26; color: var(--texto-2); box-shadow: none; cursor: not-allowed; }
.botao--fantasma { background: transparent; border-color: var(--borda); color: var(--texto-2); }
.botao--whats { background: var(--whats); color: #052e10; box-shadow: 0 0 22px rgba(37, 211, 102, 0.22); }
.botao--cheio { width: 100%; }

/* ---------- modais ---------- */

.modal { position: fixed; inset: 0; z-index: 70; display: flex; align-items: flex-end; justify-content: center; }
.modal__fundo { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.8); }

.modal__painel {
  position: relative;
  background: linear-gradient(180deg, #0c0c12 0%, #000 60%);
  border: 1px solid var(--borda);
  border-radius: 18px 18px 0 0;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  animation: subir 0.22s ease;
}

@media (min-width: 620px) {
  .modal { align-items: center; }
  .modal__painel { border-radius: 18px; }
}

@keyframes subir { from { transform: translateY(24px); opacity: 0; } }

.modal__fechar {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--borda);
  background: rgba(0, 0, 0, 0.7);
  color: var(--texto);
  font-size: 22px;
  line-height: 1;
}

.produto-detalhe__foto {
  aspect-ratio: 4 / 3;
  background: #08080c center/cover no-repeat;
  display: grid;
  place-items: center;
  color: #2a2a3c;
  font-size: 40px;
}

.produto-detalhe__info { padding: 16px; display: grid; gap: 10px; }

.etiqueta {
  justify-self: start;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--destaque-2);
  background: var(--destaque-suave);
  padding: 3px 10px;
  border-radius: 5px;
}

.produto-detalhe__info h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 27px;
  letter-spacing: 0.4px;
}

.produto-detalhe__descricao { color: var(--texto-2); font-size: 14px; margin: 0; white-space: pre-line; }

.produto-detalhe__preco {
  font-family: var(--display);
  font-style: italic;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.produto-detalhe__preco small { font-size: 16px; color: var(--texto-2); text-decoration: line-through; font-weight: 600; margin-left: 8px; }
.produto-detalhe__acoes { display: flex; gap: 10px; align-items: center; margin-top: 4px; }

.contador {
  display: flex;
  align-items: center;
  background: var(--fundo-3);
  border: 1px solid var(--borda);
  border-radius: 11px;
  overflow: hidden;
  flex: 0 0 auto;
}

.contador button { width: 38px; height: 46px; background: none; border: 0; color: var(--texto); font-size: 18px; }
.contador span { min-width: 30px; text-align: center; font-weight: 700; font-family: var(--display); font-style: italic; font-size: 19px; }

/* ---------- carrinho ---------- */

.carrinho-flutuante {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 50;
  width: calc(100% - 32px);
  max-width: 440px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(120deg, var(--destaque-escuro), var(--destaque-2));
  color: #fff;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.6), 0 0 26px rgba(30, 144, 255, 0.4);
}

.carrinho-flutuante strong { margin-left: auto; }

.carrinho-flutuante__qtd {
  background: rgba(0, 0, 0, 0.28);
  border-radius: 7px;
  min-width: 28px;
  padding: 2px 7px;
  text-align: center;
  font-size: 15px;
}

.modal--lateral { align-items: stretch; justify-content: flex-end; }

.gaveta {
  position: relative;
  background: linear-gradient(180deg, #0a0a0e 0%, #000 100%);
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--borda);
  animation: entrar 0.22s ease;
}

@keyframes entrar { from { transform: translateX(30px); opacity: 0; } }

.gaveta__topo {
  padding: 16px;
  border-bottom: 1px solid var(--borda);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gaveta__topo h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 23px;
  letter-spacing: 0.5px;
}

.gaveta__topo .modal__fechar { position: static; background: var(--fundo-3); }
.gaveta__corpo { padding: 16px; overflow-y: auto; flex: 1; }
.gaveta__vazio { color: var(--texto-2); text-align: center; padding: 40px 0; }

.item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--borda); }

.item__foto {
  width: 52px;
  height: 52px;
  border-radius: 9px;
  background: var(--fundo-3) center/cover no-repeat;
  border: 1px solid var(--borda);
  flex: 0 0 auto;
}

.item__info { flex: 1; min-width: 0; }
.item__nome { font-family: var(--display); font-style: italic; font-weight: 700; font-size: 16px; text-transform: uppercase; }
.item__obs { font-size: 12px; color: var(--texto-2); }
.item__preco { font-size: 13px; color: var(--texto-2); }
.item__controles { display: flex; align-items: center; gap: 6px; }
.item__controles button { width: 28px; height: 28px; border-radius: 7px; background: var(--fundo-3); border: 1px solid var(--borda); color: var(--texto); }

.resumo {
  background: var(--fundo-2);
  border: 1px solid var(--borda);
  border-radius: 11px;
  padding: 12px;
  margin: 16px 0;
  display: grid;
  gap: 6px;
}

.resumo__linha { display: flex; justify-content: space-between; font-size: 14px; color: var(--texto-2); }

.resumo__linha--total {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--texto);
  text-transform: uppercase;
  padding-top: 8px;
  border-top: 1px dashed var(--borda);
  align-items: baseline;
}

.aviso-minimo { color: #fbbf24; font-size: 13px; margin: 4px 0 0; }

.formulario { display: grid; gap: 12px; }

.formulario__titulo {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--destaque-2);
  margin-top: 8px;
}

.formulario__nota { font-size: 12px; color: var(--texto-2); text-align: center; margin: 0; }

.campo { display: grid; gap: 5px; }
.campo > span { font-size: 13px; color: var(--texto-2); }

.campo input, .campo textarea, .campo select {
  background: var(--fundo-3);
  border: 1px solid var(--borda);
  border-radius: 10px;
  padding: 11px 12px;
  color: var(--texto);
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  outline: none;
}

.campo input:focus, .campo textarea:focus, .campo select:focus {
  border-color: var(--destaque);
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.12);
}

.campo textarea { resize: vertical; }

.opcoes { display: flex; flex-wrap: wrap; gap: 8px; }
.opcao { position: relative; }
.opcao input { position: absolute; opacity: 0; pointer-events: none; }

.opcao span {
  display: block;
  padding: 9px 15px;
  border-radius: 10px;
  background: var(--fundo-3);
  border: 1px solid var(--borda);
  font-size: 14px;
  color: var(--texto-2);
}

.opcao input:checked + span {
  border-color: var(--destaque);
  background: var(--destaque-suave);
  color: var(--texto);
  font-weight: 600;
  box-shadow: 0 0 16px rgba(30, 144, 255, 0.18);
}

.opcao input:focus-visible + span { outline: 2px solid var(--destaque-2); outline-offset: 2px; }

.pix-dica {
  font-size: 13px;
  background: var(--destaque-suave);
  border: 1px dashed var(--destaque);
  border-radius: 10px;
  padding: 10px;
  margin: 0;
  word-break: break-all;
}

/* ---------- rodape ---------- */

.rodape {
  position: relative;
  z-index: 1;
  max-width: var(--largura);
  margin: 0 auto;
  padding: 26px 16px 40px;
  border-top: 1px solid var(--borda);
  text-align: center;
  color: var(--texto-2);
  font-size: 13px;
}

.rodape__bloco { margin-bottom: 8px; }
.rodape__aviso { font-size: 11px; opacity: 0.6; max-width: 440px; margin: 16px auto 0; }

.rodape__creditos {
  margin-top: 14px;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.55;
}

/* ---------- toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  z-index: 95;
  background: #0c0c12;
  border: 1px solid rgba(30, 144, 255, 0.35);
  color: var(--texto);
  padding: 11px 18px;
  border-radius: 11px;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(30, 144, 255, 0.15);
  animation: subir 0.2s ease;
}

/* Some da tela, mas continua disponivel para leitores de tela. */
.sr-oculto {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------- acesso secreto ao painel ---------- */

button.pill { cursor: pointer; font: inherit; font-family: var(--display); font-style: italic; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.6px; }

/* Primeira etapa concluida: o status pulsa de leve avisando que esta ouvindo. */
.pill--armado { animation: pulsar 1.1s ease-in-out infinite; }

@keyframes pulsar {
  0%, 100% { box-shadow: 0 0 0 rgba(30, 144, 255, 0); }
  50% { box-shadow: 0 0 14px rgba(30, 144, 255, 0.55); }
}

#modalAcesso { z-index: 96; align-items: center; }

.acesso {
  position: relative;
  background: linear-gradient(180deg, #0c0c12 0%, #000 100%);
  border: 1px solid var(--borda);
  border-radius: 18px;
  padding: 26px 22px;
  width: calc(100% - 32px);
  max-width: 330px;
  display: grid;
  gap: 10px;
  text-align: center;
  box-shadow: 0 0 60px rgba(30, 144, 255, 0.14);
  animation: subir 0.2s ease;
}

.acesso__raio {
  width: 52px;
  height: 52px;
  margin: 0 auto 2px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--destaque);
  border: 1px solid rgba(30, 144, 255, 0.45);
  background: var(--destaque-suave);
  box-shadow: 0 0 22px rgba(30, 144, 255, 0.3);
}

.acesso__raio svg { width: 22px; height: 22px; }

.acesso h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.6px;
}

.acesso p { color: var(--texto-2); font-size: 13px; margin: 0 0 4px; }

.acesso input {
  background: var(--fundo-3);
  border: 1px solid var(--borda);
  border-radius: 10px;
  padding: 12px;
  color: var(--texto);
  font-size: 16px;
  text-align: center;
  letter-spacing: 3px;
  outline: none;
}

.acesso input:focus { border-color: var(--destaque); box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.12); }
.acesso__erro { color: var(--vermelho); font-size: 13px; margin: 0; }

/* ---------- estoque ---------- */

.card__selo--pouco {
  background: linear-gradient(120deg, #b45309, #f59e0b);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.35);
}

.produto-detalhe__estoque {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fbbf24;
}

/* ---------- sabores ---------- */

.sabores { display: grid; gap: 8px; }

.sabores__titulo {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--destaque-2);
}

.sabores__lista { display: flex; flex-wrap: wrap; gap: 8px; }

.sabor {
  position: relative;
  padding: 9px 14px;
  border-radius: 10px;
  background: var(--fundo-3);
  border: 1px solid var(--borda);
  color: var(--texto-2);
  font-size: 14px;
  text-align: left;
  line-height: 1.2;
}

.sabor--ativo {
  border-color: var(--destaque);
  background: var(--destaque-suave);
  color: var(--texto);
  font-weight: 600;
  box-shadow: 0 0 16px rgba(30, 144, 255, 0.2);
}

.sabor--esgotado { opacity: 0.4; text-decoration: line-through; cursor: not-allowed; }

.sabor small {
  display: block;
  font-size: 11px;
  text-decoration: none;
  color: var(--texto-2);
  font-weight: 500;
  margin-top: 1px;
}

.sabor--ativo small { color: var(--destaque-2); }

.card__sabores {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--destaque-2);
  background: var(--destaque-suave);
  border-radius: 6px;
  padding: 2px 7px;
}

.card__sabores svg { width: 11px; height: 11px; flex: 0 0 auto; }
