@charset "UTF-8";

/* =========================================================================
   Fruta Pão Praia — design system "Tropical Breezes"
   Tokens espelhados do projeto Stitch `Fruta Pão Praia Web`.
   ========================================================================= */

:root {
  --surface:            #fcf9f4;
  --surface-dim:        #dcdad5;
  --surface-lowest:     #ffffff;
  --surface-low:        #f6f3ee;
  --surface-container:  #f0ede9;
  --surface-high:       #ebe8e3;
  --surface-highest:    #e5e2dd;

  --on-surface:         #1c1c19;
  --on-surface-variant: #54424a;
  --inverse-surface:    #31302d;

  --outline:            #87717b;
  --outline-variant:    #d9c0ca;

  /* Roxo da marca amostrado direto da logo (#A90466). É a cor padrão do site. */
  --primary:            #a90466;
  --on-primary:         #ffffff;
  --primary-container:  #a90466;
  --primary-deep:       #7c0349;   /* tom mais escuro, só para hover/pressão */
  --primary-fixed:      #ffd8e9;
  --primary-fixed-dim:  #ffafd7;
  --on-primary-fixed:   #3c0029;

  --secondary:          #3e6470;
  --on-secondary:       #ffffff;
  --secondary-container:#bfe6f5;
  --on-secondary-fixed: #001f28;
  --on-secondary-fixed-variant: #264c58;

  --tertiary:           #123f0f;
  --on-tertiary:        #ffffff;
  --tertiary-container: #2a5724;
  --on-tertiary-container:#99cc8c;
  --tertiary-fixed:     #bcf0ae;
  --on-tertiary-fixed:  #002201;
  --on-tertiary-fixed-variant: #23501e;

  --font-display: "Epilogue", ui-sans-serif, system-ui, sans-serif;
  --font-body:    "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-accent:  "Be Vietnam Pro", var(--font-body);

  --display-lg:  clamp(2.6rem, 1.8rem + 3.6vw, 4.5rem);
  --headline-lg: clamp(1.95rem, 1.5rem + 1.9vw, 3rem);
  --headline-md: clamp(1.45rem, 1.28rem + 0.8vw, 2rem);
  --body-lg:     1.125rem;
  --body-md:     1rem;
  --label-md:    0.875rem;

  --container-max: 1280px;
  --gutter:        24px;
  --margin-page:   clamp(20px, 1rem + 3vw, 72px);
  /* Stitch pede section-gap 120; na prática ficou arejado demais no scroll real. */
  --section-gap:   clamp(48px, 2rem + 4.5vw, 88px);

  --r-sm: 0.25rem; --r: 0.5rem; --r-md: 0.75rem;
  --r-lg: 1rem;    --r-xl: 1.5rem; --r-full: 9999px;

  --z-sticky: 100; --z-header: 200; --z-veil: 300; --z-drawer: 400; --z-lightbox: 500;

  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ---------- Reset ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 6rem; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: var(--body-md);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, video, iframe { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; text-wrap: balance; }
h1 { font-size: var(--display-lg); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: var(--headline-lg); font-weight: 600; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: var(--headline-md); font-weight: 500; line-height: 1.3; }

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--primary-container); outline-offset: 3px; border-radius: var(--r-sm); }
::selection { background: var(--primary-container); color: var(--on-primary); }

/* ---------- Layout ---------- */

.wrap { width: min(100% - (var(--margin-page) * 2), var(--container-max)); margin-inline: auto; }
.bay { padding-block: var(--section-gap); }
.bay--tight { padding-block: calc(var(--section-gap) * 0.62); }
.prose { max-width: 68ch; }

.lede { font-size: var(--body-lg); line-height: 1.6; color: var(--on-surface-variant); max-width: 56ch; }
.muted { color: var(--on-surface-variant); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.center .btn-row { justify-content: center; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--primary); color: var(--on-primary);
  padding: 0.85rem 1.25rem; font-weight: 700; z-index: 999; border-radius: 0 0 var(--r) 0;
}
.skip:focus { left: 0; top: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Cabeçalho ---------- */
/* Sólido de propósito: o header translúcido lavava sobre cada seção colorida. */

.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: var(--surface);
  border-bottom: 1px solid var(--outline-variant);
  transition: box-shadow 0.25s var(--ease-soft);
}

.site-header[data-scrolled="true"] { box-shadow: 0 4px 16px rgb(60 0 41 / 0.10); }

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.75rem;
}

.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; flex-shrink: 0; }
/* A marca já traz o wordmark, então precisa de mais altura pra "Fruta Pão" ficar legível. */
.brand img { width: auto; height: clamp(2.6rem, 2.1rem + 1.4vw, 3.4rem); }

.nav { display: flex; align-items: center; gap: 0.1rem; }

.nav a:not(.btn) {
  text-decoration: none; font-size: var(--label-md); font-weight: 600;
  color: var(--on-surface-variant);
  padding: 0.6rem 0.8rem; border-radius: var(--r);
  transition: color 0.2s var(--ease-soft), background-color 0.2s var(--ease-soft);
}

.nav a:not(.btn):hover { color: var(--primary); background: var(--surface-container); }

.nav a:not(.btn)[aria-current="page"] {
  color: var(--primary); background: var(--primary-fixed);
}

.nav__cta { margin-left: 0.75rem; }

.nav-toggle {
  display: none; align-items: center; gap: 0.5rem;
  min-height: 44px; padding: 0.55rem 0.9rem;
  background: var(--surface-container); color: var(--on-surface);
  border: 1px solid var(--outline-variant); border-radius: var(--r);
  font: inherit; font-weight: 700; font-size: var(--label-md); cursor: pointer;
}

.nav-toggle__bars { position: relative; width: 18px; height: 2px; background: currentColor; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }

/* ---------- Botões ---------- */
/* Cada variante carrega o próprio hover. Nunca sobrescrever cor por style inline. */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 48px; padding: 0.85rem 1.6rem;
  border: 0; border-radius: var(--r-xl);
  font-family: var(--font-body); font-weight: 700; font-size: var(--body-md);
  text-decoration: none; cursor: pointer;
  transition: background-color 0.2s var(--ease-soft), color 0.2s var(--ease-soft),
              box-shadow 0.2s var(--ease-soft), transform 0.18s var(--ease-out);
}

.btn:active { transform: translateY(1px); }
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }
.btn--sm { min-height: 40px; padding: 0.5rem 1.15rem; font-size: var(--label-md); }

/* Fundos claros */
.btn--primary { background: var(--primary-container); color: var(--on-primary); }
.btn--primary:hover { background: var(--primary-deep); color: var(--on-primary); }

.btn--forest { background: var(--tertiary-container); color: var(--on-tertiary); }
.btn--forest:hover { background: var(--tertiary); color: var(--on-tertiary); }

.btn--outline { background: transparent; color: var(--primary); box-shadow: inset 0 0 0 1.5px var(--outline); }
.btn--outline:hover { background: var(--primary-fixed); color: var(--primary); box-shadow: inset 0 0 0 1.5px var(--primary); }

/* Fundos escuros e fotos — texto claro, hover que continua legível */
.btn--light { background: var(--surface-lowest); color: var(--primary); }
.btn--light:hover { background: var(--primary-fixed); color: var(--on-primary-fixed); }

.btn--outline-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgb(255 255 255 / 0.6); }
.btn--outline-light:hover { background: #fff; color: var(--primary); box-shadow: inset 0 0 0 1.5px #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

/* ---------- Campos de cor ---------- */

.field-shell { background: var(--surface-container); }

.field-sky   { background: var(--secondary-container); color: var(--on-secondary-fixed); }
.field-sky .muted, .field-sky .lede { color: var(--on-secondary-fixed-variant); }
.field-sky .eyebrow { color: var(--secondary); }

.field-plum  { background: var(--primary); color: var(--on-primary); }
.field-plum .muted, .field-plum .lede { color: var(--primary-fixed); }
.field-plum .eyebrow { color: var(--primary-fixed-dim); }

.field-forest { background: var(--tertiary); color: var(--on-tertiary); }
.field-forest .muted, .field-forest .lede { color: var(--on-tertiary-container); }
.field-forest .eyebrow { color: var(--tertiary-fixed); }

/* ---------- Cabeçalho de seção ---------- */

.section-head { margin-bottom: clamp(1.5rem, 1.15rem + 1.5vw, 2.5rem); max-width: 62ch; }
.section-head .lede { margin-top: 1rem; }
.center .section-head { margin-inline: auto; }

.eyebrow {
  display: block; font-size: var(--label-md); font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--secondary); margin-bottom: 0.75rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative; isolation: isolate;
  min-height: min(88svh, 800px);
  display: grid; align-items: end;
  padding-block: clamp(3rem, 2rem + 7vw, 6rem);
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }

/* Véu mais leve: escurece só o pé (onde fica o texto branco), deixando a
   praia aparecer no resto. Menos magenta, mais foto. */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top,
      rgb(48 0 33 / 0.82) 0%,
      rgb(48 0 33 / 0.45) 28%,
      rgb(48 0 33 / 0.10) 55%,
      transparent 80%);
}

.hero__content { position: relative; color: #fff; }
.hero h1 { max-width: 15ch; }
.hero .lede { color: rgb(255 255 255 / 0.92); margin-top: 1.35rem; max-width: 48ch; }
.hero .btn-row { margin-top: 2.25rem; }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }

.chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.42rem 0.95rem; border-radius: var(--r-full);
  background: var(--secondary-container); color: var(--on-secondary-fixed);
  font-size: var(--label-md); font-weight: 600;
}

.chip--leaf { background: var(--tertiary-fixed); color: var(--on-tertiary-fixed); }
.chip--rose { background: var(--primary-fixed); color: var(--on-primary-fixed); }

/* ---------- Split ---------- */

.split { display: grid; gap: clamp(1.5rem, 1.1rem + 2.2vw, 3rem); align-items: center; }

@media (min-width: 58rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
  .split--wide-media { grid-template-columns: 1.15fr 0.85fr; }
}

.split--top { align-items: start; }

.split__media img,
.split__media video { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--r-xl); }
.split__media--wide img,
.split__media--wide video { aspect-ratio: 4 / 3; }

/* Para fotos em retrato: aproveita bem mais do quadro sem virar uma coluna gigante. */
.split__media--tall img { aspect-ratio: 2 / 3; }

/* Vídeo em loop mudo, comportamento de GIF. Sem controles, sem áudio.
   Proporção nativa (9:16) em vez de 3:4 — forçar o recorte comia o texto
   sobreposto do vídeo em cima e embaixo. */
/* Sem aspect-ratio forçado: o vídeo assume a proporção nativa dele e não sobra
   tarja preta nem corte, seja retrato ou paisagem. */
.split__media .media-loop {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  border-radius: var(--r-xl);
}

/* Vídeo é retrato: limitar a LARGURA reduz a altura mantendo a proporção,
   sem criar tarja preta (que é o que aconteceria limitando a altura). */
.media-wrap {
  position: relative;
  width: min(100%, 320px);
  margin-inline: auto;
}

.media-wrap__toggle {
  position: absolute; bottom: 0.85rem; right: 0.85rem;
  display: grid; place-items: center; width: 40px; height: 40px;
  border: 0; border-radius: var(--r-full); cursor: pointer;
  background: rgb(255 255 255 / 0.88); color: var(--on-primary-fixed);
  opacity: 0; transition: opacity 0.22s var(--ease-soft), background-color 0.2s var(--ease-soft);
}
.media-wrap__toggle svg { width: 1.1rem; height: 1.1rem; }
.media-wrap__toggle:hover { background: #fff; }
.media-wrap:hover .media-wrap__toggle,
.media-wrap__toggle:focus-visible { opacity: 1; }

/* Quem pediu movimento reduzido vê o controle sempre, sem precisar caçar. */
@media (prefers-reduced-motion: reduce) {
  .media-wrap__toggle { opacity: 1; }
}

/* ---------- Lista de fatos ---------- */

.fact-list { display: grid; gap: 1.1rem; margin-top: 1.75rem; }
.fact-list li { display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; align-items: start; }

.fact-list__icon {
  display: grid; place-items: center; width: 2.25rem; height: 2.25rem;
  border-radius: var(--r-full);
  background: var(--tertiary-fixed); color: var(--on-tertiary-fixed-variant);
  flex-shrink: 0;
}
.fact-list__icon svg { width: 1.15rem; height: 1.15rem; }

.fact-list strong { display: block; font-weight: 700; }
.fact-list__text { color: var(--on-surface-variant); font-size: var(--label-md); }

.field-sky .fact-list__text { color: var(--on-secondary-fixed-variant); }
.field-plum .fact-list__icon { background: var(--primary-fixed-dim); color: var(--on-primary-fixed); }
.field-plum .fact-list__text { color: var(--primary-fixed); }
.field-forest .fact-list__icon { background: var(--tertiary-fixed); color: var(--on-tertiary-fixed); }
.field-forest .fact-list__text { color: var(--on-tertiary-container); }

/* ---------- Preço ---------- */

.price-cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

.price-card {
  background: var(--surface-lowest);
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.35rem;
}

.price-card__when {
  font-size: var(--label-md); font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--secondary); margin-bottom: 0.45rem;
}

.price-card__value {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 1.6rem + 1.6vw, 2.6rem);
  line-height: 1; letter-spacing: -0.02em; color: var(--primary);
}
.price-card__value sup { font-size: 0.42em; vertical-align: super; margin-left: 0.08em; }
.price-card__note { font-size: var(--label-md); color: var(--on-surface-variant); margin-top: 0.6rem; }

/* ---------- Cardápio ---------- */

.menu-card {
  background: var(--surface-lowest);
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-xl);
  padding: clamp(1.4rem, 1rem + 1.4vw, 2.25rem);
}

.menu-card + .menu-card { margin-top: var(--gutter); }

.menu-group__title {
  font-family: var(--font-display); font-size: var(--headline-md);
  font-weight: 500; line-height: 1.3; margin-bottom: 0.35rem; color: var(--primary);
}

.menu-group__note { color: var(--on-surface-variant); font-size: var(--label-md); margin-bottom: 1.35rem; max-width: 56ch; }

.menu-list { display: grid; }

.menu-item {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  gap: 0.3rem 1rem; padding: 0.85rem 0;
  border-bottom: 1px solid var(--outline-variant);
}
.menu-item:last-child { border-bottom: 0; padding-bottom: 0; }

.menu-item__name {
  font-weight: 600; font-size: var(--body-md);
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.5rem;
}

.menu-item__price {
  font-family: var(--font-accent); font-weight: 600; font-size: 1.2rem;
  color: var(--primary-container); white-space: nowrap;
}

.menu-item__desc {
  grid-column: 1 / -1; color: var(--on-surface-variant);
  font-size: var(--label-md); line-height: 1.5; max-width: 62ch;
}

.tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.22rem 0.6rem; border-radius: var(--r-full);
  background: var(--tertiary-fixed); color: var(--on-tertiary-fixed-variant); white-space: nowrap;
}

.field-sky .menu-item { border-bottom-color: rgb(62 100 112 / 0.28); }
.field-sky .menu-item__desc { color: var(--on-secondary-fixed-variant); }

/* Faixa de aviso (validade do happy hour) */
.notice {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.25rem;
  background: var(--primary); color: var(--on-primary);
  border-radius: var(--r-xl); padding: 1.1rem 1.5rem;
  font-weight: 600;
}
.notice__when { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.notice__rule { color: var(--primary-fixed); font-weight: 500; font-size: var(--label-md); }

.stock-note {
  margin-top: 1rem;
  font-size: var(--label-md);
  color: var(--on-surface-variant);
}

.footer-h3--gap { margin-top: 1.75rem; }

/* ---------- Galeria ---------- */

/* Contagem de colunas fixa por breakpoint (em vez de auto-fit) para que a nota
   consiga ocupar exatamente as células que sobram na última linha. */
.gallery { display: grid; gap: var(--gutter); grid-template-columns: 1fr; }

@media (min-width: 40rem) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .gallery { grid-template-columns: repeat(4, 1fr); } }

.gallery__note {
  align-self: center;
  margin: 0;
  color: var(--on-surface-variant);
  font-size: var(--body-md);
  line-height: 1.6;
}

/* `auto / -1`: começa onde sobrar e vai até o fim da linha, seja quanto for.
   Fixar `span 3` quebrava toda vez que uma foto entrava ou saía da galeria. */
@media (min-width: 40rem) { .gallery__note { grid-column: auto / -1; padding-inline: 0.5rem; } }

.gallery figure { margin: 0; position: relative; border-radius: var(--r-xl); overflow: hidden; }

.gallery img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gallery figure:hover img { transform: scale(1.04); }

.gallery figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 3rem 1.25rem 1.1rem;
  font-size: var(--label-md); font-weight: 600; color: #fff;
  background: linear-gradient(to top, rgb(60 0 41 / 0.9), transparent);
  pointer-events: none;
}

.gallery--feature figure:first-child { grid-column: span 2; }
.gallery--feature figure:first-child img { aspect-ratio: 2 / 1; }

@media (max-width: 46rem) {
  .gallery--feature figure:first-child { grid-column: auto; }
  .gallery--feature figure:first-child img { aspect-ratio: 1 / 1; }
}

/* Imagem clicável (lightbox) */
.zoomable { cursor: zoom-in; }

.zoom-hint {
  position: absolute; top: 0.85rem; right: 0.85rem;
  display: grid; place-items: center; width: 2rem; height: 2rem;
  border-radius: var(--r-full);
  background: rgb(255 255 255 / 0.92); color: var(--primary);
  opacity: 0; transform: scale(0.85);
  transition: opacity 0.22s var(--ease-soft), transform 0.22s var(--ease-out);
  pointer-events: none;
}
.zoom-hint svg { width: 1rem; height: 1rem; }

figure:hover .zoom-hint, .zoomable:focus-visible + .zoom-hint { opacity: 1; transform: scale(1); }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed; inset: 0; z-index: var(--z-lightbox);
  display: grid; place-items: center;
  padding: clamp(1rem, 3vw, 3rem);
  background: rgb(28 28 25 / 0.72);
  opacity: 0; visibility: hidden;
  transition: opacity 0.28s var(--ease-soft), visibility 0.28s;
}

@supports (backdrop-filter: blur(4px)) {
  .lightbox { backdrop-filter: blur(18px) saturate(1.15); }
}

.lightbox[data-open="true"] { opacity: 1; visibility: visible; }

.lightbox__figure {
  margin: 0; display: grid; gap: 0.9rem; justify-items: center;
  max-width: min(1100px, 100%);
  transform: scale(0.96); transition: transform 0.32s var(--ease-out);
}
.lightbox[data-open="true"] .lightbox__figure { transform: scale(1); }

.lightbox__img {
  max-width: 100%; max-height: 78svh; width: auto; height: auto;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.35);
}

.lightbox__caption {
  color: #fff; font-size: var(--body-md); font-weight: 600; text-align: center;
  text-shadow: 0 1px 8px rgb(0 0 0 / 0.5);
}

.lightbox__close {
  position: absolute; top: clamp(0.75rem, 2vw, 1.5rem); right: clamp(0.75rem, 2vw, 1.5rem);
  display: grid; place-items: center; width: 48px; height: 48px;
  border: 0; border-radius: var(--r-full); cursor: pointer;
  background: rgb(255 255 255 / 0.94); color: var(--on-primary-fixed);
  transition: background-color 0.2s var(--ease-soft);
}
.lightbox__close:hover { background: var(--primary-fixed); }
.lightbox__close svg { width: 1.35rem; height: 1.35rem; }

body[data-lightbox-open="true"] { overflow: hidden; }

/* ---------- Destaque de drinques ---------- */

.drink-grid { display: grid; gap: var(--gutter); grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

.drink { margin: 0; position: relative; border-radius: var(--r-xl); overflow: hidden; }
.drink img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.drink:hover img { transform: scale(1.05); }

/* Degradê só no pé: o drink é o assunto, a legenda é rodapé. */
.drink figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 4.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top,
    rgb(60 0 41 / 0.92) 0%,
    rgb(60 0 41 / 0.58) 38%,
    transparent 78%);
  color: #fff; pointer-events: none;
}

.drink__name {
  font-family: var(--font-display); font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  font-weight: 600; line-height: 1.2; display: block; margin-bottom: 0.15rem;
}
.drink__note { font-size: var(--body-md); color: rgb(255 255 255 / 0.86); }

/* ---------- Carrossel ---------- */

.carousel { position: relative; }

/* Flex, não grid: `grid-auto-columns: minmax(0, …)` deixa as colunas encolherem
   pra caber todas de uma vez em vez de estourar e rolar. Com flex-shrink: 0 o
   card mantém a largura e o trilho rola de verdade. */
.carousel__track {
  display: flex;
  gap: var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

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

.carousel__track > * {
  flex: 0 0 auto;
  width: min(80vw, 340px);      /* mobile: mostra uma e "espia" a próxima */
  scroll-snap-align: start;
}

@media (min-width: 46rem) { .carousel__track > * { width: calc((100% - var(--gutter)) / 2); } }
@media (min-width: 70rem) { .carousel__track > * { width: calc((100% - var(--gutter) * 2) / 3); } }

.carousel__nav { display: flex; gap: 0.6rem; justify-content: center; margin-top: 1.75rem; }

.carousel__btn {
  display: grid; place-items: center; width: 48px; height: 48px;
  border: 0; border-radius: var(--r-full); cursor: pointer;
  background: var(--surface-lowest); color: var(--primary);
  box-shadow: inset 0 0 0 1.5px var(--outline-variant);
  transition: background-color 0.2s var(--ease-soft), color 0.2s var(--ease-soft), box-shadow 0.2s var(--ease-soft);
}
.carousel__btn:hover:not(:disabled) { background: var(--primary-container); color: var(--on-primary); box-shadow: none; }
.carousel__btn:disabled { opacity: 0.38; cursor: default; }
.carousel__btn svg { width: 1.3rem; height: 1.3rem; }

.field-plum .carousel__btn { background: rgb(255 255 255 / 0.12); color: #fff; box-shadow: inset 0 0 0 1.5px rgb(255 216 233 / 0.4); }
.field-plum .carousel__btn:hover:not(:disabled) { background: #fff; color: var(--primary); box-shadow: none; }

/* ---------- Depoimentos ---------- */

.quotes { display: grid; gap: var(--gutter); grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }

.quote {
  display: flex; flex-direction: column;
  background: var(--surface-lowest);
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-xl); padding: 1.75rem;
}

.quote__stars { color: var(--primary-container); font-size: 1rem; letter-spacing: 0.12em; margin-bottom: 0.9rem; }
.quote__text { font-size: var(--body-md); line-height: 1.65; margin-bottom: 1.5rem; }
.quote__author { margin-top: auto; display: grid; gap: 0.15rem; }
.quote__name { font-weight: 700; }
.quote__meta { font-size: var(--label-md); color: var(--on-surface-variant); }
.quote__source { margin-top: 0.6rem; font-size: 0.78rem; font-weight: 600; color: var(--secondary); }

.field-sky .quote { border-color: rgb(62 100 112 / 0.22); }

/* ---------- Callout ---------- */

.callout {
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 1.2rem + 2.8vw, 3.5rem);
  background: var(--surface-container);
  border: 1px solid var(--outline-variant);
}

.callout--plum { background: var(--primary); color: var(--on-primary); border-color: transparent; }
.callout--plum .lede { color: var(--primary-fixed); }
.callout--plum .eyebrow { color: var(--primary-fixed-dim); }

.callout--forest { background: var(--tertiary); color: var(--on-tertiary); border-color: transparent; }
.callout--forest .lede { color: var(--on-tertiary-container); }
.callout--forest .eyebrow { color: var(--tertiary-fixed); }

.callout h2 { font-size: var(--headline-md); }
.callout .lede { margin-top: 0.9rem; }
.callout .btn-row { margin-top: 1.75rem; }

/* ---------- Horários ---------- */

.hours { display: grid; max-width: 34rem; margin: 0; }

.hours__row {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--outline-variant);
}
.hours__row dt { font-weight: 600; }
.hours__row dd { margin: 0; color: var(--on-surface-variant); text-align: right; }

.field-sky .hours__row { border-bottom-color: rgb(62 100 112 / 0.28); }
.field-sky .hours__row dd { color: var(--on-secondary-fixed-variant); }

/* ---------- Mapa ---------- */

.map-frame {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--outline-variant);
  background: var(--surface-container); aspect-ratio: 16 / 10;
}
.map-frame--tall { aspect-ratio: 3 / 4; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Rodapé ---------- */

.site-footer {
  background: var(--primary); color: #fff;
  padding-block: clamp(3rem, 2.25rem + 3vw, 4.5rem);
  padding-bottom: calc(clamp(3rem, 2.25rem + 3vw, 4.5rem) + env(safe-area-inset-bottom));
}

/* Logo no centro, informação dos dois lados — um rodapé só, não dois blocos. */
.footer-top {
  display: grid;
  gap: clamp(2rem, 1.5rem + 2.2vw, 3.25rem);
  align-items: center;
  justify-items: center;
  text-align: center;
}

@media (min-width: 62rem) {
  .footer-top {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .footer-top__side { justify-self: start; text-align: left; }
  .footer-top__side--right { justify-self: end; text-align: right; }
}

.footer-mark { display: grid; justify-items: center; gap: 1.35rem; order: -1; }
@media (min-width: 62rem) { .footer-mark { order: 0; } }

.footer-mark img { width: auto; height: clamp(4rem, 3.4rem + 2vw, 5.5rem); }
.footer-mark p { max-width: 30ch; color: rgb(255 255 255 / 0.88); font-size: var(--label-md); }

.social-row { display: flex; justify-content: center; gap: 0.7rem; }
.social {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: var(--r-full); text-decoration: none;
  background: rgb(255 255 255 / 0.1); color: var(--primary-fixed);
  transition: background-color 0.22s var(--ease-soft), color 0.22s var(--ease-soft), transform 0.22s var(--ease-out);
}
.social svg { width: 1.25rem; height: 1.25rem; }
.social:hover { background: #fff; color: var(--on-primary-fixed); transform: translateY(-2px); }
.social:active { transform: translateY(0); }
.social svg { width: 1.5rem; height: 1.5rem; }

/* Colunas laterais: rótulo pequeno, não título de seção.
   Sem isso o h3 cai na regra global e vira 2rem. */
.footer-top__side h3 {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  line-height: 1.2;
  color: var(--primary-fixed);
  margin-bottom: 0.85rem;
}

.footer-top__side ul { display: grid; gap: 0.45rem; }
.footer-top__side li { margin: 0; }

.footer-top__side a { color: rgb(255 255 255 / 0.92); text-decoration: none; font-size: var(--label-md); }
.footer-top__side a:hover { color: #fff; text-decoration: underline; }

.footer-top__side p { font-size: var(--label-md); line-height: 1.6; color: rgb(255 255 255 / 0.88); }

.footer-base {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.22);
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: center;
  font-size: var(--label-md); color: rgb(255 255 255 / 0.82);
}

/* ---------- Barra fixa WhatsApp (mobile) ---------- */

.zap-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: var(--z-sticky);
  display: none; padding: 0.7rem var(--margin-page);
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
  background: var(--surface);
  border-top: 1px solid var(--outline-variant);
}
.zap-bar .btn { width: 100%; }

@media (max-width: 52rem) {
  .zap-bar { display: block; }
  body { padding-bottom: 5.25rem; }
}

/* ---------- Navegação mobile ---------- */

@media (max-width: 52rem) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(21rem, 86vw); z-index: var(--z-drawer);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0.2rem; padding: 5.75rem 1.25rem 2rem;
    background: var(--surface-lowest);
    border-left: 1px solid var(--outline-variant);
    transform: translateX(100%);
    transition: transform 0.34s var(--ease-out);
    overflow-y: auto;
  }

  .nav[data-open="true"] { transform: translateX(0); }
  .nav a:not(.btn) { font-size: var(--body-lg); padding: 0.9rem 0.8rem; min-height: 44px; display: flex; align-items: center; }
  .nav__cta { margin: 1rem 0 0; }

  .nav__veil {
    position: fixed; inset: 0; z-index: var(--z-veil);
    background: rgb(60 0 41 / 0.55);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s var(--ease-soft);
  }
  .nav__veil[data-open="true"] { opacity: 1; pointer-events: auto; }

  body[data-nav-open="true"] { overflow: hidden; }
}

@media (min-width: 52.0625rem) { .nav__veil { display: none; } }

/* ---------- Revelação ---------- */

html[data-reveal="on"] .reveal { opacity: 0; transform: translateY(16px); }
html[data-reveal="on"] .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
html[data-reveal="on"] .reveal.is-in:nth-child(2) { transition-delay: 0.07s; }
html[data-reveal="on"] .reveal.is-in:nth-child(3) { transition-delay: 0.14s; }
html[data-reveal="on"] .reveal.is-in:nth-child(4) { transition-delay: 0.21s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
  .gallery figure:hover img, .drink:hover img { transform: none; }
}

/* ---------- Impressão ---------- */

@media print {
  .site-header, .zap-bar, .nav__veil, .hero__media, .map-frame, .lightbox { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .menu-item__price { color: #000; }
}
