:root {
  --blue: #6EB5E0;
  --blue-lt: #B8DCEF;
  --blue-dk: #2A6090;
  --navy: #0D2B45;
  --gold: #C9A955;
  --white: #FFFFFF;
  --off: #F8FBFE;
  --gray: #4A5D6A;
  --text: #1A3244;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(13, 43, 69, 0.08);
  --bar-h: 88px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  padding-bottom: calc(var(--bar-h) + 20px);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
}

/* Animações */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -10px);
  }
}

@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

@keyframes skeleton-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navegação */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(13, 43, 69, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  /* Anel dourado: separa o logo do fundo escuro da nav (contraste visual) */
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 85, 0.25), 0 4px 12px rgba(0,0,0,0.4);
  transition: box-shadow 0.3s ease;
}

.nav-logo:hover img {
  box-shadow: 0 0 0 4px rgba(201, 169, 85, 0.45), 0 6px 18px rgba(0,0,0,0.5);
}

.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--blue-lt);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--blue-lt);
}

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

.nav-cta {
  /* Ouro sobre navy → contraste ~10:1 (WCAG AAA) vs azul+branco ~2.3:1 */
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              background 0.3s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  min-height: 44px;
  letter-spacing: 0.03em;
}

/* Anel pulsante dourado */
.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid rgba(201, 169, 85, 0.6);
  animation: pulseRing 2s ease-out infinite;
  pointer-events: none;
}

.nav-cta:hover {
  background: #b8923f; /* gold escurecido — mantém contraste navy ~8:1 */
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 85, 0.4);
}

/* Hamburguer — oculto em desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

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

/* Destaque (Hero) */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy); /* fallback enquanto o vídeo carrega */
}

/* Vídeo de fundo */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Overlay escuro gradiente sobre o vídeo */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 43, 69, 0.80), rgba(13, 43, 69, 0.93));
  z-index: 1;
  pointer-events: none;
}

/* Textura de pontos sobre o overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: 2;
  pointer-events: none;
}

/* Partículas de Brasa */
.ember {
  position: absolute;
  bottom: -20px;
  width: 4px;
  height: 4px;
  background: #ff5722;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(255, 87, 34, 0.8), 0 0 20px 4px rgba(255, 193, 7, 0.5);
  opacity: 0;
  animation: floatUp var(--duration) ease-in infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1) translateX(0);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  50% {
    transform: translateY(-50vh) scale(0.8) translateX(20px);
  }
  80% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100vh) scale(0) translateX(-20px);
    opacity: 0;
  }
}

.hero-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
  animation: fadeUp 1s ease both, floatLogo 4s ease-in-out infinite alternate 1s;
  position: relative;
  z-index: 3;
}

@keyframes floatLogo {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 85, 0.15);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 8px 20px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 1s 0.2s both;
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 700;
  animation: fadeUp 1s 0.4s both;
  line-height: 0.9;
  position: relative;
  z-index: 3;
}

.hero h1 em {
  color: var(--blue-lt);
  font-style: italic;
  display: block;
  font-weight: 400;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 24px auto 48px;
  animation: fadeUp 1s 0.6s both;
  position: relative;
  z-index: 3;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s 0.8s both;
  position: relative;
  z-index: 3;
}

.btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  font-size: 0.9rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  position: relative;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid rgba(201, 169, 85, 0.6);
  animation: pulseRing 2s ease-out infinite;
  pointer-events: none;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(201, 169, 85, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite, fadeIn 1s 1.2s both;
  cursor: pointer;
  z-index: 3;
}

.hero-scroll svg {
  opacity: 0.6;
}

/* Letreiro de Destaques (Marquee) */
.highlights {
  background: #081d2f;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.highlights-inner {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.hl-chip {
  background: rgba(110, 181, 224, 0.1);
  border: 1px solid rgba(110, 181, 224, 0.2);
  border-radius: 50px;
  padding: 10px 24px;
  color: var(--blue-lt);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Seções */
section {
  padding: 100px 5%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 60px;
}

.section-label {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  color: #2C3E50;
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 600px;
  line-height: 1.6;
}

/* Grade do Cardápio */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  /* desktop: quebra em múltiplas linhas se necessário */
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

/* Mobile: grade 2x2 para manter todas as abas visíveis sem rolagem */
@media (max-width: 600px) {
  .menu-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .tab-btn {
    padding: 10px;
    font-size: 0.9rem;
  }
}

.tab-btn {
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--blue-lt);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex: 0 0 auto;
  /* impede esticamento — botões têm largura natural */
  text-align: center;
}

.tab-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(110, 181, 224, 0.2);
  animation: activePulse 2s infinite ease-in-out;
}

@keyframes activePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.tab-content {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.tab-content.active {
  display: grid;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  /* will-change aplicado dinamicamente pelo JS ao iniciar hover/tilt */
}

/* GSAP e Vanilla-Tilt controlam o transform — hover apenas realça a sombra */
.menu-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

/* Estado de prato indisponível (Esgotado) */
.menu-card.sold-out {
  opacity: 0.6;
  pointer-events: none; /* Impede que o usuário clique e adicione ao carrinho */
  filter: grayscale(80%);
}

.menu-card.sold-out::after {
  content: 'ESGOTADO';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  background: rgba(255, 255, 255, 0.95);
  color: var(--red);
  padding: 10px 24px;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  border: 4px solid var(--red);
  z-index: 10;
}

.card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  /* Skeleton: fundo cinza visível até a imagem carregar */
  background-color: #f0f4f8;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  animation: slowZoom 8s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Quando a imagem real está presente via style inline, remove o fundo e a animação */
.card-img[style*="background-image: url"] {
  background-color: transparent;
  animation: none;
}

.card-body {
  padding: 24px;
}

.card-name {
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-prices {
  display: flex;
  gap: 10px;
}

.price-pill {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  background: #e2ebf3; /* Mais escuro que o var(--off) original para parecer botão */
  border: 1.5px solid #d0e0ed;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.price-pill span {
  display: block;
  font-size: .7rem;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2px;
  opacity: .8;
}

.price-pill strong {
  font-size: 1rem;
  color: var(--navy);
}

.price-pill:hover {
  border-color: var(--blue);
  background: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.price-pill.has-items {
  border-color: var(--blue);
  background: var(--blue);
}

.price-pill.has-items span,
.price-pill.has-items strong {
  color: var(--white);
}

.price-pill.has-items strong {
  font-size: .85rem;
}

.pill-qty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.price-pill.has-items .pill-qty {
  display: flex;
}

.pill-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .1s;
}

.pill-qty-btn:hover {
  background: rgba(255, 255, 255, .45);
}

.pill-qty-btn:active {
  transform: scale(0.95);
}

.pill-qty-val {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  min-width: 18px;
  text-align: center;
}

/* Bebidas */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.drink-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--off);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  contain: layout style paint;
}

.drink-flavor-select {
  display: block;
  width: 100%;
  margin: 8px 0;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--off);
  background: var(--off);
  color: var(--navy);
  font-family: inherit;
  /* 16px mínimo: evita zoom automático ao selecionar no iOS Safari */
  font-size: max(0.85rem, 16px);
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.drink-flavor-select:focus {
  border-color: var(--blue);
}

.drink-card:hover {
  transform: translateY(-4px) scale(1.02);
}

.drink-card.selected {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.drink-card.selected {
  background: rgba(110, 181, 224, 0.05);
}

.drink-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* Skeleton para imagens de bebida */
  background-color: #e8eef3;
  border-radius: 8px;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.drink-img[style*="background-image: url"] {
  background-color: transparent;
  border-radius: 0;
  animation: none;
}

.drink-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.drink-price {
  color: var(--blue-dk);
  font-weight: 700;
  font-size: 1.1rem;
}

.drink-qty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.drink-card.selected .drink-qty {
  display: flex;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background .15s, transform .1s;
}

.qty-btn:active {
  transform: scale(0.95);
}

/* ── Seção de Avaliações — Design Premium ── */
#avaliacoes {
  background: linear-gradient(160deg, #071623 0%, #0D2B45 55%, #0a2236 100%);
  position: relative;
  overflow: hidden;
}

/* Textura de pontos dourados no fundo */
#avaliacoes::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(201,169,85,0.18) 1.5px, transparent 0);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Orbs de luz ambiente */
#avaliacoes::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(110,181,224,0.07) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}

#avaliacoes .section-label { color: var(--gold); }
#avaliacoes .section-title { color: var(--white); }
#avaliacoes .section-sub   { color: rgba(255,255,255,0.55); }

/* Score badge no topo */
.reviews-score {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(201,169,85,0.1);
  border: 1px solid rgba(201,169,85,0.3);
  border-radius: 60px;
  padding: 10px 24px;
  margin-top: 24px;
}

.reviews-score-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.reviews-score-stars { font-size: 1rem; color: var(--gold); letter-spacing: 2px; }
.reviews-score-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.3; }

/* Grid de cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

/* Card glassmorphism */
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,85,0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Brilho dourado no topo do card */
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.review-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,169,85,0.45);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,169,85,0.15);
}

.review-card:hover::before { opacity: 1; }

/* Aspas decorativas gigantes */
.review-quote-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 8px;
  display: block;
  user-select: none;
}

.stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

/* Rodapé do card */
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  border: 2px solid rgba(201,169,85,0.4);
}

.review-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.review-location {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  margin-top: 2px;
}

/* Google badge inline */
.review-google-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.review-google-badge svg { width: 14px; height: 14px; }

/* CTA */
.google-cta-container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 60px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: var(--transition);
  background: linear-gradient(135deg, rgba(201,169,85,0.15), rgba(201,169,85,0.05));
  border: 1.5px solid rgba(201,169,85,0.5);
  color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-google:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201,169,85,0.3);
}

.google-icon-svg { width: 18px; height: 18px; }

/* Localização */
#localizacao {
  background: linear-gradient(180deg, var(--white) 0%, var(--off) 100%);
  position: relative;
  z-index: 0;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.loc-card {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.loc-icon {
  width: 56px;
  height: 56px;
  background: var(--off);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--blue);
  flex-shrink: 0;
}

.map-frame {
  border-radius: 24px;
  overflow: hidden;
  height: 450px;
  min-height: 320px;
  box-shadow: var(--shadow);
  position: relative;
  background: linear-gradient(135deg, #e2eaf0 0%, #d0dde8 100%);
}

/* Skeleton screen animado enquanto o mapa carrega */
.map-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

/* Ícone de mapa decorativo centralizado durante o carregamento */
.map-frame::after {
  content: '📍';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
  line-height: 450px; /* alinhamento vertical via line-height */
  text-align: center;
}

/* Remove os pseudo-elementos quando o iframe carregar */
.map-frame.loaded::before,
.map-frame.loaded::after {
  display: none;
}

.map-frame iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================================
   FOOTER PREMIUM (Grid Layout)
   ========================================= */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(110,181,224,0.4), var(--gold), rgba(110,181,224,0.4), transparent) 1;
  font-family: 'Jost', sans-serif;
  position: relative;
}

/* Sombra de transição suave acima do footer */
footer::before {
  content: '';
  position: absolute;
  top: -48px;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(13,43,69,0.12));
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 0 5% 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Coluna 1: Marca */
.footer-brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-3px);
}

/* Colunas 2 e 3: Títulos e Listas */
.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.footer-nav,
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--blue-lt);
  padding-left: 6px; /* Micro-interação elegante */
}

.footer-contact-list li {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact-list strong {
  color: var(--white);
}

/* Bottom Bar (Direitos e Assinatura) */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 5%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.copyright {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

.agency-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.agency-signature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.agency-signature img {
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.agency-signature a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.agency-signature a:hover {
  color: var(--gold);
}

/* ── Phone Popup (Rodapé) ───────────────────────────────────────────────── */
.phone-popup-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 4px;
}

.phone-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.phone-trigger:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.phone-trigger svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.phone-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.phone-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  background: rgba(13, 43, 69, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 500;
  opacity: 0;
  transform: translateY(6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.phone-popup.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.phone-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}

.phone-option:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.phone-option-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.phone-option-wpp .phone-option-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.phone-option-wpp:hover {
  background: rgba(37, 211, 102, 0.08);
}

/* Barra de Pedidos */
#order-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
  padding: 12px 5%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#order-bar.hidden {
  transform: translateY(100%);
}

.bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bar-info {
  display: flex;
  flex-direction: column;
}

.bar-total {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
}

.bar-total small {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
  margin-right: 4px;
}

.bar-items {
  font-size: 0.85rem;
  color: var(--gray);
}

.btn-cart {
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-cart:hover {
  background: #1ebe5e;
  transform: translateY(-2px);
}

.cart-count {
  background: white;
  color: #25D366;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

/* Modal de Finalização (Checkout) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 43, 69, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-box {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 500px;
  border-radius: 32px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35),
              0 0 0 1px rgba(255, 255, 255, 0.2);
}

.modal-header {
  padding: 32px 32px 16px;
  border-bottom: 1px solid var(--off);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 32px;
  right: 32px;
  cursor: pointer;
  color: var(--gray);
  font-size: 1.5rem;
}

.modal-steps {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.step-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--off);
  transition: var(--transition);
}

.step-dot.active {
  background: var(--blue);
}

.modal-body {
  padding: 0 32px 32px;
  overflow-y: auto;
  flex: 1;
}

.step-content {
  display: none;
  padding-top: 24px;
}

.step-content.active {
  display: block;
  animation: slideInRight 0.4s ease;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--off);
}

.item-info h4 {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
}

.item-info p {
  font-size: 0.85rem;
  color: #34495E;
  font-weight: 500;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 2px solid var(--off);
  background: var(--off);
  font-family: inherit;
  /* Mínimo 16px: evita zoom automático no iOS Safari ao focar */
  font-size: max(1rem, 16px);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.modal-footer {
  padding: 24px 32px 32px;
  border-top: 1px solid var(--off);
  display: flex;
  gap: 12px;
}

.btn-step {
  flex: 1;
  padding: 18px;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  min-height: 56px; /* tap target confortável em mobile */
  transition: var(--transition);
}

.btn-next {
  background: var(--blue);
  color: white;
}

.btn-next:hover {
  background: var(--blue-dk);
}

.btn-prev {
  background: var(--off);
  color: var(--gray);
}

.btn-wpp {
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-wpp:hover {
  background: #1ebe5e;
  transform: translateY(-2px);
}

/* Notificações (Toast) */
#toast {
  position: fixed;
  top: 40px;
  right: 40px;
  background: var(--navy);
  color: white;
  padding: 16px 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateX(200%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9999;
}

#toast.show {
  transform: translateX(0);
}

/* Método de Pagamento */
.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pay-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  border-radius: 16px;
  background: var(--off);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Jost', sans-serif;
}

.pay-btn:hover {
  border-color: var(--blue-lt);
  background: var(--white);
}

.pay-btn.active {
  border-color: var(--blue);
  background: rgba(110, 181, 224, .08);
  box-shadow: 0 4px 16px rgba(110, 181, 224, .2);
}

.pay-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  transition: var(--transition);
}

.pay-btn.active .pay-icon {
  background: var(--blue);
}

.pay-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.2;
  text-align: center;
}

.pay-btn.active .pay-label {
  color: var(--blue-dk);
}

.pix-hint {
  display: none;
  margin-top: 12px;
  padding: 14px 18px;
  background: rgba(110, 181, 224, .07);
  border: 1px dashed rgba(110, 181, 224, .4);
  border-radius: 12px;
  font-size: .85rem;
  color: var(--gray);
  font-weight: 500;
  align-items: center;
  gap: 10px;
}

.pix-hint.visible {
  display: flex;
  animation: fadeIn .3s ease;
}

.pix-key {
  font-weight: 800;
  color: var(--navy);
  font-size: .9rem;
}

@media (max-width: 768px) {
  /* .footer-grid dispensa override: auto-fit minmax(280px,1fr) empilha nativamente */
  .bottom-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    /* Fundo escuro glassmorphism — coerente com a nav navy */
    background: rgba(13, 43, 69, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    display: flex;
    padding: 14px 24px;
    font-size: 1rem;
    min-height: 48px;
    align-items: center;
    /* Texto branco coerente com fundo navy */
    color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--blue-lt) !important;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 90px 20px 60px;
  }

  /* Partículas de brasa: desligadas em mobile para economizar CPU */
  .ember {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Seções */
  section {
    padding: 64px 20px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  /* Cardápio */
  .tab-content {
    grid-template-columns: 1fr;
  }

  .card-img {
    height: 180px;
  }

  /* Bebidas */
  .drinks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .drink-card {
    padding: 16px 10px;
  }

  /* Localização */
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .map-frame {
    height: 280px;
  }

  /* Modal */
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .modal-box {
    max-height: 92vh;
    border-radius: 24px 24px 0 0;
    width: 100%;
  }

  .modal-header {
    padding: 20px 20px 12px;
  }

  .modal-body {
    padding: 0 20px 20px;
  }

  .modal-footer {
    padding: 16px 20px 24px;
  }

  .modal-close {
    top: 20px;
    right: 20px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Toast */
  #toast {
    right: 16px;
    left: 16px;
    top: auto;
    bottom: 100px;
    text-align: center;
  }

  /* Avaliações */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Video hero: pausa em mobile via JS — aqui esconde controles */
  .hero-video {
    object-position: center center;
  }
}

/* Tablets (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  section {
    padding: 80px 32px;
  }

  .tab-content {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .loc-grid {
    gap: 32px;
  }

  .map-frame {
    height: 360px;
  }
}

/* Hover só em dispositivos com pointer fino (mouse) — evita estado hover preso em touch */
@media (hover: none) {
  .menu-card:hover {
    transform: none;
    box-shadow: none;
  }

  .drink-card:hover {
    transform: none;
  }

  .menu-card:hover,
  .drink-card:hover {
    will-change: auto;
  }
}

/* Respeita preferência do usuário por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero {
    background: linear-gradient(rgba(13,43,69,0.90), rgba(13,43,69,0.97)),
                url('../img/bg.png') center/cover no-repeat;
  }

  .highlights-inner {
    animation: none;
  }

  .ember {
    display: none;
  }
}

/* ─── Desktop wide (≥ 1280px) ────────────────────────────────────────────── */
@media (min-width: 1280px) {

  /* Cardápio: 3 colunas fixas em telas largas */
  .tab-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  /* Bebidas: mais colunas, aproveita o espaço */
  .drinks-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  /* Seções com padding mais generoso */
  section {
    padding: 120px 5%;
  }

  /* Avaliações: 3 colunas */
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─── Desktop muito largo (≥ 1600px) ─────────────────────────────────────── */
@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }

  nav {
    padding: 0 8%;
  }

  section {
    padding: 120px 8%;
  }
}

/* ─── Telas muito pequenas (≤ 380px — celulares compactos) ───────────────── */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-img {
    width: 120px;
    height: 120px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-btns .btn {
    padding: 14px 24px;
    font-size: 0.85rem;
  }

  .card-body {
    padding: 16px;
  }

  .card-prices {
    flex-wrap: wrap;
  }

  .price-pill {
    flex: 1 1 calc(50% - 5px);
  }

  .drinks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .drink-card {
    padding: 12px 8px;
  }

  .modal-box {
    max-height: 96vh;
  }

  .modal-footer {
    flex-direction: column;
  }

  .btn-step {
    width: 100%;
  }
}
