/* ============================================================
   Blue Inn Bar & Grill — Cardápio 2026
   ============================================================ */

:root {
  /* paleta — azul profundo do hotel + dourado + água de piscina */
  --navy-950: #04132a;
  --navy-900: #071e3d;
  --navy-800: #0b2a4f;
  --navy-700: #143a6b;
  --navy-600: #1f4d85;

  --pool-300: #6fc8d6;
  --pool-400: #3bb2c6;
  --pool-500: #1f8fa8;

  --gold-300: #e7cf91;
  --gold-400: #d4b46a;
  --gold-500: #b9954a;
  --gold-600: #8a6c2e;

  --ivory: #faf6ec;
  --ivory-soft: #e9e1cc;
  --line: rgba(231, 207, 145, 0.18);
  --line-strong: rgba(231, 207, 145, 0.35);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.07);

  --radius: 14px;
  --radius-lg: 22px;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
  --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.18);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  color: var(--ivory);
  line-height: 1.55;
  font-weight: 400;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(31, 143, 168, 0.18), transparent 60%),
    radial-gradient(1000px 700px at -10% 30%, rgba(212, 180, 106, 0.08), transparent 55%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 40%, var(--navy-950) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   VOLTAR (página de links)
   ============================================================ */
.back {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(250, 246, 236, 0.62);
  transition: color 0.25s ease;
}

.back:hover { color: var(--gold-300); }

.back:focus-visible {
  outline: 2px solid var(--pool-300);
  outline-offset: 3px;
}

.back svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 24px 100px;
  overflow: hidden;
  isolation: isolate;
  background: #04132a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(111, 200, 214, 0.22), transparent 55%),
    radial-gradient(circle at 50% 40%, rgba(212, 180, 106, 0.12), transparent 60%);
  z-index: -2;
}

/* efeito sutil de "água" no fundo do hero */
.hero::after {
  content: "";
  position: absolute;
  inset: -10% -10% -20%;
  background:
    repeating-linear-gradient(
      105deg,
      transparent 0 80px,
      rgba(111, 200, 214, 0.04) 80px 81px
    );
  z-index: -1;
  animation: drift 40s linear infinite;
}

@keyframes drift {
  to { transform: translateX(-80px); }
}

.hero__inner {
  max-width: 720px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 28px;
}

.hero__title {
  display: flex;
  justify-content: center;
  margin: 18px 0 6px;
}

.hero__logo {
  display: block;
  width: clamp(260px, 52vw, 460px);
  height: auto;
  user-select: none;
  mix-blend-mode: screen;
}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold-300);
  margin-top: 28px;
}

.hero__divider {
  width: 140px;
  height: 1px;
  margin: 32px auto;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  position: relative;
}

.hero__divider::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold-400);
  background: var(--navy-950);
  padding: 0 8px;
  font-size: 0.7rem;
}

.hero__lead {
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  color: rgba(250, 246, 236, 0.8);
  font-weight: 300;
}

.hero__lead--en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(231, 207, 145, 0.6);
  margin-top: 6px;
}

/* ============================================================
   NAVEGAÇÃO
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: #04132a;
  border-bottom: 1px solid var(--line);
}

.nav__list {
  display: flex;
  gap: 4px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}

.nav__list::-webkit-scrollbar { display: none; }

.nav__list a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.65);
  white-space: nowrap;
  border-radius: 999px;
  transition: color 200ms, background 200ms;
}

.nav__list a:hover {
  color: var(--gold-300);
  background: var(--glass);
}

/* ============================================================
   SEÇÕES
   ============================================================ */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 28px 40px;
}

.section__head {
  text-align: center;
  margin-bottom: 56px;
}

.section__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 500;
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ivory);
  line-height: 1;
}

.section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold-400);
  margin: 22px auto 0;
}

.section__intro {
  max-width: 520px;
  margin: 18px auto 0;
  color: rgba(250, 246, 236, 0.7);
  font-size: 0.95rem;
}

.section__footnote {
  text-align: center;
  margin-top: 28px;
  color: rgba(250, 246, 236, 0.7);
  font-size: 0.92rem;
  font-style: italic;
}

.section__footnote strong { color: var(--gold-300); font-style: normal; }

.subsection { margin-bottom: 56px; }

.subsection__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-300);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.subsection__title-en {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.4);
  font-weight: 400;
}

/* ============================================================
   LEGENDA + TAGS
   ============================================================ */
.legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  margin-bottom: 48px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legend__title {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-right: 6px;
  font-weight: 500;
  line-height: 1.3;
}

.legend__title-en {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(231, 207, 145, 0.65);
  font-weight: 400;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
}

/* tag bilíngue (somente na legenda) */
.tag--legend {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 6px 14px;
  line-height: 1.1;
}

.tag--legend .tag__pt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.tag--legend .tag__en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.85;
}

.tag--sweet    { color: #f4a8c4; }
.tag--strong   { color: #f0a35b; }
.tag--citrus   { color: #f3d36a; }
.tag--fresh    { color: var(--pool-300); }
.tag--mocktail { color: #9ad8a2; }

/* ============================================================
   CARDS (cocktails, comidas)
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  padding: 22px 22px 18px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 250ms ease, border-color 250ms, background 250ms;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: var(--glass-strong);
}

.card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted rgba(231, 207, 145, 0.22);
}

.card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.15;
}

.card__price {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-300);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.card__desc {
  font-size: 0.92rem;
  color: rgba(250, 246, 236, 0.82);
  margin-bottom: 4px;
}

.card__desc-en {
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(250, 246, 236, 0.45);
}

.card__tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card--wide {
  max-width: 720px;
  margin: 0 auto;
}

.card--combo {
  background: rgba(212, 180, 106, 0.05);
  border-color: rgba(212, 180, 106, 0.28);
}

/* ============================================================
   HAPPY HOUR
   ============================================================ */
.section--happy {
  padding-top: 30px;
  padding-bottom: 30px;
}

.happy {
  max-width: 1100px;
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(212, 180, 106, 0.10), rgba(31, 143, 168, 0.10));
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.happy::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(231, 207, 145, 0.2);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}

.happy__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 180px;
  padding: 24px 14px;
  border: 1px solid var(--gold-400);
  border-radius: var(--radius);
  background: rgba(4, 19, 42, 0.4);
}

.happy__badge-time {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-style: italic;
  color: var(--gold-300);
  line-height: 1;
}

.happy__badge-label {
  margin-top: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ivory);
  font-weight: 500;
}

.happy__offers {
  display: grid;
  gap: 20px;
}

.happy__offer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 6px;
}

.happy__offer-desc {
  color: rgba(250, 246, 236, 0.88);
  font-size: 0.95rem;
}

.happy__offer-note {
  font-size: 0.82rem;
  color: rgba(250, 246, 236, 0.6);
  margin-top: 4px;
  font-style: italic;
}

.happy__offer-en {
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(250, 246, 236, 0.4);
  margin-top: 6px;
}

/* ============================================================
   LISTAS (cervejas, bebidas, doses)
   ============================================================ */
.two-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.list-block {
  padding: 28px 28px 24px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.list-block--card {
  text-align: center;
}

.list-block__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.list-block__note {
  font-size: 0.88rem;
  color: rgba(250, 246, 236, 0.75);
  margin-bottom: 16px;
  line-height: 1.55;
}

.list-block__prices {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 14px;
  color: var(--gold-300);
  font-size: 0.95rem;
}

.list-block__prices strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--ivory);
  margin-right: 6px;
}

.list-block__items {
  color: var(--ivory);
  font-size: 1rem;
  margin-bottom: 6px;
}

.list-block__items-en {
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(250, 246, 236, 0.5);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(231, 207, 145, 0.18);
}

.list__name {
  flex: 1;
  font-size: 0.95rem;
  color: var(--ivory);
}

.list__price {
  font-weight: 600;
  color: var(--gold-300);
  font-size: 0.92rem;
  white-space: nowrap;
}

/* itens da list não-list-block-card precisam de container */
.two-cols > .list {
  padding: 28px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* ============================================================
   EXTRAS (salada adicionais)
   ============================================================ */
.extras {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.extras__title {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 14px;
  font-weight: 600;
}

.extras__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.extras__list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: rgba(250, 246, 236, 0.85);
}

.extras__list li span:last-child {
  color: var(--gold-300);
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: 80px;
  padding: 60px 28px 50px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}

.footer__inner { max-width: 600px; margin: 0 auto; }

.footer__logo {
  display: block;
  width: 180px;
  height: auto;
  margin: 0 auto 18px;
  mix-blend-mode: screen;
}

.footer__sub {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 24px;
}

.footer__hours {
  font-size: 0.95rem;
  color: rgba(250, 246, 236, 0.7);
  margin-bottom: 16px;
}

.footer__legal {
  font-size: 0.78rem;
  color: rgba(250, 246, 236, 0.4);
  font-style: italic;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 720px) {
  .happy {
    grid-template-columns: 1fr;
    padding: 32px 22px;
    gap: 28px;
  }

  .happy__badge { width: 100%; }

  .section { padding: 60px 18px 30px; }

  .nav__list { justify-content: flex-start; }

  .hero { min-height: 80vh; padding: 60px 20px; }
}
