/* ── restaurante.css ── */

/* BISTRO HERO — imagem full-height à esquerda */
.bistro-hero { min-height: 80vh; display: flex; align-items: center; background: var(--charcoal); position: relative; overflow: hidden; }
.bistro-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .4; }
.bistro-hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(14,4,8,.97) 0%, rgba(14,4,8,.55) 60%, transparent 100%); }
.bistro-hero-content { position: relative; z-index: 2; max-width: 600px; padding: 8rem 4rem; }
.bistro-eyebrow { font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: .8rem; }
.bistro-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.bistro-main-title { font-family: var(--serif); font-size: clamp(3rem,6vw,5.5rem); font-weight: 900; color: var(--cream); line-height: .95; }
.bistro-main-title em { font-style: italic; font-weight: 400; color: var(--gold-lt); }
.bistro-tagline { font-size: .95rem; color: rgba(247,243,236,.55); font-weight: 300; margin-top: 1.2rem; line-height: 1.75; max-width: 420px; }
.bistro-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }

/* MENU SECTIONS */
.menu-sec-alt { background: var(--ivory); }
.menu-sec-dark { background: var(--charcoal); }
.menu-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.menu-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* MENU ITEMS LIST */
.menu-items { margin-top: 2rem; display: flex; flex-direction: column; gap: .8rem; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; padding: .9rem 0; border-bottom: 1px solid rgba(61,12,31,.07); }
.menu-item-dark { border-bottom-color: rgba(201,165,90,.1); }
.menu-item-name { font-family: var(--serif); font-size: 1rem; color: var(--text); font-weight: 700; }
.menu-item-name.light { color: var(--cream); }
.menu-item-desc { font-size: .78rem; color: var(--text-muted); font-weight: 300; margin-top: .15rem; line-height: 1.4; }
.menu-item-desc.light { color: rgba(247,243,236,.4); }

/* AMBIENCE */
.ambience-sec { background: var(--claret); }
.ambience-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ambience-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.ambience-mosaic img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ambience-mosaic img:first-child { grid-column: 1/-1; aspect-ratio: 16/7; }

/* HORÁRIO */
.hours-band { background: var(--sand); padding: 3.5rem 4rem; }
.hours-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.hours-item { text-align: center; padding: 2rem; background: var(--ivory); }
.hours-day { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.hours-time { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--claret); line-height: 1.1; }
.hours-note { font-size: .75rem; color: var(--text-muted); margin-top: .4rem; }

@media (max-width: 960px) {
  .bistro-hero-content { padding: 6rem 1.5rem; }
  .menu-inner, .ambience-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hours-inner { grid-template-columns: 1fr; }
  .hours-band { padding: 3rem 1.5rem; }
}

/* MINI CARROSSEL COMPARTILHADO */
.card-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card-carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.card-carousel-slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  cursor: pointer;
}
.card-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(61, 12, 31, 0.6);
  border: 1px solid rgba(201, 165, 90, 0.3);
  color: var(--cream);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  opacity: 0;
}
.card-carousel:hover .card-carousel-btn {
  opacity: 1;
}
.card-carousel-btn:hover {
  background: var(--gold);
  color: var(--claret);
}
.card-carousel-btn.prev {
  left: 0.5rem;
}
.card-carousel-btn.next {
  right: 0.5rem;
}
.card-carousel-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}
.card-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(247, 243, 236, 0.4);
  cursor: pointer;
  transition: all 0.2s;
}
.card-carousel-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}
