@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap");

/* ========================================
   CSS RESET (Tailwind v4 base)
   ======================================== */
*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: var(--font-sans);
}

body {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub { bottom: -0.25em; }
sup { top: -0.5em; }

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

button, select {
  text-transform: none;
}

button, [type='button'], [type='reset'], [type='submit'] {
  -webkit-appearance: button;
  cursor: pointer;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol, ul, menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  padding: 0;
}

textarea {
  resize: vertical;
}

input::placeholder, textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
}

img, video {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none !important;
}

:root {
  --color-cream: #fbf5ea;
  --color-cream: #fbf5ea;
  --color-cream-dark: #f2e8d5;
  --color-ink: #2b1c12;
  --color-verde: #1f6b3f;
  --color-verde-dark: #14492a;
  --color-vermelho: #b2352a;
  --color-vermelho-dark: #8c2820;
  --color-cafe: #4a2e1e;
  --color-cafe-light: #7a5238;
  --font-display: "Fraunces", "Georgia", serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-ink);
  overflow-x: clip;
  margin: 0;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
}

::selection {
  background-color: var(--color-verde);
  color: white;
}

:focus-visible {
  outline: 3px solid var(--color-vermelho);
  outline-offset: 2px;
}

/* --- Layout --- */
.container-page {
  max-width: 1200px;
  margin-inline: auto;
  padding-left: max(1.25rem, env(safe-area-inset-left));
  padding-right: max(1.25rem, env(safe-area-inset-right));
}

.mx-auto { margin-inline: auto; }

@media (min-width: 768px) {
  .container-page {
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
  }
}

/* --- Stripe Divider --- */
.stripe-divider {
  display: flex;
  height: 0.375rem;
  width: 100%;
}
.stripe-divider > div { flex: 1; }
.stripe-verde { background-color: var(--color-verde); }
.stripe-cream { background-color: #ffffff; }
.stripe-vermelho { background-color: var(--color-vermelho); }

/* --- Skip Link --- */
.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;
}
.sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  clip: auto;
  white-space: normal;
  background-color: var(--color-verde);
  color: white;
  border-radius: 0.375rem;
  z-index: 9999;
}

/* --- Action Feedback --- */
.action-feedback {
  transition-property: color, background-color, border-color, box-shadow, transform;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.action-feedback:active {
  transform: scale(0.975);
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(251, 245, 234, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 28, 18, 0.1);
}

@media (max-width: 1023px) {
  .site-header {
    display: block !important;
    visibility: visible !important;
    min-height: 4rem;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 640px) {
  .header-inner { height: 5rem; }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  object-fit: cover;
  outline: 2px solid rgba(31, 107, 63, 0.3);
}

@media (min-width: 640px) {
  .header-logo img {
    width: 3rem;
    height: 3rem;
  }
}

.header-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-cafe);
  text-decoration: none;
}

@media (min-width: 640px) {
  .header-logo-text { font-size: 1.25rem; }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .header-nav { display: flex; }
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(43, 28, 18, 0.7);
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--color-verde); }
.header-nav a.active { color: var(--color-verde); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-header-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--color-verde);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1rem;
  text-decoration: none;
  transition: background-color 0.2s;
}

.whatsapp-header-btn:hover { background-color: var(--color-verde-dark); }

@media (min-width: 640px) {
  .whatsapp-header-btn { display: inline-flex; }
}

.menu-toggle {
  display: flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.5rem;
  color: var(--color-cafe);
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 2;
    visibility: visible;
    opacity: 1;
    color: var(--color-cafe) !important;
    background-color: rgba(251, 245, 234, 0.9);
    border: 1px solid rgba(74, 46, 30, 0.18);
    border-radius: 9999px;
  }
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.menu-toggle svg { width: 1.5rem; height: 1.5rem; }

/* --- Mobile Drawer --- */
.mobile-drawer-layer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 70;
}

.mobile-drawer-layer.is-open { display: block; }

@media (min-width: 1024px) {
  .mobile-drawer-layer { display: none; }
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(43, 28, 18, 0.5);
}

.mobile-drawer {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  max-height: 88dvh;
  overflow-y: auto;
  border-radius: 1.5rem 1.5rem 0 0;
  background-color: var(--color-cream);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.mobile-drawer-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--color-cafe);
  padding: 1rem 1.25rem;
  color: white;
}

.mobile-drawer-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.mobile-drawer-header p {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  color: rgba(251, 245, 234, 0.8);
}

.mobile-drawer-close {
  display: inline-flex;
  min-height: 2.75rem;
  min-width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(251, 245, 234, 0.25);
  color: var(--color-cream);
  background: none;
  cursor: pointer;
}

.mobile-drawer-close:hover { background-color: rgba(255, 255, 255, 0.1); }

.mobile-nav {
  padding: 0.75rem 1rem;
}

.mobile-nav a {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(74, 46, 30, 0.1);
  padding: 0.625rem 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-cafe);
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--color-verde); }
.mobile-nav a.active { color: var(--color-verde-dark); }

.mobile-nav-icon {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--color-cream-dark);
  color: var(--color-cafe);
  transition: background-color 0.2s, color 0.2s;
}

.mobile-nav a.active .mobile-nav-icon {
  background-color: var(--color-verde);
  color: white;
}

.mobile-nav a:hover .mobile-nav-icon {
  background-color: rgba(31, 107, 63, 0.1);
  color: var(--color-verde);
}

.mobile-nav-label { flex: 1; }

.mobile-nav-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(74, 46, 30, 0.35);
}

.mobile-nav a.active .mobile-nav-arrow { color: var(--color-verde); }

.mobile-drawer-info {
  margin-inline: 1.25rem;
  border-top: 1px solid rgba(74, 46, 30, 0.1);
  border-bottom: 1px solid rgba(74, 46, 30, 0.1);
  padding: 1rem 0;
  font-size: 0.875rem;
  color: rgba(43, 28, 18, 0.75);
}

.mobile-drawer-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0 0 0.75rem 0;
}

.mobile-drawer-info p:last-child { margin-bottom: 0; }

.mobile-drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem 1.25rem max(1.25rem, env(safe-area-inset-bottom));
}

.btn-outline-verde {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--color-verde);
  background-color: white;
  color: var(--color-verde);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-outline-verde:hover {
  background-color: var(--color-verde);
  color: white;
}

.btn-solid-verde {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--color-verde);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-solid-verde:hover { background-color: var(--color-verde-dark); }

/* ========================================
   MECHANICAL HERO
   ======================================== */
.mechanical-hero {
  container-type: inline-size;
  container-name: hero;
  background-color: var(--color-ink);
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-light-x: 50%;
  --hero-light-y: 45%;
  --photo-scale: 1.025;
  --photo-saturation: 1;
  --photo-brightness: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.hero-visual {
  height: clamp(24rem, 105cqw, 35rem);
  min-width: 0;
}

.hero-copy {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding-inline: clamp(1rem, 5cqw, 4rem);
  padding-block: clamp(2.25rem, 7cqw, 4rem);
}

.hero-panel {
  min-width: 0;
  padding-inline: clamp(1rem, 4cqw, 2rem);
  padding-block: clamp(1.5rem, 4cqw, 2.5rem);
  background-color: var(--color-cafe);
}

@container hero (min-width: 56.25rem) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(21.875rem, 0.65fr);
    height: clamp(32rem, calc(100svh - 5rem), 42.5rem);
  }

  .hero-visual {
    height: auto;
    min-height: 100%;
  }

  .hero-panel {
    padding-inline: clamp(1.5rem, 2.4cqw, 2rem);
    padding-block: clamp(1rem, 2.4svh, 2.5rem);
    overflow: hidden;
  }

  .station-heading {
    padding-block: clamp(0.75rem, 1.8svh, 1rem);
  }

  .station-grid {
    gap: clamp(0.5rem, 1.5svh, 0.75rem);
    margin-top: clamp(0.6rem, 1.8svh, 1rem);
  }

  .station-grid .station-instrument {
    min-height: clamp(4.5rem, 11svh, 6rem);
    padding-block: clamp(0.55rem, 1.4svh, 0.75rem);
  }

  .station-welcome {
    margin-top: clamp(0.6rem, 1.8svh, 1rem);
    padding-block: clamp(0.55rem, 1.4svh, 0.75rem);
  }
}

@media (orientation: landscape) and (max-width: 899px) {
  .hero-visual { height: clamp(22rem, 82svh, 32rem); }
}

.mechanical-visual {
  position: relative;
  overflow: hidden;
}

.mechanical-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at var(--hero-light-x) var(--hero-light-y), rgba(251, 245, 234, 0.16), transparent 34%);
  mix-blend-mode: soft-light;
  transition: opacity 300ms ease;
}

.mechanical-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(var(--photo-scale));
  filter: saturate(var(--photo-saturation)) brightness(var(--photo-brightness));
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms ease;
  will-change: transform;
}

/* object-fit: cover (definido em .mechanical-photo) já faz qualquer imagem
   enviada preencher o espaço do hero sem distorcer, não importa o tamanho
   ou proporção do arquivo. object-position centralizado é o ponto de corte
   mais seguro como padrão, já que novas fotos enviadas pelo admin podem ter
   composições diferentes da imagem original. */
.hero-photo { object-position: center; }

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 28, 18, 0.95), rgba(43, 28, 18, 0.3) 50%, rgba(43, 28, 18, 0.1));
}

@media (min-width: 1024px) {
  .hero-gradient {
    background: linear-gradient(to right, rgba(43, 28, 18, 0.85), rgba(43, 28, 18, 0.25) 50%, transparent);
  }
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9.5vw, 3.75rem);
  font-weight: 600;
  color: white;
  max-width: 42rem;
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-wrap: balance;
  word-break: break-word;
  margin: 0;
}

.hero-copy p {
  margin-top: 1.25rem;
  color: rgba(251, 245, 234, 0.9);
  font-size: 1rem;
  max-width: 36rem;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .hero-copy p { font-size: 1.125rem; }
}

/* --- Station Instruments --- */
.station-header {
  border: 1px solid rgba(251, 245, 234, 0.25);
  background-color: rgba(122, 82, 56, 0.25);
  padding-inline: 1.25rem;
  padding-block: 1rem;
  text-align: center;
}

.station-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.station-header p {
  margin: 0.25rem 0 0 0;
  color: rgba(251, 245, 234, 0.8);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.station-grid {
  display: grid;
  gap: 0.75rem;
  flex: 1;
  align-content: center;
  margin-top: 1rem;
}

.station-instrument {
  min-height: 5rem;
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-cream);
  color: var(--color-ink);
  border-radius: 0.375rem;
  border: 1px solid rgba(74, 46, 30, 0.15);
  padding: 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
}

@media (min-width: 640px) {
  .station-instrument {
    grid-template-columns: 3.5rem 1fr auto;
    min-height: 6rem;
    padding-inline: 1rem;
  }
}

/* --- Data Instrument Photo Overrides --- */
.mechanical-hero[data-instrument="hours"] {
  --photo-scale: 1.035;
  --photo-saturation: 0.94;
  --photo-brightness: 0.96;
}

.mechanical-hero[data-instrument="menu"] {
  --photo-scale: 1.05;
  --photo-saturation: 1.08;
  --photo-brightness: 1.01;
}

.mechanical-hero[data-instrument="today"] {
  --photo-scale: 1.04;
  --photo-saturation: 1.03;
  --photo-brightness: 1.05;
}

/* --- Station Instrument Hover --- */
.station-instrument > span:first-child {
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .station-instrument:hover,
  .station-instrument:focus-visible {
    background-color: white;
    box-shadow: 0 10px 24px rgba(43, 28, 18, 0.18);
    transform: translateX(-6px) rotate(-0.15deg);
  }

  .station-instrument:hover > span:first-child,
  .station-instrument:focus-visible > span:first-child {
    transform: translateY(-2px) rotate(-3deg);
    box-shadow: 0 5px 14px rgba(43, 28, 18, 0.18);
  }
}

/* --- Copy Confirmed --- */
.copy-confirmed {
  background-color: rgba(31, 107, 63, 0.12);
}

.copy-confirmed svg {
  animation: copy-check 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.station-instrument-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .station-instrument-icon {
    width: 3rem;
    height: 3rem;
  }
}

.icon-verde { background-color: var(--color-verde); }
.icon-vermelho { background-color: var(--color-vermelho); }
.icon-verde-dark { background-color: var(--color-verde-dark); }
.icon-vermelho-dark { background-color: var(--color-vermelho-dark); }

.station-instrument-text {
  min-width: 0;
}

.station-instrument-text strong {
  font-family: var(--font-display);
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-cafe);
  margin: 0;
}

@media (min-width: 640px) {
  .station-instrument-text strong { font-size: 1.25rem; }
}

.station-instrument-text small {
  display: block;
  font-size: 0.875rem;
  color: rgba(43, 28, 18, 0.75);
  line-height: 1.35;
  word-break: break-word;
}

.station-instrument-arrow {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.2s;
}

@media (hover: hover) and (pointer: fine) {
  .station-instrument:hover .station-instrument-arrow { transform: translateX(4px); }
}

.arrow-verde { color: var(--color-verde); }
.arrow-vermelho { color: var(--color-vermelho); }

.station-welcome {
  margin-top: 1rem;
  border: 1px solid rgba(31, 107, 63, 0.7);
  background-color: var(--color-verde-dark);
  padding-inline: 1rem;
  padding-block: 0.75rem;
  text-align: center;
  color: var(--color-cream);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* --- Hero Bottom Bar --- */
.hero-bottom-bar {
  background-color: var(--color-cream);
  color: var(--color-ink);
}

.hero-bottom-inner {
  display: flex;
  flex-direction: column;
  min-height: 6rem;
  padding-block: 1.25rem;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hero-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.hero-bottom-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-bottom-address-text strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-cafe);
  display: block;
  line-height: 1.25;
  margin: 0;
}

.hero-bottom-address-text p {
  margin: 0.25rem 0 0 0;
  font-size: 1rem;
  color: rgba(43, 28, 18, 0.7);
  line-height: 1.625;
}

.btn-green-full {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--color-verde);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.btn-green-full:hover { background-color: var(--color-verde-dark); }

/* ========================================
   COPY ADDRESS BUTTON
   ======================================== */
.copy-address {
  margin-top: 0.5rem;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--color-verde);
  transition: all 0.2s;
}

.copy-address:hover { background-color: rgba(31, 107, 63, 0.1); }

.copy-address.copied {
  background-color: rgba(31, 107, 63, 0.12);
  color: var(--color-verde-dark);
}

.copy-address svg {
  width: 1rem;
  height: 1rem;
}

/* ========================================
   PAGE HEADER (Cardápio, Galeria, etc.)
   ======================================== */
.page-header {
  background-color: var(--color-cafe);
}

.page-header-inner {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .page-header-inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.page-header-label {
  color: rgba(251, 245, 234, 0.6);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: white;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .page-header h1 { font-size: 3rem; }
}

.page-header p {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: rgba(251, 245, 234, 0.75);
  line-height: 1.625;
}

/* ========================================
   CARDAPIO CATEGORY TABS
   ======================================== */
.category-tabs-wrapper {
  position: sticky;
  top: 4rem;
  z-index: 30;
  background-color: rgba(251, 245, 234, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 28, 18, 0.1);
}

@media (min-width: 640px) {
  .category-tabs-wrapper { top: 5rem; }
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  padding-block: 0.75rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
}

@media (min-width: 640px) {
  .category-tabs { padding-block: 1rem; }
}

.category-tab {
  min-height: 2.75rem;
  flex-shrink: 0;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(43, 28, 18, 0.15);
  background-color: white;
  color: rgba(43, 28, 18, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.category-tab:hover {
  border-color: var(--color-verde);
  color: var(--color-verde);
}

.category-tab.active {
  background-color: var(--color-verde);
  color: white;
  border-color: var(--color-verde);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ========================================
   PRODUCT CARD
   ======================================== */
.product-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(43, 28, 18, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.product-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  overflow: hidden;
  background-color: var(--color-cream-dark);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-verde-dark);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

@media (min-width: 640px) {
  .product-card-tag { top: 0.75rem; left: 0.75rem; font-size: 0.75rem; padding: 0.25rem 0.625rem; }
}

.product-card-body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-cafe);
  line-height: 1.25;
  margin: 0;
}

.product-card-body p {
  margin: 0.375rem 0 0 0;
  font-size: 0.8rem;
  color: rgba(43, 28, 18, 0.7);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-link {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 0.625rem;
  border-radius: 9999px;
  border: 1px solid var(--color-verde);
  color: var(--color-verde);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

@media (min-width: 640px) {
  .product-card-body { padding: 1.25rem; }
  .product-card-body h3 { font-size: 1.25rem; }
  .product-card-body p { font-size: 1rem; line-height: 1.625; -webkit-line-clamp: unset; }
  .product-card-link { min-height: 2.75rem; font-size: 0.875rem; padding: 0.625rem 1rem; gap: 0.375rem; margin-top: 1rem; }
}

.product-card-link:hover {
  background-color: var(--color-verde);
  color: white;
}

/* --- Show More Button --- */
.show-more-wrapper {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1rem 0 0;
}

.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  border: 1.5px solid rgba(43, 28, 18, 0.2);
  background-color: white;
  color: var(--color-cafe);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-show-more:hover {
  border-color: var(--color-verde);
  color: var(--color-verde);
  background-color: rgba(31, 107, 63, 0.05);
}

.btn-show-more svg {
  transition: transform 0.2s;
}

.btn-show-more:hover svg {
  transform: translateY(2px);
}

/* ========================================
   SECTIONS
   ======================================== */
.section-cream-dark {
  background-color: var(--color-cream-dark);
  border-top: 1px solid rgba(74, 46, 30, 0.1);
  border-bottom: 1px solid rgba(74, 46, 30, 0.1);
}

.section-white {
  background-color: white;
  border-top: 1px solid rgba(43, 28, 18, 0.1);
  border-bottom: 1px solid rgba(43, 28, 18, 0.1);
}

.section-verde-dark {
  background-color: var(--color-verde-dark);
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-cafe {
  background-color: var(--color-cafe);
  color: white;
}

.section-cafe-dark {
  background-color: var(--color-cafe);
  color: var(--color-cream);
}

/* --- Grid Layouts --- */
.grid-2col {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .grid-2col { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

.grid-2col-equal {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .grid-2col-equal { grid-template-columns: 1fr 0.9fr; gap: 3rem; }
}

.grid-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .grid-products { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
}

@media (min-width: 1024px) {
  .grid-products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-products-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* --- Section Headers --- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--color-cafe);
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0;
}

.section-title-white {
  color: white;
}

.section-subtitle {
  color: rgba(43, 28, 18, 0.65);
  margin-top: 0.75rem;
  line-height: 1.625;
  max-width: 36rem;
}

.section-subtitle-white {
  color: rgba(251, 245, 234, 0.85);
  margin-top: 1rem;
  line-height: 1.625;
  max-width: 36rem;
}

.section-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-verde);
  text-decoration: none;
  text-underline-offset: 4px;
  transition: all 0.2s;
}

@media (min-width: 1024px) {
  .vitrine-heading {
    flex-direction: row !important;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.section-link:hover {
  color: var(--color-verde-dark);
  text-decoration: underline;
}

/* --- Category Pills (Home) --- */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.category-pill {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  border-radius: 9999px;
  background-color: var(--color-cream);
  border: 1px solid rgba(43, 28, 18, 0.1);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-cafe);
  text-decoration: none;
  transition: all 0.2s;
}

.category-pill:hover {
  border-color: var(--color-verde);
  color: var(--color-verde);
}

/* --- Info Rows --- */
.info-row {
  padding: 1rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(43, 28, 18, 0.1);
}

.info-row:first-child { border-top: 1px solid rgba(43, 28, 18, 0.1); }

.info-row-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--color-vermelho);
}

.info-row-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-cafe);
  margin: 0;
}

.info-row-text p {
  margin: 0.25rem 0 0 0;
  font-size: 1rem;
  color: rgba(43, 28, 18, 0.7);
  line-height: 1.625;
}

/* --- Hours Row --- */
.hours-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 0;
  font-size: 1rem;
  color: rgba(43, 28, 18, 0.75);
  line-height: 1.625;
  font-variant-numeric: tabular-nums;
}

.hours-row strong {
  font-weight: 600;
  color: var(--color-cafe);
}

/* --- Buttons --- */
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .btn-group { flex-direction: row; }
}

.btn-green {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--color-verde);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: background-color 0.2s;
  cursor: pointer;
  border: none;
}

.btn-green:hover { background-color: var(--color-verde-dark); }

.btn-outline {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--color-verde);
  color: var(--color-verde);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
}

.btn-outline:hover {
  background-color: var(--color-verde);
  color: white;
}

.btn-whatsapp-full {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: #25D366;
  color: white;
  font-weight: 700;
  padding: 1rem;
  text-decoration: none;
  transition: filter 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
}

.btn-whatsapp-full:hover { filter: brightness(0.95); }

.btn-white-verde {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: white;
  color: var(--color-verde-dark);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-white-verde:hover { background-color: var(--color-cream); }

/* ========================================
   FACHADA / IMAGE BLOCKS
   ======================================== */
.fachada-figure {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  border-radius: 1rem;
  background-color: var(--color-cream-dark);
}

.fachada-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fachada-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(43, 28, 18, 0.85), transparent);
  padding: 4rem 1.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  color: white;
}

/* ========================================
   SPECIAL FLAVORS SECTION
   ======================================== */
.flavor-card {
  border-radius: 1rem;
  overflow: hidden;
  background-color: white;
  border: 1px solid rgba(43, 28, 18, 0.1);
}

.flavor-card img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  transition: transform 0.5s;
}

@media (min-width: 640px) {
  .flavor-card img { height: 14rem; }
}

.flavor-card:hover img { transform: scale(1.05); }

.flavor-card-overlay { display: none; }

.flavor-card-content {
  padding: 0.75rem;
}

.flavor-card-content h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-cafe);
  margin: 0;
}

.flavor-card-content p {
  color: rgba(43, 28, 18, 0.7);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0.375rem 0 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .flavor-card-content { padding: 1.25rem 1.5rem 1.5rem; }
  .flavor-card-content h3 { font-size: 1.25rem; }
  .flavor-card-content p { font-size: 0.95rem; line-height: 1.625; -webkit-line-clamp: unset; }
}

.sabores-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .sabores-grid {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .sabores-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   TESTIMONIAL / CTA SECTION
   ======================================== */
.testimonial-section {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .testimonial-section { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

blockquote { margin: 0; }

blockquote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

@media (min-width: 768px) {
  blockquote p { font-size: 1.5rem; }
}

blockquote footer {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(251, 245, 234, 0.85);
}

.cta-section-divider {
  display: none;
}

@media (min-width: 1024px) {
  .cta-section-divider {
    display: block;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 4rem;
  }
}

/* ========================================
   GALERIA
   ======================================== */
.gallery-grid {
  columns: 2;
  column-gap: 0.75rem;
  column-fill: balance;
}

@media (min-width: 640px) { .gallery-grid { column-gap: 1rem; } }
@media (min-width: 640px) { .gallery-grid { columns: 3; } }
@media (min-width: 1024px) { .gallery-grid { columns: 4; } }

.gallery-item {
  display: block;
  margin-bottom: 1rem;
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(43, 28, 18, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: box-shadow 0.2s;
  background: none;
  padding: 0;
}

.gallery-item:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }

.gallery-item:focus-visible {
  outline: 3px solid var(--color-vermelho);
  outline-offset: 2px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img { transform: scale(1.03); }

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(43, 28, 18, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox-close {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  min-width: 2.75rem;
  min-height: 2.75rem;
  color: white;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover { color: var(--color-vermelho); }

.lightbox-close svg { width: 2rem; height: 2rem; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  background-color: rgba(43, 28, 18, 0.45);
  border: none;
  cursor: pointer;
}

@media (min-width: 640px) {
  .lightbox-nav { background-color: rgba(255, 255, 255, 0.1); }
}

.lightbox-nav:hover { background-color: rgba(255, 255, 255, 0.2); }

.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }

@media (min-width: 640px) {
   .lightbox-prev { left: 1.25rem; }
   .lightbox-next { right: 1.25rem; }
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
  background: transparent;
  border: none;
}

.lightbox-img {
  max-height: 80vh;
  max-width: 100%;
  border-radius: 0.5rem;
  object-fit: contain;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  padding: 2.5rem 3.5rem;
}

.lightbox figure figcaption {
  color: rgba(251, 245, 234, 0.7);
  font-size: 0.875rem;
  text-align: center;
}

/* ========================================
   SOBRE PAGE
   ======================================== */
.page-header-sobre {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .page-header-sobre {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

.page-header-label-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.page-header-label-bar {
  width: 2rem;
  height: 3px;
  background-color: var(--color-vermelho);
  border-radius: 9999px;
}

.page-header-label-text {
  color: var(--color-verde);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.page-header-sobre h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-cafe);
  max-width: 36rem;
  line-height: 1.1;
  margin: 0;
}

@media (min-width: 768px) {
  .page-header-sobre h1 { font-size: 3rem; }
}

.page-header-sobre p {
  margin: 1.25rem 0 0 0;
  max-width: 36rem;
  color: rgba(43, 28, 18, 0.65);
  line-height: 1.625;
  font-size: 1.125rem;
}

/* --- Sobre Hero (lado a lado) --- */
.sobre-hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .sobre-hero {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

.sobre-hero-text h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-cafe);
  line-height: 1.1;
  margin: 0;
}

@media (min-width: 768px) {
  .sobre-hero-text h1 { font-size: 3rem; }
}

.sobre-hero-text p {
  margin: 1.25rem 0 0 0;
  color: rgba(43, 28, 18, 0.65);
  line-height: 1.625;
  font-size: 1.125rem;
}

.sobre-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 28rem;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.sobre-hero-image p {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(43, 28, 18, 0.5);
  margin-top: 0.75rem;
}

/* --- Diferenciais Grid --- */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .diferenciais-grid { gap: 1.5rem; }
}

.diferencial-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(43, 28, 18, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .diferencial-card { padding: 1.75rem; border-radius: 1rem; }
}

.diferencial-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-color: rgba(31, 107, 63, 0.4);
}

.diferencial-number {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  color: rgba(31, 107, 63, 0.25);
}

.diferencial-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-cafe);
  margin: 0.375rem 0 0 0;
}

.diferencial-card p {
  margin: 0.375rem 0 0 0;
  font-size: 0.8rem;
  color: rgba(43, 28, 18, 0.6);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .diferencial-card h3 { font-size: 1.125rem; margin: 0.5rem 0 0 0; }
  .diferencial-card p { font-size: 0.875rem; line-height: 1.625; margin: 0.5rem 0 0 0; }
}

/* --- Raízes Italianas Section --- */
.raizes-section {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .raizes-section { grid-template-columns: 1fr 340px; gap: 3rem; }
}

/* --- Stars --- */
.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars svg { width: 1.25rem; height: 1.25rem; color: #facc15; }

.stars-count {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(251, 245, 234, 0.6);
}

/* ========================================
   CONTATO PAGE
   ======================================== */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

.contact-card {
  background-color: white;
  border-radius: 1rem;
  border: 1px solid rgba(43, 28, 18, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .contact-card { padding: 1.5rem; gap: 1rem; }
}

.contact-card-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background-color: rgba(178, 53, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg { width: 1.25rem; height: 1.25rem; color: var(--color-vermelho); }

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-cafe);
  margin: 0;
}

.contact-card p {
  margin: 0.25rem 0 0 0;
  color: rgba(43, 28, 18, 0.65);
}

.contact-card a {
  color: rgba(43, 28, 18, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card a:hover { color: var(--color-verde); }

.contact-card .small-text {
  font-size: 0.75rem;
  color: rgba(43, 28, 18, 0.45);
  margin-top: 0.25rem;
}

.hours-table {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.hours-table tr {
  border-top: 1px solid rgba(43, 28, 18, 0.05);
}

.hours-table tr:first-child { border-top: none; }

.hours-table td {
  padding: 0.375rem 0.75rem 0.375rem 0;
  vertical-align: top;
}

.hours-table td:first-child { color: rgba(43, 28, 18, 0.6); }
.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--color-cafe);
}

.contact-map {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(43, 28, 18, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  min-height: 20rem;
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 320px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  flex-shrink: 0;
  background-color: var(--color-cafe);
  color: rgba(251, 245, 234, 0.9);
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  padding-block: 3rem;
}

@media (min-width: 640px) {
  .footer-grid { padding-block: 3.5rem; }
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.75rem 0;
}

.footer-brand p {
  font-size: 1rem;
  color: rgba(251, 245, 234, 0.85);
  line-height: 1.625;
  max-width: 20rem;
  margin: 0;
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-cream);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-brand a:hover { color: var(--color-vermelho); }

.footer-section h3 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(251, 245, 234, 0.8);
  margin: 0 0 1rem 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.625;
  margin-bottom: 0.75rem;
}

.footer-section li:last-child { margin-bottom: 0; }

.footer-section li svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  color: var(--color-vermelho);
}

.footer-section a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(43, 28, 18, 0.15);
  padding: 1.25rem 0 max(1.25rem, env(safe-area-inset-bottom));
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(251, 245, 234, 0.7);
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-bottom nav a {
  color: rgba(251, 245, 234, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom nav a:hover { color: white; }

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  right: max(1.25rem, env(safe-area-inset-right));
  z-index: 40;
  min-width: 3.25rem;
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: white;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  padding: 0.875rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: filter 0.2s, transform 0.1s;
}

.whatsapp-float:hover { filter: brightness(0.95); }
.whatsapp-float:active { transform: scale(0.95); }

.whatsapp-float svg { width: 1.5rem; height: 1.5rem; }

.whatsapp-float-text {
  display: none;
}

@media (min-width: 640px) {
  .whatsapp-float-text { display: inline; }
}

/* ========================================
   CARDAPIO - MISSING ITEMS CTA
   ======================================== */
.missing-items-cta {
  background-color: var(--color-verde-dark);
  padding: 2rem 0;
  text-align: center;
}

.missing-items-cta h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

@media (min-width: 768px) {
  .missing-items-cta h2 { font-size: 1.875rem; }
}

.missing-items-cta p {
  margin: 0.75rem auto 0;
  max-width: 24rem;
  color: rgba(251, 245, 234, 0.8);
}

/* ========================================
   CATEGORY SECTION HEADER
   ======================================== */
.category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.category-header-bar {
  width: 2rem;
  height: 3px;
  background-color: var(--color-vermelho);
  border-radius: 9999px;
}

.category-header-count {
  color: var(--color-verde);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.category-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-cafe);
  margin: 0;
}

@media (min-width: 768px) {
  .category-header h2 { font-size: 1.875rem; }
}

.category-header p {
  margin: 0.5rem 0 0 0;
  color: rgba(43, 28, 18, 0.6);
  line-height: 1.625;
}

.especiais-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--color-verde-dark);
  background-color: rgba(31, 107, 63, 0.1);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}

/* ========================================
   CARDÁPIO INTRO
   ======================================== */
.cardapio-intro {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

/* ========================================
   SMOOTH SCROLL FIX FOR STICKY
   ======================================== */
/* ========================================
   ANIMATIONS (prefers-reduced-motion: no-preference)
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
  .arrival-frame {
    animation: arrival-frame 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .arrival-copy {
    animation: arrival-copy 620ms 110ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .station-header {
    animation: station-header 460ms 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .station-instrument {
    animation: station-instrument 440ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }

  .station-instrument:nth-child(1) { animation-delay: 250ms; }
  .station-instrument:nth-child(2) { animation-delay: 310ms; }
  .station-instrument:nth-child(3) { animation-delay: 370ms; }
  .station-instrument:nth-child(4) { animation-delay: 430ms; }

  .nav-sheet {
    transform-origin: top;
    animation: nav-sheet 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .mobile-drawer-backdrop {
    animation: drawer-backdrop 220ms ease-out both;
  }

  .mobile-drawer {
    transform-origin: bottom;
    animation: mobile-drawer-in 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

/* --- Keyframes --- */
@keyframes arrival-frame {
  from { clip-path: inset(0 12% 0 0); filter: saturate(0.82) brightness(0.9); }
  to { clip-path: inset(0); filter: saturate(1) brightness(1); }
}

@keyframes arrival-copy {
  from { opacity: 0.78; transform: translateY(10px); filter: blur(2px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes station-header {
  from { opacity: 0.8; filter: brightness(0.88); }
  to { opacity: 1; filter: brightness(1); }
}

@keyframes station-instrument {
  from { opacity: 0.72; transform: translateX(14px); filter: saturate(0.72); }
  to { opacity: 1; transform: translateX(0); filter: saturate(1); }
}

@keyframes nav-sheet {
  from { opacity: 0; transform: scaleY(0.94); clip-path: inset(0 0 100%); }
  to { opacity: 1; transform: scaleY(1); clip-path: inset(0); }
}

@keyframes drawer-backdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mobile-drawer-in {
  from { opacity: 0.88; transform: translateY(36px); clip-path: inset(12% 0 0 round 1.5rem 1.5rem 0 0); }
  to { opacity: 1; transform: translateY(0); clip-path: inset(0 round 1.5rem 1.5rem 0 0); }
}

@keyframes copy-check {
  from { opacity: 0.55; transform: scale(0.72) rotate(-8deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .action-feedback { transition-duration: 100ms; }
  .action-feedback:active { transform: none; filter: brightness(0.94); }
  .station-instrument:hover > span:first-child,
  .station-instrument:focus-visible > span:first-child {
    transform: none;
  }
  .copy-confirmed svg { animation: none; }
  .mechanical-photo {
    transform: none;
    filter: none;
    transition: none;
    will-change: auto;
  }
  .mechanical-visual::after { display: none; }
  .mobile-drawer,
  .mobile-drawer-backdrop {
    animation: none;
  }
}

@media (hover: none) {
  .group:hover {
    transform: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .mechanical-photo {
    transform: scale(1.02);
    filter: none;
    will-change: auto;
  }
  .mechanical-visual::after { opacity: 0; }
}
