/* Seu Plano Dental — design system */

/* ========================= 1. TOKENS ===================================== */
:root {
  /* Brand */
  --deep:        #04243D;
  --deep-2:      #072F4E;
  --deep-3:      #0B3D63;
  --brand:       #0E7EE4;
  --brand-600:   #0B6ACA;
  --brand-700:   #0A55A3;
  --teal:        #17C3B2;
  --teal-600:    #0FA697;
  --mint:        #E8F8F6;
  --sky:         #EAF4FE;
  --gold:        #E3AE3C;

  /* Neutrals */
  --ink:         #0D1B2A;
  --ink-2:       #253849;
  --muted:       #5C7186;
  --muted-2:     #8399AC;
  --line:        #E2ECF4;
  --line-2:      #EFF5FA;
  --bg:          #FFFFFF;
  --bg-soft:     #F6FAFD;
  --bg-soft-2:   #F0F7FC;

  /* Feedback */
  --ok:          #17A673;
  --warn:        #E0A03A;
  --no:          #C2CFDA;

  /* Gradients */
  --grad-brand:  linear-gradient(135deg, #0E7EE4 0%, #17C3B2 100%);
  --grad-deep:   linear-gradient(150deg, #04243D 0%, #0A3A5F 55%, #0C4E79 100%);
  --grad-soft:   linear-gradient(180deg, #FFFFFF 0%, #F4FAFE 100%);
  --grad-text:   linear-gradient(100deg, #0E7EE4 0%, #17C3B2 55%, #0E7EE4 100%);

  /* Elevation */
  --sh-xs:  0 1px 2px rgba(13, 27, 42, .06);
  --sh-sm:  0 2px 8px rgba(13, 27, 42, .06), 0 1px 2px rgba(13, 27, 42, .04);
  --sh-md:  0 10px 30px -12px rgba(9, 45, 76, .18), 0 2px 8px rgba(9, 45, 76, .06);
  --sh-lg:  0 28px 60px -24px rgba(9, 45, 76, .28), 0 8px 22px -12px rgba(9, 45, 76, .12);
  --sh-xl:  0 48px 90px -32px rgba(4, 36, 61, .38);
  --sh-teal:0 18px 40px -18px rgba(23, 195, 178, .55);
  --sh-blue:0 18px 40px -18px rgba(14, 126, 228, .55);

  /* Shape */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Rhythm */
  --pad: clamp(20px, 5vw, 40px);
  --shell: 1200px;
  --sec-y: clamp(64px, 9vw, 118px);

  /* Motion */
  --e-out:   cubic-bezier(.22, 1, .36, 1);
  --e-soft:  cubic-bezier(.4, 0, .2, 1);
  --e-spring:cubic-bezier(.34, 1.56, .64, 1);

  /* Type */
  --font: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ========================= 2. RESET & BASE =============================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(23, 195, 178, .25); color: var(--deep); }

:focus-visible {
  outline: 3px solid rgba(14, 126, 228, .45);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Scrollbar (WebKit) */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--brand), var(--teal));
  border-radius: 99px;
  border: 3px solid var(--bg-soft);
}

/* ========================= 3. LAYOUT ==================================== */
.shell {
  width: min(100% - (var(--pad) * 2), var(--shell));
  margin-inline: auto;
}
.shell--wide { --shell: 1340px; }

.section { padding-block: var(--sec-y); position: relative; }
.section--soft { background: var(--bg-soft); }
.section--mint {
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(23, 195, 178, .10), transparent 60%),
    radial-gradient(760px 420px at 92% 100%, rgba(14, 126, 228, .10), transparent 60%),
    var(--bg-soft);
}
.section--deep {
  background: var(--grad-deep);
  color: #DCEAF5;
  overflow: hidden;
}
.section--deep h2, .section--deep h3, .section--deep strong { color: #fff; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ========================= 4. TYPOGRAPHY ================================ */
h1, h2, h3, h4 {
  margin: 0;
  color: var(--deep);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.25rem, 5.4vw, 4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.8rem, 3.7vw, 2.85rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.45rem); line-height: 1.25; }
h4 { font-size: 1.02rem; line-height: 1.35; }
p  { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .745rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}
.section--deep .eyebrow { color: #6FE3D6; }
.section--deep .eyebrow::before { background: linear-gradient(90deg, #6FE3D6, transparent); }

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
  color: var(--muted);
  line-height: 1.72;
}
.section--deep .lead { color: #A9C6DC; }

.sec-head { max-width: 720px; margin-bottom: clamp(34px, 4.5vw, 58px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head h2 + .lead { margin-top: 16px; }

.grad-text {
  background: var(--grad-text);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
}

.underline-mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.underline-mark::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .04em;
  height: .34em;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(23,195,178,.32), rgba(14,126,228,.22));
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  animation: growLine 1.1s .5s var(--e-out) forwards;
}

/* ========================= 5. BUTTONS & CHIPS =========================== */
.btn {
  --btn-bg: var(--grad-brand);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  font-weight: 750;
  font-size: .955rem;
  letter-spacing: -.01em;
  color: #fff;
  background: var(--btn-bg);
  box-shadow: var(--sh-blue);
  transition: transform .34s var(--e-spring), box-shadow .34s var(--e-out), filter .3s;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.42) 48%, transparent 76%);
  transform: translateX(-130%);
  transition: transform .85s var(--e-out);
  z-index: -1;
}
.btn:hover { transform: translateY(-3px) scale(1.015); box-shadow: 0 24px 46px -18px rgba(14,126,228,.62); }
.btn:hover::after { transform: translateX(130%); }
.btn:active { transform: translateY(-1px) scale(.99); }

.btn--teal { --btn-bg: linear-gradient(135deg, #17C3B2, #0FA697); box-shadow: var(--sh-teal); }
.btn--teal:hover { box-shadow: 0 24px 46px -18px rgba(23,195,178,.6); }

.btn--wa { --btn-bg: linear-gradient(135deg, #34D26A, #1FA855); box-shadow: 0 18px 40px -18px rgba(31,168,85,.55); }
.btn--wa:hover { box-shadow: 0 24px 46px -18px rgba(31,168,85,.62); }

.btn--ghost {
  color: var(--deep);
  background: #fff;
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-sm);
}
.btn--ghost:hover { border-color: rgba(14,126,228,.4); box-shadow: var(--sh-md); }

.btn--glass {
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.28);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255,255,255,.18); box-shadow: 0 18px 40px -20px rgba(0,0,0,.5); }

.btn--sm { padding: 11px 20px; font-size: .875rem; }
.btn--lg { padding: 18px 29px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-size: .815rem;
  font-weight: 650;
  color: var(--ink-2);
  box-shadow: var(--sh-xs);
}
.chip svg { width: 15px; height: 15px; color: var(--teal-600); flex: none; }
.chip--glass {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  color: #E4F1FA;
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.chip--glass svg { color: #6FE3D6; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: .705rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.badge--hot { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-blue); }
.badge--soft { background: var(--mint); color: var(--teal-600); }
.badge--gold { background: linear-gradient(135deg, #F1C765, #D89A25); color: #3D2A05; }

/* ========================= 6. HEADER =================================== */
.topbar {
  background: var(--deep);
  color: #A9C6DC;
  font-size: .795rem;
  position: relative;
  z-index: 60;
}
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 40px;
  padding-block: 7px;
}
.topbar__list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__list li { display: inline-flex; align-items: center; gap: 7px; }
.topbar__list svg { width: 14px; height: 14px; color: #6FE3D6; }
.topbar a:hover { color: #fff; }
.topbar__pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #3ED598;
  box-shadow: 0 0 0 0 rgba(62,213,152,.7);
  animation: pulseDot 2.2s infinite;
  flex: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: box-shadow .35s var(--e-out), border-color .35s, background .35s;
}
.header.is-stuck {
  box-shadow: 0 6px 28px -14px rgba(9,45,76,.28);
  border-bottom-color: var(--line-2);
  background: rgba(255,255,255,.93);
}
.header__in {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 74px;
}

.logo { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.logo__mark {
  width: 42px; height: 42px;
  border-radius: 13px;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-blue);
  transition: transform .5s var(--e-spring);
}
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.06); }
.logo__mark svg { width: 23px; height: 23px; color: #fff; }
.logo__txt { display: flex; flex-direction: column; line-height: 1.05; }
.logo__txt b {
  font-size: 1.055rem;
  font-weight: 850;
  color: var(--deep);
  letter-spacing: -.03em;
}
.logo__txt span {
  font-size: .625rem;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__list > li > a {
  position: relative;
  display: block;
  padding: 9px 13px;
  border-radius: var(--r-pill);
  font-size: .9rem;
  font-weight: 650;
  color: var(--ink-2);
  white-space: nowrap;
  transition: color .25s, background .25s;
}
.nav__list > li > a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 3px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transform: translateX(-50%);
  transition: width .32s var(--e-out);
}
.nav__list > li > a:hover { color: var(--deep); background: var(--bg-soft-2); }
.nav__list > li > a:hover::after,
.nav__list > li > a.is-active::after { width: 22px; }
.nav__list > li > a.is-active { color: var(--brand-700); }

.header__cta { display: flex; align-items: center; gap: 12px; flex: none; }
.header__phone {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: right;
}
.header__phone small {
  font-size: .655rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.header__phone b { font-size: 1rem; color: var(--deep); font-weight: 800; letter-spacing: -.02em; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 13px;
  border: 1.5px solid var(--line);
  background: #fff;
  position: relative;
  flex: none;
}
.burger span {
  position: absolute;
  left: 12px;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--deep);
  transition: transform .38s var(--e-out), opacity .22s, width .3s;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; width: 13px; }
.burger span:nth-child(3) { top: 27px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(4,36,61,.42);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--e-out), visibility .35s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(88vw, 380px);
  height: 100%;
  background: #fff;
  padding: 26px 24px 34px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .45s var(--e-out);
  box-shadow: var(--sh-xl);
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer__close {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: grid; place-items: center;
  color: var(--deep);
  font-size: 1.3rem;
  line-height: 1;
}
.drawer__panel a.drawer__link {
  padding: 14px 14px;
  border-radius: var(--r-sm);
  font-weight: 700;
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .25s, transform .25s;
}
.drawer__panel a.drawer__link:hover { background: var(--bg-soft-2); transform: translateX(4px); }
.drawer__panel a.drawer__link span { color: var(--muted-2); }
.drawer__foot { margin-top: auto; padding-top: 22px; display: grid; gap: 10px; }

/* ========================= 7. HERO ===================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(52px, 7vw, 92px) clamp(60px, 8vw, 108px);
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(23,195,178,.16), transparent 62%),
    radial-gradient(900px 480px at 6% 8%, rgba(14,126,228,.13), transparent 60%),
    linear-gradient(180deg, #FBFDFF 0%, #F2F9FE 100%);
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,126,228,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,126,228,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 10%, transparent 72%);
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(58px);
  opacity: .5;
  pointer-events: none;
  will-change: transform;
}
.orb--1 { width: 380px; height: 380px; top: -110px; right: -60px; background: rgba(23,195,178,.42); animation: float1 15s ease-in-out infinite; }
.orb--2 { width: 320px; height: 320px; bottom: -130px; left: -80px; background: rgba(14,126,228,.34); animation: float2 18s ease-in-out infinite; }
.orb--3 { width: 220px; height: 220px; top: 42%; left: 46%; background: rgba(122,214,255,.28); animation: float1 21s ease-in-out infinite reverse; }

.hero__in {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px 7px 8px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  font-size: .82rem;
  font-weight: 650;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.hero__pill b {
  padding: 4px 11px;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  color: #fff;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero__pill span { padding-right: 10px; }

.hero h1 { margin-bottom: 20px; }
.hero__lead { max-width: 560px; margin-bottom: 30px; font-size: clamp(1.03rem, 1.5vw, 1.16rem); color: var(--muted); }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px dashed var(--line);
}
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -12px;
  display: grid;
  place-items: center;
  font-size: .78rem;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--sh-xs);
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(1) { background: linear-gradient(135deg,#0E7EE4,#0A55A3); }
.avatars span:nth-child(2) { background: linear-gradient(135deg,#17C3B2,#0FA697); }
.avatars span:nth-child(3) { background: linear-gradient(135deg,#5B8DEF,#3462C6); }
.avatars span:nth-child(4) { background: linear-gradient(135deg,#04243D,#0B3D63); }
.hero__proof-txt { font-size: .875rem; color: var(--muted); line-height: 1.45; }
.hero__proof-txt b { color: var(--deep); display: block; font-size: .95rem; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: .82rem; }

/* Hero card stack */
/* o padding vertical reserva a faixa em que os mini-cards flutuam, para que
   eles nunca cubram o conteúdo do card do plano */
.hero__art { position: relative; padding-block: 52px; }
.hero__card {
  position: relative;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 26px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line-2);
  animation: floatCard 7s ease-in-out infinite;
}
.hero__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-2);
}
.hero__card-id { display: flex; align-items: center; gap: 12px; }
.hero__card-ic {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--mint);
  display: grid; place-items: center;
  color: var(--teal-600);
}
.hero__card-ic svg { width: 24px; height: 24px; }
.hero__card-id b { display: block; color: var(--deep); font-size: 1.04rem; letter-spacing: -.02em; }
.hero__card-id small { color: var(--muted); font-size: .8rem; }

.hero__price { padding: 22px 0 6px; }
.hero__price small { font-size: .8rem; color: var(--muted); font-weight: 650; }
.hero__price div { display: flex; align-items: baseline; gap: 4px; margin-top: 2px; }
.hero__price div i { font-style: normal; font-size: 1.2rem; font-weight: 800; color: var(--deep); }
.hero__price div b {
  font-size: clamp(2.5rem, 5vw, 3.1rem);
  font-weight: 850;
  letter-spacing: -.045em;
  color: var(--deep);
  line-height: 1;
}
.hero__price div span { font-size: .92rem; color: var(--muted); font-weight: 650; }

.hero__list { display: grid; gap: 11px; padding: 18px 0 22px; }
.hero__list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--ink-2); }
.hero__list svg { width: 19px; height: 19px; color: var(--teal-600); flex: none; margin-top: 1px; }

.hero__mini {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: 13px 17px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 3;
}
.hero__mini svg { width: 20px; height: 20px; flex: none; }
.hero__mini b { display: block; color: var(--deep); font-size: .92rem; letter-spacing: -.02em; }
.hero__mini small { font-size: .73rem; color: var(--muted); }
.hero__mini--a { top: 0; left: -30px; animation: floatMini 5.4s ease-in-out infinite; }
.hero__mini--a svg { color: var(--brand); }
.hero__mini--b { bottom: 0; right: -30px; animation: floatMini 6.6s .8s ease-in-out infinite; }
.hero__mini--b svg { color: #1FA855; }

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 46px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.hero__scroll i {
  width: 22px; height: 34px;
  border: 2px solid var(--line);
  border-radius: 12px;
  position: relative;
  flex: none;
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 3px; height: 7px;
  border-radius: 2px;
  background: var(--brand);
  transform: translateX(-50%);
  animation: scrollDot 1.9s var(--e-out) infinite;
}

/* ========================= 8. SECTIONS ================================= */
/* --- Trust strip / KPIs --- */
.kpis {
  position: relative;
  margin-top: -46px;
  z-index: 5;
}
.kpis__box {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
  box-shadow: var(--sh-lg);
  padding: clamp(24px, 3vw, 38px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.kpi { text-align: center; padding: 8px 12px; position: relative; }
.kpi + .kpi::before {
  content: "";
  position: absolute;
  left: 0; top: 16%;
  width: 1px; height: 68%;
  background: linear-gradient(var(--line), transparent);
}
.kpi b {
  display: block;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 850;
  letter-spacing: -.04em;
  color: var(--deep);
  line-height: 1.05;
}
.kpi b em { font-style: normal; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kpi span { display: block; margin-top: 6px; font-size: .855rem; color: var(--muted); font-weight: 600; }

/* --- Logos marquee --- */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  font-size: .95rem;
  color: var(--muted-2);
  white-space: nowrap;
  letter-spacing: -.01em;
}
.marquee__item svg { width: 20px; height: 20px; color: var(--teal); }

/* --- Feature cards --- */
.card {
  position: relative;
  isolation: isolate;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 32px);
  box-shadow: var(--sh-sm);
  transition: transform .45s var(--e-out), box-shadow .45s var(--e-out), border-color .45s;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(420px 200px at var(--mx, 50%) var(--my, 0%), rgba(14,126,228,.075), transparent 70%);
  opacity: 0;
  transition: opacity .45s;
  pointer-events: none;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: rgba(14,126,228,.22); }
.card:hover::before { opacity: 1; }

.card__ic {
  width: 56px; height: 56px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--sky);
  color: var(--brand-600);
  transition: transform .5s var(--e-spring), background .4s, color .4s;
}
.card__ic svg { width: 27px; height: 27px; }
.card:hover .card__ic { transform: rotate(-7deg) scale(1.07); background: var(--grad-brand); color: #fff; }
.card__ic--teal { background: var(--mint); color: var(--teal-600); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .94rem; }

.card__num {
  position: absolute;
  top: 14px; right: 20px;
  font-size: 3.4rem;
  font-weight: 850;
  letter-spacing: -.05em;
  color: var(--line-2);
  line-height: 1;
  transition: color .45s;
  pointer-events: none;
}
.card:hover .card__num { color: rgba(14,126,228,.11); }

/* --- Plans --- */
.tabs {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  margin-bottom: 40px;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}
.tab {
  position: relative;
  z-index: 2;
  padding: 11px 24px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .91rem;
  color: var(--muted);
  transition: color .3s;
  white-space: nowrap;
}
.tab.is-active { color: #fff; }
.tab__glider {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 0;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  box-shadow: var(--sh-blue);
  transition: transform .48s var(--e-spring), width .48s var(--e-spring), height .3s var(--e-out);
}

.panel { display: none; }
.panel.is-active { display: block; animation: fadeUp .55s var(--e-out) both; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }

.plan {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px 28px;
  box-shadow: var(--sh-sm);
  transition: transform .45s var(--e-out), box-shadow .45s var(--e-out), border-color .35s;
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: rgba(14,126,228,.3); }
.plan--featured {
  border-color: transparent;
  box-shadow: var(--sh-lg);
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad-brand) border-box;
  border: 2px solid transparent;
}
.plan--featured::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: var(--r-lg);
  background: radial-gradient(340px 180px at 50% 0%, rgba(23,195,178,.14), transparent 70%);
  pointer-events: none;
}
.plan__flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.plan__head { padding-bottom: 18px; border-bottom: 1px solid var(--line-2); }
.plan__name { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.plan__name h3 { font-size: 1.28rem; }
.plan__tag { font-size: .845rem; color: var(--muted); min-height: 40px; }

.plan__price { padding: 20px 0 4px; }
.plan__price small { font-size: .78rem; color: var(--muted-2); font-weight: 650; display: block; }
.plan__price-row { display: flex; align-items: baseline; gap: 4px; margin-top: 3px; }
.plan__price-row i { font-style: normal; font-size: 1.08rem; font-weight: 800; color: var(--deep); }
.plan__price-row b {
  font-size: 2.6rem;
  font-weight: 850;
  letter-spacing: -.045em;
  color: var(--deep);
  line-height: 1;
}
.plan__price-row span { font-size: .88rem; color: var(--muted); font-weight: 650; }
.plan__note { font-size: .77rem; color: var(--muted-2); margin-top: 8px; }

.plan__feats { display: grid; gap: 10px; padding: 20px 0 24px; flex: 1; }
.plan__feats li { display: flex; align-items: flex-start; gap: 10px; font-size: .885rem; color: var(--ink-2); line-height: 1.5; }
.plan__feats svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--ok); }
.plan__feats li.is-off { color: var(--muted-2); }
.plan__feats li.is-off svg { color: var(--no); }
.plan__cta { margin-top: auto; }

/* --- Comparison table --- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--sh-md);
  -webkit-overflow-scrolling: touch;
}
table.cmp { width: 100%; border-collapse: collapse; min-width: 760px; font-size: .9rem; }
table.cmp thead th {
  position: sticky;
  top: 0;
  background: var(--deep);
  color: #fff;
  font-weight: 750;
  text-align: center;
  padding: 17px 14px;
  font-size: .86rem;
  letter-spacing: -.01em;
}
table.cmp thead th:first-child { text-align: left; border-top-left-radius: var(--r-lg); }
table.cmp thead th:last-child { border-top-right-radius: var(--r-lg); }
table.cmp thead th small { display: block; font-weight: 600; font-size: .74rem; color: #8FB8D6; margin-top: 3px; }
table.cmp tbody td { padding: 15px 14px; text-align: center; border-bottom: 1px solid var(--line-2); }
table.cmp tbody td:first-child { text-align: left; font-weight: 650; color: var(--deep); }
table.cmp tbody tr { transition: background .25s; }
table.cmp tbody tr:hover { background: var(--bg-soft-2); }
table.cmp tbody tr:last-child td { border-bottom: 0; }
.tick { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; }
.tick--y { background: rgba(23,166,115,.12); color: var(--ok); }
.tick--n { background: var(--line-2); color: var(--no); }
.tick svg { width: 14px; height: 14px; }
.cell-note { font-size: .8rem; color: var(--muted); }

/* --- Coverage grid --- */
.cover-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cover {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line-2);
  box-shadow: var(--sh-xs);
  transition: transform .35s var(--e-out), box-shadow .35s, border-color .35s;
}
.cover:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(23,195,178,.35); }
.cover__ic {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--mint);
  color: var(--teal-600);
  display: grid; place-items: center;
  flex: none;
  transition: transform .4s var(--e-spring);
}
.cover:hover .cover__ic { transform: scale(1.08) rotate(-6deg); }
.cover__ic svg { width: 22px; height: 22px; }
.cover b { display: block; font-size: .94rem; color: var(--deep); letter-spacing: -.02em; }
.cover small { font-size: .78rem; color: var(--muted); }

/* --- Waiting periods timeline --- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding-top: 46px; }
.timeline::before {
  content: "";
  position: absolute;
  top: 15px; left: 6%; right: 6%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,.10), rgba(111,227,214,.55), rgba(255,255,255,.10));
}
.tl {
  position: relative;
  padding: 24px 20px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  transition: transform .4s var(--e-out), background .4s;
}
.tl:hover { transform: translateY(-6px); background: rgba(255,255,255,.10); }
.tl__dot {
  position: absolute;
  top: -46px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-brand);
  border: 4px solid var(--deep-2);
  box-shadow: 0 0 0 4px rgba(23,195,178,.16);
}
.tl b { display: block; font-size: 1.5rem; font-weight: 850; color: #fff; letter-spacing: -.03em; }
.tl span { display: block; margin-top: 6px; font-size: .87rem; color: #A9C6DC; line-height: 1.55; }

/* --- Network / split --- */
.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
}
.split--rev .split__media { order: -1; }

.media-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--grad-deep);
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: var(--sh-lg);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}
.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: -1;
}
.media-card::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,195,178,.42), transparent 68%);
  top: -90px; right: -80px;
  filter: blur(30px);
  z-index: -1;
}
.map-dots { position: relative; height: 210px; margin: 10px 0 22px; }
.map-dots span {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #6FE3D6;
  box-shadow: 0 0 0 0 rgba(111,227,214,.55);
  animation: pulseDot 2.6s infinite;
}
.map-dots span::after {
  content: attr(data-uf);
  position: absolute;
  top: -26px; left: 50%;
  transform: translateX(-50%);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: #BFE3F5;
  background: rgba(255,255,255,.10);
  border-radius: 6px;
  padding: 2px 6px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s, transform .3s;
}
.map-dots span:hover::after { opacity: 1; transform: translateX(-50%) translateY(-3px); }

.net-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.net-stat {
  padding: 16px 14px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.net-stat b { display: block; font-size: 1.4rem; font-weight: 850; color: #fff; letter-spacing: -.03em; }
.net-stat span { font-size: .74rem; color: #A9C6DC; }

.check-list { display: grid; gap: 15px; margin-top: 26px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; }
.check-list .ci {
  width: 27px; height: 27px;
  border-radius: 9px;
  background: var(--mint);
  color: var(--teal-600);
  display: grid; place-items: center;
  flex: none;
  margin-top: 2px;
}
.check-list .ci svg { width: 15px; height: 15px; }
.check-list b { display: block; color: var(--deep); font-size: .98rem; letter-spacing: -.02em; }
.check-list p { font-size: .89rem; color: var(--muted); margin-top: 2px; }

/* --- Steps --- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: st; }
.step {
  position: relative;
  padding: 30px 24px 26px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line-2);
  box-shadow: var(--sh-sm);
  transition: transform .4s var(--e-out), box-shadow .4s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.step__n {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 850;
  font-size: 1.08rem;
  box-shadow: var(--sh-blue);
  margin-bottom: 18px;
}
.step h4 { margin-bottom: 8px; font-size: 1.06rem; }
.step p { font-size: .89rem; color: var(--muted); }
.step__arrow {
  position: absolute;
  top: 52px; right: -22px;
  color: var(--line);
  z-index: 2;
}
.step__arrow svg { width: 26px; height: 26px; }

/* --- Testimonials --- */
.slider { position: relative; overflow: hidden; }
.slider__track { display: flex; transition: transform .6s var(--e-out); }
.slide { min-width: 100%; padding: 4px; }
.quote {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: var(--sh-md);
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}
.quote__mark { font-size: 3.2rem; line-height: .6; color: var(--teal); font-weight: 850; }
.quote p { font-size: clamp(1.02rem, 1.8vw, 1.24rem); color: var(--ink); line-height: 1.65; margin: 18px 0 24px; font-weight: 500; }
.quote__who { display: flex; align-items: center; justify-content: center; gap: 13px; }
.quote__av {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
}
.quote__who b { display: block; color: var(--deep); font-size: .96rem; }
.quote__who small { color: var(--muted); font-size: .82rem; }
.slider__nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 28px; }
.dot {
  width: 9px; height: 9px;
  border-radius: 99px;
  background: var(--line);
  transition: width .4s var(--e-out), background .4s;
}
.dot.is-active { width: 30px; background: var(--grad-brand); }
.slider__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  display: grid; place-items: center;
  color: var(--deep);
  transition: transform .3s var(--e-out), box-shadow .3s;
}
.slider__btn:hover { transform: scale(1.08); box-shadow: var(--sh-md); }
.slider__btn svg { width: 18px; height: 18px; }

/* --- FAQ --- */
.faq { display: grid; gap: 12px; max-width: 880px; margin-inline: auto; }
.acc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .35s, box-shadow .35s;
}
.acc.is-open { border-color: rgba(14,126,228,.32); box-shadow: var(--sh-md); }
.acc__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 22px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--deep);
  letter-spacing: -.02em;
}
.acc__ic {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-soft-2);
  color: var(--brand-600);
  display: grid; place-items: center;
  flex: none;
  transition: transform .4s var(--e-out), background .35s, color .35s;
}
.acc.is-open .acc__ic { transform: rotate(45deg); background: var(--grad-brand); color: #fff; }
.acc__ic svg { width: 15px; height: 15px; }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--e-out); }
.acc__a > div { padding: 0 22px 22px; color: var(--muted); font-size: .93rem; line-height: 1.72; }
.acc__a strong { color: var(--ink); }

/* --- CTA band --- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--grad-deep);
  padding: clamp(36px, 5vw, 64px);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%);
  z-index: -1;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,195,178,.30), transparent 66%);
  bottom: -230px; left: 50%;
  transform: translateX(-50%);
  filter: blur(34px);
  z-index: -1;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band .lead { color: #A9C6DC; max-width: 620px; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 30px; }

/* ========================= 9. FORMS ==================================== */
.quote-box {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line-2);
  background: #fff;
}
.quote-box__side {
  background: var(--grad-deep);
  color: #DCEAF5;
  padding: clamp(30px, 3.6vw, 46px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.quote-box__side::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,195,178,.38), transparent 68%);
  top: -110px; left: -80px;
  filter: blur(26px);
  z-index: -1;
}
.quote-box__form { padding: clamp(28px, 3.4vw, 44px); }

.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: .82rem; font-weight: 700; color: var(--deep); letter-spacing: -.01em; }
.field label i { color: #D9534F; font-style: normal; }
.control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  font-size: .94rem;
  transition: border-color .28s, background .28s, box-shadow .28s;
  appearance: none;
}
.control:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14,126,228,.13);
}
.control::placeholder { color: var(--muted-2); }
select.control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C7186' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 6px 0 18px;
}
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--brand); flex: none; }
.consent a { color: var(--brand-600); font-weight: 650; text-decoration: underline; }

.form-note { font-size: .76rem; color: var(--muted-2); text-align: center; margin-top: 14px; }

/* ========================= 10. FOOTER ================================== */
.footer {
  background: var(--deep);
  color: #9FBDD4;
  padding-top: clamp(52px, 6vw, 76px);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
}
.footer a { transition: color .25s; }
.footer a:hover { color: #fff; }

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: clamp(26px, 3.4vw, 48px);
  padding-bottom: 44px;
}
.footer h4 {
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__links { display: grid; gap: 11px; font-size: .9rem; }
.footer__links a { display: inline-flex; align-items: center; gap: 8px; }
.footer__links a::before {
  content: "";
  width: 0; height: 1.5px;
  background: var(--teal);
  transition: width .3s var(--e-out);
}
.footer__links a:hover::before { width: 12px; }

.footer .logo__txt b { color: #fff; }
.footer__about { font-size: .9rem; line-height: 1.7; margin-top: 18px; max-width: 340px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  color: #BFE3F5;
  transition: transform .35s var(--e-spring), background .3s, color .3s;
}
.footer__social a:hover { transform: translateY(-3px); background: var(--grad-brand); color: #fff; border-color: transparent; }
.footer__social svg { width: 17px; height: 17px; }

.footer__contact { display: grid; gap: 14px; font-size: .9rem; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--teal); flex: none; margin-top: 3px; }
.footer__contact b { color: #fff; display: block; font-size: .95rem; }

/* Broker compliance block */
.broker {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.045);
  padding: clamp(22px, 2.6vw, 32px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 36px;
}
.broker__seal {
  width: 76px; height: 76px;
  border-radius: 22px;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--sh-blue);
  flex: none;
}
.broker__seal svg { width: 36px; height: 36px; }
.broker h4 { margin-bottom: 10px; letter-spacing: .1em; }
.broker p { font-size: .875rem; line-height: 1.72; color: #A9C6DC; }
.broker p + p { margin-top: 10px; }
.broker strong { color: #fff; font-weight: 750; }
.broker__tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 15px; }
.broker__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: rgba(23,195,178,.14);
  border: 1px solid rgba(23,195,178,.3);
  color: #8FEDE0;
  font-size: .755rem;
  font-weight: 750;
}
.broker__tag svg { width: 13px; height: 13px; }

.footer__legal {
  border-top: 1px solid rgba(255,255,255,.11);
  padding: 26px 0 32px;
  font-size: .795rem;
  line-height: 1.7;
  color: #7E9DB6;
}
.footer__legal p + p { margin-top: 10px; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.11);
  padding: 20px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .82rem;
}
.footer__bar-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ========================= 11. FLOATING UI ============================= */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--grad-brand);
  z-index: 200;
  transition: width .1s linear;
  box-shadow: 0 0 12px rgba(23,195,178,.65);
}

.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab__wa {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 20px 13px 15px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, #34D26A, #1FA855);
  color: #fff;
  font-weight: 750;
  font-size: .92rem;
  box-shadow: 0 16px 36px -14px rgba(31,168,85,.72);
  transition: transform .35s var(--e-spring), box-shadow .35s;
}
.fab__wa svg { width: 24px; height: 24px; flex: none; }
.fab__wa:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 22px 44px -14px rgba(31,168,85,.8); }
.fab__wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-pill);
  box-shadow: 0 0 0 0 rgba(52,210,106,.55);
  animation: ring 2.6s infinite;
  pointer-events: none;
}
.fab__wa { position: relative; }

.to-top {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  display: grid; place-items: center;
  color: var(--deep);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .4s var(--e-out);
}
.to-top.is-on { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); color: var(--brand); }
.to-top svg { width: 18px; height: 18px; }

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 130%);
  z-index: 210;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  background: var(--deep);
  color: #fff;
  font-size: .9rem;
  font-weight: 650;
  box-shadow: var(--sh-xl);
  transition: transform .5s var(--e-spring);
  max-width: calc(100% - 40px);
}
.toast.is-on { transform: translate(-50%, 0); }
.toast svg { width: 20px; height: 20px; color: #6FE3D6; flex: none; }

/* ========================= 12. ANIMATIONS ============================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--e-out), transform .8s var(--e-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"]  { transform: scale(.94); }
[data-reveal="left"].is-in,
[data-reveal="right"].is-in,
[data-reveal="zoom"].is-in { transform: none; }

@keyframes shimmer { to { background-position: 220% center; } }
@keyframes growLine { to { transform: scaleX(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-13px); }
}
@keyframes floatMini {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-11px); }
}
@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-34px, 30px) scale(1.09); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(38px, -26px) scale(1.06); }
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(62,213,152,.62); }
  70%  { box-shadow: 0 0 0 12px rgba(62,213,152,0); }
  100% { box-shadow: 0 0 0 0 rgba(62,213,152,0); }
}
@keyframes ring {
  0%   { box-shadow: 0 0 0 0 rgba(52,210,106,.5); }
  70%  { box-shadow: 0 0 0 18px rgba(52,210,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,210,106,0); }
}
@keyframes scrollDot {
  0%   { opacity: 0; transform: translate(-50%, 0); }
  35%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* Utilities */
.center { text-align: center; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 44px; }
.mb-m { margin-bottom: 26px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ========================= 13. RESPONSIVE ============================== */
/* o telefone no header sai antes do menu para o nav nunca quebrar linha */
@media (max-width: 1240px) {
  .header__phone { display: none; }
}

@media (max-width: 1080px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; margin-inline: auto; margin-top: 14px; }
  .hero__mini--a { left: -12px; }
  .hero__mini--b { right: -12px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step__arrow { display: none; }
  .cover-grid { grid-template-columns: repeat(3, 1fr); }
  /* 4 colunas ficam apertadas demais nesta faixa */
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .kpis__box { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .kpi { padding: 8px 6px; }
  .kpi span { font-size: .8rem; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .header__phone { display: none; }
  .burger { display: block; margin-left: auto; }
  .header__cta .btn { display: none; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .quote-box { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 46px 18px; }
  .timeline::before { display: none; }
  .tl__dot { top: -22px; left: 24px; transform: none; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 80px; }
  .kpis__box { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .kpi + .kpi::before { display: none; }
  .kpi:nth-child(n+3) { border-top: 1px solid var(--line-2); padding-top: 20px; }
  .plans { grid-template-columns: 1fr; }
  .cover-grid { grid-template-columns: repeat(2, 1fr); }
  .g-3, .g-4 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .broker { grid-template-columns: 1fr; }
  .net-stats { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .topbar__list li:not(:first-child) { display: none; }
  .fab__wa span { display: none; }
  .fab__wa { padding: 15px; border-radius: 50%; }
  .hero__proof { flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .cover-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .g-2 { grid-template-columns: 1fr; }
  .tabs { width: 100%; }
  .tab { flex: 1; text-align: center; padding: 11px 12px; font-size: .84rem; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

/* Motion sensitivity */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* Print */
@media print {
  .header, .topbar, .fab, .progress, .drawer, .hero__scroll { display: none !important; }
  body { color: #000; }
}


/* ===== Tipografia de artigo e cartões de blog ===== */
/* ========================= HERO DO BLOG ================================= */
.blog-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 6vw, 78px) clamp(40px, 5vw, 62px);
  background:
    radial-gradient(900px 420px at 82% -10%, rgba(23,195,178,.15), transparent 62%),
    radial-gradient(760px 400px at 8% 6%, rgba(14,126,228,.12), transparent 60%),
    linear-gradient(180deg, #FBFDFF 0%, #F2F9FE 100%);
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,126,228,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,126,228,.05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 20%, #000 8%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 20%, #000 8%, transparent 70%);
  pointer-events: none;
}
.blog-hero__in { position: relative; max-width: 780px; }

/* ========================= BREADCRUMB ================================== */
.crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.crumb a { font-weight: 650; color: var(--brand-600); }
.crumb a:hover { text-decoration: underline; }
.crumb span { color: var(--muted-2); }

/* ========================= META ======================================== */
.post-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .84rem;
  color: var(--muted);
  margin-top: 24px;
}
.post-meta > span { display: inline-flex; align-items: center; gap: 7px; }
.post-meta svg { width: 15px; height: 15px; color: var(--teal-600); }
.post-meta .author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}
.post-meta .author i {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  font-style: normal;
  font-weight: 800;
  font-size: .82rem;
  flex: none;
}
.post-meta .author b { color: var(--deep); font-size: .88rem; display: block; line-height: 1.25; }
.post-meta .author small { font-size: .74rem; color: var(--muted-2); }

/* ========================= LISTAGEM =================================== */
.post-filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.post-filter {
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  font-size: .86rem;
  font-weight: 650;
  color: var(--muted);
  transition: all .3s var(--e-out);
}
.post-filter:hover { border-color: rgba(14,126,228,.4); color: var(--deep); transform: translateY(-2px); }
.post-filter.is-active { background: var(--grad-brand); border-color: transparent; color: #fff; box-shadow: var(--sh-blue); }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .45s var(--e-out), box-shadow .45s var(--e-out), border-color .4s;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: rgba(14,126,228,.24); }

.post-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.post-card__thumb::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
  opacity: .55;
}
.post-card__thumb svg {
  width: 62px; height: 62px;
  color: #fff;
  z-index: 2;
  transition: transform .6s var(--e-spring);
  opacity: .95;
}
.post-card:hover .post-card__thumb svg { transform: scale(1.12) rotate(-7deg); }
.th-a { background: linear-gradient(135deg, #0E7EE4, #073C77); }
.th-b { background: linear-gradient(135deg, #17C3B2, #06786D); }
.th-c { background: linear-gradient(135deg, #04243D, #0B6ACA); }
.th-d { background: linear-gradient(135deg, #3E7BE0, #17C3B2); }
.th-e { background: linear-gradient(135deg, #0FA697, #04243D); }

.post-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brand-700);
}
.post-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card__body h3 { font-size: 1.16rem; line-height: 1.32; margin-bottom: 10px; transition: color .3s; }
.post-card:hover .post-card__body h3 { color: var(--brand-700); }
.post-card__body p { font-size: .9rem; color: var(--muted); flex: 1; }
.post-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
  font-size: .8rem;
  color: var(--muted-2);
}
.post-card__foot b { color: var(--brand-600); font-weight: 750; display: inline-flex; align-items: center; gap: 6px; }
.post-card__foot svg { width: 14px; height: 14px; transition: transform .35s var(--e-out); }
.post-card:hover .post-card__foot svg { transform: translateX(4px); }

/* Card em destaque */
.post-card--wide { grid-column: span 2; flex-direction: row; }
.post-card--wide .post-card__thumb { aspect-ratio: auto; width: 46%; flex: none; }
.post-card--wide .post-card__body { padding: 32px; justify-content: center; }
.post-card--wide h3 { font-size: 1.5rem; }

/* ========================= ARTIGO ===================================== */
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(30px, 4.5vw, 64px);
  align-items: start;
}

.prose { max-width: 100%; font-size: 1.055rem; line-height: 1.82; color: #33465A; }
.prose > * + * { margin-top: 1.35em; }

.prose h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  margin-top: 2.2em;
  margin-bottom: .1em;
  scroll-margin-top: 110px;
  position: relative;
  padding-left: 20px;
}
.prose h2::before {
  content: "";
  position: absolute;
  left: 0; top: .18em; bottom: .18em;
  width: 5px;
  border-radius: 4px;
  background: var(--grad-brand);
}
.prose h3 {
  font-size: clamp(1.16rem, 1.9vw, 1.34rem);
  margin-top: 1.9em;
  margin-bottom: .05em;
  color: var(--deep-3);
  scroll-margin-top: 110px;
}
.prose p { margin-top: 1.15em; }
.prose strong { color: var(--deep); font-weight: 750; }
.prose em { color: var(--ink-2); }
.prose a:not(.btn) {
  color: var(--brand-600);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(14,126,228,.35);
  text-underline-offset: 3px;
  transition: text-decoration-color .3s, color .3s;
}
.prose a:not(.btn):hover { color: var(--brand-700); text-decoration-color: var(--brand); }

.prose ul, .prose ol { padding-left: 4px; display: grid; gap: 11px; }
.prose ul li {
  position: relative;
  padding-left: 30px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: .62em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(23,195,178,.16);
}
.prose ol { counter-reset: li; }
.prose ol li {
  position: relative;
  padding-left: 42px;
  counter-increment: li;
}
.prose ol li::before {
  content: counter(li);
  position: absolute;
  left: 0; top: .12em;
  width: 27px; height: 27px;
  border-radius: 9px;
  background: var(--sky);
  color: var(--brand-700);
  display: grid; place-items: center;
  font-size: .8rem;
  font-weight: 850;
}

.prose blockquote {
  margin: 2em 0;
  padding: 26px 30px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  border-left: 5px solid var(--teal);
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--deep);
  font-weight: 500;
}
.prose blockquote p { margin: 0; }
.prose blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: .85rem;
  font-style: normal;
  font-weight: 700;
  color: var(--muted);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
  margin: 2em 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
}
.prose table th {
  background: var(--deep);
  color: #fff;
  text-align: left;
  padding: 14px 16px;
  font-weight: 750;
  font-size: .86rem;
}
.prose table td { padding: 13px 16px; border-bottom: 1px solid var(--line-2); }
.prose table tr:last-child td { border-bottom: 0; }
.prose table tbody tr:nth-child(even) { background: var(--bg-soft); }
.prose .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.prose .table-scroll table { min-width: 560px; margin: 0; }

.prose figure { margin: 2em 0; }
.prose figcaption { font-size: .82rem; color: var(--muted-2); text-align: center; margin-top: 10px; }

.prose hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 2.6em 0;
}

/* Lead do artigo */
.prose .post-lead {
  font-size: 1.16rem;
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 500;
  padding-bottom: 1.2em;
  border-bottom: 1px solid var(--line-2);
}

/* Callouts */
.callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px 26px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  margin: 2em 0;
}
.callout__ic {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--sky);
  color: var(--brand-600);
  flex: none;
}
.callout__ic svg { width: 22px; height: 22px; }
.callout b { display: block; color: var(--deep); font-size: 1rem; margin-bottom: 5px; }
.callout p { font-size: .95rem; color: var(--muted); margin: 0 !important; line-height: 1.7; }
.callout--tip { background: var(--mint); border-color: rgba(23,195,178,.3); }
.callout--tip .callout__ic { background: rgba(23,195,178,.2); color: var(--teal-600); }
.callout--warn { background: #FFF8EC; border-color: rgba(224,160,58,.32); }
.callout--warn .callout__ic { background: rgba(224,160,58,.18); color: #B57A1A; }

/* Caixa de números */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 2em 0;
}
.stat-box {
  padding: 22px 20px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  text-align: center;
}
.stat-box b {
  display: block;
  font-size: 1.65rem;
  font-weight: 850;
  letter-spacing: -.035em;
  color: var(--deep);
  line-height: 1.1;
}
.stat-box span { font-size: .8rem; color: var(--muted); display: block; margin-top: 5px; line-height: 1.45; }

/* CTA dentro do artigo */
.post-cta {
  position: relative;
  margin: 2.6em 0;
  padding: clamp(26px, 3.4vw, 40px);
  border-radius: var(--r-lg);
  background: var(--grad-deep);
  color: #DCEAF5;
  overflow: hidden;
  isolation: isolate;
}
.post-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
}
.post-cta::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,195,178,.34), transparent 68%);
  top: -120px; right: -80px;
  filter: blur(28px);
  z-index: -1;
}
.post-cta h3 { color: #fff; margin-bottom: 10px; }
.post-cta p { color: #A9C6DC; font-size: .95rem; margin: 0 0 22px !important; }
.post-cta .btn-row { gap: 12px; }

/* Compartilhar */
.share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2.6em;
  padding-top: 26px;
  border-top: 1px solid var(--line-2);
}
.share span { font-size: .84rem; font-weight: 700; color: var(--deep); }
.share a, .share button {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid; place-items: center;
  color: var(--muted);
  transition: all .35s var(--e-out);
}
.share a:hover, .share button:hover {
  transform: translateY(-3px);
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--sh-blue);
}
.share svg { width: 17px; height: 17px; }

/* Tags */
.post-tags { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 2em; }
.post-tags a {
  padding: 7px 15px;
  border-radius: var(--r-pill);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: .8rem;
  font-weight: 650;
  color: var(--muted);
  transition: all .3s;
}
.post-tags a:hover { background: var(--sky); color: var(--brand-700); border-color: rgba(14,126,228,.3); }

/* ========================= SIDEBAR ==================================== */
.side { position: sticky; top: 100px; display: grid; gap: 20px; }

.toc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 22px;
  box-shadow: var(--sh-sm);
}
.toc h4 {
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.toc ol { display: grid; gap: 3px; counter-reset: toc; }
.toc a {
  display: block;
  padding: 8px 12px 8px 14px;
  border-left: 2px solid var(--line);
  font-size: .875rem;
  line-height: 1.45;
  color: var(--muted);
  transition: all .3s var(--e-out);
}
.toc a:hover { color: var(--deep); border-left-color: var(--teal); background: var(--bg-soft); }
.toc a.is-active {
  color: var(--brand-700);
  font-weight: 700;
  border-left-color: var(--brand);
  background: var(--sky);
}

.side-cta {
  border-radius: var(--r-md);
  padding: 26px 22px;
  background: var(--grad-deep);
  color: #DCEAF5;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.side-cta::after {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,195,178,.36), transparent 68%);
  top: -90px; left: -60px;
  filter: blur(24px);
  z-index: -1;
}
.side-cta__ic {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
  color: #6FE3D6;
  margin: 0 auto 16px;
}
.side-cta__ic svg { width: 26px; height: 26px; }
.side-cta b { display: block; color: #fff; font-size: 1.06rem; letter-spacing: -.02em; margin-bottom: 8px; }
.side-cta p { font-size: .86rem; color: #A9C6DC; margin-bottom: 20px; line-height: 1.6; }

.side-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 22px;
  box-shadow: var(--sh-sm);
}
.side-list h4 {
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.side-list ul { display: grid; gap: 14px; }
.side-list a { display: block; font-size: .89rem; font-weight: 650; color: var(--ink-2); line-height: 1.45; transition: color .3s; }
.side-list a:hover { color: var(--brand-600); }
.side-list small { display: block; font-size: .74rem; color: var(--muted-2); margin-top: 3px; font-weight: 500; }

/* Barra de leitura do artigo */
.read-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--grad-brand);
  z-index: 200;
  box-shadow: 0 0 12px rgba(23,195,178,.6);
}

/* ========================= RELACIONADOS =============================== */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ========================= NEWSLETTER ================================= */
.news-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: clamp(26px, 3.4vw, 40px);
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
}
.news-form { display: flex; gap: 10px; flex-wrap: wrap; }
.news-form .control { min-width: 260px; }

/* ========================= RESPONSIVO ================================= */
@media (max-width: 1080px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-card--wide { grid-column: span 2; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .post-layout { grid-template-columns: 1fr; }
  .side { position: static; grid-template-columns: repeat(2, 1fr); }
  .toc { display: none; }
}

@media (max-width: 720px) {
  .post-grid { grid-template-columns: 1fr; }
  .post-card--wide { grid-column: span 1; flex-direction: column; }
  .post-card--wide .post-card__thumb { width: 100%; aspect-ratio: 16/9; }
  .post-card--wide h3 { font-size: 1.24rem; }
  .related-grid { grid-template-columns: 1fr; }
  .side { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .callout { grid-template-columns: 1fr; }
  .news-box { grid-template-columns: 1fr; }
  .news-form .control { min-width: 0; width: 100%; }
  .news-form .btn { width: 100%; }
  .prose { font-size: 1.005rem; }
  .post-meta .author { border-right: 0; padding-right: 0; }
}


/* ==========================================================================
   PONTE MOTOR → DESIGN SYSTEM
   --------------------------------------------------------------------------
   O build estático tinha um HTML de artigo escrito à mão. O motor do Cron
   monta o artigo com a sua própria marcação (.article, .article-shell,
   .article-body, .toc, .inline-cta, .faq, .post-links…). Este bloco veste
   essa marcação com exatamente a mesma linguagem visual — mesmos tokens,
   mesmo ritmo, mesmas sombras — para que uma página gerada pelo motor seja
   indistinguível de uma página desenhada à mão.

   Também define os COMPONENTES DE ARTIGO declarados em template.json
   (callout, stat-row, key-takeaways, pro-tip): é o contrato que o redator de
   IA recebe ao gerar e ao dar refresh num artigo deste site.
   ========================================================================== */

/* ------------------------------------------------------------- utilidades */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--deep);
  color: #fff;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

.page-shell { padding-block: clamp(40px, 5vw, 72px) clamp(52px, 6vw, 90px); }
.muted { color: var(--muted); }
.display { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -.035em; }
.section-head { margin-bottom: 30px; }

/* ------------------------------------------------------------ breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { font-weight: 650; color: var(--brand-600); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--muted-2); }

/* ====================================================== ARTIGO — cabeçalho */
.article-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(44px, 5.4vw, 72px) clamp(34px, 4.4vw, 54px);
  margin-bottom: clamp(30px, 4vw, 52px);
  background:
    radial-gradient(900px 420px at 82% -10%, rgba(23,195,178,.15), transparent 62%),
    radial-gradient(760px 400px at 8% 6%, rgba(14,126,228,.12), transparent 60%),
    linear-gradient(180deg, #FBFDFF 0%, #F2F9FE 100%);
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,126,228,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,126,228,.05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 20%, #000 8%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 20%, #000 8%, transparent 70%);
  pointer-events: none;
}
/* O motor entrega o <article> inteiro; o shell da página já dá a calha, então
   o hero precisa sangrar para as bordas sem quebrar o alinhamento do texto. */
.page-shell > .article > .article-hero {
  margin-inline: calc(var(--pad) * -1);
  padding-inline: var(--pad);
  border-radius: var(--r-lg);
}
.article-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}
.article-hero-grid.solo { grid-template-columns: 1fr; max-width: 820px; }
.article-hero-copy h1 {
  font-size: clamp(1.85rem, 4vw, 2.95rem);
  letter-spacing: -.038em;
  line-height: 1.12;
}
.article-hero-copy .eyebrow { margin-bottom: 14px; display: inline-block; }
.article-hero-media {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 1 / 1;
}
.article-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* O motor imprime a meta como <span>/<time> soltos, sem o avatar do build
   estático — as regras de .post-meta do blog.css já cobrem, faltam os fusos. */
.article-hero-copy .post-meta time { color: var(--muted); }
.article-hero-copy .post-meta strong { color: var(--deep); font-weight: 750; }

.article-lead {
  font-size: 1.16rem;
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 500;
  margin-top: 20px;
  max-width: 68ch;
}

/* ========================================================= ARTIGO — corpo */
.article-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 60px);
  align-items: start;
}
.article-shell.solo { grid-template-columns: minmax(0, 1fr); max-width: 820px; margin-inline: auto; }

.article-shell > .toc {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 22px;
  box-shadow: var(--sh-sm);
}
.toc-h {
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.article-shell > .toc ol { display: grid; gap: 3px; list-style: none; padding: 0; }
.article-shell > .toc a {
  display: block;
  padding: 8px 12px 8px 14px;
  border-left: 2px solid var(--line);
  font-size: .875rem;
  line-height: 1.45;
  color: var(--muted);
  transition: all .3s var(--e-out);
}
.article-shell > .toc a:hover { color: var(--deep); border-left-color: var(--teal); background: var(--bg-soft); }
.article-shell > .toc a.is-active {
  color: var(--brand-700);
  font-weight: 700;
  border-left-color: var(--brand);
  background: var(--sky);
}

/* --- tipografia do corpo: espelho exato de .prose ----------------------- */
.article-body { max-width: 100%; font-size: 1.055rem; line-height: 1.82; color: #33465A; }
.article-body > * + * { margin-top: 1.35em; }

.article-body h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  margin-top: 2.2em;
  margin-bottom: .1em;
  scroll-margin-top: 110px;
  position: relative;
  padding-left: 20px;
}
.article-body h2::before {
  content: "";
  position: absolute;
  left: 0; top: .18em; bottom: .18em;
  width: 5px;
  border-radius: 4px;
  background: var(--grad-brand);
}
.article-body h3 {
  font-size: clamp(1.16rem, 1.9vw, 1.34rem);
  margin-top: 1.9em;
  margin-bottom: .05em;
  color: var(--deep-3);
  scroll-margin-top: 110px;
}
.article-body h4 { font-size: 1.05rem; margin-top: 1.6em; color: var(--deep-3); }
.article-body p { margin-top: 1.15em; }
.article-body strong { color: var(--deep); font-weight: 750; }
.article-body em { color: var(--ink-2); }
.article-body a:not(.btn):not(.chip) {
  color: var(--brand-600);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(14,126,228,.35);
  text-underline-offset: 3px;
  transition: text-decoration-color .3s, color .3s;
}
.article-body a:not(.btn):not(.chip):hover { color: var(--brand-700); text-decoration-color: var(--brand); }

.article-body ul, .article-body ol { padding-left: 4px; display: grid; gap: 11px; list-style: none; }
.article-body ul li { position: relative; padding-left: 30px; }
.article-body ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: .62em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(23,195,178,.16);
}
.article-body ol { counter-reset: li; }
.article-body ol li { position: relative; padding-left: 42px; counter-increment: li; }
.article-body ol li::before {
  content: counter(li);
  position: absolute;
  left: 0; top: .12em;
  width: 27px; height: 27px;
  border-radius: 9px;
  background: var(--sky);
  color: var(--brand-700);
  display: grid; place-items: center;
  font-size: .8rem;
  font-weight: 850;
}

.article-body blockquote {
  margin: 2em 0;
  padding: 26px 30px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  border-left: 5px solid var(--teal);
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--deep);
  font-weight: 500;
}
.article-body blockquote p { margin: 0; }

.article-body figure { margin: 2em 0; }
.article-body figcaption { font-size: .82rem; color: var(--muted-2); text-align: center; margin-top: 10px; }
.article-body hr {
  border: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 2.6em 0;
}

/* --- tabelas: o motor embrulha em .table-wrap e carimba data-label ------ */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
  margin: 2em 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
}
.article-body table th {
  background: var(--deep);
  color: #fff;
  text-align: left;
  padding: 14px 16px;
  font-weight: 750;
  font-size: .86rem;
}
.article-body table td { padding: 13px 16px; border-bottom: 1px solid var(--line-2); }
.article-body table tr:last-child td { border-bottom: 0; }
.article-body table tbody tr:nth-child(even) { background: var(--bg-soft); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 2em 0; }
.table-wrap table { margin: 0; }

/* ================================================ COMPONENTES DE ARTIGO ==
   Estes são os componentes que o gerador e o REFRESH têm permissão de
   escrever. Estão declarados em template.json → "components", que é o que o
   modelo recebe no prompt. Mexer aqui sem mexer lá quebra o contrato.
   ======================================================================== */

/* callout — aviso, dica ou ressalva que o leitor não pode perder */
.article-body .callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px 26px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  margin: 2em 0;
}
.article-body .callout__ic {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--sky);
  color: var(--brand-600);
  flex: none;
}
.article-body .callout__ic svg { width: 22px; height: 22px; }
.article-body .callout b { display: block; color: var(--deep); font-size: 1rem; margin-bottom: 5px; }
.article-body .callout p { font-size: .95rem; color: var(--muted); margin: 0 !important; line-height: 1.7; }
.article-body .callout > div > * + * { margin-top: .6em; }
.article-body .callout--tip { background: var(--mint); border-color: rgba(23,195,178,.3); }
.article-body .callout--tip .callout__ic { background: rgba(23,195,178,.2); color: var(--teal-600); }
.article-body .callout--warn { background: #FFF8EC; border-color: rgba(224,160,58,.32); }
.article-body .callout--warn .callout__ic { background: rgba(224,160,58,.18); color: #B57A1A; }

/* stat-row — o bloco de números que sustenta um argumento */
.article-body .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 2em 0;
  list-style: none;
  padding: 0;
}
.article-body .stat-row li::before { display: none; }
.article-body .stat-box {
  padding: 22px 20px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  text-align: center;
}
.article-body .stat-box b {
  display: block;
  font-size: 1.65rem;
  font-weight: 850;
  letter-spacing: -.035em;
  color: var(--deep);
  line-height: 1.1;
}
.article-body .stat-box span { font-size: .8rem; color: var(--muted); display: block; margin-top: 5px; line-height: 1.45; }

/* key-takeaways — o bloco que buscadores e assistentes citam literalmente */
.article-body .key-takeaways {
  margin: 1.8em 0;
  padding: 24px 26px 24px 28px;
  border-radius: var(--r-md);
  background: var(--mint);
  border: 1px solid rgba(23,195,178,.32);
  display: grid;
  gap: 12px;
}
.article-body .key-takeaways li { padding-left: 30px; font-weight: 550; color: var(--deep-3); }
.article-body .key-takeaways li::before {
  content: "";
  position: absolute;
  left: 2px; top: .5em;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(23,195,178,.2);
}

/* pro-tip — a dica prática que só quem faz o serviço conhece */
.article-body .pro-tip {
  position: relative;
  margin: 1.8em 0;
  padding: 18px 22px 18px 58px;
  border-radius: var(--r-md);
  background: #FFF8EC;
  border: 1px solid rgba(224,160,58,.3);
  color: var(--ink-2);
  font-size: .98rem;
  line-height: 1.7;
}
.article-body .pro-tip::before {
  content: "★";
  position: absolute;
  left: 20px; top: 16px;
  width: 26px; height: 26px;
  border-radius: 9px;
  background: rgba(224,160,58,.2);
  color: #B57A1A;
  display: grid; place-items: center;
  font-size: .82rem;
}

/* link interno para um artigo irmão, emitido pelo motor */
.article-body .related-inline-link {
  font-weight: 650;
  color: var(--brand-600);
  background: var(--sky);
  border-radius: var(--r-sm);
  padding: 12px 16px;
}

/* ============================================== CTA, FAQ e continuar lendo */
.inline-cta {
  position: relative;
  margin: 2.6em 0 0;
  padding: clamp(26px, 3.4vw, 40px);
  border-radius: var(--r-lg);
  background: var(--grad-deep);
  color: #DCEAF5;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.inline-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
}
.inline-cta::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,195,178,.34), transparent 68%);
  top: -120px; right: -80px;
  filter: blur(28px);
  z-index: -1;
}
.inline-cta-body { display: grid; gap: 8px; }
.inline-cta-body strong { color: #fff; font-size: 1.22rem; letter-spacing: -.02em; }
.inline-cta-body span { color: #A9C6DC; font-size: .95rem; line-height: 1.6; }

.faq { margin-top: 3em; }
.faq > h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin-bottom: 20px;
  letter-spacing: -.03em;
}
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xs);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item[open] { border-color: rgba(14,126,228,.32); box-shadow: var(--sh-sm); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 54px 19px 22px;
  font-weight: 700;
  color: var(--deep);
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px; top: 50%;
  width: 11px; height: 11px;
  margin-top: -6px;
  border-right: 2.4px solid var(--brand);
  border-bottom: 2.4px solid var(--brand);
  transform: rotate(45deg);
  transition: transform .35s var(--e-out);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-a { padding: 0 22px 20px; color: var(--muted); line-height: 1.75; font-size: .96rem; }
.faq-a p { margin: 0; }

.post-links { margin-top: 3em; padding-top: 30px; border-top: 1px solid var(--line-2); }
.post-links > h2 { font-size: 1.3rem; margin-bottom: 18px; letter-spacing: -.03em; }
.pillar-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  transition: all .4s var(--e-out);
}
.pillar-link:hover { transform: translateY(-3px); border-color: rgba(14,126,228,.34); box-shadow: var(--sh-md); }
.pl-eyebrow {
  grid-column: 1;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-600);
  display: block;
  margin-bottom: 4px;
}
.pl-title { grid-column: 1; font-weight: 750; color: var(--deep); font-size: 1.06rem; line-height: 1.4; }
.pl-arrow { grid-column: 2; grid-row: 1 / span 2; color: var(--brand); font-size: 1.4rem; }

.chip-row { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 16px; }
.chip-row .chip {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-size: .84rem;
  font-weight: 650;
  color: var(--muted);
  transition: all .3s;
}
.chip-row .chip:hover { background: var(--sky); color: var(--brand-700); border-color: rgba(14,126,228,.3); }

/* ============================================ LISTAGEM DO BLOG (do motor) */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-soft-2); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--e-out); }
.post-card:hover .post-card-media img { transform: scale(1.06); }
.post-card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-cat {
  align-self: flex-start;
  padding: 5px 12px;
  margin-bottom: 12px;
  border-radius: var(--r-pill);
  background: var(--sky);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brand-700);
}
.post-card-title { font-size: 1.16rem; line-height: 1.32; margin-bottom: 10px; }
.post-card-title a { color: var(--deep); transition: color .3s; }
.post-card:hover .post-card-title a { color: var(--brand-700); }
.post-card-excerpt { font-size: .9rem; color: var(--muted); flex: 1; line-height: 1.65; }
.post-card-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
  font-size: .8rem;
  color: var(--muted-2);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 46px;
  font-size: .88rem;
  color: var(--muted);
}
.pagination a {
  padding: 11px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  color: var(--brand-600);
  transition: all .3s var(--e-out);
}
.pagination a:hover { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: var(--sh-blue); }

/* Grade de tópicos que o motor usa na home/hub quando o template não manda. */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.card-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--sky);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brand-700);
}
.blk-more { margin-top: 26px; text-align: center; }

/* ===================================================== OFERTAS / POPUPS === */
/* O renderer de ofertas é compartilhado pela frota: aqui só garantimos que o
   cartão de produto nunca possa ser esticado por um nome sem ponto de quebra
   (o bug que rasgou o layout no cupommarketplace). */
.offer-card, .offer-item { min-width: 0; max-width: 100%; }
.offer-card *, .offer-item * { overflow-wrap: anywhere; min-width: 0; }

/* ============================================================ RESPONSIVO */
@media (max-width: 1080px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .article-shell { grid-template-columns: 1fr; }
  .article-shell > .toc { display: none; }
  .article-hero-grid { grid-template-columns: 1fr; }
  .article-hero-media { max-width: 380px; }
}
@media (max-width: 720px) {
  .post-grid { grid-template-columns: 1fr; }
  .article-body { font-size: 1.005rem; }
  .article-body .stat-row { grid-template-columns: 1fr; }
  .article-body .callout { grid-template-columns: 1fr; }
  .inline-cta { flex-direction: column; align-items: flex-start; }
  .page-shell > .article > .article-hero { margin-inline: 0; border-radius: 0; }

  /* Tabelas viram cartões: o motor já carimbou o rótulo da coluna em cada td. */
  .table-wrap { overflow-x: visible; }
  .article-body table, .article-body thead, .article-body tbody,
  .article-body tr, .article-body td { display: block; width: 100%; }
  .article-body thead { display: none; }
  .article-body table { border: 0; box-shadow: none; }
  .article-body tbody tr {
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    background: #fff;
  }
  .article-body tbody tr:nth-child(even) { background: #fff; }
  .article-body td { border-bottom: 1px solid var(--line-2); padding: 11px 14px; }
  .article-body td:last-child { border-bottom: 0; }
  .article-body td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 3px;
  }
}

