/* ==========================================================================
   CASTORINNI — LASANHAS ARTESANAIS
   Design System & Estética Gastronômica Dark Luxury
   Baseada no Cardápio Oficial Castorinni & Arquitetura Lumière
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* --- VARIÁVEIS DE DESIGN & TOKENS --- */
:root {
  /* Cores Principais Dark Luxury */
  --bg-noir: #08080a;
  --bg-surface: #0e0e13;
  --bg-surface-elevated: #15151c;
  --bg-surface-card: #121218;
  --bg-card-hover: #181822;
  --bg-glass: rgba(14, 14, 19, 0.85);

  /* Dourado Metálico Oficial (Extraído da Identidade Castorinni) */
  --gold-primary: #d4af37;
  --gold-light: #f5de8c;
  --gold-bright: #fced9e;
  --gold-dark: #967624;
  --gold-antique: #c5a059;
  --gold-gradient: linear-gradient(135deg, #fced9e 0%, #d4af37 45%, #967624 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(245, 222, 140, 0.12) 0%, rgba(212, 175, 55, 0.04) 100%);
  --gold-border: rgba(212, 175, 55, 0.3);
  --gold-border-light: rgba(245, 222, 140, 0.5);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.22);
  --gold-glow-strong: 0 0 35px rgba(212, 175, 55, 0.4);

  /* Textos & Tons de Respiro */
  --text-pure: #ffffff;
  --text-main: #f0ebe1;
  --text-muted: #a39b8e;
  --text-dim: #6e675c;
  
  /* Seção Champagne / Editorial Contrastante (Estilo Lumière) */
  --bg-champagne: #f8f4ec;
  --bg-champagne-card: #ffffff;
  --text-champagne-dark: #1b1713;
  --text-champagne-muted: #6b645b;
  --border-champagne: rgba(184, 150, 75, 0.25);

  /* Tipografia */
  --font-serif-title: 'Playfair Display', Georgia, serif;
  --font-serif-accent: 'Cormorant Garamond', serif;
  --font-cinzel: 'Cinzel', serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transições & Sombras */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --shadow-luxury: 0 20px 40px -15px rgba(0, 0, 0, 0.8), 0 0 1px 1px var(--gold-border);
  --shadow-floating: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
  
  /* Estrutura */
  --container-max: 1240px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-noir);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-noir);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Background Texture Sutil */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
    radial-gradient(circle at 10% 40%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* --- TIPOGRAFIA EDITORIAL DE LUXO --- */
.font-serif { font-family: var(--font-serif-title); }
.font-accent { font-family: var(--font-serif-accent); }
.font-cinzel { font-family: var(--font-cinzel); }

.text-gold {
  color: var(--gold-primary);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold-solid {
  color: var(--gold-primary);
}

.text-muted {
  color: var(--text-muted);
}

/* Divisores Ornamentais Vintage (Extraídos do Cardápio) */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem 0;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.ornament-divider::after {
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.ornament-divider-icon {
  color: var(--gold-primary);
  font-size: 0.9rem;
  display: inline-flex;
}

/* --- COMPONENTES DA LOGO OFICIAL CASTORINNI (Imagem Oficial) --- */
.castorinni-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.site-header-logo-img {
  height: 82px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.4));
  transition: var(--transition-smooth);
}

.castorinni-logo:hover .site-header-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 18px rgba(212, 175, 55, 0.7));
}


/* --- BOTÕES PREMIUM & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary-gold {
  background: var(--gold-gradient);
  color: #0d0d0f;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  border: 1px solid var(--gold-bright);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
  filter: brightness(1.08);
}

.btn-outline-gold {
  background: rgba(14, 14, 19, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
}

.btn-outline-gold:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
  color: var(--text-pure);
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1.05rem 2.4rem;
  font-size: 0.9rem;
}

/* --- TOP ANNOUNCEMENT BAR --- */
.top-announcement-bar {
  background: #071009;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.45rem 0;
  position: relative;
  z-index: 50;
}

.announcement-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  color: var(--gold-light);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.announcement-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.announcement-link:hover {
  color: var(--gold-primary);
}

/* --- HEADER NAVEGAÇÃO BILATERAL (ESTILO LUMIÈRE - VERDE OFICIAL CASTORINNI) --- */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(13, 23, 15, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  z-index: 100;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(8, 15, 10, 0.98);
  border-bottom-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
}

.header-clean-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
}

.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1;
}

/* Botão Menu Lateral (Drawer Trigger) */
.nav-drawer-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 0.45rem 1rem;
  color: var(--gold-light);
  font-size: 1.15rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.nav-drawer-toggle:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--gold-primary);
  color: var(--text-pure);
  box-shadow: var(--gold-glow);
  transform: translateY(-1px);
}

.nav-drawer-label {
  font-family: var(--font-cinzel);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-light);
}

.header-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.header-cart-btn:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--gold-primary);
  color: var(--text-pure);
  box-shadow: var(--gold-glow);
  transform: translateY(-1px);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--gold-gradient);
  color: #09090b;
  font-size: 0.65rem;
  font-weight: 700;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

@media (max-width: 580px) {
  .nav-drawer-label {
    display: none;
  }
  .nav-drawer-toggle {
    padding: 0.45rem 0.65rem;
  }
}

/* --- HERO SECTION (PRIMEIRA DOBRA EDITORIAL DE ALTO IMPACTO - LUXO CLEAN) --- */
.hero-section {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6.5rem 0 4rem 0;
  background: #08080c;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.48) contrast(1.15) saturate(1.1);
  transform: scale(1.02);
  transition: transform 10s ease-out;
}

.hero-section:hover .hero-bg-image {
  transform: scale(1.05);
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(8, 8, 12, 0.82) 0%, rgba(8, 8, 12, 0.42) 35%, rgba(8, 8, 12, 0.95) 100%),
    radial-gradient(circle at center, transparent 20%, rgba(8, 8, 12, 0.85) 90%);
}

.hero-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-cinzel);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-headline {
  font-family: var(--font-serif-title);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-pure);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-headline em {
  font-family: var(--font-serif-accent);
  font-style: italic;
  font-weight: 400;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0.15em;
}

.hero-subheadline {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: #dfd8cc;
  font-weight: 400;
  line-height: 1.65;
  margin: 0 auto 2.25rem auto;
  max-width: 640px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --- QUICK ORDER BAR (ESTILO LUMIÈRE "MAKE A RESERVATION") --- */
.quick-order-bar-container {
  position: relative;
  margin-top: -2.2rem;
  z-index: 10;
  padding: 0 1rem;
}

.quick-order-bar {
  background: linear-gradient(135deg, rgba(20, 20, 28, 0.95), rgba(12, 12, 17, 0.98));
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), var(--gold-glow);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.85rem;
  display: grid;
  grid-template-columns: auto 1fr 1fr auto auto;
  gap: 1.25rem;
  align-items: center;
}

.quick-order-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-right: 1.25rem;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.quick-order-title-icon {
  font-size: 1.6rem;
  color: var(--gold-primary);
}

.quick-order-title-text h4 {
  font-family: var(--font-cinzel);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.quick-order-title-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.quick-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.quick-field label {
  font-family: var(--font-cinzel);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
}

.quick-field select,
.quick-field input {
  background: rgba(8, 8, 12, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--text-pure);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.quick-field select:focus,
.quick-field input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.quick-field select option {
  background: #121218;
  color: #ffffff;
}

/* --- SEÇÃO 1: VALORES E ESPECIFICAÇÕES (REPRODUÇÃO OFICIAL DO CARDÁPIO) --- */
.section-valores {
  padding: 6.5rem 0 5rem 0;
  position: relative;
}

.section-header-editorial {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  font-family: var(--font-cinzel);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title-large {
  font-family: var(--font-serif-title);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-pure);
  line-height: 1.15;
}

.section-subtitle-editorial {
  font-family: var(--font-serif-accent);
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-top: 0.5rem;
}

.mobile-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-cinzel);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
  text-align: center;
}

/* Grade dos 3 Cards do Cardápio Oficial */
.cards-valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

/* Card Entalhado Oficial Castorinni */
.card-valor-official {
  background: linear-gradient(180deg, #13131a 0%, #0c0c11 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 2.2rem 1.75rem 2rem 1.75rem;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.card-valor-official:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-luxury), var(--gold-glow);
}

.card-valor-official.highlight {
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, #181824 0%, #0f0f16 100%);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), var(--gold-glow);
}

/* Header Notched / Moldura Entalhada do Cardápio */
.card-notched-header {
  position: relative;
  border-top: 1px solid var(--gold-primary);
  border-bottom: 1px solid var(--gold-primary);
  padding: 0.6rem 1rem;
  margin: 0 auto 1.5rem auto;
  width: 90%;
  background: rgba(212, 175, 55, 0.08);
}

.card-notched-header::before,
.card-notched-header::after {
  content: '◆';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.5rem;
  color: var(--gold-primary);
}

.card-notched-header::before { left: -4px; }
.card-notched-header::after { right: -4px; }

.card-size-name {
  font-family: var(--font-cinzel);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.card-volume-text {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
}

.card-serves-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Divisor Decorativo Dourado Interno */
.card-ornament-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 1.5rem auto;
  width: 60%;
}

.card-ornament-line::before,
.card-ornament-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary));
}
.card-ornament-line::after {
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}
.card-ornament-line span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-primary);
}

/* Preço Oficial Castorinni */
.card-price-wrap {
  margin-bottom: 1.75rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
}

.card-price-currency {
  font-family: var(--font-cinzel);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-primary);
}

.card-price-value {
  font-family: var(--font-serif-title);
  font-size: 2.85rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1;
}

.card-desc-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

/* --- SEÇÃO 2: CARTA GASTRONÔMICA / SABORES EM DESTAQUE (ESTILO LUMIÈRE) --- */
.section-menu-preview {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--bg-noir) 0%, #0d0d12 50%, var(--bg-noir) 100%);
  position: relative;
}

/* Abas de Categorias */
.category-tabs-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.cat-tab-btn {
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-cinzel);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(14, 14, 20, 0.6);
  transition: var(--transition-smooth);
}

.cat-tab-btn:hover,
.cat-tab-btn.active {
  background: var(--gold-gradient);
  color: #09090b;
  border-color: var(--gold-bright);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

/* Grade de Pratos */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.25rem;
}

.dish-card-culinary {
  background: var(--bg-surface-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.dish-card-culinary:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-luxury);
}

.dish-media {
  position: relative;
  height: 240px;
  overflow: hidden;
  cursor: pointer;
}

.dish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.dish-card-culinary:hover .dish-media img {
  transform: scale(1.08);
}

.dish-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 14, 20, 0.95) 100%);
}

.dish-floating-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 10, 14, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-family: var(--font-cinzel);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.dish-body {
  padding: 1.6rem 1.6rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dish-name {
  font-family: var(--font-serif-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.dish-subtitle {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 0.85rem;
}

.dish-description {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* Seletor de Tamanho Inline */
.dish-sizes-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  background: rgba(8, 8, 12, 0.6);
  padding: 0.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.size-pill-option {
  padding: 0.4rem 0.2rem;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.size-pill-option.selected {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  font-weight: 600;
}

.dish-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.dish-price-display {
  display: flex;
  flex-direction: column;
}

.dish-price-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.dish-price-num {
  font-family: var(--font-serif-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* --- SEÇÃO 3: O QUE TORNA A CASTORINNI DIFERENTE (5 PILARES OFICIAIS) --- */
.section-pilares {
  padding: 6rem 0;
  position: relative;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
}

.pilares-divider-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pilares-banner-title {
  font-family: var(--font-cinzel);
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.pilares-banner-title::before,
.pilares-banner-title::after {
  content: '';
  height: 1px;
  width: 45px;
  background: var(--gold-primary);
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.pilar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(14, 14, 20, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

.pilar-card:hover {
  background: rgba(212, 175, 55, 0.07);
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), var(--gold-glow);
}

/* Selo Circular Dourado Oficial */
.pilar-circle-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 80%);
  color: var(--gold-light);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
}

.pilar-card:hover .pilar-circle-badge {
  transform: scale(1.1);
  box-shadow: var(--gold-glow-strong);
  border-color: var(--gold-bright);
}

.pilar-circle-badge svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-light);
  fill: none;
}

.pilar-title {
  font-family: var(--font-cinzel);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.pilar-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --- SEÇÃO 4: STORYTELLING (DA NOSSA COZINHA PARA A SUA MESA) --- */
.section-storytelling {
  padding: 6rem 0;
  position: relative;
  background: #060608;
}

.story-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.story-step-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-surface-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
}

.story-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-luxury);
}

.story-step-img {
  height: 170px;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: var(--transition-smooth);
}

.story-step-card:hover .story-step-img {
  transform: scale(1.06);
  filter: brightness(1);
}

.story-step-content {
  padding: 1.25rem 1.15rem;
}

.story-step-num {
  font-family: var(--font-serif-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.story-step-title {
  font-family: var(--font-cinzel);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-pure);
  margin-bottom: 0.4rem;
}

.story-step-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --- SEÇÃO 5: SOBRE A CASTORINNI & ENTREGA ARTESANAL EM PETROLINA --- */
.section-sobre-casa {
  padding: 6rem 0;
  position: relative;
}

.sobre-casa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.sobre-casa-visual {
  position: relative;
}

.sobre-casa-img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-luxury);
}

.sobre-casa-badge-floating {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--gold-primary);
  padding: 1.25rem 1.6rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-floating), var(--gold-glow);
  text-align: center;
}

.sobre-casa-badge-floating h5 {
  font-family: var(--font-serif-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.sobre-casa-badge-floating p {
  font-family: var(--font-cinzel);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-main);
}

.sobre-casa-text h2 {
  font-family: var(--font-serif-title);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-pure);
  margin-bottom: 1.25rem;
}

.sobre-casa-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* --- SEÇÃO LOCALIZAÇÃO & MAPA INTERATIVO --- */
.section-localizacao {
  padding: 6rem 0;
  background: radial-gradient(circle at 50% 30%, #121814 0%, #080d09 60%, #050806 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: stretch;
}

.localizacao-info-card {
  background: linear-gradient(135deg, rgba(20, 28, 22, 0.85) 0%, rgba(10, 16, 12, 0.95) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.localizacao-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cinzel);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 1.2rem;
}

.localizacao-address-title {
  font-family: var(--font-serif-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
}

.localizacao-address-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 1.2rem;
}

.localizacao-details-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.loc-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.88rem;
}

.loc-icon {
  font-size: 1.2rem;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.loc-detail-item strong {
  display: block;
  font-family: var(--font-cinzel);
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.loc-detail-item span {
  color: var(--text-muted);
}

.localizacao-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.localizacao-map-frame {
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  background: #0d120e;
  min-height: 400px;
}

@media (max-width: 900px) {
  .localizacao-grid {
    grid-template-columns: 1fr;
  }
}

/* --- BANNER SELO OFICIAL (RODAPÉ INSPIRADO NO CARDÁPIO) --- */
.footer-seal-banner {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  background: linear-gradient(180deg, #0e0e14 0%, #08080b 100%);
  padding: 2.5rem 1rem;
  text-align: center;
}

.footer-seal-box {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--gold-border);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer-seal-monogram {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.footer-seal-quote {
  font-family: var(--font-cinzel);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1.4;
}

/* --- RODAPÉ OFICIAL --- */
.site-footer {
  background: #040406;
  padding: 4rem 0 2rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-col p {
  margin-top: 1rem;
  max-width: 380px;
  line-height: 1.6;
}

.footer-col h5 {
  font-family: var(--font-cinzel);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

/* --- SACOLA / CART DRAWER LATERAL --- */
.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #0d0d13;
  border-left: 1px solid var(--gold-border);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-backdrop.active .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-family: var(--font-cinzel);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.cart-drawer-close {
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.cart-drawer-close:hover {
  color: var(--gold-primary);
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.cart-item-card {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 0.85rem;
  background: #14141d;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  align-items: center;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-item-name {
  font-family: var(--font-serif-title);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-pure);
}

.cart-item-size {
  font-size: 0.72rem;
  color: var(--gold-primary);
}

.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.cart-item-price {
  font-family: var(--font-serif-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure);
}

.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background: #09090d;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.cart-subtotal-amount {
  font-family: var(--font-serif-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: #151520;
  border: 1px solid var(--gold-primary);
  box-shadow: var(--shadow-luxury), var(--gold-glow);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  color: var(--text-pure);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: slideInToast 0.3s ease;
}

@keyframes slideInToast {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- MODAL DE DETALHES DO PRATO --- */
.dish-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.dish-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.dish-modal-box {
  background: #111117;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-floating), var(--gold-glow);
}

.dish-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--gold-border);
  color: var(--text-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: var(--transition-fast);
}

.dish-modal-close:hover {
  background: var(--gold-primary);
  color: #000;
}

/* --- CARROSSEL INSTAGRAM HORIZONTAL (DESKTOP E MOBILE) --- */
.instagram-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  margin: 1rem 0;
}

.instagram-carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 0.5rem;
  width: 100%;
}

.instagram-carousel-track::-webkit-scrollbar {
  display: none;
}

.ig-carousel-card {
  flex: 0 0 290px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.ig-carousel-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), var(--gold-glow);
}

.ig-card-media {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
}

.ig-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ig-carousel-card:hover .ig-card-media img {
  transform: scale(1.08);
}

.ig-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10, 10, 15, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  font-family: var(--font-cinzel);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ig-card-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: linear-gradient(180deg, #13131a 0%, #0c0c11 100%);
  flex-grow: 1;
}

.ig-card-caption {
  font-size: 0.88rem;
  color: var(--text-pure);
  font-weight: 600;
  line-height: 1.4;
}

.ig-card-link-text {
  font-family: var(--font-cinzel);
  font-size: 0.72rem;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.ig-carousel-card:hover .ig-card-link-text {
  color: var(--gold-light);
  gap: 0.55rem;
}

/* Botões de Navegação Flutuantes */
.ig-carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(12, 12, 18, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.ig-carousel-nav-btn:hover {
  background: var(--gold-gradient);
  color: #09090b;
  border-color: var(--gold-bright);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.ig-prev-btn {
  left: -20px;
}

.ig-next-btn {
  right: -20px;
}

