/* ===========================================================
   AGÊNCIA ABSOLUTA — site oficial v1
   Estética: minimalismo refinado, herança editorial, dark theme
   Paleta: preto · branco · cinza · vermelho (acento)
   =========================================================== */

:root {
  --bg:        #0a0a0b;
  --bg-soft:   #111113;
  --surface:   #16161a;
  --surface-2: #1d1d22;
  --line:      #2a2a30;
  --line-soft: #1f1f24;
  --ink:       #f4f3f1;
  --ink-mid:   #a6a5a2;
  --ink-dim:   #6f6e6c;
  --accent:    #e11d1d;
  --accent-lo: #b81616;
  --accent-glow: rgba(225, 29, 29, 0.18);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --r: 16px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  background-color: #0a0a0b;
  color-scheme: dark;
  scroll-behavior: smooth; -webkit-text-size-adjust: 100%;
}

body {
  background-color: #0a0a0b;
  background-color: var(--bg);
  color: #f4f3f1;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- atmosfera de fundo ---------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(680px 420px at 78% -6%, var(--accent-glow), transparent 70%),
    radial-gradient(560px 480px at 8% 102%, rgba(255,255,255,0.04), transparent 72%);
  pointer-events: none; z-index: 0;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ===========================================================
   TIPOGRAFIA
   =========================================================== */
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow.muted { color: var(--ink-dim); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; }

h2.section-title {
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  margin-top: 18px;
}
.section-lead {
  color: var(--ink-mid); font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 46ch; margin-top: 18px;
}

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad);
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,11,0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  padding-block: 11px;
}
.brand {
  font-family: var(--serif); font-weight: 600; font-size: 1.32rem;
  letter-spacing: -0.01em; display: flex; align-items: center; gap: 9px;
}
.brand .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 14px; color: var(--ink-mid); font-weight: 500;
  transition: color .25s var(--ease); position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: flex; border: 1px solid var(--line); border-radius: 999px;
  overflow: hidden; font-size: 12px; font-weight: 600;
}
.lang-toggle button {
  padding: 6px 11px; color: var(--ink-dim); letter-spacing: .04em;
  transition: all .25s var(--ease);
}
.lang-toggle button.active { background: var(--ink); color: var(--bg); }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; padding: 12px 22px;
  border-radius: 999px; transition: transform .2s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 30px -10px var(--accent); }
.btn-primary:hover { background: #f02525; box-shadow: 0 12px 38px -10px var(--accent); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink-mid); background: var(--surface); }
.btn-light { background: var(--ink); color: var(--bg); }
.btn-light:hover { background: #fff; }
.btn.sm { padding: 9px 16px; font-size: 13px; }

.nav-burger { display: none; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative; z-index: 1;
  min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; padding-top: 120px; padding-bottom: 70px;
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 38%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 38%, #000 30%, transparent 78%);
}
.hero h1 {
  font-size: clamp(2.7rem, 8.2vw, 6rem);
  font-weight: 600;
  margin-top: 26px; max-width: 17ch;
}
.hero h1 .em { color: var(--accent); font-style: italic; }
.hero p.hero-sub {
  margin-top: 28px; color: #c8c7c4;
  font-size: clamp(1.05rem, 2.2vw, 1.32rem); max-width: 52ch;
}
.hero-cta { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: clamp(22px, 5vw, 60px); margin-top: 68px;
  flex-wrap: wrap; padding-top: 30px; border-top: 1px solid var(--line-soft);
}
.hero-stats .stat .n {
  font-family: var(--serif); font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 500; line-height: 1;
}
.hero-stats .stat .l {
  font-size: 13px; color: var(--ink-mid); font-weight: 500; margin-top: 8px;
  letter-spacing: .03em;
}

/* ===========================================================
   SEÇÕES GENÉRICAS
   =========================================================== */
section { position: relative; z-index: 1; }
.block { padding-block: clamp(74px, 11vw, 140px); }
.block-head { margin-bottom: 56px; max-width: 640px; }
.divider { height: 1px; background: var(--line-soft); }

/* ---------- herança / faixa ---------- */
.heritage {
  padding-block: clamp(56px, 8vw, 90px);
  background: var(--bg-soft); border-block: 1px solid var(--line-soft);
}
.heritage .wrap {
  display: flex; gap: 40px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.heritage .ht-text { max-width: 50ch; }
.heritage .ht-year {
  font-family: var(--serif); font-size: clamp(3.6rem, 9vw, 6.4rem);
  font-weight: 500; line-height: .9; color: var(--ink);
}
.heritage .ht-year span { color: var(--accent); }
.heritage p { color: var(--ink-mid); margin-top: 14px; }

/* ===========================================================
   MÉTODO ABSOLUTA — cards numerados
   =========================================================== */
.method-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.m-card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r); padding: 26px 22px 24px;
  position: relative; overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.m-card:hover {
  border-color: var(--line); transform: translateY(-4px);
  background: var(--surface-2);
}
.m-card .m-letter {
  font-family: var(--serif); font-size: 3.6rem; font-weight: 600;
  line-height: 1; color: var(--accent);
}
.m-card .m-letter::after {
  content: attr(data-idx); font-family: var(--sans); font-size: .8rem;
  color: var(--ink-dim); font-weight: 600; vertical-align: super;
  margin-left: 6px;
}
.m-card h3 { font-size: 1.28rem; margin-top: 16px; }
.m-card p { font-size: 14.5px; color: var(--ink-mid); margin-top: 9px; }
.m-card .m-num {
  position: absolute; top: 18px; right: 20px; font-size: 12px;
  color: var(--ink-dim); font-weight: 600; letter-spacing: .1em;
}

/* ===========================================================
   PREÇOS
   =========================================================== */
.price-toggle {
  display: inline-flex; background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px; margin-bottom: 44px;
}
.price-toggle button {
  padding: 9px 20px; font-size: 13.5px; font-weight: 600; border-radius: 999px;
  color: var(--ink-dim); transition: all .25s var(--ease);
}
.price-toggle button.active { background: var(--ink); color: var(--bg); }

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.plan {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r); padding: 28px 24px; display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.plan:hover { border-color: var(--line); transform: translateY(-4px); }
.plan.featured { border-color: var(--accent); background: var(--surface-2); }
.plan .tag {
  align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
  border: 1px solid var(--accent-lo); padding: 3px 9px; border-radius: 999px;
}
.plan h3 { font-size: 1.5rem; }
.plan .price {
  font-family: var(--serif); font-size: 2rem; font-weight: 500; margin-top: 12px;
}
.plan .price small { font-size: .85rem; color: var(--ink-dim); font-family: var(--sans); }
.plan .price-sub { font-size: 13px; color: var(--accent); margin-top: 4px; min-height: 18px; }
.plan ul { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan ul li {
  font-size: 14px; color: var(--ink-mid); padding-left: 24px; position: relative;
  line-height: 1.5;
}
.plan ul li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 13px; height: 13px;
  background: var(--accent); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/></svg>") center/contain no-repeat;
}
.plan-actions { display: flex; flex-direction: column; gap: 9px; margin-top: 24px; }
.plan-more {
  font-size: 13px; color: var(--ink-mid); font-weight: 600; text-align: center;
  padding: 9px; border-radius: 999px; transition: color .2s var(--ease);
}
.plan-more:hover { color: var(--ink); }
.plan-more .chev { display: inline-block; transition: transform .3s var(--ease); }
.plan-more.open .chev { transform: rotate(180deg); }
.plan-detail {
  max-height: 0; overflow: hidden; transition: max-height .45s var(--ease);
  border-top: 1px solid transparent;
}
.plan-detail.open { border-top-color: var(--line-soft); margin-top: 4px; }
.plan-detail .pd-inner { padding-top: 16px; }
.plan-detail h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 8px; }
.plan-detail p { font-size: 13.5px; color: var(--ink-mid); }
.plan-detail .cmp { font-size: 13px; color: var(--ink-mid); margin-top: 12px; padding: 12px; background: var(--bg); border-radius: 10px; border: 1px solid var(--line-soft); }
.plan-detail .cmp b { color: var(--accent); }

.addons {
  margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px;
}
.addons .chip {
  font-size: 13px; color: var(--ink-mid); background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: 999px; padding: 8px 14px;
}
.addons .chip b { color: var(--ink); }
.price-note { margin-top: 20px; font-size: 13px; color: var(--ink-dim); max-width: 70ch; }

/* ===========================================================
   HISTÓRIA — timeline
   =========================================================== */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: grid; grid-template-columns: 130px 1fr; gap: 30px;
  padding: 30px 0; border-bottom: 1px solid var(--line-soft);
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 500; color: var(--accent);
}
.tl-body h3 { font-family: var(--sans); font-size: 1.18rem; font-weight: 700; letter-spacing: 0; }
.tl-body p { color: var(--ink-mid); margin-top: 8px; font-size: 15px; max-width: 60ch; }

/* manifesto */
.manifesto {
  background: var(--bg-soft); border-block: 1px solid var(--line-soft);
  padding-block: clamp(70px, 10vw, 120px);
}
.manifesto blockquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 4vw, 2.7rem);
  font-weight: 400; font-style: italic; line-height: 1.28; max-width: 20ch;
  letter-spacing: -0.02em;
}
.manifesto blockquote .em { color: var(--accent); }
.manifesto cite {
  display: block; margin-top: 28px; font-family: var(--sans); font-style: normal;
  font-size: 14px; color: var(--ink-dim); letter-spacing: .03em;
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq-list { border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 24px 4px; text-align: left;
  font-size: clamp(1.02rem, 2vw, 1.18rem); font-weight: 600; color: var(--ink);
  font-family: var(--serif); letter-spacing: -0.01em;
}
.faq-q .ic {
  flex-shrink: 0; width: 26px; height: 26px; border: 1px solid var(--line);
  border-radius: 50%; position: relative; transition: all .3s var(--ease);
}
.faq-q .ic::before, .faq-q .ic::after {
  content: ""; position: absolute; background: var(--ink-mid);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-q .ic::before { width: 11px; height: 1.5px; }
.faq-q .ic::after { width: 1.5px; height: 11px; transition: transform .3s var(--ease); }
.faq-item.open .faq-q .ic { border-color: var(--accent); background: var(--accent); }
.faq-item.open .faq-q .ic::before, .faq-item.open .faq-q .ic::after { background: #fff; }
.faq-item.open .faq-q .ic::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--ink-mid); font-size: 15.5px; max-width: 72ch; }

/* ===========================================================
   CONTATO
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r); padding: 34px;
}
.contact-card.accent {
  background: linear-gradient(160deg, #1a0c0c, var(--surface));
  border-color: var(--accent-lo);
}
.contact-card h3 { font-family: var(--sans); font-weight: 700; font-size: 1.2rem; }
.contact-card p { color: var(--ink-mid); font-size: 14.5px; margin-top: 8px; }
.contact-line {
  display: flex; align-items: center; gap: 12px; margin-top: 18px;
  font-size: 15px; color: var(--ink);
}
.contact-line .ci {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
  background: var(--surface-2); display: grid; place-items: center;
  border: 1px solid var(--line-soft);
}
.contact-line .ci svg { width: 18px; height: 18px; }
.contact-meta { margin-top: 24px; font-size: 13.5px; color: var(--ink-dim); line-height: 1.7; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  border-top: 1px solid var(--line-soft); padding-block: 56px 30px;
  position: relative; z-index: 1;
}
.footer-top {
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  padding-bottom: 36px; border-bottom: 1px solid var(--line-soft);
}
.footer-brand { max-width: 30ch; }
.footer-brand .brand { font-size: 1.5rem; margin-bottom: 12px; }
.footer-brand p { color: var(--ink-dim); font-size: 13.5px; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 {
  font-family: var(--sans); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-dim); margin-bottom: 14px;
}
.footer-col a, .footer-col p { font-size: 14px; color: var(--ink-mid); display: block; margin-bottom: 9px; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 28px; display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; font-size: 12.5px; color: var(--ink-dim);
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; transition: all .25s var(--ease);
}
.socials a:hover { border-color: var(--accent); background: var(--accent); color: #fff; }
.socials svg { width: 16px; height: 16px; }

/* ===========================================================
   WHATSAPP FLUTUANTE
   =========================================================== */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 30px -6px rgba(0,0,0,.6);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float:active { transform: scale(0.95); }
.wa-float svg { width: 30px; height: 30px; }

/* ===========================================================
   LGPD BANNER
   =========================================================== */
.lgpd {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: rgba(17,17,19,0.96); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); padding: 16px var(--pad);
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap; transform: translateY(110%); transition: transform .5s var(--ease);
}
.lgpd.show { transform: translateY(0); }
.lgpd p { font-size: 13px; color: var(--ink-mid); max-width: 64ch; }
.lgpd p a { color: var(--ink); text-decoration: underline; }

/* ===========================================================
   ANIMAÇÕES DE ENTRADA
   =========================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ===========================================================
   RESPONSIVO
   =========================================================== */
@media (max-width: 940px) {
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-burger {
    display: grid; place-items: center; width: 42px; height: 42px;
    border: 1px solid var(--line); border-radius: 10px;
  }
  .nav-burger span { width: 17px; height: 1.6px; background: var(--ink); display: block; }
  .nav-burger span + span { margin-top: 5px; }
  .nav-cta-text { display: none; }
  .nav-links.mobile-open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: rgba(10,10,11,0.98);
    backdrop-filter: blur(18px); border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 20px;
  }
  .nav-links.mobile-open a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 16px; }
  .heritage .wrap { flex-direction: column; align-items: flex-start; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 460px) {
  .method-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}

/* ===========================================================
   MODAIS DE PLANO (subpáginas)
   =========================================================== */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.open { display: block; }
.modal-bg { position: absolute; inset: 0; background: rgba(5,5,6,0.82);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.modal-card { position: absolute; inset: 0; background: var(--bg);
  overflow-y: auto; -webkit-overflow-scrolling: touch; }
.modal-x { position: fixed; top: 16px; right: 16px; z-index: 3;
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%;
  background: var(--surface); color: var(--ink); font-size: 14px;
  display: grid; place-items: center; }
.modal-x:hover { border-color: var(--ink-mid); }
.modal-scroll { max-width: 660px; margin: 0 auto;
  padding: clamp(64px,12vw,92px) var(--pad) clamp(48px,10vw,80px); }
.modal-name { font-size: clamp(2.1rem,7vw,3rem); margin-top: 10px; }
.modal-price { font-family: var(--serif); font-size: 2rem; font-weight: 500; margin-top: 14px; }
.modal-price small { font-family: var(--sans); font-size: .82rem; color: var(--ink-dim); }
.modal-psub { font-size: 13px; color: var(--accent); margin-top: 5px; }
.modal-lead { color: var(--ink-mid); margin-top: 20px; font-size: 1.05rem; line-height: 1.6; }
.modal-scroll h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-dim); margin: 34px 0 14px; }
.modal-list { display: flex; flex-direction: column; gap: 11px; }
.modal-list li { font-size: 15px; color: var(--ink-mid); padding-left: 26px;
  position: relative; line-height: 1.5; }
.modal-list li::before { content: ""; position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px; background: var(--accent); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/></svg>") center/contain no-repeat; }
.modal-cmp { background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: 14px; padding: 18px 20px; }
.modal-cmp p { font-size: 14.5px; color: var(--ink-mid); line-height: 1.55; }
.modal-cmp ul { margin-top: 12px; display: flex; flex-direction: column; gap: 9px; }
.modal-cmp li { font-size: 14px; color: var(--ink); padding-left: 22px; position: relative; }
.modal-cmp li::before { content: "+"; position: absolute; left: 0; top: -1px;
  color: var(--accent); font-weight: 700; }
.modal-cta { margin-top: 30px; width: 100%; justify-content: center; }
body.modal-open { overflow: hidden; }
@media (min-width: 760px) {
  .modal-card { inset: 4vh auto; left: 50%; transform: translateX(-50%);
    width: 720px; max-height: 92vh; border: 1px solid var(--line); border-radius: 20px; }
  .modal-x { position: absolute; }
}

/* ---------- timeline de 90 dias (nos modais) ---------- */
.modal-timeline { display: flex; flex-direction: column; }
.mt-phase { padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.mt-phase:last-child { border-bottom: none; }
.mt-days { font-size: 11.5px; font-weight: 700; letter-spacing: .09em;
  color: var(--accent); text-transform: uppercase; }
.mt-phase h5 { font-family: var(--sans); font-size: 1.05rem; font-weight: 700;
  margin: 6px 0; letter-spacing: 0; }
.mt-phase p { font-size: 14px; color: var(--ink-mid); line-height: 1.55; }
