/* Motel Orion BH — identidade: identidade/design-guide.md */

:root {
  --bg: #0b0b0c;
  --bg-alt: #131313;
  --gold: #d6a44a;
  --gold-light: #e4c079;
  --gold-soft: rgba(214, 164, 74, 0.14);
  --white: #f3ecdd;
  --muted: #b7b4ac;
  --muted-soft: #8c8a85;
  --line: rgba(214, 164, 74, 0.18);
  --serif: "Marcellus", "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", -apple-system, sans-serif;
  --radius: 8px;
  --max: 1180px;
}

/* Animação de abertura (home) */

#intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.9s ease;
}
#intro-overlay.fade-out { opacity: 0; }
#intro-overlay.hidden { display: none; }

#intro-logo-group {
  opacity: 0;
  transform: scale(0.82);
  animation: intro-logo-in 2.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
  transform-origin: center center;
}
#intro-logo-group.rising {
  transition: transform 1s cubic-bezier(0.65, 0, 0.2, 1);
}
/* Só limites (max-*), sem width/height fixos: assim o navegador encaixa a logo
   na tela mantendo a proporção. Com width fixo + max-height a logo esmagava,
   porque o lockup é mais alto que largo. */
#intro-logo-group img {
  max-height: 78vh;
  max-width: 88vw;
  width: auto;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 30px rgba(214, 164, 74, 0.2));
}
@keyframes intro-logo-in {
  0% { opacity: 0; transform: scale(0.82); }
  70% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.1;
}

h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 24px; }

/* Ênfase editorial: dourado no lugar de itálico (Marcellus é peso único, sem itálico) */
#page-content em, .destaque { font-style: normal; color: var(--gold-light); }
.hero h1 { font-size: clamp(24px, 3.2vw, 36px); line-height: 1.3; white-space: nowrap; }

p { color: var(--muted); font-size: 17px; }

.rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 22px 0 26px;
}

/* Botões */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-pill { border-radius: var(--radius); }
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: transparent;
}
.btn-outline:hover { background: var(--gold-soft); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { height: 68px; width: auto; }

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  flex-shrink: 1;
  white-space: nowrap;
}

.nav-links a { color: var(--muted); transition: color 0.2s; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.nav-cta .btn-gold { padding: 10px 20px; font-size: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn-gold { display: none; }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 32px;
  border-top: 1px solid var(--line);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero */

.hero {
  position: relative;
  padding: 120px 0 100px;
  background:
    radial-gradient(circle at 80% 10%, rgba(214, 164, 74, 0.12), transparent 55%),
    var(--bg);
  overflow: hidden;
}

.hero .stars { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 600px);
  align-items: center;
  gap: 56px;
}

.hero-content { position: relative; }

.hero p.lead { font-size: 19px; margin-top: 22px; max-width: 560px; }

.hero .btn-row { margin-top: 40px; }

.hero-photo {
  position: relative;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 70px 14px rgba(214, 164, 74, 0.35), 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-photo:hover {
  border-color: var(--gold);
  box-shadow: 0 0 100px 20px rgba(214, 164, 74, 0.6), 0 8px 24px rgba(0, 0, 0, 0.5);
}

.hero-photo-track {
  display: flex;
  transition: transform 1.2s ease;
  cursor: grab;
  touch-action: pan-y;
}
.hero-photo-track.dragging { transition: none; cursor: grabbing; user-select: none; }

.hero-photo-track img {
  min-width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  -webkit-user-drag: none;
  user-drag: none;
}

.hero-photo-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  backdrop-filter: blur(2px);
  transition: background 0.2s ease;
}
.hero-photo-link:hover { background: var(--gold); color: #000; }
.hero-photo-link svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo { order: -1; }
  .hero h1 { white-space: normal; font-size: clamp(22px, 6.2vw, 34px); }
}

.page-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 85% 0%, rgba(214, 164, 74, 0.1), transparent 60%);
}
.page-hero p { max-width: 620px; margin-top: 14px; font-size: 18px; }

/* Sections */

section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 56px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.feature {
  border: 1px solid var(--line);
  padding: 34px 28px;
  border-radius: var(--radius);
}
.feature .icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}
.feature-gold { border-color: var(--gold); display: flex; flex-direction: column; }
.feature-gold .btn-row { margin-top: auto; padding-top: 18px; }
.feature-gold h3 { color: var(--gold-light); }
.gold-light { color: var(--gold-light); }
.feature h3 { margin-bottom: 10px; color: var(--gold-light); }
.feature p { font-size: 15px; }

/* Suite cards */

.suite-card {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.suite-card-clickable { cursor: pointer; }
.suite-card-clickable:hover { border-color: var(--gold); }
.suite-card .thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1a1712, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.thumb img, .thumb-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.suite-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.suite-card h3 { margin-bottom: 8px; color: var(--gold); }
.suite-card p { font-size: 14px; flex: 1; }
.suite-card .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.suite-card .price {
  font-family: var(--serif);
  color: var(--gold-light);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.01em;
}
.suite-card .more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold);
  white-space: nowrap;
  transition: background 0.2s ease;
}
.suite-card .more-link:hover { background: var(--gold-soft); }

.thumb-lg {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1a1712, #0d0d0d);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}
.gallery-view-btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease;
}
.gallery-view-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.gallery-view-btn:hover { background: var(--gold-soft); }
@media (max-width: 640px) {
  .gallery-view-btn { right: 10px; bottom: 10px; padding: 7px 12px; font-size: 11px; }
}

/* Galeria da página de suíte */
.suite-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  display: block;
}

/* Carrossel de fotos da suíte — 4 por página, navegação manual */
.gallery-carousel-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.gallery-carousel { flex: 1; min-width: 0; }
.gallery-page {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 700px) {
  .gallery-page { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .gallery-page { grid-template-columns: 1fr; }
}
.gallery-carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.gallery-carousel-arrow svg { width: 20px; height: 20px; }
.gallery-carousel-arrow:hover { background: var(--gold-soft); }
@media (max-width: 640px) {
  .gallery-carousel-row { gap: 10px; }
  .gallery-carousel-arrow { width: 36px; height: 36px; }
  .gallery-carousel-arrow svg { width: 16px; height: 16px; }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 32px;
  cursor: zoom-out;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 1px solid var(--line);
  cursor: grab;
  touch-action: none;
  -webkit-user-drag: none;
  user-select: none;
}
.lightbox-overlay img:active { cursor: grabbing; }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--gold-soft); }
.lightbox-close svg, .lightbox-nav svg { width: 20px; height: 20px; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-count {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next, .lightbox-close { width: 36px; height: 36px; }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

.thumb-lg-clickable { cursor: pointer; }

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  list-style: none;
}
.amenities li {
  font-size: 14px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 16px;
}
.amenities li::before {
  content: "✓ ";
  color: var(--gold);
  font-weight: 700;
}

/* Carrossel de suítes */

.carousel { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  cursor: grab;
  touch-action: pan-y;
}
.carousel-track.dragging {
  transition: none;
  cursor: grabbing;
  user-select: none;
}
.carousel-track img { -webkit-user-drag: none; user-drag: none; }
.carousel-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 860px) {
  .carousel-page { grid-template-columns: 1fr; }
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.carousel-dots button.active {
  width: 24px;
  border-radius: var(--radius);
  background: var(--gold);
}

/* Quote */

.quote-block {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 90px 0;
  text-align: center;
}
.quote-block blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 36px);
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.35;
}
.quote-block cite {
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Steps */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-left: 56px; }
.step .num {
  position: absolute;
  left: 0;
  top: -6px;
  font-family: var(--serif);
  font-size: 40px;
  color: var(--gold);
}

/* CTA final */

.cta-final {
  background: var(--gold);
  color: #000;
  padding: 80px 0;
  text-align: center;
}
.cta-final h2 { color: #000; }
.cta-final p { color: rgba(0,0,0,0.65); max-width: 540px; margin: 14px auto 0; }
.cta-final .btn-row { justify-content: center; margin-top: 32px; }
.cta-final .btn-gold { background: #000; color: var(--gold); }
.cta-final .btn-gold:hover { background: #1a1a1a; }
.cta-final .btn-outline { border-color: #000; color: #000; }
.cta-final .btn-outline:hover { background: rgba(0,0,0,0.08); }

/* Forms */

.form-card {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 40px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #000;
  border: 1px solid var(--line);
  color: var(--white);
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 15px;
  border-radius: var(--radius);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; margin-top: 16px; color: var(--muted); }

.info-list { display: flex; flex-direction: column; gap: 22px; }
.info-list .item strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 4px; }
.info-list .item span, .info-list .item a { font-size: 15px; color: var(--muted); }
.info-list .item a:hover { color: var(--gold); }
.whatsapp-link { display: inline-flex; align-items: center; gap: 8px; }
.whatsapp-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.map-frame {
  width: 100%;
  height: 260px;
  border: 1px solid var(--line);
  filter: invert(1) hue-rotate(180deg);
}

/* Calculadora de distância */

.distance-calc {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}
.distance-calc label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
  margin-bottom: 12px;
}
.distance-calc-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.distance-calc-row input {
  flex: 1;
  min-width: 180px;
  background: #000;
  border: 1px solid var(--line);
  color: var(--white);
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 15px;
  border-radius: var(--radius);
}
.distance-calc-row input:focus { outline: none; border-color: var(--gold); }
.distance-result {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
  min-height: 20px;
}
.distance-result strong { color: var(--gold); }

/* Cards de opção da página de reservas */

.reserva-opcoes { margin-top: 8px; }
.opcao-card {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 32px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: inherit;
  color: inherit;
}
.opcao-card:hover { border-color: var(--gold); }
.opcao-card .icon { width: 38px; height: 38px; color: var(--gold); margin-bottom: 18px; }
.opcao-card h3 { margin-bottom: 8px; color: var(--gold-light); }
.opcao-card p { font-size: 14px; flex: 1; }
.opcao-card .escolher {
  align-self: flex-start;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold);
  white-space: nowrap;
  transition: background 0.2s ease;
}
.opcao-card:hover .escolher { background: var(--gold-soft); }

/* Ícone "ao vivo" do Reserve e vá agora: ponto central + ondas pulsando */
.icon-agora .onda { animation: pulsoAgora 2.4s ease-in-out infinite; }
.icon-agora .onda-2 { animation-delay: 0.5s; }
@keyframes pulsoAgora {
  0%, 100% { opacity: 0.22; }
  50% { opacity: 0.9; }
}
@media (prefers-reduced-motion: reduce) {
  .icon-agora .onda { animation: none; opacity: 0.5; }
}

/* Reserva "para vir agora" (protótipo) */

.voltar-btn { padding: 10px 20px; font-size: 12px; margin-bottom: 40px; }

.outro-dia-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 20px;
}
.outro-dia-campo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.outro-dia-data label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.outro-dia-date-wrap { position: relative; display: inline-flex; }
.outro-dia-date-texto {
  display: inline-flex;
  align-items: center;
  background: #000;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  min-width: 110px;
  transition: border-color 0.2s ease;
}
.outro-dia-date-texto:hover { border-color: var(--gold); }
.outro-dia-calendar {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  width: 296px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}
.outro-dia-calendar.aberto { display: block; }
.outro-dia-data-btn { padding: 10px 20px; font-size: 12px; }
.outro-dia-data select {
  background: #000;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
}
.outro-dia-data input[type="time"] {
  background: #000;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
}
.outro-dia-data input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }
.outro-dia-hora-oculto { display: none; }
.outro-dia-data-info {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: capitalize;
}

.agora-intro-nota {
  border: 1px solid var(--line);
  background: rgba(214, 164, 74, 0.06);
  color: var(--muted);
  font-size: 13px;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.agora-suites {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
}
.agora-suite {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
}
.agora-suite.esgotada { opacity: 0.62; }
.agora-suite-foto { display: block; position: relative; aspect-ratio: 16 / 9; overflow: hidden; cursor: pointer; }
.agora-suite-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.agora-suite-foto:hover img { transform: scale(1.04); }
.agora-ver-fotos {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.agora-ver-fotos svg { width: 14px; height: 14px; flex-shrink: 0; }
.agora-status {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--line);
}
.agora-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.agora-status.on { color: var(--gold); border-color: var(--gold); }
.agora-status.on::before { background: var(--gold); animation: pulsoAgora 1.6s ease-in-out infinite; }
.agora-status.ultima { color: var(--gold-light); border-color: var(--gold); }
.agora-status.ultima::before { background: var(--gold-light); animation: pulsoAgora 1s ease-in-out infinite; }
.agora-status.off { color: var(--muted); }
.agora-status.off::before { background: var(--muted); }

.agora-suite-body { padding: 22px 24px 24px; }
.agora-suite-body h3 { margin-bottom: 6px; }
.agora-suite-sub { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.agora-esgotada-msg { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* Seletor de nº de pessoas */
.agora-pessoas { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.agora-pessoas-lbl { font-size: 13px; color: var(--muted); font-weight: 600; }
.agora-pessoas-btns { display: inline-flex; gap: 6px; }
.agora-pessoas-btns button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.15s ease;
}
.agora-pessoas-btns button:hover { border-color: var(--gold); }
.agora-pessoas-btns button.ativo { background: var(--gold); color: #000; border-color: var(--gold); }

/* Período fora do horário (indisponível para vir agora) */
.agora-periodo.indisp { cursor: not-allowed; opacity: 0.55; }
.agora-periodo.indisp:hover { border-color: var(--line); }
.agora-periodo-indisp { font-size: 12px; color: var(--muted); font-style: normal; white-space: nowrap; }

.agora-periodos { display: flex; flex-direction: column; gap: 10px; }
.agora-periodo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: #000;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  font-family: inherit;
  color: var(--white);
  transition: border-color 0.2s ease;
}
.agora-periodo:hover { border-color: var(--gold); }
.agora-periodo-nome { font-size: 15px; font-weight: 600; }
.agora-periodo-nome small { display: block; color: var(--muted); font-size: 12px; font-weight: 400; margin-top: 2px; }
.agora-periodo-precos { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.agora-periodo-precos s { color: var(--muted); font-size: 13px; }
.agora-periodo-precos strong { font-family: var(--serif); color: var(--gold-light); font-size: 21px; font-weight: 400; }
.agora-selo {
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
}
@media (max-width: 480px) {
  .agora-periodo { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  background: var(--bg-alt);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer-col a:hover { color: var(--gold); }
.footer-brand { text-align: center; }
.footer-brand .brand { display: flex; margin-bottom: 16px; justify-content: center; }
.footer-brand .brand-mark { height: 92px; }
.footer-brand p { font-size: 14px; max-width: 280px; margin-left: auto; margin-right: auto; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* WhatsApp float */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  background: var(--gold);
  color: #000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.wa-float:hover { background: var(--gold-light); }
.wa-float svg { width: 26px; height: 26px; }

.radio-orion {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 4px;
  background: var(--bg);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 10px 8px 8px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  font-family: inherit;
}
.radio-orion.ready { display: inline-flex; }
.radio-toggle, .radio-prev, .radio-next {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}
.radio-toggle:hover .radio-label, .radio-prev:hover, .radio-next:hover { color: var(--gold-light); }
.radio-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.radio-icon svg { width: 16px; height: 16px; }
.radio-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: var(--white);
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  /* A largura é FIXADA por JS = largura do texto "Rádio Orion". A música que
     está tocando rola por dentro dessa janelinha, sem mudar o tamanho do widget. */
}
.radio-track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}
.radio-track.scrolling {
  animation: radio-marquee var(--dur, 12s) linear infinite;
}
/* Passa o mouse em cima e o texto para, pra dar tempo de ler o nome da música. */
.radio-orion:hover .radio-track.scrolling { animation-play-state: paused; }
.radio-seg { padding-right: 2.2em; }
@keyframes radio-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.radio-orion.playing .radio-toggle::after {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: radio-pulse 1.2s ease-in-out infinite;
}
@keyframes radio-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.radio-prev, .radio-next {
  width: 26px;
  height: 30px;
  justify-content: center;
}
.radio-prev { border-left: 1px solid var(--line); padding-left: 8px; margin-left: 4px; }
.radio-prev svg, .radio-next svg { width: 16px; height: 16px; }
@media (max-width: 640px) {
  .radio-orion { left: 16px; bottom: 16px; }
  .wa-float { right: 16px; bottom: 16px; }
}

/* Aviso de página de teste (não publicada) */

.test-banner {
  background: var(--gold-soft);
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 16px;
}

/* Calendário de preços */

.price-calendar-section { padding: 80px 0; border-top: 1px solid var(--line); }

.price-calendar-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  margin-top: 36px;
  align-items: start;
}
@media (max-width: 860px) {
  .price-calendar-grid { grid-template-columns: 1fr; }
}

.price-calendar {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.price-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.price-calendar-month {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--white);
  text-transform: capitalize;
}
.price-calendar-nav {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--gold);
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 15px;
  transition: all 0.2s ease;
}
.price-calendar-nav:hover { border-color: var(--gold); background: var(--gold-soft); }
.price-calendar-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.price-calendar-weekdays,
.price-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.price-calendar-weekdays span {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  padding-bottom: 8px;
}
.price-calendar-day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}
.price-calendar-day:hover:not(.is-disabled):not(.is-empty) { border-color: var(--gold); }
.price-calendar-day.is-empty { cursor: default; }
.price-calendar-day.is-disabled { color: var(--muted); opacity: 0.3; cursor: not-allowed; }
.price-calendar-day.is-today { color: var(--gold); font-weight: 700; }
.price-calendar-day.is-selected { background: var(--gold); color: #000; font-weight: 700; }
.price-calendar-day::after {
  content: "";
  position: absolute;
  bottom: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
}
.price-calendar-day.cat-sexta::after { opacity: 0.5; }
.price-calendar-day.cat-sabado::after,
.price-calendar-day.cat-domingo::after { opacity: 1; }
.price-calendar-day.is-selected::after { display: none; }

.price-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}
.price-calendar-legend span { display: flex; align-items: center; gap: 6px; }
.price-calendar-legend .dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; background: var(--muted); }
.price-calendar-legend .dot-sexta { background: rgba(214, 164, 74, 0.5); }
.price-calendar-legend .dot-sabado,
.price-calendar-legend .dot-domingo { background: var(--gold); }

.price-table-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.price-table-date {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: capitalize;
  text-align: center;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table td { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
.price-table td:first-child { color: var(--gold); font-weight: 600; }
.price-table td:first-child small { display: block; color: var(--muted); font-size: 14px; font-weight: 400; margin-top: 3px; }
.price-table td:last-child { text-align: right; color: var(--gold-light); font-family: var(--serif); font-size: 26px; font-weight: 400; letter-spacing: 0.01em; white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }
.price-table-note { margin-top: 18px; font-size: 13px; color: var(--muted); }
.price-table-note strong { color: var(--white); }

/* ————————————————————————————————————————————————————————————————
   Gastronomia — página de cardápio (site/gastronomia.html)
   ———————————————————————————————————————————————————————————————— */

/* Hero */
.gastro-hero {
  position: relative;
  text-align: center;
  padding: 100px 0 76px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(214, 164, 74, 0.2), transparent 58%),
    var(--bg);
}
.gastro-hero .kicker { margin-bottom: 20px; }
.gastro-hero h1 { max-width: 900px; margin: 0 auto; }
.gastro-hero .lead {
  color: var(--muted);
  font-size: 19px;
  max-width: 640px;
  margin: 24px auto 0;
}
.gastro-hero .rule { margin: 28px auto 0; }
.gastro-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 34px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.gastro-tags span { display: inline-flex; align-items: center; gap: 9px; }
.gastro-tags span::before { content: "★"; color: var(--gold); font-size: 10px; }

/* Navegação por categoria — barra fixa logo abaixo do header */
.menu-nav {
  position: sticky;
  top: 84px;
  z-index: 40;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.menu-nav-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 12px 24px;
  max-width: var(--max);
  margin: 0 auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  mask-image: linear-gradient(to right, transparent, black 24px, black calc(100% - 24px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 24px, black calc(100% - 24px), transparent);
}
.menu-nav-inner::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted);
  white-space: nowrap;
  transition: all 0.2s ease;
}
.menu-nav a:hover { border-color: var(--gold); color: var(--gold); }

/* Seções do cardápio */
.menu-section {
  padding: 82px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 150px;
}
.menu-section.section-alt { background: var(--bg-alt); }
.menu-section-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.menu-section-head h2 { margin: 0; color: var(--gold); }
.menu-section-head .rule { margin: 20px auto 0; }
.menu-section-head p { margin-top: 16px; font-size: 15px; }

.menu-wrap { max-width: 920px; margin: 0 auto; }

.menu-subhead {
  font-family: var(--serif);
  font-size: 25px;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.02em;
  margin: 52px 0 26px;
}
.menu-subhead:first-child { margin-top: 0; }

.menu-list { display: flex; flex-direction: column; gap: 28px; }
.menu-list.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 52px;
}
@media (max-width: 720px) { .menu-list.cols-2 { grid-template-columns: 1fr; } }

.menu-item-top { display: flex; align-items: baseline; gap: 12px; }
.menu-item-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
}
.menu-item-name .qtd {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.menu-item-lead {
  flex: 1;
  min-width: 22px;
  border-bottom: 1px dotted rgba(214, 164, 74, 0.42);
  transform: translateY(-5px);
}
.menu-item-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.menu-item-price s { color: var(--muted); font-weight: 400; margin-right: 6px; }
.menu-item-desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin-top: 7px;
  max-width: 660px;
}
.cols-2 .menu-item-name { font-size: 18px; }

/* Legenda de duas colunas de preço (Doses & Garrafas) */
.menu-price-legend {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}
.menu-price-legend strong { color: var(--gold); font-weight: 700; }

/* Nota / aviso dentro de uma seção */
.menu-note {
  max-width: 720px;
  margin: 44px auto 0;
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  background: rgba(214, 164, 74, 0.05);
  padding: 18px 22px;
  font-size: 14px;
  color: var(--muted);
  border-radius: var(--radius);
}
.menu-note strong { color: var(--white); }

/* Banda editorial do chef */
.gastro-chef { text-align: center; }
.gastro-chef .wrap { max-width: 780px; }
.gastro-chef blockquote {
  font-family: var(--serif);
  font-size: clamp(23px, 3.2vw, 34px);
  color: var(--white);
  line-height: 1.36;
}
.gastro-chef cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 640px) {
  .gastro-hero { padding: 72px 0 56px; }
  .menu-section { padding: 64px 0; }
  .menu-item-name { font-size: 19px; }
  .menu-nav-inner {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    padding: 14px 20px;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* Cards de prato com foto */
/* Flexbox com quebra de linha: filas cheias ficam idênticas à grade antiga,
   e qualquer última fila incompleta (2 ou 1 card sobrando) fica centralizada */
.menu-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}
.menu-cards > .dish-card {
  flex: 0 1 calc((100% - 52px) / 3);   /* largura = 1/3 da fila, sem crescer */
  max-width: calc((100% - 52px) / 3);
}
.menu-cards.cols-4 > .dish-card {
  flex-basis: calc((100% - 78px) / 4); /* 4 por fila */
  max-width: calc((100% - 78px) / 4);
}
@media (max-width: 900px) {
  .menu-cards > .dish-card,
  .menu-cards.cols-4 > .dish-card {
    flex-basis: calc((100% - 26px) / 2); /* 2 por fila */
    max-width: calc((100% - 26px) / 2);
  }
}
@media (max-width: 560px) {
  .menu-cards > .dish-card,
  .menu-cards.cols-4 > .dish-card {
    flex-basis: 100%;                    /* 1 por fila */
    max-width: 100%;
  }
}

.dish-card {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}
.dish-card:hover { border-color: var(--gold); }
.dish-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1712, #0d0d0d);
}
#drinks .dish-photo { aspect-ratio: 3 / 4; }
.dish-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.dish-card:hover .dish-photo img { transform: scale(1.05); }
.dish-photo.sem-foto::after {
  content: "Foto em breve";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.08em;
  opacity: 0.5;
}
.dish-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dish-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.dish-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.01em;
}
.dish-qtd {
  display: block;
  text-align: center;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  white-space: nowrap;
}
.dish-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.dish-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}
