:root {
  --bg: #f4f7fb;
  --bg-soft: #f9fbff;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --line: #d9e2ee;
  --text: #121826;
  --muted: #4f627a;
  --ink: #121826;
  --accent: #2f63ff;
  --accent-soft: #edf3ff;
  --accent-2: #12b7a1;
  --accent-2-soft: #dff6f1;
  --max: 1240px;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --shadow: 0 20px 50px rgba(13, 24, 45, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.6 Manrope, system-ui, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; height: auto; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 18px;
  padding: 10px 14px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
}
.skip-link:focus { top: 18px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.screen-reader-text:focus-within { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; white-space: normal; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(244,247,251, 0.94);
  backdrop-filter: blur(16px);
}
.site-header::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47,99,255,.25), transparent);
  opacity: .7;
}
.site-header__inner {
  width: min(calc(100% - 48px), var(--max));
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); font-size: 19px; line-height: 1; }
.brand strong { font-weight: 800; }
.brand em { color: var(--accent); font-style: normal; font-weight: 700; }
.brand__mark {
  width: 30px;
  height: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(47,99,255,.25);
  border-radius: 8px;
  transform: rotate(45deg);
}
.brand__mark i { display: block; height: 100%; background: var(--accent); }
.brand__mark i:nth-child(2) { height: 62%; background: var(--accent-2); }
.brand__mark i:nth-child(3) { height: 35%; }

.site-nav-shell { display: flex; min-width: 0; align-items: center; justify-content: flex-end; gap: 13px; }
.site-nav__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #637086;
  font: 500 9px/1 "DM Mono", monospace;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav__status i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 4px rgba(18,183,161,.12), 0 0 15px rgba(18,183,161,.4); }
.site-nav__status:hover, .site-nav__status:focus-visible { color: var(--text); outline: none; text-decoration: underline; text-underline-offset: 4px; }

.site-nav { min-width: 0; margin-left: 0; }
.site-nav ul, .site-nav__list {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #6c819a;
  font-size: 12px;
}
.site-nav li { margin: 0; flex: none; }
.site-nav a {
  position: relative;
  display: block;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #6c819a;
  line-height: 1;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav a:focus-visible {
  border-color: rgba(47,99,255,.22);
  background: rgba(47,99,255,.06);
  color: var(--text);
  outline: none;
}

.hero {
  position: relative;
  min-height: 680px;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: linear-gradient(180deg, #edf2fb 0%, #f4f7fb 40%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}
.hero__image,
.hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__image { z-index: -2; opacity: .18; object-position: center;
}
.hero__shade { z-index: -1; background: linear-gradient(180deg, rgba(244,247,251,0) 0%, rgba(244,247,251,.8) 54%, rgba(244,247,251,1) 88%); }
.hero__inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 110px 0 90px;
}
.eyebrow {
  margin: 0 0 16px;
  color: #3554cc;
  font: 500 11px/1.2 'DM Mono', monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 7vw, 90px);
  line-height: .96;
  letter-spacing: -0.055em;
  font-weight: 800;
}
.hero h1 span { color: var(--accent); }
.hero__copy { max-width: 610px; margin: 24px 0 30px; color: #3a4f6d; font-size: 18px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  transition: transform .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-1px); filter: brightness(1.02); }
.button--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 30px rgba(47,99,255,.25); }
.button--outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.button--text {
  border-bottom: 1px solid rgba(47,99,255,.6);
  color: var(--accent);
}
.button--secondary {
  background: var(--text);
  color: #fff;
}

/* Mapa vivo da página inicial */
.brain-map {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  height: clamp(680px, calc(100svh - 76px), 900px);
  overflow: hidden;
  border-bottom: 1px solid #27354d;
  background: radial-gradient(circle at 74% 46%, rgba(35, 102, 185, .2), transparent 25%), radial-gradient(circle at 22% 86%, rgba(18, 183, 161, .15), transparent 25%), #08111f;
  color: #f6f9ff;
}
.brain-map__canvas { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; }
.brain-map__glow { position: absolute; z-index: 1; inset: 0; pointer-events: none; background: radial-gradient(circle at 17% 78%, rgba(8,17,31,.78), transparent 27%), linear-gradient(180deg, rgba(8,17,31,.1), rgba(8,17,31,.32)); }
.brain-map__tooltip { position: absolute; z-index: 5; top: 0; left: 0; width: min(320px, calc(100% - 36px)); padding: 13px 15px 14px 17px; border: 1px solid color-mix(in srgb, var(--tooltip-node-color, #65e3c4) 55%, transparent); border-radius: 14px; background: rgba(6,16,30,.94); box-shadow: 0 18px 42px rgba(0,0,0,.35), inset 3px 0 0 var(--tooltip-node-color, #65e3c4); color: #fff; pointer-events: none; backdrop-filter: blur(16px); will-change: transform; }
.brain-map__tooltip[hidden] { display: none; }
.brain-map__tooltip small { display: block; margin-bottom: 5px; color: color-mix(in srgb, var(--tooltip-node-color, #65e3c4) 80%, #fff); font: 500 9px/1.2 'DM Mono', monospace; letter-spacing: .08em; text-transform: uppercase; }
.brain-map__tooltip strong { display: block; color: #f6f9ff; font-size: 15px; line-height: 1.28; letter-spacing: -.02em; overflow-wrap: anywhere; }
.brain-map__inner { position: relative; z-index: 2; width: min(calc(100% - 48px), var(--max)); height: 100%; min-height: inherit; margin: auto; pointer-events: none; }
.brain-map__copy, .brain-map__topics { pointer-events: auto; }
.brain-map__copy { position: absolute; left: 0; bottom: 34px; width: min(430px, 100%); padding: 20px 22px; border: 1px solid rgba(177,211,247,.2); border-radius: 18px; background: rgba(6,16,30,.75); box-shadow: 0 22px 52px rgba(0,0,0,.24); backdrop-filter: blur(15px); }
.brain-map .eyebrow { color: #81d4ff; }
.brain-map h1 { max-width: 390px; margin: 0; color: #fff; font-size: clamp(32px, 3vw, 46px); line-height: .96; letter-spacing: -.055em; }
.brain-map h1 span { color: #65e3c4; }
.brain-map__copy > p:not(.eyebrow) { max-width: 380px; margin: 13px 0 17px; color: #bdcbe0; font-size: 13px; line-height: 1.55; }
.brain-map__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.brain-map__actions .button { min-height: 40px; padding: 9px 14px; font-size: 11px; }
.brain-map .button--text { border-color: rgba(129, 212, 255, .65); color: #d9eaff; }
.brain-map__topics { align-self: center; padding: 18px; border: 1px solid rgba(177, 211, 247, .2); border-radius: 20px; background: rgba(9, 21, 39, .62); box-shadow: 0 22px 52px rgba(0,0,0,.2); backdrop-filter: blur(16px); }
.brain-map__topics > p { margin: 1px 4px 12px; color: #a9bfd9; font: 500 10px/1 "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.brain-map__topics > div { display: grid; gap: 4px; }
.brain-map__topics a { display: grid; grid-template-columns: 12px minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 10px 9px; border: 1px solid transparent; border-radius: 12px; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.brain-map__topics a:hover, .brain-map__topics a:focus-visible, .brain-map__topics a.is-active { border-color: rgba(129, 212, 255, .4); background: rgba(123, 182, 255, .12); outline: none; transform: translateX(3px); }
.brain-map__topic-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--node-color, #65e3c4); box-shadow: 0 0 0 4px color-mix(in srgb, var(--node-color, #65e3c4) 16%, transparent), 0 0 16px var(--node-color, #65e3c4); }
.brain-map__topics b, .brain-map__topics small { display: block; }
.brain-map__topics b { color: #f2f7ff; font-size: 13px; line-height: 1.2; }
.brain-map__topics small { margin-top: 3px; color: #94a9c4; font-size: 10px; line-height: 1.25; }
.brain-map__topics i { color: #81d4ff; font-size: 15px; font-style: normal; }
.brain-map--fallback .brain-map__canvas,
.brain-map--fallback .brain-map__glow { display: none; }
.brain-map--fallback .brain-map__topics {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 24px;
  width: min(340px, calc(100% - 48px));
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  transform: translateY(-50%);
}
.brain-map--fallback .brain-map__mobile-ui { display: none; }
.brain-map__topics a:nth-child(1) { --node-color: #5c8dff; }
.brain-map__topics a:nth-child(2) { --node-color: #2ac8af; }
.brain-map__topics a:nth-child(3) { --node-color: #ffb65b; }
.brain-map__topics a:nth-child(4) { --node-color: #b68cff; }
.brain-map__topics a:nth-child(5) { --node-color: #ff7777; }
.brain-map__mobile-ui { display: none; }
.brain-map__mobile-detail[hidden] { display: none; }

.topic-band {
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.topic-band__inner {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 16px 0;
}
.topic-card {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(12,25,45,.05);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 13px 8px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.topic-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
  content: '';
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .25s ease;
}
.topic-card::after {
  position: absolute;
  right: -58px;
  bottom: -62px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(47,99,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(47,99,255,.05), 0 0 34px rgba(47,99,255,.08);
  content: '';
}
.topic-card:hover,
.topic-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(47,99,255,.45);
  background: #ffffff;
  box-shadow: var(--shadow);
}
.topic-card:hover::before,
.topic-card:focus-within::before { transform: scaleX(1); }
.topic-card__index { color: var(--accent); font: 500 10px/1 'DM Mono', monospace; letter-spacing: .12em; }
.topic-card__label { position: relative; z-index: 1; align-self: start; color: var(--text); font-size: 14px; font-weight: 800; line-height: 1.1; }
.topic-card__description { position: relative; z-index: 1; grid-column: 1 / -1; align-self: end; max-width: 155px; color: #60748f; font-size: 11px; line-height: 1.35; }
.topic-card__arrow { position: relative; z-index: 1; color: var(--accent); font-size: 17px; transition: transform .25s ease; }
.topic-card:hover .topic-card__arrow, .topic-card:focus-within .topic-card__arrow { transform: translate(3px,-3px); }

.section-wrap { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.latest { padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; margin-bottom: 38px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2,
.principles h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.section-heading a { color: var(--accent); font-size: 13px; font-weight: 800; }

.editorial-carousel { position: relative; margin: 0 -18px; padding: 20px 18px 24px; border: 1px solid rgba(197,211,230,.72); border-radius: 32px; background: radial-gradient(circle at 10% 0%, rgba(47,99,255,.10), transparent 32%), linear-gradient(145deg, rgba(255,255,255,.94), rgba(238,244,252,.76)); box-shadow: 0 30px 80px rgba(31,53,86,.08); }
.editorial-carousel__topline { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 0 6px 20px; }
.editorial-carousel__hint { display: flex; align-items: center; gap: 9px; margin: 0; color: #6d7f98; font: 500 11px/1 'DM Mono', monospace; letter-spacing: .08em; text-transform: uppercase; }
.editorial-carousel__signal { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--accent-soft); }
.editorial-carousel__controls { display: flex; align-items: center; gap: 8px; padding: 5px; border: 1px solid rgba(205,216,232,.86); border-radius: 999px; background: rgba(255,255,255,.82); box-shadow: 0 10px 30px rgba(35,58,92,.08); backdrop-filter: blur(14px); }
.carousel-control { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 1px solid transparent; border-radius: 50%; background: #f3f6fb; color: var(--text); font-size: 17px; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.carousel-control:hover, .carousel-control:focus-visible { border-color: var(--accent); background: var(--accent); color: #fff; transform: translateY(-2px); }
.carousel-control:disabled { opacity: .35; cursor: default; transform: none; }
.carousel-counter { min-width: 58px; color: #60748f; font: 500 10px/1 'DM Mono', monospace; letter-spacing: .1em; text-align: center; }
.editorial-carousel__viewport { margin: 0 -7px; padding: 7px 7px 12px; overflow: hidden; outline: none; cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.editorial-carousel__viewport.is-dragging { cursor: grabbing; }
.editorial-carousel__viewport.is-dragging a { pointer-events: none; }
.editorial-carousel__viewport:focus-visible { box-shadow: 0 0 0 3px var(--accent-soft); }
.editorial-carousel__track { display: flex; align-items: flex-start; gap: 20px; transition: transform .55s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.post-card {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dbe3ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(27, 52, 88, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(27, 52, 88, .14); }
.post-card--lead { flex-basis: calc((100% - 18px) / 2); }
.editorial-carousel .post-card { border-color: rgba(204,216,232,.9); border-radius: 26px; box-shadow: 0 22px 52px rgba(24,48,82,.11); }
.editorial-carousel .post-card::before { position: absolute; z-index: 3; top: 0; right: 26px; left: 26px; height: 3px; border-radius: 0 0 999px 999px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); content: ''; opacity: .82; }
.editorial-carousel .post-card:hover { transform: translateY(-7px); box-shadow: 0 30px 68px rgba(24,48,82,.16); }
.post-card__link { min-height: 100%; display: flex; flex-direction: column; color: inherit; }
.post-card__link:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.post-card__index { position: absolute; z-index: 2; top: 14px; left: 15px; display: grid; place-items: center; width: 33px; height: 33px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: rgba(8, 26, 46, .68); color: #fff; font: 500 10px/1 'DM Mono', monospace; backdrop-filter: blur(8px); }
.post-card__media { position: relative; margin: 0; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-soft); }
.editorial-carousel .post-card:not(.post-card--lead) .post-card__media { aspect-ratio: 4 / 3; }
.editorial-carousel .post-card__media::after { position: absolute; inset: 45% 0 0; background: linear-gradient(180deg, transparent, rgba(6,18,35,.42)); content: ''; pointer-events: none; }
.post-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.post-card:hover .post-card__media img { transform: scale(1.045); }
.post-card__media-label { position: absolute; right: 13px; bottom: 12px; padding: 7px 9px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; background: rgba(8, 26, 46, .66); color: #fff; font: 500 9px/1 'DM Mono', monospace; letter-spacing: .07em; text-transform: uppercase; backdrop-filter: blur(8px); }
.post-card__body { display: flex; flex: 1; flex-direction: column; padding: 22px 23px 24px; }
.editorial-carousel .post-card__body { background: linear-gradient(180deg, #fff, #fbfcff); }
.editorial-carousel .post-card--lead .post-card__body { padding: 28px 30px 30px; }
.post-card__meta,
.article__date { color: #2a4e90; font: 400 10px 'DM Mono', monospace; letter-spacing: .07em; text-transform: uppercase; }
.post-card h2,
.post-card h3 { margin: 10px 0 11px; color: var(--text); font-size: 23px; line-height: 1.09; letter-spacing: -0.04em; }
.post-card--lead h3 { font-size: clamp(27px, 3vw, 40px); }
.post-card p { margin: 0; color: #556887; font-size: 13px; line-height: 1.5; }
.post-card__read { margin-top: auto; padding-top: 23px; color: var(--accent); font-size: 12px; font-weight: 800; }
.editorial-carousel .post-card__read { width: max-content; margin-top: 22px; padding: 9px 13px; border-radius: 999px; background: var(--accent-soft); transition: background .2s ease, color .2s ease; }
.editorial-carousel .post-card:hover .post-card__read { background: var(--accent); color: #fff; }
.editorial-carousel__progress { height: 5px; margin: 18px 7px 0; overflow: hidden; border-radius: 999px; background: rgba(207,218,233,.76); }
.editorial-carousel__progress span { display: block; width: 20%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--accent), #12b7a1); transition: transform .55s cubic-bezier(.22,.61,.36,1); transform-origin: left center; }
.post-card {
  background: #fff;
  min-width: 0;
}
.empty-state { padding: 70px; border: 1px solid var(--line); background: var(--surface); }
.empty-state h3, .empty-state h2 { font-size: 35px; line-height: 1.1; letter-spacing: -.04em; color: var(--text); }

.principles { padding: 110px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 10%; }
.principles__lead { font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -0.055em; }
.principles__lead h2 { margin: 0; }
.principles__copy { max-width: 480px; padding-top: 35px; }
.principles__copy p { margin: 0 0 30px; font-size: 22px; line-height: 1.35; letter-spacing: -.025em; color: #2a3950; }

.site-footer { border-top: 1px solid var(--line); background: #f0f3f8; color: #334866; }
.site-footer__inner,
.site-footer__base { width: min(calc(100% - 48px), var(--max)); margin: auto; }
.site-footer__inner { padding: 58px 0; display: flex; justify-content: space-between; gap: 36px; }
.brand--footer { font-size: 20px; }
.site-footer p { max-width: 320px; color: #596a80; font-size: 13px; }
.site-footer__links { display: flex; gap: 18px; align-items: flex-start; flex-wrap: wrap; color: #5f728a; font-size: 13px; }
.site-footer__links a:hover { color: var(--accent); }
.site-footer__base { border-top: 1px solid var(--line); padding: 18px 0; display: flex; justify-content: space-between; gap: 18px; color: #7d8ea0; font-size: 10px; }
.site-footer__base a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

.archive-page { padding: 110px 0; }
.archive-heading { max-width: 800px; margin-bottom: 55px; }
.archive-heading h1,
.article h1 { margin: 0; font-size: clamp(46px, 6vw, 82px); line-height: .99; letter-spacing: -0.065em; }
.archive-description { color: #556887; max-width: 600px; }
.post-grid--archive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 2vw, 26px);
  align-items: stretch;
}
.post-grid--archive .post-card { min-height: 0; }
.post-grid--archive .post-card__media { aspect-ratio: 16 / 10; }
.post-grid--archive .post-card__body { min-height: 0; padding: clamp(18px, 2vw, 26px); }
.article-wrap { width: min(calc(100% - 48px), 920px); margin: auto; padding: 100px 0; }
.article__header { max-width: 840px; margin: 0 auto 40px; }
.article__header h1 { margin-bottom: 20px; }
.article__featured { margin-top: 42px; aspect-ratio: 16 / 9; overflow: hidden; background: #e9edf6; border-radius: 14px; }
.article__featured img { width: 100%; height: 100%; object-fit: cover; }
.article__content { max-width: 720px; margin: auto; color: #2a3f5f; font-size: 18px; }
.article__content h2,
.article__content h3 { margin: 54px 0 15px; color: var(--text); font-size: clamp(27px, 4vw, 42px); line-height: 1.08; letter-spacing: -.04em; }
.article__content p,
.article__content li { color: #344766; }
.article__content a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.article__content figure { margin: 42px 0; }
.article__content figcaption { color: #5e738f; font-size: 12px; }
.article__content blockquote { margin: 38px 0; padding: 20px 0 20px 25px; border-left: 2px solid var(--accent); color: var(--text); font-size: 24px; line-height: 1.35; }
.article-wrap--contact { width: min(calc(100% - 48px), 1120px); }
.article-wrap--contact .article__content { max-width: none; }
.article-wrap--contact .article__content > h2,
.article-wrap--contact .article__content > p { max-width: 720px; margin-right: auto; margin-left: auto; }

/* Estilos editoriais (hype) */
.editorial-byline {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(47,99,255,.18);
  border-radius: 14px;
  background: var(--accent-soft);
  max-width: 560px;
}
.editorial-byline__mark { display: grid; place-items: center; flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff; font: 700 11px/1 'DM Mono', monospace; }
.editorial-byline p { margin: 0; }
.editorial-byline__label { color: var(--text); font-size: 13px; font-weight: 800; }
.editorial-byline__text { margin-top: 3px!important; color: #4e6180; font-size: 12px; line-height: 1.45; }

.radar-panel { max-width: 720px; margin: 32px auto 0; padding: 34px; border: 1px solid rgba(18,183,161,.3); background: linear-gradient(135deg, rgba(18,183,161,.1), rgba(255,255,255,.02)); position: relative; overflow: hidden; border-radius: 16px; }
.radar-panel:after { position: absolute; right: -50px; bottom: -55px; width: 170px; height: 170px; border: 1px solid rgba(18,183,161,.2); border-radius: 50%; content: ''; }
.radar-panel h2 { position: relative; margin: 8px 0 12px; color: var(--text); font-size: clamp(29px,4vw,43px); line-height: 1.04; letter-spacing:-.045em; }
.radar-panel p:not(.eyebrow) { position: relative; max-width: 560px; margin: 0 0 24px; color: #334866; line-height:1.65; }
.lead-form-wrap { position: relative; z-index: 2; width: min(100%, 720px); margin: 34px auto 0; }
.radar-panel .lead-form-wrap { margin-top: 24px; }
.lead-form { padding: clamp(20px, 4vw, 30px); border: 1px solid #d6e2ee; border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: 0 18px 38px rgba(23,57,96,.08); }
.radar-panel .lead-form { border-color: rgba(18,183,161,.25); box-shadow: none; }
.lead-form__website { position: absolute!important; width: 1px!important; height: 1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; }
.lead-form .lead-form__intro { max-width: none; margin: 0 0 18px; color: #405675; font-size: 13px; line-height: 1.55; }
.lead-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.lead-form__grid label { display: grid; gap: 7px; min-width: 0; color: #213854; font-size: 12px; font-weight: 800; }
.lead-form__grid small { color: #71839a; font-size: 10px; font-weight: 500; }
.lead-form__grid input { width: 100%; min-width: 0; min-height: 46px; padding: 11px 13px; border: 1px solid #cbd8e7; border-radius: 10px; background: #fff; color: var(--text); font: 500 14px/1.3 Manrope, sans-serif; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.lead-form__grid input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.lead-form__grid input::placeholder { color: #8b9aac; font-weight: 400; }
.lead-form__consent { display: grid; grid-template-columns: 20px minmax(0,1fr); gap: 10px; align-items: start; margin-top: 18px; color: #3e526e; font-size: 11px; line-height: 1.55; cursor: pointer; }
.lead-form__consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--accent); }
.lead-form__consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.lead-form .lead-form__privacy { max-width: none; margin: 12px 0 17px; color: #667991; font-size: 10px; line-height: 1.5; }
.lead-form__submit { width: 100%; border: 0; cursor: pointer; }
.lead-form__notice { margin: 0 0 13px; padding: 12px 14px; border-radius: 9px; font-size: 12px; line-height: 1.45; }
.lead-form__notice--success { border: 1px solid #95d8ca; background: #e4f8f3; color: #176b5e; }
.lead-form__notice--error { border: 1px solid #efb4b4; background: #fff0f0; color: #8a2a2a; }

.feedback-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 62px);
  margin: 58px 0 72px;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(91, 128, 177, .42);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(47, 99, 255, .28), transparent 36%),
    radial-gradient(circle at 90% 100%, rgba(18, 183, 161, .18), transparent 34%),
    linear-gradient(145deg, #0b182b, #101f36 60%, #0c192b);
  box-shadow: 0 34px 76px rgba(13, 32, 58, .18);
}
.feedback-panel::before {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(85, 227, 200, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(85, 227, 200, .035), 0 0 0 70px rgba(47, 99, 255, .025);
  content: '';
  pointer-events: none;
}
.feedback-panel__intro { position: relative; z-index: 1; align-self: center; }
.feedback-panel__intro .eyebrow { color: #67e5ce; }
.feedback-panel__intro h2 {
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -.052em;
}
.feedback-panel__intro > p:not(.eyebrow) { margin: 0; color: #bac9dc; font-size: 14px; line-height: 1.7; }
.feedback-panel__intro ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 25px 0 0; padding: 0; list-style: none; }
.feedback-panel__intro li { padding: 8px 10px; border: 1px solid rgba(118, 157, 208, .25); border-radius: 999px; background: rgba(255,255,255,.055); color: #dce8f7; font: 500 9px/1 'DM Mono', monospace; letter-spacing: .04em; }
.feedback-panel__form-wrap { position: relative; z-index: 1; min-width: 0; }
.feedback-form {
  padding: clamp(22px, 3.4vw, 34px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 21px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 54px rgba(0,0,0,.20);
}
.feedback-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 15px; }
.feedback-form__grid label { display: grid; gap: 7px; min-width: 0; color: #203652; font-size: 12px; font-weight: 800; }
.feedback-form__grid small { color: #73849a; font-size: 10px; font-weight: 500; }
.feedback-form__grid input,
.feedback-form__grid select,
.feedback-form__grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cbd8e7;
  border-radius: 11px;
  background: #fff;
  color: var(--text);
  font: 500 14px/1.4 Manrope, sans-serif;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.feedback-form__grid input,
.feedback-form__grid select { min-height: 48px; padding: 11px 13px; }
.feedback-form__grid textarea { min-height: 150px; padding: 13px; resize: vertical; }
.feedback-form__grid input:focus,
.feedback-form__grid select:focus,
.feedback-form__grid textarea:focus { border-color: var(--accent); background: #fbfdff; box-shadow: 0 0 0 3px var(--accent-soft); }
.feedback-form__grid input::placeholder,
.feedback-form__grid textarea::placeholder { color: #8b9aac; font-weight: 400; }
.feedback-form__wide { grid-column: 1 / -1; }
.feedback-form .lead-form__consent { margin-top: 18px; }
.feedback-form .lead-form__privacy { margin: 12px 0 18px; }
.feedback-form__submit { width: 100%; border: 0; cursor: pointer; }

@media (max-width: 1080px) {
  .site-nav__status { display: none; }
}
@media (max-width: 820px) {
  .site-header__inner { width: min(calc(100% - 32px), var(--max)); min-height: 64px; }
  .site-nav-shell { flex: 1 1 auto; overflow: hidden; }
  .site-nav { width: 100%; overflow-x: auto; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { padding: 9px 11px; border-radius: 999px; }
  .site-nav ul, .site-nav__list { display: flex; gap: 7px; width: max-content; padding-bottom: 4px; }
  .hero { min-height: 580px; }
  .hero__inner,
  .section-wrap,
  .topic-band__inner,
  .site-footer__inner,
  .site-footer__base,
  .article-wrap { width: min(calc(100% - 32px), var(--max)); }
  .hero__inner { padding: 80px 0 64px; }
  .topic-band__inner { grid-template-columns: repeat(2,1fr); }
  .topic-card:nth-child(odd) { }
  .topic-card:nth-child(even) { }
  .topic-card:last-child { grid-column: 1 / -1; }
  .topic-band { padding-bottom: 16px; }
  .principles { grid-template-columns: 1fr; gap: 10px; padding: 80px 0; }
  .principles__copy { padding-top: 0; }
  .site-footer__inner, .site-footer__base { flex-direction: column; }
  .article-wrap { padding: 70px 0; }
  .article__content { font-size: 17px; }
  .feedback-panel { grid-template-columns: 1fr; }
  .feedback-panel__intro { max-width: 620px; }
  .post-card { flex-basis: calc((100% - 18px) / 2); }
  .post-card--lead { flex-basis: calc((100% - 18px) / 2); }
  .brain-map { min-height: 720px; height: calc(100svh - 64px); }
  .brain-map__inner { width: min(calc(100% - 32px), var(--max)); min-height: inherit; }
  .brain-map__copy { bottom: 24px; }
  .brain-map__glow { background: linear-gradient(180deg, rgba(8,17,31,.08), rgba(8,17,31,.18) 54%, rgba(8,17,31,.82)); }
}

@media (max-width: 480px) {
  .brand { font-size: 16px; }
  .brand__mark { width: 24px; height: 24px; }
  .site-header__inner { gap: 12px; }
  .hero { min-height: 560px; }
  .hero__inner { padding: 56px 0 45px; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero__copy { font-size: 16px; }
  .button { width: 100%; }
  .topic-band__inner { grid-template-columns: 1fr; }
  .topic-card { min-height: 116px; }
  .topic-card, .topic-card__description { max-width: none; }
  .latest { padding: 70px 0; }
  .section-heading { gap: 16px; }
  .section-heading h2 { font-size: 40px; }
  .editorial-carousel__topline { align-items: flex-start; flex-direction: column; gap: 18px; }
  .editorial-carousel { margin: 0 -8px; padding: 16px 8px 20px; border-radius: 24px; }
  .editorial-carousel__topline { margin: 0 5px 16px; }
  .editorial-carousel__controls { align-self: flex-end; }
  .post-card, .post-card--lead { flex-basis: 88%; }
  .editorial-carousel .post-card { border-radius: 22px; }
  .post-card__body { padding: 20px 20px 22px; }
  .post-card h2, .post-card h3, .post-card--lead h3 { font-size: 25px; }
  .empty-state { padding: 35px 24px; }
  .principles { padding: 70px 0; }
  .principles__copy p { font-size: 19px; }
  .site-footer__inner { padding: 45px 0; }
  .article__content blockquote { font-size: 21px; }
  .article__featured { margin-top: 30px; }
  .radar-panel { padding: 24px 18px; }
  .lead-form { padding: 19px 15px; }
  .lead-form__grid { grid-template-columns: 1fr; }
  .lead-form__grid input { font-size: 16px; }
  .feedback-panel { margin: 45px 0 58px; padding: 24px 18px; border-radius: 22px; }
  .feedback-panel__intro h2 { font-size: 38px; }
  .feedback-form { padding: 20px 16px; border-radius: 17px; }
  .feedback-form__grid { grid-template-columns: 1fr; }
  .feedback-form__wide { grid-column: auto; }
  .feedback-form__grid input,
  .feedback-form__grid select,
  .feedback-form__grid textarea { font-size: 16px; }
  .archive-page { padding: 68px 0; }
  .archive-heading { margin-bottom: 34px; }
  .brain-map { min-height: 690px; }
  .brain-map__copy { bottom: 16px; padding: 16px; border-radius: 15px; }
  .brain-map h1 { font-size: 31px; }
  .brain-map__copy > p:not(.eyebrow) { margin: 11px 0 14px; font-size: 12px; }
  .brain-map__actions .button { width: auto; }
  .brain-map__topics { padding: 13px; border-radius: 16px; }
  .brain-map__topics small { display: none; }
}

@media (max-width: 600px) {
	.brain-map__tooltip { display: none !important; }
  .brain-map--fallback .brain-map__topics { top: 22px; right: 16px; left: 16px; width: auto; transform: none; }
  .site-header__inner {
    flex-wrap: wrap;
    gap: 6px 12px;
    min-height: auto;
    padding: 9px 0 7px;
  }
  .brand { flex: 0 0 auto; }
  .site-nav-shell {
    order: 2;
    flex: 1 0 100%;
    width: 100%;
  }
  .site-nav { max-width: 100%; }
  .site-nav a { padding: 8px 10px; }
  .article-wrap {
    width: calc(100% - 32px);
    overflow: hidden;
  }
  .article__header,
  .article__content,
  .editorial-byline { min-width: 0; max-width: 100%; }
  .article__header h1 {
    font-size: clamp(38px, 11vw, 54px);
    overflow-wrap: anywhere;
  }
  .editorial-byline__text { overflow-wrap: anywhere; }
  .brain-map { height: clamp(580px, calc(100svh - 102px), 760px); min-height: 580px; }
  .brain-map__canvas { touch-action: none; overscroll-behavior: contain; user-select: none; -webkit-user-select: none; }
  .brain-map__inner { width: 100%; }
  .brain-map__mobile-ui { position: absolute; z-index: 3; right: 16px; bottom: 16px; left: 16px; display: grid; gap: 10px; pointer-events: none; }
  .brain-map__touch-hint { justify-self: start; margin: 0; padding: 8px 11px; border: 1px solid rgba(177,211,247,.22); border-radius: 999px; background: rgba(6,16,30,.76); color: #c7d9ee; font: 500 10px/1.35 'DM Mono', monospace; backdrop-filter: blur(12px); }
  .brain-map__mobile-detail { display: grid; grid-template-columns: 12px minmax(0,1fr); gap: 10px 12px; align-items: start; padding: 15px; border: 1px solid rgba(177,211,247,.28); border-radius: 16px; background: rgba(6,16,30,.9); box-shadow: 0 18px 42px rgba(0,0,0,.3); color: #fff; pointer-events: auto; backdrop-filter: blur(16px); }
  .brain-map__mobile-dot { width: 10px; height: 10px; margin-top: 5px; border-radius: 50%; background: var(--mobile-node-color, #65e3c4); box-shadow: 0 0 0 5px color-mix(in srgb, var(--mobile-node-color, #65e3c4) 18%, transparent), 0 0 16px var(--mobile-node-color, #65e3c4); }
  .brain-map__mobile-detail > div { min-width: 0; }
  .brain-map__mobile-detail small { display: block; margin-bottom: 4px; color: #96b0cf; font: 500 9px/1.2 'DM Mono', monospace; letter-spacing: .08em; text-transform: uppercase; }
  .brain-map__mobile-detail strong { display: block; color: #fff; font-size: 20px; line-height: 1.05; letter-spacing: -.035em; overflow-wrap: anywhere; }
  .brain-map__mobile-detail p { margin: 6px 0 0; color: #b9cbe0; font-size: 11px; line-height: 1.4; }
  .brain-map__mobile-detail > a { grid-column: 1 / -1; display: flex; min-height: 42px; align-items: center; justify-content: center; border-radius: 999px; background: #fff; color: #0a1a2f; font-size: 12px; font-weight: 800; }
  .brain-map__mobile-skip { justify-self: end; padding: 8px 11px; border-radius: 999px; background: rgba(6,16,30,.76); color: #d5e5f7; font-size: 10px; font-weight: 800; pointer-events: auto; backdrop-filter: blur(12px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .has-motion * { transition: none !important; animation: none !important; }
}

/* Skills de IA */
.skills-hub { overflow: hidden; }
.skills-hub__wrap { width: min(calc(100% - 48px), var(--max)); margin: auto; }
.skills-hero { padding: 104px 0 86px; background: radial-gradient(circle at 86% 18%, rgba(18,183,161,.18), transparent 23%), radial-gradient(circle at 12% 96%, rgba(47,99,255,.16), transparent 26%), #f6f9ff; border-bottom: 1px solid var(--line); }
.skills-hero__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(285px, .55fr); gap: 64px; align-items: end; }
.skills-hero h1 { max-width: 790px; margin: 0; color: var(--text); font-size: clamp(48px, 7vw, 88px); line-height: .94; letter-spacing: -.07em; }
.skills-hero h1 span { color: var(--accent); }
.skills-hero p { max-width: 610px; margin: 24px 0 0; color: #405675; font-size: 18px; }
.skills-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.skills-hero__note { padding: 26px; border: 1px solid rgba(47,99,255,.25); border-radius: 18px; background: rgba(255,255,255,.75); box-shadow: 0 22px 42px rgba(24,59,105,.09); }
.skills-hero__note span, .platform-card__number, .review-steps > li > span { color: var(--accent); font: 500 11px/1 "DM Mono", monospace; letter-spacing: .11em; }
.skills-hero__note strong { display: block; margin-top: 22px; color: var(--text); font-size: 21px; letter-spacing: -.035em; }
.skills-hero__note p { margin-top: 9px; font-size: 13px; line-height: 1.55; }
.skills-section { padding: 104px 0; }
.skills-section__heading { max-width: 770px; margin-bottom: 40px; }
.skills-section__heading h2 { margin: 0; color: var(--text); font-size: clamp(36px, 5vw, 64px); line-height: .98; letter-spacing: -.06em; }
.skills-section__heading > p:not(.eyebrow) { max-width: 650px; margin: 18px 0 0; color: #536984; font-size: 16px; }
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.platform-card { display: flex; flex-direction: column; min-height: 458px; padding: 27px; border: 1px solid #d7e2f0; border-radius: 20px; background: #fff; box-shadow: 0 18px 38px rgba(15,35,67,.06); }
.platform-card--claude { border-top: 3px solid #d97757; }
.platform-card--codex { border-top: 3px solid var(--accent); }
.platform-card--gemini { border-top: 3px solid var(--accent-2); }
.platform-card__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.trust-label, .download-card__kind { padding: 6px 8px; border-radius: 99px; background: #eff4fb; color: #586d87; font: 500 9px/1 "DM Mono", monospace; letter-spacing: .07em; }
.platform-card h3, .download-card h3, .review-steps h3 { margin: 43px 0 11px; color: var(--text); font-size: 30px; line-height: 1; letter-spacing: -.05em; }
.platform-card p { margin: 0; color: #536984; font-size: 13px; }
.platform-card code { padding: 1px 4px; border-radius: 4px; background: #edf3fb; color: #244a9b; font-size: .9em; }
.platform-card ul { margin: 25px 0 28px; padding: 0; list-style: none; color: #344d70; font-size: 12px; line-height: 1.45; }
.platform-card li { position: relative; padding: 7px 0 7px 17px; border-top: 1px solid #edf1f6; }
.platform-card li::before { position: absolute; top: 13px; left: 1px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); content: ''; }
.platform-card a { display: inline-flex; gap: 8px; margin-top: auto; color: var(--accent); font-size: 12px; font-weight: 800; }
.skills-section--downloads { background: #14213c; color: #fff; }
.skills-section__heading--light h2, .skills-section__heading--light > p:not(.eyebrow) { color: #fff; }
.skills-section__heading--light > p:not(.eyebrow) { color: #bac8dc; }
.skills-section--downloads .eyebrow { color: #7ec2ff; }
.download-list { border-top: 1px solid rgba(255,255,255,.18); }
.download-card { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.download-card__kind { display: inline-block; background: rgba(126,194,255,.13); color: #b3d9ff; }
.download-card h3 { margin: 12px 0 7px; color: #fff; font-size: 27px; }
.download-card p { max-width: 660px; margin: 0; color: #bdcce0; font-size: 13px; }
.download-card > a { display: inline-flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: #fff; font-size: 12px; font-weight: 800; white-space: nowrap; }
.download-card > a:hover { border-color: #fff; background: #fff; color: #14213c; }
.skills-catalog-groups { display: grid; gap: 42px; }
.skills-catalog-group { display: grid; grid-template-columns: minmax(180px, .45fr) minmax(0, 1.55fr); gap: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
.skills-catalog-group header .eyebrow { margin: 0 0 12px; color: #7ec2ff; }
.skills-catalog-group header > p:not(.eyebrow) { margin: 0; color: #b5c7dd; font-size: 12px; line-height: 1.58; }
.skills-catalog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.skill-catalog-card { position: relative; min-height: 188px; padding: 19px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(255,255,255,.045); color: #fff; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.skill-catalog-card:hover { transform: translateY(-3px); border-color: rgba(126,194,255,.8); background: rgba(126,194,255,.11); }
.skill-catalog-card__number { display: block; margin-bottom: 14px; color: #6eaefb; font: 500 10px/1 "DM Mono", monospace; letter-spacing: .09em; }
.skill-catalog-card .download-card__kind { position: absolute; top: 17px; right: 17px; max-width: 55%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.skill-catalog-card strong { display: block; max-width: 80%; margin-bottom: 8px; color: #fff; font-size: 20px; line-height: 1.02; letter-spacing: -.045em; }
.skill-catalog-card p { margin: 0; color: #b8c8dc; font-size: 12px; line-height: 1.48; }
.skill-catalog-card i { position: absolute; right: 18px; bottom: 15px; color: #7ec2ff; font-size: 18px; font-style: normal; }
.review-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.review-steps > li { min-height: 220px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.review-steps h3 { margin: 28px 0 8px; font-size: 21px; }
.review-steps p { margin: 0; color: #566b86; font-size: 12px; line-height: 1.55; }
.skills-callout { margin-top: 27px; padding: 20px 22px; border-left: 3px solid var(--accent-2); border-radius: 8px; background: #e9f8f4; color: #31576a; font-size: 15px; }
.skills-callout strong { color: #183b51; }
.skills-section--guides { border-top: 1px solid var(--line); background: #fff; }
.guide-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.guide-links a { position: relative; min-height: 160px; padding: 23px 54px 23px 23px; border: 1px solid #dce5f0; border-radius: 16px; background: #f9fbff; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.guide-links a:hover { transform: translateY(-3px); border-color: rgba(47,99,255,.5); box-shadow: 0 14px 30px rgba(22,48,92,.09); }
.guide-links span { display: block; margin-bottom: 19px; color: #54729f; font: 500 10px/1 "DM Mono", monospace; letter-spacing: .09em; }
.guide-links strong { color: var(--text); font-size: 18px; line-height: 1.15; letter-spacing: -.03em; }
.guide-links i { position: absolute; right: 22px; bottom: 20px; color: var(--accent); font-size: 20px; font-style: normal; }
@media (max-width: 820px) { .skills-hub__wrap { width: min(calc(100% - 32px), var(--max)); } .skills-hero { padding: 78px 0 65px; } .skills-hero__grid { grid-template-columns: 1fr; gap: 32px; } .platform-grid { grid-template-columns: 1fr; } .platform-card { min-height: auto; } .review-steps { grid-template-columns: repeat(2, 1fr); } .skills-catalog-group { grid-template-columns: 1fr; gap: 18px; } }
@media (max-width: 480px) { .skills-hero h1 { font-size: 50px; } .skills-hero__actions .button { width: auto; } .skills-section { padding: 68px 0; } .download-card { grid-template-columns: 1fr; gap: 18px; } .download-card > a { justify-self: start; } .review-steps, .guide-links, .skills-catalog-grid { grid-template-columns: 1fr; } .review-steps > li { min-height: 0; } }

/* Detalhe da skill */
.skill-detail { padding: 64px 0 104px; background: linear-gradient(180deg, #f7faff 0, #f4f7fb 400px, #fff 100%); }
.skill-detail__wrap { width: min(calc(100% - 48px), 1080px); margin: auto; }
.skill-crumbs { display: flex; gap: 9px; color: #68809b; font: 500 11px/1 "DM Mono", monospace; letter-spacing: .06em; text-transform: uppercase; }
.skill-crumbs a { color: var(--accent); }
.skill-detail__hero { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 48px; align-items: end; padding: 72px 0 58px; border-bottom: 1px solid var(--line); }
.skill-detail__hero h1 { max-width: 680px; margin: 0; color: var(--text); font-size: clamp(50px, 7vw, 84px); line-height: .94; letter-spacing: -.065em; }
.skill-detail__hero > div > p:not(.eyebrow) { max-width: 650px; margin: 22px 0 0; color: #4e6684; font-size: 18px; }
.skill-download-box { padding: 30px; border: 1px solid rgba(47,99,255,.28); border-radius: 22px; background: linear-gradient(145deg, #fff 0%, #f7faff 100%); box-shadow: 0 20px 46px rgba(20,48,91,.10); }
.skill-download-box > span, .skill-summary-grid span, .install-grid > article > span { color: #456b9b; font: 500 10px/1 "DM Mono", monospace; letter-spacing: .09em; }
.skill-download-box strong { display: block; margin: 18px 0 10px; color: var(--text); font-size: 20px; line-height: 1.18; letter-spacing: -.035em; }
.skill-download-box p { margin: 0 0 20px; color: #3970bc; font-size: 11px; line-height: 1.58; }
.skill-download-box__hash { margin: 16px 0 0!important; color: #4d76ad!important; font: 500 8px/1.5 "DM Mono", monospace!important; letter-spacing: .035em; word-break: break-all; }
.skill-download-box__hash code { background: transparent; color: inherit; padding: 0; }
.skill-download-box .button { width: 100%; min-height: 48px; }
.skill-download-box__source { display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 42px; margin-top: 10px; padding: 0 16px; border: 1px solid #b8cdf8; border-radius: 999px; background: #f2f6ff; color: #2457bc; font-size: 11px; font-weight: 800; letter-spacing: -.01em; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.skill-download-box__source:hover { border-color: #5d89e9; background: #e8f0ff; color: #153f95; transform: translateY(-1px); }
.skill-detail__section { padding: 68px 0; border-bottom: 1px solid var(--line); }
.skill-source-proof { display: grid; grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr); gap: 34px; align-items: center; }
.skill-source-proof h2 { margin: 9px 0 13px; color: var(--text); font-size: clamp(26px, 3.2vw, 42px); line-height: .98; letter-spacing: -.055em; }
.skill-source-proof p { max-width: 460px; color: #536984; line-height: 1.62; }
.skill-source-proof figure { margin: 0; overflow: hidden; border: 1px solid #dbe5f2; border-radius: 14px; background: #fff; }
.skill-source-proof img { display: block; width: 100%; height: auto; }
.skill-source-proof figcaption { padding: 11px 14px; color: #627590; font-size: 11px; line-height: 1.4; }
.skill-summary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.skill-summary-grid article { padding: 25px; border: 1px solid #dbe5f1; border-radius: 16px; background: #fff; }
.skill-summary-grid strong { display: block; max-width: 430px; margin-top: 14px; color: var(--text); font-size: 20px; line-height: 1.2; letter-spacing: -.035em; }
.skill-detail__section h2 { margin: 0; color: var(--text); font-size: clamp(34px,5vw,60px); line-height: .98; letter-spacing: -.06em; }
.skill-check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 33px; }
.skill-check-grid div { display: flex; align-items: center; gap: 11px; min-height: 62px; padding: 14px 16px; border: 1px solid #dce6f1; border-radius: 12px; background: #fff; color: #354f70; font-size: 13px; }
.skill-check-grid i { display: grid; place-items: center; flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: #dff6f1; color: #148a7b; font-size: 12px; font-style: normal; font-weight: 800; }
.skill-detail__lead { max-width: 720px; margin: 20px 0 0; color: #526984; font-size: 16px; line-height: 1.65; }
.skill-detail-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 34px; }
.skill-detail-facts article { position: relative; min-height: 190px; padding: 26px; overflow: hidden; border: 1px solid #d9e4f1; border-radius: 18px; background: linear-gradient(145deg, #fff 0%, #f6f9fd 100%); }
.skill-detail-facts article::after { content: ""; position: absolute; right: -34px; bottom: -42px; width: 108px; height: 108px; border: 1px solid rgba(47,99,255,.13); border-radius: 50%; }
.skill-detail-facts span { color: #315fce; font: 600 10px/1.2 "DM Mono", monospace; letter-spacing: .09em; }
.skill-detail-facts h3 { max-width: 360px; margin: 15px 0 10px; color: var(--text); font-size: 22px; line-height: 1.08; letter-spacing: -.035em; }
.skill-detail-facts p { position: relative; z-index: 1; max-width: 430px; margin: 0; color: #526984; font-size: 14px; line-height: 1.58; }
.skill-detail-limit { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 24px; align-items: start; margin-top: 14px; padding: 22px 25px; border: 1px solid rgba(20,184,166,.22); border-radius: 16px; background: #edf9f7; }
.skill-detail-limit strong { color: #116b62; font-size: 14px; }
.skill-detail-limit p { margin: 0; color: #416a70; font-size: 14px; line-height: 1.55; }
.skill-install { border-bottom: 0; }
.skill-install__heading { max-width: 680px; }
.skill-install__heading > p:not(.eyebrow) { margin: 18px 0 0; color: #526984; }
.skill-command { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, .8fr); gap: 22px; align-items: center; margin: 25px 0; padding: 20px; border: 1px solid #b9cdf2; border-radius: 15px; background: #edf4ff; }
.skill-command span { display: block; margin-bottom: 9px; color: #3d619a; font: 700 10px/1 "DM Mono", monospace; letter-spacing: .09em; text-transform: uppercase; }
.skill-command code { display: block; overflow-x: auto; padding: 13px 14px; border-radius: 9px; background: #14213c; color: #d9e9ff; font: 600 13px/1.45 "DM Mono", monospace; white-space: nowrap; }
.skill-command p { margin: 0; color: #47617f; font-size: 12px; line-height: 1.58; }
.install-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.install-grid article { display: flex; flex-direction: column; padding: 24px; border: 1px solid #d9e3f0; border-radius: 16px; background: #fff; }
.install-grid h3 { margin: 27px 0 14px; color: var(--text); font-size: 23px; line-height: 1; letter-spacing: -.045em; }
.install-grid ol { margin: 0; padding-left: 19px; color: #546a85; font-size: 12px; line-height: 1.6; }
.install-grid code, .skill-download-box code, .skill-install__heading code { padding: 1px 4px; border-radius: 4px; background: #edf3fb; color: #244a9b; font-size: .9em; word-break: break-word; }
.install-grid a { margin-top: auto; padding-top: 24px; color: var(--accent); font-size: 11px; font-weight: 800; }
.skill-detail__warning { padding: 20px 23px; border-left: 3px solid var(--accent-2); border-radius: 8px; background: #e9f8f4; color: #31576a; font-size: 14px; }
.skill-detail__warning strong { color: #173c51; }
.skill-back { display: inline-block; margin-top: 34px; color: var(--accent); font-size: 13px; font-weight: 800; }
@media (max-width: 820px) { .skill-detail__wrap { width: min(calc(100% - 32px), 1080px); } .skill-detail__hero { grid-template-columns: 1fr; gap: 30px; padding: 54px 0 46px; } .skill-download-box { width: 100%; max-width: 440px; } .install-grid, .skill-source-proof, .skill-command { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .skill-detail { padding-top: 44px; } .skill-detail__hero h1 { font-size: 48px; } .skill-detail__section { padding: 50px 0; } .skill-summary-grid, .skill-check-grid, .skill-detail-facts { grid-template-columns: 1fr; } .skill-detail-facts article { min-height: 0; } .skill-detail-limit { grid-template-columns: 1fr; gap: 8px; } }
