/* ═══════════════════════════════════════════════════════════
   ENTREORLAS · v002 — "Beach Club" edition
   Design language: Lucan Beach Club kit
   Navy #182B4D · Ink #0F1A2F · Pale #E5F3FF · White
   Cormorant Garamond (display) · Jost (UI)
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy:      #182B4D;
  --navy-deep: #0F1A2F;
  --ink:       #0F1A2F;
  --pale:      #E5F3FF;
  --pale-soft: #F2F8FE;
  --white:     #FFFFFF;
  --muted:     #5A6B85;
  --hairline:  rgba(24, 43, 77, 0.14);
  --hairline-light: rgba(255, 255, 255, 0.18);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui:      "Jost", "Century Gothic", Futura, sans-serif;

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: all 0.35s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--navy); color: var(--white); }

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

/* ═══════════ TYPE SYSTEM ═══════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
h2 { font-size: clamp(2.4rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 1.75rem); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
}
.eyebrow::before,
.eyebrow.eyebrow--both::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow--light { color: var(--white); }
.eyebrow--center { justify-content: center; }

.lead { color: var(--muted); font-size: 1.05rem; }

em.accent {
  font-style: italic;
  font-weight: 600;
}

/* ═══════════ BUTTONS — rectangular, uppercase, Jost ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); transform: translateY(-2px); }

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

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn--outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover { background: var(--pale); border-color: var(--pale); transform: translateY(-2px); }

.btn--sm { padding: 12px 24px; font-size: 0.74rem; }

/* ═══════════ HEADER ═══════════ */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
#header.solid {
  background: var(--white);
  border-bottom-color: var(--hairline);
  box-shadow: 0 2px 24px rgba(15, 26, 47, 0.06);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: var(--transition);
}
#header.solid .header-inner { height: 72px; }

.brand {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: var(--transition);
}
.brand small {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-left: 10px;
  opacity: 0.7;
}
#header.solid .brand { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
#header.solid .nav-links a { color: var(--muted); }
#header.solid .nav-links a:hover { color: var(--navy); }

.nav-cta { border: 1px solid rgba(255,255,255,0.55); padding: 11px 26px !important; }
.nav-cta:hover { background: var(--white); color: var(--navy) !important; }
.nav-cta::after { display: none; }
#header.solid .nav-cta { border-color: var(--navy); color: var(--navy) !important; }
#header.solid .nav-cta:hover { background: var(--navy); color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
#header.solid .hamburger span { background: var(--navy); }

/* mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--white);
}
.mobile-nav .btn { font-family: var(--font-ui); font-size: 0.8rem; }
.mobile-close {
  position: absolute;
  top: 28px; right: 32px;
  background: none; border: none;
  color: var(--white);
  font-size: 1.6rem;
}

/* ═══════════ HERO ═══════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 26, 47, 0.55) 0%,
    rgba(24, 43, 77, 0.35) 45%,
    rgba(15, 26, 47, 0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 32px 60px;
  max-width: 900px;
}
.hero-content .eyebrow { margin-bottom: 26px; }
.hero-title {
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; font-weight: 600; }
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 42px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* staggered load */
.hero-content > * {
  opacity: 0;
  transform: translateY(26px);
  animation: heroIn 1s var(--ease) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.15s; }
.hero-content > *:nth-child(2) { animation-delay: 0.3s; }
.hero-content > *:nth-child(3) { animation-delay: 0.45s; }
.hero-content > *:nth-child(4) { animation-delay: 0.6s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* stats bar over hero bottom */
.hero-stats {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0;
  animation: heroIn 1s var(--ease) 0.8s forwards;
}
.hero-stat {
  text-align: center;
  padding: 8px 12px;
  border-left: 1px solid var(--hairline-light);
}
.hero-stat:first-child { border-left: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num sup { font-size: 1.1rem; font-weight: 600; }
.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
}

.hero-scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
}

/* ═══════════ SECTIONS ═══════════ */
.section { padding: 120px 0; }
.section--pale { background: var(--pale); }
.section--pale-soft { background: var(--pale-soft); }
.section--navy { background: var(--navy-deep); }

.section-head {
  max-width: 680px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--muted); }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

/* ═══════════ SOBRE ═══════════ */
.sobre-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
}
.sobre-visual { position: relative; padding-bottom: 70px; padding-right: 60px; }
.sobre-img-main {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.sobre-img-main img,
.sobre-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.sobre-img-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 10px solid var(--white);
  box-shadow: 0 30px 60px rgba(15, 26, 47, 0.18);
}
.sobre-seal {
  position: absolute;
  top: -34px;
  right: 12px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 26, 47, 0.28);
  animation: sealSpin 0.001s;
}
.sobre-seal strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.sobre-seal span {
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 4px;
}

.sobre-text .eyebrow { margin-bottom: 20px; }
.sobre-text h2 { margin-bottom: 24px; }
.sobre-text p { color: var(--muted); margin-bottom: 18px; }

.sobre-features { margin-top: 36px; display: grid; gap: 26px; }
.sobre-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--hairline);
}
.sobre-feature:last-child { border-bottom: none; padding-bottom: 0; }
.sobre-feature-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  color: var(--navy);
  font-size: 1.3rem;
}
.sobre-feature h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.sobre-feature p { font-size: 0.92rem; color: var(--muted); margin: 0; }

.sobre-text .btn { margin-top: 40px; }

/* ═══════════ ORLA CARDS — Lucan "Choose Your Table" style ═══════════ */
.orla-tag {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }

.stay-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 1px 0 var(--hairline);
}
.stay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 60px rgba(15, 26, 47, 0.14);
}
.stay-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.stay-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.stay-card:hover .stay-card-img img { transform: scale(1.07); }
.stay-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 14px;
}
.stay-rating {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.stay-rating small { font-weight: 400; color: var(--muted); }

.stay-card-body {
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}
.stay-kicker {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.stay-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.stay-specs {
  display: grid;
  gap: 0;
  margin-bottom: 24px;
  text-align: left;
}
.stay-specs li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--hairline);
}
.stay-specs li span:last-child { color: var(--ink); font-weight: 500; text-align: right; }
.stay-card-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

/* soon cards (Copacabana) */
.stay-card--soon .stay-card-img {
  background:
    repeating-linear-gradient(135deg,
      rgba(24, 43, 77, 0.05) 0 12px,
      rgba(24, 43, 77, 0.02) 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.soon-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px dashed var(--hairline);
  border-color: rgba(24, 43, 77, 0.3);
  padding: 12px 22px;
}

/* ═══════════ PADRÃO / COMODIDADES ═══════════ */
.padrao-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.padrao-item {
  padding: 44px 34px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: var(--transition);
}
.padrao-item:hover { background: var(--pale-soft); }
.padrao-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 18px;
}
.padrao-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.padrao-item p { font-size: 0.88rem; color: var(--muted); }

/* ═══════════ DEPOIMENTOS ═══════════ */
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.depo-card {
  background: var(--white);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.depo-card::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--pale);
  -webkit-text-stroke: 1px var(--navy);
  position: absolute;
  top: 24px;
  right: 30px;
  opacity: 0.5;
}
.depo-stars {
  color: var(--navy);
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.depo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
  margin-bottom: 26px;
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
.depo-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.depo-name { font-weight: 500; font-size: 0.94rem; }
.depo-source {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.depo-cta { text-align: center; margin-top: 52px; }

/* superhost band */
.superhost-band {
  margin-top: 90px;
  background: var(--navy);
  color: var(--white);
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.superhost-band h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 10px;
}
.superhost-band p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; max-width: 460px; }
.superhost-stats { display: flex; gap: 0; }
.sh-stat {
  text-align: center;
  padding: 0 38px;
  border-left: 1px solid var(--hairline-light);
}
.sh-stat:first-child { border-left: none; }
.sh-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
.sh-label {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

/* ═══════════ GALERIA ═══════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--white);
  background: rgba(24, 43, 77, 0.45);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ═══════════ LOCALIZAÇÃO ═══════════ */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.local-grid + .local-grid {
  margin-top: 90px;
  padding-top: 90px;
  border-top: 1px solid var(--hairline);
}
.local-map {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 10px solid var(--white);
  box-shadow: 0 26px 60px rgba(15, 26, 47, 0.12);
}
.local-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(0.8);
}
.local-text .eyebrow { margin-bottom: 18px; }
.local-text h2 { margin-bottom: 20px; }
.local-text p { color: var(--muted); margin-bottom: 28px; }
.local-points { display: grid; gap: 18px; }
.local-point {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--hairline);
}
.local-point-icon { font-size: 1.4rem; }
.local-point strong {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
}
.local-point span { font-size: 0.82rem; color: var(--muted); }

/* ═══════════ RESERVE CTA ═══════════ */
#reservar {
  position: relative;
  padding: 140px 0;
  background: var(--navy-deep);
  overflow: hidden;
  text-align: center;
}
#reservar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--reservar-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.reservar-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 0 32px; }
.reservar-content .eyebrow { margin-bottom: 24px; }
.reservar-content h2 {
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 20px;
}
.reservar-content h2 em { font-style: italic; font-weight: 600; }
.reservar-content > p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 44px;
}
.reservar-orlas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.reservar-whats {
  padding-top: 36px;
  border-top: 1px solid var(--hairline-light);
}

/* ═══════════ FOOTER ═══════════ */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--hairline-light);
  padding: 90px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 56px;
  padding-bottom: 70px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 26px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline-light);
  transition: var(--transition);
  font-size: 1rem;
}
.footer-social a:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-address {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--hairline-light);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
}

/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(15, 26, 47, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 88vw; max-height: 86vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 26px; right: 34px;
  background: none; border: none;
  color: var(--white);
  font-size: 1.6rem;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--hairline-light);
  color: var(--white);
  font-size: 1.6rem;
  width: 54px; height: 54px;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--white); color: var(--navy); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1080px) {
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .padrao-grid { grid-template-columns: repeat(2, 1fr); }
  .depo-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sobre-grid { grid-template-columns: 1fr; gap: 64px; }
  .sobre-visual { max-width: 520px; }
  .local-grid { grid-template-columns: 1fr; gap: 44px; }
  .local-grid--flip .local-map { order: -1; }
  .superhost-band { padding: 48px 36px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .section { padding: 84px 0; }
  .container { padding: 0 22px; }
  .cards-grid--4, .cards-grid--3, .cards-grid--2 { grid-template-columns: 1fr; }
  .padrao-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .hero-stat:nth-child(3) { border-left: none; }
  .superhost-stats { width: 100%; justify-content: space-between; }
  .sh-stat { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-visual { padding-right: 30px; }
  .sobre-seal { width: 104px; height: 104px; top: -26px; }
  .sobre-seal strong { font-size: 1.6rem; }
}
