:root {
  --brasa: #e41717;
  --brasa-dark: #d40000;
  --carvao: #1A1008;
  --madeira: #3D2B1F;
  --palha: #F5E6C8;
  --palha-dark: #E8D5A8;
  --cinza-quente: #ffffff;
  --ouro: #ffdfdf;
  --ouro-light: #F0C96A;
  --branco: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--carvao);
  color: var(--palha);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 18px 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(26,16,8,0.97), transparent);
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(26,16,8,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--ouro); letter-spacing: 1px;
  text-decoration: none;
}
.nav-logo span { color: var(--brasa); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--palha); text-decoration: none;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--ouro); }
.nav-cta {
  background: var(--brasa); color: #c4b9b9 !important;
  padding: 10px 22px; border-radius: 2px;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--brasa-dark) !important; color: #fff !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--palha); display: block; transition: 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh;
  background: var(--carvao); z-index: 99;
  flex-direction: column; align-items: center;
  justify-content: center; gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--palha); text-decoration: none;
  font-size: 1.5rem; font-family: 'Playfair Display', serif;
  font-weight: 700; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--ouro); }
.mobile-menu-close {
  position: absolute; top: 20px; right: 5%;
  background: none; border: none;
  color: var(--palha); font-size: 2rem; cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(192,57,43,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212,168,67,0.12) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1558030006-450675393462?w=1600&q=80') center/cover no-repeat;
  filter: brightness(0.35);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; padding: 0 20px;
  animation: fadeUp 1s ease both;
}
.hero-badge {
  display: inline-block; border: 1px solid var(--ouro);
  color: var(--ouro); font-size: 0.72rem; letter-spacing: 4px;
  text-transform: uppercase; padding: 6px 20px; margin-bottom: 28px;
  animation: fadeUp 1s 0.2s ease both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900;
  line-height: 1.05; margin-bottom: 20px; color: var(--branco);
  animation: fadeUp 1s 0.3s ease both;
}
.hero h1 em { color: var(--brasa); font-style: normal; }
.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 300;
  color: var(--palha-dark); max-width: 520px;
  margin: 0 auto 40px;
  animation: fadeUp 1s 0.45s ease both;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s 0.6s ease both;
}
.btn-primary {
  background: var(--brasa); color: #fff;
  padding: 16px 36px; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-primary:hover { background: var(--brasa-dark); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--palha);
  padding: 15px 36px; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(245,230,200,0.4); cursor: pointer; transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--ouro); color: var(--ouro); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--cinza-quente); font-size: 0.72rem; letter-spacing: 3px;
  text-transform: uppercase; animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px;
  background: var(--cinza-quente); display: block;
}

/* ── SECTION BASE ── */
section { padding: 100px 5%; }
.section-label {
  display: inline-block; color: var(--ouro);
  font-size: 0.72rem; letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 14px; font-weight: 700;
}
.section-label::before { content: '— '; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: var(--branco); line-height: 1.1; margin-bottom: 20px;
}
.section-title em { color: var(--brasa); font-style: normal; }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--brasa), var(--ouro));
  margin: 0 0 40px;
}

/* ── SOBRE NÓS ── */
.sobre { background: var(--madeira); }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.sobre-img { position: relative; }
.sobre-img img {
  width: 100%; height: 520px; object-fit: cover; display: block;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 92% 100%, 0 100%);
}
.sobre-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--brasa); padding: 28px 32px; text-align: center;
}
.sobre-img-badge strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1;
}
.sobre-img-badge span {
  font-size: 0.7rem; letter-spacing: 2px;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
}
.sobre-text p {
  color: rgba(245,230,200,0.75); line-height: 1.9;
  margin-bottom: 20px; font-size: 1.05rem;
}
.sobre-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 36px;
}
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-icon {
  width: 44px; height: 44px;
  background: rgb(255, 12, 12);
  border: 1px solid rgba(192,57,43,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.value-item h4 {
  font-size: 0.85rem; font-weight: 700; color: var(--palha);
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px;
}
.value-item p { font-size: 0.82rem; color: var(--cinza-quente); margin: 0; }

/* ── RODÍZIO ── */
.rodizio { background: var(--carvao); }
.rodizio-header {
  text-align: center; max-width: 700px;
  margin: 0 auto 64px;
}
.rodizio-header .divider { margin: 0 auto 40px; }
.rodizio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; max-width: 1200px; margin: 0 auto 60px;
}
.corte-card {
  background: var(--madeira); padding: 36px 30px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.corte-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(192,57,43,0.08), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.corte-card:hover { border-color: var(--brasa); transform: translateY(-4px); }
.corte-card:hover::before { opacity: 1; }
.corte-num {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900;
  color: rgba(255, 0, 0, 0.2); line-height: 1; margin-bottom: 12px;
}
.corte-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--branco); margin-bottom: 10px;
}
.corte-card p { font-size: 0.88rem; color: var(--cinza-quente); line-height: 1.7; }

.rodizio-extras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px; max-width: 1200px; margin: 0 auto;
}
.extra-block { border-left: 3px solid var(--ouro); padding-left: 24px; }
.extra-block h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--ouro); margin-bottom: 14px;
}
.extra-block ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.extra-block li {
  font-size: 0.88rem; color: var(--cinza-quente);
  display: flex; align-items: center; gap: 8px;
}
.extra-block li::before {
  content: '·'; color: var(--brasa);
  font-size: 1.5rem; line-height: 0;
}
.preco-box {
  max-width: 1200px; margin: 60px auto 0;
  background: linear-gradient(135deg, var(--brasa) 0%, var(--brasa-dark) 100%);
  padding: 48px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 30px; flex-wrap: wrap;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.preco-box .preco-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: #e4e4e4; margin-bottom: 8px;
}
.preco-box .preco-info p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.preco-value { text-align: right; }
.preco-value span {
  display: block; font-size: 0.75rem; letter-spacing: 2px;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
}
.preco-value strong {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; color: #fff; font-weight: 900; line-height: 1;
}
.preco-value em { font-size: 1.2rem; font-style: normal; color: rgba(255,255,255,0.7); }

/* ── GALERIA ── */
.galeria { background: var(--madeira); }
.galeria-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.galeria-header .divider { margin: 0 auto 40px; }
.galeria-grid {
  display: grid; max-width: 1200px; margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}
.galeria-grid img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  filter: brightness(0.8) saturate(0.9);
  transition: filter 0.4s, transform 0.4s; cursor: pointer;
}
.galeria-grid img:hover { filter: brightness(1) saturate(1.1); transform: scale(1.02); }
.galeria-grid .gal-large { grid-column: span 2; }
.galeria-grid .gal-large img { height: 444px; }

/* ── RESERVAS ── */
.reservas { background: var(--carvao); }
.reservas-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; max-width: 1200px; margin: 0 auto; align-items: start;
}
.reservas-info p {
  color: rgba(245,230,200,0.7); line-height: 1.8;
  margin-bottom: 24px; font-size: 0.95rem;
}
.reservas-info .info-item {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px;
}
.reservas-info .info-icon { font-size: 1.3rem; margin-top: 2px; }
.reservas-info .info-text strong {
  display: block; color: var(--palha); font-size: 0.85rem; margin-bottom: 2px;
}
.reservas-info .info-text span { color: var(--cinza-quente); font-size: 0.82rem; }

form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cinza-quente); font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--madeira);
  border: 1px solid rgba(245,230,200,0.15);
  color: var(--palha); padding: 14px 16px;
  font-family: 'Lato', sans-serif; font-size: 0.92rem;
  outline: none; transition: border-color 0.3s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brasa); }
.form-group select option { background: var(--madeira); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8rem; color: var(--cinza-quente); line-height: 1.6; }
.btn-form {
  background: var(--brasa); color: #fff; border: none; padding: 18px;
  font-family: 'Lato', sans-serif; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-form:hover { background: var(--brasa-dark); }
.form-success {
  display: none;
  background: rgba(212,168,67,0.1); border: 1px solid var(--ouro);
  padding: 20px; text-align: center; color: var(--ouro); font-size: 0.9rem;
}

/* ── LOCALIZAÇÃO ── */
.localizacao { background: var(--madeira); }
.loc-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; max-width: 1200px; margin: 0 auto; align-items: start;
}
.loc-info { display: flex; flex-direction: column; gap: 32px; }
.loc-block h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--ouro); margin-bottom: 14px;
}
.loc-block p,
.loc-block a { color: var(--cinza-quente); font-size: 0.9rem; line-height: 1.8; text-decoration: none; }
.loc-block a:hover { color: var(--palha); }
.horarios { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.horarios li {
  display: flex; justify-content: space-between;
  font-size: 0.88rem; color: var(--cinza-quente);
  border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 8px;
}
.horarios li strong { color: var(--palha); }
.social-links { display: flex; gap: 14px; }
.social-link {
  width: 44px; height: 44px;
  background: rgba(245,230,200,0.08);
  border: 1px solid rgba(245,230,200,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; text-decoration: none; transition: all 0.3s;
  color: var(--cinza-quente);
}
.social-link:hover {
  background: var(--brasa); border-color: var(--brasa); color: #fff;
}
.map-embed {
  width: 100%; height: 420px; border: none;
  filter: grayscale(60%) contrast(1.1);
}

/* ── FOOTER ── */
footer {
  background: #0E0804; padding: 60px 5% 32px;
  border-top: 1px solid rgba(245,230,200,0.08);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px; max-width: 1200px; margin: 0 auto 48px;
}
.footer-brand .nav-logo { font-size: 1.6rem; display: block; margin-bottom: 16px; }
.footer-brand p { color: var(--cinza-quente); font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
.footer-col h5 {
  color: var(--palha); font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 20px; font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { color: var(--cinza-quente); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-col li a:hover { color: var(--palha); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 24px;
  border-top: 1px solid rgba(245,230,200,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--cinza-quente); font-size: 0.8rem; }
.footer-bottom a { color: var(--cinza-quente); text-decoration: none; }
.footer-bottom a:hover { color: var(--palha); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sobre-grid, .reservas-grid, .loc-grid, .footer-grid { grid-template-columns: 1fr; }
  .sobre-img-badge { right: 0; bottom: 0; }
  .sobre-img img { height: 340px; }
  .galeria-grid { grid-template-columns: 1fr 1fr; }
  .galeria-grid .gal-large img { height: 220px; }
  .preco-box { flex-direction: column; text-align: center; }
  .preco-value { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 70px 5%; }
}
@media (max-width: 500px) {
  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-grid .gal-large { grid-column: span 1; }
  .sobre-values { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}