html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

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

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
}

/* ============================================================
   Shared page gutters — keeps outer margins aligned across
   index, RDC Anvisa 1.000/25 and Central de Ajuda.
   Mirrors the Tailwind scale used on the home page:
   px-5 / sm:px-6 / md:px-8 / lg:px-12 / xl:px-16 / 2xl:px-[240px]
   Header uses a tighter inset at xl/2xl (xl:px-14 / 2xl:px-[88px]).
   ============================================================ */
:root {
  --cfm-page-max: 1920px;
  --cfm-header-max: 1585px;
  --cfm-page-gutter: 20px;
  --cfm-header-gutter: 20px;
}

@media (min-width: 640px) {
  :root {
    --cfm-page-gutter: 24px;
    --cfm-header-gutter: 24px;
  }
}

@media (min-width: 768px) {
  :root {
    --cfm-page-gutter: 32px;
    --cfm-header-gutter: 32px;
  }
}

@media (min-width: 1024px) {
  :root {
    --cfm-page-gutter: 48px;
    --cfm-header-gutter: 48px;
  }
}

@media (min-width: 1280px) {
  :root {
    --cfm-page-gutter: 64px;
    --cfm-header-gutter: 56px;
  }
}

@media (min-width: 1536px) {
  :root {
    --cfm-page-gutter: 240px;
    --cfm-header-gutter: 88px;
  }
}

/* Shared header rail — logo/nav edges match across all pages */
body > header > div > div {
  max-width: var(--cfm-header-max);
  padding-inline: var(--cfm-header-gutter);
  box-sizing: border-box;
}

/* Seção Segurança: o bundle Tailwind em styles.css não inclui size-14 / size-7 */
.cfm-benefit-icon {
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.cfm-benefit-icon img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* Stats panel: sm:grid-cols-4 não existe no Tailwind purgado */
.cfm-stats-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .cfm-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* Hero — cards em duas colunas com mesma largura (xl+) */
@media (min-width: 1280px) {
  .cfm-hero-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cfm-hero-features-grid > .cfm-hero-feature {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }
}

/* Hero: desktop “estreito” (xl até <2xl) — evita sobreposição texto × ilustração */
@media (min-width: 1280px) and (max-width: 1535.98px) {
  .cfm-hero-layout {
    align-items: flex-start;
  }

  .cfm-hero-copy {
    flex: 1 1 0%;
    max-width: 36rem;
    min-width: 0;
  }

  .cfm-hero-visual {
    flex: 1 1 0%;
    min-width: 0;
    margin-inline-start: auto;
  }
}

@media (min-width: 1536px) {
  .cfm-hero-layout {
    align-items: center;
  }

  .cfm-hero-copy {
    max-width: none;
  }

  .cfm-hero-visual {
    max-width: 678px;
    margin-inline-start: 0;
  }
}

/* RDC Anvisa 1.000/25 page: Figma-aligned static layout refinements */
.rdc-page {
  --rdc-green: #266a4a;
  --rdc-ink: #002112;
  --rdc-text: #4a5565;
  --rdc-muted: #64748b;
  --rdc-line: #e2e8f0;
  --rdc-soft: #f9fafb;
  /* Outer gutters follow the shared site scale (see :root above) */
  --rdc-gutter: var(--cfm-page-gutter);
  --rdc-gutter-wide: var(--cfm-page-gutter);
  --rdc-section-y: clamp(56px, 6.6667vw, 128px);
  --rdc-panel-inset: clamp(24px, 12.7083vw, 244px);
}

.rdc-page header > div > div {
  max-width: var(--cfm-header-max);
  padding-inline: var(--cfm-header-gutter);
}

.rdc-page main > section#faq > div {
  max-width: var(--cfm-page-max);
  padding-inline: var(--cfm-page-gutter);
  box-sizing: border-box;
}

/* ============================================================
   Hero (Figma 9298:32936) — pixel-perfect block
   ============================================================ */
.rdc-page main > section.rdc-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(148.51deg, #ffffff 0%, #f0fdf4 100%);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.rdc-data {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  padding: 10px var(--rdc-gutter, 24px);
  box-sizing: border-box;
  background: linear-gradient(to right, #fdf2a1, #fdf8ec);
  border-bottom: 1px solid #f4e8a4;
  color: #002112;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.rdc-data:hover {
  filter: brightness(0.98);
}

.rdc-data:focus-visible {
  outline: 2px solid #266a4a;
  outline-offset: -2px;
}

.rdc-data__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #f4e8a4;
  background: #ffffff;
  color: #c9a800;
}

.rdc-data__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
  color: #002112;
}

.rdc-data__text time {
  font-weight: 700;
  color: #002112;
}

@media (max-width: 639.98px) {
  .rdc-data {
    gap: 8px;
    min-height: 44px;
    padding-inline: var(--cfm-page-gutter);
  }

  .rdc-data__text {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
}

.rdc-page main > section.rdc-hero > .rdc-hero__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: clamp(48px, 3.3333vw, 64px) var(--rdc-gutter);
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* LEFT COPY */
.rdc-hero__copy {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.rdc-hero__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.rdc-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 8px 16px;
  background: #dcfce7;
  border-radius: 9999px;
}

.rdc-hero__chip--vigencia {
  background: linear-gradient(to right, #fdf2a1, #fdf8ec);
  border: 1px solid #f4e8a4;
  text-decoration: none;
  cursor: pointer;
}

.rdc-hero__chip--vigencia:hover {
  filter: brightness(0.98);
}

.rdc-hero__chip--vigencia:focus-visible {
  outline: 2px solid #266a4a;
  outline-offset: 2px;
}

.rdc-hero__chip--vigencia .rdc-hero__chip-text {
  color: #002112;
}

.rdc-hero__chip-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.rdc-hero__chip-text {
  color: #266a4a;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.1504px;
  white-space: nowrap;
}

.rdc-hero__title {
  margin: 0;
  width: 100%;
  display: block;
}

.rdc-hero__title-lg {
  display: block;
  color: #002112;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -1.677px;
}

.rdc-hero__title-md {
  display: block;
  color: #101828;
  font-size: 36px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.3516px;
}

.rdc-hero__desc {
  margin: 0;
  width: 100%;
  color: #4a5565;
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  letter-spacing: -0.4395px;
}

.rdc-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.rdc-hero__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 60px;
  padding: 18px 34px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3125px;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.rdc-hero__btn:focus-visible {
  outline: 2px solid #266a4a;
  outline-offset: 2px;
}

.rdc-hero__btn--primary {
  gap: 12px;
  padding: 18px 32px;
  border: 0;
  background: #266a4a;
  color: #ffffff;
  filter: drop-shadow(0 10px 7.5px rgba(13, 84, 43, 0.2)) drop-shadow(0 4px 3px rgba(13, 84, 43, 0.2));
}

.rdc-hero__btn--primary:hover {
  background: #215837;
}

.rdc-hero__btn--primary .rdc-hero__btn-text {
  color: #ffffff;
}

.rdc-hero__btn-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.rdc-hero__btn--secondary {
  border: 2px solid #e5e7eb;
  background: #ffffff;
  color: #364153;
  gap: 12px;
}

.rdc-hero__btn--secondary:hover {
  background: #f9fafb;
}

.rdc-hero__btn-text {
  white-space: nowrap;
}

.rdc-hero__stats {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.rdc-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.rdc-hero__stat-value {
  color: #266a4a;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.0703px;
  white-space: nowrap;
}

.rdc-hero__stat-label {
  color: #4a5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.1504px;
  white-space: nowrap;
}

.rdc-hero__stat-sep {
  width: 1px;
  height: 48px;
  background: #d1d5dc;
  flex-shrink: 0;
}

/* RIGHT STAGE (illustration) */
.rdc-hero__stage {
  flex: 0 1 704px;
  width: min(100%, 704px);
  max-width: 704px;
  margin-left: auto;
}

.rdc-hero__stage-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 704px;
}

.rdc-hero__stage-scale {
  position: absolute;
  top: 0;
  right: 0;
  width: 704px;
  height: 920px;
  transform: scale(var(--rdc-hero-stage-scale));
  transform-origin: top right;
  will-change: transform;
}

.rdc-hero__panel {
  position: absolute;
  inset: 11.25% 0 11.2% 0;
  border-radius: 28.541px;
  background: linear-gradient(134.62deg, rgba(38, 106, 74, 0.1) 0%, rgba(219, 234, 254, 0.5) 100%);
  z-index: 0;
}

.rdc-hero__blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(76.108px);
  z-index: 0;
}

.rdc-hero__blob--yellow {
  width: 152.216px;
  height: 152.216px;
  top: 56px;
  right: 60px;
  background: #fdc700;
  opacity: 0.2;
}

.rdc-hero__blob--blue {
  width: 152.216px;
  height: 152.216px;
  bottom: 75px;
  left: 24px;
  background: #2b7fff;
  opacity: 0.5;
}

.rdc-hero__blob--green {
  width: 114.162px;
  height: 114.162px;
  top: 510px;
  right: 78px;
  background: #00c950;
  opacity: 0.2;
}

/* RX Cards */
.rdc-hero-card {
  position: absolute;
  width: 594.595px;
  display: flex;
  flex-direction: column;
  gap: 19.027px;
  padding: 28.541px;
  background: #ffffff;
  border-radius: 19.027px;
  filter: drop-shadow(0 29.73px 29.73px rgba(0, 0, 0, 0.25));
  z-index: 2;
  box-sizing: border-box;
}

.rdc-hero-card--a {
  top: 200px;
  left: -5px;
  transform: rotate(2deg);
}

.rdc-hero-card--b {
  top: 480px;
  left: 35px;
  width: 556.541px;
  transform: rotate(-2deg);
}

.rdc-hero-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.rdc-hero-card__title {
  color: #4a5565;
  font-size: 16.649px;
  font-weight: 500;
  line-height: 23.784px;
  letter-spacing: -0.1788px;
  white-space: nowrap;
}

.rdc-hero-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33.297px;
  height: 33.297px;
  padding: 0 7.135px;
  border-radius: 9999px;
  filter: drop-shadow(0 4.757px 3.568px rgba(0, 0, 0, 0.1)) drop-shadow(0 2.378px 2.378px rgba(0, 0, 0, 0.1));
  flex-shrink: 0;
  box-sizing: border-box;
}

.rdc-hero-card__badge--yellow {
  background: #fdc700;
}

.rdc-hero-card__badge--blue {
  background: #2b7fff;
}

.rdc-hero-card__badge img {
  display: block;
  width: 19.027px;
  height: 19.027px;
}

.rdc-hero-card__body {
  position: relative;
  height: 146.27px;
  width: 100%;
  border-width: 2.378px;
  border-style: solid;
  border-radius: 16.649px;
  padding: 23.78px;
  box-sizing: border-box;
}

.rdc-hero-card__body--yellow {
  border-color: #fff085;
  background: linear-gradient(164.78deg, #fefce8 0%, #fef9c2 100%);
}

.rdc-hero-card__body--blue {
  border-color: #bedbff;
  background: linear-gradient(163.68deg, #eff6ff 0%, #dbeafe 100%);
}

.rdc-hero-card__bar {
  position: absolute;
  display: block;
  left: 23.78px;
  height: 9.514px;
  border-radius: 4.757px;
}

.rdc-hero-card__body--yellow .rdc-hero-card__bar {
  background: #ffdf20;
}

.rdc-hero-card__body--blue .rdc-hero-card__bar {
  background: #8ec5ff;
}

.rdc-hero-card__bar--w1 {
  top: 23.78px;
  width: 63%;
  opacity: 0.6;
}

.rdc-hero-card__bar--w2 {
  top: 47.57px;
  width: 84%;
  opacity: 0.4;
}

.rdc-hero-card__bar--w3 {
  top: 71.35px;
  width: 70%;
  opacity: 0.4;
}

.rdc-hero-card__bar--last {
  top: 110px;
  width: 42%;
  height: 7.135px;
  opacity: 0.5;
}

/* Floating pills */
.rdc-hero-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14.131px;
  height: 88px;
  padding: 20.216px;
  background: #ffffff;
  border-width: 1.189px;
  border-style: solid;
  border-radius: 16.649px;
  filter: drop-shadow(0 23.784px 14.865px rgba(0, 0, 0, 0.1)) drop-shadow(0 9.514px 5.946px rgba(0, 0, 0, 0.1));
  z-index: 3;
  box-sizing: border-box;
}

.rdc-hero-pill--validacao {
  top: 100px;
  left: -36px;
  width: 215.243px;
  border-color: #dcfce7;
}

.rdc-hero-pill--sncr {
  top: 736px;
  right: 18px;
  width: 228.324px;
  border-color: #dbeafe;
}

.rdc-hero-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47.568px;
  height: 47.568px;
  border-radius: 11.892px;
  flex-shrink: 0;
}

.rdc-hero-pill__icon--green {
  background: #dcfce7;
}

.rdc-hero-pill__icon--blue {
  background: #dbeafe;
}

.rdc-hero-pill__icon img {
  display: block;
  width: 23.784px;
  height: 23.784px;
}

.rdc-hero-pill__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.rdc-hero-pill__label {
  color: #6a7282;
  font-size: 14.27px;
  font-weight: 400;
  line-height: 19.027px;
}

.rdc-hero-pill__text {
  color: #101828;
  font-size: 16.649px;
  font-weight: 500;
  line-height: 23.784px;
  letter-spacing: -0.1788px;
  white-space: nowrap;
}

/* Floating RDC Anvisa 1.000/25 green chip */
.rdc-hero-chip-rdc {
  position: absolute;
  top: 478px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9.411px;
  height: 52.324px;
  padding: 14.27px;
  background: linear-gradient(158.73deg, #00c950 0%, #00a63e 100%);
  border-radius: 16.649px;
  filter: drop-shadow(0 23.784px 14.865px rgba(0, 0, 0, 0.1)) drop-shadow(0 9.514px 5.946px rgba(0, 0, 0, 0.1));
  z-index: 3;
  box-sizing: border-box;
}

.rdc-hero-chip-rdc__icon {
  display: block;
  width: 23.784px;
  height: 23.784px;
  flex-shrink: 0;
}

.rdc-hero-chip-rdc__text {
  color: #ffffff;
  font-size: 14.27px;
  font-weight: 500;
  line-height: 19.027px;
  white-space: nowrap;
}

/* Responsive — between laptop and 1920 (1440–1919px) */
@media (max-width: 1919.98px) and (min-width: 1440px) {
  .rdc-page main > section.rdc-hero > .rdc-hero__inner {
    gap: clamp(20px, 1.67vw, 32px);
  }

  .rdc-hero__stage {
    flex-basis: clamp(420px, 34vw, 620px);
    width: clamp(420px, 34vw, 620px);
    max-width: 620px;
  }
}

/* Responsive — wide desktop pull-in (≤1439.98px) */
@media (max-width: 1439.98px) {
  .rdc-page main > section.rdc-hero > .rdc-hero__inner {
    padding-block: clamp(56px, 6.67vw, 96px);
    padding-inline: var(--cfm-page-gutter);
    gap: 24px;
  }

  .rdc-hero__title-lg {
    font-size: 52px;
    line-height: 60px;
    letter-spacing: -1.2px;
  }

  .rdc-hero__title-md {
    font-size: 28px;
    line-height: 38px;
  }

  .rdc-hero__stage {
    flex-basis: clamp(360px, 38vw, 520px);
    width: clamp(360px, 38vw, 520px);
    max-width: 520px;
  }
}

/* Responsive — tablet/medium (≤1023.98px) */
@media (max-width: 1023.98px) {
  .rdc-page main > section.rdc-hero > .rdc-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 72px var(--cfm-page-gutter);
    gap: 48px;
  }

  .rdc-hero__copy {
    width: 100%;
    gap: 24px;
  }

  .rdc-hero__title-lg {
    font-size: 44px;
    line-height: 52px;
    letter-spacing: -1px;
  }

  .rdc-hero__title-md {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
  }

  .rdc-hero__desc {
    font-size: 16px;
    line-height: 26px;
  }

  .rdc-hero__stage {
    display: none;
  }
}

/* Responsive — mobile (≤639.98px) */
@media (max-width: 639.98px) {
  .rdc-page main > section.rdc-hero > .rdc-hero__inner {
    padding: 56px var(--cfm-page-gutter);
    gap: 32px;
  }

  .rdc-hero__title-lg {
    font-size: 36px;
    line-height: 44px;
  }

  .rdc-hero__title-md {
    font-size: 20px;
    line-height: 28px;
  }

  /* CTAs: stack and stretch to full width */
  .rdc-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .rdc-hero__btn {
    width: 100%;
    height: auto;
    padding: 14px 24px;
  }

  .rdc-hero__btn--primary {
    padding: 14px 22px;
  }

  /* Stats: stacked rows, value + label side-by-side, separators hidden */
  .rdc-hero__stats {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .rdc-hero__stat {
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 12px;
    width: 220px;
    max-width: 100%;
  }

  .rdc-hero__stat-value {
    flex-shrink: 0;
    width: 80px;
    text-align: left;
    font-size: 28px;
    line-height: 36px;
  }

  .rdc-hero__stat-label {
    flex: 1 1 auto;
    text-align: left;
  }

  .rdc-hero__stat-sep {
    display: none;
  }
}

/* ============================================================
   Sobre a RDC (Figma 9298:32988) — pixel-perfect block
   ============================================================ */
.rdc-page main > section.rdc-about {
  width: 100%;
  background: #fff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.rdc-page main > section.rdc-about > .rdc-about__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  max-width: min(1194px, calc(100% - (2 * var(--cfm-page-gutter))));
  margin-inline: auto;
  padding: 144px 0;
}

.rdc-about__copy {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.rdc-about__title {
  margin: 0;
  color: #002112;
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0;
}

.rdc-about__text {
  margin: 0;
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.3125px;
}

.rdc-about__cards {
  display: flex;
  flex: 1 0 0;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 24px;
  min-width: 0;
}

.rdc-about-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 278px;
  padding: 20px;
  background: #fff;
  border: 1.013px solid #e2e8f0;
  border-radius: 16.203px;
  box-shadow: 0 25.316px 25.316px rgba(0, 0, 0, 0.25);
}

.rdc-about-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  background: #f0fdf4;
  border-radius: 10px;
}

.rdc-about-card__icon img {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.rdc-about-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.rdc-about-card__title {
  margin: 0;
  color: #101828;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.4395px;
  white-space: nowrap;
}

.rdc-about-card__text {
  margin: 0;
  color: #4a5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.1504px;
}

/* Tablet / narrow desktop (<1280px) — stack columns, keep card cluster centered */
@media (max-width: 1279.98px) {
  .rdc-page main > section.rdc-about > .rdc-about__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    max-width: 100%;
    padding: 72px var(--cfm-page-gutter);
  }

  .rdc-about__title {
    font-size: 40px;
    line-height: 48px;
  }

  .rdc-about__cards {
    justify-content: center;
  }
}

/* Mobile — single column of cards */
@media (max-width: 639.98px) {
  .rdc-about__title {
    font-size: 32px;
    line-height: 38px;
  }

  .rdc-about-card {
    width: 100%;
    max-width: 360px;
  }

  .rdc-about-card__title {
    white-space: normal;
  }
}

/* ============================================================
   Tipos de receituário (Figma 9309:37274) — pixel-perfect block
   ============================================================ */
.rdc-page main > section.rdc-types {
  width: 100%;
  background: #fff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.rdc-page main > section.rdc-types > .rdc-types__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  width: 100%;
  max-width: var(--cfm-page-max);
  margin-inline: auto;
  padding: 128px var(--cfm-page-gutter);
  box-sizing: border-box;
}

.rdc-types__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.rdc-types__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: rgba(38, 106, 74, 0.1);
  border-radius: 9999px;
  color: #266a4a;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.1504px;
  white-space: nowrap;
}

.rdc-types__heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.rdc-types__title {
  margin: 0;
  color: #002112;
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0;
  text-align: center;
}

.rdc-types__subtitle {
  margin: 0;
  color: #4a5565;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.4395px;
  text-align: center;
}

.rdc-types__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
}

.rdc-types__cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  width: 100%;
}

/* Receituário card */
.rdc-type-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
  flex: 1 0 0;
  min-width: 0;
  overflow: clip;
  box-sizing: border-box;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.rdc-type-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 80px;
}

.rdc-type-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  color: #fff;
  font-family: inherit;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.3691px;
  box-shadow:
    0 20px 12.5px rgba(0, 0, 0, 0.1),
    0 8px 5px rgba(0, 0, 0, 0.1);
}

.rdc-type-card--a .rdc-type-card__badge {
  background-image: linear-gradient(135deg, #ffeb6e 0%, #daba00 100%);
}

.rdc-type-card--b .rdc-type-card__badge {
  background-image: linear-gradient(135deg, #2b7fff 0%, #155dfc 100%);
}

.rdc-type-card--c .rdc-type-card__badge {
  background-image: linear-gradient(135deg, #e5e7eb 0%, #4a5565 100%);
}

.rdc-type-card__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1 0 0;
  min-width: 0;
}

.rdc-type-card__title {
  margin: 0;
  color: #101828;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4492px;
}

.rdc-type-card__subtitle {
  margin: 0;
  color: #6a7282;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.1504px;
}

/* Receipt mockup */
.rdc-type-card__mock {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
  height: 131px;
  padding: 26px 26px 2px;
  border: 2px solid;
  border-radius: 14px;
}

.rdc-type-card--a .rdc-type-card__mock {
  border-color: #fff085;
  background-image: linear-gradient(162deg, #fefce8 0%, #fef9c2 100%);
}

.rdc-type-card--b .rdc-type-card__mock {
  border-color: #bedbff;
  background-image: linear-gradient(162deg, #eff6ff 0%, #dbeafe 100%);
}

.rdc-type-card--c .rdc-type-card__mock {
  border-color: #e3e3e3;
  background: #fff;
}

.rdc-type-card__bar {
  display: block;
  width: 100%;
  height: 8px;
  border-radius: 999px;
}

.rdc-type-card__bar--first {
  width: 88%;
  opacity: 0.6;
}

.rdc-type-card__bar--full {
  opacity: 0.4;
}

.rdc-type-card__bar--thin {
  height: 6px;
  opacity: 0.5;
}

.rdc-type-card__mock-foot {
  margin-top: 5px;
  padding-top: 13px;
  border-top: 1px solid;
}

.rdc-type-card--a .rdc-type-card__bar { background-color: #ffdf20; }
.rdc-type-card--a .rdc-type-card__mock-foot { border-top-color: #fff085; }

.rdc-type-card--b .rdc-type-card__bar { background-color: #8ec5ff; }
.rdc-type-card--b .rdc-type-card__mock-foot { border-top-color: #bedbff; }

.rdc-type-card--c .rdc-type-card__bar { background-color: #d7d7d7; }
.rdc-type-card--c .rdc-type-card__mock-foot { border-top-color: #d7d7d7; }

/* Dark banner: Validação por categoria */
.rdc-types__banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  min-height: 256px;
  padding: 48px;
  overflow: clip;
  background-image: linear-gradient(170deg, #101828 0%, #1e2939 100%);
  border-radius: 16px;
}

.rdc-types__banner-title {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.0703px;
}

.rdc-types__banner-text {
  margin: 16px 0 0;
 /* max-width: 768px;*/
  color: #d1d5dc;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.3125px;
}

.rdc-types__banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.rdc-types__banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.1504px;
  white-space: nowrap;
}

.rdc-types__banner-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.rdc-types__banner-dot--blue {
  background: #51a2ff;
  opacity: 0.62;
}

.rdc-types__banner-dot--yellow {
  background: #fdc700;
  opacity: 0.53;
}

/* Horizontal padding inside the 1440px canvas at smaller viewports */
@media (max-width: 1439.98px) {
  .rdc-page main > section.rdc-types > .rdc-types__inner {
    padding-inline: var(--cfm-page-gutter);
  }
}

/* Narrow desktop / tablet — stack cards vertically, reduce hero typography */
@media (max-width: 1023.98px) {
  .rdc-page main > section.rdc-types > .rdc-types__inner {
    gap: 48px;
    padding: 72px var(--cfm-page-gutter);
  }

  .rdc-types__title {
    font-size: 40px;
    line-height: 48px;
  }

  .rdc-types__subtitle {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.3125px;
  }

  .rdc-types__cards {
    flex-direction: column;
    gap: 24px;
  }

  .rdc-types__banner {
    padding: 32px;
  }
}

/* Mobile fine-tuning */
@media (max-width: 639.98px) {
  .rdc-types__title {
    font-size: 32px;
    line-height: 40px;
  }

  .rdc-type-card {
    padding: 24px;
  }

  .rdc-type-card__head {
    height: auto;
    gap: 14px;
  }

  .rdc-type-card__badge {
    width: 64px;
    height: 64px;
    font-size: 28px;
    line-height: 32px;
    border-radius: 14px;
  }

  .rdc-types__banner {
    padding: 28px 24px;
  }

  .rdc-types__banner-tags {
    gap: 12px;
  }
}

/* ============================================================
   Receituários físicos (Figma 9298:33129) — pixel-perfect block
   ============================================================ */
.rdc-page main > section.rdc-physical {
  width: 100%;
  background: #fff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.rdc-page main > section.rdc-physical > .rdc-physical__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
  max-width: var(--cfm-page-max);
  margin-inline: auto;
  padding: 0 var(--cfm-page-gutter) 128px;
  box-sizing: border-box;
}

.rdc-physical__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.rdc-physical__title {
  margin: 0;
  color: #002112;
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0;
}

.rdc-physical__subtitle {
  margin: 0;
  color: #64748b;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.3125px;
}

.rdc-physical__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  width: 100%;
}

/* Green highlight card */
.rdc-physical-highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  box-sizing: border-box;
  width: 100%;
  padding: 32px;
  background-image: linear-gradient(173.66deg, #f0fdf4 0%, #ffffff 100%);
  border: 1px solid #b9f8cf;
  border-radius: 14px;
}

.rdc-physical-highlight__title {
  margin: 0;
  color: #101828;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4492px;
}

.rdc-physical-highlight__text {
  margin: 0;
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.3125px;
}

/* 3-up mini cards (Impressão / Numeração / SNCR) */
.rdc-physical-cards {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}

.rdc-physical-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
  min-width: 0;
  box-sizing: border-box;
  padding: 32px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

.rdc-physical-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  background: #f0fdf4;
  border-radius: 10px;
}

.rdc-physical-card__icon img {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.rdc-physical-card__title {
  margin: 0;
  color: #101828;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.4395px;
}

.rdc-physical-card__text {
  margin: 0;
  color: #4a5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  letter-spacing: -0.1504px;
}

/* Identificação do paciente card */
.rdc-physical-patient {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  box-sizing: border-box;
  width: 100%;
  padding: 32px;
  background: #fff;
  border: 2px solid rgba(38, 106, 74, 0.2);
  border-radius: 14px;
}

.rdc-physical-patient__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.rdc-physical-patient__icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.rdc-physical-patient__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
  min-width: 0;
}

.rdc-physical-patient__title {
  margin: 0;
  color: #101828;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4492px;
}

.rdc-physical-patient__subtitle {
  margin: 0;
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.3125px;
}

.rdc-physical-patient__items {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
}

.rdc-physical-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
  min-width: 0;
  box-sizing: border-box;
  padding: 16px;
  border-radius: 10px;
}

.rdc-physical-pill__title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3125px;
  white-space: nowrap;
}

.rdc-physical-pill__text {
  margin: 0;
  width: 100%;
  color: #4a5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.1504px;
}

.rdc-physical-pill--ok {
  background: #f0fdf4;
}

.rdc-physical-pill--ok .rdc-physical-pill__title {
  color: #266a4a;
}

.rdc-physical-pill--neutral {
  background: #f9fafb;
}

.rdc-physical-pill--neutral .rdc-physical-pill__title {
  color: #364153;
}

.rdc-physical-pill--info {
  background: #eff6ff;
}

.rdc-physical-pill--info .rdc-physical-pill__title {
  color: #1447e6;
}

/* Modelos de receituários físicos — chips de download */
.rdc-physical-models {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  box-sizing: border-box;
  width: 100%;
  padding: 32px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

.rdc-physical-models__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.rdc-physical-models__title {
  margin: 0;
  color: #101828;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4492px;
}

.rdc-physical-models__subtitle {
  margin: 0;
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.3125px;
}

.rdc-physical-models__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  width: fit-content;
  max-width: 100%;
  padding: 14px 22px;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  color: #364153;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.1504px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.rdc-physical-models__cta:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.rdc-physical-models__cta:focus-visible {
  outline: 2px solid #266a4a;
  outline-offset: 2px;
}

.rdc-physical-models__cta-label {
  min-width: 0;
}

.rdc-physical-models__cta-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.rdc-physical-models__chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.rdc-physical-models-chip {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 9999px;
  background: #fff;
  color: #364153;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.1504px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.rdc-physical-models-chip:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.rdc-physical-models-chip:focus-visible {
  outline: 2px solid #266a4a;
  outline-offset: 2px;
}

.rdc-physical-models-chip__label {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.rdc-physical-models-chip__icon {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Horizontal padding inside the 1440px canvas at smaller viewports */
@media (max-width: 1439.98px) {
  .rdc-page main > section.rdc-physical > .rdc-physical__inner {
    padding-inline: var(--cfm-page-gutter);
  }
}

/* Narrow desktop / tablet — stack cards vertically, reduce hero typography */
@media (max-width: 1023.98px) {
  .rdc-page main > section.rdc-physical > .rdc-physical__inner {
    gap: 40px;
    padding: 0 var(--cfm-page-gutter) 72px;
  }

  .rdc-physical__title {
    font-size: 40px;
    line-height: 48px;
  }

  .rdc-physical__subtitle {
    font-size: 18px;
    line-height: 26px;
  }

  .rdc-physical-cards,
  .rdc-physical-patient__items {
    flex-direction: column;
    gap: 16px;
  }

  .rdc-physical-models__chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rdc-physical-pill__title {
    white-space: normal;
  }
}

/* Mobile fine-tuning */
@media (max-width: 639.98px) {
  .rdc-physical__title {
    font-size: 32px;
    line-height: 40px;
  }

  .rdc-physical__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .rdc-physical-highlight,
  .rdc-physical-card,
  .rdc-physical-patient,
  .rdc-physical-models {
    padding: 24px;
  }

  .rdc-physical-models__chips {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Regras essenciais de prescrição (Figma 9298:33200) — pixel-perfect
   ============================================================ */
.rdc-page main > section.rdc-rules {
  width: 100%;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background-image: linear-gradient(154.24deg, #fee2e2 0%, #fff7ed 100%);
}

.rdc-page main > section.rdc-rules > .rdc-rules__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: var(--cfm-page-max);
  margin-inline: auto;
  padding: 128px var(--cfm-page-gutter);
  box-sizing: border-box;
}

.rdc-rules__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.rdc-rules__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #ffe2e2;
  border-radius: 9999px;
}

.rdc-rules__chip-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.rdc-rules__chip-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c10007;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3125px;
  text-align: center;
  white-space: nowrap;
}

.rdc-rules__heading-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.rdc-rules__title {
  margin: 0;
  width: 100%;
  color: #002112;
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0;
  text-align: center;
}

.rdc-rules__subtitle {
  margin: 0;
  width: 100%;
  color: #64748b;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.3125px;
  text-align: center;
}

.rdc-rules__cards {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}

@media (min-width: 1024px) {
  .rdc-rules__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rdc-rule-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  box-sizing: border-box;
  padding: 26px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
}

.rdc-rule-limits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  padding: 26px;
  background: #fff;
  border: 2px solid #ffa2a2;
  border-radius: 14px;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.rdc-rule-limits__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rdc-rule-limits__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .rdc-rule-limits__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1200px) {
  .rdc-rule-limits__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.rdc-rule-limits__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 14px 16px;
  background: #fff7f7;
  border: 1px solid #fecaca;
  border-radius: 12px;
}

.rdc-rule-limits__list strong {
  color: #101828;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.1504px;
}

.rdc-rule-limits__list span {
  color: #4a5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.1504px;
}

.rdc-rule-limits__note {
  margin: 0;
  padding: 14px 16px;
  background: #fff7ed;
  border-radius: 12px;
  color: #4a5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  letter-spacing: -0.1504px;
}

.rdc-rule-limits__note strong {
  color: #101828;
  font-weight: 600;
}

.rdc-rule-card--neutral {
  border-color: #e5e7eb;
}

.rdc-rule-card--danger {
  border-color: #ffa2a2;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.rdc-rule-card--full {
  width: 100%;
}

.rdc-rule-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  padding: 0 14px;
  border-radius: 14px;
}

.rdc-rule-card__icon--green {
  background: #f0fdf4;
}

.rdc-rule-card__icon--red {
  background: #ffe2e2;
}

.rdc-rule-card__icon img {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.rdc-rule-card__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
  min-width: 0;
}

.rdc-rule-card__title {
  margin: 0;
  color: #101828;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.4395px;
}

.rdc-rule-card__text {
  margin: 0;
  color: #4a5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  letter-spacing: -0.1504px;
}

/* Yellow responsibility notice */
.rdc-rules__notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
  padding: 26px;
  background: #fff;
  border: 2px solid #ffdf20;
  border-radius: 14px;
}

.rdc-rules__notice-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.rdc-rules__notice-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
  min-width: 0;
}

.rdc-rules__notice-title {
  margin: 0;
  color: #101828;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3125px;
}

.rdc-rules__notice-text {
  margin: 0;
  color: #4a5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  letter-spacing: -0.1504px;
}

/* Horizontal padding inside the 1440px canvas at smaller viewports */
@media (max-width: 1439.98px) {
  .rdc-page main > section.rdc-rules > .rdc-rules__inner {
    padding-inline: var(--cfm-page-gutter);
  }
}

/* Narrow desktop / tablet — stack cards, shrink hero typography */
@media (max-width: 1023.98px) {
  .rdc-page main > section.rdc-rules > .rdc-rules__inner {
    gap: 32px;
    padding: 72px var(--cfm-page-gutter);
  }

  .rdc-rules__title {
    font-size: 40px;
    line-height: 48px;
  }

  .rdc-rules__subtitle {
    font-size: 18px;
    line-height: 26px;
  }
}

/* Mobile fine-tuning */
@media (max-width: 639.98px) {
  .rdc-rules__title {
    font-size: 32px;
    line-height: 40px;
  }

  .rdc-rules__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .rdc-rule-card,
  .rdc-rule-limits,
  .rdc-rules__notice {
    padding: 20px;
  }
}

/* ============================================================
   Como funciona (Figma 9298:33272) — pixel-perfect block
   ============================================================ */
.rdc-page main > section.rdc-how {
  width: 100%;
  background: #fff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.rdc-page main > section.rdc-how > .rdc-how__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: var(--cfm-page-max);
  margin-inline: auto;
  padding: 128px var(--cfm-page-gutter);
  box-sizing: border-box;
}

.rdc-how__header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}

.rdc-how__title {
  margin: 0;
  width: 100%;
  color: #002112;
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0;
  text-align: center;
}

.rdc-how__subtitle {
  margin: 0;
  width: 100%;
  color: #64748b;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.3125px;
  text-align: center;
}

/* Painel diagrama */
.rdc-how__panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
  box-sizing: border-box;
  width: 100%;
  padding: 40px 48px 48px;
  border: 1px solid #d8e8df;
  border-radius: 24px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(38, 106, 74, 0.07) 0%, transparent 55%),
    radial-gradient(100% 70% at 100% 100%, rgba(21, 93, 252, 0.06) 0%, transparent 50%),
    #f4faf7;
}

.rdc-how__phase {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.rdc-how__phase-label {
  margin: 0;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.02em;
}

.rdc-how__phase--prep .rdc-how__phase-label {
  color: #266a4a;
  background: rgba(38, 106, 74, 0.12);
}

.rdc-how__phase--use .rdc-how__phase-label {
  color: #155dfc;
  background: rgba(21, 93, 252, 0.1);
}

.rdc-how__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  width: 100%;
}

.rdc-how-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 300px;
  text-align: center;
  box-sizing: border-box;
  padding: 24px 20px 22px;
  background: #fff;
  border: 1px solid rgba(38, 106, 74, 0.12);
  border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 28px rgba(15, 23, 42, 0.06);
}

.rdc-how__phase--use .rdc-how-node {
  border-color: rgba(21, 93, 252, 0.14);
}

.rdc-how-node__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background: #f4faf7;
  border: 1.5px solid rgba(38, 106, 74, 0.14);
  flex-shrink: 0;
}

.rdc-how__phase--use .rdc-how-node__icon {
  background: #f5f8ff;
  border-color: rgba(21, 93, 252, 0.16);
}

.rdc-how-node__icon img {
  display: block;
  width: 44px;
  height: 44px;
}

.rdc-how-node__num {
  position: absolute;
  top: -4px;
  left: -4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  background: #266a4a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border: 2px solid #fff;
}

.rdc-how__phase--use .rdc-how-node__num {
  background: #155dfc;
}

.rdc-how-node__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.rdc-how-node__title {
  margin: 0;
  color: #002112;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.2px;
}

.rdc-how-node__caption {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.1px;
}

/* Conector tracejado entre cards */
.rdc-how__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(28px, 4vw, 56px);
  align-self: stretch;
}

.rdc-how__link-line {
  display: block;
  width: 100%;
  height: 0;
  border-top: 2px dashed #8fbfa5;
  position: relative;
}

.rdc-how__link-line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent #8fbfa5;
}

.rdc-how__phase--use .rdc-how__link-line {
  border-top-color: #93b4f8;
}

.rdc-how__phase--use .rdc-how__link-line::after {
  border-color: transparent transparent transparent #93b4f8;
}

/* Ponte entre fases */
.rdc-how__bridge {
  display: flex;
  justify-content: center;
  padding-block: 4px;
}

.rdc-how__bridge-line {
  display: block;
  width: 3px;
  height: 36px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #8fbfa5 0%, #93b4f8 100%);
}

@media (max-width: 1439.98px) {
  .rdc-page main > section.rdc-how > .rdc-how__inner {
    padding-inline: var(--cfm-page-gutter);
  }

  .rdc-how__panel {
    padding: 36px 32px 40px;
  }
}

@media (max-width: 1023.98px) {
  .rdc-page main > section.rdc-how > .rdc-how__inner {
    gap: 40px;
    padding: 72px var(--cfm-page-gutter);
  }

  .rdc-how__title {
    font-size: 40px;
    line-height: 48px;
  }

  .rdc-how__subtitle {
    font-size: 18px;
    line-height: 26px;
  }

  .rdc-how__panel {
    padding: 28px 20px 32px;
    gap: 20px;
  }

  .rdc-how__track {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .rdc-how-node {
    flex-direction: row;
    align-items: center;
    max-width: none;
    text-align: left;
    gap: 16px;
    padding: 18px 18px 18px 16px;
  }

  .rdc-how-node__copy {
    align-items: flex-start;
  }

  .rdc-how-node__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }

  .rdc-how-node__icon img {
    width: 36px;
    height: 36px;
  }

  .rdc-how__link {
    width: auto;
    height: 24px;
    align-self: stretch;
    justify-content: center;
    margin-left: 46px;
  }

  .rdc-how__link-line {
    width: 0;
    height: 100%;
    border-top: 0;
    border-left: 2px dashed #8fbfa5;
  }

  .rdc-how__link-line::after {
    right: auto;
    left: -5px;
    top: auto;
    bottom: -1px;
    border-width: 7px 4px 0 4px;
    border-color: #8fbfa5 transparent transparent transparent;
  }

  .rdc-how__phase--use .rdc-how__link-line {
    border-left-color: #93b4f8;
  }

  .rdc-how__phase--use .rdc-how__link-line::after {
    border-color: #93b4f8 transparent transparent transparent;
  }
}

@media (max-width: 639.98px) {
  .rdc-how__title {
    font-size: 32px;
    line-height: 40px;
  }

  .rdc-how__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .rdc-how-node__title {
    font-size: 16px;
    line-height: 22px;
  }

  .rdc-how-node__caption {
    font-size: 13px;
    line-height: 18px;
  }
}

/* ============================================================
   Prescrição eletrônica (Figma 9298:33405) — pixel-perfect block
   ============================================================ */
.rdc-page main > section.rdc-pe {
  width: 100%;
  background: #fff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.rdc-page main > section.rdc-pe > .rdc-pe__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
  max-width: var(--cfm-page-max);
  margin-inline: auto;
  padding: 0 var(--cfm-page-gutter) 128px;
  box-sizing: border-box;
}

.rdc-pe__header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}

.rdc-pe__title {
  margin: 0;
  width: 100%;
  color: #002112;
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0;
  text-align: center;
}

.rdc-pe__subtitle {
  margin: 0;
  width: 100%;
  color: #64748b;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.3125px;
  text-align: center;
}

.rdc-pe__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  width: 100%;
}

/* Orange alert */
.rdc-pe-alert {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  box-sizing: border-box;
  width: 100%;
  padding: 28px 32px;
  background: #fff7f0;
  border: 1.5px solid #ff9e66;
  border-radius: 14px;
  overflow: hidden;
}

.rdc-pe-alert__title {
  margin: 0;
  color: #21170a;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}

.rdc-pe-alert__item {
  margin: 0;
  color: #4a3621;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  white-space: pre;
}

.rdc-pe-alert__note {
  margin: 0;
  color: #695742;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

/* 3 signature cards */
.rdc-pe-cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.rdc-pe-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  flex: 1 1 0;
  min-width: 0;
  box-sizing: border-box;
  padding: 26px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
}

.rdc-pe-card--red {
  border-color: #ffa2a2;
}

.rdc-pe-card--blue {
  border-color: #8ec5ff;
}

.rdc-pe-card--green {
  border-color: #7bf1a8;
}

.rdc-pe-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  border-radius: 10px;
}

.rdc-pe-card__icon--red {
  background: #ffe2e2;
}

.rdc-pe-card__icon--blue {
  background: #dbeafe;
}

.rdc-pe-card__icon--green {
  background: #dcfce7;
}

.rdc-pe-card__icon img {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.rdc-pe-card__title {
  margin: 0;
  color: #101828;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.4395px;
}

.rdc-pe-card__text {
  margin: 0;
  color: #4a5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.1504px;
}

.rdc-pe-card__foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding-top: 17px;
  border-top: 1px solid #e5e7eb;
}

.rdc-pe-card__foot-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.rdc-pe-card__foot-row img {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.rdc-pe-card__foot-label {
  color: #364153;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.rdc-pe-card__foot-text {
  margin: 0;
  color: #6a7282;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

/* Dark green panel "Qual assinatura usar em cada caso" */
.rdc-pe-dark {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-sizing: border-box;
  width: 100%;
  padding: 32px 32px 32px 32px;
  border-radius: 14px;
  background-image: linear-gradient(172.56deg, #266a4a 0%, #1f5438 100%);
}

.rdc-pe-dark__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.rdc-pe-dark__icon img {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.rdc-pe-dark__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
  min-width: 0;
}

.rdc-pe-dark__title {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4492px;
}

.rdc-pe-dark__item {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.1504px;
}

/* Light blue: Validação info card */
.rdc-pe-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
  padding: 25px;
  background: #eff6ff;
  border: 1px solid #bedbff;
  border-radius: 14px;
}

.rdc-pe-info__icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.rdc-pe-info__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
  min-width: 0;
}

.rdc-pe-info__title {
  margin: 0;
  color: #101828;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3125px;
}

.rdc-pe-info__text {
  margin: 0;
  color: #4a5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  letter-spacing: -0.1504px;
}

/* Light blue: Termos */
.rdc-pe-terms {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-sizing: border-box;
  width: 100%;
  padding: 28px 32px;
  background: #f0faff;
  border: 1px solid #bddbff;
  border-radius: 14px;
  overflow: hidden;
}

.rdc-pe-terms__title {
  margin: 0;
  color: #0f1729;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.rdc-pe-terms__subtitle {
  margin: 0;
  color: #4a576b;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.rdc-pe-terms__item {
  margin: 0;
  color: #0f613d;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  white-space: pre;
}

/* Horizontal padding inside the 1440px canvas at smaller viewports */
@media (max-width: 1439.98px) {
  .rdc-page main > section.rdc-pe > .rdc-pe__inner {
    padding-inline: var(--cfm-page-gutter);
  }

  .rdc-pe-alert,
  .rdc-pe-terms {
    overflow-x: auto;
  }
}

/* Narrow desktop / tablet — stack cards, shrink hero typography */
@media (max-width: 1023.98px) {
  .rdc-page main > section.rdc-pe > .rdc-pe__inner {
    gap: 40px;
    padding: 0 var(--cfm-page-gutter) 72px;
  }

  .rdc-pe__title {
    font-size: 40px;
    line-height: 48px;
  }

  .rdc-pe__subtitle {
    font-size: 18px;
    line-height: 26px;
  }

  .rdc-pe-cards {
    flex-direction: column;
    gap: 16px;
  }

  .rdc-pe-alert__item,
  .rdc-pe-alert__note,
  .rdc-pe-terms__subtitle,
  .rdc-pe-terms__item {
    white-space: normal;
  }
}

/* Mobile fine-tuning */
@media (max-width: 639.98px) {
  .rdc-pe__title {
    font-size: 32px;
    line-height: 40px;
  }

  .rdc-pe__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .rdc-pe-alert,
  .rdc-pe-card,
  .rdc-pe-dark,
  .rdc-pe-info,
  .rdc-pe-terms {
    padding: 20px;
  }

  .rdc-pe-dark {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============================================================
   SNCR (Figma 9298:33498) — pixel-perfect block
   ============================================================ */
.rdc-page main > section.rdc-sncr {
  width: 100%;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.rdc-page main > section.rdc-sncr > .rdc-sncr__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--rdc-section-y) var(--rdc-gutter) clamp(48px, 4.1667vw, 80px);
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.rdc-sncr__inner > * {
  width: 100%;
}

.rdc-sncr__inner {
  gap: 0;
}

.rdc-sncr__inner > .rdc-sncr__header + .rdc-sncr__body {
  margin-top: 56px;
}

.rdc-sncr__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.rdc-sncr__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #dbeafe;
  border-radius: 9999px;
}

.rdc-sncr__chip-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.rdc-sncr__chip-text {
  color: #1447e6;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3125px;
  text-align: center;
  white-space: nowrap;
}

.rdc-sncr__heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.rdc-sncr__title {
  margin: 0;
  width: 100%;
  color: #002112;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.rdc-sncr__subtitle {
  margin: 0;
  padding: 0 clamp(0px, 10.2604vw, 197px);
  color: #64748b;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.3125px;
  text-align: center;
  white-space: nowrap;
}

.rdc-sncr__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1195px;
  align-self: center;
}

.rdc-sncr__cards {
  display: flex;
  gap: clamp(16px, 1.67vw, 32px);
  align-items: stretch;
  width: 100%;
  justify-content: center;
}

.rdc-sncr-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 377px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  filter: drop-shadow(0 1px 1.5px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
  box-sizing: border-box;
}

.rdc-sncr-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  border-radius: 10px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.rdc-sncr-card__icon img {
  display: block;
  width: 24px;
  height: 24px;
}

.rdc-sncr-card__icon--blue {
  background: #eff6ff;
}

.rdc-sncr-card__icon--green {
  background: #f0fdf4;
}

.rdc-sncr-card__icon--orange {
  background: #fff7ed;
}

.rdc-sncr-card__title {
  margin: 0;
  color: #101828;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.4395px;
}

.rdc-sncr-card__text {
  margin: 0;
  color: #4a5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.1504px;
}

.rdc-sncr-timeline {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
  width: 100%;
  padding: 32px clamp(20px, 2.5vw, 40px) 36px;
  background:
    linear-gradient(165deg, rgba(38, 106, 74, 0.04) 0%, rgba(0, 184, 219, 0.04) 100%),
    #ffffff;
  border: 1px solid #cbfbf1;
  border-radius: 16px;
  box-sizing: border-box;
  overflow: hidden;
}

.rdc-sncr-timeline__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  align-items: center;
}

.rdc-sncr-timeline__title {
  margin: 0;
  color: #002112;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.4492px;
}

.rdc-sncr-timeline__intro {
  margin: 0;
  max-width: 42rem;
  color: #64748b;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.1504px;
}

.rdc-sncr-timeline__track {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  position: relative;
}

.rdc-sncr-timeline__step {
  display: grid;
  grid-template-columns: 7.5rem 1.25rem 1fr;
  column-gap: 14px;
  align-items: start;
  position: relative;
  padding: 14px 0;
}

.rdc-sncr-timeline__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: calc(7.5rem + 14px + 0.625rem - 1px);
  top: calc(14px + 0.625rem);
  bottom: -14px;
  width: 2px;
  background: linear-gradient(180deg, #86efac 0%, #cbd5e1 100%);
}

.rdc-sncr-timeline__step--done:not(:last-child)::before {
  background: #86efac;
}

.rdc-sncr-timeline__step--current:not(:last-child)::before {
  background: linear-gradient(180deg, #2b7fff 0%, #cbd5e1 100%);
}

.rdc-sncr-timeline__step--next:not(:last-child)::before {
  background: #e2e8f0;
}

.rdc-sncr-timeline__date {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  justify-self: end;
  font-variant-numeric: tabular-nums;
}

.rdc-sncr-timeline__step--done .rdc-sncr-timeline__date {
  color: #166534;
  background: rgba(0, 201, 80, 0.12);
}

.rdc-sncr-timeline__step--current .rdc-sncr-timeline__date {
  color: #1d4ed8;
  background: rgba(43, 127, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(43, 127, 255, 0.25);
}

.rdc-sncr-timeline__step--next .rdc-sncr-timeline__date {
  color: #64748b;
  background: #f1f5f9;
}

.rdc-sncr-timeline__marker {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  border: 3px solid #ffffff;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rdc-sncr-timeline__step--done .rdc-sncr-timeline__marker {
  background: #00c950;
}

.rdc-sncr-timeline__step--current .rdc-sncr-timeline__marker {
  background: #2b7fff;
  box-shadow:
    0 0 0 1px rgba(43, 127, 255, 0.2),
    0 0 0 6px rgba(43, 127, 255, 0.16);
  animation: rdc-sncr-pulse 2.2s ease-out infinite;
}

.rdc-sncr-timeline__step--next .rdc-sncr-timeline__marker {
  background: #cbd5e1;
}

.rdc-sncr-timeline__label {
  margin: 0;
  padding-top: 1px;
  color: #1a202c;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.2px;
}

.rdc-sncr-timeline__step--next .rdc-sncr-timeline__label {
  color: #475569;
  font-weight: 500;
}

.rdc-sncr-timeline__step:hover .rdc-sncr-timeline__marker {
  transform: scale(1.12);
}

@keyframes rdc-sncr-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(43, 127, 255, 0.2),
      0 0 0 6px rgba(43, 127, 255, 0.16);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(43, 127, 255, 0.25),
      0 0 0 10px rgba(43, 127, 255, 0.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rdc-sncr-timeline__step--current .rdc-sncr-timeline__marker {
    animation: none;
  }

  .rdc-sncr-timeline__step:hover .rdc-sncr-timeline__marker {
    transform: none;
  }
}

/* Desktop: horizontal track */
@media (min-width: 1024px) {
  .rdc-sncr-timeline {
    gap: 32px;
    padding: 36px 40px 40px;
  }

  .rdc-sncr-timeline__track {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
    padding: 12px 0 0;
    align-items: start;
  }

  .rdc-sncr-timeline__step {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2.75rem 1.25rem auto;
    justify-items: center;
    text-align: center;
    column-gap: 0;
    row-gap: 12px;
    padding: 0 8px;
    min-width: 0;
  }

  .rdc-sncr-timeline__step:not(:last-child)::before {
    left: calc(50% + 10px);
    right: calc(-50% + 10px);
    top: calc(2.75rem + 12px + 0.625rem - 1px);
    bottom: auto;
    width: auto;
    height: 2px;
    background: #e2e8f0;
  }

  .rdc-sncr-timeline__step--done:not(:last-child)::before {
    background: linear-gradient(90deg, #00c950 0%, #4ade80 100%);
  }

  .rdc-sncr-timeline__step--current:not(:last-child)::before {
    background: linear-gradient(90deg, #2b7fff 0%, #cbd5e1 100%);
  }

  .rdc-sncr-timeline__date {
    justify-content: center;
    justify-self: center;
    align-self: end;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .rdc-sncr-timeline__marker {
    align-self: center;
  }

  .rdc-sncr-timeline__label {
    padding-top: 0;
    font-size: 13px;
    line-height: 18px;
    max-width: 9.5rem;
  }
}

@media (min-width: 1280px) {
  .rdc-sncr-timeline__label {
    font-size: 14px;
    line-height: 20px;
    max-width: 10.5rem;
  }
}

/* Responsive — wide desktop pull-in (≤1439.98px) */
@media (max-width: 1439.98px) {
  .rdc-page main > section.rdc-sncr > .rdc-sncr__inner {
    padding-block: clamp(56px, 6.67vw, 96px);
    padding-inline: var(--cfm-page-gutter);
  }

  .rdc-sncr__subtitle {
    padding-inline: clamp(0px, 4.44vw, 64px);
    white-space: normal;
  }

  .rdc-sncr-card {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
  }
}

/* Responsive — tablet/medium (≤1023.98px) */
@media (max-width: 1023.98px) {
  .rdc-page main > section.rdc-sncr > .rdc-sncr__inner {
    padding: 72px var(--cfm-page-gutter);
  }

  .rdc-sncr__inner > .rdc-sncr__header + .rdc-sncr__body {
    margin-top: 40px;
  }

  .rdc-sncr__title {
    font-size: 36px;
    line-height: 1.15;
  }

  .rdc-sncr__subtitle {
    padding: 0;
    font-size: 18px;
    line-height: 26px;
    white-space: normal;
  }

  .rdc-sncr__cards {
    flex-direction: column;
    gap: 16px;
  }

  .rdc-sncr-card {
    width: 100%;
  }

  .rdc-sncr-timeline {
    padding: 28px 20px 32px;
  }

  .rdc-sncr-timeline__step {
    grid-template-columns: 6.75rem 1.25rem 1fr;
    column-gap: 12px;
  }

  .rdc-sncr-timeline__step:not(:last-child)::before {
    left: calc(6.75rem + 12px + 0.625rem - 1px);
  }

  .rdc-sncr-timeline__date {
    font-size: 11px;
    padding: 4px 8px;
  }
}

/* Responsive — mobile (≤639.98px) */
@media (max-width: 639.98px) {
  .rdc-page main > section.rdc-sncr > .rdc-sncr__inner {
    padding: 56px var(--cfm-page-gutter);
  }

  .rdc-sncr__title {
    font-size: 28px;
    line-height: 1.15;
  }

  .rdc-sncr__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .rdc-sncr-card {
    padding: 20px;
  }

  .rdc-sncr-timeline {
    padding: 24px 16px 28px;
    gap: 20px;
  }

  .rdc-sncr-timeline__title {
    font-size: 18px;
    line-height: 24px;
  }

  .rdc-sncr-timeline__step {
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 16px 0 16px 28px;
  }

  .rdc-sncr-timeline__step:not(:last-child)::before {
    left: 9px;
    top: 28px;
    bottom: -16px;
  }

  .rdc-sncr-timeline__date {
    justify-self: start;
    justify-content: center;
    order: 1;
  }

  .rdc-sncr-timeline__marker {
    position: absolute;
    left: 0;
    top: 20px;
    order: 0;
  }

  .rdc-sncr-timeline__label {
    order: 2;
    font-size: 14px;
    line-height: 20px;
  }
}

/* ============================================================
   Período de transição (Figma 9298:33556) — pixel-perfect block
   ============================================================ */
.rdc-page main > section.rdc-trans {
  width: 100%;
  background: #ffffff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.rdc-page main > section.rdc-trans > .rdc-trans__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: clamp(24px, 2.5vw, 48px) var(--rdc-gutter-wide) var(--rdc-section-y);
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.rdc-trans__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.rdc-trans__title {
  margin: 0;
  width: 100%;
  color: #002112;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.rdc-trans__subtitle {
  margin: 0;
  width: 100%;
  padding: 0 clamp(0px, 15.4167vw, 296px);
  color: #64748b;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.3125px;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.rdc-trans__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1194px;
  align-self: center;
}

.rdc-trans__cards {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}

.rdc-trans-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
  padding: 25px;
  border: 1px solid transparent;
  border-radius: 14px;
  box-sizing: border-box;
}

.rdc-trans-card--yellow {
  border-color: #fff085;
  background: linear-gradient(150.37deg, #fefce8 0%, #fff7ed 100%);
}

.rdc-trans-card--blue {
  border-color: #bedbff;
  background: linear-gradient(150.37deg, #eff6ff 0%, #eef2ff 100%);
}

.rdc-trans-card--purple {
  border-color: #e9d4ff;
  background: linear-gradient(150.37deg, #faf5ff 0%, #fdf2f8 100%);
}

.rdc-trans-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  border-radius: 10px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.rdc-trans-card__icon img {
  display: block;
  width: 24px;
  height: 24px;
}

.rdc-trans-card__icon--yellow {
  background: #fef9c2;
}

.rdc-trans-card__icon--blue {
  background: #dbeafe;
}

.rdc-trans-card__icon--purple {
  background: #f3e8ff;
}

.rdc-trans-card__title {
  margin: 0;
  width: 100%;
  color: #101828;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.4395px;
}

.rdc-trans-card__text {
  margin: 0;
  width: 100%;
  color: #4a5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  letter-spacing: -0.1504px;
}

.rdc-trans-todo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 24px 32px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-sizing: border-box;
}

.rdc-trans-todo__title {
  margin: 0;
  color: #101828;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3125px;
}

.rdc-trans-todo__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.rdc-trans-todo__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rdc-trans-todo__bullet {
  color: #266a4a;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.1504px;
  flex-shrink: 0;
}

.rdc-trans-todo__text {
  margin: 0;
  color: #4a5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.1504px;
  white-space: nowrap;
}

/* Responsive — wide desktop pull-in (≤1439.98px) */
@media (max-width: 1439.98px) {
  .rdc-page main > section.rdc-trans > .rdc-trans__inner {
    padding-block: clamp(32px, 4vw, 64px) clamp(56px, 6.67vw, 96px);
    padding-inline: var(--cfm-page-gutter);
  }

  .rdc-trans__subtitle {
    padding-inline: clamp(0px, 4.44vw, 64px);
    white-space: normal;
  }

  .rdc-trans-todo__text {
    white-space: normal;
  }
}

/* Responsive — tablet/medium (≤1023.98px) */
@media (max-width: 1023.98px) {
  .rdc-page main > section.rdc-trans > .rdc-trans__inner {
    padding: 0 40px 72px;
    gap: 32px;
  }

  .rdc-trans__title {
    font-size: 36px;
    line-height: 1.15;
  }

  .rdc-trans__subtitle {
    padding: 0;
    font-size: 18px;
    line-height: 26px;
    white-space: normal;
  }

  .rdc-trans__cards {
    flex-direction: column;
    gap: 16px;
  }

  .rdc-trans-card {
    width: 100%;
  }

  .rdc-trans-todo {
    padding: 20px 24px;
  }
}

/* Responsive — mobile (≤639.98px) */
@media (max-width: 639.98px) {
  .rdc-page main > section.rdc-trans > .rdc-trans__inner {
    padding: 0 20px 56px;
  }

  .rdc-trans__title {
    font-size: 28px;
  }

  .rdc-trans__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .rdc-trans-card {
    padding: 20px;
  }

  .rdc-trans-todo {
    padding: 20px;
  }

  .rdc-trans-todo__item {
    align-items: flex-start;
  }
}

/* ============================================================
   O CFM já está preparado (Figma 9298:33617) — pixel-perfect block
   ============================================================ */
.rdc-page main > section.rdc-cfm {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(158.97deg, #266a4a 0%, #266848 11.11%, #246546 22.22%, #246344 33.33%, #236042 44.44%, #225e40 55.56%, #215b3e 66.67%, #21593c 77.78%, #20563a 88.89%, #1f5438 100%);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.rdc-cfm__blobs {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1551px;
  height: 642.25px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.rdc-cfm__blob {
  position: absolute;
  display: block;
  background: #ffffff;
  border-radius: 9999px;
  filter: blur(64px);
}

.rdc-cfm__blob--tl {
  width: 288px;
  height: 288px;
  top: 40px;
  left: 40px;
}

.rdc-cfm__blob--br {
  width: 384px;
  height: 384px;
  top: 218.25px;
  left: 1127px;
}

.rdc-page main > section.rdc-cfm > .rdc-cfm__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: var(--rdc-section-y) var(--rdc-gutter-wide);
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.rdc-cfm__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.rdc-cfm__title {
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.3691px;
  text-align: center;
  white-space: nowrap;
}

.rdc-cfm__subtitle {
  margin: 0;
  color: #dcfce7;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.4395px;
  text-align: center;
  white-space: nowrap;
}

.rdc-cfm__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.rdc-cfm__cards {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}

.rdc-cfm-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 252.25px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rdc-cfm-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  flex-shrink: 0;
  box-sizing: border-box;
  margin-bottom: 16px;
}

.rdc-cfm-card__icon img {
  display: block;
  width: 28px;
  height: 28px;
}

.rdc-cfm-card__title {
  margin: 0 0 8px;
  width: 240px;
  max-width: 100%;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.4395px;
}

.rdc-cfm-card__text {
  margin: 0;
  width: 240px;
  max-width: 100%;
  color: #dcfce7;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  letter-spacing: -0.1504px;
}

.rdc-cfm-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 25px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  box-sizing: border-box;
}

.rdc-cfm-pill__icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.rdc-cfm-pill__text {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3125px;
  text-align: center;
  white-space: nowrap;
}

/* Responsive — wide desktop pull-in (≤1439.98px) */
@media (max-width: 1439.98px) {
  .rdc-page main > section.rdc-cfm > .rdc-cfm__inner {
    padding: clamp(56px, 6.67vw, 96px) clamp(40px, 5.56vw, 80px);
  }

  .rdc-cfm__title,
  .rdc-cfm__subtitle,
  .rdc-cfm-pill__text {
    white-space: normal;
  }

  .rdc-cfm-card__title,
  .rdc-cfm-card__text {
    width: 100%;
  }
}

/* Responsive — tablet/medium (≤1023.98px) */
@media (max-width: 1023.98px) {
  .rdc-page main > section.rdc-cfm > .rdc-cfm__inner {
    padding: 72px var(--cfm-page-gutter);
    gap: 32px;
  }

  .rdc-cfm__title {
    font-size: 36px;
    line-height: 44px;
  }

  .rdc-cfm__subtitle {
    font-size: 18px;
    line-height: 26px;
  }

  .rdc-cfm__cards {
    flex-wrap: wrap;
  }

  .rdc-cfm-card {
    flex: 1 1 calc(50% - 12px);
    min-width: calc(50% - 12px);
    min-height: 0;
  }

  .rdc-cfm-pill {
    padding: 12px 20px;
  }
}

/* Responsive — mobile (≤639.98px) */
@media (max-width: 639.98px) {
  .rdc-page main > section.rdc-cfm > .rdc-cfm__inner {
    padding: 56px var(--cfm-page-gutter);
  }

  .rdc-cfm__title {
    font-size: 28px;
    line-height: 36px;
  }

  .rdc-cfm__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .rdc-cfm__cards {
    flex-direction: column;
    gap: 16px;
  }

  .rdc-cfm-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .rdc-cfm-pill__text {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ============================================================
   Final CTA (Figma 9298:33852) — pixel-perfect block
   ============================================================ */
.rdc-page main > section.rdc-cta {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #266a4a;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.rdc-cta__blobs {
  position: absolute;
  top: 0;
  left: 184.5px;
  width: 1551px;
  height: 497px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.rdc-cta__blob {
  position: absolute;
  display: block;
  width: 384px;
  height: 384px;
  background: #ffffff;
  border-radius: 9999px;
  filter: blur(64px);
}

.rdc-cta__blob--a {
  top: 0;
  left: 387.75px;
}

.rdc-cta__blob--b {
  top: 113px;
  left: 779.25px;
}

.rdc-page main > section.rdc-cta > .rdc-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 128px var(--cfm-page-gutter);
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  min-height: auto;
}

.rdc-cta__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.rdc-cta__title {
  margin: 0;
  width: 100%;
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.3691px;
  text-align: center;
}

.rdc-cta__subtitle {
  margin: 0;
  width: 100%;
  color: #dcfce7;
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
  letter-spacing: -0.4492px;
  text-align: center;
}

.rdc-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 40px;
  background: #ffffff;
  border-radius: 14px;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.25));
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.rdc-cta__btn:hover {
  background: #f0fdf4;
}

.rdc-cta__btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.rdc-cta__btn-text {
  color: #266a4a;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4395px;
  text-align: center;
  white-space: nowrap;
}

.rdc-cta__btn-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.rdc-cta__pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.rdc-cta__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rdc-cta__pill-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: #7bf1a8;
  border-radius: 9999px;
  flex-shrink: 0;
}

.rdc-cta__pill-text {
  color: #dcfce7;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.1504px;
  white-space: nowrap;
}

/* Responsive — wide desktop pull-in (≤1439.98px) */
@media (max-width: 1439.98px) {
  .rdc-page main > section.rdc-cta > .rdc-cta__inner {
    padding: 96px var(--cfm-page-gutter);
  }
}

/* Responsive — tablet/medium (≤1023.98px) */
@media (max-width: 1023.98px) {
  .rdc-page main > section.rdc-cta > .rdc-cta__inner {
    padding: 72px var(--cfm-page-gutter);
    gap: 28px;
  }

  .rdc-cta__title {
    font-size: 36px;
    line-height: 1.15;
  }

  .rdc-cta__subtitle {
    font-size: 18px;
    line-height: 28px;
  }

  .rdc-cta__btn {
    padding: 16px 32px;
  }

  .rdc-cta__pills {
    gap: 20px;
  }
}

/* Responsive — mobile (≤639.98px) */
@media (max-width: 639.98px) {
  .rdc-page main > section.rdc-cta > .rdc-cta__inner {
    padding: 56px var(--cfm-page-gutter);
    gap: 24px;
  }

  .rdc-cta__title {
    font-size: 28px;
    line-height: 36px;
  }

  .rdc-cta__subtitle {
    font-size: 16px;
    line-height: 26px;
  }

  .rdc-cta__btn {
    width: 100%;
    padding: 16px 24px;
  }

  .rdc-cta__btn-text {
    white-space: normal;
    font-size: 16px;
    line-height: 24px;
  }

  .rdc-cta__pills {
    flex-direction: column;
    gap: 12px;
  }
}

.rdc-changes {
  background: #fff;
  padding: 0 var(--rdc-gutter) var(--rdc-section-y);
}

.rdc-changes__panel {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(40px, 3.75vw, 72px) var(--rdc-panel-inset);
  border-radius: 48px;
  background: #eef5f1;
}

.rdc-changes__intro {
  margin: 0 0 clamp(28px, 3vw, 40px);
}

.rdc-changes__block + .rdc-changes__block {
  margin-top: clamp(36px, 4vw, 56px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid #dbe7e0;
}

.rdc-section-heading {
  text-align: center;
}

.rdc-section-heading h2 {
  margin: 0;
  color: var(--rdc-ink);
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
}

.rdc-changes__subheading h3 {
  margin: 0;
  color: var(--rdc-ink);
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

.rdc-section-heading p {
  margin: 12px 0 0;
  color: var(--rdc-text);
  font-size: 16px;
  line-height: 24px;
}

.rdc-no-change__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.rdc-mini-card {
  display: flex;
  gap: 12px;
  min-height: 134px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.rdc-mini-card__icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--rdc-green);
  color: var(--rdc-green);
  font-size: 13px;
  font-weight: 700;
}

.rdc-mini-card h3 {
  margin: 0;
  color: #101828;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.rdc-mini-card p {
  margin: 4px 0 0;
  color: var(--rdc-text);
  font-size: 14px;
  line-height: 20px;
}

/* ============================================================
   O QUE MUDA — perguntas + modal comparativo (RDC Anvisa 1.000/25)
   ============================================================ */
.rdc-change__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.rdc-change-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid #dbe7e0;
  border-left: 4px solid var(--rdc-green);
  border-radius: 10px;
  background: #fff;
}

.rdc-change-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rdc-change-card__icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--rdc-green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.rdc-change-card__q {
  margin: 0;
  color: #101828;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.rdc-change-card__a {
  margin: 0;
  color: var(--rdc-text);
  font-size: 14px;
  line-height: 21px;
}

.rdc-changes__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: clamp(28px, 3vw, 40px);
  padding-top: clamp(24px, 2.5vw, 32px);
  text-align: center;
}

.rdc-changes__modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid var(--rdc-green);
  border-radius: 12px;
  background: #fff;
  color: var(--rdc-green);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.rdc-changes__modal-btn:hover {
  background: #f0fdf4;
}

.rdc-changes__modal-btn:focus-visible {
  outline: 2px solid var(--rdc-green);
  outline-offset: 2px;
}

.rdc-changes__cta-note {
  margin: 0;
  color: var(--rdc-text);
  font-size: 13px;
  line-height: 18px;
}

/* Modal comparativo */
.rdc-compare-dialog {
  width: min(1080px, calc(100vw - 32px));
  max-height: min(88vh, 900px);
  margin: auto;
  padding: 0;
  border: none;
  border-radius: 20px;
  background: #fff;
  color: var(--rdc-ink);
  box-shadow: 0 24px 64px rgba(0, 33, 18, 0.22);
}

.rdc-compare-dialog::backdrop {
  background: rgba(0, 33, 18, 0.55);
}

.rdc-compare-dialog__inner {
  display: flex;
  flex-direction: column;
  max-height: min(88vh, 900px);
}

.rdc-compare-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.rdc-compare-dialog__heading {
  min-width: 0;
}

.rdc-compare-dialog__title {
  margin: 0;
  color: var(--rdc-ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.rdc-compare-dialog__subtitle {
  margin: 6px 0 0;
  color: var(--rdc-text);
  font-size: 14px;
  line-height: 20px;
}

.rdc-compare-dialog__close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #101828;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.rdc-compare-dialog__close:hover {
  background: #f8fafc;
}

.rdc-compare-dialog__close:focus-visible {
  outline: 2px solid var(--rdc-green);
  outline-offset: 2px;
}

.rdc-compare-dialog__body {
  overflow: auto;
  padding: 20px 28px 28px;
}

.rdc-change-compare__scroll {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #dbe7e0;
  background: #fff;
}

.rdc-change-compare__scroll:focus-visible {
  outline: 2px solid var(--rdc-green);
  outline-offset: 2px;
}

.rdc-change-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}

.rdc-change-table__caption {
  padding: 16px 20px;
  color: var(--rdc-text);
  font-size: 13px;
  line-height: 20px;
  text-align: left;
  caption-side: top;
}

.rdc-change-table thead th {
  padding: 14px 20px;
  background: var(--rdc-green);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  text-align: left;
  vertical-align: top;
}

.rdc-change-table tbody th,
.rdc-change-table tbody td {
  padding: 14px 20px;
  border-top: 1px solid #e5e7eb;
  color: var(--rdc-text);
  line-height: 20px;
  text-align: left;
  vertical-align: top;
}

.rdc-change-table tbody th {
  color: #101828;
  font-weight: 600;
  white-space: normal;
}

.rdc-change-table tbody tr:nth-child(even) {
  background: #f6faf8;
}

.rdc-change-table tbody td:last-child {
  color: var(--rdc-green);
  font-weight: 600;
  white-space: nowrap;
}

.rdc-change__sources {
  margin-top: 24px;
  /*padding-top: 20px;
  border-top: 1px solid #e5e7eb;*/
}

.rdc-change__sources-title {
  margin: 0 0 12px;
  color: #101828;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.rdc-change__sources-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rdc-change__sources-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rdc-green);
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  text-underline-offset: 3px;
}

.rdc-change__sources-list a:hover {
  text-decoration: underline;
}

.rdc-change__sources-list a:focus-visible {
  outline: 2px solid var(--rdc-green);
  outline-offset: 2px;
  border-radius: 4px;
}

.rdc-page main > section:nth-of-type(12) > div {
  padding-top: 128px;
  padding-bottom: 128px;
}

.rdc-page main > section:nth-of-type(12) {
  background: #f9fafb !important;
}

.rdc-page main > section:nth-of-type(12) > div {
  max-width: var(--cfm-page-max);
  padding-inline: var(--cfm-page-gutter);
  box-sizing: border-box;
}

.rdc-page [data-rdc-faq-wrapper] {
  max-width: none !important;
}

.rdc-page .rdc-faq-answer p + p {
  margin-top: 0.75em;
}

.rdc-page footer {
  min-height: 253px;
  padding-top: 64px;
  padding-bottom: 32px;
}

@media (max-width: 1919.98px) {
  .rdc-changes__panel {
    padding-inline: clamp(24px, 6vw, 120px);
  }
}

@media (max-width: 1279.98px) {
  .rdc-page main > section:nth-of-type(2) > div,
  .rdc-page main > section:nth-of-type(12) > div {
    padding: 72px var(--cfm-page-gutter);
  }

  .rdc-page main > section:nth-of-type(2) h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .rdc-changes {
    padding: 0 var(--cfm-page-gutter) 72px;
  }

  .rdc-changes__panel {
    padding: 48px 24px;
    border-radius: 28px;
  }

  .rdc-no-change__cards,
  .rdc-change__cards {
    grid-template-columns: 1fr;
  }

  .rdc-section-heading h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .rdc-changes__subheading h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .rdc-compare-dialog__header,
  .rdc-compare-dialog__body {
    padding-inline: 20px;
  }

  .rdc-changes__modal-btn {
    width: 100%;
  }
}

/* ============================================================
   Mobile (≤639.98px): titles, subtitles and section headers
   left-aligned across all RDC sections
   ============================================================ */
@media (max-width: 639.98px) {
  .rdc-page main > section .rdc-section-heading,
  .rdc-page main > section .rdc-section-heading h2,
  .rdc-page main > section .rdc-section-heading p,
  .rdc-page main > section .rdc-hero__title,
  .rdc-page main > section .rdc-hero__title-lg,
  .rdc-page main > section .rdc-hero__title-md,
  .rdc-page main > section .rdc-hero__desc,
  .rdc-page main > section .rdc-types__header,
  .rdc-page main > section .rdc-types__title,
  .rdc-page main > section .rdc-types__subtitle,
  .rdc-page main > section .rdc-physical__header,
  .rdc-page main > section .rdc-physical__title,
  .rdc-page main > section .rdc-physical__subtitle,
  .rdc-page main > section .rdc-rules__header,
  .rdc-page main > section .rdc-rules__title,
  .rdc-page main > section .rdc-rules__subtitle,
  .rdc-page main > section .rdc-how__header,
  .rdc-page main > section .rdc-how__title,
  .rdc-page main > section .rdc-how__subtitle,
  .rdc-page main > section .rdc-pe__header,
  .rdc-page main > section .rdc-pe__title,
  .rdc-page main > section .rdc-pe__subtitle,
  .rdc-page main > section .rdc-sncr__header,
  .rdc-page main > section .rdc-sncr__heading-group,
  .rdc-page main > section .rdc-sncr__title,
  .rdc-page main > section .rdc-sncr__subtitle,
  .rdc-page main > section .rdc-trans__header,
  .rdc-page main > section .rdc-trans__title,
  .rdc-page main > section .rdc-trans__subtitle,
  .rdc-page main > section .rdc-cfm__header,
  .rdc-page main > section .rdc-cfm__title,
  .rdc-page main > section .rdc-cfm__subtitle,
  .rdc-page main > section .rdc-cta__header,
  .rdc-page main > section .rdc-cta__title,
  .rdc-page main > section .rdc-cta__subtitle,
  .rdc-page main > section#faq > div > div:first-child,
  .rdc-page main > section#faq > div > div:first-child h2,
  .rdc-page main > section#faq > div > div:first-child p {
    text-align: left;
    align-items: flex-start;
  }

  /* Drop the lateral px-* padding that pulled subtitles toward the
     center in Figma (these were only meaningful on desktop) */
  .rdc-page main > section .rdc-sncr__subtitle,
  .rdc-page main > section .rdc-trans__subtitle {
    padding-left: 0;
    padding-right: 0;
  }

  /* Forced line breaks that only make sense on desktop */
  .rdc-br--desktop {
    display: none;
  }
}

/* ============================================================
   Central de Ajuda (central-de-ajuda.html)
   Estilos próprios (o bundle Tailwind purgado não cobre estas
   seções). Prefixo .help-* para evitar colisões.
   ============================================================ */
.help-page .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;
}

.help-shell {
  width: 100%;
  max-width: var(--cfm-page-max);
  margin-inline: auto;
  padding-inline: var(--cfm-page-gutter);
  box-sizing: border-box;
}

/* ---------- Hero ---------- */
.help-hero {
  width: 100%;
  border-bottom: 1px solid #e2e8f0;
  background-image: radial-gradient(
      110% 120% at 50% -10%,
      rgba(220, 249, 238, 0.9) 0%,
      rgba(240, 253, 250, 0.5) 40%,
      rgba(255, 255, 255, 1) 78%
    );
}

.help-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-block: 56px 44px;
  text-align: center;
}

@media (min-width: 768px) {
  .help-hero__inner {
    padding-block: 88px 64px;
    gap: 26px;
  }
}

.help-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  border-radius: 9999px;
  border: 1px solid rgba(116, 202, 159, 0.5);
  background-image: linear-gradient(90deg, #ecfdf5 0%, #f0fdf4 100%);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: #266a4a;
}

.help-hero__badge img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.help-hero__title {
  max-width: 820px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.4px;
  color: #002112;
}

@media (min-width: 640px) {
  .help-hero__title {
    font-size: 44px;
  }
}

@media (min-width: 1024px) {
  .help-hero__title {
    font-size: 56px;
    line-height: 1.05;
  }
}

.help-hero__subtitle {
  max-width: 620px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.3125px;
  color: #4a5565;
}

@media (min-width: 640px) {
  .help-hero__subtitle {
    font-size: 18px;
  }
}

/* ---------- Search ---------- */
.help-search {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-top: 6px;
}

.help-search__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  opacity: 0.55;
}

.help-search__input {
  width: 100%;
  height: 60px;
  border-radius: 16px;
  border: 1px solid #d5dee3;
  background: #ffffff;
  padding: 0 52px 0 52px;
  font-size: 16px;
  color: #002112;
  box-shadow: 0 12px 30px -12px rgba(0, 33, 18, 0.18);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.help-search__input::placeholder {
  color: #94a3b8;
}

.help-search__input:focus {
  outline: none;
  border-color: #266a4a;
  box-shadow: 0 0 0 4px rgba(38, 106, 74, 0.12);
}

.help-search__clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.help-search__clear:hover {
  background: #e2e8f0;
}

.help-search[data-has-value="true"] .help-search__clear {
  display: inline-flex;
}

/* ---------- Category cards ---------- */
.help-cats {
  width: 100%;
  padding-block: 44px;
  background: #ffffff;
}

@media (min-width: 768px) {
  .help-cats {
    padding-block: 64px;
  }
}

.help-cats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .help-cats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .help-cats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.help-cat-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 26px 24px;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 10px 20px -14px rgba(0, 33, 18, 0.25);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.help-cat-card:hover {
  transform: translateY(-4px);
  border-color: #01bab0;
  box-shadow: 0 24px 40px -20px rgba(0, 33, 18, 0.35);
}

.help-cat-card:focus-visible {
  outline: 2px solid #266a4a;
  outline-offset: 2px;
}

.help-cat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-image: linear-gradient(135deg, #266a4a 0%, #00bc7d 100%);
  box-shadow: 0 12px 18px -8px rgba(0, 150, 100, 0.5);
}

.help-cat-card__icon img {
  width: 28px;
  height: 28px;
}

.help-cat-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.44px;
  color: #002112;
}

.help-cat-card__text {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #64748b;
}

.help-cat-card__count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.15px;
  color: #266a4a;
}

.help-cat-card__count svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s ease;
}

.help-cat-card:hover .help-cat-card__count svg {
  transform: translateX(3px);
}

/* ---------- Área dinâmica (Categoria › Assunto › Pergunta) ---------- */
.help-main {
  width: 100%;
  padding-block: 40px 64px;
  background: #f9fafb;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .help-main {
    padding-block: 48px 88px;
  }
}

/* ---------- Breadcrumb ---------- */
.help-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.4;
}

.help-breadcrumb__link {
  color: #266a4a;
  font-weight: 600;
  text-decoration: none;
}

.help-breadcrumb__link:hover {
  text-decoration: underline;
}

.help-breadcrumb__link:focus-visible {
  outline: 2px solid #266a4a;
  outline-offset: 2px;
  border-radius: 4px;
}

.help-breadcrumb__sep {
  color: #94a3b8;
}

.help-breadcrumb__current {
  color: #64748b;
  font-weight: 500;
}

/* ---------- Título de nível ---------- */
.help-level-head {
  margin-bottom: 24px;
}

.help-level-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.9px;
  color: #002112;
}

@media (min-width: 640px) {
  .help-level-title {
    font-size: 32px;
  }
}

.help-level-subtitle {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.5;
  color: #64748b;
}

/* ---------- Grade de assuntos ---------- */
.help-topics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .help-topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .help-topics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.help-topic-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 22px 22px 20px;
  text-decoration: none;
  box-shadow: 0 10px 20px -16px rgba(0, 33, 18, 0.25);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.help-topic-card:hover {
  transform: translateY(-3px);
  border-color: #01bab0;
  box-shadow: 0 22px 38px -22px rgba(0, 33, 18, 0.35);
}

.help-topic-card:focus-visible {
  outline: 2px solid #266a4a;
  outline-offset: 2px;
}

.help-topic-card__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #002112;
}

.help-topic-card__text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
}

.help-topic-card__count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #266a4a;
}

.help-topic-card__count svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s ease;
}

.help-topic-card:hover .help-topic-card__count svg {
  transform: translateX(3px);
}

/* ---------- Split: lista de perguntas + resposta ---------- */
.help-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

@media (min-width: 768px) {
  .help-split {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
    height: calc(100vh - 220px);
    min-height: 540px;
  }
}

.help-split__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .help-split__list {
    height: 100%;
    overflow-y: auto;
    padding-right: 6px;
  }
}

.help-q-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 16px;
  cursor: pointer;
  transition:
    border-color 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease;
}

.help-q-item:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.help-q-item:focus-visible {
  outline: 2px solid #266a4a;
  outline-offset: 2px;
}

.help-q-item[aria-selected="true"] {
  border-color: #266a4a;
  background: #f0fdf4;
  box-shadow: inset 3px 0 0 #266a4a;
}

.help-q-item__body {
  flex: 1;
  min-width: 0;
}

.help-q-item__text {
  display: block;
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.2px;
  color: #1a202c;
}

.help-q-item__context {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}

.help-q-item__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #94a3b8;
}

.help-q-item__chevron svg {
  width: 18px;
  height: 18px;
}

.help-q-item[aria-selected="true"] .help-q-item__chevron {
  color: #266a4a;
}

@media (min-width: 768px) {
  .help-split__detail {
    height: 100%;
    overflow-y: auto;
  }
}

.help-detail {
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 18px 40px -24px rgba(0, 33, 18, 0.35);
}

@media (min-width: 640px) {
  .help-detail {
    padding: 28px 30px;
  }
}

@media (min-width: 768px) {
  .help-detail {
    min-height: 100%;
  }
}

.help-detail__context {
  font-size: 13px;
  font-weight: 600;
  color: #266a4a;
  margin-bottom: 10px;
}

.help-detail__question {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: #002112;
  margin-bottom: 14px;
}

@media (min-width: 640px) {
  .help-detail__question {
    font-size: 22px;
  }
}

.help-detail__answer {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.1px;
  color: #4a5565;
}

@media (min-width: 640px) {
  .help-detail__answer {
    font-size: 16px;
  }
}

.help-detail__answer p {
  margin: 0 0 14px;
}

.help-detail__answer p:last-child {
  margin-bottom: 0;
}

.help-detail__answer strong,
.help-detail__answer b {
  color: #1f2937;
  font-weight: 700;
}

.help-detail__answer a {
  color: #266a4a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.help-detail__answer ul,
.help-detail__answer ol {
  margin: 0 0 14px;
  padding-left: 20px;
}

.help-detail__answer li {
  margin-bottom: 6px;
}

.help-detail__answer h4,
.help-detail__answer h5,
.help-detail__answer h6 {
  margin: 22px 0 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: #002112;
}

.help-detail__answer h4 {
  font-size: 17px;
}

.help-detail__answer h5,
.help-detail__answer h6 {
  font-size: 15px;
}

.help-detail__answer h4:first-child,
.help-detail__answer h5:first-child,
.help-detail__answer h6:first-child {
  margin-top: 0;
}

.help-detail__more {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  font-size: 14px;
  line-height: 1.5;
  color: #4a5565;
}

.help-detail__more-title {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.15px;
  color: #002112;
}

.help-detail__more-link {
  color: #266a4a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.help-detail__more-link:hover {
  color: #1f5138;
}

.help-detail__more-link:focus-visible {
  outline: 2px solid #266a4a;
  outline-offset: 2px;
  border-radius: 2px;
}

.help-answer__img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 16px 0;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.help-detail--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  text-align: center;
  color: #64748b;
  font-size: 15px;
  box-shadow: none;
  border-style: dashed;
  border-color: #cbd5e1;
}

.help-detail__back {
  display: none;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: #266a4a;
  cursor: pointer;
}

.help-detail__back svg {
  width: 18px;
  height: 18px;
  transform: rotate(180deg);
}

/* Mobile: a resposta abre sobre a lista */
@media (max-width: 767px) {
  .help-split__detail {
    display: none;
  }

  .help-split[data-open="true"] .help-split__list {
    display: none;
  }

  .help-split[data-open="true"] .help-split__detail {
    display: block;
  }

  .help-detail__back {
    display: inline-flex;
  }
}

/* Destaque de termos buscados */
.help-mark {
  background: #fdf2a1;
  color: inherit;
  border-radius: 3px;
  padding: 0 2px;
}

/* ---------- Estado vazio (busca) ---------- */
.help-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 560px;
  margin: 8px auto 0;
  border-radius: 20px;
  border: 1px dashed #cbd5e1;
  background: #ffffff;
  padding: 40px 24px;
  text-align: center;
}

.help-empty[data-visible="true"] {
  display: flex;
}

.help-empty__title {
  font-size: 18px;
  font-weight: 700;
  color: #002112;
}

.help-empty__text {
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
}

/* Tooltip do ícone (i) no hero → Documentos */
.cfm-info-tip {
  position: relative;
  vertical-align: text-bottom;
}

.cfm-info-tip__label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 20;
  transform: translateX(-50%) translateY(2px);
  padding: 6px 10px;
  border-radius: 8px;
  background: #002112;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.15px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.cfm-info-tip__label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: #002112;
}

.cfm-info-tip:hover .cfm-info-tip__label,
.cfm-info-tip:focus-visible .cfm-info-tip__label {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .cfm-info-tip__label {
    transition: none;
  }
}

/* "Como funciona" — grade de 6 passos */
.cfm-how-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 24px;
  row-gap: 56px;
}

@media (min-width: 640px) {
  .cfm-how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 72px;
  }
}

@media (min-width: 1024px) {
  .cfm-how-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 88px;
  }
}

/* ============================================================
   Acessibilidade — contraste abaixo do VLibras, no meio da tela
   ============================================================ */
.cfm-a11y {
  position: static;
}

.cfm-a11y__btn {
  box-sizing: border-box;
  position: fixed;
  right: 10px;
  top: calc(50vh + 30px);
  z-index: 99991;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 2px solid #ffffff;
  border-radius: 9999px;
  background: #6b7280;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.cfm-a11y__btn:hover {
  background: #4b5563;
}

.cfm-a11y__btn:focus-visible {
  outline: 3px solid #facc15;
  outline-offset: 3px;
}

.cfm-a11y__btn[aria-pressed="true"] {
  background: #374151;
  border-color: #facc15;
  color: #facc15;
}

.cfm-a11y__btn svg {
  width: 24px;
  height: 24px;
  display: block;
  pointer-events: none;
}

@media (max-width: 639px) {
  .cfm-a11y__btn {
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cfm-a11y__btn {
    transition: none;
  }
}

/* Alto contraste — fundo preto, texto branco, links amarelos */
html.cfm-alto-contraste,
html.cfm-alto-contraste body {
  background: #000000 !important;
  color: #ffffff !important;
}

html.cfm-alto-contraste
  *:not(img):not(svg):not(svg *):not(video):not(canvas):not(iframe):not([vw]):not([vw] *):not(#vlibras-access-wrapper) {
  background-color: #000000 !important;
  background-image: none !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

html.cfm-alto-contraste a,
html.cfm-alto-contraste a *:not(svg):not(svg *),
html.cfm-alto-contraste button,
html.cfm-alto-contraste button *:not(svg):not(svg *),
html.cfm-alto-contraste [role="button"],
html.cfm-alto-contraste [role="button"] *:not(svg):not(svg *),
html.cfm-alto-contraste summary,
html.cfm-alto-contraste [data-platform-link],
html.cfm-alto-contraste [data-platform-link] *:not(svg):not(svg *) {
  color: #ffff00 !important;
}

html.cfm-alto-contraste a:hover,
html.cfm-alto-contraste a:focus-visible,
html.cfm-alto-contraste button:hover,
html.cfm-alto-contraste button:focus-visible {
  text-decoration: underline;
}

html.cfm-alto-contraste img,
html.cfm-alto-contraste video {
  filter: contrast(1.15);
}

html.cfm-alto-contraste .cfm-a11y__btn {
  background: #000000 !important;
  border-color: #ffff00 !important;
  color: #ffff00 !important;
  box-shadow: 0 0 0 2px #ffff00 !important;
}

html.cfm-alto-contraste .cfm-a11y__btn svg {
  color: #ffff00 !important;
  filter: none !important;
}

html.cfm-alto-contraste .cfm-a11y__btn svg [stroke] {
  stroke: currentColor !important;
}

html.cfm-alto-contraste .cfm-a11y__btn svg [fill]:not([fill="none"]) {
  fill: currentColor !important;
}

html.cfm-alto-contraste input,
html.cfm-alto-contraste textarea,
html.cfm-alto-contraste select {
  background: #000000 !important;
  color: #ffffff !important;
  border: 2px solid #ffff00 !important;
}

html.cfm-alto-contraste ::placeholder {
  color: #cccccc !important;
}

/* ============================================================
   Aviso de cookies (barra inferior)
   ============================================================ */
.cfm-cookie {
  box-sizing: border-box;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99980;
  background: #079c7e;
  color: #ffffff;
  font-family: Inter, Arial, Helvetica, sans-serif;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.cfm-cookie--dismissed {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cfm-cookie__close {
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.cfm-cookie__close svg {
  display: block;
  width: 16px;
  height: 16px;
}

.cfm-cookie__close:hover {
  background: rgba(0, 0, 0, 0.18);
}

.cfm-cookie__close:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.cfm-cookie__inner {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px 24px;
  width: 100%;
  max-width: var(--cfm-page-max);
  margin: 0 auto;
  padding: 12px var(--cfm-page-gutter);
}

.cfm-cookie__text {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.15px;
  color: #ffffff;
}

.cfm-cookie__text a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.cfm-cookie__text a:hover,
.cfm-cookie__text a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cfm-cookie__text a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.cfm-cookie__btn {
  box-sizing: border-box;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  min-width: 72px;
  padding: 6px 22px;
  margin: 0 0 0 auto;
  border: 0;
  border-radius: 9999px;
  background: #0b5c4b;
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.cfm-cookie__btn:hover {
  background: #094c3e;
}

.cfm-cookie__btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .cfm-cookie__inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 10px var(--cfm-page-gutter);
  }

  .cfm-cookie__text {
    flex: 1 1 12rem;
    font-size: 13px;
    line-height: 1.35;
  }

  .cfm-cookie__btn {
    min-width: 56px;
    min-height: 28px;
    padding: 5px 16px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cfm-cookie {
    transition: none;
  }
}
