/* =========================================================================
   Link da Bio Instagram - styles.css
   Desenvolvido por Welister Matos (welister.com.br)
   HTML5 + CSS3 + JS puro. Mobile first. Sem frameworks.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Cores base (tom indigo-lilas inspirado no Instagram) */
  --bg: #FBF7FE;          /* branco-lilas claro */
  --bg-2: #F3ECFB;        /* secao alternada, lilas suave */
  --white: #FFFFFF;
  --ink: #1F1235;         /* indigo-ameixa profundo, texto principal */
  --ink-2: #574B70;       /* texto secundario */
  --ink-3: #8A7DA6;       /* legendas, microcopy */
  --line: #ECE3F7;        /* bordas suaves */
  --line-2: #DDD0EF;

  /* Marca (cores Instagram) */
  --ig-blue: #4F5BD5;
  --ig-purple: #962FBF;
  --magenta: #D62976;     /* rosa Instagram, acento principal */
  --coral: #ED4956;       /* vermelho Instagram, estados de alerta */
  --amber: #F2810E;       /* laranja Instagram */
  --ig-yellow: #FCAF45;
  --plum-900: #150A2C;    /* indigo profundo, faixa escura */
  --plum-800: #221045;

  /* Periwinkle (cor da borda da imagem de destaque do hero) */
  --peri: #C9D6F4;
  --peri-soft: #E7EFFE;

  /* Acao WhatsApp (verde dedicado) */
  --zap: #14B866;
  --zap-700: #0F9B55;
  --zap-soft: #E6F8EE;

  /* Gradientes Instagram (azul -> roxo -> rosa -> laranja -> amarelo) */
  --grad-brand: linear-gradient(135deg, #4F5BD5 0%, #962FBF 26%, #D62976 55%, #F77737 82%, #FCAF45 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(79,91,213,.12), rgba(214,41,118,.10) 52%, rgba(250,126,30,.12));

  /* Raio */
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Sombras */
  --sh-sm: 0 2px 8px rgba(34, 16, 38, .06);
  --sh: 0 12px 30px -12px rgba(34, 16, 38, .18);
  --sh-lg: 0 30px 60px -24px rgba(34, 16, 38, .28);
  --sh-zap: 0 14px 26px -10px rgba(20, 184, 102, .5);
  --sh-glow: 0 30px 80px -30px rgba(131, 58, 180, .45);

  /* Layout */
  --container: 1160px;
  --nav-h: 72px;

  /* Tipografia */
  --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.1rem, 1.3rem + 3.6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.4rem); }

p { color: var(--ink-2); }

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section {
  padding-block: clamp(56px, 6vw, 104px);
}
.section--alt { background: var(--bg-2); }
.section--white { background: var(--white); }

.section__head {
  max-width: 720px;
  margin-bottom: clamp(34px, 4vw, 56px);
}
.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--magenta);
  padding: 7px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  background: var(--white);
  box-shadow: var(--sh-sm);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-brand);
}

.section__head h2 { margin-top: 18px; }
.section__head .lead {
  margin-top: 14px;
  font-size: 1.12rem;
  color: var(--ink-2);
  max-width: 64ch;
}

/* anchor offset for fixed nav */
[id] { scroll-margin-top: calc(var(--nav-h) + 18px); }

/* ---------- Botoes ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 24px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
  min-height: 48px;
}
.btn svg { width: 20px; height: 20px; }

.btn--zap {
  background: var(--zap);
  color: #fff;
  box-shadow: var(--sh-zap);
}
.btn--zap:hover { background: var(--zap-700); transform: translateY(-2px); }
.btn--zap:active { transform: translateY(0); }

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line-2);
  box-shadow: var(--sh-sm);
}
.btn--ghost:hover { border-color: var(--magenta); color: var(--magenta); transform: translateY(-2px); }

.btn--light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn--light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

.btn--lg { padding: 18px 30px; font-size: 1.05rem; min-height: 56px; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(251, 248, 252, .78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(34,16,38,.4);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: -.02em;
  color: var(--ink);
  white-space: nowrap;
}
.brand__mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  box-shadow: var(--sh-glow);
  flex: none;
}
.brand small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .04em; color: var(--ink-3); font-family: var(--font-body); }

.nav__links {
  display: none;
  margin-left: auto;
  gap: 4px;
  align-items: center;
}
.nav__links a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-2);
  padding: 8px 13px;
  border-radius: var(--r-pill);
  transition: color .15s, background .15s;
}
.nav__links a:hover { color: var(--ink); background: var(--white); }

.nav__cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav__cta .btn { padding: 11px 18px; min-height: 44px; font-size: .95rem; }
/* No mobile, o topo fica enxuto: o CTA verde aparece no menu e no botao flutuante */
.nav__cta .btn--zap { display: none; }

.nav__burger {
  margin-left: 6px;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: var(--white);
  color: var(--ink);
}
.nav__burger svg { width: 24px; height: 24px; }
.nav__burger .icon-close { display: none; }
.nav__burger[aria-expanded="true"] .icon-open { display: none; }
.nav__burger[aria-expanded="true"] .icon-close { display: block; }

/* mobile drawer */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh);
  padding: 16px 22px 26px;
  display: grid;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform .25s var(--ease), opacity .25s var(--ease), visibility .25s;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a {
  font-weight: 600;
  padding: 13px 12px;
  border-radius: 12px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 24px);
  padding-bottom: clamp(70px, 7vw, 104px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -160px;
  width: 620px; height: 620px;
  background: var(--grad-brand);
  filter: blur(120px);
  opacity: .22;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(34px, 5vw, 56px);
  align-items: center;
}
.hero__copy { max-width: 600px; }
.hero h1 { margin-top: 20px; }
.hero h1 .gradient-text { display: inline; }
.hero__sub {
  margin-top: 20px;
  font-size: 1.16rem;
  color: var(--ink-2);
  max-width: 56ch;
}

.price-flag {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 16px;
}
.price-flag__ring {
  display: inline-flex;
  flex: none;
  padding: 3px;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  box-shadow: var(--sh-sm);
}
.price-flag__amount {
  display: inline-flex;
  align-items: baseline;
  background: var(--white);
  border-radius: var(--r-pill);
  padding: 11px 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -.02em;
  color: var(--ink);
  white-space: nowrap;
}
.price-flag__amount small { font-size: .8rem; font-weight: 700; margin-left: 1px; }
.price-flag__detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.price-flag__detail strong {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--magenta);
}
.price-flag__detail span { color: var(--ink-3); font-weight: 600; font-size: .92rem; }

.hero__cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__micro {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .95rem;
  color: var(--ink-3);
  max-width: 50ch;
}
.hero__micro svg { width: 18px; height: 18px; color: var(--zap); flex: none; margin-top: 2px; }

/* ---------- Phone mockup (assinatura) ---------- */
.hero__demo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.phone-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 6px;
  width: 100%;
}
.phone-stage .halo {
  position: absolute;
  width: 78%;
  max-width: 380px;
  aspect-ratio: 1;
  background: var(--grad-brand);
  filter: blur(78px);
  opacity: .34;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.float-chip {
  position: absolute;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 11px 14px;
  box-shadow: var(--sh-lg);
}
.float-chip b { font-size: .82rem; display: block; color: var(--ink); line-height: 1.2; }
.float-chip small { font-size: .72rem; color: var(--ink-3); display: block; }
.float-chip__ico {
  width: 36px; height: 36px;
  border-radius: 11px;
  background: var(--zap);
  color: #fff;
  display: grid; place-items: center;
  flex: none;
}
.float-chip__ico svg { width: 19px; height: 19px; }
.float-chip__ico--grad { background: var(--grad-brand); }
.float-chip--a { top: 34px; left: 0; animation: floatA 6.5s ease-in-out infinite; }
.float-chip--b { bottom: 46px; right: 0; animation: floatB 7.5s ease-in-out infinite; }
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

.phone {
  position: relative;
  width: min(330px, 82vw);
  aspect-ratio: 320 / 650;
  background: #0d0710;
  border-radius: 46px;
  padding: 13px;
  box-shadow: var(--sh-lg), var(--sh-glow);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone__notch {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 116px; height: 26px;
  background: #0d0710;
  border-radius: var(--r-pill);
  z-index: 3;
}
.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 36px;
  background: linear-gradient(180deg, #fff 0%, #fbf6fb 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bio {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 46px 20px 22px;
  overflow: hidden;
}
.bio__cover {
  position: absolute;
  inset: 0 0 auto 0;
  height: 132px;
  background: var(--grad-brand);
  opacity: .92;
}
.bio__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 30px;
}
.bio__avatar {
  width: 76px; height: 76px;
  border-radius: 22px;
  background: var(--white);
  border: 3px solid var(--white);
  box-shadow: var(--sh);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--magenta);
}
.bio__name {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--ink);
}
.bio__tag {
  font-size: .8rem;
  color: var(--ink-3);
  margin-top: 3px;
}
.bio__links {
  margin-top: 18px;
  display: grid;
  gap: 9px;
}
.bio-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  font-weight: 600;
  font-size: .85rem;
  color: var(--ink);
}
.bio-link svg { width: 18px; height: 18px; color: var(--magenta); flex: none; }
.bio-link .chev { margin-left: auto; color: var(--ink-3); width: 15px; height: 15px; }
.bio-link--zap {
  background: var(--zap);
  border-color: var(--zap);
  color: #fff;
  box-shadow: var(--sh-zap);
}
.bio-link--zap svg { color: #fff; }
.bio-link--zap .chev { color: rgba(255,255,255,.85); }

.demo-caption {
  font-size: .82rem;
  color: var(--ink-3);
  text-align: center;
  max-width: 300px;
}

/* ---------- Grid de cards ---------- */
.cards {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.cards--2 { grid-template-columns: 1fr; }
.cards--3 { grid-template-columns: 1fr; }
.cards--4 { grid-template-columns: 1fr; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--sh-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--line-2); }
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { font-size: .98rem; }

.card__ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.card__ico svg { width: 23px; height: 23px; }
.ico--brand { background: var(--grad-brand-soft); color: var(--magenta); }
.ico--zap { background: var(--zap-soft); color: var(--zap-700); }
.ico--ink { background: #F1ECF4; color: var(--ink); }

/* card de dor (problema) */
.pain {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.pain__x {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: #FCEBF1;
  color: var(--coral);
  display: grid;
  place-items: center;
}
.pain__x svg { width: 18px; height: 18px; }
.pain p { font-size: .98rem; color: var(--ink); font-weight: 500; }

/* ---------- Inclui / checklist ---------- */
.includes {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: start;
}
.check-list {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-weight: 500;
  color: var(--ink);
  font-size: 1rem;
}
.check-list .ck {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 7px;
  background: var(--zap-soft);
  color: var(--zap-700);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.check-list .ck svg { width: 15px; height: 15px; }

.includes__note {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh);
  position: sticky;
  top: calc(var(--nav-h) + 18px);
}
.includes__note h3 { color: #fff; margin-bottom: 14px; }
.includes__note p { color: rgba(255,255,255,.78); font-size: .98rem; }
.includes__note ul { margin-top: 16px; display: grid; gap: 10px; }
.includes__note li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  font-weight: 500;
}
.includes__note li svg { width: 18px; height: 18px; color: var(--amber); flex: none; margin-top: 2px; }

/* ---------- Tabela comparativa ---------- */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-lg); box-shadow: var(--sh); border: 1px solid var(--line); }
.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--white);
  font-size: .96rem;
}
.compare th, .compare td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare thead th {
  font-family: var(--font-display);
  font-size: 1rem;
  vertical-align: bottom;
  background: var(--bg-2);
}
.compare thead th:first-child {
  background: transparent;
  color: var(--ig-purple);
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.compare th.col-us {
  background: var(--ink);
  color: #fff;
  border-radius: 14px 14px 0 0;
}
.compare th.col-us span { display: block; font-size: .72rem; font-weight: 600; color: var(--amber); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; font-family: var(--font-body); }
.compare tbody th {
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-body);
}
.compare td { color: var(--ink-2); }
.compare td.us {
  background: rgba(216,30,142,.05);
  color: var(--ink);
  font-weight: 600;
}
.compare tbody tr:last-child td, .compare tbody tr:last-child th { border-bottom: 0; }
.cmp-yes { color: var(--zap-700); display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.cmp-yes svg, .cmp-mid svg, .cmp-no svg { width: 17px; height: 17px; flex: none; }
.cmp-mid { color: var(--amber); display: inline-flex; align-items: center; gap: 7px; }
.cmp-no { color: var(--ink-3); display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Recursos / blocos ---------- */
.block-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--sh-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.block-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.block-card h3 { font-size: 1.04rem; margin-bottom: 6px; }
.block-card p { font-size: .92rem; }
.mini-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 13px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: .86rem;
  color: var(--ink);
}
.mini-link svg { width: 18px; height: 18px; color: var(--magenta); flex: none; }
.mini-link .chev { margin-left: auto; color: var(--ink-3); width: 15px; height: 15px; }
.mini-link--zap {
  background: var(--zap);
  border-color: var(--zap);
  color: #fff;
  box-shadow: var(--sh-zap);
}
.mini-link--zap svg { color: #fff; }
.mini-link--zap .chev { color: rgba(255,255,255,.85); }

/* ---------- Beneficios ---------- */
.benefit {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform .18s var(--ease);
}
.benefit:hover { transform: translateY(-3px); }
.benefit__ck {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
}
.benefit__ck svg { width: 18px; height: 18px; }
.benefit p { color: var(--ink); font-weight: 500; font-size: .98rem; }

/* ---------- Preco ---------- */
.price-wrap {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
  align-items: center;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--grad-brand);
}
.price-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--magenta);
  background: var(--grad-brand-soft);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.price-card h3 { font-size: 1.5rem; }
.price-card__value {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 4px;
}
.price-card__value .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 2rem + 3vw, 3.4rem);
  letter-spacing: -.03em;
  line-height: 1;
}
.price-card__value .cur { font-size: 1.3rem; font-weight: 700; color: var(--ink-2); }
.price-card__sub {
  font-size: 1rem;
  color: var(--ink-2);
  font-weight: 600;
}
.price-card__sub b { color: var(--ink); }
.price-card .check-list { margin: 24px 0; }
.price-card__micro {
  font-size: .9rem;
  color: var(--ink-3);
  margin-top: 16px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.price-card__micro svg { width: 17px; height: 17px; color: var(--magenta); flex: none; margin-top: 2px; }

.price-aside h2 { margin-bottom: 14px; }
.price-aside .lead { color: var(--ink-2); font-size: 1.08rem; }
.price-aside ul { margin-top: 20px; display: grid; gap: 12px; }
.price-aside li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink); font-weight: 500; }
.price-aside li svg { width: 22px; height: 22px; color: var(--zap-700); flex: none; }

/* ---------- Como funciona (steps) ---------- */
.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 22px 22px;
  box-shadow: var(--sh-sm);
}
.step__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 16px;
  box-shadow: var(--sh-glow);
}
.step__ico { color: var(--magenta); margin-bottom: 10px; }
.step__ico svg { width: 24px; height: 24px; }
.step h3 { font-size: 1.1rem; margin-bottom: 7px; }
.step p { font-size: .96rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq__item.is-open { border-color: var(--line-2); box-shadow: var(--sh); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq__q .icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--bg-2);
  color: var(--magenta);
  display: grid; place-items: center;
  transition: transform .26s var(--ease), background .2s;
}
.faq__q .icon svg { width: 18px; height: 18px; }
.faq__item.is-open .faq__q .icon { transform: rotate(180deg); background: var(--grad-brand); color: #fff; }
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}
.faq__item.is-open .faq__panel { grid-template-rows: 1fr; }
.faq__panel > div { overflow: hidden; }
.faq__panel p {
  padding: 0 22px 22px;
  font-size: 1rem;
  color: var(--ink-2);
}

/* ---------- CTA final (faixa assinatura escura) ---------- */
.cta-final {
  position: relative;
  background: linear-gradient(135deg, #34197D 0%, #962FBF 48%, #D62976 100%);
  color: #fff;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 560px at 74% -18%, rgba(252,175,69,.20), rgba(252,175,69,0) 72%);
  pointer-events: none;
}
.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 760px at 102% 2%, rgba(252,175,69,.16), rgba(252,175,69,0) 72%),
    radial-gradient(1150px 840px at -6% 102%, rgba(79,91,213,.40), rgba(79,91,213,0) 74%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; text-align: center; }
.cta-final h2 { color: #fff; font-size: clamp(2rem, 1.4rem + 3vw, 3rem); }
.cta-final p { color: rgba(255,255,255,.82); font-size: 1.16rem; max-width: 56ch; margin: 18px auto 0; }
.cta-final .hero__cta { justify-content: center; margin-top: 30px; }
.cta-final__price {
  margin-top: 22px;
  font-size: .98rem;
  color: rgba(255,255,255,.85);
}
.cta-final__price b { color: #fff; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: linear-gradient(180deg, #2A1857 0%, #1C1040 100%);
  color: rgba(255,255,255,.72);
  padding-block: 56px 30px;
  font-size: .95rem;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
}
.footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer .brand { color: #fff; }
.footer .brand small { color: rgba(255,255,255,.55); }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer__col p { color: rgba(255,255,255,.72); margin-bottom: 14px; max-width: 38ch; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; align-items: center; }
.footer__contact svg { width: 18px; height: 18px; color: var(--amber); flex: none; }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
}
.footer__dev {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,.4);
}
.footer__dev:hover { text-decoration-color: #fff; }
.footer__signature { display: inline-flex; align-items: center; gap: 6px; }
.footer__signature img { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; flex: none; }
.footer__legal {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  line-height: 1.6;
}

/* ---------- WhatsApp widget ---------- */
.wa-widget {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  transition: transform .25s var(--ease);
}
.wa-float {
  position: relative;
  width: 58px; height: 58px;
  border: none;
  border-radius: 50%;
  background: var(--zap);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--sh-zap);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float svg { width: 27px; height: 27px; flex: none; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(20,184,102,.5);
  animation: pulse 2.4s infinite;
}
.wa-float__dot {
  position: absolute;
  top: -2px; right: -2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #3DEB81;
  border: 2px solid #fff;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(20,184,102,.45); }
  70% { box-shadow: 0 0 0 16px rgba(20,184,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(20,184,102,0); }
}

/* Balao de previa */
.wa-preview {
  position: absolute;
  right: 0; bottom: calc(100% + 14px);
  width: max-content;
  max-width: 220px;
  background: var(--white);
  color: var(--ink);
  border-radius: 16px;
  padding: 12px 30px 12px 14px;
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 18px 40px -16px rgba(31,18,53,.3);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px) scale(.96);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.wa-preview.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.wa-preview p { margin: 0; }
.wa-preview::after {
  content: "";
  position: absolute;
  right: 22px; bottom: -6px;
  width: 13px; height: 13px;
  background: var(--white);
  transform: rotate(45deg);
}
.wa-preview__close {
  position: absolute;
  top: 7px; right: 7px;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.wa-preview__close:hover { color: var(--ink); }

/* Painel de conversa */
.wa-panel {
  position: absolute;
  right: 0; bottom: calc(100% + 14px);
  width: min(320px, calc(100vw - 36px));
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 70px -20px rgba(21,10,44,.4);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(.97);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.wa-panel.is-open { opacity: 1; transform: none; pointer-events: auto; }
.wa-panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  background: var(--zap);
  color: #fff;
}
.wa-panel__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  border: 2px solid rgba(255,255,255,.5);
}
.wa-panel__who { flex: 1; min-width: 0; }
.wa-panel__who b { display: block; font-size: .95rem; }
.wa-panel__who span { display: flex; align-items: center; gap: 6px; font-size: .76rem; color: rgba(255,255,255,.85); margin-top: 2px; }
.wa-dot { width: 7px; height: 7px; border-radius: 50%; background: #B6FFCF; flex: none; }
.wa-panel__close {
  width: 26px; height: 26px;
  flex: none;
  display: flex; align-items: center; justify-content: center;
  border: none;
  background: rgba(255,255,255,.15);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}
.wa-panel__close:hover { background: rgba(255,255,255,.28); }
.wa-panel__body { background: var(--bg); padding: 18px 16px; }
.wa-bubble {
  position: relative;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 14px 20px;
  font-size: .87rem;
  line-height: 1.5;
  color: var(--ink-2);
  box-shadow: 0 8px 20px -10px rgba(31,18,53,.18);
}
.wa-bubble p { margin: 0; }
.wa-bubble__time {
  position: absolute;
  right: 14px; bottom: 8px;
  font-size: .7rem;
  color: var(--ink-3);
}
.wa-panel__foot { padding: 6px 16px 16px; }
.wa-panel__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--zap);
  color: #fff;
  font-weight: 700;
  padding: 13px 18px;
  border-radius: var(--r-pill);
  text-align: center;
  transition: background .2s var(--ease);
}
.wa-panel__cta svg { width: 20px; height: 20px; flex: none; }
.wa-panel__cta:hover { background: var(--zap-700); }
.wa-panel__hint {
  margin: 8px 0 0;
  text-align: center;
  font-size: .76rem;
  color: var(--ink-3);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (min-width: 560px) {
  .cards--2, .cards--4 { grid-template-columns: 1fr 1fr; }
  .nav__cta .btn--zap { display: inline-flex; }
}

@media (min-width: 760px) {
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .check-list { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .includes { grid-template-columns: 1.4fr 1fr; }
  .price-wrap { grid-template-columns: 1.05fr .95fr; }
  .float-chip { display: flex; }
}

@media (min-width: 980px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .hero__copy { max-width: none; }
  .cards--4 { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1.2fr; }

  /* Hero ocupa exatamente a primeira dobra; conteúdo centralizado, onda no fim.
     Espaçamentos em vh: comprimem em telas baixas e respiram nas altas. */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--nav-h) + clamp(8px, 2vh, 30px));
    padding-bottom: clamp(100px, 10vh, 168px);
  }
  .hero__grid { width: 100%; }
  .hero h1 { margin-top: clamp(12px, 1.8vh, 22px); }
  .hero__sub { margin-top: clamp(12px, 1.8vh, 22px); }
  .hero .price-flag { margin-top: clamp(16px, 2.4vh, 28px); }
  .hero__cta { margin-top: clamp(16px, 2.4vh, 28px); }
  .hero__micro { margin-top: clamp(10px, 1.6vh, 18px); }
  /* a imagem encolhe se a tela for baixa, para tudo caber na dobra */
  .hero-shot__img { width: min(420px, 100%); max-height: min(58vh, 560px); }
}

@media (min-width: 760px) {
  .price-card .check-list { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .phone { animation: none; }
  .hero-shot__img { animation: none; }
  .pf-screen img { animation: none; }
}

/* =====================================================================
   ADIÇÕES: hero com imagem, acentos de cor e novas seções
   (portfólio com telas rolando + depoimentos)
   ===================================================================== */

/* Acento de cor sob os títulos de seção */
.section__head h2::after {
  content: "";
  display: block;
  width: 64px; height: 4px;
  margin-top: 18px;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
}
.section__head--center h2::after { margin-inline: auto; }

/* Brilho ambiente para dar cor às seções claras */
.section--glow { position: relative; overflow: hidden; }
.section--glow > .container { position: relative; z-index: 1; }
.section--glow::before {
  content: "";
  position: absolute;
  width: 540px; height: 540px;
  top: -200px; left: -170px;
  background: var(--grad-brand);
  filter: blur(130px);
  opacity: .12;
  border-radius: 50%;
  pointer-events: none;
}
.section--glow-r::before { left: auto; right: -170px; top: auto; bottom: -230px; opacity: .1; }

/* ---------- Hero: imagem de destaque integrada ---------- */
.hero {
  background:
    radial-gradient(rgba(124,77,196,.05) 1.1px, transparent 1.4px) 0 0 / 26px 26px,
    radial-gradient(130% 120% at 100% 6%, var(--peri-soft) 0%, rgba(231,239,254,0) 52%),
    radial-gradient(86% 78% at 2% 4%, rgba(214,41,118,.05), transparent 56%),
    var(--bg);
}
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: clamp(56px, 7vw, 104px);
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  filter: drop-shadow(0 -2px 12px rgba(214,41,118,.22));
}
.hw-svg {
  position: absolute;
  left: 0; bottom: 0;
  width: 200%;
  max-width: none;
  height: 100%;
  will-change: transform;
  animation: hwSlide linear infinite;
}
.hw-svg--1 { animation-duration: 19s; animation-delay: -4s; }
.hw-svg--2 { animation-duration: 13s; animation-delay: -9s; }
.hw-svg--3 { animation-duration: 9s;  animation-delay: -2s; }
@keyframes hwSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Imagem de destaque do hero (mockup) */
.hero-shot {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-shot__glow {
  position: absolute;
  inset: 6% 4% 8%;
  z-index: 0;
  background: radial-gradient(circle at 50% 46%, var(--peri) 0%, rgba(205,217,245,0) 64%);
  filter: blur(38px);
  border-radius: 50%;
  pointer-events: none;
}
.hero-shot__img {
  position: relative;
  z-index: 1;
  width: min(380px, 84%);
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(74,58,128,.28));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Cabeçalho com imagem ao lado (head-split) ---------- */
.section__head.head-split {
  max-width: none;
  display: grid;
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
}
.head-split__copy { max-width: 620px; }
.head-split__media { position: relative; margin: 0; }
.head-split__media img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.head-split__media::after {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: var(--r-xl);
  background: var(--grad-brand);
  opacity: .14;
  filter: blur(28px);
}

/* ---------- Portfólio (telas rolando) ---------- */
.pf-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 4vw, 44px);
}
.pf-item {
  flex: 1 1 280px;
  max-width: 320px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pf-phone {
  --pf-h: 460px;
  position: relative;
  width: min(264px, 74vw);
  padding: 12px;
  background: #0d0710;
  border-radius: 40px;
  box-shadow: var(--sh-lg), var(--sh-glow);
}
.pf-phone::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 20px;
  background: #0d0710;
  border-radius: var(--r-pill);
  z-index: 2;
}
.pf-screen {
  position: relative;
  height: var(--pf-h);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
}
.pf-screen img {
  width: 100%;
  height: auto;
  display: block;
  animation: pfScroll 18s linear infinite alternate;
}
.pf-item--b .pf-screen img { animation-duration: 24s; }
.pf-item--c .pf-screen img { animation-duration: 33s; }
.pf-phone:hover .pf-screen img { animation-play-state: paused; }
@keyframes pfScroll {
  from { transform: translateY(0); }
  to { transform: translateY(calc(-100% + var(--pf-h))); }
}
.pf-label { text-align: center; }
.pf-label b {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--ink);
  display: block;
}
.pf-label > span { font-size: .9rem; color: var(--ink-3); }
.pf-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--magenta);
}
.pf-link svg { width: 16px; height: 16px; }
.pf-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.pf-more {
  margin: clamp(34px, 5vw, 52px) 0 0;
  text-align: center;
}
.pf-more img {
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
  border: 1px solid var(--line);
}
.pf-more figcaption {
  margin-top: 14px;
  font-size: .95rem;
  color: var(--ink-3);
  max-width: 52ch;
  margin-inline: auto;
}

/* ---------- Depoimentos ---------- */
.depo-grid {
  display: grid;
  gap: clamp(24px, 3.5vw, 40px);
  grid-template-columns: 1fr;
  align-items: start;
}
.depo-media {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.depo-media img { width: 100%; height: auto; display: block; }
.depo-media figcaption {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  background: rgba(21,10,44,.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: .92rem;
  font-weight: 600;
}
.depo-cards { display: grid; gap: 18px; }
.quote {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 24px 22px;
  box-shadow: var(--sh-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.quote__mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: .7;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  height: 30px;
}
.quote__stars { display: flex; gap: 3px; margin: 4px 0 12px; }
.quote__stars svg { width: 18px; height: 18px; color: var(--ig-yellow); }
.quote > p { color: var(--ink-2); font-size: 1.02rem; }
.quote__by {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.quote__avatar {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}
.quote__who { flex: 1; min-width: 0; }
.quote__who b { display: block; font-size: 1rem; color: var(--ink); }
.quote__who > span { font-size: .86rem; color: var(--ink-3); }
.quote__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--magenta);
  flex: none;
}
.quote__link svg { width: 15px; height: 15px; }
.quote__link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Responsivo das novas seções */
@media (min-width: 760px) {
  .section__head.head-split { grid-template-columns: 1.05fr .95fr; }
}
@media (min-width: 880px) {
  .depo-grid { grid-template-columns: .92fr 1.08fr; }
  .depo-media { position: sticky; top: calc(var(--nav-h) + 18px); }
}
@media (max-width: 480px) {
  .pf-phone { --pf-h: 420px; }
}

/* =====================================================================
   ADIÇÕES v3: logo, ícones coloridos, vida nas seções
   ===================================================================== */

/* Logo da marca no header */
.brand__logo { height: 38px; width: auto; display: block; }
@media (max-width: 380px) { .brand__logo { height: 32px; } }

/* Logo branca no rodapé */
.footer__logo { height: 42px; width: auto; display: block; }

/* Ícones da Solução: variações de cor da paleta Instagram (sem mexer no HTML) */
.cards--3 .card:nth-child(2) .card__ico { background: rgba(79,91,213,.12);  color: var(--ig-blue); }
.cards--3 .card:nth-child(3) .card__ico { background: rgba(214,41,118,.12); color: var(--magenta); }
.cards--3 .card:nth-child(4) .card__ico { background: rgba(237,73,86,.13);  color: var(--coral); }
.cards--3 .card:nth-child(5) .card__ico { background: rgba(150,47,191,.13); color: var(--ig-purple); }
.cards--3 .card:nth-child(6) .card__ico { background: rgba(242,129,14,.14); color: var(--amber); }
.cards--3 .card:nth-child(7) .card__ico { background: rgba(79,91,213,.12);  color: var(--ig-blue); }
.cards--3 .card:nth-child(8) .card__ico { background: rgba(214,41,118,.12); color: var(--magenta); }

/* Ícones/pills dos Recursos: cor sugestiva por bloco (sem mexer no HTML) */
.block-card:nth-child(2) .mini-link { background: rgba(150,47,191,.10); }
.block-card:nth-child(2) .mini-link svg:not(.chev) { color: var(--ig-purple); }
.block-card:nth-child(3) .mini-link { background: rgba(79,91,213,.10); }
.block-card:nth-child(3) .mini-link svg:not(.chev) { color: var(--ig-blue); }
.block-card:nth-child(4) .mini-link { background: rgba(237,73,86,.10); }
.block-card:nth-child(4) .mini-link svg:not(.chev) { color: var(--coral); }
.block-card:nth-child(5) .mini-link { background: rgba(242,129,14,.12); }
.block-card:nth-child(5) .mini-link svg:not(.chev) { color: var(--amber); }
.block-card:nth-child(6) .mini-link { background: rgba(214,41,118,.10); }
.block-card:nth-child(6) .mini-link svg:not(.chev) { color: var(--magenta); }
.block-card:nth-child(7) .mini-link { background: rgba(79,91,213,.10); }
.block-card:nth-child(7) .mini-link svg:not(.chev) { color: var(--ig-blue); }
.block-card:nth-child(8) .mini-link { background: rgba(150,47,191,.10); }
.block-card:nth-child(8) .mini-link svg:not(.chev) { color: var(--ig-purple); }

/* Problema: chip de dor com leve gradiente para ganhar vida (mantém o vermelho semântico) */
.pain__x {
  background: linear-gradient(140deg, #FFE7EE 0%, #FCE0E4 100%);
  color: var(--coral);
  box-shadow: inset 0 0 0 1px rgba(237,73,86,.12);
}
