/* ============================================================
   O REI DO TACHO — Stylesheet Principal
   Paleta: Creme quente, Castanho escuro, Dourado
   Tipografia: Playfair Display + Nunito
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --cream:       #F0E9D6;
  --cream-dark:  #E4D9C0;
  --cream-light: #FAF7F0;
  --dark:        #1A0D03;
  --brown:       #7B4F28;
  --brown-light: #A0693D;
  --gold:        #C4963A;
  --gold-light:  #D9B668;
  --tan:         #C5AA88;
  --text:        #2C1A0A;
  --text-muted:  #7A6355;
  --white:       #FDFAF5;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', 'Segoe UI', sans-serif;

  --shadow-sm:  0 2px 8px rgba(26,13,3,.08);
  --shadow-md:  0 8px 28px rgba(26,13,3,.13);
  --shadow-lg:  0 24px 64px rgba(26,13,3,.20);
  --shadow-xl:  0 40px 100px rgba(26,13,3,.28);

  --radius:    16px;
  --radius-sm:  8px;
  --radius-lg: 32px;
  --nav-h:     80px;

  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem);   font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.8; }

.text-gold { color: var(--gold); }
.text-brown { color: var(--brown); }
.italic { font-style: italic; }

/* ---- UTILITIES ---- */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; }
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brown-light));
  border-radius: 2px;
  margin: 20px auto;
}
.divider-left { margin: 20px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--dark) 0%, var(--brown) 100%);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--brown) 0%, var(--dark) 100%);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown-light) 100%);
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-3px);
}
.btn-outline-white {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(253,250,245,.5);
}
.btn-outline-white:hover {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: var(--transition);
}
.nav.scrolled {
  background: var(--cream-light);
  box-shadow: var(--shadow-sm);
}
.nav.dark-bg {
  background: transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
.nav-logo-text span {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--brown); }
.nav-cta {
  background: linear-gradient(135deg, var(--dark), var(--brown));
  color: var(--cream) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--cream) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream-light);
  padding: 24px;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: var(--transition);
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--cream-dark);
  color: var(--brown);
  padding-left: 24px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(26,13,3,.88) 0%,
    rgba(26,13,3,.70) 50%,
    rgba(26,13,3,.20) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-h);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,150,58,.15);
  border: 1px solid rgba(196,150,58,.4);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp .8s ease both;
}
.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 680px;
  animation: fadeUp .8s .15s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-subtitle {
  color: rgba(253,250,245,.78);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeUp .8s .3s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253,250,245,.6);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(253,250,245,.6), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ---- STRIP / BADGES ---- */
.strip {
  background: var(--dark);
  padding: 18px 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tan);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.strip-item i { color: var(--gold); font-size: 1rem; }

/* ---- FEATURE CARDS ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brown-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--cream-dark), var(--tan));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--brown);
}
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { font-size: .95rem; }

/* ---- SPLIT SECTION ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.split-image:hover img { transform: scale(1.04); }
.split-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.split-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
}
.split-badge span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tan);
}
.split-content .label { margin-bottom: 8px; }
.split-content h2 { margin-bottom: 20px; }
.split-content p { margin-bottom: 20px; }
.split-content .btn { margin-top: 12px; }

/* ---- MENU PREVIEW CARDS ---- */
.menu-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--cream-dark);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
  letter-spacing: .04em;
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--cream);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 24px;
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  gap: 16px;
  transition: var(--transition);
}
.menu-item:hover {
  border-color: var(--tan);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.menu-item-name { font-weight: 700; font-size: .95rem; color: var(--dark); }
.menu-item-desc { font-size: .82rem; color: var(--text-muted); margin-top: 4px; }
.menu-item-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brown);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px 32px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--brown) 100%);
  border-radius: var(--radius);
  color: var(--cream);
  font-style: italic;
  font-size: .95rem;
}

/* ---- DESTAQUES (HERO DISHES) ---- */
.destaques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.destaque-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.destaque-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.destaque-card:hover img { transform: scale(1.08); }
.destaque-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,13,3,.9) 0%, transparent 55%);
}
.destaque-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.destaque-info .label { color: var(--gold-light); margin-bottom: 6px; }
.destaque-info h3 { color: var(--white); margin-bottom: 4px; }
.destaque-info p { color: rgba(253,250,245,.7); font-size: .88rem; }
.destaque-price {
  display: inline-block;
  margin-top: 12px;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
}

/* ---- HOW IT WORKS / STEPS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--tan), var(--gold), var(--tan));
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 80px; height: 80px;
  background: var(--dark);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
.step h3 { margin-bottom: 10px; font-size: 1.05rem; }
.step p { font-size: .88rem; }

/* ---- DARK SECTION ---- */
.section-dark {
  background: linear-gradient(135deg, var(--dark) 0%, #2C1A0A 100%);
  color: var(--cream);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p { color: rgba(240,233,214,.7); }
.section-dark .label { color: var(--gold-light); }
.section-dark .divider {
  background: linear-gradient(90deg, var(--gold), var(--brown-light));
}

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(240,233,214,.07);
  border: 1px solid rgba(196,150,58,.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
  text-align: left;
}
.faq-q i { color: var(--gold); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: rgba(240,233,214,.7);
  font-size: .95rem;
}
.faq-item.open .faq-a { display: block; }

/* ---- AREAS ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.area-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(240,233,214,.06);
  border: 1px solid rgba(196,150,58,.15);
  border-radius: var(--radius);
  transition: var(--transition);
}
.area-card:hover {
  background: rgba(196,150,58,.12);
  border-color: rgba(196,150,58,.4);
  transform: translateY(-4px);
}
.area-icon { font-size: 2rem; margin-bottom: 14px; }
.area-card h4 { color: var(--cream); font-size: 1rem; margin-bottom: 6px; }
.area-card p { font-size: .83rem; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--dark) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: rgba(196,150,58,.12);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: rgba(196,150,58,.08);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p  { color: rgba(253,250,245,.75); margin-bottom: 36px; position: relative; z-index: 1; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ---- GALERIA ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,13,3,0);
  transition: background .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(26,13,3,.35); }
.gallery-item-overlay i {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-item-overlay i { opacity: 1; }

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,13,3,.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--cream); font-size: 1.8rem;
  cursor: pointer;
}

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 28px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 600;
}
.blog-meta .tag {
  background: var(--cream-dark);
  color: var(--brown);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: .75rem;
}
.blog-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.blog-body p { font-size: .9rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  font-size: .875rem;
  color: var(--brown);
  transition: var(--transition);
}
.blog-read-more:hover { gap: 14px; }

/* ---- CONTACTOS ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--dark), var(--brown));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-card h4 { margin-bottom: 4px; font-size: .95rem; }
.contact-card p, .contact-card a { font-size: .9rem; color: var(--text-muted); }
.contact-card a:hover { color: var(--brown); }
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
}
.map-container iframe {
  width: 100%; height: 100%;
  border: none;
}
.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--cream-dark); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 0; font-size: .9rem; }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--brown); }
.hours-open { color: #3A8A4A !important; }
.hours-closed { color: #C05252 !important; }

/* ---- SOBRE NÓS PAGE ---- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(240,233,214,.08);
  border: 1px solid rgba(196,150,58,.15);
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(240,233,214,.13);
  transform: translateY(-4px);
}
.value-card .value-icon { font-size: 1.8rem; margin-bottom: 12px; }
.value-card h4 { color: var(--cream); margin-bottom: 8px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--tan);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { font-size: .85rem; color: var(--gold); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.team-card p { font-size: .88rem; margin-top: 12px; }

/* ---- PÁGINA MENU ---- */
.menu-page-section {
  padding: 56px 0;
}
.menu-category {
  margin-bottom: 64px;
}
.menu-category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.menu-category-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--dark), var(--brown));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.menu-category-header h2 {
  font-size: 1.7rem;
  margin: 0;
}
.menu-category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--tan), transparent);
}
.menu-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dark);
  background: var(--cream-light);
  transition: var(--transition);
}
.menu-row:hover {
  border-color: var(--tan);
  background: var(--white);
}
.menu-row-name { font-weight: 700; font-size: .93rem; color: var(--dark); }
.menu-row-desc { font-size: .8rem; color: var(--text-muted); margin-top: 3px; }
.menu-row-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown);
  white-space: nowrap;
}
.menu-note-box {
  background: var(--cream-dark);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 20px;
}
.legal-note {
  text-align: center;
  padding: 24px;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: .8rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 800px;
  margin: 40px auto 0;
  line-height: 1.9;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(240,233,214,.1);
}
.footer-logo img { height: 56px; margin-bottom: 16px; }
.footer-brand p {
  color: rgba(240,233,214,.6);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(240,233,214,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tan);
  font-size: .95rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}
.footer-col h4 {
  color: var(--cream);
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(240,233,214,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-nap p {
  color: rgba(240,233,214,.6);
  font-size: .88rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-nap p i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(240,233,214,.4); font-size: .8rem; }

/* ---- FLOATING CALL BUTTON ---- */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 28px rgba(196,150,58,.45);
  transition: var(--transition);
  text-decoration: none;
}
.float-call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(196,150,58,.5);
  animation: pulse 2s ease-in-out infinite;
}
.float-call:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 16px 40px rgba(196,150,58,.55);
}
.float-call-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  box-shadow: var(--shadow-md);
}
.float-call:hover .float-call-tooltip { opacity: 1; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,13,3,.85) 0%, rgba(26,13,3,.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 12px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(253,250,245,.6);
  font-size: .85rem;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .7rem; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.25); opacity: 0; }
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(.7); }
}

/* Scroll-triggered fade */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }



/* ---- POLISH / ACCESSIBILIDADE / RESPONSIVO ---- */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.nav-links {
  gap: clamp(18px, 2.6vw, 36px);
}
.nav-logo-text {
  white-space: nowrap;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1200px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .82rem; }
  .nav-cta { padding: 10px 18px; }
}

@media (max-width: 768px) {
  .blog-featured {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 44px;
  }
}

@media (max-width: 560px) {
  .menu-row[style*="grid-template-columns:1fr auto auto"] {
    grid-template-columns: 1fr auto auto !important;
    gap: 8px !important;
    padding: 14px 12px;
  }
  .menu-row[style*="grid-template-columns:1fr auto auto"] .menu-row-price {
    font-size: .92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse { direction: ltr; }
  .destaques-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .destaques-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 28px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .menu-full-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .page-hero { height: 340px; }
  .menu-tabs { gap: 8px; }
  .tab-btn { padding: 8px 16px; font-size: .8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .areas-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   AJUSTES HOME — Junho 2026
   Pedido: header creme, hero mais largo, H1 novo, textos justificados,
   espaçamento dos CTAs e WhatsApp Business pendente.
   ============================================================ */

body {
  padding-top: var(--nav-h);
}

p,
.menu-item-desc,
.menu-row-desc,
.faq-a,
.contact-card p,
.footer-brand p,
.menu-note,
.legal-note {
  text-align: justify;
  hyphens: auto;
  text-wrap: pretty;
}

.section-header p,
.cta-banner p,
.hero-subtitle {
  text-align: justify;
  text-align-last: center;
}

.split-content p,
.feature-card p,
.blog-body p,
.contact-card p,
.footer-brand p {
  text-align-last: auto;
}

.nav,
.nav.dark-bg,
.nav.scrolled {
  background: var(--cream) !important;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(26, 13, 3, .08);
}

.nav-logo img,
.footer-logo img {
  background: transparent !important;
  object-fit: contain;
}

.nav-logo img {
  height: 58px;
  max-width: 180px;
}

.hero {
  min-height: calc(100vh - var(--nav-h));
  padding: clamp(72px, 9vh, 118px) 0 clamp(120px, 15vh, 180px);
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 1360px;
  padding-top: 0;
}

.hero-title {
  max-width: min(980px, 92vw);
  font-size: clamp(2.9rem, 7vw, 6.4rem);
  letter-spacing: -.035em;
  line-height: .98;
  margin-bottom: 28px;
}

.hero-title em {
  margin-top: .08em;
  font-size: clamp(2rem, 4.7vw, 4.5rem);
  letter-spacing: -.02em;
}

.hero-subtitle {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  margin-bottom: clamp(48px, 7vh, 84px);
}

.hero-btns {
  gap: 18px;
  margin-bottom: clamp(42px, 8vh, 96px);
}

.strip {
  padding: 22px 0;
}

.split-image .split-badge {
  bottom: 18px;
  right: 18px;
}

@media (max-width: 768px) {
  body { padding-top: 72px; }
  :root { --nav-h: 72px; }
  .nav-logo img { height: 50px; max-width: 150px; }
  .hero {
    min-height: calc(100vh - var(--nav-h));
    padding: 56px 0 112px;
  }
  .hero-title {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
    line-height: 1.02;
  }
  .hero-title em {
    font-size: clamp(1.75rem, 9vw, 2.9rem);
  }
  .hero-subtitle,
  .section-header p,
  .cta-banner p {
    text-align-last: left;
  }
  .hero-btns {
    margin-bottom: 64px;
  }
}

@media (max-width: 480px) {
  .hero-content { padding-left: 18px; padding-right: 18px; }
  .hero-badge { font-size: .68rem; padding: 8px 14px; }
  .float-call-tooltip { display: none; }
}


/* ---- BACKGROUNDS COM FOTOS SEO ---- */
.section-bg-location,
.section-bg-values {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.section-bg-location::before,
.section-bg-values::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.section-bg-location::before {
  background-image: url('../images/restaurante-o-rei-do-tacho-grandola-ic1-estacionamento.webp');
}
.section-bg-location::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(240,233,214,.88);
  backdrop-filter: blur(1px);
}
.section-bg-values::before {
  background-image: url('../images/valores-da-cozinha-carne-o-rei-do-tacho-grandola.webp');
  opacity: .28;
}
.section-bg-values::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(26,13,3,.92), rgba(44,26,10,.90));
}

/* ---- ARTIGOS DO BLOG ---- */
.article-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.article-hero-bg { position:absolute; inset:0; }
.article-hero-bg img { width:100%; height:100%; object-fit:cover; }
.article-hero-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(26,13,3,.92), rgba(26,13,3,.25)); }
.article-hero-content { position:relative; z-index:1; padding:70px 24px; width:100%; }
.article-hero h1 { color:var(--white); max-width:980px; margin-top:14px; }
.article-hero .article-excerpt { max-width:760px; color:rgba(253,250,245,.82); font-size:1.1rem; margin-top:18px; text-align:justify; }
.article-layout { display:grid; grid-template-columns:minmax(0, 1fr) 320px; gap:56px; align-items:start; }
.article-content { max-width:860px; }
.article-content h2 { font-size:clamp(1.65rem,3vw,2.35rem); margin:44px 0 16px; }
.article-content h3 { font-size:clamp(1.25rem,2vw,1.55rem); margin:30px 0 12px; }
.article-content p { margin:0 0 18px; font-size:1.02rem; line-height:1.9; }
.article-content ul, .article-content ol { margin:12px 0 24px 24px; color:var(--text-muted); line-height:1.85; }
.article-content li { margin-bottom:8px; }
.article-table { width:100%; border-collapse:collapse; margin:26px 0; background:var(--cream-light); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); }
.article-table th, .article-table td { padding:14px 16px; border-bottom:1px solid var(--cream-dark); text-align:left; color:var(--text-muted); }
.article-table th { background:var(--dark); color:var(--cream); font-weight:700; }
.article-sidebar { position:sticky; top:calc(var(--nav-h) + 24px); }
.article-side-card { background:var(--cream-light); border:1px solid var(--cream-dark); border-radius:var(--radius); padding:26px; margin-bottom:18px; box-shadow:var(--shadow-sm); }
.article-side-card h3 { font-size:1.15rem; margin-bottom:10px; }
.article-side-card p { font-size:.92rem; margin-bottom:16px; }
.article-faq { margin-top:52px; }
.article-cta { margin-top:46px; padding:34px; border-radius:var(--radius-lg); background:linear-gradient(135deg,var(--dark),var(--brown)); color:var(--cream); }
.article-cta p { color:rgba(253,250,245,.82); margin-bottom:20px; }
@media (max-width: 980px) { .article-layout { grid-template-columns:1fr; } .article-sidebar { position:static; } }
@media (max-width: 640px) { .article-hero { min-height:420px; } .article-hero-content { padding:48px 18px; } .article-content p { font-size:1rem; } }


/* ============================================================
   OTIMIZAÇÃO FINAL — performance, SEO local, grupos e galeria
   ============================================================ */
.nav-logo img,
.footer-logo img {
  height: auto;
  width: auto;
  max-height: 58px;
  max-width: 180px;
}
.footer-logo img { max-height: 64px; }
.home-story-image img { object-position: 50% center; }
.home-groups-image img { object-position: 82% center; }
.page-hero-subtitle {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(253,250,245,.82);
  font-size: 1.08rem;
  line-height: 1.8;
}
.page-hero .hero-btns { margin-top: 26px; margin-bottom: 0; }
.groups-steps .step p { text-align: center; }
.gallery-grid { align-items: stretch; }
.gallery-item.reveal { transition-delay: var(--stagger-delay, 0s); }
.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.72,.2,1), box-shadow .35s ease, border-color .35s ease, background .35s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.article-content img,
.blog-img img,
.gallery-item img,
.destaque-card img,
.split-image img { background: var(--cream-dark); }
.section-bg-location::after { background: rgba(240,233,214,.90); }
@media (max-width: 768px) {
  .home-story-image img { object-position: 49% center; }
  .home-groups-image img { object-position: 78% center; }
  .page-hero-subtitle { font-size: 1rem; }
}


/* ============================================================
   V4 — ajustes de performance percebida e enquadramentos
   ============================================================ */

/* Entrada suave real para todos os elementos revelados */
.reveal {
  transition-delay: var(--stagger-delay, 0s);
}
.reveal.reveal-delay-1 { transition-delay: .08s; }
.reveal.reveal-delay-2 { transition-delay: .16s; }
.reveal.reveal-delay-3 { transition-delay: .24s; }
.reveal.reveal-delay-4 { transition-delay: .32s; }

/* Enquadramento pedido: dono centrado e restaurante visível no bloco de grupos */
.home-story-image img {
  object-position: 50% center !important;
}
.home-groups-image img {
  object-position: 86% center !important;
}

/* Melhora a sensação de carregamento sem esconder conteúdo tempo demais */
.gallery-item,
.menu-item,
.menu-row,
.contact-card,
.blog-card,
.feature-card,
.destaque-card,
.value-card,
.step,
.article-side-card {
  backface-visibility: hidden;
}

@media (max-width: 768px) {
  .home-story-image img { object-position: 50% center !important; }
  .home-groups-image img { object-position: 82% center !important; }
}


/* ---- FOOTER CREDIT ---- */
.footer-credit {
  text-align: center;
  padding: 0 0 24px;
  color: rgba(240,233,214,.48);
  font-size: .82rem;
}
.footer-credit a {
  color: rgba(240,233,214,.72);
  transition: var(--transition);
}
.footer-credit a:hover { color: var(--gold-light); }
.footer-credit strong { font-weight: 700; }
