/* ============================================================
   Le Jardin de Jeanne — Landing Page
   ============================================================ */

:root {
  /* Greens */
  --green-950: #11251d;
  --green-900: #16302594;
  --green-900s: #163025;
  --green-800: #1f3d31;
  --green-700: #2c5746;
  --green-600: #3a6b56;
  --green-500: #4c8069;

  /* Neutrals — warm */
  --cream: #f5f1e8;
  --cream-2: #ece5d6;
  --cream-3: #e2d9c6;
  --paper: #fbf9f3;
  --ink: #1c2a23;
  --ink-soft: #41504a;
  --ink-mute: #6f7d76;

  /* Accent (tweakable) */
  --accent: #c19a5b;
  --accent-deep: #a87f43;

  /* Type */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --shadow-sm: 0 1px 2px rgba(20,37,29,.06), 0 4px 14px rgba(20,37,29,.06);
  --shadow-md: 0 10px 30px rgba(20,37,29,.12);
  --shadow-lg: 0 24px 60px rgba(20,37,29,.20);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
  letter-spacing: .005em;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--accent);
  color: #2a200e;
  box-shadow: 0 6px 18px rgba(193,154,91,.35);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(168,127,67,.42); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,241,232,.45);
}
.btn-ghost:hover { background: rgba(245,241,232,.12); border-color: var(--cream); transform: translateY(-2px); }
.btn-dark {
  background: var(--green-800);
  color: var(--cream);
}
.btn-dark:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--green-800);
  border-color: rgba(31,61,49,.30);
}
.btn-outline:hover { border-color: var(--green-700); background: rgba(31,61,49,.04); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(245,241,232,.86);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(31,61,49,.08);
  padding: 13px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-badge {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--cream);
  display: grid; place-items: center;
  flex: none;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease);
}
.scrolled .brand-badge { width: 40px; height: 40px; }
.brand-badge img { width: 78%; mix-blend-mode: multiply; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .34em;
  color: var(--cream);
  transition: color .4s var(--ease);
  padding-left: .34em;
}
.brand-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
  margin-top: 3px;
}
.scrolled .brand-name { color: var(--green-800); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 14px;
  letter-spacing: .03em;
  color: rgba(245,241,232,.92);
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.scrolled .nav-links a { color: var(--ink-soft); }
.scrolled .nav-links a:hover { color: var(--green-800); }

.nav-cta .btn { padding: 11px 22px; }

.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0;
}
.menu-toggle span {
  display: block; height: 2px; width: 24px; margin: 0 auto;
  background: var(--cream); border-radius: 2px;
  transition: all .3s var(--ease);
}
.scrolled .menu-toggle span { background: var(--green-800); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(17,37,29,.55) 0%, rgba(17,37,29,.18) 34%, rgba(17,37,29,.42) 66%, rgba(17,37,29,.90) 100%),
    rgba(31,61,49,.50);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding-bottom: clamp(56px, 9vh, 110px);
  padding-top: 140px;
}
.hero .eyebrow { color: var(--accent); }
.hero .eyebrow::before { background: var(--accent); }
.hero h1 {
  font-size: clamp(44px, 7.4vw, 104px);
  font-weight: 500;
  margin: 22px 0 0;
  max-width: 16ch;
  letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  margin-top: 26px;
  max-width: 52ch;
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(245,241,232,.88);
  line-height: 1.65;
}
.hero-actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-locales {
  margin-top: 54px;
  display: flex; gap: 14px; flex-wrap: wrap;
  border-top: 1px solid rgba(245,241,232,.22);
  padding-top: 26px;
}
.hero-locale {
  display: flex; flex-direction: column; gap: 2px;
  padding-right: 30px;
}
.hero-locale b {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500;
}
.hero-locale span { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(245,241,232,.7); }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(245,241,232,.6);
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint i {
  display: block; width: 1px; height: 36px;
  background: linear-gradient(rgba(245,241,232,.7), transparent);
  animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3; transform:scaleY(.6) translateY(-6px);} 50%{opacity:1; transform:scaleY(1) translateY(0);} }

/* ============================================================
   SECTIONS — base
   ============================================================ */
section { position: relative; }
.section-pad { padding: clamp(80px, 11vh, 150px) 0; }

.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 {
  font-size: clamp(34px, 4.6vw, 62px);
  margin-top: 18px;
}
.section-head h2 em { font-style: italic; color: var(--green-600); }
.section-head .lead {
  margin-top: 20px;
  font-size: clamp(16px, 1.4vw, 18.5px);
  color: var(--ink-soft);
  max-width: 60ch;
}
.section-head.center .lead { margin-inline: auto; }

/* ---------- Intro / about ---------- */
.intro { background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.intro-copy h2 { font-size: clamp(32px, 4.2vw, 56px); margin-top: 18px; }
.intro-copy .lead { margin-top: 22px; color: var(--ink-soft); font-size: 18px; }
.intro-copy p + p { margin-top: 16px; }
.intro-hosts { margin-top: 30px; display: flex; gap: 32px; flex-wrap: wrap; }
.intro-host { display: flex; align-items: center; gap: 14px; }
.intro-host .host-photo {
  width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex: none;
  box-shadow: var(--shadow-sm); border: 2px solid var(--cream);
}
.intro-host .host-photo img { width: 100%; height: 100%; object-fit: cover; }
.intro-host .sig-name { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--green-700); line-height: 1.1; }
.intro-host .sig-role { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-top: 3px; }

.intro-figure { position: relative; }
.intro-figure .fig-main {
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.intro-figure .fig-main img { width: 100%; height: 100%; object-fit: cover; }
.intro-figure .fig-badge {
  position: absolute; left: -28px; bottom: 44px;
  background: var(--green-800); color: var(--cream);
  padding: 22px 26px; border-radius: 12px;
  box-shadow: var(--shadow-md); max-width: 220px;
}
.intro-figure .fig-badge b { font-family: var(--font-display); font-size: 40px; display: block; line-height: 1; color: var(--accent); }
.intro-figure .fig-badge span { font-size: 13px; color: rgba(245,241,232,.85); margin-top: 6px; display: block; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.locais { background: var(--cream); }
.locale-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  padding: clamp(48px, 7vh, 96px) 0;
}
.locale-block + .locale-block { border-top: 1px solid var(--cream-3); }
.locale-block.flip .locale-media { order: 2; }

/* Location media placeholder (coming-soon photos) */
.locale-media.placeholder { display: block; }
.lm-coming {
  height: 100%;
  border-radius: 12px;
  border: 1.5px dashed rgba(245,241,232,.35);
  background: linear-gradient(155deg, var(--green-700), var(--green-950));
  color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 36px;
}
.lm-coming svg { width: 52px; height: 52px; color: var(--accent); }
.lm-coming span { font-family: var(--font-display); font-size: 28px; line-height: 1; }
.lm-coming small { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(245,241,232,.7); }

/* Gallery empty state */
.gallery-empty { color: rgba(245,241,232,.82); font-size: 17px; margin-top: 30px; max-width: 52ch; line-height: 1.6; }
.gallery-empty[hidden] { display: none; }

.locale-media {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: clamp(380px, 46vw, 540px);
}
.locale-media .lm {
  border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.locale-media .lm img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.locale-media .lm:hover img { transform: scale(1.06); }
.locale-media .lm-tall { grid-row: span 2; }

.locale-copy .locale-index {
  font-family: var(--font-display);
  font-size: 15px; color: var(--accent-deep); letter-spacing: .1em;
}
.locale-copy h3 {
  font-size: clamp(32px, 4vw, 50px);
  margin: 10px 0 0;
}
.locale-copy .locale-where {
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 12px;
  display: flex; align-items: center; gap: 8px;
}
.locale-copy .locale-where svg { width: 14px; height: 14px; color: var(--green-600); }
.locale-copy p { margin-top: 20px; color: var(--ink-soft); }
.locale-feats {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.locale-feats li {
  font-size: 13.5px; letter-spacing: .02em;
  padding: 8px 15px; border-radius: 100px;
  background: var(--paper); border: 1px solid var(--cream-3);
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 7px;
}
.locale-feats li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.locale-copy .btn { margin-top: 30px; }

/* ============================================================
   GALLERY
   ============================================================ */
.galeria { background: var(--green-900s); color: var(--cream); }
.galeria .section-head h2 em { color: var(--accent); }
.galeria .section-head .lead { color: rgba(245,241,232,.78); }

.gallery-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 34px;
}
.filter-chip {
  font-family: var(--font-sans); font-size: 13.5px; letter-spacing: .04em;
  padding: 9px 20px; border-radius: 100px; cursor: pointer;
  background: transparent; color: rgba(245,241,232,.78);
  border: 1px solid rgba(245,241,232,.22);
  transition: all .3s var(--ease);
}
.filter-chip:hover { border-color: rgba(245,241,232,.5); color: var(--cream); }
.filter-chip.active { background: var(--accent); color: #2a200e; border-color: var(--accent); }

.gallery-grid {
  margin-top: 34px;
  columns: 3;
  column-gap: 14px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: opacity .45s var(--ease), transform .45s var(--ease), filter .45s var(--ease);
}
.gallery-item img { width: 100%; height: auto; transition: transform 1s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .gi-tag {
  position: absolute; left: 14px; bottom: 14px;
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream); z-index: 2;
  opacity: 0; transform: translateY(8px);
  transition: all .4s var(--ease);
}
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 55%, rgba(17,37,29,.7));
  opacity: 0; transition: opacity .4s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .gi-tag { opacity: 1; transform: translateY(0); }
.gallery-item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13,26,20,.94);
  display: none; align-items: center; justify-content: center;
  padding: 30px;
  opacity: 0; transition: opacity .3s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: min(1100px, 92vw); max-height: 86vh;
  border-radius: 8px; box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(245,241,232,.12); border: 1px solid rgba(245,241,232,.2);
  color: var(--cream); cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  transition: background .25s var(--ease);
}
.lightbox-close { top: 26px; right: 26px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev { left: 26px; }
.lightbox-nav.next { right: 26px; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(245,241,232,.25); }
.lightbox-close svg, .lightbox-nav svg { width: 22px; height: 22px; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais { background: var(--paper); }
.dif-grid {
  margin-top: 54px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--cream-3);
  border: 1px solid var(--cream-3); border-radius: 16px; overflow: hidden;
}
.dif-card {
  background: var(--paper);
  padding: clamp(28px, 3vw, 44px);
  transition: background .4s var(--ease);
}
.dif-card:hover { background: var(--cream); }
.dif-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 20px; color: var(--accent-deep);
}
.dif-card h3 { font-size: 25px; margin-top: 16px; }
.dif-card p { margin-top: 12px; color: var(--ink-soft); font-size: 15.5px; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos { background: var(--cream); }
.dep-grid {
  margin-top: 54px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.dep-card {
  background: var(--paper);
  border: 1px solid var(--cream-3);
  border-radius: 16px;
  padding: 34px 32px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.dep-stars { display: flex; gap: 3px; color: var(--accent); }
.dep-stars svg { width: 17px; height: 17px; }
.dep-quote {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.45;
  margin-top: 20px; color: var(--ink);
  flex: 1;
}
.dep-foot { margin-top: 26px; display: flex; align-items: center; gap: 13px; }
.dep-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--green-700); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 19px;
}
.dep-meta b { display: block; font-family: var(--font-sans); font-weight: 500; font-size: 15px; }
.dep-meta span { font-size: 12.5px; color: var(--ink-mute); display: flex; align-items: center; gap: 6px; }
.dep-source { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-deep); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--green-900s); color: var(--cream); }
.faq-layout {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.faq .section-head h2 em { color: var(--accent); }
.faq-aside p { margin-top: 20px; color: rgba(245,241,232,.78); }
.faq-aside .btn { margin-top: 30px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid rgba(245,241,232,.16); }
.faq-item:last-child { border-bottom: 1px solid rgba(245,241,232,.16); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  color: var(--cream); text-align: left;
  font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 26px);
  padding: 26px 50px 26px 0; position: relative;
  display: flex; align-items: center;
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-q .icon {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; flex: none;
}
.faq-q .icon::before, .faq-q .icon::after {
  content: ""; position: absolute; background: var(--accent);
  left: 50%; top: 50%;
}
.faq-q .icon::before { width: 16px; height: 2px; transform: translate(-50%,-50%); }
.faq-q .icon::after { width: 2px; height: 16px; transform: translate(-50%,-50%); transition: transform .35s var(--ease); }
.faq-item.open .faq-q .icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease), opacity .4s var(--ease), padding .4s var(--ease);
  opacity: 0;
}
.faq-item.open .faq-a { opacity: 1; padding-bottom: 26px; }
.faq-a p { color: rgba(245,241,232,.82); font-size: 16px; padding-right: 40px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { position: relative; color: var(--cream); overflow: hidden; }
.cta-final-bg { position: absolute; inset: 0; z-index: 0; }
.cta-final-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-final-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(17,37,29,.92), rgba(22,48,37,.72)); }
.cta-final .wrap { position: relative; z-index: 2; text-align: center; padding: clamp(90px, 14vh, 170px) var(--gutter); }
.cta-final h2 { font-size: clamp(38px, 5.5vw, 76px); }
.cta-final h2 em { font-style: italic; color: var(--accent); }
.cta-final p { margin: 22px auto 0; max-width: 50ch; color: rgba(245,241,232,.85); font-size: 18px; }
.cta-final .hero-actions { justify-content: center; margin-top: 40px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-950); color: rgba(245,241,232,.7); padding: 70px 0 36px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(245,241,232,.12);
}
.footer-brand .brand-badge { box-shadow: none; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { margin-top: 20px; max-width: 34ch; font-size: 15px; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.footer-col ul { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 15px; transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 13px; gap: 16px; flex-wrap: wrap;
}
.footer-bottom .made { color: rgba(245,241,232,.45); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,.5); }
.wa-float svg { width: 30px; height: 30px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-figure { max-width: 480px; }
  .locale-block, .locale-block.flip .locale-media { grid-template-columns: 1fr; order: 0; }
  .locale-block .locale-media { order: -1 !important; }
  .faq-layout { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  .dep-grid { grid-template-columns: 1fr; max-width: 520px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .gallery-grid { columns: 1; }
  .dif-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-locale { padding-right: 18px; }
  .intro-figure .fig-badge { left: 12px; }
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-nav.prev { left: 10px; } .lightbox-nav.next { right: 10px; }
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed; inset: 0; z-index: 150;
  background: var(--green-900s);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a { color: var(--cream); font-family: var(--font-display); font-size: 30px; padding: 10px; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn { margin-top: 20px; }
.mobile-nav .mn-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--cream); cursor: pointer; }
.mobile-nav .mn-close svg { width: 30px; height: 30px; }


/* ============================================================
   MAPA (Leaflet)
   ============================================================ */
.mapa { background: var(--cream); }
.mapa .section-head.center { text-align: center; }
.mapa-layout {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 28px;
  align-items: stretch;
}
.mapa-list { display: flex; flex-direction: column; gap: 12px; }
.mapa-loc {
  display: flex; align-items: center; gap: 16px;
  width: 100%; text-align: left; cursor: pointer;
  background: var(--paper); border: 1px solid var(--cream-3);
  border-radius: 14px; padding: 18px 20px;
  font-family: var(--font-sans); color: var(--ink);
  transition: all .3s var(--ease);
}
.mapa-loc:hover { border-color: var(--green-500); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.mapa-loc.active { background: var(--green-800); border-color: var(--green-800); color: var(--cream); }
.mapa-loc-pin {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--green-700); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 500;
  border: 2px solid transparent;
}
.mapa-loc.active .mapa-loc-pin { background: var(--accent); color: #2a200e; }
.mapa-loc-txt { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.mapa-loc-txt b { font-family: var(--font-display); font-size: 21px; font-weight: 500; line-height: 1.05; }
.mapa-loc-txt span { font-size: 13px; color: var(--ink-mute); letter-spacing: .01em; }
.mapa-loc.active .mapa-loc-txt span { color: rgba(245,241,232,.7); }
.mapa-loc-arrow { font-size: 22px; color: var(--accent-deep); transition: transform .3s var(--ease); }
.mapa-loc:hover .mapa-loc-arrow { transform: translateX(4px); }
.mapa-loc.active .mapa-loc-arrow { color: var(--accent); }

.mapa-canvas {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--cream-3); box-shadow: var(--shadow-md);
}
#ljMap { width: 100%; height: 520px; z-index: 0; background: var(--cream-2); }

/* Custom teardrop pin with count */
.lj-pin { background: transparent; border: 0; position: relative; }
.lj-pin .pin-tear {
  display: block; width: 26px; height: 26px; margin-left: 3px;
  background: var(--green-700);
  border: 3px solid var(--cream);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 9px rgba(0,0,0,.32);
}
.lj-pin .pin-count {
  position: absolute; top: 1px; left: 0; width: 32px; height: 26px;
  display: grid; place-items: center;
  color: var(--cream); font-family: var(--font-display);
  font-size: 14px; font-weight: 600; pointer-events: none;
}

/* Popup */
.leaflet-popup-content-wrapper {
  background: var(--paper); border-radius: 12px;
  box-shadow: 0 10px 30px rgba(17,37,29,.22);
}
.leaflet-popup-content { margin: 15px 18px; font-family: var(--font-sans); }
.leaflet-popup-tip { background: var(--paper); }
.lj-pop { display: flex; flex-direction: column; gap: 3px; min-width: 170px; }
.lj-pop b { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--green-800); }
.lj-pop span { font-size: 13px; color: var(--ink-mute); }
.lj-pop .lj-pop-count {
  margin-top: 6px; font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-deep);
}
.lj-pop a {
  margin-top: 9px; font-size: 13px; font-weight: 500; letter-spacing: .02em;
  color: var(--accent-deep); text-decoration: none;
}
.lj-pop a:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .mapa-layout { grid-template-columns: 1fr; gap: 22px; }
  #ljMap { height: 400px; }
}
