/* Clone fiel do chrome VisionVance (jornal editorial) — tokens medidos do CSS live. */
:root,
.adv-root {
  --background: oklch(100% 0 0);
  --foreground: oklch(18% .02 260);
  --muted: oklch(96% .005 255);
  --muted-foreground: oklch(45% .02 260);
  --primary: oklch(28% .09 260);
  --primary-foreground: oklch(99% 0 0);
  --accent: oklch(55% .16 255);
  --accent-foreground: oklch(99% 0 0);
  --border: oklch(90% .01 255);
  --card: oklch(98.5% .005 255);
  --card-foreground: oklch(18% .02 260);
  --danger: oklch(50% .2 25);
  --success: oklch(55% .14 155);
  --adv-serif: Georgia, "Times New Roman", serif;
  --adv-sans: "Helvetica Neue", Arial, sans-serif;
  --radius: .5rem;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; background: var(--background); }
a { color: inherit; }

.adv-root {
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--adv-serif);
  font-size: 18px;
  line-height: 1.7;
}
.adv-root h1,
.adv-root h2,
.adv-root h3 { letter-spacing: normal; font-weight: 700; margin: 0; }
.ui-sans { font-family: var(--adv-sans); }
.serif-display { font-family: var(--adv-serif); }

/* Top bar */
.topbar {
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 12px;
}
.topbar-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 1rem;
}
.topbar-date { opacity: .8; }
.topbar-links { display: none; gap: 1rem; opacity: .8; }
@media (min-width: 640px) { .topbar-links { display: flex; } }

/* Masthead */
.masthead {
  border-bottom: 1px solid var(--border);
  background: var(--background);
}
.masthead-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wordmark {
  width: 100%;
  max-width: 36rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: .75rem;
  margin-bottom: .85rem;
}
.wordmark-title {
  font-family: var(--adv-serif);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.7rem, 5vw, 2.65rem);
  letter-spacing: .01em;
  color: #111;
  line-height: 1;
}
.wordmark-subrow {
  margin-top: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}
.wordmark-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #3d7ee8, #1d4ed8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--adv-serif);
  font-style: italic;
  font-weight: 800;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.wordmark-kicker {
  text-align: left;
  line-height: 1.1;
}
.wordmark-kicker strong {
  display: block;
  font-family: var(--adv-sans);
  font-size: 13px;
  letter-spacing: .08em;
  color: #2563eb;
  font-weight: 800;
}
.wordmark-kicker span {
  display: block;
  font-family: var(--adv-sans);
  font-size: 12px;
  letter-spacing: .06em;
  color: #60a5fa;
  font-weight: 500;
}

.navpills {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem .75rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.navpills span {
  padding: .375rem .75rem;
  border-radius: .375rem;
  background: var(--muted);
  color: var(--primary);
}
.navpills span.is-on {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* Layout */
.wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem 6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  justify-content: center;
}
@media (min-width: 1024px) {
  .wrap { grid-template-columns: minmax(0, 768px) 340px; }
}

.eyebrow {
  margin-top: 2.5rem;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--accent);
  font-weight: 700;
}

.headline {
  margin-top: .75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -.02em;
}

.deck {
  margin: 1.25rem 0 0;
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.35;
}

.byline {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  margin: 2rem 0;
}
.byline img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}
.byline-name { font-weight: 700; color: var(--primary); font-size: 1rem; }
.byline-role { color: var(--muted-foreground); }
.byline-meta { font-size: 12px; color: var(--muted-foreground); margin-top: .25rem; }

.toc {
  background: color-mix(in oklab, var(--muted) 60%, transparent);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 .375rem .375rem 0;
}
.toc-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--muted-foreground);
  margin-bottom: .75rem;
}
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.toc li { display: flex; gap: .75rem; color: var(--primary); }
.toc a { text-decoration: none; }
.toc a:hover { text-decoration: underline; }
.num {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 15%, transparent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}

.article { font-size: 19px; line-height: 2rem; color: var(--foreground); }
.article p { margin: 0; }
.article p + p,
.mt-5 { margin-top: 1.25rem; }
.drop-cap:first-letter {
  float: left;
  font-family: var(--adv-serif);
  color: var(--accent);
  padding: .4rem .6rem 0 0;
  font-size: 5rem;
  font-weight: 700;
  line-height: .9;
}

figure { margin: 2.5rem 0; }
figure img {
  width: 100%;
  height: auto;
  max-width: 56rem;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  border-radius: .5rem;
  box-shadow: 0 4px 12px rgb(15 23 42 / .12);
}
figure.ba img { aspect-ratio: auto; }
.ba-frame {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}
.ba-frame img {
  width: 100%;
  max-width: none;
  border-radius: .5rem;
}
.ba-tag {
  position: absolute;
  bottom: 14px;
  padding: .5em .9em;
  border-radius: 6px;
  background: #0a0a0a;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.1;
  pointer-events: none;
  box-shadow: 0 1px 4px rgb(0 0 0 / .35);
}
@media (min-width: 768px) {
  .ba-tag { font-size: 20px; bottom: 16px; }
}
.ba-tag-l { left: 25%; transform: translateX(-50%); }
.ba-tag-r { left: 75%; transform: translateX(-50%); }
figcaption {
  text-align: center;
  font-size: 14px;
  color: var(--muted-foreground);
  margin-top: .75rem;
}

blockquote {
  margin: 2.5rem 0;
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--primary);
}

.h2 {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 3.5rem 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  scroll-margin-top: 6rem;
}
.h2 .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 14px;
  font-family: var(--adv-sans);
}

.zones {
  margin-top: 1.25rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent);
  font-size: 17px;
  display: grid;
  gap: .5rem;
}
.zones b { color: var(--primary); }

.cards {
  display: grid;
  gap: .75rem;
  margin: 2rem 0;
  font-size: 15px;
}
@media (min-width: 640px) { .cards { grid-template-columns: 1fr 1fr; } }
.card {
  background: var(--muted);
  border-radius: .375rem;
  padding: 1rem;
  border: 1px solid var(--border);
}
.card-k { color: var(--accent); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }
.card-v { margin-top: .25rem; color: var(--primary); }

.table-wrap {
  margin: 2rem 0;
  border: 1px solid var(--border);
  border-radius: .5rem;
  overflow: hidden;
}
.table-head {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: .75rem 1.25rem;
  font-weight: 700;
  font-size: 14px;
}
@media (min-width: 768px) { .table-head { font-size: 16px; } }
.m-rows { display: block; }
@media (min-width: 768px) { .m-rows { display: none; } }
.m-row {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
}
.m-row:nth-child(even) { background: color-mix(in oklab, var(--muted) 50%, transparent); }
.m-row-top { display: flex; justify-content: space-between; gap: .75rem; align-items: baseline; }
.m-row-top span:first-child { font-weight: 700; color: var(--primary); font-size: 14px; }
.m-row-top span:last-child { color: var(--accent); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.m-row-sub { font-size: 12px; color: var(--muted-foreground); margin-top: .25rem; }

.d-table { display: none; width: 100%; border-collapse: collapse; font-size: 15px; }
@media (min-width: 768px) { .d-table { display: table; } }
.d-table td { padding: .75rem 1.25rem; }
.d-table tr:nth-child(even) { background: color-mix(in oklab, var(--muted) 50%, transparent); }
.d-table td:first-child { font-weight: 700; color: var(--primary); }
.d-table td:nth-child(2) { color: var(--accent); font-weight: 700; }
.d-table td:last-child { color: var(--muted-foreground); }

.offer {
  margin: 3.5rem 0;
  border: 1px solid var(--border);
  border-radius: .5rem;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 1px 2px rgb(15 23 42 / .06);
}
.offer-grid {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .offer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); padding: 2.5rem; }
}
.offer-grid img {
  width: 100%;
  height: auto;
  max-width: 28rem;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  align-self: start;
}
.offer-k {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent);
  font-weight: 700;
}
.offer h3 {
  font-size: 1.875rem;
  color: var(--primary);
  margin-top: .5rem;
  line-height: 1.15;
}
.offer ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  color: var(--primary);
  display: grid;
  gap: .5rem;
}
.save-label {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--primary);
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  line-height: 1;
}
.save-num {
  text-align: center;
  font-size: clamp(3.75rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-top: .5rem;
}
.save-note {
  text-align: center;
  font-size: 12px;
  color: color-mix(in oklab, var(--accent) 80%, transparent);
  font-style: italic;
  margin-top: .5rem;
}
.cta-wrap { text-align: center; margin-top: 1.25rem; }
.cta {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-foreground);
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-radius: .375rem;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.25;
  white-space: normal;
  max-width: 100%;
  box-sizing: border-box;
  animation: 2.2s ease-in-out infinite ctaPulse;
}
@media (min-width: 768px) { .cta { font-size: 16px; padding: 1rem 1.5rem; } }
.cta:hover { opacity: .9; }
.stock {
  font-size: 12px;
  color: var(--danger);
  font-weight: 700;
  margin-top: .75rem;
  text-align: center;
}
.trust {
  font-size: 12px;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: .5rem;
}

@keyframes ctaPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .85; transform: scale(1.04); }
}

.ps {
  margin-top: 3.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  background: color-mix(in oklab, var(--muted) 60%, transparent);
  border-radius: 0 .375rem .375rem 0;
  font-size: 16px;
}
.ps-title { font-weight: 700; color: var(--primary); margin-bottom: .5rem; }

.rail { display: none; padding-top: 2.5rem; }
@media (min-width: 1024px) { .rail { display: block; } }
.rail-card {
  position: sticky;
  top: 7rem;
  border: 1px solid var(--border);
  border-radius: .5rem;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 1px 2px rgb(15 23 42 / .06);
  padding: 1.25rem;
}
.rail-k {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent);
  font-weight: 700;
  text-align: center;
}
.rail-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-top: .5rem;
  line-height: 1.15;
  text-align: center;
}
.rail-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 1rem auto;
  display: block;
}
.rail-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--primary);
  line-height: 1.35;
  display: grid;
  gap: .35rem;
}
.cta-sm {
  display: block;
  margin-top: 1.25rem;
  background: var(--accent);
  color: var(--accent-foreground);
  font-weight: 700;
  padding: .5rem .75rem;
  border-radius: .375rem;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  white-space: nowrap;
}
.cta-sm:hover { opacity: .9; }

.site-foot {
  margin-top: 5rem;
  border-top: 2px solid var(--primary);
  background: var(--background);
}
.foot-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-size: 12px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .foot-grid { grid-template-columns: 1fr auto; }
  .foot-right { text-align: right; min-width: 280px; }
}
.foot-brand {
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .5rem;
  margin-bottom: .75rem;
}
.foot-links a { text-decoration: none; }
.foot-links a:hover { text-decoration: underline; }
.sep { color: var(--muted-foreground); }
.legal { font-size: 11px; line-height: 1.6; color: rgb(18 18 23 / .9); }
.legal p { margin: 0 0 .25rem; }
.disc {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--muted-foreground);
}

@media (max-width: 390px) {
  .cta { white-space: normal; padding: .9rem 1.1rem; }
}
