/* ============================================================
   Ana Júlia Noivas — Landing
   Mobile-first. Palette: marfim / champagne / rosé / carvão.
   Display: Cormorant Garamond · Body: Montserrat. (No red.)
   ============================================================ */

:root {
  --ivory:        #F8F4ED;
  --ivory-deep:   #F0E8DB;
  --ivory-warm:   #FBF8F2;
  --champagne:    #BF9F66;   /* tweakable accent */
  --champagne-dk: #A8884F;
  --rose:         #E4D2C8;
  --rose-soft:    #F1E6DF;
  --charcoal:     #2A2622;
  --charcoal-2:   #4B453E;
  --charcoal-3:   #6B6258;
  --line:         rgba(42,38,34,.14);
  --line-soft:    rgba(42,38,34,.08);
  --white:        #ffffff;

  --font-display: 'Marcellus', Georgia, serif; /* tweakable */
  --font-body:    'Montserrat', system-ui, sans-serif;

  --wa-green:     #25D366;

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);
  --sec-y: clamp(64px, 11vw, 140px);

  --ease: cubic-bezier(.4, .12, .2, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: .005em;
}

.serif-italic { font-family: var(--font-display); font-style: italic; }

/* ---------- shared bits ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--champagne-dk);
  margin: 0 0 22px;
}
.eyebrow.light { color: var(--rose); }

.rule {
  width: 54px; height: 1px; background: var(--champagne);
  border: 0; margin: 0;
}
.rule.center { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase;
  padding: 18px 34px;
  border: 1px solid var(--champagne);
  background: var(--champagne);
  color: #fff;
  border-radius: 2px;
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease),
              transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: 0 8px 24px -14px rgba(168,136,79,.7);
  white-space: nowrap;
}
.btn:hover { background: var(--champagne-dk); border-color: var(--champagne-dk);
  transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(168,136,79,.85); }
.btn svg { width: 17px; height: 17px; }

.btn.ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.55);
  box-shadow: none;
}
.btn.ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn.dark { background: var(--charcoal); border-color: var(--charcoal); }
.btn.dark:hover { background: #1c1916; border-color: #1c1916; }

.btn.wa {
  background: var(--wa-green); border-color: var(--wa-green); color: #fff;
  box-shadow: 0 12px 34px -14px rgba(37,211,102,.7);
}
.btn.wa:hover { background: #1ebe5a; border-color: #1ebe5a; }
.btn.wa svg { width: 20px; height: 20px; }

.link-cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--champagne-dk);
  padding-bottom: 4px; border-bottom: 1px solid var(--champagne);
  transition: gap .3s var(--ease), color .3s;
}
.link-cta:hover { gap: 15px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gut);
  transition: background .45s var(--ease), padding .45s var(--ease),
              box-shadow .45s var(--ease), color .45s var(--ease);
  color: #fff;
}
.nav.scrolled {
  background: rgba(248,244,237,.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  color: var(--charcoal);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: 14px;
}

.wordmark { display: grid; }
.wordmark .logo {
  grid-area: 1 / 1;
  height: clamp(58px, 11vw, 78px); width: auto;
  transition: opacity .45s var(--ease), height .45s var(--ease);
}
.wordmark .logo-on-dark { filter: drop-shadow(0 1px 8px rgba(0,0,0,.35)); }
.wordmark .logo-on-light { opacity: 0; }
.nav.scrolled .wordmark .logo { height: clamp(48px, 8vw, 62px); }
.nav.scrolled .logo-on-dark { opacity: 0; }
.nav.scrolled .logo-on-light { opacity: 1; }

.nav-links { display: none; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  opacity: .85; transition: opacity .3s; position: relative; white-space: nowrap;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid currentColor; padding: 11px 22px; border-radius: 2px;
  opacity: .95; transition: background .3s, color .3s; white-space: nowrap;
}
.nav.scrolled .nav-cta:hover { background: var(--charcoal); color: var(--ivory); }
.nav:not(.scrolled) .nav-cta:hover { background: #fff; color: var(--charcoal); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-image: var(--hero-img, url('images/g-ombro-veu.jpg'));
  background-size: cover; background-position: center 22%;
  transform: scale(1.04);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,.42) 0%, rgba(20,16,12,0) 26%, rgba(20,16,12,0) 42%, rgba(20,16,12,.72) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gut) clamp(56px, 12vw, 120px);
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .34em; text-transform: uppercase;
  color: rgba(255,255,255,.82); margin: 0 0 22px;
}
.hero h1 {
  font-size: clamp(40px, 11vw, 92px);
  font-weight: 500; line-height: .98; max-width: 14ch;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}
.hero h1 em { font-style: italic; color: #fff; }
.hero p {
  font-size: clamp(15.5px, 2.4vw, 19px);
  font-weight: 300; line-height: 1.62; max-width: 46ch;
  margin: 24px 0 36px; color: rgba(255,255,255,.92);
}
.hero .btn { box-shadow: 0 10px 40px -12px rgba(0,0,0,.6); }

.hero-variant { display: none; }
.hero-variant.active { display: block; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.scroll-cue .line { width: 1px; height: 38px; background: rgba(255,255,255,.5);
  animation: cuePulse 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes cuePulse { 0%,100%{transform:scaleY(.35);opacity:.4} 50%{transform:scaleY(1);opacity:1} }

/* ============================================================
   LEMA strip
   ============================================================ */
.lema {
  background: var(--rose-soft); color: var(--charcoal);
  text-align: center; padding: clamp(54px, 9vw, 96px) var(--gut);
  border-block: 1px solid var(--line-soft);
}
.lema p {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(26px, 5vw, 46px); line-height: 1.22;
  max-width: 22ch; margin: 0 auto; letter-spacing: .01em;
}
.lema p em { font-style: italic; color: var(--champagne-dk); }
.lema .mark { color: var(--champagne); font-size: 1.4em; line-height: 0; }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { padding: var(--sec-y) 0; background: var(--ivory); text-align: center; }
.manifesto .wrap { max-width: 760px; }
.manifesto h2 {
  font-size: clamp(28px, 5vw, 44px); margin-bottom: 30px; font-weight: 500;
}
.manifesto p {
  font-size: clamp(16px, 2.3vw, 19px); color: var(--charcoal-2);
  line-height: 1.78; margin: 0 0 22px; font-weight: 400;
}
.manifesto p:last-child { margin-bottom: 0; }
.manifesto p strong { font-weight: 500; color: var(--charcoal); }
.manifesto .rule { margin: 0 auto 30px; }

/* ============================================================
   MARCAS (authority)
   ============================================================ */
.marcas {
  background: var(--ivory-deep);
  padding: clamp(54px, 8vw, 96px) 0;
  text-align: center;
  border-block: 1px solid var(--line-soft);
}
.marcas .eyebrow { margin-bottom: 30px; }
.marcas-names {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline;
  gap: clamp(12px, 2.4vw, 28px);
}
.marca {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 4vw, 40px); letter-spacing: .02em;
  color: var(--charcoal); white-space: nowrap;
}
.marca-sep {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px); color: var(--champagne);
  line-height: 1;
}
@media (max-width: 600px) {
  .marca-sep { display: none; }
  .marcas-names { flex-direction: column; gap: 12px; }
  .marca { font-size: 30px; }
}
.marcas-note {
  margin: 34px auto 0; max-width: 56ch;
  font-size: 14px; color: var(--charcoal-3); line-height: 1.7;
}
.marcas-note .hl { color: var(--champagne-dk); font-weight: 600; }

/* feature: text + video side by side */
.marcas-feature {
  display: grid; gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: 1000px; margin: clamp(40px, 6vw, 64px) auto 0;
  text-align: left;
}
@media (min-width: 860px) {
  .marcas-feature { grid-template-columns: 1fr 330px; }
}
.marcas-feature-text .rule { background: var(--champagne); }
.feature-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 3.4vw, 36px); line-height: 1.15;
  color: var(--charcoal); margin: 0 0 20px; max-width: 14ch;
}
.marcas-feature .marcas-note { margin: 0; max-width: 44ch; font-size: 15.5px; line-height: 1.78; }

@media (max-width: 859px) {
  .marcas-feature { text-align: center; justify-items: center; }
  .marcas-feature-text { display: flex; flex-direction: column; align-items: center; }
  .feature-title { max-width: 18ch; }
  .marcas-feature .marcas-note { max-width: 52ch; }
}

.marcas-reel {
  margin: 0 auto;
  width: 100%; max-width: 320px;
  display: flex; flex-direction: column; gap: 14px;
}
.reel-label {
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--champagne-dk); text-align: center;
}
.reel-frame {
  position: relative;
  width: 100%; border-radius: 4px; overflow: hidden;
  background: #000;
  box-shadow: 0 34px 70px -36px rgba(42,38,34,.55);
  aspect-ratio: 9 / 16;
}
.reel-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-frame-border {
  position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.45);
  pointer-events: none; z-index: 3; transition: opacity .4s var(--ease);
}
.reel-frame.playing .reel-frame-border { opacity: 0; }
.reel-play {
  position: absolute; inset: 0; margin: auto; z-index: 4;
  width: 72px; height: 72px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.92); color: var(--charcoal);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.4);
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s;
}
.reel-play svg { width: 30px; height: 30px; margin-left: 3px; }
.reel-play:hover { transform: scale(1.08); background: #fff; }
.reel-frame.playing .reel-play { opacity: 0; pointer-events: none; transform: scale(.8); }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.dif { padding: var(--sec-y) 0; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto clamp(44px, 7vw, 76px); }
.sec-head h2 { font-size: clamp(30px, 6vw, 52px); margin-bottom: 18px; }
.sec-head p { color: var(--charcoal-3); font-size: 16px; margin: 0; }
.sec-head .rule { margin: 0 auto 26px; }

.dif-grid { display: grid; gap: clamp(36px, 5vw, 26px); }
@media (min-width: 820px) { .dif-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; } }

.dif-card {
  text-align: center; padding: clamp(6px,2vw,18px);
}
.dif-icon {
  width: 56px; height: 56px; margin: 0 auto 26px;
  color: var(--champagne-dk);
}
.dif-icon svg { width: 100%; height: 100%; stroke-width: 1; }
.dif-card h3 { font-size: 25px; margin-bottom: 14px; font-weight: 600; }
.dif-card p { color: var(--charcoal-2); font-size: 15px; line-height: 1.75; margin: 0; }
.dif-card .b { color: var(--charcoal); font-weight: 500; }

@media (min-width: 820px) {
  .dif-card { border-left: 1px solid var(--line-soft); }
  .dif-card:first-child { border-left: 0; }
}

/* ============================================================
   EXPERIÊNCIA (image + text)
   ============================================================ */
.exp { background: var(--rose-soft); padding: var(--sec-y) 0; overflow: hidden; }
.exp-grid { display: grid; gap: clamp(36px, 6vw, 72px); align-items: center; }
@media (min-width: 900px) { .exp-grid { grid-template-columns: 1.05fr .95fr; } }

.exp-photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: 2px; overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(42,38,34,.5);
}
.exp-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.exp-photo .frame {
  position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.5);
  pointer-events: none;
}
.exp-text h2 { font-size: clamp(28px, 5vw, 46px); margin-bottom: 26px; }
.exp-text p { color: var(--charcoal-2); font-size: 16.5px; line-height: 1.8; margin: 0 0 20px; }
.exp-text p:last-of-type { margin-bottom: 32px; }
.exp-text .pull { font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px,3vw,26px); color: var(--charcoal); line-height: 1.4; }

/* ============================================================
   COLEÇÃO (gallery)
   ============================================================ */
.colecao { padding: var(--sec-y) 0; }
.gal-filter {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .gal-filter {
    flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto;
    padding-bottom: 6px; margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut);
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .gal-filter::-webkit-scrollbar { display: none; }
  .gal-filter button { flex: none; }
}
.gal-filter button {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 10px 18px; border: 1px solid var(--line); background: transparent;
  color: var(--charcoal-3); border-radius: 2px; cursor: pointer;
  transition: all .3s var(--ease);
}
.gal-filter button:hover { color: var(--charcoal); border-color: var(--champagne); }
.gal-filter button.active { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

.gallery {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 600px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.gal-item {
  position: relative; overflow: hidden; border-radius: 2px; cursor: pointer;
  background: var(--ivory-deep);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
}
.gal-item:hover img { transform: scale(1.05); }
.gal-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,16,12,.62));
  opacity: 1; transition: opacity .4s;
}
.gal-item:hover::after { opacity: 1; }
.gal-cap {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; opacity: 1; transform: translateY(0);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.gal-item:hover .gal-cap { opacity: 1; transform: translateY(0); }
.gal-item.hide { display: none; }

/* desktop: caption reveals on hover for a cleaner grid */
@media (min-width: 1000px) and (hover: hover) {
  .gal-item::after { opacity: 0; }
  .gal-item:hover::after { opacity: 1; }
  .gal-cap { opacity: 0; transform: translateY(8px); }
  .gal-item:hover .gal-cap { opacity: 1; transform: translateY(0); }
}

/* clean, consistent portrait ratio across all breakpoints */
.gal-item { aspect-ratio: 4 / 5; }
@media (min-width: 600px) { .gal-item { aspect-ratio: 3 / 4; } }

.gal-legend { text-align: center; margin-bottom: clamp(36px,6vw,60px); }

/* ============================================================
   PROVA SOCIAL
   ============================================================ */
.prova { background: var(--ivory-warm); color: var(--charcoal); padding: var(--sec-y) 0;
  border-block: 1px solid var(--line-soft); }
.prova .sec-head h2 { color: var(--charcoal); }
.prova .sec-head .rule { background: var(--champagne); }

.google-seal {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line-soft);
  box-shadow: 0 14px 34px -22px rgba(42,38,34,.3);
  padding: 14px 22px; border-radius: 3px; margin-top: 22px;
}
.google-seal .g { font-family: var(--font-body); font-weight: 700; font-size: 22px; letter-spacing: -.02em; }
.google-seal .g .b{color:#4285F4}.google-seal .g .r{color:#EA9D34}.google-seal .g .y{color:#FBBC05}.google-seal .g .g2{color:#34A853}
.google-seal .score { font-family: var(--font-display); font-size: 30px; line-height: 1; }
.google-seal .stars { color: var(--champagne); letter-spacing: 2px; font-size: 15px; }
.google-seal .meta { font-size: 11px; color: var(--charcoal-3); letter-spacing: .04em; }
.seal-wrap { text-align: center; }

.testi-track {
  display: grid; gap: 22px; margin-top: clamp(40px,6vw,64px);
}
@media (min-width: 760px) { .testi-track { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px){ .testi-track { grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 980px; margin-inline: auto; } }

.testi {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  box-shadow: 0 20px 44px -32px rgba(42,38,34,.28);
  padding: clamp(26px, 4vw, 40px);
  display: flex; flex-direction: column; gap: 18px;
}
.testi .stars { color: var(--champagne); letter-spacing: 3px; font-size: 14px; }
.testi blockquote {
  margin: 0; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(19px, 2.4vw, 23px); line-height: 1.55; color: var(--charcoal);
}
.testi .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.testi .avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--champagne), var(--champagne-dk));
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-display); font-size: 19px; font-weight: 600;
}
.testi .name { font-family: var(--font-body); font-size: 13.5px; font-weight: 600; letter-spacing: .03em; }
.testi .role { font-size: 11.5px; color: var(--charcoal-3); margin-top: 1px; }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.como { padding: var(--sec-y) 0; }
.steps { display: grid; gap: 30px; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 56px; } }
@media (min-width: 1040px){ .steps { grid-template-columns: repeat(4, 1fr); gap: 34px; } }

.step { position: relative; }
.step .num {
  font-family: var(--font-display); font-size: 56px; font-weight: 500;
  color: var(--champagne); line-height: 1; margin-bottom: 14px;
  display: flex; align-items: baseline; gap: 14px;
}
.step .num .icon { width: 26px; height: 26px; color: var(--charcoal); }
.step .num .icon svg { width: 100%; height: 100%; stroke-width: 1.2; }
.step h3 { font-size: 21px; margin-bottom: 8px; font-weight: 600; }
.step p { color: var(--charcoal-2); font-size: 14.5px; line-height: 1.7; margin: 0; }
.step::after {
  content: ''; position: absolute; top: 24px; left: -28px; width: 1px; height: 60%;
  background: var(--line-soft); display: none;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta {
  position: relative; color: #fff; text-align: center;
  padding: clamp(80px, 14vw, 170px) var(--gut);
  overflow: hidden;
}
.cta-img {
  position: absolute; inset: 0;
  background: url('images/cta-ambiance.jpg') center 35%/cover;
}
.cta::after { content:''; position:absolute; inset:0; background: rgba(20,16,12,.48); }
.cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta .eyebrow { color: var(--rose); }
.cta h2 { font-size: clamp(30px, 6.5vw, 60px); line-height: 1.08; margin-bottom: 22px; }
.cta p { font-size: clamp(16px, 2.6vw, 20px); font-weight: 300; color: rgba(255,255,255,.9);
  margin: 0 auto 38px; max-width: 40ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ivory-deep); color: var(--charcoal-2); padding: clamp(56px,9vw,96px) 0 0;
  border-top: 1px solid var(--line-soft); }
.footer-grid { display: grid; gap: 44px; }
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.1fr 1fr 1.2fr; gap: 56px; } }

.footer .foot-logo { width: 158px; height: auto; margin-bottom: 20px; }
.footer .tag { font-family: var(--font-display); font-style: italic; font-size: 19px;
  color: var(--charcoal-3); line-height: 1.45; max-width: 28ch; }

.foot-h {
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--champagne-dk); margin: 0 0 18px;
}
.foot-list { display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; line-height: 1.5; }
.foot-list a { display: inline-flex; align-items: center; gap: 10px; transition: color .3s; }
.foot-list a:hover { color: var(--charcoal); }
.foot-list svg { width: 16px; height: 16px; color: var(--champagne-dk); flex: none; }

.foot-map { border-radius: 3px; overflow: hidden; border: 1px solid var(--line-soft); background: #fff; }
.foot-map iframe { width: 100%; height: 200px; border: 0; display: block; filter: grayscale(.4) contrast(.95); }

.footer-bottom {
  margin-top: clamp(44px,7vw,72px); border-top: 1px solid var(--line-soft);
  padding: 24px var(--gut); text-align: center;
  font-size: 11.5px; letter-spacing: .04em; color: var(--charcoal-3);
}
.footer-bottom .maxw { max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; align-items: center; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: grid; place-items: center;
  width: 62px; height: 62px;
  background: var(--wa-green); color: #fff;
  border-radius: 50%; padding: 0;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 40px -10px rgba(37,211,102,.75); }
.wa-float .ic { display: grid; place-items: center; }
.wa-float .ic svg { width: 32px; height: 32px; }
.wa-float .label { display: none; }
.wa-float.pulse::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa-green); animation: waPulse 2.4s var(--ease) infinite;
}
@keyframes waPulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.7);opacity:0} }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

body.no-anim .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
body.no-anim .hero-img { transform: none; }
body.no-anim .scroll-cue .line { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-cue .line, .wa-float.pulse .ic::after { animation: none; }
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(18,14,11,.94);
  display: none; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; transition: opacity .3s;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox .lb-close { position: absolute; top: 22px; right: 26px; color: #fff;
  font-size: 30px; cursor: pointer; opacity: .8; line-height: 1; background: none; border: 0; }
.lightbox .lb-close:hover { opacity: 1; }
