:root {
  --navy: #1b2430;
  --navy-soft: #232f3d;
  --mint: #7ecdb0;
  --mint-light: #a9e2cb;
  --mint-deep: #2f6b52;
  --amber: #c9915a;
  --amber-light: #e3bf93;
  --amber-deep: #8a5f2f;
  --cream: #f7f4ee;
  --white: #ffffff;
  --text: #1b2430;
  --text-muted: #5b6470;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Nunito Sans", -apple-system, Segoe UI, sans-serif;
  --radius: 4px;
  --shadow: 0 20px 40px -20px rgba(27, 36, 48, 0.35);
}

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

html { scroll-behavior: smooth; }

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

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

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

a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 1000;
  background: var(--mint);
  color: var(--navy);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--amber-deep);
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--amber-deep);
}
.section-dark .kicker { color: var(--mint-light); }
.section-dark .kicker::before { background: var(--mint-light); }

.section { padding: 96px 0; scroll-margin-top: 76px; }
.hero { scroll-margin-top: 76px; }
.section-dark { background: var(--navy); color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--mint); color: var(--navy); }
.btn-primary:hover { background: var(--mint-light); }

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

.btn-outline-dark { border-color: var(--navy); color: var(--navy); }
.btn-outline-dark:hover { border-color: var(--amber); background: var(--navy); color: var(--white); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(27, 36, 48, 0.94);
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 42px; width: auto; }
.brand span { font-family: var(--serif); color: var(--white); font-size: 20px; letter-spacing: 0.5px; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--mint);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--white); display: block; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: linear-gradient(180deg, rgba(27,36,48,0.55) 0%, rgba(27,36,48,0.85) 100%), url("images/lounge-noite-2.jpg") center/cover no-repeat;
}
.hero .container { position: relative; z-index: 2; max-width: 720px; }
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  z-index: 2;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.about-media .float-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--amber);
  color: var(--navy);
  padding: 18px 22px;
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  box-shadow: var(--shadow);
  max-width: 220px;
}
.about-text h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 20px; }
.about-text p { margin-bottom: 18px; color: var(--text-muted); }

/* Day-to-night timeline */
.timeline {
  margin-top: 64px;
  position: relative;
}
.timeline-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--amber-light), #c99a9a, var(--mint-light));
}
.timeline-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.timeline-item { padding-top: 34px; position: relative; }
.timeline-item time {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
.timeline-item:nth-child(1) time { color: var(--amber-light); }
.timeline-item:nth-child(2) time { color: #d9a9a9; }
.timeline-item:nth-child(3) time { color: var(--mint-light); }
.timeline-item h3 { font-size: 20px; margin-bottom: 10px; color: var(--white); }
.timeline-item p { font-size: 14.5px; color: rgba(255,255,255,0.65); max-width: 32ch; }

.section-head { max-width: 640px; margin: 0 0 48px; }

/* Menu — editorial list */
.menu-editorial {
  border-top: 1px solid rgba(27,36,48,0.15);
}
.menu-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(27,36,48,0.15);
}
.menu-row h3 { font-size: 22px; padding-left: 16px; border-left: 3px solid var(--amber); }
.menu-row:last-child h3 { border-left-color: var(--mint-deep); }
.menu-row ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 28px; }
.menu-row li { color: var(--text-muted); font-size: 15px; }
.menu-cta { margin-top: 44px; }
.menu-cta p { color: var(--text-muted); margin-bottom: 18px; max-width: 46ch; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-grid figure {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.gallery-grid button {
  display: block;
  width: 100%; height: 100%;
  padding: 0; margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid button:hover img, .gallery-grid button:focus-visible img { transform: scale(1.08); }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(27,36,48,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 16px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 32px; cursor: pointer;
  background: none; border: none; line-height: 1;
}

/* Info / Contact */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.info-card h3 { font-size: 22px; margin-bottom: 24px; }
.info-row { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.info-row .icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(126,205,176,0.15);
  color: var(--mint);
  border-radius: 50%;
  font-size: 16px;
}
.info-row strong { display: block; font-size: 15px; margin-bottom: 2px; }
.info-row span, .info-row a { color: var(--text-muted); font-size: 14.5px; }
.info-row a:hover { color: var(--mint); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
  position: relative;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
.map-link {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.map-link:hover { color: var(--mint-deep); }

.hours-table { width: 100%; margin-top: 4px; }
.hours-table tr { border-bottom: 1px dashed rgba(27,36,48,0.12); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 8px 0; font-size: 14.5px; }
.hours-table td:first-child { color: var(--text); font-weight: 500; }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
  text-align: center;
  font-size: 13.5px;
}
.site-footer .brand { justify-content: center; margin-bottom: 14px; }
.site-footer a:hover { color: var(--mint); }

/* WhatsApp float button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  z-index: 90;
  color: var(--white);
  font-size: 26px;
}
.wa-float:hover { transform: scale(1.06); }

@media (max-width: 900px) {
  .about-grid, .info-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .menu-row { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--navy-soft);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s ease;
  }
  .nav-toggle { display: flex; }
  .timeline-row, .gallery-grid { grid-template-columns: 1fr; }
  .timeline-track { display: none; }
  .section { padding: 64px 0; }
  .about-media .float-tag { position: static; margin-top: 16px; max-width: none; }
  .wa-float { width: 48px; height: 48px; font-size: 20px; bottom: 16px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery-grid img, .btn, .site-header, .nav-links, .wa-float { transition: none; }
  .scroll-hint { animation: none; }
}
