:root {
  --red: #e3262e;
  --red-dark: #b0121b;
  --red-deep: #7d0d13;
  --red-soft: #fdecec;
  --accent: #ffb3b7;
  --ink: #22262b;
  --ink-2: #2b3037;
  --muted: #5b6169;
  --line: #e7e5ea;
  --paper: #ffffff;
  --white: #ffffff;
  --soft: #f6f5f8;
  --radius: 1.25rem;
  --shadow: 0 1.25rem 3rem rgba(34, 38, 43, .08);
  --shadow-soft: 0 .35rem 1.1rem rgba(34, 38, 43, .06);
  --shell: min(1180px, calc(100vw - 2.5rem));
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--red);
  color: var(--white);
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  transform: translateY(-200%);
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Cabeçalho no padrão "pill flutuante": faixa de contato discreta e uma
   barra de navegação branca arredondada, destacada do conteúdo. */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: transparent;
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.contact-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.contact-bar .shell {
  display: flex;
  min-height: 2.15rem;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  color: var(--muted);
  font-size: .7rem;
}

.contact-bar a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.contact-bar a:last-child {
  color: var(--red-dark);
}

.header-inner {
  width: var(--shell);
  min-height: 4.35rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  margin: .8rem auto 0;
  padding: .4rem .55rem .4rem 1.35rem;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: inline-grid;
  grid-template-columns: 2.5rem auto;
  grid-template-rows: 1.55rem 1rem;
  align-items: center;
  gap: 0 .6rem;
  width: max-content;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}

.brand-logo {
  width: 2.5rem;
  height: 2.5rem;
  grid-row: 1 / 3;
  display: block;
}

.brand-main {
  align-self: end;
  font-size: 1.5rem;
  font-weight: 850;
  letter-spacing: -.07em;
  color: var(--red);
}

.brand-sub {
  grid-column: 2;
  align-self: start;
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand-sub b {
  color: var(--red);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .35rem;
}

.main-nav a {
  position: relative;
  padding: .55rem .9rem;
  border-radius: 999px;
  color: #454a52;
  font-size: .86rem;
  font-weight: 650;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.main-nav a:hover {
  background: var(--soft);
  color: var(--ink);
}

.main-nav a[aria-current="page"] {
  background: var(--red-soft);
  color: var(--red-dark);
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.5rem;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--white);
  font-size: .92rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 .65rem 1.8rem rgba(227, 38, 46, .28);
}

.button-small {
  min-height: 2.7rem;
  padding: .55rem 1.15rem;
  font-size: .82rem;
}

.button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--red-dark);
}

.button-light:hover {
  background: var(--red-soft);
  border-color: var(--red-soft);
  box-shadow: none;
}

.menu-button,
.mobile-nav {
  display: none;
}

.breadcrumb {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .78rem;
}

.breadcrumb li + li::before {
  margin-right: .55rem;
  color: #b6b2ba;
  content: '/';
}

.breadcrumb a {
  text-underline-offset: .2em;
}

/* Hero escuro com brilho vermelho, no padrão de capa com overlay do site
   de referência — sem depender de imagem externa. */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.25rem, 8vw, 7.5rem) 0 0;
  background:
    radial-gradient(46rem 30rem at 88% -12%, rgba(227, 38, 46, .34), transparent 62%),
    radial-gradient(34rem 26rem at -12% 108%, rgba(227, 38, 46, .18), transparent 60%),
    linear-gradient(165deg, rgba(20, 22, 27, .72) 0%, rgba(28, 31, 37, .8) 58%, rgba(37, 19, 23, .84) 100%),
    url('/assets/img/hero-bg.svg') center / cover no-repeat,
    #191c21;
  color: var(--white);
}

.hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 3.4rem 3.4rem;
  mask-image: radial-gradient(60rem 40rem at 50% 0%, #000 30%, transparent 75%);
  content: '';
}

.hero > .shell {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, .65fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--red-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: rgba(227, 38, 46, .16);
  border: 1px solid rgba(227, 38, 46, .45);
  border-radius: 999px;
  color: var(--accent);
}

.hero h1,
.section-heading h2,
.split-grid h2,
.faq-grid h2,
.cta-grid h2,
.contact-grid h2,
.related h2,
.legal-page h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.2vw, 4.9rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero h1 {
  max-width: 16ch;
}

.hero-lead {
  max-width: 44rem;
  margin: 1.75rem 0 0;
  color: #c7ccd3;
  font-size: clamp(1.08rem, 1.9vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.35rem;
  margin-top: 2.15rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .91rem;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: .35em;
}

.hero .text-link {
  color: var(--white);
}

.text-link span {
  color: var(--red);
  font-size: 1.1rem;
}

.hero .text-link span {
  color: var(--accent);
}

.microcopy {
  margin: 1.15rem 0 0;
  color: #9aa1ab;
  font-size: .76rem;
}

/* Cartão translúcido no lugar do bloco tipográfico rotacionado. */
.hero-type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .3rem;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 1.6rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, .3);
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  font-weight: 750;
  letter-spacing: -.04em;
  line-height: 1;
}

.hero-type span {
  color: #b9bfc8;
}

.hero-type strong {
  margin: .25rem 0;
  padding: .18em .32em .21em;
  background: var(--red);
  border-radius: .3em;
  color: var(--white);
  font-size: 1.55em;
  font-weight: 850;
}

.hero-type span:last-child {
  align-self: flex-end;
}

/* Faixa de destaques na base do hero, no estilo "stats band". */
.chip-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.chip-row > span {
  display: flex;
  min-height: 5.4rem;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: #dfe2e7;
  font-size: .88rem;
  font-weight: 700;
}

.chip-row > span + span {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.chip-row b {
  color: var(--accent);
  font-size: .7rem;
  letter-spacing: .08em;
}

.section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 1.5rem 4rem;
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2,
.split-grid h2,
.faq-grid h2,
.cta-grid h2,
.contact-grid h2,
.related h2 {
  max-width: 17ch;
  font-size: clamp(2rem, 3.9vw, 3.6rem);
}

.section-heading > p:last-child {
  max-width: 35rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Cartões arredondados com sombra suave, no padrão de card do site de
   referência. */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
  padding: 1.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 38, 46, .35);
  box-shadow: var(--shadow);
}

.card-number {
  margin-bottom: auto;
  color: var(--red);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.feature-card h3 {
  max-width: 12ch;
  margin: 3rem 0 .85rem;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
}

.card-link {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--red-dark);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}

.card-link span {
  color: var(--red);
  transition: transform .2s ease;
}

.feature-card:hover .card-link span {
  transform: translate(2px, -2px);
}

.section-ink {
  background: var(--ink);
  color: var(--white);
}

.section-ink .eyebrow {
  color: var(--accent);
}

.section-ink .section-heading > p:last-child {
  color: #a8adb5;
}

.decision-list {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.decision-row {
  display: grid;
  grid-template-columns: .7fr 1fr 1.5fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 7rem;
  padding: 1.4rem .5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  color: inherit;
  text-decoration: none;
  transition: padding .2s ease, background .2s ease, border-radius .2s ease;
}

a.decision-row:hover {
  padding-inline: 1.25rem;
  background: var(--ink-2);
  border-radius: 1rem;
}

.decision-row > span {
  color: #a8adb5;
  font-size: .76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.decision-row > strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  letter-spacing: -.03em;
  line-height: 1.1;
}

.decision-row p {
  margin: 0;
  color: #c4c9cf;
  font-size: .88rem;
}

.decision-row > b {
  color: var(--accent);
  font-size: 1.4rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  align-items: start;
  gap: clamp(3rem, 9vw, 9rem);
}

.split-grid h2 {
  margin-bottom: 2.5rem;
}

.body-large {
  max-width: 45rem;
  color: #494e56;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.list-panel {
  position: sticky;
  top: 7.5rem;
  padding: 1.9rem;
  background: linear-gradient(150deg, var(--red) 0%, var(--red-dark) 62%, var(--red-deep) 100%);
  border-radius: 1.6rem;
  color: var(--white);
  box-shadow: 0 1.5rem 3.5rem rgba(227, 38, 46, .3);
}

.list-panel h3 {
  margin: 0 0 1.4rem;
  font-size: 1.5rem;
  letter-spacing: -.035em;
}

.list-panel ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-panel li {
  padding: .85rem 0;
  border-top: 1px solid rgba(255, 255, 255, .32);
  font-size: .9rem;
}

.list-panel li::before {
  margin-right: .65rem;
  color: var(--white);
  content: '↗';
}

.section-soft {
  background: var(--soft);
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--line), var(--shadow-soft);
}

.table-wrap:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}

.comparison-more {
  display: inline-flex;
  gap: .55rem;
  margin-top: 1.1rem;
  color: var(--red-dark);
  font-size: .88rem;
  font-weight: 800;
  text-underline-offset: .3em;
}

table {
  width: 100%;
  min-width: 46rem;
  border-collapse: collapse;
  background: var(--white);
  text-align: left;
}

th,
td {
  padding: 1.35rem 1.4rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

thead th {
  background: var(--ink);
  color: var(--white);
  font-size: .74rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

tbody th {
  width: 20%;
  color: var(--red-dark);
  font-size: .85rem;
}

tbody td {
  color: #4e535b;
  font-size: .9rem;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.table-note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 18rem;
  padding: 1.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

.steps li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.steps span {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 4rem;
  place-items: center;
  background: var(--red-soft);
  border-radius: 50%;
  color: var(--red-dark);
  font-size: .72rem;
  font-weight: 850;
}

.steps h3 {
  margin: 0 0 .85rem;
  font-size: 1.4rem;
  letter-spacing: -.035em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.related {
  padding-top: 2rem;
}

.related h2 {
  margin-bottom: 3rem;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.related-links a {
  display: flex;
  min-height: 9rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.related-links a:hover {
  transform: translateY(-4px);
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 1rem 2.4rem rgba(227, 38, 46, .32);
}

.related-links b {
  color: var(--red);
}

.related-links a:hover b {
  color: var(--white);
}

.faq-section {
  background: var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-grid > div:first-child {
  position: sticky;
  top: 7.5rem;
}

.faq-grid > div:first-child > p:last-child {
  max-width: 28rem;
  color: var(--muted);
}

.faq-list details {
  margin-bottom: .8rem;
  padding: 0 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  transition: border-color .2s ease;
}

.faq-list details[open] {
  border-color: rgba(227, 38, 46, .35);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 1.3rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -.015em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--red);
  font-size: 1.45rem;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -.4rem 0 1.5rem;
  padding-right: 3rem;
  color: var(--muted);
  font-size: .93rem;
}

.cta-section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
  background:
    radial-gradient(40rem 26rem at 90% -20%, rgba(255, 255, 255, .14), transparent 60%),
    linear-gradient(150deg, var(--red) 0%, var(--red-dark) 62%, var(--red-deep) 100%);
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.cta-grid .eyebrow {
  color: var(--accent);
}

.cta-grid > div:last-child > p {
  margin: 0;
  font-size: 1.08rem;
}

.text-link-light,
.text-link-light span {
  color: var(--white);
}

.contact-section {
  padding-top: 3rem;
}

.editorial-note {
  border-bottom: 1px solid var(--line);
}

.editorial-note .shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 2rem;
  min-height: 4.5rem;
}

.editorial-note span {
  color: var(--red-dark);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.editorial-note p,
.editorial-note a {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
}

.guide-article {
  padding: 0 0 clamp(5rem, 9vw, 9rem);
}

.guide-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.guide-meta span {
  padding: 1.1rem 1.4rem;
  color: var(--muted);
  font-size: .75rem;
  text-align: center;
}

.guide-meta span + span {
  border-left: 1px solid var(--line);
}

.guide-meta b {
  color: var(--ink);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(13rem, .3fr) minmax(0, .7fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.guide-toc {
  position: sticky;
  top: 7.5rem;
  padding: 1.4rem 1.5rem;
  background: var(--soft);
  border-radius: var(--radius);
  scroll-margin-top: 7.5rem;
}

#duvidas {
  scroll-margin-top: 7.5rem;
}

.guide-toc p {
  margin: 0 0 1rem;
  color: var(--red-dark);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.guide-toc ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  counter-reset: toc;
}

.guide-toc li {
  counter-increment: toc;
  border-bottom: 1px solid var(--line);
}

.guide-toc a {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: .4rem;
  padding: .7rem 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.35;
  text-decoration: none;
}

.guide-toc a::before {
  color: var(--red);
  content: counter(toc, decimal-leading-zero);
  font-size: .62rem;
  font-weight: 800;
}

.guide-toc a:hover {
  color: var(--ink);
}

.guide-content {
  min-width: 0;
}

.guide-section,
.guide-callout {
  scroll-margin-top: 7.5rem;
}

.guide-section {
  padding: 0 0 clamp(4rem, 7vw, 6.5rem);
}

.guide-section + .guide-section,
.guide-callout + .guide-section {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  border-top: 1px solid var(--line);
}

.guide-section h2,
.guide-callout h2 {
  max-width: 20ch;
  margin: 0 0 1.75rem;
  font-size: clamp(1.8rem, 3.3vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.06;
  text-wrap: balance;
}

.guide-section > p:not(.eyebrow),
.guide-callout > p:not(.eyebrow) {
  max-width: 46rem;
  color: #4b5058;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.75;
}

.guide-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.guide-points li {
  min-height: 10rem;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.guide-points h3,
.guide-steps h3 {
  margin: 0 0 .65rem;
  font-size: 1.16rem;
  letter-spacing: -.025em;
  line-height: 1.18;
}

.guide-points p,
.guide-steps p {
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
}

.guide-steps {
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.guide-steps li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.guide-steps li > span {
  color: var(--red);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.definition-list {
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
}

.definition-list div {
  display: grid;
  grid-template-columns: minmax(9rem, .35fr) minmax(0, .65fr);
  gap: 2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.definition-list dt {
  font-weight: 800;
  letter-spacing: -.02em;
}

.definition-list dd {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.guide-callout {
  margin: 0 0 clamp(4rem, 7vw, 6.5rem);
  padding: clamp(1.7rem, 4vw, 3rem);
  background:
    radial-gradient(30rem 18rem at 100% 0%, rgba(227, 38, 46, .28), transparent 60%),
    var(--ink);
  border-radius: 1.6rem;
  color: var(--white);
}

.guide-callout .eyebrow {
  color: var(--accent);
}

.guide-callout h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
}

.guide-callout > p:not(.eyebrow) {
  margin-bottom: 0;
  color: #ced2d8;
}

.guide-sources ol {
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.guide-sources .source-method {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--red-soft);
  border-left: 3px solid var(--red);
  border-radius: 0 .6rem .6rem 0;
  font-size: .85rem;
}

.guide-sources li {
  border-bottom: 1px solid var(--line);
}

.guide-sources a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
  text-underline-offset: .25em;
}

.editorial-note a {
  font-weight: 750;
  text-underline-offset: .25em;
}

.site-map-groups {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
}

.site-map-group h3 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  letter-spacing: -.04em;
}

.site-map-group ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-map-group li {
  display: grid;
}

.site-map-group a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .55rem 1.25rem;
  min-height: 8.5rem;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-map-group a:hover {
  transform: translateY(-3px);
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.site-map-group strong {
  font-size: 1.1rem;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.site-map-group span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: .82rem;
}

.site-map-group a:hover span {
  color: #ced2d8;
}

.site-map-group b {
  color: var(--red);
}

.site-map-xml {
  margin: clamp(3rem, 7vw, 6rem) 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}

.site-map-xml a {
  color: var(--ink);
  font-weight: 750;
  text-underline-offset: .25em;
}

.contact-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-grid h2 {
  margin-bottom: 2rem;
}

.contact-channels {
  margin-top: 2.5rem;
}

.contact-channels > h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -.025em;
}

.contact-channels > p {
  margin: .5rem 0 1.25rem;
  color: var(--muted);
  font-size: .88rem;
}

.contact-whatsapp {
  display: grid;
  grid-template-columns: 2.65rem 1fr;
  align-items: center;
  gap: 0 1rem;
  padding: 1rem;
  background: #0b6b3a;
  border-radius: 1rem;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 .6rem 1.6rem rgba(11, 107, 58, .28);
}

.contact-whatsapp > span {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  grid-row: 1 / 3;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  color: #0b6b3a;
  font-size: .68rem;
  font-weight: 900;
}

.contact-whatsapp strong,
.contact-whatsapp small {
  line-height: 1.3;
}

.contact-list {
  margin: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.contact-list > div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
}

.contact-list dt {
  color: var(--muted);
  font-weight: 700;
}

.contact-list dd {
  margin: 0;
}

.contact-list a,
.contact-locations a,
.contact-social a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: .2em;
}

.contact-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-locations address {
  display: grid;
  gap: .2rem;
  padding: 1.1rem;
  background: var(--soft);
  border-radius: 1rem;
  font-size: .76rem;
  font-style: normal;
}

.contact-locations address span {
  color: var(--muted);
}

.contact-locations address a {
  margin-top: .45rem;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  margin-top: 1rem;
  font-size: .78rem;
}

.official-support {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.official-support .eyebrow,
.official-support h3,
.official-support > p {
  margin-top: 0;
}

.official-support h3 {
  margin-bottom: .4rem;
  font-size: 1.1rem;
  letter-spacing: -.02em;
}

.official-support > p,
.official-support small {
  color: var(--muted);
  font-size: .76rem;
}

.official-support ul {
  margin: 1rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.official-support li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .75rem;
}

.official-support li span {
  color: var(--muted);
}

.official-support a {
  font-weight: 750;
  text-align: right;
}

.lead-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.lead-form fieldset:disabled {
  opacity: .68;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  gap: .7rem;
  padding: .55rem 1rem .55rem .55rem;
  background: #0b6b3a;
  border: 2px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 .9rem 2.4rem rgba(23, 23, 25, .22);
  color: var(--white);
  font-size: .82rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #07552e;
}

.whatsapp-float-icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  color: #0b6b3a;
  font-size: .58rem;
}

.check-list {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.check-list li {
  padding: .9rem 0 .9rem 1.5rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

.check-list li::before {
  float: left;
  margin-left: -1.5rem;
  color: var(--red);
  content: '●';
}

.lead-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-notice {
  margin: 0 0 1.5rem;
  padding: 1rem;
  background: var(--red-soft);
  border-left: 4px solid var(--red);
  border-radius: 0 .6rem .6rem 0;
  color: var(--ink);
  font-size: .85rem;
}

.lead-form[aria-disabled="true"] input,
.lead-form[aria-disabled="true"] select,
.lead-form[aria-disabled="true"] textarea {
  opacity: .72;
}

.lead-form button:disabled {
  cursor: not-allowed;
  opacity: .55;
  transform: none;
  box-shadow: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lead-form label {
  display: grid;
  gap: .45rem;
  margin-bottom: 1rem;
  color: #3b4048;
  font-size: .78rem;
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: .85rem .9rem;
  background: var(--soft);
  border: 1px solid #d4d1d8;
  border-radius: .7rem;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 450;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
  outline: 0;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .consent {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin: 1.2rem 0;
  color: var(--muted);
  font-weight: 450;
  line-height: 1.5;
}

.consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: .15rem;
  accent-color: var(--red);
}

.legal-page {
  max-width: 52rem;
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 9rem);
}

.legal-page h1 {
  margin-bottom: 2.5rem;
  font-size: clamp(2.6rem, 6vw, 4.9rem);
}

.legal-page h2 {
  margin: 2.5rem 0 .5rem;
  font-size: 1.5rem;
  letter-spacing: -.03em;
}

.legal-page p {
  color: var(--muted);
}

.legal-page .legal-intro {
  padding: 1.25rem;
  background: var(--red-soft);
  border-left: 4px solid var(--red);
  border-radius: 0 .6rem .6rem 0;
  color: var(--ink);
}

.offers-section {
  background: var(--soft);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 38, 46, .35);
  box-shadow: var(--shadow);
}

.offer-card h3 {
  margin: 0 0 .5rem;
  font-size: 1.35rem;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin: 0 0 1rem;
}

.offer-price strong {
  color: var(--red-dark);
  font-size: 1.9rem;
  font-weight: 850;
  letter-spacing: -.04em;
}

.offer-price span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
}

.offer-intro {
  margin: 0 0 .75rem;
  color: var(--muted);
  font-size: .84rem;
}

.offer-card ul {
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.offer-card li {
  padding: .35rem 0 .35rem 1.35rem;
  border-top: 1px solid var(--line);
  color: #4b5058;
  font-size: .84rem;
}

.offer-card li::before {
  float: left;
  margin-left: -1.35rem;
  color: var(--red);
  content: '✓';
  font-weight: 800;
}

.offer-card .button {
  margin-top: auto;
}

.footer-sitemap {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: #22262b;
  border-bottom: 1px solid #3a3f46;
  color: var(--white);
}

.footer-sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2.5rem;
}

.footer-sitemap h2 {
  margin: 0 0 1rem;
  color: #8b9099;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-sitemap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-sitemap-guides ul {
  columns: 2;
  column-gap: 2rem;
}

.footer-sitemap li {
  break-inside: avoid;
}

.footer-sitemap a {
  display: inline-block;
  padding: .22rem 0;
  color: #c4c9cf;
  font-size: .82rem;
  text-decoration: none;
}

.footer-sitemap a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: .25em;
}

.site-footer {
  padding: 5rem 0 2rem;
  background:
    radial-gradient(38rem 24rem at 100% 0%, rgba(227, 38, 46, .14), transparent 55%),
    #1b1e23;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
}

.brand-footer {
  color: var(--white);
}

.footer-grid > div:first-child p {
  max-width: 20rem;
  margin-top: 1.5rem;
  color: #a8adb5;
  font-size: .85rem;
}

.footer-grid h2 {
  margin: 0 0 1rem;
  color: #8b9099;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid > div:not(:first-child) a {
  margin: .25rem 0;
  color: #dcdfe4;
  font-size: .87rem;
  text-decoration: none;
}

.footer-grid > div:not(:first-child) span {
  margin: .25rem 0;
  color: #a8adb5;
  font-size: .78rem;
}

.footer-grid a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: .25em;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3a3f46;
  color: #8b9099;
  font-size: .68rem;
}

.footer-legal p:first-child {
  max-width: 50rem;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    padding-right: .55rem;
  }

  .contact-bar .shell {
    justify-content: center;
  }

  .contact-bar span {
    display: none;
  }

  .main-nav,
  .header-inner > .button {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    grid-column: 3;
    place-content: center;
    gap: .28rem;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .menu-button span:not(.sr-only) {
    width: 1.05rem;
    height: 1px;
    background: var(--ink);
  }

  .mobile-nav {
    width: var(--shell);
    margin: .5rem auto 0;
    padding: .5rem 1.25rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .mobile-nav:not([hidden]) {
    display: grid;
  }

  .mobile-nav a {
    padding: .75rem 0;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
    text-decoration: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-type {
    width: min(23rem, 80vw);
    margin-left: auto;
  }

  .section-heading,
  .split-grid,
  .faq-grid,
  .cta-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    max-width: 44rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .decision-row {
    grid-template-columns: .7fr 1fr 1.4fr auto;
  }

  .list-panel,
  .faq-grid > div:first-child {
    position: static;
  }

  .list-panel {
    max-width: 33rem;
  }

  .related-links {
    grid-template-columns: 1fr;
  }

  .cta-grid > div:last-child {
    max-width: 40rem;
  }

  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-toc {
    position: static;
    max-width: 42rem;
  }

  .site-map-group ul {
    grid-template-columns: 1fr;
  }

  .footer-sitemap-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-sitemap-guides {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 1.5rem, 1180px);
  }

  .header-inner {
    min-height: 3.9rem;
    margin-top: .6rem;
    padding-left: 1.05rem;
  }

  .contact-bar .shell {
    justify-content: space-between;
    gap: .5rem;
  }

  .contact-bar a {
    font-size: .65rem;
  }

  .contact-locations {
    grid-template-columns: 1fr;
  }

  .contact-list > div {
    grid-template-columns: 1fr;
    gap: .2rem;
  }

  .whatsapp-float {
    right: .75rem;
    bottom: .75rem;
    padding-right: .75rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.8rem);
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-type {
    margin-top: 1rem;
  }

  .chip-row {
    grid-template-columns: 1fr;
  }

  .chip-row > span {
    min-height: 4rem;
  }

  .chip-row > span + span {
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }

  .section {
    padding-block: 4.5rem;
  }

  .section-heading h2,
  .split-grid h2,
  .faq-grid h2,
  .cta-grid h2,
  .contact-grid h2,
  .related h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .card-grid,
  .steps,
  .footer-grid,
  .form-row,
  .offers-grid,
  .footer-sitemap-grid {
    grid-template-columns: 1fr;
  }

  .footer-sitemap-guides {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-sitemap-guides ul {
    columns: 1;
  }

  .feature-card {
    min-height: 16rem;
  }

  .decision-row {
    grid-template-columns: 1fr auto;
    gap: .45rem 1rem;
    padding-block: 1.5rem;
  }

  .decision-row > span,
  .decision-row p {
    grid-column: 1 / -1;
  }

  .decision-row > b {
    grid-column: 2;
    grid-row: 2;
  }

  .steps span {
    margin-bottom: 3rem;
  }

  .footer-grid {
    gap: 2.5rem;
  }

  .footer-legal {
    flex-direction: column;
  }

  .editorial-note .shell {
    grid-template-columns: 1fr;
    gap: .25rem;
    padding-block: 1rem;
  }

  .guide-meta {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .guide-meta span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .guide-points {
    grid-template-columns: 1fr;
  }

  .definition-list div {
    grid-template-columns: 1fr;
    gap: .45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
