/* ═══════════════════════════════════════
   PEIXE FRITO MIRACEMA — cabana de madeira, traço artesanal
   Fundo: escuro (madeira/noite), igual ao fundo da logo
   Acento: teal + laranja da marca
═══════════════════════════════════════ */

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

:root {
  --bg:       #15100c;
  --bg-2:     #1d1611;
  --panel:    #241b14;
  --wood:     #2a1f15;
  --orange:   #fd6506;
  --orange-dk:#d95205;
  --teal:     #0d9fa0;
  --teal-lt:  #2cd9d9;
  --cream:    #f2ead8;
  --white:    #fffdf8;
  --muted:    rgba(242,234,216,0.55);
  --border:   rgba(242,234,216,0.12);
  --ff-d: 'Anton', 'Inter', system-ui, sans-serif;
  --ff-script: 'Mrs Saint Delafield', cursive;
  --ff-b: 'Inter', system-ui, sans-serif;
  --nav-h: 68px;
  --ease: cubic-bezier(0.25,0.46,0.45,0.94);
}

html { scroll-behavior: smooth; color-scheme: dark; }

body {
  font-family: var(--ff-b);
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Textura de madeira sutil via CSS */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

select option {
  background: var(--bg-2);
  color: var(--cream);
}

.section-label {
  display: block;
  font-family: var(--ff-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-lt);
  margin-bottom: 14px;
}
.section-label--light { color: var(--teal-lt); }

.section-title {
  font-family: var(--ff-d);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 28px;
}
.section-title em { font-style: normal; color: var(--orange); }
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--orange); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(21,16,12,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  align-self: flex-start;
  margin-top: 14px;
  transition: align-self .3s, margin-top .3s var(--ease);
}
.nav.scrolled .nav-logo {
  margin-top: 0;
}
.nav-logo-img {
  height: 108px;
  aspect-ratio: 4500 / 2764;
  display: block;
  background-color: var(--cream);
  -webkit-mask: url('assets/logo.PNG') center / contain no-repeat;
  mask: url('assets/logo.PNG') center / contain no-repeat;
  transition: height .3s var(--ease);
}
.nav.scrolled .nav-logo {
  align-self: center;
}
.nav.scrolled .nav-logo-img {
  height: 42px;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 400;
  color: var(--cream); opacity: 0.65;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.btn-reserva {
  font-size: 13px; font-weight: 600;
  color: var(--white);
  background: var(--orange);
  padding: 10px 22px; border-radius: 3px;
  transition: background .2s;
  letter-spacing: 0.01em;
}
.btn-reserva:hover { background: var(--orange-dk); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(29,22,17,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  transform: translateY(-100%); opacity: 0;
  transition: transform .3s var(--ease), opacity .3s;
  pointer-events: none;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu ul { padding: 20px 24px; display: flex; flex-direction: column; gap: 0; }
.mm-link {
  display: block; padding: 14px 0;
  font-size: 16px; color: var(--cream);
  border-bottom: 1px solid var(--border);
}
.mm-cta { color: var(--orange); font-weight: 600; border: none; margin-top: 8px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(21,16,12,0.97) 0%, rgba(21,16,12,0.88) 35%, rgba(21,16,12,0.55) 65%, rgba(21,16,12,0.3) 100%);
}

/* Texto fantasma gigante no fundo */
.hero-bg-text {
  position: absolute;
  z-index: 1;
  bottom: -0.05em;
  left: -0.02em;
  font-family: var(--ff-d);
  font-size: clamp(140px, 22vw, 280px);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(242,234,216,0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 48px 48px 32px;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal-lt);
  margin-bottom: 24px;
  display: block;
}
.tag-break { display: none; }

.hero-title {
  display: flex; flex-direction: column;
  margin-bottom: 24px;
}
.ht-row1 {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: 0 18px;
  position: relative;
  z-index: 2;
}
.ht-line1 {
  font-family: var(--ff-d);
  font-size: clamp(3.5rem, 7.5vw, 6rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.ht-line2 {
  font-family: var(--ff-script);
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  font-weight: 400;
  color: var(--teal-lt);
  line-height: 1;
  position: relative;
  top: 0.18em;
  left: -0.22em;
  margin-bottom: -0.5em;
  transform: rotate(-4deg);
  transform-origin: left center;
  white-space: nowrap;
}
.ht-line-brand {
  font-family: var(--ff-d);
  font-size: clamp(3.5rem, 7.5vw, 6rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 0.95;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.ht-tagline {
  font-family: var(--ff-b);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 40px;
  letter-spacing: 0;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-main {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 14px; font-weight: 600;
  padding: 14px 30px; border-radius: 3px;
  transition: background .2s, transform .15s;
  letter-spacing: 0.02em;
}
.btn-main:hover { background: var(--orange-dk); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--cream);
  color: var(--cream);
  font-size: 14px; font-weight: 500;
  padding: 14px 30px; border-radius: 3px;
  transition: all .2s;
}
.btn-secondary:hover { background: var(--cream); color: var(--bg); }

.hero-right {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex; flex-direction: column; align-items: flex-end;
}

/* Strip ticker */
.hero-strip {
  position: relative; z-index: 2;
  border-top: 1.5px solid var(--border);
  background: var(--panel);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.hero-strip-inner {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.hero-strip-track {
  display: flex; align-items: center; gap: 24px;
  flex-shrink: 0;
  padding-right: 24px;
}
.hero-strip span {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(242,234,216,0.7);
  flex-shrink: 0;
  padding: 0 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.strip-dot { color: var(--orange) !important; opacity: 1 !important; }

/* ── CARDÁPIO ── */
.cardapio {
  padding: 96px 48px;
  background: linear-gradient(rgba(21,16,12,0.55), rgba(21,16,12,0.55)), url('assets/Fundo-Madeira.jpg') center / cover no-repeat;
  border-top: 1.5px solid var(--border);
}

.cardapio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  max-width: 1140px;
  margin-left: auto; margin-right: auto;
  gap: 24px;
  flex-wrap: wrap;
}
.ch-left .section-title { margin-bottom: 0; }
.cardapio .section-label { color: var(--teal-lt); }
.cardapio .section-title { color: var(--cream); }
.cardapio .section-title em { color: var(--orange); }

.cardapio-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cardapio .tab {
  font-family: var(--ff-b);
  font-size: 12.5px; font-weight: 500;
  color: rgba(242,234,216,0.65);
  background: rgba(242,234,216,0.08); border: 1px solid rgba(242,234,216,0.25);
  cursor: pointer;
  padding: 9px 16px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.cardapio .tab:hover { color: var(--cream); background: rgba(242,234,216,0.16); }
.cardapio .tab.active { background: var(--orange); color: var(--white); border-color: var(--orange); }

.cardapio-tabs-select {
  display: none;
}

.tab-content { display: none; max-width: 1140px; margin: 0 auto; }
.tab-content.active { display: block; animation: fadeUp .3s var(--ease); }

.menu-subhead {
  font-family: var(--ff-d);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--orange);
  margin: 36px 0 8px;
}
.menu-subhead:first-of-type { margin-top: 0; }

.menu-note {
  font-family: var(--ff-b);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-lt);
  margin-bottom: 18px;
}
.menu-footnote {
  font-size: 13px;
  color: rgba(242,234,216,0.6);
  margin-top: 20px;
  font-style: italic;
}

.menu-list { display: flex; flex-direction: column; }
.cardapio .menu-item {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(242,234,216,0.2);
  gap: 20px;
  transition: background .15s;
  cursor: default;
}
.cardapio .menu-item:first-child { border-top: 1px solid rgba(242,234,216,0.2); }
.cardapio .menu-item:hover { background: rgba(242,234,216,0.08); margin: 0 -48px; padding: 16px 48px; }

.mi-info { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.cardapio .mi-info h4 {
  font-family: var(--ff-b);
  font-size: 16px; font-weight: 700;
  color: var(--cream);
}
.cardapio .mi-info p { font-size: 12.5px; line-height: 1.5; color: rgba(242,234,216,0.6); }

.mi-prices { display: flex; gap: 22px; flex-shrink: 0; }
.mi-price-col { display: flex; flex-direction: column; align-items: center; min-width: 38px; }
.mi-size {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 2px;
}
.cardapio .mi-price {
  font-family: var(--ff-d);
  font-size: 18px;
  color: var(--teal-lt);
  white-space: nowrap;
}

/* ── DELIVERY ── */
.delivery {
  background: linear-gradient(rgba(21,16,12,0.85), rgba(21,16,12,0.85)), url('assets/Fundo-Mar.jpg') center / cover no-repeat;
  border-top: 1.5px solid var(--border);
  padding: 96px 48px;
}
.delivery-inner { max-width: 1140px; margin: 0 auto; }
.delivery-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  margin-top: 24px;
  align-items: start;
}
.delivery-grid > * { min-width: 0; }
.delivery-subtitle {
  font-family: var(--ff-b);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal-lt);
  margin-bottom: 18px;
}
.picker-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; min-width: 0; }
.delivery-picker .form-group,
.delivery-form .form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; min-width: 0; }
.delivery-picker select,
.delivery-form select {
  min-width: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.delivery-picker label,
.delivery-form label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(242,234,216,0.4);
}
.delivery-picker select,
.delivery-picker input,
.delivery-form input,
.delivery-form select,
.delivery-form textarea {
  background: rgba(58,42,28,0.55);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--ff-b); font-size: 14px;
  padding: 12px 14px;
  outline: none;
  appearance: none; -webkit-appearance: none;
  transition: border-color .2s;
}
.delivery-picker select:focus,
.delivery-picker input:focus,
.delivery-form input:focus,
.delivery-form select:focus,
.delivery-form textarea:focus { border-color: var(--teal); }
.delivery-form textarea { resize: vertical; min-height: 80px; }
.delivery-picker select,
.delivery-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 5.5l5 5 5-5' fill='none' stroke='%23fd6506' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
  cursor: pointer;
}

.delivery-checks,
.delivery-radios {
  display: flex; flex-direction: column; gap: 10px;
}
.delivery-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--cream);
  cursor: pointer;
}
.delivery-check input[type="checkbox"],
.delivery-check input[type="radio"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 16px; height: 16px;
  accent-color: var(--orange);
  cursor: pointer;
}
.delivery-check input:disabled { opacity: 0.4; cursor: not-allowed; }
.delivery-check:has(input:disabled) { opacity: 0.5; }

.btn-add-cart {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none; border-radius: 4px;
  font-family: var(--ff-b); font-size: 14px; font-weight: 600;
  padding: 13px; cursor: pointer;
  transition: background .2s, transform .15s;
  margin-bottom: 32px;
}
.btn-add-cart:hover { background: var(--teal-lt); transform: translateY(-1px); }

.cart-box {
  background: rgba(58,42,28,0.78);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
}
.cart-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; max-height: 280px; overflow-y: auto; }
.cart-empty { font-size: 13px; color: rgba(242,234,216,0.4); }
.cart-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.cart-item-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--cream); }
.cart-item-meta { font-size: 12px; color: rgba(242,234,216,0.5); }
.cart-item-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cart-item-price { font-family: var(--ff-d); font-size: 15px; color: var(--teal-lt); white-space: nowrap; }
.cart-item-remove {
  background: none; border: none; cursor: pointer;
  color: rgba(242,234,216,0.5);
  font-size: 16px; line-height: 1;
  padding: 2px 6px;
  transition: color .15s;
}
.cart-item-remove:hover { color: var(--orange); }
.cart-total {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1.5px solid var(--border);
}
.cart-total span { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(242,234,216,0.5); }
.cart-total strong { font-family: var(--ff-d); font-size: 24px; color: var(--orange); }

.delivery-form {
  background: rgba(58,42,28,0.78);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
}

/* ── SOBRE ── */
.sobre {
  background: linear-gradient(rgba(21,16,12,0.85), rgba(21,16,12,0.85)), url('assets/Fundo-Historia.jpg') center / cover no-repeat;
  border-top: 1.5px solid var(--border);
  padding: 96px 48px;
}
.sobre-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.sobre-img-mock { position: relative; }
.sim-foto {
  background: var(--panel);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: flex-end;
  padding: 16px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.25);
}
.sim-foto span {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.sim-foto-1 { height: 280px; margin-bottom: 12px; }
.sim-foto-2 { height: 180px; width: 70%; margin-left: auto; }
.sobre-puxada {
  position: absolute;
  top: 40px; right: -32px;
  background: var(--orange);
  color: var(--white);
  padding: 24px 28px;
  border-radius: 4px;
  max-width: 220px;
  box-shadow: 4px 4px 0 var(--orange-dk);
}
.sobre-puxada p {
  font-family: var(--ff-script);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.sobre-texto p {
  font-size: 15px; line-height: 1.85;
  color: rgba(242,234,216,0.7);
  margin-bottom: 18px;
}
.sobre-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat strong {
  font-family: var(--ff-d);
  font-size: 32px;
  text-transform: uppercase;
  color: var(--cream);
}
.stat span { font-size: 14px; color: var(--muted); }
.stat strong span { font-size: inherit; color: inherit; }

/* ── PEIXARIA ── */
.peixaria {
  background: linear-gradient(rgba(29,22,17,0.88), rgba(29,22,17,0.88)), url('assets/Fundo-Peixes.jpg') center / cover no-repeat;
  border-top: 1.5px solid var(--border);
  padding: 96px 48px;
}
.peixaria-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.peixaria-visual {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.25);
}
.peixaria-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.peixaria-texto p {
  font-size: 15px; line-height: 1.85;
  color: rgba(242,234,216,0.7);
  margin-bottom: 18px;
}
.peixaria-endereco {
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.peixaria-endereco p { font-size: 14px; line-height: 1.7; color: rgba(242,234,216,0.7); }

/* ── RESERVA ── */
.reserva {
  background: linear-gradient(rgba(36,27,20,0.88), rgba(36,27,20,0.88)), url('assets/Fundo-Rede.jpg') center / cover no-repeat;
  padding: 96px 48px;
  border-top: 1.5px solid var(--border);
}
.reserva-titulo {
  max-width: 1140px; margin: 0 auto 40px;
}
.reserva-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: stretch;
}
.reserva-info { display: flex; flex-direction: column; }
.horarios { display: flex; flex-direction: column; gap: 1px; margin-top: 8px; }
.h-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.h-item span { font-size: 14px; color: rgba(242,234,216,0.5); }
.h-item strong { font-size: 14px; font-weight: 600; color: var(--teal-lt); }

.reserva-endereco {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.reserva-endereco p {
  font-size: 14px; line-height: 1.7;
  color: rgba(242,234,216,0.6);
}

.reserva-contato {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.reserva-contato p {
  font-size: 14px; line-height: 1.7;
  color: rgba(242,234,216,0.6);
}
.reserva-contato-nota { font-size: 12px; opacity: 0.7; }

.reserva-mapa {
  margin-top: 24px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex: 1;
  min-height: 220px;
}
.reserva-mapa iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: invert(92%) hue-rotate(180deg) brightness(0.95) contrast(0.9);
}

.reserva-form {
  background: rgba(58,42,28,0.78);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(242,234,216,0.4);
}
.form-hint {
  font-size: 11px;
  color: rgba(242,234,216,0.45);
  font-style: italic;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(58,42,28,0.55);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--ff-b); font-size: 14px;
  padding: 12px 14px;
  transition: border-color .2s;
  outline: none;
  appearance: none; -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(242,234,216,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 5.5l5 5 5-5' fill='none' stroke='%23fd6506' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group--grow { flex: 1; }
.form-group--grow textarea { flex: 1; height: 100%; }
.form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(.4); }

.btn-submit {
  background: var(--orange);
  color: var(--white);
  border: none; border-radius: 4px;
  font-family: var(--ff-b); font-size: 15px; font-weight: 600;
  padding: 16px; cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: 0.02em;
}
.btn-submit:hover { background: var(--orange-dk); transform: translateY(-1px); }

/* ── FOOTER ── */
.footer {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  overflow: hidden;
}
.footer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.footer-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(29,22,17,0.9);
}
.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 20px;
}
.footer-name {
  font-family: var(--ff-d);
  font-size: 18px; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-sub { font-size: 12px; color: rgba(242,234,216,0.4); line-height: 1.6; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 14px; color: rgba(242,234,216,0.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--teal-lt); }
.footer-copy { font-size: 12px; color: rgba(242,234,216,0.25); }

/* ── ANIMAÇÕES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag, .hero-title, .hero-ctas, .hero-right {
  animation: fadeUp .7s var(--ease) both;
}
.hero-tag   { animation-delay: .1s; }
.hero-title { animation-delay: .25s; }
.hero-ctas  { animation-delay: .4s; }
.hero-right { animation-delay: .35s; }

/* ── RESPONSIVO ── */
@media (max-width: 960px) {
  .nav { padding: 0 24px; }
  .nav-links, .btn-reserva { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 64px; }
  .nav.menu-open .nav-logo-img { opacity: 0; }

  .hero-content { grid-template-columns: 1fr; padding: 56px 24px 24px; gap: 32px; align-content: center; }
  .hero-right { position: static; align-items: flex-start; margin-top: 24px; }
  .hero-bg-text { font-size: 25vw; left: 0; bottom: 60px; letter-spacing: -0.03em; }
  .tag-dot { display: none; }
  .tag-break { display: inline; }
  .hero-ctas { flex-wrap: nowrap; gap: 10px; }
  .hero-ctas .btn-main,
  .hero-ctas .btn-secondary {
    flex: 1; min-width: 0;
    padding: 13px 10px;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
  }

  .cardapio { padding: 72px 24px; }
  .cardapio-header { flex-direction: column; align-items: flex-start; }
  .cardapio-tabs { display: none; }
  .cardapio-tabs-select {
    display: block;
    width: 100%;
    background:
      rgba(58,42,28,0.55)
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 5.5l5 5 5-5' fill='none' stroke='%23fd6506' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      no-repeat right 14px center;
    background-size: 14px;
    border: 1px solid rgba(242,234,216,0.25);
    border-radius: 4px;
    color: var(--cream);
    font-family: var(--ff-b); font-size: 14px; font-weight: 600;
    padding: 12px 38px 12px 14px;
    outline: none;
    appearance: none; -webkit-appearance: none;
  }
  .cardapio .menu-item:hover { margin: 0; padding: 16px 0; background: none; }
  .cardapio .menu-item { flex-wrap: wrap; }
  .mi-prices { width: 100%; justify-content: flex-end; }

  .sobre { padding: 72px 24px; }
  .sobre-inner { grid-template-columns: 1fr; gap: 56px; }
  .sobre-puxada { position: static; margin-top: 16px; max-width: 100%; }
  .sobre-stats { gap: 32px; margin-top: 36px; padding-top: 36px; }
  .stat { gap: 3px; }
  .stat strong { font-size: 20px; }
  .stat span { font-size: 12px; }

  .peixaria { padding: 72px 24px; }
  .peixaria-inner { grid-template-columns: 1fr; gap: 40px; }

  .delivery { padding: 72px 24px; }
  .delivery-grid { grid-template-columns: 1fr; gap: 40px; }

  .reserva { padding: 72px 24px; }
  .reserva-inner { grid-template-columns: 1fr; gap: 48px; }

  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 600px) {
  .hero-content { padding: 24px 20px; }
  .ht-line1, .ht-line-brand { font-size: 4.1rem; }
  .ht-line2 { font-size: 5.7rem; }
  .cardapio { padding: 56px 20px; }
  .sobre { padding: 56px 20px; }
  .peixaria { padding: 56px 20px; }
  .delivery { padding: 56px 20px; }
  .picker-row { grid-template-columns: 1fr; }
  .delivery-form { padding: 24px 20px; }
  .reserva { padding: 56px 20px; }
  .reserva-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 28px 20px; }
}

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
