/* =========================================================
   MONEY WAY CÂMBIO · Site
   Identidade Money Way · navy/esmeralda/creme/terracota · sem gradiente · Porto Alegre/RS
   ========================================================= */

:root {
  /* Identidade Money Way — navy · esmeralda · creme · terracota */
  --navy:      #1B3346;   /* azul do logo · texto forte */
  --ink-deep:  #0A1722;   /* navy profundo */
  --slate:     #57626E;   /* texto corpo (quente) */
  --slate-2:   #8A93A0;   /* texto fraco */
  --line:      #EAE3D5;   /* divisores (creme) */
  --card:      #FFFFFF;
  --bg:        #FBF8F1;   /* fundo creme claro */
  --bg-2:      #F3EEE2;
  --cream:     #F4EFE6;

  --emerald:   #0B6E5C;   /* verde-joia · primário/links */
  --emerald-lift: #12907A;
  --terra:     #B65A38;   /* terracota · acento quente */
  --terra-soft:#CD7E55;

  /* aliases mantidos p/ não quebrar regras existentes */
  --blue:      var(--emerald);
  --indigo:    var(--emerald-lift);
  --violet:    var(--terra);
  --grad:      #0B6E5C;   /* (sem gradiente) verde-joia sólido */
  --grad-soft: #EFEADD;   /* (sem gradiente) creme sólido */

  --up:        #0B6E5C;  --up-bg: #E5F1EC;
  --dn:        #C0492E;  --dn-bg: #F8E9E2;
  --wa:        #25D366;  --wa-dk: #1EAE55;

  --r:         22px;     /* card radius */
  --r-sm:      14px;
  --shadow:    0 24px 60px -34px rgba(27, 51, 70, 0.28);
  --shadow-sm: 0 10px 30px -18px rgba(27, 51, 70, 0.26);

  --sans:  "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --disp:  "DM Sans", "Helvetica Neue", Arial, sans-serif;  /* UI / números / nav */
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif; /* manchetes + destaque */
  --mono:  "DM Mono", "SFMono-Regular", Menlo, monospace;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
body {
  margin: 0; font-family: var(--sans); color: var(--navy);
  background: var(--bg);
  font-size: 16px; line-height: 1.6; overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
/* destaque das manchetes: Instrument Serif itálico em terracota (assinatura da marca) */
.grad-text { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--terra); letter-spacing: 0; }

/* eyebrow */
.eyebrow {
  font-family: var(--mono); font-weight: 500; font-size: 12.5px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--emerald-lift); margin: 0 0 18px;
}

/* section heading */
.s-title { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 5vw, 60px); line-height: 1.04; letter-spacing: -0.01em; margin: 0; color: var(--navy); }
.s-sub { color: var(--slate); font-size: clamp(16px, 1.4vw, 19px); max-width: 56ch; margin: 18px 0 0; }

/* buttons */
.btn { font-family: var(--disp); font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 100px; text-decoration: none; cursor: pointer; border: none; transition: transform .2s ease, box-shadow .2s ease, background .2s; white-space: nowrap; }
.btn--grad { background: var(--grad); color: #fff; box-shadow: 0 14px 30px -12px rgba(11, 110, 92, .55); }
.btn--grad:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(11, 110, 92, .65); }
.btn--ghost { background: #fff; color: var(--navy); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--terra-soft); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn .ic { width: 18px; height: 18px; display: inline-flex; }

/* section spacing */
section { padding-block: clamp(44px, 6vw, 72px); position: relative; }

/* ============ NAV ============ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(234,227,213,.8);
  box-shadow: 0 1px 20px rgba(27,51,70,.06);
  transition: box-shadow .3s, background .3s; }
.nav.is-stuck { box-shadow: 0 4px 28px rgba(27,51,70,.14); }
.nav__bar { padding: 0 clamp(32px, 4vw, 60px);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
  height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand__sym { height: 34px; width: auto; display: block; }
.nav.is-stuck .brand__sym { height: 30px; transition: height .3s; }
.brand__name { font-family: var(--sans); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; color: var(--navy); white-space: nowrap; }
.brand__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em; color: var(--slate-2); font-weight: 500; white-space: nowrap;
  border-left: 1px solid var(--line); padding-left: 12px; text-transform: uppercase; }
.nav__center { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 2vw, 28px); }
.nav__end { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.nav__center a, .nav__end a:not(.nav__cta) { font-family: var(--disp); font-weight: 600; font-size: 15px; color: var(--navy); text-decoration: none; transition: color .2s; }
.nav__center a:hover, .nav__end a:not(.nav__cta):hover { color: var(--blue); }
.nav__cta { display: inline-flex; }
.nav__end a.nav__cta { color: #fff; }
.nav__end a.nav__cta:hover { color: #fff; }
@media (max-width: 1240px) { .brand__tag { display: none; } }
@media (max-width: 980px) { .nav__center { display: none; } .nav__end { display: none; } }

/* ============ HERO ============ */
.hero { padding-top: clamp(90px, 13vh, 120px); padding-bottom: clamp(40px, 6vw, 70px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }
.hero__pills { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.pill { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line);
  border-radius: 100px; padding: 8px 16px; font-size: 13.5px; font-weight: 600; color: var(--slate); box-shadow: var(--shadow-sm); text-decoration: none; }
.pill--map { color: var(--emerald); border-color: rgba(11,110,92,.25); background: rgba(11,110,92,.05);
  transition: background .2s, border-color .2s; }
.pill--map:hover { background: rgba(11,110,92,.1); border-color: var(--emerald); }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--up); box-shadow: 0 0 0 0 rgba(22,163,74,.4); animation: ping 1.8s ease-out infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(22,163,74,.45);} 70%{ box-shadow: 0 0 0 7px rgba(22,163,74,0);} 100%{ box-shadow:0 0 0 0 rgba(22,163,74,0);} }
.hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 7.6vw, 92px); line-height: 1.0; letter-spacing: -0.01em; margin: 22px 0 0; color: var(--navy); }
.hero h1 .grad-text { display: inline; }
.hero__lede { color: var(--slate); font-size: clamp(17px, 1.5vw, 20px); max-width: 44ch; margin: 26px 0 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* hero globe scene */
.scene { position: relative; aspect-ratio: 1 / 1; max-width: 520px; margin-inline: auto; width: 100%; }
.scene__globe { position: absolute; inset: 19%; z-index: 2; object-fit: contain; will-change: transform;
  filter: drop-shadow(0 30px 55px rgba(27,51,70,.28)); animation: floaty 8s ease-in-out infinite; }
.scene__ring { position: absolute; inset: 6%; border-radius: 50%; border: 1.5px dashed rgba(205,126,85,.55); animation: spin 60s linear infinite; }
.scene__ring.r2 { inset: 18%; border-style: solid; border-color: rgba(11,110,92,.22); animation-duration: 90s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.scene__node { position: absolute; border-radius: 50%; background: var(--terra-soft); box-shadow: 0 6px 16px -4px rgba(182,90,56,.5); z-index: 3; }
.float-card { position: absolute; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-sm); padding: 14px 16px; box-shadow: var(--shadow); animation: floaty 6s ease-in-out infinite; }
.float-card .fc-top { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--slate); font-weight: 600; }
.float-card .fc-top .ic { color: var(--blue); width: 15px; height: 15px; }
.float-card .fc-val { font-family: var(--disp); font-weight: 800; font-size: 19px; color: var(--navy); margin-top: 6px; display: flex; align-items: baseline; gap: 8px; }
.float-card .fc-chg { font-size: 12px; font-weight: 700; color: var(--up); }
@keyframes floaty { 0%,100% { transform: translateY(-6px) scale(var(--g-scale,1));} 50%{ transform: translateY(6px) scale(var(--g-scale,1));} }
@media (prefers-reduced-motion: reduce) { .float-card, .scene__ring, .pill .dot { animation: none; } }

/* ============ STATS ROW (under hero / numbers section) ============ */
.numbers { text-align: center; }
.numbers .s-title { margin-inline: auto; max-width: 18ch; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 22px); margin-top: clamp(40px, 5vw, 60px); }
@media (max-width: 820px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(26px, 3vw, 40px) 18px; box-shadow: var(--shadow-sm); }
.stat__num { font-family: var(--disp); font-weight: 800; font-size: clamp(40px, 5vw, 62px); line-height: 1; letter-spacing: -0.02em; }
.stat__num--accent { color: var(--terra); font-style: normal; }
.stat__lab { color: var(--slate); font-size: 15px; margin-top: 12px; }
.numbers__foot { margin-top: clamp(34px, 4vw, 48px); font-size: 16px; color: var(--slate); }
.numbers__foot b { color: var(--navy); }

/* ============ COTAÇÃO ============ */
.cur-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 20px); margin-top: clamp(40px, 5vw, 56px); }
@media (max-width: 1024px) { .cur-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cur-grid { grid-template-columns: 1fr; } }
.cur { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.cur:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cur__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.cur__id { display: flex; align-items: center; gap: 12px; }
.cur__flag { font-size: 26px; line-height: 1; }
.cur__code { font-family: var(--disp); font-weight: 800; font-size: 19px; color: var(--navy); }
.cur__name { font-size: 13px; color: var(--slate-2); margin-top: 1px; }
.chg { font-size: 12.5px; font-weight: 700; padding: 5px 9px; border-radius: 100px; display: inline-flex; align-items: center; gap: 4px; }
.chg.up { color: var(--up); background: var(--up-bg); }
.chg.dn { color: var(--dn); background: var(--dn-bg); }
.cur__rates { display: flex; gap: 14px; margin-top: 22px; }
.cur__rate { flex: 1; }
.cur__rate .lab { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-2); font-weight: 700; }
.cur__rate .val { font-family: var(--disp); font-weight: 800; font-size: clamp(18px, 1.6vw, 21px); color: var(--navy); margin-top: 4px; font-feature-settings: 'tnum'; }
.cur__sim { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line);
  font-family: var(--disp); font-weight: 700; font-size: 14px; color: var(--blue); text-decoration: none; }
.cur__sim .ar { transition: transform .2s; }
.cur:hover .cur__sim .ar { transform: translateX(4px); }
.cur-cta { display: flex; justify-content: center; margin-top: clamp(34px, 4vw, 48px); }

/* ============ SIMULADOR ============ */
.sim { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow);
  margin-top: clamp(34px, 4vw, 48px); overflow: hidden; }
.sim__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 18px clamp(20px, 3vw, 30px); border-bottom: 1px solid rgba(255,255,255,.1); background: var(--navy); }
.sim__title-group { display: flex; flex-direction: column; gap: 2px; }
.sim__title { font-family: var(--disp); font-weight: 700; font-size: 17px; color: #fff; }
.sim__subtype { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.sim__tabs { display: flex; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 100px; padding: 3px; gap: 3px; }
.sim__tab { font-family: var(--disp); font-weight: 700; font-size: 13px; border: none; border-radius: 100px; padding: 9px 18px; cursor: pointer; transition: all .18s; white-space: nowrap; opacity: .55; }
.sim__tab[data-tab="especie"] { background: #fff; color: var(--navy); }
.sim__tab[data-tab="debito"] { background: var(--terra); color: #fff; }
.sim__tab.active { opacity: 1; box-shadow: 0 2px 8px rgba(0,0,0,.18); }
.sim__iof-note { display: flex; align-items: center; gap: 8px; padding: 9px clamp(20px, 3vw, 30px); background: rgba(11,110,92,.06); font-family: var(--mono); font-size: 11.5px; color: var(--emerald); border-bottom: 1px solid rgba(11,110,92,.12); }
.sim__iof-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); flex-shrink: 0; animation: ping 1.8s ease-out infinite; }
.sim__body { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(22px, 3vw, 38px); padding: clamp(22px, 3vw, 34px); align-items: center; }
@media (max-width: 760px) { .sim__body { grid-template-columns: 1fr; } }
.sim__row { margin-bottom: 20px; }
.sim__row:last-child { margin-bottom: 0; }
.sim__row--2 { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 16px; margin-bottom: 0; }
@media (max-width: 460px) { .sim__row--2 { grid-template-columns: 1fr; } }
.sim label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 9px; }
.sim__cur { display: flex; flex-wrap: wrap; gap: 8px; }
.sim__cur button { font-family: var(--disp); font-weight: 700; font-size: 13.5px; color: var(--slate); background: var(--bg); border: 1px solid var(--line);
  border-radius: 100px; padding: 9px 14px; cursor: pointer; transition: all .18s; }
.sim__cur button:hover { border-color: var(--terra-soft); }
.sim__cur button.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.sim__toggle { display: flex; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 4px; }
.sim__toggle button { flex: 1; font-family: var(--disp); font-weight: 700; font-size: 14px; color: var(--slate); background: transparent; border: none; border-radius: 7px; padding: 11px 8px; cursor: pointer; transition: all .18s; }
.sim__toggle button.active { background: var(--emerald); color: #fff; }
.sim__input { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 10px; padding: 4px 16px; background: var(--bg); transition: border-color .2s; }
.sim__input:focus-within { border-color: var(--emerald); background: #fff; }
.sim__input span { font-family: var(--disp); font-weight: 700; color: var(--slate-2); font-size: 18px; }
.sim__input input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; font-family: var(--disp); font-weight: 700; font-size: 24px; color: var(--navy); padding: 11px 0; width: 100%; font-feature-settings: 'tnum'; }
.sim__out { background: var(--navy); border-radius: calc(var(--r) - 6px); padding: clamp(22px, 2.4vw, 30px); color: var(--cream); }
.sim__rate { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--mono); font-size: 13px; color: rgba(244,239,230,.7); }
.sim__rate b { color: var(--terra-soft); font-weight: 500; font-size: 15px; }
.sim__total { display: flex; flex-direction: column; gap: 4px; margin-top: 16px; padding-top: 16px; border-top: 1px dashed rgba(244,239,230,.18); }
.sim__total span { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(244,239,230,.55); }
.sim__total strong { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4.4vw, 46px); line-height: 1; color: var(--cream); }
.sim__out .btn--grad { width: 100%; justify-content: center; margin-top: 20px; }
.sim__note { font-family: var(--mono); font-size: 10.5px; line-height: 1.5; color: rgba(244,239,230,.5); margin: 12px 0 0; text-align: center; }
.sim__currencies-note { font-family: var(--mono); font-size: 11px; line-height: 1.5; color: rgba(244,239,230,.45); margin: 8px 0 0; text-align: center; }
.sim__currencies-note a { color: rgba(100,220,190,.7); text-decoration: none; }
.sim__currencies-note a:hover { color: var(--cream); }

/* ============ TABELA DE COTAÇÕES ============ */
.rates-wrap { margin-top: clamp(28px, 3vw, 42px); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.rates-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 16px clamp(18px, 2.4vw, 26px); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.rates-head .ttl { font-family: var(--disp); font-weight: 700; font-size: 16px; color: var(--navy); }
.rates-head .upd { font-family: var(--mono); font-size: 12px; color: var(--slate-2); display: inline-flex; align-items: center; gap: 8px; }
.rates-head .upd .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); animation: ping 1.8s ease-out infinite; }
.rates-scroll { overflow-x: auto; }
.rates-table { width: 100%; border-collapse: collapse; min-width: 460px; }
.rates-table th, .rates-table td { padding: 14px clamp(16px, 2.2vw, 26px); text-align: left; }
.rates-table thead th { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-2); font-weight: 500; border-bottom: 1px solid var(--line); background: #fff; }
.rates-table th.num, .rates-table td.num { text-align: right; font-feature-settings: 'tnum'; }
.rates-table tbody tr { border-bottom: 1px solid var(--line); transition: background .15s; }
.rates-table tbody tr:last-child { border-bottom: none; }
.rates-table tbody tr:hover { background: var(--bg); }
.rates-cur { display: flex; align-items: center; gap: 12px; }
.rates-cur .fl { font-size: 22px; line-height: 1; }
.rates-cur .cd { font-family: var(--disp); font-weight: 800; color: var(--navy); font-size: 15px; }
.rates-cur .nm { font-size: 13px; color: var(--slate-2); }
.rates-table td.num { font-family: var(--disp); font-weight: 700; color: var(--navy); font-size: 16px; }
.rates-table td.venda { color: var(--terra); }
@media (max-width: 560px) { .rates-cur .nm { display: none; } }
.rates-more { display: flex; justify-content: center; margin-top: clamp(20px, 2.4vw, 28px); }
.rates-more a { font-family: var(--disp); font-weight: 700; font-size: 15px; color: var(--emerald); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); background: #fff; border-radius: 100px; padding: 12px 22px; box-shadow: var(--shadow-sm); transition: transform .2s, border-color .2s, color .2s; }
.rates-more a:hover { transform: translateY(-2px); border-color: var(--terra-soft); color: var(--terra); }
.rates-more a span { transition: transform .2s; }
.rates-more a:hover span { transform: translateX(4px); }
.rates-notes { margin-top: 20px; display: flex; flex-direction: column; gap: 7px; }
.rates-notes p { font-family: var(--mono); font-size: 12px; line-height: 1.5; color: var(--slate); margin: 0; padding-left: 16px; position: relative; }
.rates-notes p::before { content: "–"; position: absolute; left: 0; color: var(--terra-soft); }
/* CTA cotações completas */
.rates-cta-box { margin-top: clamp(28px, 3vw, 40px); background: var(--navy); border-radius: var(--r);
  padding: clamp(24px, 3vw, 36px); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
@media (max-width: 640px) { .rates-cta-box { flex-direction: column; align-items: center; text-align: center; } }
.rates-cta-box__text { display: flex; flex-direction: column; gap: 6px; }
.rates-cta-box__text strong { font-family: var(--disp); font-weight: 700; font-size: clamp(17px, 2vw, 21px); color: #fff; }
.rates-cta-box__text span { font-family: var(--mono); font-size: 13px; color: rgba(255,255,255,.7); }
.rates-cta-box .btn--grad { box-shadow: none; }
.rates-cta-box .btn--grad:hover { box-shadow: none; transform: none; }
/* CTA moeda não listada */
.notlisted { margin-top: clamp(28px, 3vw, 40px); background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(24px, 3vw, 34px); display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.notlisted__t { font-family: var(--disp); font-weight: 700; font-size: clamp(18px, 2vw, 22px); color: var(--navy); }
.notlisted__s { color: var(--slate); font-size: 15px; margin-top: 4px; }

/* ============ SOBRE ============ */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 880px) { .about__grid { grid-template-columns: 1fr; } }
.about__img { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; position: relative; }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__badge { position: absolute; left: 18px; bottom: 18px; background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  border-radius: 100px; padding: 10px 16px; font-size: 13.5px; font-weight: 700; color: var(--navy); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 8px; }
.about__list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; }
.about__list li { display: flex; align-items: center; gap: 13px; font-size: 16px; color: var(--navy); font-weight: 500; }
.about__list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 13px; }

/* ============ SERVIÇOS ============ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); margin-top: clamp(40px, 5vw, 60px); }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }
.svc { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(26px, 2.6vw, 34px); box-shadow: var(--shadow-sm);
  transition: transform .28s, box-shadow .28s; position: relative; overflow: hidden; }
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc__ic { width: 54px; height: 54px; border-radius: 16px; background: var(--grad); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 24px -10px rgba(11,110,92,.55); }
.svc__ic svg { width: 26px; height: 26px; }
.svc h3 { font-family: var(--disp); font-weight: 700; font-size: 21px; color: var(--navy); margin: 22px 0 0; letter-spacing: -0.01em; }
.svc p { color: var(--slate); font-size: 15px; margin: 12px 0 0; }
.svc__more { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-family: var(--disp); font-weight: 700; font-size: 14px; color: var(--blue); text-decoration: none; }
.svc__more .ar { transition: transform .2s; }
.svc:hover .svc__more .ar { transform: translateX(4px); }

/* ============ DÓLARES ANTIGOS (gradient banner) ============ */
.special { }
.special__card { position: relative; overflow: hidden; border-radius: clamp(22px, 3vw, 34px); background: var(--navy); color: var(--cream);
  padding: clamp(36px, 5vw, 70px); box-shadow: 0 40px 80px -40px rgba(27,51,70,.4); }
.special__card::after { content: none; }
.special__inner { position: relative; z-index: 2; max-width: 58%; }
@media (max-width: 760px) { .special__inner { max-width: 100%; } }
.special__badge { display: inline-flex; align-items: center; gap: 8px; background: var(--terra); color: #fff; border-radius: 100px; padding: 7px 14px; font-size: 13px; font-weight: 700; }
.special h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 4.4vw, 54px); line-height: 1.02; letter-spacing: -0.005em; margin: 18px 0 0; }
.special p { color: rgba(255,255,255,.88); font-size: clamp(15px, 1.4vw, 18px); margin: 18px 0 0; max-width: 52ch; }
.special .btn { margin-top: 30px; }
.special__img-wrap { position: absolute; right: 0; top: 0; bottom: 0; width: 44%; overflow: hidden; z-index: 1; }
.special__img-wrap::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 160px;
  background: linear-gradient(to right, var(--navy) 0%, transparent 100%); z-index: 2; }
.special__img-wrap::after { content: ""; position: absolute; inset: 0; background: rgba(27,51,70,.35); z-index: 1; }
.special__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
@media (max-width: 760px) { .special__img-wrap { display: none; } }

/* ============ COMO FUNCIONA ============ */
.how { text-align: center; }
.how .s-title { margin-inline: auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); margin-top: clamp(44px, 5vw, 64px); position: relative; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; }
.step__no { width: 70px; height: 70px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center;
  font-family: var(--disp); font-weight: 800; font-size: 28px; margin: 0 auto; box-shadow: 0 16px 30px -12px rgba(11,110,92,.55); }
.step h3 { font-family: var(--disp); font-weight: 700; font-size: 21px; color: var(--navy); margin: 22px 0 0; }
.step p { color: var(--slate); font-size: 15px; margin: 12px auto 0; max-width: 34ch; }

/* ============ DEPOIMENTOS ============ */
/* Google rating badge */
.google-section { padding-block: clamp(44px, 6vw, 72px); }
/* layout: badge + carrossel lado a lado */
.google-wrap { display: flex; align-items: center; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap; }
.google-badge { display: flex; align-items: center; gap: 16px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(18px, 2vw, 26px) clamp(22px, 3vw, 36px); box-shadow: var(--shadow-sm); }
.google-badge__icon { width: 36px; height: 36px; flex-shrink: 0; }
.google-badge__info { display: flex; flex-direction: column; gap: 2px; }
.google-badge__stars { color: #F5A623; font-size: 20px; letter-spacing: 3px; line-height: 1; }
.google-badge__score { font-family: var(--disp); font-weight: 800; font-size: 20px; color: var(--navy); display: flex; align-items: center; gap: 6px; }
.google-badge__count { font-family: var(--mono); font-size: 12px; font-weight: 400; color: var(--slate-2); }
/* carrossel */
.gc { flex: 1; min-width: 260px; }
.gc__slides { position: relative; }
.gc__slide { display: none; }
.gc__slide.active { display: block; }
.gc__text { font-size: clamp(14px, 1.5vw, 16px); color: var(--slate); line-height: 1.6; margin: 0 0 10px; font-style: italic; }
.gc__author { font-family: var(--disp); font-weight: 700; font-size: 13px; color: var(--navy); }
.gc__when { font-weight: 400; color: var(--slate-2); }
.gc__nav { display: flex; gap: 7px; margin-top: 14px; }
.gc__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.gc__dot.active { background: var(--emerald); transform: scale(1.3); }
@media (max-width: 640px) { .google-wrap { flex-direction: column; align-items: flex-start; } }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 22px); margin-top: clamp(36px, 4vw, 48px); }
@media (max-width: 860px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .blog-grid { grid-template-columns: 1fr; } }
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; text-decoration: none; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post__img { aspect-ratio: 16 / 10; position: relative; overflow: hidden; }
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post:hover .post__img img { transform: scale(1.06); }
.post__cat { position: absolute; left: 12px; top: 12px; background: rgba(255,255,255,.94); border-radius: 100px; padding: 5px 12px; font-size: 11.5px; font-weight: 700; color: var(--indigo); }
.post__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.post h3 { font-family: var(--disp); font-weight: 700; font-size: 17px; color: var(--navy); margin: 0; line-height: 1.25; }
.post p { color: var(--slate); font-size: 14px; margin: 10px 0 0; flex: 1; }
.post__more { margin-top: 16px; font-family: var(--disp); font-weight: 700; font-size: 13.5px; color: var(--blue); }

/* ============ CTA FINAL ============ */
.final { text-align: center; }
.final__card { position: relative; overflow: hidden; border-radius: clamp(22px, 3vw, 34px); background: var(--emerald); color: #fff; padding: clamp(48px, 7vw, 90px) clamp(24px, 5vw, 60px); box-shadow: 0 40px 90px -44px rgba(11,110,92,.45); }
.final__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.18); border-radius: 100px; padding: 7px 15px; font-size: 13px; font-weight: 700; }
.final h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4.8vw, 62px); line-height: 1.03; letter-spacing: -0.005em; margin: 18px auto 0; max-width: 18ch; }
.final p { color: rgba(255,255,255,.88); font-size: clamp(16px, 1.4vw, 19px); margin: 18px auto 0; max-width: 46ch; }
.final .btn { margin-top: 34px; }

/* ============ FOOTER ============ */
.foot { background: var(--ink-deep); color: #C3CBE0; padding: clamp(56px, 7vw, 90px) 0 36px; }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(30px, 4vw, 60px); }
@media (max-width: 780px) { .foot__grid { grid-template-columns: 1fr; gap: 36px; } }
.foot .brand__sym { height: 38px; }
.foot .brand__name { color: var(--cream); }
.foot .brand__tag { color: #7E89AB; border-left-color: rgba(255,255,255,.14); }
.foot__about { font-size: 14.5px; line-height: 1.7; margin: 20px 0 0; max-width: 38ch; color: #9AA4C2; }
.foot__social { display: flex; gap: 10px; margin-top: 20px; }
.foot__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #C3CBE0; transition: background .2s, color .2s; }
.foot__social a:hover { background: var(--grad); color: #fff; }
.foot__social svg { width: 18px; height: 18px; }
.foot h4 { font-family: var(--disp); font-weight: 700; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.foot__col a, .foot__col p { display: block; color: #9AA4C2; text-decoration: none; font-size: 14.5px; line-height: 1.4; margin: 0 0 14px; transition: color .2s; }
.foot__col a:hover { color: #fff; }
.foot__col .ico-line { display: flex; gap: 10px; align-items: flex-start; }
.foot__col .ico-line svg { width: 16px; height: 16px; margin-top: 3px; flex: none; color: var(--blue); }
.foot__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: clamp(40px, 5vw, 60px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: #7E89AB; }

/* ============ WHATSAPP FLOAT ============ */
.wa { position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 95; width: 62px; height: 62px; border-radius: 50%;
  background: var(--wa); display: grid; place-items: center; text-decoration: none; box-shadow: 0 16px 36px -12px rgba(37,211,102,.7); transition: transform .25s, background .25s; }
.wa:hover { transform: scale(1.08); background: var(--wa-dk); }
.wa svg { width: 32px; height: 32px; fill: #fff; }
.wa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--wa); opacity: .45; animation: waPing 2.4s ease-out infinite; z-index: -1; }
@keyframes waPing { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.8); opacity: 0; } }

/* ============ NAV DROPDOWN (Serviços) ============ */
.nav__drop { position: relative; }
.nav__drop > a { display: inline-flex; align-items: center; gap: 5px; }
.nav__drop > a .chev { width: 13px; height: 13px; transition: transform .22s; }
.nav__drop:hover > a .chev, .nav__drop:focus-within > a .chev { transform: rotate(180deg); }
.nav__menu { position: absolute; top: 100%; left: 50%; padding-top: 16px; transform: translateX(-50%) translateY(8px);
  opacity: 0; visibility: hidden; transition: opacity .22s ease, transform .22s ease, visibility .22s; z-index: 120; }
.nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__menu-inner { min-width: 240px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 8px; }
.nav__menu a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 10px; font-family: var(--disp); font-weight: 600; font-size: 14px; color: var(--navy); text-decoration: none; transition: background .15s, color .15s; white-space: nowrap; }
.nav__menu a:hover { background: var(--bg-2); color: var(--emerald); }
.nav__menu a .di { width: 7px; height: 7px; border-radius: 50%; background: var(--terra-soft); flex: none; }
@media (max-width: 980px) { .nav__drop { display: none; } }

/* ============ SUBPÁGINAS ============ */
.page-hero { padding-top: clamp(96px, 14vh, 130px); padding-bottom: clamp(20px, 3vw, 36px); }
.crumb { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-2); }
.crumb a { color: var(--emerald); text-decoration: none; }
.crumb a:hover { color: var(--terra); }
.page-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 6vw, 74px); line-height: 1.02; letter-spacing: -0.01em; color: var(--navy); margin: 16px 0 0; }
.page-hero h1 em, .page-hero h1 .grad-text { font-style: italic; color: var(--terra); }
.page-lede { color: var(--slate); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; max-width: 60ch; margin: 22px 0 0; }
.page-lede strong { color: var(--navy); font-weight: 600; }
.prose { max-width: 62ch; }
.prose p { color: var(--slate); font-size: 16.5px; line-height: 1.7; margin: 0 0 18px; }
.prose p strong { color: var(--navy); font-weight: 600; }
.prose h2 { font-family: var(--disp); font-weight: 700; font-size: clamp(20px, 2.4vw, 26px); color: var(--navy); letter-spacing: -.01em; margin: clamp(30px, 4vw, 44px) 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose ul { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.prose li { position: relative; padding-left: 30px; color: var(--slate); font-size: 16.5px; line-height: 1.6; }
.prose li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); }
.prose li strong { color: var(--navy); font-weight: 600; }
.prose a { color: var(--emerald); font-weight: 600; text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.article-hero-img { width: 100%; height: clamp(220px, 34vw, 400px); object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow); margin-top: clamp(24px, 3vw, 36px); }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; margin-top: 18px; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--slate-2); }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--slate-2); opacity: .5; }
.article-end { margin-top: clamp(36px, 5vw, 56px); padding-top: clamp(28px, 3vw, 36px); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.article-end a.back { color: var(--slate); font-size: 14px; text-decoration: none; }
.article-end a.back:hover { color: var(--navy); }
.page-cta { margin-top: clamp(22px, 3vw, 32px); display: flex; flex-wrap: wrap; gap: 12px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); margin-top: clamp(30px, 4vw, 46px); }
@media (max-width: 820px) { .benefit-grid { grid-template-columns: 1fr; } }
.benefit { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 2.6vw, 32px); box-shadow: var(--shadow-sm); }
.benefit .bic { width: 48px; height: 48px; border-radius: 14px; background: var(--emerald); color: #fff; display: grid; place-items: center; }
.benefit .bic svg { width: 24px; height: 24px; }
.benefit h3 { font-family: var(--disp); font-weight: 700; font-size: 19px; color: var(--navy); margin: 18px 0 0; }
.benefit p { color: var(--slate); font-size: 15px; line-height: 1.6; margin: 10px 0 0; }
.cc-section .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); margin-top: clamp(30px, 4vw, 46px); }
@media (max-width: 820px) { .cc-section .contact-grid { grid-template-columns: 1fr; } }

/* ============ REVEAL ============ */
/* hidden state only applies when JS runs (html.js); content is visible by default */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; } .reveal.d2 { transition-delay: .14s; } .reveal.d3 { transition-delay: .21s; } .reveal.d4 { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) { html.js .reveal, html.js .reveal.in { opacity: 1; transform: none; transition: none; } .wa::before { animation: none; } }

/* ============ GLOBO CANVAS 3D ============ */
.globe-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
#globe-canvas {
  position: absolute;
  width: 100% !important; height: 100% !important;
  cursor: grab;
  animation: globe-float 9s ease-in-out infinite;
}
#globe-canvas:active { cursor: grabbing; }
@keyframes globe-float { 0%,100%{transform:translateY(-8px)} 50%{transform:translateY(8px)} }
.globe-ring-a, .globe-ring-b {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px dashed rgba(11,110,92,.22);
  animation: spin 55s linear infinite;
  pointer-events: none;
}
.globe-ring-b {
  inset: 6%;
  border-style: solid; border-color: rgba(182,90,56,.18);
  animation-duration: 80s; animation-direction: reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Float cards */
.float-card { position: absolute; z-index: 4; }
.float-card { background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-sm); padding: 14px 16px; box-shadow: var(--shadow); animation: floaty 6s ease-in-out infinite; }
.float-card .fc-top { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--slate); font-weight: 600; }
.float-card .fc-top .ic { color: var(--blue); width: 15px; height: 15px; }
.float-card .fc-val { font-family: var(--disp); font-weight: 800; font-size: 19px; color: var(--navy); margin-top: 6px; }
@keyframes floaty { 0%,100%{transform:translateY(-6px)} 50%{transform:translateY(6px)} }

/* ============ LANG SWITCHER ============ */
.lang-sw { display: flex; background: var(--bg); border: 1px solid var(--line); border-radius: 100px; padding: 3px; gap: 2px; }
.lang-sw button { font-size: 18px; letter-spacing: 0; color: var(--slate-2);
  background: transparent; border: none; border-radius: 100px; padding: 5px 9px; cursor: pointer; transition: all .18s; line-height: 1; }
.lang-sw button.active { background: var(--navy); color: #fff; }
@media (max-width: 980px) { .lang-sw { display: none; } }

/* "Empresas PJ" nav link */
.nav__pj { color: var(--terra) !important; font-weight: 700 !important; }
.nav__pj:hover { color: var(--terra-soft) !important; }

/* ============ FORMULÁRIO DE CONTATO ============ */
.contact-section { background: var(--bg-2); }
.cform-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(30px,4vw,56px); margin-top: clamp(38px,5vw,56px); }
@media (max-width: 860px) { .cform-grid { grid-template-columns: 1fr; } }
.cform-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(28px,3vw,42px); box-shadow: var(--shadow-sm); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 580px) { .frow { grid-template-columns: 1fr; } }
.fgroup { display: flex; flex-direction: column; margin-bottom: 16px; }
.frow .fgroup { margin-bottom: 0; }
.fgroup label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 8px; font-weight: 600; }
.fgroup input, .fgroup select, .fgroup textarea {
  font-family: var(--sans); font-size: 15px; color: var(--navy);
  border: 1px solid var(--line); border-radius: 10px; padding: 13px 16px;
  background: var(--bg); outline: none; transition: border-color .2s, background .2s;
  width: 100%;
}
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--emerald); background: #fff; }
.fgroup textarea { resize: vertical; }
.cform-card .btn { margin-top: 8px; width: 100%; justify-content: center; }

.cform-info { display: flex; flex-direction: column; gap: 22px; padding-top: 8px; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--emerald); color: #fff; display: grid; place-items: center; flex: none; }
.ci-lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 4px; }
.ci-val { font-weight: 600; color: var(--navy); font-size: 15px; line-height: 1.5; }
.pj-btn { text-align: center; justify-content: center; font-size: 14px !important; }

/* ============ NEWSLETTER ============ */
.newsletter-section { background: var(--navy); }
.nl-card { display: flex; align-items: flex-start; justify-content: space-between; gap: clamp(30px,5vw,64px); flex-wrap: wrap; }
.nl-card .s-title { color: var(--cream); }
.nl-text { flex: 1; min-width: 220px; }
.nl-text p { color: rgba(244,239,230,.7); }
.nl-form-wrap { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 12px; }
/* tabs de canal */
.nl-channels { display: flex; gap: 6px; background: rgba(255,255,255,.08); border-radius: 100px; padding: 4px; }
.nl-ch { flex: 1; font-family: var(--disp); font-weight: 700; font-size: 13px; color: rgba(244,239,230,.65); background: transparent;
  border: none; border-radius: 100px; padding: 10px 12px; cursor: pointer; transition: all .18s; display: flex; align-items: center; justify-content: center; gap: 6px; white-space: nowrap; }
.nl-ch.active { background: var(--emerald); color: #fff; }
/* form */
.nl-form { display: flex; flex-direction: column; gap: 10px; }
.nl-form input { font-family: var(--sans); font-size: 15px; color: var(--navy);
  border: none; border-radius: 12px; padding: 14px 18px; outline: none; background: rgba(255,255,255,.95); width: 100%; box-sizing: border-box; }
.nl-form input:focus { background: #fff; }
.nl-form .btn { justify-content: center; }
.nl-field-email, .nl-field-wpp { width: 100%; }

/* ============ SUBPÁGINA PJ ============ */
.pj-hero-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--emerald); color: #fff; border-radius: 100px; padding: 8px 18px; font-size: 13px; font-weight: 700; margin-bottom: 20px; }
.pj-rates-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(14px,2vw,22px); margin-top: clamp(30px,4vw,46px); }
@media (max-width: 820px) { .pj-rates-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .pj-rates-grid { grid-template-columns: 1fr; } }
.pj-rate-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(22px,2.6vw,32px); box-shadow: var(--shadow-sm); }
.pj-rate-card .cur-flag { font-size: 32px; margin-bottom: 12px; }
.pj-rate-card .cur-code { font-family: var(--disp); font-weight: 800; font-size: 22px; color: var(--navy); }
.pj-rate-card .cur-name { font-size: 13px; color: var(--slate-2); margin-top: 2px; }
.pj-rate-card .rate-row { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.pj-rate-card .rate-lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-2); }
.pj-rate-card .rate-val { font-family: var(--disp); font-weight: 800; font-size: 20px; color: var(--navy); font-feature-settings: 'tnum'; }
.pj-rate-card .rate-val.sell { color: var(--terra); }

/* Benefit card extras (Indicado para + sub-bloco) */
.benefit-tag { display: inline-flex; align-items: baseline; gap: 5px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; padding: 5px 10px; font-size: 12px; font-family: var(--mono); color: var(--slate-2); margin-top: 16px; line-height: 1.45; }
.benefit-tag strong { color: var(--navy); font-weight: 600; font-family: var(--mono); }
.benefit-sub { background: var(--bg); border-left: 3px solid var(--terra); border-radius: 0 8px 8px 0; padding: 10px 14px; margin-top: 14px; }
.benefit-sub-t { font-size: 13px; font-weight: 700; font-family: var(--disp); color: var(--navy); margin-bottom: 5px; }
.benefit-sub-d { font-size: 13px; color: var(--slate); line-height: 1.6; }

/* Partner logos strip */
.partner-strip { display: flex; align-items: center; gap: clamp(14px,3vw,28px); flex-wrap: wrap; margin-top: clamp(28px,4vw,40px); }
.partner-chip { display: flex; flex-direction: column; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 14px; padding: 18px 24px; background: #fff; min-width: 140px; text-align: center; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.partner-chip img { height: 36px; width: auto; display: block; object-fit: contain; }
.partner-chip__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; color: var(--slate-2); font-weight: 500; text-transform: uppercase; }

/* Discount callout */
.partner-discount { display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1.5px solid var(--terra); border-radius: 14px; padding: 16px 20px; margin-top: 24px; max-width: 58ch; }
.partner-discount__ic { flex-shrink: 0; width: 20px; height: 20px; color: var(--terra); margin-top: 1px; }
.partner-discount p { margin: 0; color: var(--navy); font-size: 15px; line-height: 1.6; }
.partner-discount strong { color: var(--terra); font-weight: 600; }

/* =========================================================
   MOBILE NAV — hambúrguer + drawer (injetado via app.js)
   ========================================================= */
.nav__burger { display: none; }
.mnav, .mnav__overlay { display: none; }

@media (max-width: 980px) {
  /* nav vira flex simples: logo à esquerda, hambúrguer à direita */
  .nav__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .nav__burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 46px; padding: 0 12px; margin: 0;
    background: transparent; border: none; cursor: pointer; border-radius: 12px; flex: none;
  }
  .nav__burger span { display: block; height: 2px; width: 22px; background: var(--navy); border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease; }
  .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mnav__overlay { display: block; position: fixed; inset: 0; background: rgba(10,23,34,.5);
    backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 130; }
  .mnav__overlay.open { opacity: 1; visibility: visible; }

  .mnav { display: block; position: fixed; top: 0; right: 0; bottom: 0; width: min(87vw, 370px);
    background: #fff; z-index: 140; transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1); box-shadow: -24px 0 60px -30px rgba(10,23,34,.55);
    overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .mnav.open { transform: translateX(0); }
  .mnav__inner { display: flex; flex-direction: column; gap: 2px; padding: 88px 20px 28px; min-height: 100%; }

  .mnav__link, .mnav__grouphead {
    font-family: var(--disp); font-weight: 600; font-size: 17px; color: var(--navy); text-decoration: none;
    padding: 15px 12px; border-radius: 12px; display: flex; align-items: center; justify-content: space-between;
    gap: 10px; width: 100%; background: transparent; border: none; text-align: left; cursor: pointer;
    min-height: 52px; box-sizing: border-box;
  }
  .mnav__link .chev { display: none; }
  .mnav__link:active, .mnav__grouphead:active { background: var(--bg-2); }
  .mnav__link--pj { color: var(--terra); font-weight: 700; }

  .mnav__grouphead svg { width: 18px; height: 18px; color: var(--slate-2); transition: transform .25s; flex: none; }
  .mnav__group.open .mnav__grouphead svg { transform: rotate(180deg); }
  .mnav__sub { display: none; flex-direction: column; padding-left: 6px; margin-bottom: 6px; }
  .mnav__group.open .mnav__sub { display: flex; }
  .mnav__sub a { display: flex; align-items: center; gap: 11px; padding: 13px 12px; border-radius: 10px;
    font-family: var(--disp); font-weight: 500; font-size: 15px; color: var(--slate); text-decoration: none; min-height: 48px; box-sizing: border-box; }
  .mnav__sub a:active { background: var(--bg-2); color: var(--emerald); }
  .mnav__sub a .di { width: 6px; height: 6px; border-radius: 50%; background: var(--terra-soft); flex: none; }

  .mnav__lang { display: flex; gap: 8px; margin: 16px 8px 8px; }
  .mnav__lang button { flex: 1; font-size: 20px; padding: 11px 0; border: 1px solid var(--line);
    background: var(--bg); border-radius: 12px; cursor: pointer; transition: all .18s; line-height: 1; min-height: 46px; }
  .mnav__lang button.active { background: var(--navy); border-color: var(--navy); }

  .mnav__cta { margin-top: auto; width: 100%; justify-content: center; font-size: 16px; padding: 16px; }
  .mnav__cta { display: inline-flex; }
}

/* =========================================================
   RESPONSIVO — tipografia fluida, grids e overflow (mobile/tablet)
   ========================================================= */
@media (max-width: 640px) {
  /* Tipografia: reduz mínimos para telas pequenas mantendo fluidez */
  .hero h1 { font-size: clamp(34px, 8.6vw, 56px); line-height: 1.06; margin-top: 18px; }
  .hero__lede { font-size: clamp(15.5px, 4vw, 18px); margin-top: 20px; }
  .s-title { font-size: clamp(28px, 7vw, 44px); }
  .page-hero h1 { font-size: clamp(30px, 8vw, 52px); line-height: 1.06; }
  .page-lede { font-size: clamp(16px, 4.2vw, 19px); }
  .special h2, .final h2 { font-size: clamp(28px, 7.4vw, 46px); }

  /* CTAs empilham e ficam full-width (toque confortável) */
  .hero__cta, .page-cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn, .page-cta .btn { width: 100%; justify-content: center; }

  /* espaçamento vertical um pouco mais enxuto */
  section { padding-block: clamp(40px, 11vw, 60px); }
}

@media (max-width: 480px) {
  /* Cena do globo: contida para não estourar a viewport */
  .scene { max-width: 320px; }
  /* Simulador: evita overflow horizontal em telas estreitas */
  .sim__body, .sim__out, .sim__row, .sim__row--2, .sim__controls { min-width: 0; }
  .sim__cur { gap: 7px; }
  .sim__cur button { padding: 9px 12px; font-size: 13px; }
  .sim__input input { font-size: 20px; min-width: 0; }
  .sim__total strong { font-size: clamp(30px, 9vw, 40px); }
  /* Nav bar: logo levemente menor para caber com folga */
  .brand__name { font-size: 18px; }
}
