/* ============================================================
   DON VICTTÓRIO — ESTILOS PRINCIPAIS
   Paleta: preto profundo + dourado + creme
   Tipografia: Playfair Display (display) + Inter (corpo)
   ============================================================ */

/* ── RESET & VARIÁVEIS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0A0A0A;
  --dark:     #1A1410;
  --charcoal: #2A2520;
  --gold:     #C9A84C;
  --gold-lt:  #E2C97A;
  --cream:    #F5EDD6;
  --white:    #F9F7F2;
  --muted:    #8A7E6E;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── UTILITÁRIOS ── */
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.gold-rule--left { margin-left: 0; }

.section-eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(249,247,242,0.4);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible         { opacity: 1; transform: translateY(0); }
.reveal-delay-1         { transition-delay: 0.12s; }
.reveal-delay-2         { transition-delay: 0.24s; }
.reveal-delay-3         { transition-delay: 0.38s; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%);
  transition: background 0.4s, border-color 0.4s;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo em { font-style: italic; color: var(--cream); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-cta {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-lt); }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,10,10,0.72) 0%, rgba(26,20,16,0.55) 50%, rgba(10,10,10,0.85) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 820px;
  padding: 0 2rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin: 1.5rem 0 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s 2s infinite;
}

/* ── HISTÓRIA ── */
#historia {
  padding: 7rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.historia-img { position: relative; }
.historia-img img {
  width: 100%;
  filter: grayscale(20%) brightness(0.9) contrast(1.05);
}
.historia-img::before {
  content: '';
  position: absolute;
  top: -1rem; left: -1rem;
  width: 60%; height: 60%;
  border: 1px solid rgba(201,168,76,0.3);
  z-index: -1;
}

.historia-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.historia-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--black);
  line-height: 1;
}
.historia-badge span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 2px;
}

.historia-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.historia-text h2 em { font-style: italic; color: var(--gold); }

.historia-text p {
  color: rgba(249,247,242,0.7);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.historia-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.historia-link:hover { border-color: var(--gold); }

/* ── CARDÁPIO ── */
#cardapio {
  background: var(--charcoal);
  padding: 6rem 3rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-header p {
  color: rgba(249,247,242,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.menu-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.menu-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  filter: brightness(0.75) saturate(0.9);
}
.menu-card:hover img { transform: scale(1.04); filter: brightness(0.6) saturate(1.1); }

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
}
.menu-card-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.menu-card-overlay span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-cta { text-align: center; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── GALERIA ── */
#galeria {
  padding: 6rem 0;
  background: var(--black);
}

.galeria-inner { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }

.galeria-header { text-align: center; margin-bottom: 3rem; }
.galeria-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
}

.galeria-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 4px;
}
.g-cell { overflow: hidden; }
.g-cell:first-child { grid-row: span 2; }
.g-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s;
  filter: brightness(0.85);
}
.g-cell:hover img { transform: scale(1.04); filter: brightness(1); }

/* ── CONGELADAS ── */
#congeladas {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1f1a15 100%);
  padding: 6rem 3rem;
}

.congeladas-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.congeladas-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.congeladas-text h2 em { font-style: italic; color: var(--gold); }

.congeladas-text p {
  color: rgba(249,247,242,0.65);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.75rem 0;
}
.pill {
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
}

.congeladas-image img {
  width: 100%;
  filter: brightness(0.9) contrast(1.05);
}

/* ── CARREIRAS ── */
#carreiras {
  padding: 5rem 3rem;
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.carreiras-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.carreiras-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.carreiras-inner > p {
  color: rgba(249,247,242,0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.carreiras-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2rem 2.5rem;
  margin-top: 2rem;
}
.carreiras-card-text { flex: 1; min-width: 200px; text-align: left; }
.carreiras-card-text strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.carreiras-card-text p {
  color: rgba(249,247,242,0.6);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ── CONTATO ── */
#contato { padding: 6rem 3rem; background: var(--black); }

.contato-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contato-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2rem;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.info-item { display: flex; gap: 1.25rem; align-items: flex-start; }

.info-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.info-item-text strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.info-item-text span,
.info-item-text a {
  color: rgba(249,247,242,0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  text-decoration: none;
}
.info-item-text a:hover { color: var(--gold); }

.contato-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.contato-map {
  height: 340px;
  overflow: hidden;
}
.contato-map iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(85%);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
}
.footer-logo em { font-style: italic; color: var(--cream); }

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

footer p {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  #navbar { padding: 1rem 1.5rem; }
  .nav-links { display: none; }

  #historia { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  #cardapio { padding: 5rem 1.5rem; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid .menu-card:last-child { display: none; }

  #congeladas { padding: 5rem 1.5rem; }
  .congeladas-inner { grid-template-columns: 1fr; gap: 3rem; }
  .congeladas-image { order: -1; }

  #carreiras { padding: 4rem 1.5rem; }

  #contato { padding: 5rem 1.5rem; }
  .contato-inner { grid-template-columns: 1fr; gap: 3rem; }

  .galeria-inner { padding: 0 1.5rem; }
  .galeria-strip { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .galeria-strip .g-cell:first-child { grid-row: span 1; }
  .g-cell { height: 200px; }

  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
}

@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-grid .menu-card:last-child { display: block; }
  .galeria-strip { grid-template-columns: 1fr; }
  .g-cell { height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  *, .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
