/* =========================================================
   JP TRANSFER PARIS — Landing Page
   Paleta: azul-noite #0A0F1E · dourado #C9A84C · branco
   Tipografia: Cormorant Garamond (display) + Manrope (texto)
   ========================================================= */

:root {
  --navy:        #0A0F1E;
  --navy-2:      #0E1426;
  --navy-3:      #131B33;
  --gold:        #C9A84C;
  --gold-2:      #DCC174;
  --gold-deep:   #A8862F;
  --white:       #FFFFFF;
  --cream:       #F6F1E7;
  --cream-2:     #EFE7D6;
  --ink:         #1B1E27;
  --ink-soft:    #4A4E5A;

  --line-dark:   rgba(201,168,76,0.18);
  --line-light:  rgba(27,30,39,0.10);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Manrope', system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Libera o toque nas imagens (evita "zona morta" de rolagem no mobile) */
image-slot, image-slot::part(frame), image-slot::part(image) { touch-action: pan-y pinch-zoom; }
.gallery-carousel image-slot, .gallery-carousel image-slot::part(frame), .gallery-carousel image-slot::part(image) { touch-action: pan-x pan-y pinch-zoom; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
section { position: relative; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow { max-width: 820px; }

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
.display {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
}
.h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.14;
}
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}
em.gold { font-style: italic; color: var(--gold-2); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 19px 34px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  position: relative;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(201,168,76,0.5);
}
.btn-cta-final { font-size: 1.05rem; padding: 22px 44px; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-dark);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  transform: translateY(-3px);
}
.btn-ghost.on-light {
  color: var(--ink);
  border-color: var(--line-light);
}
.btn-ghost.on-light:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn .wa {
  display: inline-flex;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.btn .arrow {
  display: inline-flex;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(5px); }

/* ---------- Seções claras / escuras ---------- */
.section { padding: clamp(72px, 9vw, 130px) 0; }
.s-dark   { background: var(--navy); color: var(--white); }
.s-dark-2 { background: var(--navy-2); color: var(--white); }
.s-light  { background: var(--cream); color: var(--ink); }
.s-light .lead, .s-light p { color: var(--ink-soft); }
.s-light h1, .s-light h2, .s-light h3 { color: var(--ink); }
.s-light em.gold { color: var(--gold-deep); }

/* hairline divider top */
.s-dark + .s-dark, .s-dark-2 + .s-dark { border-top: 1px solid var(--line-dark); }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,15,30,0.92) 0%, rgba(10,15,30,0.6) 55%, rgba(10,15,30,0) 100%);
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav.scrolled::before { opacity: 0; }
.nav.scrolled {
  background: rgba(10,15,30,0.86);
  backdrop-filter: blur(14px);
  padding: 14px 32px;
  box-shadow: 0 1px 0 var(--line-dark);
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand .logo-slot {
  width: 46px; height: 46px;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px var(--gold);
}
.brand-text { line-height: 1.05; }
.brand-text .b1 {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
}
.brand-text .b2 {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold-2); }
.nav .btn { padding: 12px 22px; font-size: 0.8rem; }

/* =========================================================
   DOBRA 1 — HERO
   ========================================================= */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  background: var(--navy);
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 60px 90px clamp(28px, 6vw, 110px);
  max-width: 760px;
  margin-left: auto;
}
.hero-text .display { margin-bottom: 28px; }
.hero-text .display .gold { color: var(--gold-2); font-style: italic; }
.hero-sub {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.74);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
  flex-wrap: wrap;
}
.hero-trust .tr {
  display: flex;
  flex-direction: column;
}
.hero-trust .tr .n {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold-2);
  line-height: 1;
}
.hero-trust .tr .l {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
  text-transform: uppercase;
}
.hero-trust .sep { width: 1px; height: 38px; background: var(--line-dark); }

.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
}
.hero-photo image-slot { width: 100%; height: 100%; min-height: 100svh; }
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--navy) 0%, rgba(10,15,30,0.45) 28%, rgba(10,15,30,0) 58%);
  pointer-events: none; z-index: 2;
}
.hero-photo .ph-badge {
  position: absolute;
  bottom: 34px; right: 34px;
  z-index: 3;
  background: rgba(10,15,30,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ph-badge .star { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.ph-badge .txt { font-size: 0.78rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
.ph-badge .txt b { color: #fff; font-weight: 700; }

/* scroll cue */
.scroll-cue {
  position: absolute;
  left: clamp(28px, 6vw, 110px);
  bottom: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.scroll-cue .line {
  width: 46px; height: 1px; background: var(--gold);
  transform-origin: left;
  animation: cueline 2.4s var(--ease) infinite;
}
@keyframes cueline { 0%,100%{ transform: scaleX(0.4); opacity:0.4;} 50%{ transform: scaleX(1); opacity:1;} }

/* =========================================================
   DOBRA 2 — AGITAÇÃO (a dor) — clara/quente
   ========================================================= */
#agitacao .agit-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
#agitacao .h2 { margin-bottom: 28px; max-width: 13ch; }
#agitacao p { font-size: 1.08rem; margin-bottom: 18px; }
#agitacao .kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold-deep);
  margin-top: 28px;
  line-height: 1.4;
}
.agit-photo image-slot { display: block; width: 100%; height: auto; aspect-ratio: 3/4; }

/* lista de dores */
.pain-list { list-style: none; margin-top: 30px; display: grid; gap: 14px; }
.pain-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 1rem; color: var(--ink-soft);
}
.pain-list li svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--gold-deep); margin-top: 2px; }

/* =========================================================
   DOBRA 3 — APRESENTAÇÃO (Jocimar) — escura
   ========================================================= */
#apresentacao .ap-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.ap-photo { position: relative; }
.ap-photo image-slot { display: block; width: 100%; height: auto; aspect-ratio: 4/5; }
.ap-photo .frame {
  position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold);
  opacity: 0.5;
  z-index: -1;
  border-radius: 6px;
}
#apresentacao .h2 { margin-bottom: 26px; }
#apresentacao p { font-size: 1.06rem; color: rgba(255,255,255,0.74); margin-bottom: 20px; }
#apresentacao p strong { color: #fff; font-weight: 600; }
.langs { display: flex; gap: 12px; margin: 28px 0 34px; flex-wrap: wrap; }
.lang-chip {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.lang-chip .flag { font-size: 1.05rem; }

/* assinatura */
.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--gold-2);
  margin-top: 30px;
}

/* =========================================================
   DOBRA 4 — SERVIÇOS — clara
   ========================================================= */
.sec-head { max-width: 720px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head .h2 { margin-bottom: 18px; }
.sec-head .lead { font-size: 1.1rem; }

.serv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.serv-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.serv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -28px rgba(27,30,39,0.35);
}
.serv-card image-slot { display: block; width: 100%; height: auto; aspect-ratio: 4/5; }
.serv-card .body { padding: 30px 30px 34px; flex: 1; display: flex; flex-direction: column; }
.serv-card .num {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.serv-card h3 { font-size: 1.6rem; margin-bottom: 12px; color: var(--ink); }
.serv-card p { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.6; }

.serv-foot {
  margin-top: 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.serv-foot p { font-size: 1.05rem; color: var(--ink-soft); }

/* =========================================================
   DOBRA 5 — DIFERENCIAIS — escura
   ========================================================= */
.dif-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  overflow: hidden;
}
.dif-card {
  padding: 44px 40px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.35s var(--ease);
}
.dif-card:nth-child(2n) { border-right: none; }
.dif-card:nth-child(n+3) { border-bottom: none; }
.dif-card:hover { background: var(--navy-3); }
.dif-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2);
  margin-bottom: 24px;
}
.dif-icon svg { width: 26px; height: 26px; }
.dif-card h3 { font-size: 1.5rem; margin-bottom: 12px; color: #fff; }
.dif-card p { font-size: 0.98rem; color: rgba(255,255,255,0.66); line-height: 1.65; }

/* =========================================================
   DOBRA — MAPA BATE-VOLTA
   ========================================================= */
.map-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: center;
  margin-top: 12px;
}
.map-stage {
  position: relative;
  aspect-ratio: 1/0.92;
  background: radial-gradient(120% 120% at 60% 40%, var(--navy-3) 0%, var(--navy-2) 60%, var(--navy) 100%);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  overflow: hidden;
}
.map-stage svg { width: 100%; height: 100%; display: block; }
.map-stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map-open {
  position: absolute;
  right: 14px; bottom: 14px;
  z-index: 2;
  display: inline-flex; align-items: center;
  background: rgba(10,15,30,0.86);
  border: 1px solid var(--line-dark);
  color: #fff;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 10px 15px;
  border-radius: 9px;
  backdrop-filter: blur(6px);
  transition: border-color 0.25s, color 0.25s;
}
.map-open:hover { border-color: var(--gold); color: var(--gold-2); }
.dest-list { display: grid; gap: 8px; margin-top: 30px; }
.dest-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  cursor: pointer;
  color: inherit;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.dest-item:hover, .dest-item.active { background: var(--navy-3); border-color: var(--gold); }
.dest-item .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 0 4px rgba(201,168,76,0.15); }
.dest-item .nm { font-size: 1.05rem; font-weight: 600; color: #fff; }
.dest-item .ds { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.dest-item .meta { margin-left: auto; font-size: 0.78rem; color: var(--gold-2); white-space: nowrap; }

/* =========================================================
   DOBRA 6 — PROVA SOCIAL — clara
   ========================================================= */
.carousel { position: relative; margin-top: 56px; }
.carousel-track {
  display: flex; gap: 22px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { flex: 0 0 calc((100% - 44px) / 3); scroll-snap-align: start; }
.carousel-arrow {
  position: absolute; top: 44%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line-light);
  box-shadow: 0 10px 30px rgba(10,15,30,0.22);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep); font-family: var(--serif); font-size: 1.7rem; line-height: 1; padding-bottom: 4px;
  z-index: 4; transition: transform 0.15s var(--ease), background 0.2s, color 0.2s;
}
.carousel-arrow:hover { background: var(--gold); color: var(--navy); transform: translateY(-50%) scale(1.06); }
.carousel-arrow.prev { left: -16px; }
.carousel-arrow.next { right: -16px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(27,30,39,0.22); border: none; cursor: pointer; padding: 0; transition: background 0.25s, width 0.25s; }
.carousel-dots button.active { background: var(--gold-deep); width: 22px; border-radius: 999px; }
.s-dark .carousel-dots button { background: rgba(255,255,255,0.25); }
.s-dark .carousel-dots button.active { background: var(--gold); }
.gallery-carousel .carousel-track > image-slot { display: block; height: auto; aspect-ratio: 3/4; }

/* Carrossel de prints de avaliações (Google) — 1 por vez, altura uniforme */
.reviews-carousel .carousel-track > .review-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 540px;
  scroll-snap-align: start;
}
.review-shot {
  max-height: 100%;
  max-width: 600px;
  width: auto;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--line-light);
  box-shadow: 0 22px 50px -26px rgba(27,30,39,0.45);
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.review-card .quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.35;
  height: 30px;
}
.review-card .stars { color: var(--gold-deep); letter-spacing: 3px; font-size: 0.9rem; margin: 8px 0 18px; }
.review-card .text {
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  flex: 1;
  margin-bottom: 26px;
}
.review-card .who { display: flex; align-items: center; gap: 13px; }
.review-card .who .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid var(--line-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.2rem; color: var(--gold-deep); font-weight: 600;
}
.review-card .who .nm { font-size: 0.98rem; font-weight: 700; color: var(--ink); }
.review-card .who .src { font-size: 0.78rem; color: var(--ink-soft); display: flex; align-items: center; gap: 5px; }

/* =========================================================
   GALERIA PARIS
   ========================================================= */
#galeria { padding-bottom: clamp(72px, 9vw, 130px); }

/* =========================================================
   DOBRA 7 — CTA PRINCIPAL
   ========================================================= */
#cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(96px, 12vw, 170px) 0;
}
#cta .cta-bg {
  position: absolute; inset: 0; z-index: 0;
}
#cta .cta-bg image-slot { width: 100%; height: 100%; }
#cta .cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,15,30,0.82) 0%, rgba(10,15,30,0.88) 100%);
}
#cta .container { position: relative; z-index: 2; }
#cta .display { margin-bottom: 22px; }
#cta .lead { max-width: 600px; margin: 0 auto 42px; color: rgba(255,255,255,0.82); }
#cta .reinforce {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 26px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  flex-wrap: wrap;
}
#cta .reinforce .d { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* =========================================================
   DOBRA 8 — FOOTER
   ========================================================= */
footer.foot {
  background: #070B16;
  padding: 80px 0 40px;
  border-top: 1px solid var(--line-dark);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-dark);
}
.foot-brand .brand { margin-bottom: 20px; }
.foot-brand p { color: rgba(255,255,255,0.55); font-size: 0.92rem; max-width: 34ch; }
.foot-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.foot-col a, .foot-col p { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 13px; transition: color 0.25s; }
.foot-col a:hover { color: var(--gold-2); }
.foot-col svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 34px;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-bottom .closing {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-2);
}
.foot-bottom .legal { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* =========================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================= */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 0;
  box-shadow: 0 14px 34px -8px rgba(37,211,102,0.55);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
}
.wa-float.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 44px -8px rgba(37,211,102,0.7); }
.wa-float .ic {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-float .ic svg { width: 30px; height: 30px; }
.wa-float .label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  max-width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width 0.45s var(--ease), padding 0.45s var(--ease);
  padding: 0;
}
.wa-float:hover .label { max-width: 220px; padding-right: 24px; }

/* =========================================================
   ANIMAÇÕES SCROLL (reveal)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue .line { animation: none; }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 980px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { order: -1; min-height: 42vh; max-height: 380px; }
  .hero-photo image-slot { min-height: 42vh; }
  .hero-photo::after { background: linear-gradient(180deg, rgba(10,15,30,0) 40%, var(--navy) 96%); }
  .hero-text { padding: 26px 28px 44px; margin: 0 auto; max-width: 640px; }
  #hero .display { margin-bottom: 18px; }
  .hero-sub { margin-bottom: 24px; }
  .scroll-cue { display: none; }

  #agitacao .agit-grid,
  #apresentacao .ap-grid,
  .map-wrap { grid-template-columns: 1fr; }
  .agit-photo { order: -1; max-width: 460px; margin: 0 auto; }
  .agit-photo image-slot {
    aspect-ratio: 16/11;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 72%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 72%, transparent 100%);
  }
  .ap-photo { width: 100%; max-width: 360px; margin: 0 auto 14px; }
  .ap-photo .frame { display: none; }
  .ap-photo image-slot {
    aspect-ratio: 3/2;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 74%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 74%, transparent 100%);
  }

  .serv-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr; }
  .dif-card { border-right: none !important; }
  .dif-card:not(:last-child) { border-bottom: 1px solid var(--line-dark) !important; }
  .reviews-track > *, .gallery-carousel .carousel-track > * { flex: 0 0 100%; }
  .carousel-arrow.prev { left: 4px; }
  .carousel-arrow.next { right: 4px; }
  .reviews-carousel .carousel-track > .review-slide { height: 70vh; }
  .review-shot { max-width: 100%; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }

  /* --- compactação mobile --- */
  .section { padding: 54px 0; }
  .sec-head { margin-bottom: 0; }
  .serv-grid, .dif-grid, .carousel, .triade-grid { margin-top: 34px; }
  .agit-photo { max-width: 340px; }
  .ap-photo { max-width: 300px; margin: 0 auto 12px; }
  #apresentacao .eyebrow { margin-bottom: 16px; }
  #apresentacao .h2 { margin-bottom: 16px; }
  #apresentacao .ap-text p { font-size: 0.94rem; margin-bottom: 12px; }
  #apresentacao .langs { margin: 16px 0 18px; }
  .dif-card { padding: 30px 26px; }
  .dif-icon { width: 46px; height: 46px; margin-bottom: 18px; }
  .dif-icon svg { width: 22px; height: 22px; }
  .dif-card h3 { font-size: 1.3rem; }
  .serv-card .body { padding: 24px 24px 26px; }
  .serv-card h3 { font-size: 1.4rem; }
  .review-card { padding: 28px 24px; }
  .review-card .text { font-size: 1.1rem; margin-bottom: 20px; }
  .map-stage { max-width: 460px; margin: 0 auto; width: 100%; }
}
@media (max-width: 620px) {
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .container { padding: 0 20px; }
  .hero-photo { min-height: 38vh; max-height: 330px; }
  .hero-photo image-slot { min-height: 38vh; }
  #hero .display { font-size: 2.15rem; margin-bottom: 14px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 22px; }
  .hero-trust { gap: 12px; flex-wrap: nowrap; }
  .hero-trust .tr .n { font-size: 1.25rem; }
  .hero-trust .tr .l { font-size: 0.56rem; letter-spacing: 0.03em; white-space: nowrap; }
  .hero-trust .sep { display: none; }
  .wa-float .ic { width: 54px; height: 54px; }
  .reviews-carousel .carousel-track > .review-slide { height: 66vh; }
  .foot-bottom .closing { font-size: 1.25rem; }
  footer.foot { padding: 38px 0 24px; }
  .foot-grid { gap: 22px; padding-bottom: 26px; }
  .foot-brand .brand { margin-bottom: 14px; }
  .foot-brand p { font-size: 0.85rem; }
  .foot-col h4 { margin-bottom: 14px; }
  .foot-col a, .foot-col p { margin-bottom: 10px; }
  .foot-bottom { padding-top: 20px; }
  .btn { width: 100%; justify-content: center; }
  .hero-cta-row { width: 100%; }
  #cta .btn-cta-final { font-size: 0.92rem; padding: 15px 20px; gap: 10px; }
  #cta .lead { margin-bottom: 30px; }
  footer.foot { padding: 48px 0 28px; }
  .foot-grid { gap: 26px; padding-bottom: 30px; }
  .foot-bottom { padding-top: 24px; }
  .foot-brand p { font-size: 0.88rem; }
  .langs { gap: 8px; flex-wrap: nowrap; }
  .lang-chip { padding: 8px 11px; font-size: 0.72rem; gap: 6px; }
  .lang-chip .flag { font-size: 0.9rem; }
}
