:root {
  --brand: #A94F3F;
  --brand-dark: #8B3F31;
  --brand-light: #C85A47;
  --cream: #E8DCC8;
  --ifood: #EA1D2C;
  --ifood-dark: #D91A26;
  --gold: #FFD700;
  --gold-dark: #FFC700;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.7), rgba(0,0,0,.9));
}

.content { position: relative; z-index: 10; min-height: 100vh; display: flex; flex-direction: column; }

/* Header / Logo */
.header { padding: 2rem 1.5rem 0; display: flex; justify-content: center; }
@media (min-width: 768px) { .header { padding-top: 3rem; } }
.logo-wrap {
  width: 6rem; height: 6rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(255,255,255,0.2);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 768px) { .logo-wrap { width: 8rem; height: 8rem; } }
.logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.logo-wrap.logo-wrap-brand {
  width: auto; height: auto;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  overflow: visible;
  box-shadow: none;
}
@media (min-width: 768px) { .logo-wrap.logo-wrap-brand { width: auto; height: auto; } }
.logo-wrap img.links-logo-brand {
  width: clamp(7rem, 22vw, 10rem) !important;
  height: auto !important;
  object-fit: contain !important;
  filter: brightness(1.1) drop-shadow(0 4px 20px rgba(0,0,0,0.6));
}

/* Hero */
.hero { flex: 1; display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; }
@media (min-width: 768px) { .hero { padding: 5rem 1.5rem; } }
.hero-inner { max-width: 64rem; margin: 0 auto; text-align: center; }
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  color: var(--cream);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 42rem;
  margin: 0 auto 3rem;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(to right, var(--brand), var(--brand-dark));
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s;
}
@media (min-width: 768px) { .cta { padding: 1.25rem 2.5rem; font-size: 1.25rem; } }
.cta:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(169,79,63,0.5);
}
.cta svg { width: 1.25rem; height: 1.25rem; transition: transform 0.3s; }
.cta:hover svg { transform: translateX(4px); }

/* Features */
.features { padding: 0 1.5rem 4rem; }
@media (min-width: 768px) { .features { padding-bottom: 6rem; } }
.features-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.feature-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: background 0.3s;
}
@media (min-width: 768px) { .feature-card { padding: 2rem; } }
.feature-card:hover { background: rgba(255,255,255,0.1); }
.feature-icon {
  width: 3rem; height: 3rem;
  border-radius: 9999px;
  background: rgba(169,79,63,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .feature-icon { width: 3.5rem; height: 3.5rem; } }
.feature-icon svg { width: 1.5rem; height: 1.5rem; color: var(--brand); }
.feature-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .feature-card h3 { font-size: 1.5rem; } }
.feature-card p { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
@media (min-width: 768px) { .feature-card p { font-size: 1rem; } }

/* Footer */
.footer { padding: 0 1.5rem 2rem; text-align: center; }
.footer p { font-size: 0.875rem; color: rgba(255,255,255,0.5); }

/* Links Page */
.links-container {
  max-width: 48rem;
  margin: 0 auto;
  width: 100%;
  padding: 2rem 1rem;
}
@media (min-width: 768px) { .links-container { padding: 4rem 1rem; } }
.links-header { text-align: center; margin-bottom: 3rem; }
@media (min-width: 768px) { .links-header { margin-bottom: 4rem; } }
.links-header .logo-wrap { margin: 0 auto 1.5rem; }
.links-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .links-header h1 { font-size: 3rem; } }
.links-header p {
  font-size: 1.125rem;
  color: var(--cream);
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) { .links-header p { font-size: 1.25rem; } }

.section-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.locations { display: flex; flex-direction: column; gap: 1rem; }

.location-toggle {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.5s;
  text-align: left;
}
.location-toggle:hover:not(:disabled) { background: rgba(255,255,255,0.1); }
.location-toggle.expanded {
  background: rgba(255,255,255,0.05);
  box-shadow: 0 25px 50px -12px rgba(169,79,63,0.2);
}
.location-toggle:disabled { opacity: 0.6; cursor: not-allowed; }
.location-toggle-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}
@media (min-width: 768px) {
  .location-toggle-inner { padding: 1.25rem 1.5rem; }
}
.location-name {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}
@media (min-width: 768px) { .location-name { font-size: 1rem; } }
.location-toggle:disabled .location-name { color: rgba(255,255,255,0.6); }
.soon-tag { margin-left: 0.5rem; font-size: 0.75rem; opacity: 0.7; font-weight: 400; }
.chevron {
  width: 1.5rem; height: 1.5rem;
  color: var(--brand);
  transition: transform 0.5s;
}
.location-toggle.expanded .chevron { transform: rotate(180deg); }

.location-panel {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  animation: slideFadeIn 0.4s ease-out;
}
@media (min-width: 480px) {
  .location-panel { grid-template-columns: repeat(2, 1fr); }
}
@keyframes slideFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.action-btn {
  position: relative;
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s;
  background: rgba(0,0,0,0.4);
}
.action-btn:hover { transform: scale(1.02); }
@media (min-width: 480px) {
  .action-btn.col-span-2 { grid-column: span 2; max-width: 28rem; margin: 0 auto; width: 100%; }
}
.action-btn-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 0.875rem;
}
@media (min-width: 768px) {
  .action-btn-inner { gap: 1rem; padding: 1.25rem 1.5rem; }
}
.action-icon-wrap {
  width: 2.25rem; height: 2.25rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
@media (min-width: 768px) { .action-icon-wrap { width: 3rem; height: 3rem; } }
.action-btn:hover .action-icon-wrap { transform: scale(1.1); }
.action-icon-wrap svg { width: 1.125rem; height: 1.125rem; color: var(--cream); }
@media (min-width: 768px) { .action-icon-wrap svg { width: 1.25rem; height: 1.25rem; } }
.action-label {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.action-label span:first-child {
  font-size: 0.8125rem;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.025em;
  transition: color 0.3s;
  line-height: 1.2;
}
@media (min-width: 768px) { .action-label span:first-child { font-size: 1rem; } }
.action-btn:hover .action-label span:first-child { color: #fff; }
.action-soon {
  font-size: 0.75rem;
  color: rgba(232,220,200,0.6);
  font-style: italic;
  margin-top: 0.125rem;
}
.action-btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-backdrop.active { display: flex; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  position: relative;
  width: 100%;
  max-width: 28rem;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  border: 1px solid rgba(232,220,200,0.3);
  animation: zoomIn 0.3s;
}
@keyframes zoomIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-close svg { width: 1.5rem; height: 1.5rem; color: #fff; }
.modal h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  padding-top: 0.5rem;
}
@media (min-width: 768px) { .modal h2 { font-size: 1.875rem; } }
.delivery-list { display: flex; flex-direction: column; gap: 1rem; padding-top: 1rem; }
.delivery-option {
  position: relative;
  display: block;
  border-radius: 1.5rem;
  overflow: visible;
  transition: all 0.3s;
}
.delivery-option:hover:not(.soon) { transform: scale(1.02); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3); }
.delivery-option.soon { opacity: 0.6; cursor: not-allowed; pointer-events: none; }
.delivery-bg {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  overflow: hidden;
}
.delivery-bg::before { content: ''; position: absolute; inset: 0; }
.delivery-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.delivery-option .delivery-bg.ifood::before { background: linear-gradient(to right, var(--ifood), var(--ifood-dark)); }
.delivery-option .delivery-bg.food99::before { background: linear-gradient(to right, var(--gold), var(--gold-dark)); }
.delivery-option .delivery-bg.caseratto::before { background: linear-gradient(to right, var(--brand), var(--brand-dark)); }
.delivery-option-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
@media (min-width: 768px) { .delivery-option-inner { padding: 1.25rem 1.5rem; } }
.delivery-option-inner span {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: #fff;
}
@media (min-width: 768px) { .delivery-option-inner span { font-size: 1rem; } }
.delivery-option.dark-text .delivery-option-inner span { color: #000; }
.discount-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  z-index: 10;
  background: #059669;
  color: #fff;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}

.animate-in { animation: slideUpFade 0.5s ease-out both; }
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(2rem); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   PREMIUM HOME PAGE
   ========================================================== */

body.home {
  background: #0A0705;
  color: #EFE6D6;
  font-family: 'Inter', system-ui, sans-serif;
}

body.home .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s ease-out, transform 0.9s ease-out; }
body.home .reveal.revealed { opacity: 1; transform: translateY(0); }

/* Nav */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.top-nav.scrolled {
  background: rgba(10,7,5,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(239,230,214,0.08);
}
.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239,230,214,0.75);
  transition: color 0.2s;
}
.nav-link:hover { color: #fff; }
.nav-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(239,230,214,0.3);
  border-radius: 9999px;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
@media (max-width: 720px) {
  .top-nav { gap: 1rem; padding: 1rem; }
  .nav-link { display: none; }
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 24s ease-in-out infinite alternate;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #0A0705;
}
@keyframes slowZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 70%, rgba(10,7,5,0.75) 100%),
    linear-gradient(to bottom, rgba(10,7,5,0.55), rgba(10,7,5,0.3) 30%, rgba(10,7,5,0.3) 70%, rgba(10,7,5,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 56rem;
  text-align: center;
}
.hero-logo {
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  width: auto;
  height: auto;
}
.hero-logo img { width: 100%; height: 100%; object-fit: cover; }
.hero-logo img.hero-logo-brand {
  width: clamp(11rem, 29vw, 18rem);
  height: auto;
  object-fit: contain;
  filter: brightness(1.08) drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.5rem, 11vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, #E8DCC8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: rgba(239,230,214,0.75);
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.br-md { display: none; }
@media (min-width: 768px) { .br-md { display: inline; } }
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.4s;
  box-shadow: 0 10px 30px -10px rgba(169,79,63,0.6);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(169,79,63,0.8);
}
.btn-primary svg { width: 1rem; height: 1rem; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateY(2px); }
.btn-primary-large { padding: 1.25rem 2.5rem; font-size: 0.9375rem; }
.btn-primary-large svg { width: 1.125rem; height: 1.125rem; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border: 1px solid rgba(239,230,214,0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  transition: all 0.3s;
}
.btn-ghost:hover { background: rgba(239,230,214,0.08); border-color: rgba(239,230,214,0.6); }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(239,230,214,0.5);
  animation: fadeUpDown 2.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes fadeUpDown {
  0%, 100% { opacity: 0.5; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 6px); }
}

/* Generic Section */
body.home .section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
}
@media (min-width: 768px) { body.home .section { padding: 8rem 2rem; } }
.section-inner {
  max-width: 76rem;
  margin: 0 auto;
}
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 1rem;
}
.section-title-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #F8EFDF;
  margin-bottom: 1.5rem;
}
.section-title-serif em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand-light);
}
.section-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(239,230,214,0.7);
  max-width: 40rem;
  margin-left: auto; margin-right: auto;
}

/* Sobre */
.section-sobre { background: linear-gradient(180deg, #0A0705 0%, #120A08 100%); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .sobre-grid { grid-template-columns: 1.1fr 1fr; gap: 5rem; }
}
.sobre-text p { font-size: 1rem; line-height: 1.8; color: rgba(239,230,214,0.8); margin-bottom: 1.25rem; }
.sobre-text p.lead-paragraph {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.375rem, 2.4vw, 1.625rem);
  line-height: 1.5;
  font-style: italic;
  color: #F8EFDF;
  margin-bottom: 1.75rem;
}
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(239,230,214,0.12);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--brand-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(239,230,214,0.6);
}
.sobre-images {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 34rem;
}
.sobre-img-main {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7);
}
.sobre-img-accent {
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 55%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  border: 6px solid #0A0705;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
}

/* Conceito */
.section-conceito { background: #120A08; }
.conceito-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .conceito-grid { grid-template-columns: 1fr 1.1fr; gap: 5rem; }
}
.conceito-venn { display: flex; justify-content: center; }
.venn-wrap {
  position: relative;
  width: min(90vw, 32rem);
  aspect-ratio: 10 / 7;
  margin: 0 auto;
}
.venn-circle {
  position: absolute;
  top: 0;
  width: 64%;
  aspect-ratio: 1;
  border-radius: 9999px;
}
.venn-rest {
  left: 0;
  background: radial-gradient(circle at 42% 50%, rgba(200,90,71,0.55), rgba(200,90,71,0.3));
  mix-blend-mode: screen;
}
.venn-bar {
  right: 0;
  background: radial-gradient(circle at 58% 50%, rgba(169,79,63,0.6), rgba(169,79,63,0.3));
  mix-blend-mode: screen;
}
.venn-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34%;
  text-align: center;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F8EFDF;
  z-index: 2;
  white-space: nowrap;
}
@media (min-width: 480px) {
  .venn-label { font-size: 0.6875rem; letter-spacing: 0.12em; width: 32%; }
}
@media (min-width: 768px) {
  .venn-label { font-size: 0.8125rem; letter-spacing: 0.2em; width: 30%; }
}
.venn-label-rest { left: 0; }
.venn-label-bar { right: 0; }
.venn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.venn-logo {
  width: 3.5rem; height: 3.5rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid var(--cream);
  box-shadow:
    0 0 0 4px rgba(10,7,5,0.9),
    0 12px 40px -5px rgba(169,79,63,0.8),
    0 0 80px rgba(232,220,200,0.2);
  background: #0A0705;
}
@media (min-width: 480px) { .venn-logo { width: 4rem; height: 4rem; } }
@media (min-width: 768px) { .venn-logo { width: 4.75rem; height: 4.75rem; } }
.venn-logo img { width: 100%; height: 100%; object-fit: cover; }
.conceito-text p { font-size: 1rem; line-height: 1.8; color: rgba(239,230,214,0.8); margin-bottom: 1.25rem; }

/* Diferenciais */
.section-diferenciais { background: linear-gradient(180deg, #120A08 0%, #0A0705 100%); }
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .diff-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.diff-card {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(239,230,214,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.5s;
}
.diff-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(160deg, rgba(169,79,63,0.5), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
}
.diff-card:hover { transform: translateY(-4px); border-color: rgba(169,79,63,0.4); }
.diff-card:hover::before { opacity: 1; }
.diff-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
}
.diff-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #F8EFDF;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.diff-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(239,230,214,0.7);
}

/* Timeline */
.section-historia { background: #0A0705; }
.timeline {
  position: relative;
  max-width: 60rem;
  margin: 4rem auto 0;
  padding: 2rem 0;
}
.timeline-line {
  position: absolute;
  left: 2rem;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--brand) 8%, var(--brand) 92%, transparent 100%);
}
@media (min-width: 900px) {
  .timeline-line { left: 50%; transform: translateX(-1px); }
}
.timeline-item {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 3rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 1.25rem;
  width: 1rem; height: 1rem;
  border-radius: 9999px;
  background: var(--brand);
  border: 3px solid #0A0705;
  box-shadow: 0 0 0 4px rgba(169,79,63,0.2);
  z-index: 2;
}
.timeline-item[data-side*="highlight"]::before {
  background: var(--cream);
  box-shadow: 0 0 0 4px rgba(232,220,200,0.3), 0 0 30px rgba(232,220,200,0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232,220,200,0.3), 0 0 30px rgba(232,220,200,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(232,220,200,0.15), 0 0 40px rgba(232,220,200,0.7); }
}
@media (min-width: 900px) {
  .timeline-item { padding-left: 0; width: 50%; }
  .timeline-item[data-side*="left"] { padding-right: 4rem; text-align: right; }
  .timeline-item[data-side*="right"] { margin-left: 50%; padding-left: 4rem; }
  .timeline-item[data-side*="left"]::before,
  .timeline-item[data-side*="right"]::before {
    left: auto;
  }
  .timeline-item[data-side*="left"]::before { right: -0.5rem; }
  .timeline-item[data-side*="right"]::before { left: -0.5rem; }
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--brand-light);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.timeline-card {
  padding: 1.75rem;
  border-radius: 0.875rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(239,230,214,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s;
}
.timeline-card:hover { border-color: rgba(169,79,63,0.4); transform: translateY(-2px); }
.timeline-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #F8EFDF;
  margin-bottom: 0.375rem;
  line-height: 1.2;
}
.timeline-city {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.875rem;
  font-weight: 600;
}
.timeline-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(239,230,214,0.72);
  margin-bottom: 0;
}
.timeline-card p em { font-style: italic; color: var(--cream); }
.timeline-img {
  width: 100%;
  height: 11rem;
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  flex-shrink: 0;
}
.timeline-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.375rem 0.875rem;
  background: rgba(169,79,63,0.2);
  border: 1px solid var(--brand);
  border-radius: 9999px;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
}

/* CTA */
.section-cta { background: #0A0705; padding-bottom: 10rem; }
.cta-card {
  position: relative;
  padding: 4.5rem 2rem;
  text-align: center;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(169,79,63,0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139,63,49,0.3) 0%, transparent 50%),
    linear-gradient(135deg, rgba(169,79,63,0.15) 0%, rgba(139,63,49,0.1) 100%);
  border: 1px solid rgba(169,79,63,0.35);
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/caseratto-food-spread.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  mix-blend-mode: overlay;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card p { font-size: 1.0625rem; color: rgba(239,230,214,0.75); margin: 1rem 0 2.5rem; }

/* Footer */
.footer-premium {
  background: #07050A;
  border-top: 1px solid rgba(239,230,214,0.08);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-logo {
  margin-bottom: 0.75rem;
  display: inline-block;
}
.footer-logo img { width: 100%; height: 100%; object-fit: cover; }
.footer-logo img.footer-logo-brand {
  width: 9rem;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--cream);
  font-size: 1.125rem;
}
.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(239,230,214,0.7);
  padding: 0.375rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: #F8EFDF; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(239,230,214,0.08);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(239,230,214,0.4);
  letter-spacing: 0.05em;
}
