/* =========================================================
   Visto de Nômade Digital · Espanha — estilo compartilhado
   Stack no padrão Yago: HTML/CSS/JS vanilla, zero deps.
   Tema: claro / premium / consultoria (azul da marca Mediterranea Visa).
   ========================================================= */

/* ========= FONTS ========= */
@font-face {
  font-family: 'Satoshi';
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/Satoshi-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi';
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/Satoshi-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi';
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/Satoshi-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Gambarino';
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/Gambarino-Regular.woff2') format('woff2');
}

/* ========= TOKENS ========= */
:root {
  --bg: #fbfaf6;       /* papel quente (igual fundo do logo) */
  --bg-2: #f2ece1;     /* areia, seções alternadas */
  --bg-3: #ffffff;     /* cards */
  --ink: #1c333f;      /* faixa escura / footer (azul profundo da marca) */
  --border: #e6dfd1;
  --border-2: #d8cfbd;
  --fg: #1b1812;       /* quase-preto quente */
  --fg-muted: #5e564a;
  --fg-dim: #8b8273;
  --accent: #314a5b;   /* azul-ardósia da marca (logo) */
  --accent-2: #243845; /* hover */
  --teal: #5d8795;     /* teal da onda (apoio) */
  --gold: #ac833c;     /* detalhe premium */
  --sun: #e2a23f;      /* sol / acento quente sobre fundo escuro */
  --ok: #2f7d52;

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1140px;
  --pad: clamp(1rem, 3vw, 2rem);
  --gap: clamp(1rem, 2.5vw, 2rem);

  --f-sans: 'Satoshi', system-ui, -apple-system, sans-serif;
  --f-serif: 'Gambarino', 'Times New Roman', serif;

  --shadow: 0 24px 60px -34px rgba(40, 28, 14, .35);
  --shadow-sm: 0 10px 30px -18px rgba(40, 28, 14, .3);
}

/* ========= RESET ========= */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; line-height: 1.14; font-weight: 400; }
p { margin: 0 0 1em; color: var(--fg-muted); }
p b, p strong { color: var(--fg); font-weight: 700; }
ul { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; color: var(--accent); font-family: var(--f-serif); }

/* ========= LAYOUT ========= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(3.25rem, 7vw, 6rem) 0; }
.section--alt { background: var(--bg-2); }
.center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.display {
  font-family: var(--f-serif);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.display em { font-style: italic; color: var(--accent); }
.lede {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--fg-muted);
  max-width: 60ch;
}
.center .lede { margin-inline: auto; }

/* ========= TOPBAR ========= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, .82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 700; }
.brand__mark {
  width: 30px; height: 30px; flex: 0 0 auto;
  border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 25%, var(--sun), var(--accent) 70%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.35);
}
.brand__name {
  font-family: var(--f-serif);
  font-size: 1.22rem;
  letter-spacing: -.01em;
  color: var(--fg);
}
.brand__name small {
  display: block;
  font-family: var(--f-sans);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 700;
  margin-top: -2px;
}
.topbar .btn { box-shadow: none; }
@media (max-width: 600px) { .topbar__cta-label { display: none; } }

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease, border-color .15s ease;
  cursor: pointer;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-2);
  box-shadow: none;
}
.btn--ghost:hover { background: #fff; border-color: var(--fg); }
.btn--wa { background: #1faf54; }
.btn--wa:hover { background: #178f44; }
.btn--lg { padding: 1.15rem 2.1rem; font-size: .9rem; }
.btn--block { display: flex; width: 100%; }

/* ========= HERO ========= */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(70% 55% at 78% 8%, rgba(226,162,63,.20), transparent 60%),
    radial-gradient(60% 60% at 8% 95%, rgba(49,74,91,.12), transparent 62%),
    var(--bg);
}
.hero__inner {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 7vw, 5rem);
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
}
.hero__flag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--fg-muted);
  background: #fff;
  border: 1px solid var(--border);
  padding: .4rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.hero__flag b { color: var(--accent); }
.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(2.3rem, 5.6vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -.015em;
  margin-bottom: 1.3rem;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__sub {
  max-width: 60ch;
  margin: 0 auto 2rem;
  color: var(--fg-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.hero__note { margin: 1.4rem 0 0; font-size: .85rem; color: var(--fg-dim); }

/* hero em duas colunas (páginas com formulário) */
.hero--split .split { padding: clamp(2.5rem, 6vw, 4.5rem) 0; align-items: center; }
.hero--split .hero__title,
.hero--split .hero__sub { text-align: left; }
.hero--split .hero__sub { margin: 0 0 1.6rem; }
.hero--split .chips { justify-content: flex-start; margin-top: 1.6rem; }
@media (max-width: 900px) {
  .hero--split .split__copy { text-align: center; }
  .hero--split .hero__title,
  .hero--split .hero__sub { text-align: center; }
  .hero--split .hero__sub { margin-inline: auto; }
  .hero--split .chips { justify-content: center; }
}

/* benefit chips */
.chips {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  margin-top: 2.4rem;
}
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .55rem 1rem;
  font-size: .86rem;
  font-weight: 500;
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.chip svg { width: 16px; height: 16px; color: var(--accent); }

/* ========= GENERIC GRID / CARDS ========= */
.grid {
  display: grid;
  gap: var(--gap);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.card__ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(49,74,91,.10);
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.card__ico svg { width: 22px; height: 22px; }
.card h3 {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 1.12rem;
  margin-bottom: .55rem;
}
.card p { font-size: .95rem; margin: 0; }
@media (max-width: 860px) { .grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .grid--2 { grid-template-columns: 1fr; } }

/* ========= REQUISITOS / CHECKLIST ========= */
.checklist { display: grid; gap: .2rem; margin-top: 2rem; }
.checklist li {
  position: relative;
  padding: .95rem 0 .95rem 2.4rem;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--fg);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: '';
  position: absolute; left: 0; top: 1.05rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(47,125,82,.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232f7d52' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.checklist li b { color: var(--fg); }
.note-inline {
  margin-top: 1.4rem;
  font-size: .88rem;
  color: var(--fg-dim);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

/* ========= DOIS CAMINHOS ========= */
.paths { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); margin-top: clamp(2rem,4vw,3rem); }
.path {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.path__tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(49,74,91,.10);
  padding: .35rem .8rem; border-radius: 999px;
  margin-bottom: 1.1rem;
}
.path h3 { font-family: var(--f-serif); font-size: 1.6rem; margin-bottom: .8rem; }
.path p { font-size: .96rem; }
@media (max-width: 760px) { .paths { grid-template-columns: 1fr; } }

/* ========= PASSOS ========= */
.steps { counter-reset: step; display: grid; gap: 1rem; margin-top: clamp(2rem,4vw,3rem); }
.step {
  position: relative;
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
}
.step__n {
  counter-increment: step;
  width: 40px; height: 40px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--f-serif); font-size: 1.2rem;
}
.step__n::before { content: counter(step); }
.step h3 { font-family: var(--f-sans); font-weight: 700; font-size: 1.08rem; margin-bottom: .35rem; }
.step p { margin: 0; font-size: .95rem; }

/* ========= STATS / MERCADO ========= */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: clamp(2rem,4vw,3rem); }
.stat {
  text-align: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.stat__num { font-family: var(--f-serif); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--accent); line-height: 1; margin-bottom: .5rem; }
.stat p { font-size: .92rem; margin: 0; }
.stats__src { margin-top: 1.4rem; font-size: .78rem; color: var(--fg-dim); text-align: center; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr; } }

/* ========= BANDA ESCURA (CTA / ajuda) ========= */
.band { background: var(--ink); color: #f3ede2; }
.band .display { color: #fff; }
.band .lede { color: #ccc2b2; }
.band .eyebrow { color: var(--sun); }
.band .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.10); box-shadow: none; }
.band .card h3 { color: #fff; }
.band .card p { color: #c9bfae; }
.band .card__ico { background: rgba(226,162,63,.16); color: var(--sun); }

/* ========= FAQ ========= */
.faq { max-width: 820px; margin: clamp(2rem,4vw,3rem) auto 0; }
.faq details {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: .7rem;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  padding: 1.2rem 1.6rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem; color: var(--accent); transition: transform .25s ease; font-weight: 300;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.6rem 1.3rem; margin: 0; font-size: .96rem; }

/* ========= FORMULÁRIO (EN / ES) ========= */
.lead {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
  max-width: 560px;
  margin-inline: auto;
}
.field { margin-bottom: 1.05rem; text-align: left; }
.field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: .4rem; color: var(--fg); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: .85rem 1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(49,74,91,.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.consent { display: flex; gap: .65rem; align-items: flex-start; margin: .25rem 0 1.3rem; }
.consent input { margin-top: .25rem; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--accent); }
.consent label { font-size: .82rem; color: var(--fg-muted); font-weight: 400; }
.form-msg { margin-top: 1rem; font-size: .92rem; text-align: center; min-height: 1.2em; }
.form-msg--ok { color: var(--ok); }
.form-msg--err { color: var(--accent-2); }
@media (max-width: 520px) { .field--row { grid-template-columns: 1fr; } }

/* layout duas colunas: copy + form */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split__copy .display { text-align: left; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split__copy { text-align: center; } .split__copy .display { text-align: center; } }

/* ========= FOOTER ========= */
.footer { background: var(--ink); color: #b6ac9b; padding: 3rem 0 2.4rem; }
.footer__top { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.footer .brand__name { color: #fff; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: .86rem; }
.footer__links a:hover { color: #fff; }
.footer__legal { border-top: 1px solid rgba(255,255,255,.10); padding-top: 1.6rem; font-size: .78rem; color: #8b8273; }
.footer__legal p { color: #8b8273; margin: 0 0 .5rem; }
.footer__lang { display: inline-flex; gap: .6rem; }
.footer__lang a { color: #b6ac9b; font-weight: 700; }
.footer__lang a[aria-current="true"] { color: var(--sun); }

/* ========= ANIM ========= */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ========= DEPOIMENTOS ========= */
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: clamp(2rem, 4vw, 3rem); }
.depo {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  margin: 0;
}
.depo__photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; background: var(--bg-2); }
.depo__body { padding: 1.4rem 1.6rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.depo__mark { font-family: var(--f-serif); color: var(--accent); font-size: 2.2rem; line-height: .4; display: block; margin-bottom: .5rem; opacity: .45; }
.depo__quote { font-size: .98rem; color: var(--fg); line-height: 1.6; margin: 0 0 1.3rem; }
.depo__foot { margin-top: auto; }
.depo__name { font-weight: 700; color: var(--fg); font-size: .98rem; }
.depo__tag { font-size: .8rem; color: var(--fg-dim); margin-top: .1rem; }
.depo__note { text-align: center; margin-top: 1.4rem; font-size: .82rem; color: var(--fg-dim); }
@media (max-width: 860px) { .depo-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; } }

/* ========= CARROSSEL (depoimentos) ========= */
.carousel { position: relative; margin-top: clamp(1.5rem, 3vw, 2.2rem); }
.carousel__track {
  display: flex; gap: var(--gap);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: .5rem .25rem 1.1rem; margin: 0 -.25rem;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track .depo { scroll-snap-align: center; flex: 0 0 clamp(268px, 82%, 332px); }
.carousel__nav {
  position: absolute; top: 40%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border-2); color: var(--accent);
  display: grid; place-items: center; cursor: pointer; z-index: 3;
  box-shadow: var(--shadow); transition: background .15s ease, opacity .15s ease;
}
.carousel__nav svg { width: 20px; height: 20px; }
.carousel__nav:hover { background: var(--bg-2); }
.carousel__nav--prev { left: -12px; }
.carousel__nav--next { right: -12px; }
.carousel__nav[disabled] { opacity: .3; cursor: default; }
.carousel__dots { display: flex; gap: .5rem; justify-content: center; margin-top: .2rem; }
.carousel__dot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--border-2); cursor: pointer; padding: 0; transition: width .2s ease, background .2s ease; }
.carousel__dot[aria-current="true"] { background: var(--accent); width: 22px; border-radius: 5px; }
@media (max-width: 560px) { .carousel__nav { display: none; } }

/* =========================================================
   DE-SLOP — anti "cara de IA" (hallmark slop-test + anti-ia.md)
   Converte tiles com ícone em blocos editoriais com filete,
   descentraliza o hero e enxuga o gradiente.
   ========================================================= */

/* gate 29: um único bloom quente sutil, sem mesh de 2 cores */
.hero {
  background:
    radial-gradient(72% 52% at 74% -8%, rgba(226,162,63,.15), transparent 60%),
    var(--bg);
}

/* hero: headline um pouco maior, mantém CENTRALIZADO */
.hero__inner .hero__title { font-size: clamp(2.4rem, 6vw, 4.5rem); }

/* gates 3 + 30: matar os "tiles" (caixa + ícone). Vira lista editorial com filete */
.card__ico { display: none !important; }
.card {
  background: transparent;
  border: 0;
  border-top: 1.5px solid var(--border-2);
  border-radius: 0;
  box-shadow: none;
  padding: 1.5rem 0 0;
}
.card h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.62rem);
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.card p { font-size: .96rem; }
/* band (escuro) precisa sobrescrever o .band .card original (mais específico) */
.band .card {
  background: transparent;
  border: 0;
  border-top: 1.5px solid rgba(255,255,255,.18);
  border-radius: 0;
  box-shadow: none;
  padding: 1.5rem 0 0;
}

/* gate 9: respiro entre blocos com um filete sutil onde não há troca de cor */
.section + .section:not(.section--alt):not(.band) { border-top: 1px solid var(--border); }

/* "quem pode": numeração editorial em vez de ícone (usa o índice via counter) */
.grid--2 { counter-reset: idx; }

/* =========================================================
   EDITORIAL CRAFT — UI mais humano (hallmark: typography +
   layout-and-space + genre/editorial). Quebra o "tudo
   centralizado e igual", tipografia com contraste, profundidade
   por peso/filete em vez de sombra.
   ========================================================= */

/* — Tipografia: display mais apertado e com contraste; numerais tabulares — */
.display { letter-spacing: -.025em; line-height: 1.07; }
.hero__title { letter-spacing: -.032em; }
.stat__num { font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.checklist, .step__n::before { font-variant-numeric: tabular-nums; }

/* — Cabeçalhos CENTRALIZADOS com filete-acento curto acima do eyebrow — */
.section > .container > .center > .eyebrow,
.section > .container.center > .eyebrow { position: relative; padding-top: 1.25rem; }
.section > .container > .center > .eyebrow::before,
.section > .container.center > .eyebrow::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 42px; height: 2px; background: var(--accent);
}
.band .eyebrow::before { background: var(--sun); }
/* o CTA final (.band.center no <section>) continua centralizado — variação proposital */

/* — Profundidade por peso/filete, não por sombra mole — */
.path, .step, .stat, .depo, .chip, .hero__flag { box-shadow: none; }
.lead { box-shadow: 0 0 0 1px var(--border) inset; }

/* — Menos "SaaS": cantos discretos em vez de pílula — */
.btn { border-radius: 8px; }
.chip, .hero__flag, .path__tag { border-radius: 7px; }

/* — Ritmo desigual: generoso em cima, mais curto embaixo — */
.section { padding-block: clamp(3.75rem, 7.5vw, 7rem) clamp(2.5rem, 5vw, 4.5rem); }

/* — Assimetria leve em "dois caminhos" — */
.paths { grid-template-columns: 1.08fr .92fr; }
@media (max-width: 760px) { .paths { grid-template-columns: 1fr; } }

/* — Foto do hero (cutout sem fundo) compondo com o H1 — */
.hero__photo {
  margin: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  min-height: 100%;
}
.hero__photo::before {
  content: "";
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,74,91,.12), rgba(49,74,91,0) 66%);
  z-index: -1;
}
.hero__photo img {
  width: 100%;
  max-width: 430px;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 40px rgba(40,28,14,.22));
}
@media (max-width: 900px) {
  .hero--split .hero__photo { order: 2; }
  .hero__photo img { max-width: 260px; margin-inline: auto; }
  .hero__photo::before { width: 240px; }
}
