/* ============================================
   BENDITA PIZZA & PASTA
   Paleta: Preto profundo + Cobre/Bronze + Off-white
   ============================================ */

:root {
  /* Cores base */
  --bg-deep: #0a0a0a;
  --bg-dark: #121110;
  --bg-elev: #1a1816;
  --bg-card: #1f1c19;

  /* Acentos */
  --copper: #c08552;
  --copper-bright: #d49b69;
  --copper-deep: #8a5a35;
  --bronze: #7a4f2e;

  /* Texto */
  --text-primary: #f5f1ea;
  --text-secondary: #c4bdb1;
  --text-muted: #8a8276;
  --text-dim: #5a544a;

  /* Linhas */
  --border: rgba(192, 133, 82, 0.18);
  --border-soft: rgba(245, 241, 234, 0.08);

  /* Tipografia premium */
  --font-serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamento */
  --container: 1280px;
  --section-pad: clamp(4rem, 8vw, 8rem);

  /* Transições */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-deep);
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'ss02';
}

/* Configurações Fraunces — premium variation axes */
h1, h2, h3, h4, .section-title, .hero-title {
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 72;
  font-feature-settings: "ss01", "ss03", "swsh", "calt";
  letter-spacing: -0.022em;
}

h1 em, h2 em, h3 em, .section-title em, .hero-title em {
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-feature-settings: "ss01", "swsh", "calt";
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
}

.section-eyebrow.light {
  color: var(--copper-bright);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--copper);
  font-weight: 400;
}

.section-title.light {
  color: #fff;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease),
              box-shadow 0.4s var(--ease),
              background 0.3s var(--ease);
  position: relative;
  white-space: nowrap;
  isolation: isolate;
}

.btn:active {
  transform: translateY(1px) !important;
  transition-duration: 0.1s !important;
}

/* ============ PRIMARY — DOURADO 3D PREMIUM ============ */
.btn-primary {
  color: #1a1206;
  background:
    /* Textura sutil de brushed gold */
    repeating-linear-gradient(
      135deg,
      rgba(255, 240, 200, 0.04) 0px,
      rgba(255, 240, 200, 0.04) 1px,
      transparent 1px,
      transparent 4px
    ),
    /* Gradient cobre 3D */
    linear-gradient(180deg,
      #e6b87a 0%,
      #d8a86b 30%,
      #c08552 65%,
      #a06a3a 100%);
  box-shadow:
    /* Drop shadow externa */
    0 8px 22px -4px rgba(192, 133, 82, 0.45),
    0 4px 8px rgba(0, 0, 0, 0.25),
    /* Highlight superior (luz vinda de cima) */
    0 1.5px 0 rgba(255, 240, 210, 0.65) inset,
    /* Sombra inferior interna */
    0 -1.5px 0 rgba(100, 60, 25, 0.35) inset,
    /* Borda lateral dourada */
    0 0 0 1px rgba(230, 184, 122, 0.55) inset;
  text-shadow: 0 1px 0 rgba(255, 240, 210, 0.4);
}

.btn-primary::before {
  /* Reflexo de luz no topo */
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 50%;
  background: linear-gradient(180deg,
    rgba(255, 245, 215, 0.35) 0%,
    rgba(255, 245, 215, 0.05) 70%,
    transparent 100%);
  border-radius: inherit 0 0 / 100% 100% 0 0;
  pointer-events: none;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 240, 200, 0.06) 0px,
      rgba(255, 240, 200, 0.06) 1px,
      transparent 1px,
      transparent 4px
    ),
    linear-gradient(180deg,
      #f0c585 0%,
      #e6b87a 30%,
      #d4945e 65%,
      #b07b4a 100%);
  box-shadow:
    0 14px 32px -6px rgba(192, 133, 82, 0.65),
    0 6px 12px rgba(0, 0, 0, 0.3),
    0 2px 0 rgba(255, 245, 215, 0.8) inset,
    0 -1.5px 0 rgba(100, 60, 25, 0.4) inset,
    0 0 0 1px rgba(255, 220, 160, 0.7) inset;
}

/* ============ GHOST — Vidro fosco com borda metálica ============ */
.btn-ghost {
  background:
    linear-gradient(180deg,
      rgba(245, 241, 234, 0.04) 0%,
      rgba(245, 241, 234, 0.01) 100%);
  color: var(--text-primary);
  box-shadow:
    /* Borda dourada externa sutil */
    0 0 0 1px rgba(192, 133, 82, 0.35) inset,
    /* Highlight superior */
    0 1px 0 rgba(245, 241, 234, 0.12) inset,
    /* Sombra externa sutil */
    0 4px 14px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg,
    rgba(245, 241, 234, 0.06) 0%,
    transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.btn-ghost:hover {
  background:
    linear-gradient(180deg,
      rgba(192, 133, 82, 0.12) 0%,
      rgba(192, 133, 82, 0.04) 100%);
  color: var(--copper-bright);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(192, 133, 82, 0.7) inset,
    0 1px 0 rgba(245, 241, 234, 0.18) inset,
    0 10px 24px rgba(0, 0, 0, 0.4),
    0 0 22px rgba(192, 133, 82, 0.2);
}

/* ============ OUTLINE — Vidro claro com borda branca ============ */
.btn-outline {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  color: #fff;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.45) inset,
    0 1.5px 0 rgba(255, 255, 255, 0.18) inset,
    0 4px 14px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.btn-outline:hover {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.06) 100%);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.7) inset,
    0 1.5px 0 rgba(255, 255, 255, 0.25) inset,
    0 12px 28px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(255, 255, 255, 0.12);
}

.btn-lg {
  padding: 1.15rem 2.4rem;
  font-size: 0.875rem;
}

.btn-xl {
  padding: 1.3rem 2.9rem;
  font-size: 0.95rem;
}

.section-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: height 0.4s var(--ease);
}

.navbar.scrolled .nav-logo img {
  height: 42px;
}

.nav-menu {
  display: flex;
  gap: 2.25rem;
  margin-left: auto;
  margin-right: 1.5rem;
}

.nav-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.3s var(--ease);
}

.nav-menu a:hover {
  color: var(--text-primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.5) 40%, rgba(10, 10, 10, 0.95) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 8rem 1.5rem 4rem;
}

/* HERO LOGO — entrada giratória premium */
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  animation: heroLogoEntrance 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             heroLogoFloat 6s ease-in-out 2.2s infinite;
}

.hero-logo img {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(192, 133, 82, 0.35))
          drop-shadow(0 0 80px rgba(192, 133, 82, 0.2));
  transform-origin: center;
}

@keyframes heroLogoEntrance {
  0% {
    opacity: 0;
    transform: scale(0.2) rotate(-720deg);
    filter: blur(8px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.no-js .hero-logo {
  animation: none;
  opacity: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper-bright);
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--copper-bright);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.hero-status.open .status-dot {
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
  animation: pulse 2s infinite;
}

.hero-status.closed .status-dot {
  background: #ef4444;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--copper) 50%, transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SECTIONS BASE
   ============================================ */
section {
  padding: var(--section-pad) 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  background: var(--bg-dark);
  position: relative;
}

.sobre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper-deep) 50%, transparent);
  opacity: 0.4;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-soft);
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.col-image {
  position: relative;
}

.col-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05);
}

.img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  padding: 1.75rem 2.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: #1a1206;
  background:
    /* Textura sutil de brushed metal */
    repeating-linear-gradient(
      135deg,
      rgba(255, 235, 195, 0.06) 0px,
      rgba(255, 235, 195, 0.06) 1px,
      transparent 1px,
      transparent 3px
    ),
    /* Gradient principal cobre 3D */
    linear-gradient(135deg,
      #e8bb7e 0%,
      #d8a86b 25%,
      #c08552 55%,
      #9d6a3e 85%,
      #b07b4a 100%);
  box-shadow:
    /* Sombra projetada externa pesada */
    0 18px 40px -8px rgba(0, 0, 0, 0.55),
    0 8px 16px rgba(0, 0, 0, 0.35),
    /* Borda interna brilhante (highlight superior) */
    0 1.5px 0 rgba(255, 240, 210, 0.7) inset,
    /* Borda interna escura (sombra inferior) */
    0 -2px 0 rgba(100, 60, 25, 0.4) inset,
    /* Borda lateral dourada */
    0 0 0 1px rgba(230, 184, 122, 0.5) inset,
    /* Glow sutil ao redor */
    0 0 30px rgba(192, 133, 82, 0.25);
  position: absolute;
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease);
}

.img-badge::before {
  /* Reflexo de luz no canto superior esquerdo */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 30%;
  height: 50%;
  background: linear-gradient(135deg,
    rgba(255, 245, 215, 0.35) 0%,
    rgba(255, 245, 215, 0.08) 50%,
    transparent 100%);
  pointer-events: none;
  border-radius: inherit;
}

.img-badge::after {
  /* Linha decorativa estilo selo */
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 240, 210, 0.25);
  pointer-events: none;
  border-radius: inherit;
}

.img-badge:hover {
  transform: rotate(0deg) scale(1.03);
}

.img-badge small {
  font-size: 0.9rem;
  line-height: 1.35;
  display: block;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow:
    0 1px 0 rgba(255, 240, 210, 0.4),
    0 -1px 0 rgba(100, 60, 25, 0.2);
  position: relative;
  z-index: 1;
}

/* ============================================
   PILARES (Diferenciais redesenhados — editorial)
   ============================================ */
.pilares {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: var(--section-pad) 0;
  position: relative;
}

.pilares-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 5rem;
}

.pilares-intro {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 1.5rem;
}

.pilares-list {
  display: flex;
  flex-direction: column;
}

.pilar {
  display: grid;
  grid-template-columns: 180px 1fr 140px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-soft);
  position: relative;
  transition: background 0.5s var(--ease), padding-left 0.5s var(--ease);
}

.pilar:last-child {
  border-bottom: 1px solid var(--border-soft);
}

.pilar:hover {
  background: linear-gradient(90deg, rgba(192, 133, 82, 0.04) 0%, transparent 50%);
  padding-left: 1.5rem;
}

.pilar-number {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(4rem, 7vw, 6.5rem);
  line-height: 0.85;
  color: var(--copper);
  font-variation-settings: "SOFT" 80, "WONK" 1, "opsz" 144;
  font-feature-settings: "ss01", "ss03";
  letter-spacing: -0.04em;
}

.pilar-content h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 60, "WONK" 0, "opsz" 72;
}

.pilar-content p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 580px;
}

.pilar-meta {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--copper);
  text-align: right;
  letter-spacing: 0.02em;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-feature-settings: "swsh", "ss01";
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

/* ============================================
   GALERIA
   ============================================ */
.galeria {
  background: var(--bg-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
}

.gal-large {
  grid-row: span 2;
  grid-column: span 2;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.4s var(--ease);
  filter: brightness(0.85);
}

.gal-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.7));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.gal-item:hover::after {
  opacity: 1;
}

/* ============================================
   CARDÁPIO CTA
   ============================================ */
.cardapio-cta {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.7) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 1.5rem auto 3rem;
  line-height: 1.7;
  max-width: 600px;
}

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

/* ============================================
   VISITE
   ============================================ */
.visite {
  background: var(--bg-dark);
}

.info-block {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-row {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-soft);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row svg {
  width: 28px;
  height: 28px;
  color: var(--copper);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-row strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.info-row p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-row p a:hover {
  color: var(--copper-bright);
}

.closed-days {
  font-size: 0.85rem;
  color: var(--text-muted) !important;
  font-style: italic;
  margin-top: 0.25rem;
}

.col-map {
  height: 500px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}

.col-map iframe {
  display: block;
  flex: 1;
  filter: grayscale(0.4) brightness(0.85);
  transition: filter 0.4s var(--ease);
}

.col-map:hover iframe {
  filter: grayscale(0) brightness(1);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: var(--copper);
  color: #0a0a0a;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}

.map-link:hover {
  background: var(--copper-bright);
}

/* ============================================
   INSTAGRAM
   ============================================ */
.instagram-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-soft);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-top: 4rem;
}

.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s var(--ease);
  filter: brightness(0.8);
}

.ig-tile:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050505;
  padding: 5rem 0 0;
  border-top: 1px solid var(--border-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--copper);
  letter-spacing: 0.02em;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.footer-col a:hover {
  color: var(--copper-bright);
}

.footer-logo {
  width: 100px;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.footer-hours {
  margin-top: 0.75rem;
  font-style: italic;
  color: var(--copper) !important;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 1.75rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom small {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================
   FLOATING ACTIONS STACK
   Peça Agora (cardápio) = PRINCIPAL (grande, dourado)
   WhatsApp = SECUNDÁRIO (menor, verde, com label)
   ============================================ */
.float-stack {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 90;
  align-items: flex-end;
  /* Inicialmente escondido — aparece ao rolar */
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}

.float-stack.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Sem JS: sempre visível como fallback */
.no-js .float-stack {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ===== PEÇA AGORA — Botão principal, ação dominante ===== */
/* CSS Houdini property pra anel dourado rotacional */
@property --cta-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.float-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.5rem 0.95rem 1.1rem;
  background: linear-gradient(135deg, #e6b87a 0%, #c08552 50%, #8e5a30 100%);
  color: #1a1206;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.35s var(--ease),
              box-shadow 0.4s var(--ease);
  position: relative;
  text-decoration: none;
  box-shadow:
    0 12px 36px rgba(192, 133, 82, 0.55),
    0 0 0 1.5px rgba(230, 184, 122, 0.7) inset,
    0 2.5px 0 rgba(255, 235, 195, 0.5) inset,
    0 -2px 0 rgba(110, 65, 25, 0.35) inset;
  animation: ctaPulse 3s ease-in-out infinite;
  max-width: 260px;
  isolation: isolate;
}

/* Anel dourado correndo em volta — efeito de luz */
.float-cta::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  padding: 3px;
  background: conic-gradient(
    from var(--cta-angle),
    transparent 0%,
    rgba(255, 235, 180, 0) 30%,
    rgba(255, 230, 165, 1) 45%,
    rgba(255, 245, 215, 1) 50%,
    rgba(255, 230, 165, 1) 55%,
    rgba(255, 235, 180, 0) 70%,
    transparent 100%
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  animation: ctaRotateAngle 3s linear infinite;
  z-index: -1;
  filter: blur(1px) drop-shadow(0 0 8px rgba(255, 220, 150, 0.8));
  pointer-events: none;
}

@keyframes ctaRotateAngle {
  to { --cta-angle: 360deg; }
}

/* Fallback pra browsers sem suporte a @property: usa background-position trick */
@supports not (background: conic-gradient(from 1deg, red, blue)) {
  .float-cta::after { display: none; }
}

/* Shine interno removido — halo externo conic-gradient já chama atenção */

.float-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 18px 44px rgba(192, 133, 82, 0.7),
    0 0 0 1.5px rgba(255, 220, 160, 0.9) inset,
    0 2.5px 0 rgba(255, 245, 210, 0.6) inset;
}

.float-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 18, 6, 0.18);
  flex-shrink: 0;
  color: #1a1206;
}

.float-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  line-height: 1.1;
}

.float-cta-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #1a1206;
}

.float-cta-sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26, 18, 6, 0.7);
}

.float-cta-sub svg {
  stroke: currentColor;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow:
      0 12px 36px rgba(192, 133, 82, 0.55),
      0 0 0 0 rgba(230, 184, 122, 0.5),
      0 0 0 1.5px rgba(230, 184, 122, 0.7) inset,
      0 2.5px 0 rgba(255, 235, 195, 0.5) inset;
  }
  50% {
    box-shadow:
      0 14px 40px rgba(192, 133, 82, 0.65),
      0 0 0 14px rgba(230, 184, 122, 0),
      0 0 0 1.5px rgba(230, 184, 122, 0.7) inset,
      0 2.5px 0 rgba(255, 235, 195, 0.5) inset;
  }
}

@keyframes shine {
  0%, 70% { transform: translateX(-200%); }
  85% { transform: translateX(200%); }
  100% { transform: translateX(200%); }
}

/* ===== WHATSAPP — Botão secundário, suporte ===== */
.float-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  background: #25d366;
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.float-wa:hover {
  transform: translateY(-2px);
  background: #20c25d;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
}

.float-wa-label {
  letter-spacing: 0.06em;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  font-weight: 200;
}

/* ============================================
   PULL QUOTE EDITORIAL (substitui marquees)
   ============================================ */
.pull-quote {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
  position: relative;
}

.pull-quote::before,
.pull-quote::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--copper);
  opacity: 0.4;
}

.pull-quote::before {
  top: 0;
}

.pull-quote::after {
  bottom: 0;
}

.quote-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.quote-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.7;
  color: var(--copper);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}

.quote-text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 950px;
  margin: 0 auto;
  font-variation-settings: "SOFT" 80, "WONK" 1, "opsz" 144;
  font-feature-settings: "swsh", "ss01", "calt";
}

.quote-text em {
  color: var(--copper-bright);
  font-style: italic;
  font-weight: 400;
}

.quote-attribution {
  margin-top: 3rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   MARQUEE (texto rolando) — DESATIVADO mas mantido para compatibilidade
   ============================================ */
.marquee {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  padding: 1.5rem 0;
  position: relative;
}

.marquee--alt {
  background: var(--copper);
  border-color: var(--copper-deep);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
  align-items: center;
}

.marquee-track--reverse {
  animation-direction: reverse;
  animation-duration: 30s;
}

.marquee-track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-feature-settings: "swsh", "ss01";
}

.marquee--alt .marquee-track span {
  color: #0a0a0a;
}

.marquee-dot {
  font-size: 0.6em !important;
  color: var(--copper) !important;
  font-style: normal !important;
  vertical-align: middle;
}

.marquee--alt .marquee-dot {
  color: #0a0a0a !important;
  opacity: 0.5;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ============================================
   MASK REVEAL (cortina nas imagens)
   ============================================ */
.mask-reveal {
  position: relative;
  overflow: hidden;
}

.mask-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--copper);
  transform-origin: bottom;
  transform: scaleY(1);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 2;
  pointer-events: none;
}

.mask-reveal.revealed::after {
  transform-origin: top;
  transform: scaleY(0);
}

.mask-reveal img {
  transform: scale(1.15);
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mask-reveal.revealed img {
  transform: scale(1);
}

/* ============================================
   SPLIT TEXT (palavras em wave reveal)
   ============================================ */
.split-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.15em;
}

.split-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.6s var(--ease-out);
}

.split-word.in {
  transform: translateY(0);
  opacity: 1;
}

/* No-js: textos sempre visíveis */
.no-js .split-word {
  transform: none !important;
  opacity: 1 !important;
}

.no-js .mask-reveal::after {
  display: none;
}

.no-js .mask-reveal img {
  transform: none !important;
}

/* Counter — tabular nums para evitar layout shift */
.stat strong {
  font-variant-numeric: tabular-nums;
}

/* ============================================
   ANIMAÇÕES ON-SCROLL
   ============================================ */
/* Fallback: se JS não carregar (classe .no-js), tudo fica visível */
.no-js .fade-in {
  opacity: 1 !important;
  transform: none !important;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Acessibilidade: respeita preferência de reduzir movimento */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-bg {
    animation: none !important;
  }
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pilar {
    grid-template-columns: 120px 1fr 100px;
    gap: 2rem;
    padding: 3rem 0;
  }
  .pilar-number {
    font-size: 4rem;
  }
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: var(--bg-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    border-left: 1px solid var(--border);
    margin: 0;
    padding: 2rem;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .col-image {
    order: -1;
  }

  .img-badge {
    right: 1rem;
    bottom: -1rem;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat strong {
    font-size: 2rem;
  }

  .pilar {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "number meta"
      "content content";
    gap: 1rem 1.5rem;
    padding: 2.5rem 0;
  }
  .pilar-number {
    grid-area: number;
    font-size: 3.5rem;
  }
  .pilar-content {
    grid-area: content;
  }
  .pilar-content h3 {
    font-size: 1.5rem;
  }
  .pilar-content p {
    font-size: 1rem;
  }
  .pilar-meta {
    grid-area: meta;
    text-align: right;
    border-top: none;
    align-self: center;
    padding-top: 0;
    font-size: 0.95rem;
  }
  .pilar:hover {
    padding-left: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gal-large {
    grid-row: span 2;
    grid-column: span 2;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .col-map {
    height: 350px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .float-stack {
    bottom: 1rem;
    right: 1rem;
    gap: 0.9rem;
  }
  .float-cta {
    padding: 0.8rem 1.25rem 0.8rem 0.85rem;
    gap: 0.7rem;
  }
  .float-cta-icon {
    width: 38px;
    height: 38px;
  }
  .float-cta-icon svg {
    width: 22px;
    height: 22px;
  }
  .float-cta-title {
    font-size: 0.95rem;
  }
  .float-cta-sub {
    font-size: 0.62rem;
  }
  .float-wa {
    padding: 0.55rem 0.9rem 0.55rem 0.7rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .gal-large {
    grid-column: span 1;
  }
}
