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

:root {
  --terra:      #C4501A;
  --terra-deep: #9E3D10;
  --terra-pale: #F5EDE6;
  --gold:       #D4973A;
  --gold-pale:  #FBF4E8;
  --cream:      #FAF8F3;
  --ink:        #1C1208;
  --ink-2:      #2D2015;
  --brown:      #5C3D1E;
  --tan:        #8B6A45;
  --muted:      #A08060;
  --border:     #E8DDD0;
  --white:      #FFFDF9;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 300;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(250,248,243,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo { text-decoration: none; }
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: var(--ink); letter-spacing: .5px;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 10px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--terra);
  display: block; margin-top: 2px;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--tan);
  font-size: 13px; font-weight: 500; letter-spacing: .5px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--terra); }

.nav-cta {
  padding: 11px 28px;
  background: var(--terra); color: var(--white);
  border: none; border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer;
  transition: background .2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--terra-deep); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 72px 5vw 0;
}

/* warm texture bg */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 65% 40%, rgba(196,80,26,.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(212,151,58,.1) 0%, transparent 60%),
    linear-gradient(160deg, var(--cream) 0%, #F0E8DC 50%, var(--cream) 100%);
}

/* decorative circle */
.hero-circle {
  position: absolute; right: -8%; top: 50%;
  transform: translateY(-50%);
  width: 680px; height: 680px; border-radius: 50%;
  background: var(--terra-pale);
  border: 1px solid rgba(196,80,26,.15);
  z-index: 0;
}
.hero-circle::before {
  content: '';
  position: absolute; inset: 40px; border-radius: 50%;
  border: 1px solid rgba(196,80,26,.1);
}
.hero-circle::after {
  content: '';
  position: absolute; inset: 80px; border-radius: 50%;
  border: 1px dashed rgba(196,80,26,.12);
}

/* big emoji plate visual */
.hero-plate {
  position: absolute; right: 10%; top: 50%;
  transform: translateY(-52%);
  font-size: 200px; z-index: 1;
  filter: drop-shadow(0 40px 60px rgba(100,40,0,.2));
  animation: floatPlate 5s ease-in-out infinite;
  user-select: none;
}
@keyframes floatPlate {
  0%,100% { transform: translateY(-52%) rotate(-2deg); }
  50%      { transform: translateY(-56%) rotate(2deg); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
  padding: 80px 0;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 28px;
  animation: fadeUp .5s ease both;
}
.hero-eyebrow-line { width: 36px; height: 1px; background: var(--terra); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 700; line-height: .92;
  letter-spacing: -1px; color: var(--ink);
  margin-bottom: 28px;
  animation: fadeUp .55s ease .1s both;
}
.hero-title em { font-style: italic; color: var(--terra); }

.hero-desc {
  font-size: 17px; line-height: 1.75;
  color: var(--tan); font-weight: 300;
  max-width: 440px; margin-bottom: 44px;
  animation: fadeUp .55s ease .2s both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp .55s ease .3s both;
}
.btn-filled {
  padding: 16px 36px; border-radius: 2px;
  background: var(--terra); color: var(--white);
  border: none; font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none; display: inline-block;
}
.btn-filled:hover { background: var(--terra-deep); transform: translateY(-2px); }
.btn-outline {
  padding: 16px 36px; border-radius: 2px;
  background: transparent; color: var(--brown);
  border: 1.5px solid var(--border);
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer;
  transition: border-color .2s, color .2s;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--terra); color: var(--terra); }

/* info ribbon */
.hero-ribbon {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,.06);
}
.ribbon-item {
  flex: 1; padding: 22px 5vw;
  display: flex; align-items: center; gap: 14px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.ribbon-item:last-child { border-right: none; }
.ribbon-icon { font-size: 24px; flex-shrink: 0; }
.ribbon-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.ribbon-val { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--white); margin-top: 2px; }

/* ── SECTION COMMONS ──────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--terra); }

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 700; line-height: .95; letter-spacing: -.5px;
  color: var(--ink);
}

/* ── ABOUT ────────────────────────────────────────── */
#sobre {
  padding: 120px 5vw;
  background: var(--white);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-text { }
.about-text .sec-title { margin-bottom: 28px; }
.about-text p {
  font-size: 16px; color: var(--tan); line-height: 1.85;
  font-weight: 300; margin-bottom: 18px;
}

.about-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 36px;
}
.about-card {
  padding: 22px 20px;
  border: 1px solid var(--border);
  background: var(--cream);
  border-top: 3px solid var(--terra);
  transition: transform .3s, box-shadow .3s;
}
.about-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(100,40,0,.07); }
.about-card-icon { font-size: 28px; margin-bottom: 10px; }
.about-card-ttl { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.about-card-txt { font-size: 13px; color: var(--tan); line-height: 1.6; }

/* food visual mosaic */
.about-visual {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px; aspect-ratio: 1;
}
.food-tile {
  border-radius: 4px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 70px;
  transition: transform .3s;
}
.food-tile:hover { transform: scale(1.03); }
.food-tile:nth-child(1) { background: #FDEEE5; grid-row: 1/3; font-size: 100px; }
.food-tile:nth-child(2) { background: #F5F0E8; }
.food-tile:nth-child(3) { background: #EBF5EC; }
.food-tile:nth-child(4) { background: #FFF3E0; grid-column: 1/3; font-size: 56px; }

/* ── MENU ─────────────────────────────────────────── */
#cardapio {
  padding: 120px 5vw;
  background: var(--cream);
}
.menu-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 64px;
}
.menu-intro { font-size: 16px; color: var(--tan); line-height: 1.75; font-weight: 300; }

/* category tabs */
.menu-tabs {
  display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap;
}
.menu-tab {
  padding: 9px 22px; border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 500; color: var(--tan);
  background: transparent; cursor: pointer;
  transition: all .2s; font-family: 'Jost', sans-serif;
}
.menu-tab.active, .menu-tab:hover {
  background: var(--terra); border-color: var(--terra); color: var(--white);
}

.menu-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.menu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(100,40,0,.1); }

.menu-card-img {
  aspect-ratio: 4/3;
  background: var(--terra-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 72px; position: relative;
}
.menu-card-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 100px;
  background: var(--terra); color: var(--white);
  font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}

.menu-card-body { padding: 20px 22px 22px; }
.menu-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--ink);
  margin-bottom: 6px;
}
.menu-card-desc { font-size: 13px; color: var(--tan); line-height: 1.6; margin-bottom: 16px; }
.menu-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.menu-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700; color: var(--terra);
}
.btn-pedido {
  padding: 8px 18px; border-radius: 2px;
  background: var(--gold-pale); color: var(--brown);
  border: 1px solid rgba(212,151,58,.3);
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer;
  transition: background .2s, color .2s;
  font-family: 'Jost', sans-serif;
}
.btn-pedido:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ── HIGHLIGHTS ───────────────────────────────────── */
.highlights {
  background: var(--terra);
  padding: 80px 5vw;
}
.highlights-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,.15);
}
.hl-cell {
  background: var(--terra); padding: 40px 32px;
  text-align: center;
}
.hl-icon { font-size: 40px; margin-bottom: 16px; }
.hl-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 700; color: var(--white); line-height: 1;
}
.hl-lbl { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 6px; letter-spacing: .5px; }

/* ── ESPECIAIS ────────────────────────────────────── */
#especiais {
  padding: 120px 5vw;
  background: var(--ink-2);
}
#especiais .eyebrow { color: var(--gold); }
#especiais .eyebrow::before { background: var(--gold); }
#especiais .sec-title { color: var(--white); margin-bottom: 60px; }

.especiais-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.especial-card {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.04);
  position: relative; overflow: hidden;
  transition: background .3s, border-color .3s, transform .3s;
}
.especial-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(212,151,58,.35);
  transform: translateY(-4px);
}
.especial-icon { font-size: 48px; margin-bottom: 20px; display: block; }
.especial-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 12px;
}
.especial-text { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; }
.especial-tag {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  opacity: .6;
}

/* ── HORARIOS & LOCALIZACAO ───────────────────────── */
#horarios {
  padding: 120px 5vw;
  background: var(--terra-pale);
}
.horarios-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 64px; align-items: start;
}

.horario-box {
  background: var(--white); padding: 48px 40px;
  border: 1px solid var(--border);
}
.horario-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 28px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.horario-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.horario-row:last-child { border-bottom: none; }
.dia { color: var(--tan); font-weight: 500; }
.hora { color: var(--ink); font-weight: 600; }
.hora.fechado { color: var(--muted); font-weight: 400; font-style: italic; }

.location-box {
  background: var(--ink); padding: 48px 40px;
  border: 1px solid rgba(255,255,255,.06);
  color: var(--white);
}
.location-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 28px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.loc-row {
  display: flex; gap: 16px; margin-bottom: 20px;
}
.loc-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.loc-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 600; }
.loc-val { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.6; }
.loc-val a { color: var(--gold); text-decoration: none; }
.loc-val a:hover { text-decoration: underline; }

/* map placeholder */
.map-placeholder {
  margin-top: 28px; height: 160px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--muted);
  letter-spacing: .5px; gap: 10px;
}

/* ── DEPOIMENTOS ──────────────────────────────────── */
#depoimentos {
  padding: 120px 5vw;
  background: var(--white);
}
.dep-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 64px;
}
.dep-card {
  padding: 36px 30px;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: transform .3s, box-shadow .3s;
}
.dep-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(100,40,0,.07); }
.dep-stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 18px; }
.dep-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-style: italic;
  color: var(--brown); line-height: 1.65;
  margin-bottom: 24px;
}
.dep-author { display: flex; align-items: center; gap: 12px; }
.dep-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--terra); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.dep-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.dep-city { font-size: 12px; color: var(--muted); }

/* ── CTA BANNER ───────────────────────────────────── */
.cta-banner {
  padding: 100px 5vw;
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-deep) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '🍽️';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 24vw; opacity: .04;
  pointer-events: none;
}
.cta-banner .sec-title { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-banner p {
  font-size: 17px; color: rgba(255,255,255,.75);
  max-width: 420px; margin: 0 auto 40px;
  font-weight: 300; line-height: 1.7; position: relative;
}
.btn-white {
  padding: 16px 40px; border-radius: 2px;
  background: var(--white); color: var(--terra);
  border: none; font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none; display: inline-block;
  position: relative;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ── FOOTER ───────────────────────────────────────── */
footer { background: var(--ink); }

.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding: 80px 5vw 64px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700; color: var(--white);
}
.footer-brand-sub {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--terra); margin-top: 4px; display: block;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,.35); line-height: 1.7; margin-top: 16px; font-weight: 300; }
.footer-addr {
  margin-top: 24px; font-size: 13px;
  color: rgba(255,255,255,.35); line-height: 1.9;
}
.footer-addr strong {
  display: block; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 6px; font-weight: 600;
}

.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  text-decoration: none; color: rgba(255,255,255,.45);
  font-size: 14px; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--terra); }

.footer-bottom {
  padding: 24px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-legal { font-size: 12px; color: rgba(255,255,255,.2); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 12px; color: rgba(255,255,255,.3);
  text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--terra); }

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

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .especiais-grid { grid-template-columns: 1fr 1fr; }
  .dep-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-plate { display: none; }
  .hero-circle { display: none; }
  .about-grid, .menu-header, .horarios-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .menu-grid, .especiais-grid, .dep-grid { grid-template-columns: 1fr; }
  .hero-ribbon { flex-wrap: wrap; }
  .nav-links { display: none; }
}
