/* ============================================================
   Mediterranea Visa — Sistema visual premium (navy · vermelho · branco)
   Tipografia: Playfair Display (display serif) + Satoshi (sans)
   HTML/CSS/JS vanilla, sem build. Compartilhado por PT / EN / ES.
   ============================================================ */

/* ---------- Fontes self-hosted ---------- */
@font-face {
  font-family: 'Satoshi';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('/assets/fonts/Satoshi-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('/assets/fonts/Satoshi-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('/assets/fonts/Satoshi-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal; font-weight: 400 800; font-display: swap;
  src: url('/assets/fonts/PlayfairDisplay.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic; font-weight: 400 800; font-display: swap;
  src: url('/assets/fonts/PlayfairDisplay-Italic.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  /* navy profundo da marca premium */
  --navy-900: #0a1733;
  --navy-800: #0f2147;
  --navy-700: #173059;
  --navy-600: #21407a;

  /* vermelho de acento (assinatura jurídica) */
  --red: #b21e34;
  --red-600: #97182b;
  --red-100: #f7e9eb;

  /* neutros */
  --bg: #ffffff;
  --bg-alt: #f5f6f8;
  --ink: #14213a;          /* texto sobre claro */
  --muted: #586073;        /* texto secundário */
  --dim: #8a92a3;          /* legendas */
  --line: #e4e7ee;         /* bordas */
  --on-dark: #eef1f7;      /* texto sobre navy */
  --on-dark-muted: #aab6cf;

  --gold: #c79a4b;         /* fio premium pontual (filete) */

  --container: 1180px;
  --container-narrow: 760px;
  --pad: clamp(1.1rem, 4vw, 2.2rem);
  --radius: 14px;
  --radius-sm: 10px;

  --f-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-sans: 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shadow: 0 30px 60px -38px rgba(10, 23, 51, .45);
  --shadow-sm: 0 14px 34px -22px rgba(10, 23, 51, .4);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong, b { font-weight: 700; }

h1, h2, h3 { margin: 0; font-family: var(--f-serif); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }
p { margin: 0; }

::selection { background: var(--navy-800); color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.container.narrow { max-width: var(--container-narrow); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

.section { padding: clamp(3.6rem, 8vw, 6.5rem) 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding-block: clamp(2.6rem, 6vw, 4rem); }

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 26px; height: 1px;
  background: var(--red); vertical-align: middle; margin-right: .7em; opacity: .8;
}
.display {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  margin-bottom: .9rem;
}
.display em { font-style: italic; color: var(--red); }
.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.7;
}
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--f-sans); font-weight: 700; font-size: .98rem;
  line-height: 1; letter-spacing: .01em;
  padding: .95em 1.6em; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), background .18s, color .18s, border-color .18s, box-shadow .18s;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--red); color: #fff; box-shadow: 0 16px 30px -16px rgba(178, 30, 52, .6); }
.btn--primary:hover { background: var(--red-600); }

.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: #fff; }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn--wa { background: #1ea54f; color: #fff; }
.btn--wa:hover { background: #178f44; }

.btn--lg { padding: 1.1em 1.9em; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; min-height: 74px; }
.topbar__nav { display: flex; align-items: center; gap: 1.9rem; margin-left: auto; }
.topbar__nav a {
  font-size: .92rem; font-weight: 500; color: var(--muted);
  position: relative; transition: color .18s;
}
.topbar__nav a:hover { color: var(--ink); }
.topbar__right { display: flex; align-items: center; gap: 1.1rem; }
.topbar .btn { padding: .72em 1.25em; }

/* Wordmark */
.brand { display: inline-flex; align-items: baseline; gap: .5ch; line-height: 1; }
.brand__name {
  font-family: var(--f-serif); font-weight: 700; font-size: 1.5rem;
  letter-spacing: .02em; color: var(--navy-900);
}
.brand__sub {
  font-family: var(--f-sans); font-weight: 700; font-size: .62rem;
  letter-spacing: .34em; text-transform: uppercase; color: var(--red);
  align-self: center; padding-left: .2ch;
}
.footer .brand__name { color: #fff; }

/* Seletor de idioma */
.langs { display: inline-flex; align-items: center; gap: .15rem; font-size: .8rem; font-weight: 700; }
.langs a { color: var(--dim); padding: .2em .45em; border-radius: 6px; letter-spacing: .04em; }
.langs a[aria-current="true"] { color: var(--navy-900); background: var(--bg-alt); }
.langs a:hover { color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(33,64,122,.55) 0%, rgba(10,23,51,0) 55%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-900) 100%);
  color: var(--on-dark);
}
/* vídeo de fundo + scrim navy para legibilidade */
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,16,38,.94) 0%, rgba(7,16,38,.78) 42%, rgba(7,16,38,.42) 100%),
    linear-gradient(0deg, rgba(7,16,38,.92) 0%, rgba(7,16,38,0) 45%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(3.8rem, 9vw, 6.5rem) clamp(3.8rem, 9vw, 6.5rem); max-width: 880px; }
.hero__kicker {
  font-family: var(--f-sans); font-weight: 700; font-size: .76rem;
  letter-spacing: .26em; text-transform: uppercase; color: #e9b9c0;
  display: inline-flex; align-items: center; gap: .8ch; margin-bottom: 1.6rem;
}
.hero__kicker::before { content: ""; width: 30px; height: 1px; background: var(--red); display: inline-block; }
.hero__title {
  /* O h1 deve render sempre em 2 linhas em qualquer idioma/largura: a 1a linha
     ("Visto de Nômade Digital" ~10.8em, "Visado de Nómada Digital" ~11.5em) precisa
     caber inteira, por isso o termo em vw domina no mobile. */
  font-size: clamp(1.55rem, 8vw, 4.6rem); line-height: 1.04; color: #fff;
  letter-spacing: -.015em; margin-bottom: 1.4rem; font-weight: 700;
}
html[lang="es"] .hero__title { font-size: clamp(1.45rem, 7.5vw, 4.3rem); }
.hero__title em { font-style: italic; color: #f1c3ca; white-space: nowrap; }
.hero__sub { font-size: clamp(1.08rem, 1.9vw, 1.35rem); color: var(--on-dark-muted); max-width: 56ch; line-height: 1.65; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero__note { margin-top: 1.5rem; font-size: .9rem; color: var(--on-dark-muted); display: flex; align-items: center; gap: .6ch; }
.hero__note svg { width: 1.05em; height: 1.05em; color: var(--gold); flex: none; }

/* Marcadores de confiança do hero */
.hero__trust {
  display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; margin-top: 2.6rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.12);
}
.hero__trust span { display: inline-flex; align-items: center; gap: .55ch; font-size: .92rem; color: var(--on-dark); font-weight: 500; }
.hero__trust svg { width: 1.1em; height: 1.1em; color: var(--gold); flex: none; }

/* ---------- Faixa de credibilidade ---------- */
.cred {
  background: var(--navy-900); color: var(--on-dark-muted);
  border-top: 1px solid rgba(255,255,255,.08);
}
.cred__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .6rem 1.6rem; padding-block: 1.1rem; text-align: center;
  font-size: .9rem; letter-spacing: .01em;
}
.cred b { color: #fff; font-weight: 700; }
.cred .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); display: inline-block; }

/* ---------- Grades / cards ---------- */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.4rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d7dbe5; }
.card__ico {
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy-900); color: #fff; margin-bottom: 1.1rem;
}
.card__ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.32rem; margin-bottom: .55rem; color: var(--navy-900); }
.card p { color: var(--muted); font-size: 1rem; }

/* ---------- "O visto": destaque dois blocos ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
.split__media {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.6rem); color: var(--on-dark);
  box-shadow: var(--shadow);
}
.factlist { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.factlist li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.factlist .factlist__k { font-family: var(--f-serif); font-style: italic; font-size: 1.5rem; color: var(--gold); line-height: 1; min-width: 1.6ch; }
.factlist .factlist__v { font-size: .98rem; color: var(--on-dark-muted); }
.factlist .factlist__v b { color: #fff; display: block; font-weight: 700; margin-bottom: .1rem; }

/* ---------- Checklist (requisitos) ---------- */
.checklist { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: .85rem; --icon: 22px; }
.checklist li {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem 1rem calc(1.2rem + var(--icon) + .9rem); font-size: 1.02rem;
}
.checklist li::before {
  content: ""; width: var(--icon); height: var(--icon); border-radius: 50%;
  position: absolute; left: 1.2rem; top: calc(1rem + .15rem);
  background: var(--red-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b21e34' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
}
.note-inline { margin-top: 1.4rem; font-size: .9rem; color: var(--dim); line-height: 1.6; }

/* ---------- Dois caminhos ---------- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.4vw, 1.6rem); }
.path {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.7rem, 3vw, 2.4rem); overflow: hidden;
}
.path::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--red); }
.path__tag {
  display: inline-block; font-family: var(--f-sans); font-weight: 700; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem;
}
.path h3 { font-size: 1.5rem; margin-bottom: .7rem; color: var(--navy-900); }
.path p { color: var(--muted); }

/* ---------- Processo (passos) ---------- */
.steps { counter-reset: step; display: grid; gap: 0; margin-top: 2.4rem; max-width: 720px; margin-inline: auto; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.step:first-child { border-top: none; }
.step__n {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  border: 1.5px solid var(--navy-900); color: var(--navy-900);
  font-family: var(--f-serif); font-size: 1.4rem; font-weight: 700;
}
.step__n::before { counter-increment: step; content: counter(step, decimal-leading-zero); }
.step h3 { font-family: var(--f-sans); font-weight: 700; font-size: 1.15rem; margin-bottom: .3rem; color: var(--navy-900); }
.step p { color: var(--muted); }

/* ---------- Banda escura (CTA / por que) ---------- */
.band { background: linear-gradient(165deg, var(--navy-800), var(--navy-900)); color: var(--on-dark); }
.band .display { color: #fff; }
.band .display em { color: #f1c3ca; }
.band .lede { color: var(--on-dark-muted); }
.band .eyebrow { color: #e9b9c0; }
.band .eyebrow::before { background: var(--red); }
.band .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); }
.band .card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); box-shadow: none; }
.band .card h3 { color: #fff; }
.band .card p { color: var(--on-dark-muted); }
.band .card__ico { background: var(--red); }

/* ---------- Advisor (foto) ---------- */
.advisor { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; }
.advisor__photo {
  position: relative; align-self: stretch; border-radius: var(--radius); overflow: hidden;
  background: radial-gradient(120% 100% at 50% 0%, var(--navy-700), var(--navy-900));
  display: flex; align-items: flex-end; justify-content: center; min-height: 360px;
}
.advisor__photo img { width: auto; max-height: 440px; object-fit: contain; filter: drop-shadow(0 24px 40px rgba(0,0,0,.4)); }
.advisor__photo::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 42%;
  background: linear-gradient(0deg, var(--navy-900), transparent);
}
.advisor__name { position: absolute; left: 0; right: 0; bottom: 1.1rem; text-align: center; z-index: 1; }
.advisor__name strong { display: block; color: #fff; font-family: var(--f-serif); font-size: 1.25rem; }
.advisor__name span { color: var(--on-dark-muted); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.advisor__list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.advisor__list li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.advisor__list svg { width: 1.4rem; height: 1.4rem; color: var(--gold); flex: none; margin-top: .15rem; }
.advisor__list b { color: #fff; }
.advisor__list span { color: var(--on-dark-muted); font-size: .98rem; }

/* ---------- Galeria Espanha ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 1.5vw, 1.1rem); margin-top: 2.4rem; }
.gallery figure { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1.2rem 1rem;
  color: #fff; font-family: var(--f-serif); font-size: 1.2rem; letter-spacing: .01em;
  background: linear-gradient(0deg, rgba(7,16,38,.88), rgba(7,16,38,0));
}
@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 2rem); margin-top: 1rem; }
.stat { text-align: center; padding: 1.4rem 1rem; }
.stat__num { font-family: var(--f-serif); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--navy-900); line-height: 1; margin-bottom: .6rem; }
.stat p { color: var(--muted); font-size: .98rem; }
.stats__src { margin-top: 2rem; font-size: .82rem; color: var(--dim); text-align: center; max-width: 70ch; margin-inline: auto; }

/* ---------- Depoimentos (carrossel) ---------- */
.carousel { position: relative; margin-top: 2.4rem; }
.carousel__track {
  display: flex; gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: .5rem;
  -ms-overflow-style: none; scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.depo {
  scroll-snap-align: center; flex: 0 0 100%; margin: 0;
  display: grid; grid-template-columns: 260px 1fr; gap: 1.8rem; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
}
.depo__photo { width: 260px; height: 320px; object-fit: cover; border-radius: var(--radius-sm); }
.depo__body { position: relative; }
.depo__mark { font-family: var(--f-serif); font-size: 3.4rem; line-height: .5; color: var(--red); opacity: .25; display: block; margin-bottom: .4rem; }
.depo__quote { font-family: var(--f-serif); font-size: 1.3rem; line-height: 1.45; color: var(--navy-900); font-style: italic; }
.depo__foot { margin-top: 1.2rem; }
.depo__name { font-weight: 700; color: var(--ink); }
.depo__tag { font-size: .85rem; color: var(--dim); }
.depo__note { text-align: center; margin-top: 1.4rem; font-size: .82rem; color: var(--dim); }

.carousel__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--navy-900); cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--shadow-sm); transition: background .18s, color .18s, opacity .18s;
}
.carousel__nav svg { width: 20px; height: 20px; }
.carousel__nav:hover { background: var(--navy-900); color: #fff; }
.carousel__nav:disabled { opacity: 0; pointer-events: none; }
.carousel__nav--prev { left: -14px; }
.carousel__nav--next { right: -14px; }
.carousel__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.4rem; }
.carousel__dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.carousel__dot[aria-current="true"] { background: var(--red); transform: scale(1.3); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 2.2rem auto 0; display: grid; gap: .8rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0 1.3rem; transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: #cdd3df; box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 0;
  font-family: var(--f-sans); font-weight: 700; font-size: 1.05rem; color: var(--navy-900);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 18px; height: 18px; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b21e34' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details p { padding: 0 0 1.2rem; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: var(--on-dark-muted); padding-block: clamp(3rem, 6vw, 4.2rem); }
.footer__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.footer__links a { font-size: .95rem; color: var(--on-dark-muted); transition: color .18s; }
.footer__links a:hover { color: #fff; }
.footer .langs a { color: var(--on-dark-muted); }
.footer .langs a[aria-current="true"] { color: #fff; background: rgba(255,255,255,.1); }
.footer__legal { padding-top: 1.8rem; display: grid; gap: .9rem; }
.footer__legal p { font-size: .82rem; color: var(--dim); line-height: 1.6; max-width: 90ch; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.7rem); bottom: clamp(1rem, 3vw, 1.7rem); z-index: 80;
  width: 58px; height: 58px; border-radius: 50%; background: #1ea54f; color: #fff;
  display: grid; place-items: center; box-shadow: 0 16px 34px -10px rgba(30,165,79,.6);
  transition: transform .2s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Formulário (EN/ES) ---------- */
.lead { display: grid; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-sm); }
.lead .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lead label { display: grid; gap: .35rem; font-size: .86rem; font-weight: 700; color: var(--navy-900); }
.lead input, .lead select, .lead textarea {
  font-family: var(--f-sans); font-size: 1rem; padding: .8em .9em; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; color: var(--ink); width: 100%;
}
.lead textarea { min-height: 90px; resize: vertical; }
.lead input:focus, .lead select:focus, .lead textarea:focus { outline: none; border-color: var(--navy-700); box-shadow: 0 0 0 3px rgba(23,48,89,.12); }
.lead .hp { position: absolute; left: -9999px; }
.form-msg { font-size: .92rem; margin: 0; min-height: 1.2em; }
.form-msg--ok { color: #1ea54f; font-weight: 700; }
.form-msg--err { color: var(--red); font-weight: 700; }

/* ---------- Responsivo ---------- */
@media (max-width: 920px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split, .advisor { grid-template-columns: 1fr; }
  .advisor__photo { min-height: 320px; }
}
@media (max-width: 1080px) {
  .topbar__nav { display: none; }
  .topbar .topbar__cta-label { display: none; }
  .topbar .btn { padding: .7em; width: 42px; height: 42px; }
}
@media (max-width: 720px) {
  .grid--2, .grid--3, .paths, .stats { grid-template-columns: 1fr; }
  .depo { grid-template-columns: 1fr; text-align: center; }
  .depo__photo { width: 100%; height: 280px; }
  .depo__body { text-align: center; }
  .carousel__nav { display: none !important; }
  .hero__trust { gap: .6rem 1.1rem; }
}
@media (max-width: 480px) {
  .brand__sub { display: none; }
  .brand__name { font-size: 1.08rem; }
  .langs { gap: 0; }
  .langs a { padding: .2em .28em; }
  .topbar__inner { gap: .5rem; }
  .topbar__right { gap: .6rem; }
}
@media (max-width: 420px) {
  .footer__top { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FEEDBACK PAULO (29/jun) — dobra, vantagens, questionário,
   prova social e faixa visual. Componentes acrescentados.
   ============================================================ */

/* ---------- Hero: destaque do lugar ---------- */
.hero__place { color: #f1c3ca; font-style: italic; }
.hero .hero__sub b { color: #fff; font-weight: 700; }

/* ---------- Vantagens (texto fora da imagem do hero) ---------- */
.vantagens__cta { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.vantagens__scarcity {
  display: inline-flex; align-items: center; gap: .6ch;
  font-size: .92rem; font-weight: 500; color: var(--navy-900);
}
.vantagens__scarcity svg { width: 1.1em; height: 1.1em; color: var(--gold); flex: none; }

.advantages { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; --icon: 26px; }
.advantages li {
  position: relative; padding-left: calc(var(--icon) + .9rem);
  font-size: 1.05rem; font-weight: 500; color: var(--on-dark);
}
.advantages__ck {
  width: var(--icon); height: var(--icon); border-radius: 50%;
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  background: rgba(199,154,75,.16)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c79a4b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ---------- Questionário de elegibilidade ---------- */
.elig {
  position: relative; max-width: 640px; margin: 2.4rem auto 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(1.6rem, 4vw, 2.8rem); overflow: hidden;
}
.elig__bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--bg-alt); }
.elig__bar-fill { display: block; height: 100%; width: 33%; background: var(--red); transition: width .35s var(--ease); }

.elig__step { display: none; }
.elig__step.is-active { display: block; animation: eligIn .4s var(--ease); }
@keyframes eligIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .elig__step.is-active { animation: none; } }

.elig__count { display: block; font-family: var(--f-sans); font-weight: 700; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: .8rem; }
.elig__q { font-family: var(--f-serif); font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--navy-900); margin-bottom: .4rem; }
.elig__hint { color: var(--muted); font-size: .96rem; margin-bottom: 1.6rem; }
.elig__opts { display: grid; gap: .8rem; }
.elig__opt {
  font-family: var(--f-sans); font-weight: 600; font-size: 1.05rem; text-align: left;
  padding: 1.05em 1.3em; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: #fff; color: var(--navy-900); cursor: pointer;
  transition: border-color .18s, background .18s, transform .12s var(--ease);
}
.elig__opt:hover { border-color: var(--navy-700); transform: translateY(-2px); }
.elig__opt.is-sel { border-color: var(--red); background: var(--red-100); }
.elig__back { margin-top: 1.3rem; background: none; border: none; color: var(--dim); font: 600 .9rem var(--f-sans); cursor: pointer; padding: 0; }
.elig__back:hover { color: var(--ink); }

.elig__verdict {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1.1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.6rem;
  font-size: 1rem; line-height: 1.5;
}
.elig__verdict::before { font-size: 1.4rem; line-height: 1.2; flex: none; }
.elig__verdict--ok { background: #e9f6ee; color: #145c33; border: 1px solid #b8e2c6; }
.elig__verdict--ok::before { content: "✅"; }
.elig__verdict--check { background: #fdf3e4; color: #8a5a13; border: 1px solid #f0d9af; }
.elig__verdict--check::before { content: "⚠️"; }
.elig__verdict b { display: block; margin-bottom: .15rem; font-weight: 700; }

.elig__form { display: grid; gap: 1rem; }
.elig__form-lead { font-weight: 500; color: var(--navy-900); margin-bottom: .2rem; }
.elig__hp { position: absolute; left: -9999px; }
.elig__secondary { display: inline-block; text-align: center; font-size: .92rem; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.elig__secondary:hover { color: var(--navy-900); }

/* Campos de formulário (compartilhado com EN/ES) */
.field { display: grid; gap: .35rem; }
.field label { font-size: .86rem; font-weight: 700; color: var(--navy-900); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field input, .field select, .field textarea {
  font-family: var(--f-sans); font-size: 1rem; padding: .8em .9em; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-700); box-shadow: 0 0 0 3px rgba(23,48,89,.12); }
.consent { display: grid; grid-template-columns: auto 1fr; gap: .6rem; align-items: start; font-size: .88rem; color: var(--muted); cursor: pointer; }
.consent input { margin-top: .2rem; }

/* ---------- Prova social (métricas) ---------- */
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 2rem); margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.metric { text-align: center; padding: 1.6rem 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.metric__stars { color: var(--gold); font-size: 1.2rem; letter-spacing: .15em; margin-bottom: .5rem; }
.metric__num { font-family: var(--f-serif); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3rem); color: var(--navy-900); line-height: 1; margin-bottom: .6rem; }
.metric p { color: var(--muted); font-size: .96rem; max-width: 28ch; margin-inline: auto; }

/* ---------- Faixa visual (showcase) ---------- */
.showcase { position: relative; min-height: clamp(320px, 42vw, 480px); display: flex; align-items: center; overflow: hidden; background: var(--navy-900); }
.showcase__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.showcase__overlay { position: relative; z-index: 1; width: 100%; background: linear-gradient(90deg, rgba(7,16,38,.86) 0%, rgba(7,16,38,.55) 55%, rgba(7,16,38,.15) 100%); padding-block: clamp(2.6rem, 6vw, 4.4rem); }
.showcase__kicker { font-family: var(--f-sans); font-weight: 700; font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; color: #e9b9c0; margin-bottom: 1rem; }
.showcase__title { font-family: var(--f-serif); color: #fff; font-size: clamp(1.7rem, 4vw, 2.8rem); line-height: 1.12; max-width: 18ch; }
.showcase__title em { font-style: italic; color: #f1c3ca; }

/* ---------- Galeria 6 ---------- */
.gallery--six { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) {
  .gallery--six { grid-template-columns: 1fr 1fr; }
  .gallery--six figure:last-child { grid-column: auto; aspect-ratio: 4 / 3; }
}

/* ---------- Responsivo dos novos blocos ---------- */
@media (max-width: 720px) {
  .metrics { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .showcase__overlay { background: linear-gradient(0deg, rgba(7,16,38,.9) 0%, rgba(7,16,38,.5) 100%); }
}
