/* ==========================================================================
   Vida Bela Lofts Cumbuco — styles.css
   ========================================================================== */

/* ---- Fonts (self-hosted) ---- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/fraunces-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/fraunces-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/fraunces-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/outfit-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/outfit-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/outfit-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/outfit-700.woff2') format('woff2');
}

/* ---- Design tokens ---- */
:root {
  --bg: #FBF7F0;
  --bg-alt: #F3ECDE;
  --surface: #FFFFFF;
  --ink: #1E3A45;
  --ink-soft: #48626E;
  --brand: #0E7490;
  --brand-deep: #0A4A5C;
  --brand-tint: #DFF0F3;
  --accent: #C24E2F;
  --accent-hover: #A84325;
  --accent-soft: #E76F51;
  --gold: #E9A23B;
  --line: #E6DBC8;
  --whatsapp: #1FAF54;
  --shadow-sm: 0 2px 8px rgba(30, 58, 69, .08);
  --shadow-md: 0 10px 30px rgba(30, 58, 69, .12);
  --shadow-lg: 0 24px 60px rgba(10, 74, 92, .18);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --container: 1180px;
  --header-h: 76px;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0 0 1em; }

a { color: var(--brand); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

ul { padding-left: 1.2em; }

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding-block: clamp(4rem, 9vw, 6.5rem); }
.section--alt { background: var(--bg-alt); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--accent-soft);
  display: block;
  margin-bottom: .6rem;
  letter-spacing: .01em;
}

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.7rem); }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); color: #fff; }

.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover { background: #178A42; color: #fff; }

.btn--ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .65); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .24); color: #fff; }

.btn--outline { background: transparent; color: var(--brand-deep); border-color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; }

/* ---- Header ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .3s ease, box-shadow .3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header--solid,
.site-header.is-scrolled {
  background: rgba(251, 247, 240, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
  color: #fff;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.brand small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  opacity: .85;
}
.site-header--solid .brand,
.site-header.is-scrolled .brand { color: var(--brand-deep); }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a:not(.btn) {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: .98rem;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.nav a:not(.btn):hover { border-bottom-color: var(--gold); }
.site-header--solid .nav a:not(.btn),
.site-header.is-scrolled .nav a:not(.btn) { color: var(--ink); }
.nav a[aria-current="page"] { border-bottom-color: var(--accent-soft); }
.nav .btn { padding: .55rem 1.2rem; font-size: .92rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: #fff;
  padding: 8px;
}
.site-header--solid .nav-toggle,
.site-header.is-scrolled .nav-toggle { color: var(--ink); }
.nav-toggle svg { width: 100%; height: 100%; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .6rem 1.25rem 1.25rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a:not(.btn) {
    color: var(--ink) !important;
    padding: .8rem .2rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav .btn { margin-top: 1rem; justify-content: center; }
}

/* ---- Hero (home) ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.hero__media, .hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__media img { animation: hero-zoom 18s ease-out forwards; }
@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 40, 52, .42) 0%, rgba(10, 40, 52, .05) 34%, rgba(8, 42, 54, .78) 100%);
}
.hero__content {
  padding-block: clamp(6rem, 14vh, 9rem) clamp(5rem, 12vh, 8rem);
  color: #fff;
  max-width: 720px;
}
.hero__content .eyebrow { color: var(--gold); font-size: 1.3rem; }
.hero__content h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6.5vw, 4.3rem);
  font-weight: 700;
  margin-bottom: .35em;
  text-shadow: 0 2px 24px rgba(8, 42, 54, .45);
}
.hero__content p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 34em;
  color: rgba(255, 255, 255, .92);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .85);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
}
.hero__scroll svg { animation: bob 2.2s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---- Page hero (internal pages) ---- */
.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: clamp(340px, 52vh, 480px);
  color: #fff;
  overflow: hidden;
}
.page-hero__media, .page-hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10, 40, 52, .38), rgba(8, 42, 54, .74));
}
.page-hero__content { padding-block: calc(var(--header-h) + 2.5rem) 3rem; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: .2em; }
.page-hero p { color: rgba(255,255,255,.9); max-width: 46em; font-size: 1.1rem; margin: 0; }
.page-hero .eyebrow { color: var(--gold); }

/* ---- Highlights strip ---- */
.highlights {
  background: var(--brand-deep);
  color: #fff;
  padding-block: 1.4rem;
}
.highlights ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem 2rem;
}
.highlights li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 500;
  font-size: .98rem;
  justify-content: center;
}
.highlights svg { color: var(--gold); flex: none; }

/* ---- Sobre / anfitriões ---- */
.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
}
.about-grid figure { margin: 0; position: relative; }
.about-grid figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.about-grid figcaption {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  background: rgba(251, 247, 240, .94);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-size: .92rem;
  text-align: center;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.about-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 1.1rem; }
.about-list li { display: flex; gap: .9rem; align-items: flex-start; }
.about-list svg { flex: none; color: var(--brand); margin-top: .2rem; }
.about-list strong { display: block; }
.about-list span { color: var(--ink-soft); font-size: .98rem; }
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid figure { max-width: 420px; }
}

/* ---- Cards genéricos ---- */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__body h3 { font-size: 1.3rem; margin: 0; }
.card__body p { color: var(--ink-soft); margin: 0; font-size: .99rem; }

/* ---- Lofts ---- */
.lofts-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
}
.loft-card__media { aspect-ratio: 3 / 3.4; overflow: hidden; }
.loft-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform .5s ease; }
.card:hover .loft-card__media img { transform: scale(1.04); }
.loft-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: .4rem 0 .8rem;
}
.loft-facts li {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--brand-tint);
  color: var(--brand-deep);
  border-radius: 999px;
  padding: .32rem .85rem;
  font-size: .88rem;
  font-weight: 500;
}
.loft-facts svg { flex: none; }
.card .btn { align-self: flex-start; margin-top: auto; }

/* ---- Comodidades ---- */
.amenities {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.amenity {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.amenity svg { color: var(--brand); }
.amenity strong { font-size: 1.02rem; }
.amenity span { color: var(--ink-soft); font-size: .9rem; line-height: 1.45; }

/* ---- Galeria ---- */
.gallery {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
}
.gallery a {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery a:hover img { transform: scale(1.06); }
.gallery a:nth-child(1),
.gallery a:nth-child(6) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 30, 40, .93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox__caption {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  text-align: center;
  max-width: 80vw;
}
.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .2s ease;
}
.lightbox button:hover { background: rgba(255, 255, 255, .28); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lightbox { padding: 1rem; }
  .lightbox__prev { left: .5rem; }
  .lightbox__next { right: .5rem; }
}

/* ---- Teasers região ---- */
.teasers {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}
.teaser {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.teaser:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.teaser img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.teaser:hover img { transform: scale(1.05); }
.teaser::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10, 40, 52, 0) 30%, rgba(8, 42, 54, .85));
}
.teaser__body { padding: 1.6rem; color: #fff; }
.teaser__body h3 { color: #fff; font-size: 1.5rem; margin-bottom: .3rem; }
.teaser__body p { color: rgba(255,255,255,.88); font-size: .98rem; margin-bottom: .8rem; }
.teaser__body span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  color: var(--gold);
}

/* ---- Prova social ---- */
.social-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}
.badge-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.2rem 2rem;
  text-align: center;
  min-width: 210px;
}
.badge-card strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand-deep);
  display: block;
}
.badge-card span { color: var(--ink-soft); font-size: .95rem; }

/* ---- Como chegar ---- */
.location-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  align-items: center;
}
.location-grid figure { margin: 0; }
.location-grid figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}
.alert {
  display: flex;
  gap: .9rem;
  background: #FDF3E3;
  border: 1px solid #F0D9AE;
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  margin: 1.2rem 0;
}
.alert svg { flex: none; color: var(--gold); margin-top: .15rem; }
.alert p { margin: 0; font-size: .98rem; }
.location-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.distance-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .55rem; }
.distance-list li { display: flex; align-items: center; gap: .6rem; color: var(--ink-soft); font-size: .99rem; }
.distance-list svg { color: var(--brand); flex: none; }
@media (max-width: 820px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ---- Banda CTA ---- */
.cta-band {
  position: relative;
  isolation: isolate;
  color: #fff;
  text-align: center;
  padding-block: clamp(4.5rem, 10vw, 7rem);
  overflow: hidden;
}
.cta-band__media, .cta-band__media img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8, 42, 54, .72), rgba(8, 42, 54, .82));
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,.9); max-width: 40em; margin-inline: auto; }
.cta-band .hero__actions { justify-content: center; }

/* ---- Passeios / experiências ---- */
.tours-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.tour-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tour-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tour-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--brand-tint);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
}
.tour-card h3 { font-size: 1.25rem; margin: 0; }
.tour-card p { color: var(--ink-soft); font-size: .98rem; margin: 0; flex: 1; }
.tour-card__meta {
  list-style: none;
  padding: .8rem 0 0;
  margin: 0;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: .4rem;
}
.tour-card__meta li { display: flex; gap: .55rem; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.tour-card__meta svg { flex: none; color: var(--brand); margin-top: .15rem; }
.tour-card__meta a { color: var(--brand-deep); font-weight: 500; }

/* ---- Mapa figura ---- */
.map-figure { margin: 0 0 2.2rem; }
.map-figure__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.map-figure img,
.map-figure .mapa-svg { width: 100%; height: auto; display: block; }
.map-figure figcaption {
  font-size: .9rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: .6rem;
}
.map-hint { display: none; }
@media (max-width: 720px) {
  /* no celular o mapa mantem largura legivel e rola na horizontal */
  .map-figure img,
  .map-figure .mapa-svg { width: 880px; max-width: none; }
  .map-hint { display: inline; font-weight: 600; color: var(--brand-deep); }
}

/* ---- Barracas / numbered cards ---- */
.num-badge {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-deep);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
}
.spot-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
}
.spot-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.4rem 1.4rem 1.5rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.spot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.spot-card__head { display: flex; align-items: center; gap: .9rem; margin-bottom: .7rem; }
.spot-card__head h3 { margin: 0; font-size: 1.2rem; }
.spot-card__tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .1rem;
}
.spot-card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .85rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--brand-deep);
  text-decoration: none;
}
.insta-link:hover { text-decoration: underline; }
.insta-link svg { flex: none; color: var(--accent-soft); }

.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .9rem; }
.chip {
  background: var(--bg-alt);
  border-radius: 999px;
  padding: .28rem .8rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ---- Filtros ---- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2rem;
}
.filter-chip {
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: .5rem 1.15rem;
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
}
.filter-chip:hover { border-color: var(--brand); color: var(--brand-deep); }
.filter-chip[aria-pressed="true"] {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  color: #fff;
}
.spot-card.is-hidden { display: none; }

/* ---- Cafés ---- */
.cafe-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

/* ---- Guia do hóspede ---- */
.quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.2rem;
}
.quicknav a {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: .45rem 1.1rem;
  font-size: .92rem;
  font-weight: 500;
  transition: background-color .2s ease;
}
.quicknav a:hover { background: rgba(255,255,255,.28); }

.guide-section { scroll-margin-top: calc(var(--header-h) + 20px); }
.guide-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
}
.guide-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.7rem 1.6rem;
}
.guide-card h3 { display: flex; align-items: center; gap: .7rem; font-size: 1.3rem; }
.guide-card h3 svg { color: var(--brand); flex: none; }
.guide-card p, .guide-card li { color: var(--ink-soft); font-size: .99rem; }
.guide-card ul { margin: .6rem 0 0; display: grid; gap: .45rem; padding-left: 1.15em; }

.check-list { list-style: none !important; padding: 0 !important; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; }
.check-list svg { flex: none; color: var(--whatsapp); margin-top: .2rem; }

.wifi-table { width: 100%; border-collapse: collapse; margin-top: .8rem; font-size: .98rem; }
.wifi-table th, .wifi-table td { text-align: left; padding: .65rem .8rem; border-bottom: 1px solid var(--line); }
.wifi-table th { font-weight: 600; color: var(--brand-deep); font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; }
.wifi-table code {
  background: var(--bg-alt);
  border-radius: 6px;
  padding: .15rem .5rem;
  font-size: .95em;
}

details.accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  margin-top: .9rem;
}
details.accordion summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 1.2rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
details.accordion summary::-webkit-details-marker { display: none; }
details.accordion summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--brand);
  line-height: 1;
  transition: transform .2s ease;
}
details.accordion[open] summary::after { transform: rotate(45deg); }
details.accordion .accordion__body { padding: 0 1.2rem 1.2rem; color: var(--ink-soft); font-size: .98rem; }
details.accordion .accordion__body ul { margin: 0; display: grid; gap: .4rem; }

/* ---- Footer ---- */
.site-footer {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, .85);
  padding: clamp(3rem, 7vw, 4.5rem) 0 0;
  font-size: .97rem;
}
.site-footer a { color: #fff; }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  padding-bottom: 2.5rem;
}
.footer-brand .brand { color: #fff; margin-bottom: .8rem; }
.footer-grid h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-grid li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-grid li svg { flex: none; margin-top: .25rem; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 1.2rem 0;
  text-align: center;
  font-size: .87rem;
  color: rgba(255, 255, 255, .6);
}

/* ---- WhatsApp float ---- */
.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(20, 120, 60, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(20, 120, 60, .55); }
.wa-float svg { width: 30px; height: 30px; }

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; }
  .hero__scroll svg { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 200;
  background: var(--brand-deep);
  color: #fff;
  padding: .6rem 1.2rem;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }
