/* ============================================================
   BRASÍLIA NOIR — Design System & Layout
   Inspirado na arquitetura de Oscar Niemeyer e Lucio Costa
   ============================================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

a, button, [role="button"], input[type="submit"], input[type="button"], label[for] {
  touch-action: manipulation;
}

:root {
  /* Paleta Brasília Noir */
  --bg: #0B0B0B;
  --bg-subtle: #111111;
  --surface: #161616;
  --muted: #333333;
  --text: #F5F5F0;
  --text-secondary: #e8e8e8;
  --accent-gold: #C9A84C;
  --accent-cerrado: #D4622B;
  --glass-bg: rgba(22, 22, 22, 0.55);
  --glass-border: rgba(201, 168, 76, 0.12);

  /* Tipografia */
  --font-display: 'Montserrat', sans-serif;
  --font-serif: 'Lora', serif;
  --font-body: 'Inter', sans-serif;

  /* Espaçamento */
  --gap: clamp(12px, 2vw, 24px);
  --radius: 6px;
  --section-pad: clamp(64px, 8vw, 120px);

  /* Transições */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.5s;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
}

/* Textura de concreto aparente */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Botões ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}

.btn--gold {
  background: var(--accent-gold);
  color: #0B0B0B;
}

.btn--gold:hover {
  background: #E0BC60;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(245, 245, 240, 0.2);
}

.btn--ghost:hover {
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.btn--outline:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 12px;
}

/* ── Padrões de seção ──────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) clamp(20px, 5vw, 80px);
}

.section__inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: block;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 32px;
}

.section__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-gold);
}

/* ── Animações de entrada ──────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.reveal-up {
  transition-delay: var(--reveal-delay, 0s);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(20px, 4vw, 60px);
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: background 0.4s;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  /* Aumentado para caber a logo maior */
  gap: 32px;
}

.header__logo {
  display: flex;
  align-items: center;
  /* Centraliza a logo verticalmente agora que a faixa é maior */
  flex-shrink: 0;
  height: 100%;
}

.header__logo-img {
  height: 95px;
  /* Tamanho muito maior para sobresair do header */
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 12px 20px rgba(0, 0, 0, 0.85));
  /* Sombra forte pra separar do fundo */
  transition: filter 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.header__logo:hover .header__logo-img {
  transform: scale(1.06) rotate(-2deg);
  filter: brightness(1.2) drop-shadow(0 16px 28px rgba(201, 168, 76, 0.6));
}

.logo-text {
  color: var(--text);
  font-family: var(--font-serif);
}

.logo-accent {
  color: var(--accent-gold);
  font-weight: 600;
}

/* Horários Header */
.header__hours {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(201, 168, 76, 0.3);
  padding-left: clamp(12px, 2vw, 20px);
}

.hours__title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 2px;
}

.hours__time {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hours__ifood {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  margin-left: 6px;
  font-weight: 400;
}

@media (max-width: 900px) {
  .header__hours {
    display: none;
  }
}

/* Nav */
.header__nav {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 15px;
  /* Texto maior (era 12px) */
  font-weight: 600;
  /* Mais proeminente */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.nav__link:hover {
  color: var(--text);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link--instagram {
  display: flex !important;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 18px;
  border-radius: 24px;
  color: var(--accent-gold);
  font-weight: 700;
  transition: all 0.3s ease;
}

.nav__link--instagram::after {
  display: none !important;
}

.nav__link--instagram:hover {
  background: var(--accent-gold);
  color: #111;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__location-btn {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--text-secondary);
  height: 38px;
  padding: 0 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: all 0.35s var(--ease-out);
}

.header__location-btn:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--accent-gold);
}

/* Menu Layout */
.header__menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.header__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: transform 0.3s;
}

@media (max-width: 900px) {
  .header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(11, 11, 11, 0.98);
  }

  .header__inner {
    height: 80px;
    gap: 16px;
  }

  .header__logo-img {
    height: 70px;
  }

  .header__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(85vw, 400px);
    background: rgba(11, 11, 11, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 40px 40px;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 1000;
    border-left: 1px solid rgba(201, 168, 76, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .header__menu.active {
    transform: translateX(0);
  }

  .header__nav {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }

  .header__actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .nav__link {
    font-size: 20px;
  }

  .header__location-btn {
    height: 48px;
    font-size: 14px;
    justify-content: center;
  }
}

/* ============================================================
   DRAWER (Unidades)
   ============================================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(520px, 95vw);
  background: var(--bg-subtle);
  border-left: 1px solid rgba(201, 168, 76, 0.08);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.drawer.active {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  background: var(--bg-subtle);
  z-index: 1;
}

.drawer__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
}

.drawer__close {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s;
}

.drawer__close:hover {
  color: var(--text);
}

.drawer__map {
  padding: 16px 24px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plano-piloto-svg {
  width: 100%;
  height: auto;
}

.map-point {
  fill: var(--accent-gold);
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.6));
}

.map-label {
  fill: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.05em;
}

@keyframes pulse-point {

  0%,
  100% {
    r: 5;
    opacity: 1;
  }

  50% {
    r: 8;
    opacity: 0.6;
  }
}

.map-point--pulse {
  animation: pulse-point 2.5s ease-in-out infinite;
}

/* Lista de cards de unidades no drawer */
.drawer__list--cards {
  list-style: none;
  padding: 16px 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer__unit-card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.08);
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.drawer__unit-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

/* Mapa dentro do card do drawer */
.drawer__unit-map {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.drawer__unit-map::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(15, 12, 8, 0.3));
  pointer-events: none;
}

.drawer__unit-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(0.9);
}

/* Corpo do card */
.drawer__unit-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer__unit-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.drawer__unit-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 3px;
}

.drawer__unit-address {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.drawer__unit-rating {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.drawer__unit-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.drawer__info-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-secondary);
}

.drawer__info-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  opacity: 0.7;
}

.drawer__unit-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

/* Botoes reutilizados do site */
.drawer__unit-actions .btn-map {
  flex: 1;
  justify-content: center;
  font-size: 11px;
  padding: 7px 10px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  max-width: 1720px;
  /* Aumentado consideravelmente para chegar na margem solicitada pelo usuário (quase tela toda) */
  aspect-ratio: 16 / 9;
  max-height: 85vh;
  /* Ampliado para caber o tamanho gigante do fullhd sem forçar muito scroll na entrada */
  margin: 110px auto 40px;
  /* Garante espaço limpo para o menu com espaçamento */
  overflow: hidden;
  background: #0b0b0b;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .hero {
    max-width: 100%;
    margin-top: 100px;
    margin-bottom: 24px;
    border-radius: 0;
    aspect-ratio: 4 / 5;
    min-height: 480px;
    max-height: 80vh;
  }
}

@media (max-width: 480px) {
  .hero {
    aspect-ratio: 3 / 4;
    min-height: 420px;
  }
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  will-change: opacity;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slide-bg {
  position: absolute;
  inset: -10%;
  /* Margem de segurança pro blur não vazar bordas brancas */
  width: 120%;
  height: 120%;
  object-fit: cover;
  filter: blur(25px) brightness(0.25) saturate(1.2);
  z-index: 0;
  pointer-events: none;
}

.hero__slide-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Garante que 100% da propaganda seja lida */
  object-position: center;
  z-index: 1;
}

.hero__slide--active {
  opacity: 1;
  z-index: 10;
}

/* Indicadores / Bolinhas do Hero */
.hero__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.hero__dot {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__dot::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  transition: all 0.3s ease;
}

.hero__dot:hover::before {
  border-color: rgba(255, 255, 255, 0.8);
}

.hero__dot--active::before {
  background: var(--accent-gold, #c9a84c);
  border-color: var(--accent-gold, #c9a84c);
  transform: scale(1.2);
}



.intro {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  text-align: center;
  overflow: hidden;
}

/* Fundo Animado da Intro */
.intro__bg-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0.65;
  /* Deixa as imagens muito mais visíveis */
}

.intro__bg-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: scrollIntroBg 70s linear infinite;
}

.intro__bg-track img {
  height: 100%;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(10%) blur(1px);
  /* Apenas desfocou levemente para manter foco textual */
}

.intro__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(11, 11, 11, 0.45) 0%, rgba(11, 11, 11, 0.70) 80%);
}

@keyframes scrollIntroBg {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.hero__monument {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 80vw);
  height: auto;
  z-index: 2;
  opacity: 0.6;
  pointer-events: none;
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.15));
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  text-align: center;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}

.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-gold);
}

.hero__subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }

  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.6);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* ============================================================
   HISTÓRIA
   ============================================================ */
.section--historia {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    var(--bg-subtle);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.historia__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.historia__media {
  position: relative;
}

.historia__img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.1),
    0 40px 80px rgba(0, 0, 0, 0.5);
}

.historia__img-wrap img {
  transition: transform 0.8s var(--ease-out);
}

.historia__img-wrap:hover img {
  transform: scale(1.04);
}

/* ── Carrossel de Unidades (História) ─────────────────────── */
.historia__carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.1),
    0 40px 80px rgba(0, 0, 0, 0.5);
}

.carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  pointer-events: none;
}

.carousel__slide--active {
  opacity: 1;
  pointer-events: auto;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Label com nome da unidade */
.carousel__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.85) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  text-align: center;
}

/* Dots de navegação */
.carousel__dots {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel__dot {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.carousel__dot::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.5);
  background: transparent;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.carousel__dot--active::before {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: scale(1.3);
}

.carousel__dot:hover:not(.carousel__dot--active)::before {
  background: rgba(201, 168, 76, 0.35);
  border-color: rgba(201, 168, 76, 0.8);
}

.historia__img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
}

.badge__year {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--accent-gold);
  line-height: 1;
}

.badge__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 4px;
}

.historia__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.historia__metrics {
  display: flex;
  gap: 0;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.metric {
  flex: 1;
  text-align: center;
}

.metric__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.metric__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.metric__divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ============================================================
   CARDÁPIO / PRATOS
   ============================================================ */
.section--cardapio {
  background: var(--bg);
}

.cardapio__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.cardapio__header .section__title {
  margin-bottom: 0;
}

.cardapio__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: none;
  color: var(--accent-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}

.slider-btn:hover {
  background: var(--accent-gold);
  color: var(--bg);
  border-color: var(--accent-gold);
}

/* ============================================================
   NOSSAS UNIDADES
   ============================================================ */
.section--unidades {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 55%),
    var(--bg-subtle);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.unidades__header {
  text-align: center;
  margin-bottom: 56px;
}

.unidades__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: -16px auto 0;
  line-height: 1.7;
}

/* Grid 2×2 */
.unidades__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Card ──────────────────────────────────────────────────────── */
.unidade-card {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.unidade-card:hover {
  border-color: rgba(201, 168, 76, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Mapa (iframe) */
.unidade-card__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: #111;
}

.unidade-card__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.4) brightness(0.85) contrast(1.1);
  transition: filter 0.5s var(--ease-out);
}

.unidade-card:hover .unidade-card__map iframe {
  filter: saturate(0.65) brightness(0.95) contrast(1.05);
}

/* Overlay sutil sobre o mapa */
.unidade-card__map::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--surface), transparent);
  pointer-events: none;
}

/* Body do card */
.unidade-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Header (nome + rating) */
.unidade-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.unidade-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 4px;
}

.unidade-card__address {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.unidade-card__rating {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--accent-gold);
  white-space: nowrap;
  padding: 4px 10px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  flex-shrink: 0;
}

/* Infos (telefone + horários) */
.unidade-card__info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.unidade-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.unidade-info-item svg {
  flex-shrink: 0;
  color: rgba(201, 168, 76, 0.5);
}

/* Botões de navegação */
.unidade-card__actions {
  display: flex;
  gap: 10px;
}

.btn-map {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 14px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  border: 1px solid transparent;
}

/* iFood — vermelho iFood */
.btn-map--ifood {
  background: rgba(234, 29, 44, 0.08);
  /* #EA1D2C com opacidade */
  color: #EA1D2C;
  border-color: rgba(234, 29, 44, 0.18);
}

.btn-map--ifood:hover {
  background: rgba(234, 29, 44, 0.16);
  border-color: rgba(234, 29, 44, 0.4);
  color: #FF2E3E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 29, 44, 0.12);
}

/* Google Maps — azul Google */
.btn-map--gmaps {
  background: rgba(66, 133, 244, 0.1);
  color: #6BA3F7;
  border-color: rgba(66, 133, 244, 0.2);
}

.btn-map--gmaps:hover {
  background: rgba(66, 133, 244, 0.2);
  border-color: rgba(66, 133, 244, 0.5);
  color: #90BCFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.15);
}

/* Waze — turquesa Waze */
.btn-map--waze {
  background: rgba(0, 204, 187, 0.08);
  color: #00CCBB;
  border-color: rgba(0, 204, 187, 0.18);
}

.btn-map--waze:hover {
  background: rgba(0, 204, 187, 0.16);
  border-color: rgba(0, 204, 187, 0.4);
  color: #33D9CB;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 204, 187, 0.12);
}

/* Responsivo */
@media (max-width: 900px) {
  .unidades__grid {
    grid-template-columns: 1fr;
  }

  .unidade-card__map {
    aspect-ratio: 16 / 8;
  }
}

/* Slider */
.pratos-slider {
  overflow: hidden;
  padding-bottom: 16px;
}

.pratos-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollCards 32s linear infinite;
}

.pratos-slider:hover .pratos-track,
.pratos-track:hover {
  animation-play-state: paused !important;
}

@keyframes scrollCards {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Card de prato */
.prato-card {
  flex: 0 0 clamp(240px, 28vw, 320px);
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transform-origin: center bottom;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.prato-card:hover {
  transform: translateY(-5px) scale(1.03) !important;
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  z-index: 10;
  position: relative;
}

.prato-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.prato-card__img img {
  transition: transform 0.7s var(--ease-out);
  filter: brightness(0.85) saturate(0.8);
}

.prato-card:hover .prato-card__img img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1);
}

.prato-card__price {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  padding: 5px 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
}

.prato-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prato-card__monument {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.7;
}

.prato-card__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.prato-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
}

.prato-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-top: 8px;
  transition: gap 0.3s;
}

.prato-card__link:hover {
  gap: 10px;
}

.cardapio__cta {
  margin-top: 48px;
  text-align: center;
}

/* ============================================================
   BRINQUEDOTECA
   ============================================================ */
.section--brinquedoteca {
  background: var(--bg);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}

.brinquedoteca__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================================
   AVALIACOES
   ============================================================ */
.section--avaliacoes {
  background:
    radial-gradient(ellipse at center, rgba(201, 168, 76, 0.04) 0%, transparent 65%),
    var(--bg-subtle);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.avaliacoes__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.avaliacoes__header>div:first-child {
  text-align: left;
}

.avaliacoes__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.avaliacoes__nav {
  display: flex;
  gap: 12px;
}

/* Slider */
.avaliacoes-slider {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  cursor: grab;
  scrollbar-width: none;
  /* Firefox */
}

.avaliacoes-slider::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.avaliacoes-slider:active {
  cursor: grabbing;
}

/* Card */
.avaliacao-card {
  flex: 0 0 340px;
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius);
  padding: 28px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.avaliacao-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.avaliacao-card__stars {
  font-size: 16px;
  color: var(--accent-gold);
  letter-spacing: 2px;
}

.avaliacao-card__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
  margin: 0;
}

/* Footer do card */
.avaliacao-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.avaliacao-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avaliacao-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.avaliacao-card__name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.avaliacao-card__gmaps {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(66, 133, 244, 0.8);
  padding: 5px 10px;
  border: 1px solid rgba(66, 133, 244, 0.18);
  border-radius: 20px;
  white-space: nowrap;
  transition: all 0.25s var(--ease-out);
  flex-shrink: 0;
}

.avaliacao-card__gmaps:hover {
  background: rgba(66, 133, 244, 0.1);
  color: #6BA3F7;
  border-color: rgba(66, 133, 244, 0.4);
}

/* Ver todas */
.avaliacoes__ver-todas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.07);
}

.avaliacoes__ver-todas>span {
  font-size: 12px;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.btn-ver-google {
  padding: 7px 16px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all 0.25s var(--ease-out);
}

.btn-ver-google:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.06);
}

@media (max-width: 768px) {
  .avaliacao-card {
    flex: 0 0 290px;
  }
}

/* ============================================================
   RESERVAS
   ============================================================ */
.section--reservas {
  background: var(--bg);
}

.reservas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: stretch;
}

.reservas__media {
  height: 100%;
}

.reservas__media .historia__img-wrap {
  height: 100%;
  padding-bottom: 0;
  aspect-ratio: unset;
  display: flex;
}

.reservas__media .historia__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservas__subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: -16px;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Formulário */
.reservas__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.3s;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.45);
}

.form-input option {
  background: var(--surface);
}

/* Horários */
.form-time-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.time-option {
  cursor: pointer;
}

.time-option input {
  display: none;
}

.time-option span {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: var(--surface);
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.25s;
}

.time-option:hover span,
.time-option input:checked+span {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.08);
}

/* Card de informações */
.reservas__info-card {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
}

.reservas__svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto 40px;
  opacity: 0.8;
}

/* Interação no Mapa SVG */
.map-point {
  cursor: pointer;
  transition: opacity 0.3s;
}

@keyframes pulse-glow {

  0%,
  100% {
    filter: drop-shadow(0 0 2px var(--accent-gold)) drop-shadow(0 0 4px var(--accent-gold));
  }

  50% {
    filter: drop-shadow(0 0 8px var(--accent-gold)) drop-shadow(0 0 16px var(--accent-gold));
  }
}

.point-dot {
  fill: #ffffff;
  animation: pulse-glow 2.5s ease-in-out infinite;
  transition: all 0.3s var(--ease-out);
}

@keyframes pulse-scale {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
    /* Aumenta sutilmente a letra */
  }
}

.point-text {
  fill: #ffffff;
  transform-origin: center;
  transform-box: fill-box;
  animation: pulse-scale 2.5s ease-in-out infinite;
  transition: all 0.3s var(--ease-out);
}

.map-point:hover .point-hover-area {
  fill: rgba(201, 168, 76, 0.15);
}

.map-point:hover .point-text {
  filter: brightness(1.3) drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

.map-point:hover .point-dot {
  transform-origin: center;
  transform: scale(1.1);
  filter: brightness(1.3) drop-shadow(0 0 10px var(--accent-gold));
}

.map-point.active .point-dot {
  fill: var(--accent-gold);
  filter: drop-shadow(0 0 12px var(--accent-gold));
}

/* Tooltip do Mapa */
.reservas__info-card {
  position: relative;
}

.map-tooltip {
  position: absolute;
  background: var(--bg);
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  border-radius: var(--radius);
  padding: 16px;
  width: 220px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-out);
  pointer-events: none;
}

.map-tooltip.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.tooltip__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.tooltip__title {
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-size: 15px;
  margin: 0;
}

.tooltip__close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 8px 12px;
  min-width: 44px;
  min-height: 44px;
}

.tooltip__close:hover {
  color: var(--text);
}

.tooltip__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tooltip__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 6px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  transition: all 0.2s;
}

.tooltip__link:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--accent-gold);
}

.tooltip__reserva {
  font-size: 11px;
  color: var(--text-secondary);
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  text-align: center;
}

.tooltip__reserva strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.reservas__info-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 8px;
}

.reservas__address {
  font-style: normal;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.reservas__horarios {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.horario-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
}

.horario-row span:last-child {
  color: var(--text);
}

.reservas__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--accent-gold);
}

.contact-link svg {
  flex-shrink: 0;
  color: var(--accent-gold);
}

/* Clube */
.reservas__club {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  padding: 24px;
}

.club__eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.club__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  background: var(--bg-subtle);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer__top {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 80px);
}

.footer__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(32px, 5vw, 64px);
}




.footer__logo {
  display: block;
  margin-bottom: 16px;
  transition: opacity 0.3s;
}

.footer__logo:hover {
  opacity: 0.75;
}

.footer__logo-img {
  height: 78px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 0 12px rgba(201, 168, 76, 0.25));
  transition: filter 0.3s;
}

.footer__logo:hover .footer__logo-img {
  filter: brightness(1.2) drop-shadow(0 0 20px rgba(201, 168, 76, 0.5));
}

.footer__tagline {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 260px;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 14px;
}

.footer__social-link {
  color: var(--muted);
  transition: color 0.3s;
}

.footer__social-link:hover {
  color: var(--accent-gold);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.footer__links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links-list a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer__links-list a:hover {
  color: var(--accent-gold);
}

.footer__unidades {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__unidades span {
  font-size: 12px;
  color: rgba(153, 153, 153, 0.6);
}

.footer__col-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 20px clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: none;
}

.footer__cnpj,

/* Footer - Apps em construção */
.footer__apps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.footer__app-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  opacity: 0.7;
  cursor: default;
}

.footer__app-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(201, 168, 76, 0.6);
}

.footer__app-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer__app-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

.footer__app-badge {
  font-size: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.6;
}

.footer__app-hint {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.5;
  font-style: italic;
}

.footer__copy {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.footer__bottom-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer__link {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--text-secondary);
}

.footer__sep {
  color: var(--muted);
  font-size: 11px;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1080px) {

  .historia__grid,
  .reservas__grid {
    grid-template-columns: 1fr;
  }

  .historia__media {
    max-width: 480px;
  }

  .historia__img-wrap {
    aspect-ratio: 16 / 9;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .hero__title {
    font-size: clamp(36px, 9vw, 60px);
  }

  .cardapio__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: clamp(48px, 12vw, 64px) 16px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .historia__metrics {
    flex-direction: column;
    gap: 24px;
  }

  .metric__divider {
    width: 60px;
    height: 1px;
  }
}

@media (max-width: 360px) {
  .section {
    padding: 48px 14px;
  }

  .hero__title {
    font-size: clamp(28px, 8.5vw, 48px);
  }
}

/* Track do Slider Infinito */
.pratos-slider {
  overflow: hidden !important;
  cursor: default !important;
}

.pratos-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-marquee 45s linear infinite;
  will-change: transform;
}

.pratos-slider:hover .pratos-track {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  /* Com 4 conjuntos iguais de cards, -25% translada exatamente 1 conjunto para a esquerda. Reseta sem saltos. */
  100% {
    transform: translateX(-25%);
  }
}

/* =========================================================================
   FAB (Floating Action Button) do iFood
   ========================================================================= */
.ifood-fab {
  position: fixed;
  bottom: 240px; /* Acima do whatsapp */
  left: calc(clamp(20px, 4vw, 60px) + 75px);
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* Menu Cortina */
.ifood-fab__menu {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 0;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(234, 29, 44, 0.3);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(234, 29, 44, 0.15);

  /* Animação inicial */
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom left;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ifood-fab[aria-expanded="true"] .ifood-fab__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ifood-fab__title {
  font-family: var(--font-display);
  font-size: 14px;
  color: #FFF;
  margin-bottom: 8px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.ifood-fab__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: rgba(234, 29, 44, 0.1);
  color: #FFF;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.ifood-fab__link:hover {
  background: #EA1D2C;
  color: #FFF;
  transform: translateX(-4px);
  box-shadow: 0 4px 15px rgba(234, 29, 44, 0.3);
}

/* Botão Flutuante */
.ifood-fab__btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #EA1D2C;
  color: #FFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(234, 29, 44, 0.4);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}

.ifood-fab__btn:hover {
  transform: scale(1.08);
  background: #FF2E3E;
}

.ifood-fab__icon,
.ifood-fab__close {
  width: 32px;
  height: 32px;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ifood-fab__close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.ifood-fab[aria-expanded="true"] .ifood-fab__icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.ifood-fab[aria-expanded="true"] .ifood-fab__close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* Pulsação do Botão */
.ifood-fab__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(234, 29, 44, 0.4);
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: ifoodPulse 2s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

.ifood-fab[aria-expanded="true"] .ifood-fab__pulse {
  animation: none;
  display: none;
}

@keyframes ifoodPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.wpp-fab-container {
  position: fixed;
  bottom: 120px; /* Abaixo do ifood */
  left: calc(clamp(20px, 4vw, 60px) + 75px);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.wpp-fab__btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: #FFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.wpp-fab__btn:hover {
  transform: scale(1.08);
  background: #128C7E;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
}

.wpp-fab__icon {
  width: 34px;
  height: 34px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wpp-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: wppPulse 2s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}
.wpp-fab__btn * {
  pointer-events: none;
}

@keyframes wppPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .ifood-fab {
    bottom: calc(160px + env(safe-area-inset-bottom));
    left: calc(28px + env(safe-area-inset-left));
  }

  .ifood-fab__btn {
    width: 56px;
    height: 56px;
  }

  .ifood-fab__icon,
  .ifood-fab__close {
    width: 28px;
    height: 28px;
  }

  .wpp-fab-container {
    bottom: calc(70px + env(safe-area-inset-bottom));
    left: calc(28px + env(safe-area-inset-left));
  }

  .wpp-fab__btn {
    width: 56px;
    height: 56px;
  }

  .wpp-fab__icon {
    width: 30px;
    height: 30px;
  }
}

/* Legenda abaixo dos FABs */
.fab-label {
  position: absolute;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.95;
}

.wpp-fab__btn .fab-label {
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
}

.ifood-fab__btn .fab-label {
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  white-space: normal;
  text-align: center;
  line-height: 1.1;
}
