/*
 * Revisamed Inteligente — estilos compartilhados
 *
 * Cada seção é isolada pelo atributo `data-page` do elemento <html>.
 * Esse escopo permite reutilizar nomes de classes sem conflito entre páginas.
 */

/* Fonte local compartilhada por todo o projeto. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-variable-latin-ext.woff2") format("woff2-variations");
}

/* ============================================================
 * Página(s): ciclo-basico
 * ============================================================ */
html[data-page="ciclo-basico"] {
  --blue: #2f80ed;
  --blue-2: #195fc3;
  --blue-deep: #082942;
  --blue-darker: #051a2a;
  --green: #00b388;
  --green-2: #2bd4a8;
  --ink: #102939;
  --muted: #667085;
  --surface: #ffffff;
  --surface-soft: #f5f9fc;
  --surface-blue: #edf7ff;
  --border: rgba(16, 41, 57, 0.12);
  --header: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 70px rgba(8, 41, 66, 0.14);
  --max: 1240px;
  color-scheme: light;
}
html[data-page="ciclo-basico"][data-theme="dark"] {
  --ink: #f6fbff;
  --muted: #a7bac8;
  --surface: #071b2a;
  --surface-soft: #0b2335;
  --surface-blue: #0d2a40;
  --border: rgba(236, 247, 255, 0.12);
  --header: rgba(6, 24, 37, 0.92);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}
html[data-page="ciclo-basico"] * {
  box-sizing: border-box;
}
html[data-page="ciclo-basico"] {
  scroll-behavior: smooth;
}
html[data-page="ciclo-basico"] body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}
html[data-page="ciclo-basico"] body.menu-open {
  overflow: hidden;
}
html[data-page="ciclo-basico"] img {
  max-width: 100%;
}
html[data-page="ciclo-basico"] a {
  color: inherit;
  text-decoration: none;
}
html[data-page="ciclo-basico"] button,
html[data-page="ciclo-basico"] input {
  font: inherit;
}
html[data-page="ciclo-basico"] button {
  color: inherit;
}
html[data-page="ciclo-basico"] .section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
























html[data-page="ciclo-basico"] .hero-r1 {
  position: relative;
  min-height: 720px;
  margin-top: 84px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 24%,
      rgba(0, 179, 136, 0.27),
      transparent 26%
    ),
    radial-gradient(
      circle at 15% 75%,
      rgba(47, 128, 237, 0.2),
      transparent 28%
    ),
    linear-gradient(135deg, #061a2a 0%, #082d48 54%, #083a4e 100%);
}
html[data-page="ciclo-basico"] .hero-r1::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
html[data-page="ciclo-basico"] .hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
  animation: ciclo-basico-orbFloat 7s ease-in-out infinite;
}
html[data-page="ciclo-basico"] .hero-orb.one {
  width: 280px;
  height: 280px;
  right: -80px;
  top: 80px;
  border: 1px solid rgba(43, 212, 168, 0.38);
}
html[data-page="ciclo-basico"] .hero-orb.two {
  width: 160px;
  height: 160px;
  right: 34%;
  bottom: -60px;
  border: 1px solid rgba(47, 128, 237, 0.38);
  animation-delay: -2s;
}
html[data-page="ciclo-basico"] .hero-orb.three {
  width: 18px;
  height: 18px;
  background: var(--green-2);
  right: 11%;
  top: 17%;
  box-shadow: 0 0 40px rgba(43, 212, 168, 0.85);
  animation-delay: -4s;
}
@keyframes ciclo-basico-orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}
html[data-page="ciclo-basico"] .hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
  padding-block: 78px;
}
html[data-page="ciclo-basico"] .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8d9f5;
}
html[data-page="ciclo-basico"] .eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-2), var(--blue));
}
html[data-page="ciclo-basico"] .hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}
html[data-page="ciclo-basico"] .hero-copy h1 span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #fff, #a9e8db 54%, #94caff);
  -webkit-background-clip: text;
  color: transparent;
}
html[data-page="ciclo-basico"] .hero-copy > p {
  max-width: 660px;
  margin: 26px 0 0;
  color: #c2d6e2;
  font-size: 18px;
  line-height: 1.72;
}
html[data-page="ciclo-basico"] .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
html[data-page="ciclo-basico"] .hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #e5f2f8;
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}
html[data-page="ciclo-basico"] .hero-facts i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(43, 212, 168, 0.18);
  color: var(--green-2);
  font-style: normal;
}
html[data-page="ciclo-basico"] .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
html[data-page="ciclo-basico"] .btn-primary,
html[data-page="ciclo-basico"] .btn-secondary {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 850;
  transition: 0.25s;
}
html[data-page="ciclo-basico"] .btn-primary {
  background: linear-gradient(135deg, var(--green), #009b78);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 179, 136, 0.28);
}
html[data-page="ciclo-basico"] .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(0, 179, 136, 0.36);
}
html[data-page="ciclo-basico"] .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
html[data-page="ciclo-basico"] .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
html[data-page="ciclo-basico"] .hero-visual {
  position: relative;
  perspective: 1200px;
}
html[data-page="ciclo-basico"] .video-shell {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  transform: rotateY(-5deg) rotateX(1.5deg);
  animation: ciclo-basico-visualFloat 5.5s ease-in-out infinite;
}
@keyframes ciclo-basico-visualFloat {
  0%,
  100% {
    transform: rotateY(-5deg) rotateX(1.5deg) translateY(0);
  }
  50% {
    transform: rotateY(-3deg) rotateX(1deg) translateY(-10px);
  }
}
html[data-page="ciclo-basico"] .browser-bar {
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 18px 18px 0 0;
  background: rgba(4, 20, 31, 0.78);
}
html[data-page="ciclo-basico"] .browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}
html[data-page="ciclo-basico"] .browser-bar span {
  margin-left: auto;
  color: #9fb9c8;
  font-size: 10px;
  letter-spacing: 0.08em;
}
html[data-page="ciclo-basico"] .video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 0 0 19px 19px;
  background: #000;
}
html[data-page="ciclo-basico"] .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
html[data-page="ciclo-basico"] .floating-proof {
  position: absolute;
  left: -38px;
  bottom: -35px;
  width: 220px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: #102939;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
  animation: ciclo-basico-proofFloat 4.8s ease-in-out infinite;
}
@keyframes ciclo-basico-proofFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
html[data-page="ciclo-basico"] .floating-proof strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--blue-deep);
}
html[data-page="ciclo-basico"] .floating-proof span {
  display: block;
  margin-top: 7px;
  color: #617484;
  font-size: 12px;
  line-height: 1.5;
}
html[data-page="ciclo-basico"] .floating-proof .mini-stars {
  margin-top: 9px;
  color: #f5a623;
  letter-spacing: 2px;
}

html[data-page="ciclo-basico"] .quick-strip {
  position: relative;
  z-index: 5;
  margin-top: -30px;
}
html[data-page="ciclo-basico"] .quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
html[data-page="ciclo-basico"] .quick-item {
  padding: 27px 26px;
  position: relative;
}
html[data-page="ciclo-basico"] .quick-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--border);
}
html[data-page="ciclo-basico"] .quick-item small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html[data-page="ciclo-basico"] .quick-item strong {
  font-size: 18px;
  line-height: 1.3;
}

html[data-page="ciclo-basico"] section {
  position: relative;
}
html[data-page="ciclo-basico"] .section-pad {
  padding: 104px 0;
}
html[data-page="ciclo-basico"] .section-head {
  max-width: 790px;
  margin: 0 auto 50px;
  text-align: center;
}
html[data-page="ciclo-basico"] .section-head .label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
html[data-page="ciclo-basico"] .section-head .label::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="ciclo-basico"] .section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
html[data-page="ciclo-basico"] .section-head p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

html[data-page="ciclo-basico"] .why-section {
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    var(--surface-soft) 100%
  );
}
html[data-page="ciclo-basico"] .why-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
html[data-page="ciclo-basico"] .why-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="ciclo-basico"] .why-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="ciclo-basico"] .benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
html[data-page="ciclo-basico"] .benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 25px rgba(8, 41, 66, 0.05);
  transition: 0.25s;
}
html[data-page="ciclo-basico"] .benefit-item:hover {
  transform: translateX(6px);
  border-color: rgba(47, 128, 237, 0.34);
}
html[data-page="ciclo-basico"] .benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.13),
    rgba(0, 179, 136, 0.14)
  );
  color: var(--blue);
}
html[data-page="ciclo-basico"] .benefit-item h3 {
  margin: 1px 0 6px;
  font-size: 16px;
}
html[data-page="ciclo-basico"] .benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}
html[data-page="ciclo-basico"] .why-panel {
  position: relative;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #082942, #0a3b56 68%, #0d5b69);
  color: #fff;
  box-shadow: var(--shadow);
}
html[data-page="ciclo-basico"] .why-panel::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -100px;
  top: -80px;
  border-radius: 50%;
  border: 1px solid rgba(43, 212, 168, 0.35);
}
html[data-page="ciclo-basico"] .why-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -120px 20%;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.32),
    transparent 68%
  );
}
html[data-page="ciclo-basico"] .panel-kicker {
  position: relative;
  z-index: 1;
  color: #a8d8ef;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="ciclo-basico"] .why-panel h3 {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html[data-page="ciclo-basico"] .path-cards {
  --path-progress: 0%;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin-top: 30px;
  padding-left: 10px;
}
html[data-page="ciclo-basico"] .path-cards::before,
html[data-page="ciclo-basico"] .path-cards::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 30px;
  top: 34px;
  width: 3px;
  border-radius: 99px;
  pointer-events: none;
}
html[data-page="ciclo-basico"] .path-cards::before {
  bottom: 34px;
  background: rgba(255, 255, 255, 0.11);
}
html[data-page="ciclo-basico"] .path-cards::after {
  height: var(--path-progress);
  max-height: calc(100% - 68px);
  background: linear-gradient(180deg, #39a4ff 0%, #22d3b1 56%, #79f0c8 100%);
  box-shadow:
    0 0 18px rgba(43, 212, 168, 0.64),
    0 0 34px rgba(47, 128, 237, 0.25);
  transition: height 0.56s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="ciclo-basico"] .path-card {
  --path-delay: 0ms;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 76px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  cursor: pointer;
  outline: none;
  transition:
    transform 0.34s cubic-bezier(0.2, 0.85, 0.2, 1.18) var(--path-delay),
    border-color 0.3s ease var(--path-delay),
    background 0.3s ease var(--path-delay),
    box-shadow 0.3s ease var(--path-delay);
}
html[data-page="ciclo-basico"] .path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 8%,
    rgba(255, 255, 255, 0.12) 48%,
    transparent 78%
  );
  transform: translateX(-125%);
  opacity: 0;
  pointer-events: none;
}
html[data-page="ciclo-basico"] .path-card b {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: #103f58;
  color: #a9c5d4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition:
    color 0.3s ease var(--path-delay),
    background 0.3s ease var(--path-delay),
    transform 0.34s cubic-bezier(0.2, 0.85, 0.2, 1.18) var(--path-delay),
    box-shadow 0.3s ease var(--path-delay);
}
html[data-page="ciclo-basico"] .path-card strong {
  display: block;
  font-size: 14px;
  transition: color 0.3s ease var(--path-delay);
}
html[data-page="ciclo-basico"] .path-card span {
  display: block;
  margin-top: 4px;
  color: #abc4d2;
  font-size: 11px;
  transition: color 0.3s ease var(--path-delay);
}
html[data-page="ciclo-basico"] .path-card em {
  font-style: normal;
  color: #7faabd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition:
    color 0.3s ease var(--path-delay),
    transform 0.3s ease var(--path-delay);
}
html[data-page="ciclo-basico"] .path-card.is-lit,
html[data-page="ciclo-basico"] .path-card:hover,
html[data-page="ciclo-basico"] .path-card:focus-visible {
  transform: translateX(8px);
  border-color: rgba(86, 228, 187, 0.42);
  background: linear-gradient(
    105deg,
    rgba(47, 128, 237, 0.17),
    rgba(0, 179, 136, 0.14)
  );
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.17),
    0 0 0 1px rgba(105, 237, 200, 0.05) inset;
}
html[data-page="ciclo-basico"] .path-card.is-lit::after,
html[data-page="ciclo-basico"] .path-card:hover::after,
html[data-page="ciclo-basico"] .path-card:focus-visible::after {
  opacity: 1;
  animation: ciclo-basico-pathShine 0.72s ease forwards var(--path-delay);
}
html[data-page="ciclo-basico"] .path-card.is-lit b,
html[data-page="ciclo-basico"] .path-card:hover b,
html[data-page="ciclo-basico"] .path-card:focus-visible b {
  background: linear-gradient(135deg, #328ff5, var(--green));
  color: #fff;
  transform: scale(1.09) rotate(-3deg);
  box-shadow:
    0 0 0 6px rgba(47, 128, 237, 0.09),
    0 13px 27px rgba(0, 179, 136, 0.25);
}
html[data-page="ciclo-basico"] .path-card.is-lit strong {
  color: #fff;
}
html[data-page="ciclo-basico"] .path-card.is-lit span {
  color: #cfe3ec;
}
html[data-page="ciclo-basico"] .path-card.is-lit em {
  color: #9cf4dc;
  transform: translateX(-2px);
}
@keyframes ciclo-basico-pathShine {
  to {
    transform: translateX(125%);
  }
}
html[data-page="ciclo-basico"] .panel-note {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--green-2);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 0 14px 14px 0;
  color: #c9dce6;
  font-size: 13px;
  line-height: 1.65;
}

html[data-page="ciclo-basico"] .resources-section {
  background: var(--surface);
}
html[data-page="ciclo-basico"] .resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
html[data-page="ciclo-basico"] .resource-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  isolation: isolate;
  transition:
    transform 0.36s cubic-bezier(0.2, 0.85, 0.2, 1.15),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
html[data-page="ciclo-basico"] .resource-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 145px;
  height: 145px;
  right: -72px;
  top: -76px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.16),
    transparent 68%
  );
  transition:
    transform 0.45s ease,
    opacity 0.35s ease;
}
html[data-page="ciclo-basico"] .resource-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: right 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="ciclo-basico"] .resource-card:hover {
  transform: translateY(-9px);
  border-color: rgba(47, 128, 237, 0.38);
  box-shadow: 0 23px 52px rgba(8, 41, 66, 0.13);
}
html[data-page="ciclo-basico"] .resource-card:hover::before {
  transform: scale(1.22);
  opacity: 0.86;
}
html[data-page="ciclo-basico"] .resource-card:hover::after {
  right: 0;
}
html[data-page="ciclo-basico"] .resource-icon {
  position: relative;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  background: linear-gradient(145deg, #2f80ed 0%, #1d98d8 45%, #00b388 100%);
  color: #fff;
  box-shadow:
    0 14px 30px rgba(47, 128, 237, 0.23),
    0 0 0 7px rgba(47, 128, 237, 0.055);
  transform: translateZ(0);
  transition:
    transform 0.38s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
html[data-page="ciclo-basico"] .resource-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
}
html[data-page="ciclo-basico"] .resource-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  right: 8px;
  top: 8px;
  border-radius: 50%;
  background: #8cf3d6;
  box-shadow: 0 0 13px rgba(140, 243, 214, 0.95);
}
html[data-page="ciclo-basico"] .resource-icon svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.16));
}
html[data-page="ciclo-basico"] .resource-card:nth-child(2n) .resource-icon {
  background: linear-gradient(145deg, #0d8fc5, #00b388);
}
html[data-page="ciclo-basico"] .resource-card:nth-child(3n) .resource-icon {
  background: linear-gradient(145deg, #3c72e8, #0aa99a);
}
html[data-page="ciclo-basico"] .resource-card:hover .resource-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.08);
  box-shadow:
    0 20px 38px rgba(0, 179, 136, 0.25),
    0 0 0 9px rgba(0, 179, 136, 0.07);
}
html[data-page="ciclo-basico"] .resource-card h3 {
  margin: 23px 0 9px;
  font-size: 17px;
}
html[data-page="ciclo-basico"] .resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

html[data-page="ciclo-basico"] .method-section {
  overflow: hidden;
  background: linear-gradient(135deg, #edf7ff 0%, #f3fffb 52%, #eff6ff 100%);
}
html[data-page="ciclo-basico"][data-theme="dark"] .method-section {
  background: linear-gradient(135deg, #0b2335, #0c2d37 52%, #0c2537);
}
html[data-page="ciclo-basico"] .method-flow {
  --method-progress: 0%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  padding-top: 6px;
}
html[data-page="ciclo-basico"] .method-line,
html[data-page="ciclo-basico"] .method-line-fill {
  position: absolute;
  z-index: 0;
  left: calc(12.5% - 1px);
  top: 42px;
  height: 4px;
  border-radius: 99px;
}
html[data-page="ciclo-basico"] .method-line {
  right: calc(12.5% - 1px);
  background: rgba(8, 41, 66, 0.12);
}
html[data-page="ciclo-basico"][data-theme="dark"] .method-line {
  background: rgba(255, 255, 255, 0.12);
}
html[data-page="ciclo-basico"] .method-line-fill {
  width: var(--method-progress);
  max-width: calc(75% - 2px);
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 18px rgba(0, 179, 136, 0.36);
  transition: width 0.52s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="ciclo-basico"] .method-step {
  position: relative;
  z-index: 1;
  text-align: center;
  cursor: pointer;
  outline: none;
}
html[data-page="ciclo-basico"] .method-step b {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(47, 128, 237, 0.22);
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(8, 41, 66, 0.12);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
html[data-page="ciclo-basico"] .method-step b::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid transparent;
  border-radius: inherit;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease;
}
html[data-page="ciclo-basico"] .method-step.active b,
html[data-page="ciclo-basico"] .method-step:hover b,
html[data-page="ciclo-basico"] .method-step:focus-visible b {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  transform: translateY(-6px) scale(1.09);
  box-shadow:
    0 0 0 8px rgba(47, 128, 237, 0.09),
    0 19px 38px rgba(0, 179, 136, 0.22);
}
html[data-page="ciclo-basico"] .method-step.active b::before,
html[data-page="ciclo-basico"] .method-step:hover b::before,
html[data-page="ciclo-basico"] .method-step:focus-visible b::before {
  border-color: rgba(0, 179, 136, 0.32);
  transform: scale(1.04);
}
html[data-page="ciclo-basico"] .method-step h3 {
  margin: 21px 0 8px;
  font-size: 18px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
html[data-page="ciclo-basico"] .method-step p {
  margin: 0 auto;
  max-width: 250px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  transition: transform 0.3s ease;
}
html[data-page="ciclo-basico"] .method-step.active h3,
html[data-page="ciclo-basico"] .method-step:hover h3 {
  color: var(--green);
  transform: translateY(-2px);
}
html[data-page="ciclo-basico"] .method-step.active p,
html[data-page="ciclo-basico"] .method-step:hover p {
  transform: translateY(-2px);
}

html[data-page="ciclo-basico"] .pricing-section {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}
html[data-page="ciclo-basico"] .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 54px;
  align-items: start;
}
html[data-page="ciclo-basico"] .pricing-content h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
html[data-page="ciclo-basico"] .pricing-content > p {
  margin: 20px 0 0;
  max-width: 690px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="ciclo-basico"] .included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
html[data-page="ciclo-basico"] .included-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
html[data-page="ciclo-basico"] .included-list i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 179, 136, 0.12);
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}
html[data-page="ciclo-basico"] .bonus-card {
  margin-top: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  border: 1px solid rgba(47, 128, 237, 0.2);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.09),
    rgba(0, 179, 136, 0.09)
  );
}
html[data-page="ciclo-basico"] .bonus-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
}
html[data-page="ciclo-basico"] .bonus-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
}
html[data-page="ciclo-basico"] .bonus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
html[data-page="ciclo-basico"] .price-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border: 1px solid rgba(47, 128, 237, 0.22);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(8, 41, 66, 0.17);
}
html[data-page="ciclo-basico"] .price-card-top {
  padding: 26px 28px;
  background: linear-gradient(135deg, var(--blue-deep), #0c4a65);
  color: #fff;
}
html[data-page="ciclo-basico"] .price-card-top span {
  display: block;
  color: #acd1e1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="ciclo-basico"] .price-card-top h3 {
  margin: 10px 0 0;
  font-size: 28px;
}
html[data-page="ciclo-basico"] .price-body {
  padding: 28px;
}
html[data-page="ciclo-basico"] .price-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
html[data-page="ciclo-basico"] .installments {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
html[data-page="ciclo-basico"] .installments strong {
  font-size: 47px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--blue-deep);
}
html[data-page="ciclo-basico"][data-theme="dark"] .installments strong {
  color: #fff;
}
html[data-page="ciclo-basico"] .installments span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
}
html[data-page="ciclo-basico"] .cash {
  margin-top: 11px;
  color: var(--muted);
  font-size: 13px;
}
html[data-page="ciclo-basico"] .cash b {
  color: var(--ink);
}
html[data-page="ciclo-basico"] .price-benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
html[data-page="ciclo-basico"] .price-benefits span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}
html[data-page="ciclo-basico"] .price-benefits i {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}
html[data-page="ciclo-basico"] .buy-button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), #008e70);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(0, 179, 136, 0.24);
  transition: 0.25s;
}
html[data-page="ciclo-basico"] .buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(0, 179, 136, 0.34);
}
html[data-page="ciclo-basico"] .secure-note {
  margin: 14px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

html[data-page="ciclo-basico"] .numbers-section {
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(100deg, #0c6173, #2c8c88 55%, #66b59f);
}
html[data-page="ciclo-basico"] .numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="ciclo-basico"] .number-item {
  text-align: center;
  padding: 15px 20px;
}
html[data-page="ciclo-basico"] .number-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
html[data-page="ciclo-basico"] .number-item strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.05em;
}
html[data-page="ciclo-basico"] .number-item span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

html[data-page="ciclo-basico"] .teachers-section {
  background: var(--surface);
}
html[data-page="ciclo-basico"] .teacher-track-wrap {
  position: relative;
}
html[data-page="ciclo-basico"] .teacher-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
html[data-page="ciclo-basico"] .teacher-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  transition: 0.28s;
}
html[data-page="ciclo-basico"] .teacher-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 42px rgba(8, 41, 66, 0.12);
}
html[data-page="ciclo-basico"] .teacher-card img {
  width: 100%;
  aspect-ratio: 1.45/1;
  object-fit: cover;
  display: block;
  background: transparent;
}
html[data-page="ciclo-basico"] .teacher-info {
  padding: 17px 17px 20px;
}
html[data-page="ciclo-basico"] .teacher-info h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
html[data-page="ciclo-basico"] .teacher-info p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

html[data-page="ciclo-basico"] .objections-section {
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
}
html[data-page="ciclo-basico"] .objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
html[data-page="ciclo-basico"] .objection-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}
html[data-page="ciclo-basico"] .objection-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.13),
    rgba(0, 179, 136, 0.13)
  );
  color: var(--blue);
}
html[data-page="ciclo-basico"] .objection-card h3 {
  margin: 18px 0 9px;
  font-size: 19px;
  line-height: 1.35;
}
html[data-page="ciclo-basico"] .objection-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

html[data-page="ciclo-basico"] .faq-section {
  background: var(--surface);
}
html[data-page="ciclo-basico"] .faq-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 58px;
  align-items: start;
}
html[data-page="ciclo-basico"] .faq-aside {
  position: sticky;
  top: 116px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--blue-deep), #0b4b63);
  color: #fff;
  box-shadow: var(--shadow);
}
html[data-page="ciclo-basico"] .faq-aside small {
  color: #9fc7d9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="ciclo-basico"] .faq-aside h2 {
  margin: 14px 0 0;
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
html[data-page="ciclo-basico"] .faq-aside p {
  margin: 17px 0 0;
  color: #bdd2dd;
  font-size: 14px;
  line-height: 1.72;
}
html[data-page="ciclo-basico"] .faq-aside a {
  margin-top: 23px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), #009478);
  font-size: 13px;
  font-weight: 850;
}
html[data-page="ciclo-basico"] .faq-list {
  display: grid;
  gap: 10px;
}
html[data-page="ciclo-basico"] .faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
}
html[data-page="ciclo-basico"] .faq-question {
  width: 100%;
  padding: 20px 21px;
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 18px;
  align-items: center;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
html[data-page="ciclo-basico"] .faq-question strong {
  font-size: 14px;
  line-height: 1.45;
}
html[data-page="ciclo-basico"] .faq-question i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--surface-soft);
  color: var(--blue);
  font-style: normal;
  font-size: 22px;
  transition: 0.25s;
}
html[data-page="ciclo-basico"] .faq-item.open .faq-question i {
  transform: rotate(45deg);
  background: rgba(0, 179, 136, 0.12);
  color: var(--green);
}
html[data-page="ciclo-basico"] .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
html[data-page="ciclo-basico"] .faq-answer > div {
  overflow: hidden;
}
html[data-page="ciclo-basico"] .faq-answer p {
  margin: 0;
  padding: 0 21px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
html[data-page="ciclo-basico"] .faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
html[data-page="ciclo-basico"] .faq-item.open .faq-answer p {
  padding-bottom: 21px;
}

html[data-page="ciclo-basico"] .final-cta {
  padding: 0 0 104px;
  background: var(--surface);
}
html[data-page="ciclo-basico"] .final-cta-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, #071f32, #0b4560 58%, #0f7a78);
  box-shadow: var(--shadow);
}
html[data-page="ciclo-basico"] .final-cta-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -120px;
  top: -180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
html[data-page="ciclo-basico"] .final-cta-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  right: 14%;
  bottom: -100px;
  background: radial-gradient(circle, rgba(43, 212, 168, 0.3), transparent 66%);
}
html[data-page="ciclo-basico"] .final-cta-copy {
  position: relative;
  z-index: 1;
}
html[data-page="ciclo-basico"] .final-cta-copy span {
  color: #a9d8e9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
html[data-page="ciclo-basico"] .final-cta-copy h2 {
  margin: 12px 0 0;
  max-width: 780px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="ciclo-basico"] .final-cta-copy p {
  margin: 18px 0 0;
  color: #c4d9e3;
  font-size: 15px;
  line-height: 1.7;
}
html[data-page="ciclo-basico"] .final-cta .btn-primary {
  position: relative;
  z-index: 1;
  min-width: 220px;
}

html[data-page="ciclo-basico"] .brand-strip {
  padding: 27px 0 30px;
  background: #fff;
  border-top: 1px solid #dfe8ee;
  border-bottom: 1px solid #dfe8ee;
  color: #102939;
}
html[data-page="ciclo-basico"] .brand-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 1px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
html[data-page="ciclo-basico"] .brand-strip-divider {
  width: 1px;
  height: 94px;
  background: #d7e1e8;
}
html[data-page="ciclo-basico"] .brand-group h2 {
  margin: 0 0 15px;
  text-align: center;
  color: #49668f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
html[data-page="ciclo-basico"] .brand-logos {
  display: grid;
  gap: 10px;
}
html[data-page="ciclo-basico"] .institution-logos {
  grid-template-columns: repeat(5, 1fr);
}
html[data-page="ciclo-basico"] .developed-logos {
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="ciclo-basico"] .brand-logo-card {
  height: 72px;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e5ed;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(8, 41, 66, 0.05);
}
html[data-page="ciclo-basico"] .brand-logo-card img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

html[data-page="ciclo-basico"] footer {
  background: #061b2a;
  color: #fff;
}
html[data-page="ciclo-basico"] .footer-main {
  padding: 74px 0 58px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}
html[data-page="ciclo-basico"] .footer-brand img {
  width: 235px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}
html[data-page="ciclo-basico"] .footer-brand > p {
  margin: 25px 0;
  color: #9fb4c2;
  font-size: 15px;
  line-height: 1.75;
}
html[data-page="ciclo-basico"] .socials {
  display: flex;
  gap: 9px;
}
html[data-page="ciclo-basico"] .socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: #a7bdca;
  transition: 0.2s;
}
html[data-page="ciclo-basico"] .socials a:hover {
  background: var(--blue);
  color: #fff;
}
html[data-page="ciclo-basico"] .footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
html[data-page="ciclo-basico"] .footer-links h3 {
  margin: 0 0 21px;
  font-size: 15px;
}
html[data-page="ciclo-basico"] .footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
html[data-page="ciclo-basico"] .footer-links a,
html[data-page="ciclo-basico"] .footer-links span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9db2bf;
  font-size: 13px;
  line-height: 1.5;
}
html[data-page="ciclo-basico"] .footer-links a:hover {
  color: #fff;
}
html[data-page="ciclo-basico"] .footer-links small {
  margin-top: 8px;
  color: #7892a1;
  font-size: 11px;
  line-height: 1.5;
}
html[data-page="ciclo-basico"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
html[data-page="ciclo-basico"] .footer-bottom > div {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #7894a3;
  font-size: 11px;
  line-height: 1.55;
}
html[data-page="ciclo-basico"] .floating-contact {
  position: fixed;
  z-index: 80;
  right: 23px;
  bottom: 23px;
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00b388, #008e70);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0, 179, 136, 0.3);
  transition: 0.25s;
}
html[data-page="ciclo-basico"] .floating-contact:hover {
  transform: translateY(-3px);
}

html[data-page="ciclo-basico"] .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
html[data-page="ciclo-basico"] .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html[data-page="ciclo-basico"] *,
  html[data-page="ciclo-basico"] *::before,
  html[data-page="ciclo-basico"] *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  html[data-page="ciclo-basico"] .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  
  
  html[data-page="ciclo-basico"] .hero-inner {
    gap: 38px;
  }
  html[data-page="ciclo-basico"] .floating-proof {
    left: -18px;
  }
  html[data-page="ciclo-basico"] .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="ciclo-basico"] .teacher-track {
    grid-template-columns: repeat(3, 1fr);
  }
  html[data-page="ciclo-basico"] .pricing-grid {
    grid-template-columns: 1fr 390px;
    gap: 34px;
  }
  html[data-page="ciclo-basico"] .footer-main {
    grid-template-columns: 250px 1fr;
    gap: 45px;
  }
}
@media (max-width: 920px) {
  
  
  
  
  
  
  
  
  
  
  
  
  
  html[data-page="ciclo-basico"] .hero-r1,
  html[data-page="ciclo-basico"] .hero-inner {
    min-height: auto;
  }
  html[data-page="ciclo-basico"] .hero-r1 {
    margin-top: 74px;
  }
  html[data-page="ciclo-basico"] .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 76px 100px;
  }
  html[data-page="ciclo-basico"] .hero-copy {
    text-align: center;
  }
  html[data-page="ciclo-basico"] .hero-copy > p {
    margin-inline: auto;
  }
  html[data-page="ciclo-basico"] .eyebrow {
    justify-content: center;
  }
  html[data-page="ciclo-basico"] .hero-facts,
  html[data-page="ciclo-basico"] .hero-actions {
    justify-content: center;
  }
  html[data-page="ciclo-basico"] .hero-visual {
    max-width: 720px;
    margin-inline: auto;
    width: 100%;
  }
  html[data-page="ciclo-basico"] .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="ciclo-basico"] .quick-item:nth-child(2)::after {
    display: none;
  }
  html[data-page="ciclo-basico"] .quick-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="ciclo-basico"] .why-grid,
  html[data-page="ciclo-basico"] .pricing-grid,
  html[data-page="ciclo-basico"] .faq-layout {
    grid-template-columns: 1fr;
  }
  html[data-page="ciclo-basico"] .why-panel {
    min-height: auto;
  }
  html[data-page="ciclo-basico"] .price-card,
  html[data-page="ciclo-basico"] .faq-aside {
    position: relative;
    top: auto;
  }
  html[data-page="ciclo-basico"] .method-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }
  html[data-page="ciclo-basico"] .method-line,
  html[data-page="ciclo-basico"] .method-line-fill {
    display: none;
  }
  html[data-page="ciclo-basico"] .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="ciclo-basico"] .number-item:nth-child(2) {
    border-right: 0;
  }
  html[data-page="ciclo-basico"] .number-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  html[data-page="ciclo-basico"] .objection-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="ciclo-basico"] .teacher-track {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="ciclo-basico"] .brand-strip-inner {
    grid-template-columns: 1fr;
  }
  html[data-page="ciclo-basico"] .brand-strip-divider {
    width: 100%;
    height: 1px;
  }
  html[data-page="ciclo-basico"] .footer-main {
    grid-template-columns: 1fr;
  }
  html[data-page="ciclo-basico"] .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  html[data-page="ciclo-basico"] .section-shell {
    width: min(100% - 28px, var(--max));
  }
  
  
  
  
  html[data-page="ciclo-basico"] .hero-inner {
    padding-block: 60px 88px;
  }
  html[data-page="ciclo-basico"] .hero-copy h1 {
    font-size: 42px;
  }
  html[data-page="ciclo-basico"] .hero-copy > p {
    font-size: 16px;
  }
  html[data-page="ciclo-basico"] .video-shell {
    transform: none;
    animation: none;
    padding: 7px;
    border-radius: 20px;
  }
  html[data-page="ciclo-basico"] .floating-proof {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 13px;
  }
  html[data-page="ciclo-basico"] .quick-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="ciclo-basico"] .quick-item::after {
    display: none !important;
  }
  html[data-page="ciclo-basico"] .quick-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="ciclo-basico"] .section-pad {
    padding: 78px 0;
  }
  html[data-page="ciclo-basico"] .resources-grid,
  html[data-page="ciclo-basico"] .included-list,
  html[data-page="ciclo-basico"] .numbers-grid,
  html[data-page="ciclo-basico"] .teacher-track {
    grid-template-columns: 1fr;
  }
  html[data-page="ciclo-basico"] .method-flow {
    display: flex;
    gap: 14px;
    margin-inline: -14px;
    padding: 8px 14px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  html[data-page="ciclo-basico"] .method-flow::-webkit-scrollbar {
    display: none;
  }
  html[data-page="ciclo-basico"] .method-line,
  html[data-page="ciclo-basico"] .method-line-fill {
    display: none;
  }
  html[data-page="ciclo-basico"] .method-step {
    flex: 0 0 min(78vw, 286px);
    min-height: 250px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.64);
    scroll-snap-align: center;
    box-shadow: 0 14px 34px rgba(8, 41, 66, 0.07);
  }
  html[data-page="ciclo-basico"][data-theme="dark"] .method-step {
    background: rgba(255, 255, 255, 0.045);
  }
  html[data-page="ciclo-basico"] .number-item {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  html[data-page="ciclo-basico"] .number-item:last-child {
    border-bottom: 0;
  }
  html[data-page="ciclo-basico"] .pricing-content {
    text-align: center;
  }
  html[data-page="ciclo-basico"] .bonus-card {
    text-align: left;
  }
  html[data-page="ciclo-basico"] .installments strong {
    font-size: 42px;
  }
  html[data-page="ciclo-basico"] .final-cta-card {
    padding: 34px 26px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  html[data-page="ciclo-basico"] .final-cta .btn-primary {
    min-width: 0;
    width: 100%;
  }
  html[data-page="ciclo-basico"] .institution-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="ciclo-basico"]
    .institution-logos
    .brand-logo-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 5px);
    justify-self: center;
  }
  html[data-page="ciclo-basico"] .developed-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="ciclo-basico"] .footer-links {
    grid-template-columns: 1fr;
  }
  html[data-page="ciclo-basico"] .footer-bottom > div {
    padding-block: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  html[data-page="ciclo-basico"] .floating-contact span {
    display: none;
  }
  html[data-page="ciclo-basico"] .floating-contact {
    width: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* ============================================================
   Cabeçalho e rodapé globais — padrão para todas as páginas
   ============================================================ */









html[data-page="ciclo-basico"] .footer-brand > p {
  font-size: 17px !important;
  line-height: 1.75 !important;
}
html[data-page="ciclo-basico"] .footer-links h3 {
  font-size: 17px !important;
  letter-spacing: 0.01em;
}
html[data-page="ciclo-basico"] .footer-links a,
html[data-page="ciclo-basico"] .footer-links span {
  font-size: 15px !important;
  line-height: 1.62 !important;
}
html[data-page="ciclo-basico"] .footer-links small {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="ciclo-basico"] .footer-bottom > div {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="ciclo-basico"] .brand-group h2 {
  font-size: 14px !important;
}

@media (max-width: 920px) {
  
  
}

/* R1: mesma escala de H1 utilizada no hero da Home */
html[data-page="ciclo-basico"] .hero-copy h1 {
  font-size: clamp(40px, 3.4vw, 50px);
  line-height: 1.035;
  letter-spacing: -0.045em;
}

/* Informações rápidas com ícones temáticos */
html[data-page="ciclo-basico"] .quick-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 15px;
  padding: 24px 22px;
}
html[data-page="ciclo-basico"] .quick-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid currentColor;
  box-shadow: 0 10px 24px rgba(8, 41, 66, 0.08);
}
html[data-page="ciclo-basico"] .quick-icon svg {
  width: 25px;
  height: 25px;
}
html[data-page="ciclo-basico"] .quick-icon-blue {
  color: #2f80ed;
  background: rgba(47, 128, 237, 0.1);
}
html[data-page="ciclo-basico"] .quick-icon-green {
  color: #00a983;
  background: rgba(0, 179, 136, 0.11);
}
html[data-page="ciclo-basico"] .quick-icon-cyan {
  color: #0097b2;
  background: rgba(0, 151, 178, 0.11);
}
html[data-page="ciclo-basico"] .quick-icon-orange {
  color: #ef8a22;
  background: rgba(239, 138, 34, 0.11);
}
html[data-page="ciclo-basico"] .quick-item small {
  margin-bottom: 6px;
}
html[data-page="ciclo-basico"] .quick-item strong {
  display: block;
}
html[data-page="ciclo-basico"] .why-copy .benefit-list {
  margin-top: 32px;
}

@media (max-width: 640px) {
  html[data-page="ciclo-basico"] .hero-copy h1 {
    font-size: 34px;
  }
  html[data-page="ciclo-basico"] .quick-item {
    grid-template-columns: 48px 1fr;
    padding: 20px 18px;
  }
  html[data-page="ciclo-basico"] .quick-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

/* =========================================================
   PÁGINA CICLO BÁSICO
========================================================= */
html[data-page="ciclo-basico"] .hero-cb {
  position: relative;
  min-height: 720px;
  margin-top: 84px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(4, 24, 40, 0.98) 0%,
      rgba(5, 31, 51, 0.93) 39%,
      rgba(5, 38, 58, 0.48) 67%,
      rgba(5, 38, 58, 0.1) 100%
    ),
    url("../images/banner-ciclo-basico.webp") center/cover no-repeat;
}
html[data-page="ciclo-basico"] .hero-cb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(43, 212, 168, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 12% 82%,
      rgba(47, 128, 237, 0.23),
      transparent 30%
    );
  pointer-events: none;
}
html[data-page="ciclo-basico"] .hero-cb::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0 46%, transparent 78%);
}
html[data-page="ciclo-basico"] .hero-cb-inner {
  position: relative;
  z-index: 3;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  align-items: center;
  gap: 54px;
  padding-block: 78px;
}
html[data-page="ciclo-basico"] .hero-cb-copy {
  max-width: 665px;
}
html[data-page="ciclo-basico"] .hero-cb-copy h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(40px, 3.4vw, 50px);
  line-height: 1.07;
  letter-spacing: -0.045em;
  font-weight: 900;
}
html[data-page="ciclo-basico"] .hero-cb-copy h1 span {
  display: block;
  background: linear-gradient(90deg, #7ddcff, #58e3ba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
html[data-page="ciclo-basico"] .hero-cb-copy > p {
  max-width: 625px;
  margin: 24px 0 0;
  color: rgba(239, 249, 255, 0.84);
  font-size: 17px;
  line-height: 1.75;
}
html[data-page="ciclo-basico"] .hero-cb .hero-facts {
  margin-top: 25px;
}
html[data-page="ciclo-basico"] .hero-cb-visual {
  position: relative;
  min-height: 510px;
  pointer-events: none;
}
html[data-page="ciclo-basico"] .study-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 18px;
  background: rgba(6, 31, 48, 0.66);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px) saturate(145%);
  animation: ciclo-basico-cbFloat 5.8s ease-in-out infinite;
}
html[data-page="ciclo-basico"] .study-chip i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-style: normal;
  font-weight: 900;
}
html[data-page="ciclo-basico"] .study-chip span {
  display: grid;
  gap: 2px;
}
html[data-page="ciclo-basico"] .study-chip strong {
  font-size: 14px;
}
html[data-page="ciclo-basico"] .study-chip small {
  color: rgba(233, 247, 255, 0.66);
  font-size: 11px;
}
html[data-page="ciclo-basico"] .study-chip.one {
  right: 1%;
  top: 9%;
}
html[data-page="ciclo-basico"] .study-chip.two {
  left: 4%;
  bottom: 18%;
  animation-delay: -2s;
}
html[data-page="ciclo-basico"] .study-chip.three {
  right: 7%;
  bottom: 7%;
  animation-delay: -3.6s;
}
html[data-page="ciclo-basico"] .study-badge {
  position: absolute;
  left: 16%;
  top: 8%;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(47, 128, 237, 0.92),
    rgba(0, 179, 136, 0.92)
  );
  box-shadow:
    0 22px 60px rgba(0, 179, 136, 0.28),
    inset 0 0 0 8px rgba(255, 255, 255, 0.1);
  animation: ciclo-basico-badgePulse 3.6s ease-in-out infinite;
}
html[data-page="ciclo-basico"] .study-badge strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}
html[data-page="ciclo-basico"] .study-badge small {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@keyframes ciclo-basico-cbFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes ciclo-basico-badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 22px 60px rgba(0, 179, 136, 0.28),
      inset 0 0 0 8px rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow:
      0 30px 75px rgba(47, 128, 237, 0.35),
      inset 0 0 0 8px rgba(255, 255, 255, 0.14);
  }
}

html[data-page="ciclo-basico"] .cb-intro {
  background: var(--surface);
}
html[data-page="ciclo-basico"] .cb-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}
html[data-page="ciclo-basico"] .cb-benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 31px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  box-shadow: 0 15px 45px rgba(8, 41, 66, 0.08);
  transition: 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
html[data-page="ciclo-basico"] .cb-benefit-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -68px;
  top: -76px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.18),
    transparent 70%
  );
  transition: 0.35s;
}
html[data-page="ciclo-basico"] .cb-benefit-card:nth-child(2)::before {
  background: radial-gradient(circle, rgba(0, 179, 136, 0.18), transparent 70%);
}
html[data-page="ciclo-basico"] .cb-benefit-card:nth-child(3)::before {
  background: radial-gradient(
    circle,
    rgba(108, 92, 231, 0.18),
    transparent 70%
  );
}
html[data-page="ciclo-basico"] .cb-benefit-card:hover {
  transform: translateY(-9px);
  border-color: rgba(47, 128, 237, 0.34);
  box-shadow: 0 25px 65px rgba(8, 41, 66, 0.14);
}
html[data-page="ciclo-basico"] .cb-benefit-card:hover::before {
  transform: scale(1.35);
}
html[data-page="ciclo-basico"] .cb-benefit-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 14px 28px rgba(47, 128, 237, 0.25);
}
html[data-page="ciclo-basico"] .cb-benefit-card:nth-child(2) .cb-benefit-icon {
  background: linear-gradient(135deg, var(--green), #0a9476);
  box-shadow: 0 14px 28px rgba(0, 179, 136, 0.23);
}
html[data-page="ciclo-basico"] .cb-benefit-card:nth-child(3) .cb-benefit-icon {
  background: linear-gradient(135deg, #6c5ce7, #2f80ed);
  box-shadow: 0 14px 28px rgba(108, 92, 231, 0.23);
}
html[data-page="ciclo-basico"] .cb-benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="ciclo-basico"] .cb-benefit-card h3 {
  margin: 24px 0 11px;
  font-size: 21px;
  letter-spacing: -0.025em;
}
html[data-page="ciclo-basico"] .cb-benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

html[data-page="ciclo-basico"] .disciplines-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(47, 128, 237, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 94% 82%,
      rgba(0, 179, 136, 0.11),
      transparent 27%
    ),
    var(--surface-soft);
}
html[data-page="ciclo-basico"] .disciplines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}
html[data-page="ciclo-basico"] .discipline-card {
  position: relative;
  min-height: 154px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 21px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 12px 30px rgba(8, 41, 66, 0.06);
  transition: 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
}
html[data-page="ciclo-basico"] .discipline-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.32s;
}
html[data-page="ciclo-basico"] .discipline-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 179, 136, 0.34);
  box-shadow: 0 22px 48px rgba(8, 41, 66, 0.12);
}
html[data-page="ciclo-basico"] .discipline-card:hover::after {
  transform: scaleX(1);
}
html[data-page="ciclo-basico"] .discipline-icon {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(47, 128, 237, 0.18);
  border-radius: 17px;
  background: linear-gradient(
    145deg,
    rgba(47, 128, 237, 0.12),
    rgba(0, 179, 136, 0.16)
  );
  color: var(--blue);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(47, 128, 237, 0.1);
  transition:
    transform 0.34s cubic-bezier(0.2, 0.75, 0.2, 1),
    color 0.34s ease,
    background 0.34s ease,
    box-shadow 0.34s ease;
}
html[data-page="ciclo-basico"] .discipline-icon::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  top: -18px;
  right: -15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  filter: blur(2px);
}
html[data-page="ciclo-basico"] .discipline-icon svg {
  position: relative;
  z-index: 1;
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="ciclo-basico"]
  .discipline-card:nth-child(3n + 2)
  .discipline-icon {
  color: var(--green);
  background: linear-gradient(
    145deg,
    rgba(0, 179, 136, 0.12),
    rgba(47, 128, 237, 0.13)
  );
}
html[data-page="ciclo-basico"] .discipline-card:nth-child(3n) .discipline-icon {
  color: #635bdb;
  background: linear-gradient(
    145deg,
    rgba(99, 91, 219, 0.12),
    rgba(47, 128, 237, 0.12)
  );
}
html[data-page="ciclo-basico"] .discipline-card:hover .discipline-icon {
  transform: translateY(-3px) rotate(-5deg) scale(1.08);
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow:
    0 16px 32px rgba(0, 179, 136, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
html[data-page="ciclo-basico"] .discipline-card h3 {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

html[data-page="ciclo-basico"] .formats-band {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
html[data-page="ciclo-basico"] .format-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 19px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}
html[data-page="ciclo-basico"] .format-pill b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-blue);
  color: var(--blue);
}
html[data-page="ciclo-basico"] .format-pill strong {
  font-size: 14px;
}
html[data-page="ciclo-basico"] .format-pill small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

html[data-page="ciclo-basico"] .extensions-section {
  background: var(--surface);
}
html[data-page="ciclo-basico"] .extensions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}
html[data-page="ciclo-basico"] .extension-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: linear-gradient(
    155deg,
    var(--surface) 0%,
    var(--surface-soft) 100%
  );
  transition: 0.35s;
}
html[data-page="ciclo-basico"] .extension-card::before {
  content: "";
  position: absolute;
  inset: auto -55px -75px auto;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.18),
    rgba(0, 179, 136, 0.17)
  );
  filter: blur(1px);
  transition: 0.35s;
}
html[data-page="ciclo-basico"] .extension-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 58px rgba(8, 41, 66, 0.13);
  border-color: rgba(47, 128, 237, 0.34);
}
html[data-page="ciclo-basico"] .extension-card:hover::before {
  transform: scale(1.3);
}
html[data-page="ciclo-basico"] .extension-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
html[data-page="ciclo-basico"] .extension-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 13px 28px rgba(47, 128, 237, 0.24);
}
html[data-page="ciclo-basico"] .extension-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="ciclo-basico"] .extension-tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 179, 136, 0.11);
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
html[data-page="ciclo-basico"] .extension-card h3 {
  margin: 25px 0 10px;
  font-size: 20px;
  letter-spacing: -0.025em;
}
html[data-page="ciclo-basico"] .extension-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}
html[data-page="ciclo-basico"] .extension-card a {
  position: absolute;
  left: 27px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}
html[data-page="ciclo-basico"] .extension-card a:hover {
  gap: 12px;
}

html[data-page="ciclo-basico"] .cb-pricing .pricing-content > p {
  max-width: 680px;
}
html[data-page="ciclo-basico"] .cb-price-card .installments strong {
  font-size: clamp(40px, 4vw, 58px);
}
html[data-page="ciclo-basico"] .guarantee-box {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0, 179, 136, 0.09);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}
html[data-page="ciclo-basico"] .guarantee-box svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

html[data-page="ciclo-basico"] .cb-testimonials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #061b2c 0%, #0a304b 58%, #0a4b52 100%);
  color: #fff;
}
html[data-page="ciclo-basico"] .cb-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 90% 12%,
      rgba(43, 212, 168, 0.2),
      transparent 26%
    ),
    radial-gradient(circle at 8% 88%, rgba(47, 128, 237, 0.2), transparent 30%);
}
html[data-page="ciclo-basico"] .cb-testimonials .section-head {
  position: relative;
  z-index: 2;
}
html[data-page="ciclo-basico"] .cb-testimonials .section-head h2,
html[data-page="ciclo-basico"] .cb-testimonials .section-head p {
  color: #fff;
}
html[data-page="ciclo-basico"] .cb-testimonials-head {
  max-width: 1180px;
}
@media (min-width: 1025px) {
  html[data-page="ciclo-basico"] .cb-testimonials-head h2,
  html[data-page="ciclo-basico"] .cb-testimonials-head > p {
    white-space: nowrap;
  }
}
html[data-page="ciclo-basico"] .stars-row {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 14px;
  color: #ffc857;
  font-size: 22px;
  letter-spacing: 0.08em;
}
html[data-page="ciclo-basico"] .cb-carousel {
  position: relative;
  z-index: 2;
  margin-top: 38px;
}
html[data-page="ciclo-basico"] .cb-carousel-viewport {
  overflow: hidden;
}
html[data-page="ciclo-basico"] .cb-carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
html[data-page="ciclo-basico"] .cb-testimonial-slide {
  flex: 0 0 33.3333%;
  padding: 0 9px;
}
html[data-page="ciclo-basico"] .cb-testimonial-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}
html[data-page="ciclo-basico"] .cb-testimonial-card .quote {
  color: #70e6c3;
  font-size: 40px;
  line-height: 1;
}
html[data-page="ciclo-basico"] .cb-testimonial-card p {
  margin: 18px 0 26px;
  color: rgba(242, 249, 255, 0.82);
  font-size: 14px;
  line-height: 1.72;
}
html[data-page="ciclo-basico"] .student-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
html[data-page="ciclo-basico"] .student-meta b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
}
html[data-page="ciclo-basico"] .student-meta strong {
  display: block;
  font-size: 13px;
}
html[data-page="ciclo-basico"] .student-meta small {
  display: block;
  margin-top: 3px;
  color: rgba(234, 247, 255, 0.58);
  font-size: 10px;
}
html[data-page="ciclo-basico"] .demo-note {
  display: inline-flex;
  margin-top: 8px;
  color: rgba(234, 247, 255, 0.42) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 8px !important;
}
html[data-page="ciclo-basico"] .cb-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
html[data-page="ciclo-basico"] .cb-carousel-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: 0.25s;
}
html[data-page="ciclo-basico"] .cb-carousel-arrow:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-color: transparent;
}

html[data-page="ciclo-basico"] .cb-ecosystem {
  background: var(--surface-soft);
}
html[data-page="ciclo-basico"] .ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
html[data-page="ciclo-basico"] .ecosystem-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 26px;
  color: #fff;
  box-shadow: 0 18px 48px rgba(8, 41, 66, 0.16);
}
html[data-page="ciclo-basico"] .ecosystem-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
html[data-page="ciclo-basico"] .ecosystem-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(3, 17, 29, 0.9) 100%
  );
}
html[data-page="ciclo-basico"] .ecosystem-card:hover img {
  transform: scale(1.06);
}
html[data-page="ciclo-basico"] .ecosystem-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
}
html[data-page="ciclo-basico"] .ecosystem-copy small {
  color: #84e7c9;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
html[data-page="ciclo-basico"] .ecosystem-copy h3 {
  margin: 8px 0 5px;
  font-size: 22px;
}
html[data-page="ciclo-basico"] .ecosystem-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  html[data-page="ciclo-basico"] .hero-cb-inner {
    grid-template-columns: 1fr 0.7fr;
    gap: 20px;
  }
  html[data-page="ciclo-basico"] .study-chip.one {
    right: -15%;
  }
  html[data-page="ciclo-basico"] .study-chip.two {
    left: -5%;
  }
  html[data-page="ciclo-basico"] .disciplines-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  html[data-page="ciclo-basico"] .extensions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="ciclo-basico"] .cb-testimonial-slide {
    flex-basis: 50%;
  }
}
@media (max-width: 820px) {
  html[data-page="ciclo-basico"] .hero-cb {
    min-height: auto;
    background-position: 68% center;
  }
  html[data-page="ciclo-basico"] .hero-cb::before {
    background: linear-gradient(
      180deg,
      rgba(4, 24, 40, 0.3),
      rgba(4, 24, 40, 0.94) 62%
    );
  }
  html[data-page="ciclo-basico"] .hero-cb-inner {
    min-height: 760px;
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 230px;
    padding-bottom: 74px;
  }
  html[data-page="ciclo-basico"] .hero-cb-copy {
    max-width: 680px;
  }
  html[data-page="ciclo-basico"] .hero-cb-visual {
    display: none;
  }
  html[data-page="ciclo-basico"] .cb-benefit-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="ciclo-basico"] .disciplines-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="ciclo-basico"] .formats-band {
    grid-template-columns: 1fr;
  }
  html[data-page="ciclo-basico"] .ecosystem-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  html[data-page="ciclo-basico"] .hero-cb {
    background-position: 72% center;
  }
  html[data-page="ciclo-basico"] .hero-cb-inner {
    min-height: 700px;
    padding-top: 235px;
  }
  html[data-page="ciclo-basico"] .hero-cb-copy h1 {
    font-size: 34px;
  }
  html[data-page="ciclo-basico"] .hero-cb-copy > p {
    font-size: 15px;
    line-height: 1.65;
  }
  html[data-page="ciclo-basico"] .disciplines-grid,
  html[data-page="ciclo-basico"] .extensions-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="ciclo-basico"] .discipline-card {
    min-height: 130px;
  }
  html[data-page="ciclo-basico"] .cb-testimonial-slide {
    flex-basis: 100%;
  }
}

/* Cabeçalho centralizado no limite de 1240 px */
@media (min-width: 921px) {
  
  
  
  
  
  
}

/* ============================================================
 * Página(s): curso-r1
 * ============================================================ */
html[data-page="curso-r1"] {
  --blue: #2f80ed;
  --blue-2: #195fc3;
  --blue-deep: #082942;
  --blue-darker: #051a2a;
  --green: #00b388;
  --green-2: #2bd4a8;
  --ink: #102939;
  --muted: #667085;
  --surface: #ffffff;
  --surface-soft: #f5f9fc;
  --surface-blue: #edf7ff;
  --border: rgba(16, 41, 57, 0.12);
  --header: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 70px rgba(8, 41, 66, 0.14);
  --max: 1240px;
  color-scheme: light;
}
html[data-page="curso-r1"][data-theme="dark"] {
  --ink: #f6fbff;
  --muted: #a7bac8;
  --surface: #071b2a;
  --surface-soft: #0b2335;
  --surface-blue: #0d2a40;
  --border: rgba(236, 247, 255, 0.12);
  --header: rgba(6, 24, 37, 0.92);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}
html[data-page="curso-r1"] * {
  box-sizing: border-box;
}
html[data-page="curso-r1"] {
  scroll-behavior: smooth;
}
html[data-page="curso-r1"] body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}
html[data-page="curso-r1"] body.menu-open {
  overflow: hidden;
}
html[data-page="curso-r1"] img {
  max-width: 100%;
}
html[data-page="curso-r1"] a {
  color: inherit;
  text-decoration: none;
}
html[data-page="curso-r1"] button,
html[data-page="curso-r1"] input {
  font: inherit;
}
html[data-page="curso-r1"] button {
  color: inherit;
}
html[data-page="curso-r1"] .section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
























html[data-page="curso-r1"] .hero-r1 {
  position: relative;
  min-height: 720px;
  margin-top: 84px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 24%,
      rgba(0, 179, 136, 0.27),
      transparent 26%
    ),
    radial-gradient(
      circle at 15% 75%,
      rgba(47, 128, 237, 0.2),
      transparent 28%
    ),
    linear-gradient(135deg, #061a2a 0%, #082d48 54%, #083a4e 100%);
}
html[data-page="curso-r1"] .hero-r1::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
html[data-page="curso-r1"] .hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
  animation: curso-r1-orbFloat 7s ease-in-out infinite;
}
html[data-page="curso-r1"] .hero-orb.one {
  width: 280px;
  height: 280px;
  right: -80px;
  top: 80px;
  border: 1px solid rgba(43, 212, 168, 0.38);
}
html[data-page="curso-r1"] .hero-orb.two {
  width: 160px;
  height: 160px;
  right: 34%;
  bottom: -60px;
  border: 1px solid rgba(47, 128, 237, 0.38);
  animation-delay: -2s;
}
html[data-page="curso-r1"] .hero-orb.three {
  width: 18px;
  height: 18px;
  background: var(--green-2);
  right: 11%;
  top: 17%;
  box-shadow: 0 0 40px rgba(43, 212, 168, 0.85);
  animation-delay: -4s;
}
@keyframes curso-r1-orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}
html[data-page="curso-r1"] .hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
  padding-block: 78px;
}
html[data-page="curso-r1"] .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8d9f5;
}
html[data-page="curso-r1"] .eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-2), var(--blue));
}
html[data-page="curso-r1"] .hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}
html[data-page="curso-r1"] .hero-copy h1 span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #fff, #a9e8db 54%, #94caff);
  -webkit-background-clip: text;
  color: transparent;
}
html[data-page="curso-r1"] .hero-copy > p {
  max-width: 660px;
  margin: 26px 0 0;
  color: #c2d6e2;
  font-size: 18px;
  line-height: 1.72;
}
html[data-page="curso-r1"] .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
html[data-page="curso-r1"] .hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #e5f2f8;
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}
html[data-page="curso-r1"] .hero-facts i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(43, 212, 168, 0.18);
  color: var(--green-2);
  font-style: normal;
}
html[data-page="curso-r1"] .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
html[data-page="curso-r1"] .btn-primary,
html[data-page="curso-r1"] .btn-secondary {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 850;
  transition: 0.25s;
}
html[data-page="curso-r1"] .btn-primary {
  background: linear-gradient(135deg, var(--green), #009b78);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 179, 136, 0.28);
}
html[data-page="curso-r1"] .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(0, 179, 136, 0.36);
}
html[data-page="curso-r1"] .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
html[data-page="curso-r1"] .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
html[data-page="curso-r1"] .hero-visual {
  position: relative;
  perspective: 1200px;
}
html[data-page="curso-r1"] .video-shell {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  transform: rotateY(-5deg) rotateX(1.5deg);
  animation: curso-r1-visualFloat 5.5s ease-in-out infinite;
}
@keyframes curso-r1-visualFloat {
  0%,
  100% {
    transform: rotateY(-5deg) rotateX(1.5deg) translateY(0);
  }
  50% {
    transform: rotateY(-3deg) rotateX(1deg) translateY(-10px);
  }
}
html[data-page="curso-r1"] .browser-bar {
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 18px 18px 0 0;
  background: rgba(4, 20, 31, 0.78);
}
html[data-page="curso-r1"] .browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}
html[data-page="curso-r1"] .browser-bar span {
  margin-left: auto;
  color: #9fb9c8;
  font-size: 10px;
  letter-spacing: 0.08em;
}
html[data-page="curso-r1"] .video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 0 0 19px 19px;
  background: #000;
}
html[data-page="curso-r1"] .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
html[data-page="curso-r1"] .floating-proof {
  position: absolute;
  left: -38px;
  bottom: -35px;
  width: 220px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: #102939;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
  animation: curso-r1-proofFloat 4.8s ease-in-out infinite;
}
@keyframes curso-r1-proofFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
html[data-page="curso-r1"] .floating-proof strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--blue-deep);
}
html[data-page="curso-r1"] .floating-proof span {
  display: block;
  margin-top: 7px;
  color: #617484;
  font-size: 12px;
  line-height: 1.5;
}
html[data-page="curso-r1"] .floating-proof .mini-stars {
  margin-top: 9px;
  color: #f5a623;
  letter-spacing: 2px;
}

html[data-page="curso-r1"] .quick-strip {
  position: relative;
  z-index: 5;
  margin-top: -30px;
}
html[data-page="curso-r1"] .quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
html[data-page="curso-r1"] .quick-item {
  padding: 27px 26px;
  position: relative;
}
html[data-page="curso-r1"] .quick-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--border);
}
html[data-page="curso-r1"] .quick-item small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html[data-page="curso-r1"] .quick-item strong {
  font-size: 18px;
  line-height: 1.3;
}

html[data-page="curso-r1"] section {
  position: relative;
}
html[data-page="curso-r1"] .section-pad {
  padding: 104px 0;
}
html[data-page="curso-r1"] .section-head {
  max-width: 790px;
  margin: 0 auto 50px;
  text-align: center;
}
html[data-page="curso-r1"] .section-head .label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
html[data-page="curso-r1"] .section-head .label::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="curso-r1"] .section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
html[data-page="curso-r1"] .section-head p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

html[data-page="curso-r1"] .why-section {
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    var(--surface-soft) 100%
  );
}
html[data-page="curso-r1"] .why-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
html[data-page="curso-r1"] .why-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="curso-r1"] .why-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="curso-r1"] .benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
html[data-page="curso-r1"] .benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 25px rgba(8, 41, 66, 0.05);
  transition: 0.25s;
}
html[data-page="curso-r1"] .benefit-item:hover {
  transform: translateX(6px);
  border-color: rgba(47, 128, 237, 0.34);
}
html[data-page="curso-r1"] .benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.13),
    rgba(0, 179, 136, 0.14)
  );
  color: var(--blue);
}
html[data-page="curso-r1"] .benefit-item h3 {
  margin: 1px 0 6px;
  font-size: 16px;
}
html[data-page="curso-r1"] .benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}
html[data-page="curso-r1"] .why-panel {
  position: relative;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #082942, #0a3b56 68%, #0d5b69);
  color: #fff;
  box-shadow: var(--shadow);
}
html[data-page="curso-r1"] .why-panel::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -100px;
  top: -80px;
  border-radius: 50%;
  border: 1px solid rgba(43, 212, 168, 0.35);
}
html[data-page="curso-r1"] .why-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -120px 20%;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.32),
    transparent 68%
  );
}
html[data-page="curso-r1"] .panel-kicker {
  position: relative;
  z-index: 1;
  color: #a8d8ef;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="curso-r1"] .why-panel h3 {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html[data-page="curso-r1"] .path-cards {
  --path-progress: 0%;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin-top: 30px;
  padding-left: 10px;
}
html[data-page="curso-r1"] .path-cards::before,
html[data-page="curso-r1"] .path-cards::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 30px;
  top: 34px;
  width: 3px;
  border-radius: 99px;
  pointer-events: none;
}
html[data-page="curso-r1"] .path-cards::before {
  bottom: 34px;
  background: rgba(255, 255, 255, 0.11);
}
html[data-page="curso-r1"] .path-cards::after {
  height: var(--path-progress);
  max-height: calc(100% - 68px);
  background: linear-gradient(180deg, #39a4ff 0%, #22d3b1 56%, #79f0c8 100%);
  box-shadow:
    0 0 18px rgba(43, 212, 168, 0.64),
    0 0 34px rgba(47, 128, 237, 0.25);
  transition: height 0.56s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="curso-r1"] .path-card {
  --path-delay: 0ms;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 76px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  cursor: pointer;
  outline: none;
  transition:
    transform 0.34s cubic-bezier(0.2, 0.85, 0.2, 1.18) var(--path-delay),
    border-color 0.3s ease var(--path-delay),
    background 0.3s ease var(--path-delay),
    box-shadow 0.3s ease var(--path-delay);
}
html[data-page="curso-r1"] .path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 8%,
    rgba(255, 255, 255, 0.12) 48%,
    transparent 78%
  );
  transform: translateX(-125%);
  opacity: 0;
  pointer-events: none;
}
html[data-page="curso-r1"] .path-card b {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: #103f58;
  color: #a9c5d4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition:
    color 0.3s ease var(--path-delay),
    background 0.3s ease var(--path-delay),
    transform 0.34s cubic-bezier(0.2, 0.85, 0.2, 1.18) var(--path-delay),
    box-shadow 0.3s ease var(--path-delay);
}
html[data-page="curso-r1"] .path-card strong {
  display: block;
  font-size: 14px;
  transition: color 0.3s ease var(--path-delay);
}
html[data-page="curso-r1"] .path-card span {
  display: block;
  margin-top: 4px;
  color: #abc4d2;
  font-size: 11px;
  transition: color 0.3s ease var(--path-delay);
}
html[data-page="curso-r1"] .path-card em {
  font-style: normal;
  color: #7faabd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition:
    color 0.3s ease var(--path-delay),
    transform 0.3s ease var(--path-delay);
}
html[data-page="curso-r1"] .path-card.is-lit,
html[data-page="curso-r1"] .path-card:hover,
html[data-page="curso-r1"] .path-card:focus-visible {
  transform: translateX(8px);
  border-color: rgba(86, 228, 187, 0.42);
  background: linear-gradient(
    105deg,
    rgba(47, 128, 237, 0.17),
    rgba(0, 179, 136, 0.14)
  );
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.17),
    0 0 0 1px rgba(105, 237, 200, 0.05) inset;
}
html[data-page="curso-r1"] .path-card.is-lit::after,
html[data-page="curso-r1"] .path-card:hover::after,
html[data-page="curso-r1"] .path-card:focus-visible::after {
  opacity: 1;
  animation: curso-r1-pathShine 0.72s ease forwards var(--path-delay);
}
html[data-page="curso-r1"] .path-card.is-lit b,
html[data-page="curso-r1"] .path-card:hover b,
html[data-page="curso-r1"] .path-card:focus-visible b {
  background: linear-gradient(135deg, #328ff5, var(--green));
  color: #fff;
  transform: scale(1.09) rotate(-3deg);
  box-shadow:
    0 0 0 6px rgba(47, 128, 237, 0.09),
    0 13px 27px rgba(0, 179, 136, 0.25);
}
html[data-page="curso-r1"] .path-card.is-lit strong {
  color: #fff;
}
html[data-page="curso-r1"] .path-card.is-lit span {
  color: #cfe3ec;
}
html[data-page="curso-r1"] .path-card.is-lit em {
  color: #9cf4dc;
  transform: translateX(-2px);
}
@keyframes curso-r1-pathShine {
  to {
    transform: translateX(125%);
  }
}
html[data-page="curso-r1"] .panel-note {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--green-2);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 0 14px 14px 0;
  color: #c9dce6;
  font-size: 13px;
  line-height: 1.65;
}

html[data-page="curso-r1"] .resources-section {
  background: var(--surface);
}
html[data-page="curso-r1"] .resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
html[data-page="curso-r1"] .resource-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  isolation: isolate;
  transition:
    transform 0.36s cubic-bezier(0.2, 0.85, 0.2, 1.15),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
html[data-page="curso-r1"] .resource-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 145px;
  height: 145px;
  right: -72px;
  top: -76px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.16),
    transparent 68%
  );
  transition:
    transform 0.45s ease,
    opacity 0.35s ease;
}
html[data-page="curso-r1"] .resource-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: right 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="curso-r1"] .resource-card:hover {
  transform: translateY(-9px);
  border-color: rgba(47, 128, 237, 0.38);
  box-shadow: 0 23px 52px rgba(8, 41, 66, 0.13);
}
html[data-page="curso-r1"] .resource-card:hover::before {
  transform: scale(1.22);
  opacity: 0.86;
}
html[data-page="curso-r1"] .resource-card:hover::after {
  right: 0;
}
html[data-page="curso-r1"] .resource-icon {
  position: relative;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  background: linear-gradient(145deg, #2f80ed 0%, #1d98d8 45%, #00b388 100%);
  color: #fff;
  box-shadow:
    0 14px 30px rgba(47, 128, 237, 0.23),
    0 0 0 7px rgba(47, 128, 237, 0.055);
  transform: translateZ(0);
  transition:
    transform 0.38s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
html[data-page="curso-r1"] .resource-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
}
html[data-page="curso-r1"] .resource-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  right: 8px;
  top: 8px;
  border-radius: 50%;
  background: #8cf3d6;
  box-shadow: 0 0 13px rgba(140, 243, 214, 0.95);
}
html[data-page="curso-r1"] .resource-icon svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.16));
}
html[data-page="curso-r1"] .resource-card:nth-child(2n) .resource-icon {
  background: linear-gradient(145deg, #0d8fc5, #00b388);
}
html[data-page="curso-r1"] .resource-card:nth-child(3n) .resource-icon {
  background: linear-gradient(145deg, #3c72e8, #0aa99a);
}
html[data-page="curso-r1"] .resource-card:hover .resource-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.08);
  box-shadow:
    0 20px 38px rgba(0, 179, 136, 0.25),
    0 0 0 9px rgba(0, 179, 136, 0.07);
}
html[data-page="curso-r1"] .resource-card h3 {
  margin: 23px 0 9px;
  font-size: 17px;
}
html[data-page="curso-r1"] .resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

html[data-page="curso-r1"] .method-section {
  overflow: hidden;
  background: linear-gradient(135deg, #edf7ff 0%, #f3fffb 52%, #eff6ff 100%);
}
html[data-page="curso-r1"][data-theme="dark"] .method-section {
  background: linear-gradient(135deg, #0b2335, #0c2d37 52%, #0c2537);
}
html[data-page="curso-r1"] .method-flow {
  --method-progress: 0%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  padding-top: 6px;
}
html[data-page="curso-r1"] .method-line,
html[data-page="curso-r1"] .method-line-fill {
  position: absolute;
  z-index: 0;
  left: calc(12.5% - 1px);
  top: 42px;
  height: 4px;
  border-radius: 99px;
}
html[data-page="curso-r1"] .method-line {
  right: calc(12.5% - 1px);
  background: rgba(8, 41, 66, 0.12);
}
html[data-page="curso-r1"][data-theme="dark"] .method-line {
  background: rgba(255, 255, 255, 0.12);
}
html[data-page="curso-r1"] .method-line-fill {
  width: var(--method-progress);
  max-width: calc(75% - 2px);
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 18px rgba(0, 179, 136, 0.36);
  transition: width 0.52s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="curso-r1"] .method-step {
  position: relative;
  z-index: 1;
  text-align: center;
  cursor: pointer;
  outline: none;
}
html[data-page="curso-r1"] .method-step b {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(47, 128, 237, 0.22);
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(8, 41, 66, 0.12);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
html[data-page="curso-r1"] .method-step b::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid transparent;
  border-radius: inherit;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease;
}
html[data-page="curso-r1"] .method-step.active b,
html[data-page="curso-r1"] .method-step:hover b,
html[data-page="curso-r1"] .method-step:focus-visible b {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  transform: translateY(-6px) scale(1.09);
  box-shadow:
    0 0 0 8px rgba(47, 128, 237, 0.09),
    0 19px 38px rgba(0, 179, 136, 0.22);
}
html[data-page="curso-r1"] .method-step.active b::before,
html[data-page="curso-r1"] .method-step:hover b::before,
html[data-page="curso-r1"] .method-step:focus-visible b::before {
  border-color: rgba(0, 179, 136, 0.32);
  transform: scale(1.04);
}
html[data-page="curso-r1"] .method-step h3 {
  margin: 21px 0 8px;
  font-size: 18px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
html[data-page="curso-r1"] .method-step p {
  margin: 0 auto;
  max-width: 250px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  transition: transform 0.3s ease;
}
html[data-page="curso-r1"] .method-step.active h3,
html[data-page="curso-r1"] .method-step:hover h3 {
  color: var(--green);
  transform: translateY(-2px);
}
html[data-page="curso-r1"] .method-step.active p,
html[data-page="curso-r1"] .method-step:hover p {
  transform: translateY(-2px);
}

html[data-page="curso-r1"] .pricing-section {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}
html[data-page="curso-r1"] .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 54px;
  align-items: start;
}
html[data-page="curso-r1"] .pricing-content h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
html[data-page="curso-r1"] .pricing-content > p {
  margin: 20px 0 0;
  max-width: 690px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="curso-r1"] .included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
html[data-page="curso-r1"] .included-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
html[data-page="curso-r1"] .included-list i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 179, 136, 0.12);
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}
html[data-page="curso-r1"] .bonus-card {
  margin-top: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  border: 1px solid rgba(47, 128, 237, 0.2);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.09),
    rgba(0, 179, 136, 0.09)
  );
}
html[data-page="curso-r1"] .bonus-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
}
html[data-page="curso-r1"] .bonus-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
}
html[data-page="curso-r1"] .bonus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
html[data-page="curso-r1"] .price-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border: 1px solid rgba(47, 128, 237, 0.22);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(8, 41, 66, 0.17);
}
html[data-page="curso-r1"] .price-card-top {
  padding: 26px 28px;
  background: linear-gradient(135deg, var(--blue-deep), #0c4a65);
  color: #fff;
}
html[data-page="curso-r1"] .price-card-top span {
  display: block;
  color: #acd1e1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="curso-r1"] .price-card-top h3 {
  margin: 10px 0 0;
  font-size: 28px;
}
html[data-page="curso-r1"] .price-body {
  padding: 28px;
}
html[data-page="curso-r1"] .price-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
html[data-page="curso-r1"] .installments {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
html[data-page="curso-r1"] .installments strong {
  font-size: 47px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--blue-deep);
}
html[data-page="curso-r1"][data-theme="dark"] .installments strong {
  color: #fff;
}
html[data-page="curso-r1"] .installments span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
}
html[data-page="curso-r1"] .cash {
  margin-top: 11px;
  color: var(--muted);
  font-size: 13px;
}
html[data-page="curso-r1"] .cash b {
  color: var(--ink);
}
html[data-page="curso-r1"] .price-benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
html[data-page="curso-r1"] .price-benefits span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}
html[data-page="curso-r1"] .price-benefits i {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}
html[data-page="curso-r1"] .buy-button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), #008e70);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(0, 179, 136, 0.24);
  transition: 0.25s;
}
html[data-page="curso-r1"] .buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(0, 179, 136, 0.34);
}
html[data-page="curso-r1"] .secure-note {
  margin: 14px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

html[data-page="curso-r1"] .numbers-section {
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(100deg, #0c6173, #2c8c88 55%, #66b59f);
}
html[data-page="curso-r1"] .numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="curso-r1"] .number-item {
  text-align: center;
  padding: 15px 20px;
}
html[data-page="curso-r1"] .number-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
html[data-page="curso-r1"] .number-item strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.05em;
}
html[data-page="curso-r1"] .number-item span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

html[data-page="curso-r1"] .teachers-section {
  background: var(--surface);
}
html[data-page="curso-r1"] .teacher-track-wrap {
  position: relative;
}
html[data-page="curso-r1"] .teacher-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
html[data-page="curso-r1"] .teacher-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  transition: 0.28s;
}
html[data-page="curso-r1"] .teacher-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 42px rgba(8, 41, 66, 0.12);
}
html[data-page="curso-r1"] .teacher-card img {
  width: 100%;
  aspect-ratio: 1.45/1;
  object-fit: cover;
  display: block;
  background: transparent;
}
html[data-page="curso-r1"] .teacher-info {
  padding: 17px 17px 20px;
}
html[data-page="curso-r1"] .teacher-info h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
html[data-page="curso-r1"] .teacher-info p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

html[data-page="curso-r1"] .objections-section {
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
}
html[data-page="curso-r1"] .objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
html[data-page="curso-r1"] .objection-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}
html[data-page="curso-r1"] .objection-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.13),
    rgba(0, 179, 136, 0.13)
  );
  color: var(--blue);
}
html[data-page="curso-r1"] .objection-card h3 {
  margin: 18px 0 9px;
  font-size: 19px;
  line-height: 1.35;
}
html[data-page="curso-r1"] .objection-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

html[data-page="curso-r1"] .faq-section {
  background: var(--surface);
}
html[data-page="curso-r1"] .faq-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 58px;
  align-items: start;
}
html[data-page="curso-r1"] .faq-aside {
  position: sticky;
  top: 116px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--blue-deep), #0b4b63);
  color: #fff;
  box-shadow: var(--shadow);
}
html[data-page="curso-r1"] .faq-aside small {
  color: #9fc7d9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="curso-r1"] .faq-aside h2 {
  margin: 14px 0 0;
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
html[data-page="curso-r1"] .faq-aside p {
  margin: 17px 0 0;
  color: #bdd2dd;
  font-size: 14px;
  line-height: 1.72;
}
html[data-page="curso-r1"] .faq-aside a {
  margin-top: 23px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), #009478);
  font-size: 13px;
  font-weight: 850;
}
html[data-page="curso-r1"] .faq-list {
  display: grid;
  gap: 10px;
}
html[data-page="curso-r1"] .faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
}
html[data-page="curso-r1"] .faq-question {
  width: 100%;
  padding: 20px 21px;
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 18px;
  align-items: center;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
html[data-page="curso-r1"] .faq-question strong {
  font-size: 14px;
  line-height: 1.45;
}
html[data-page="curso-r1"] .faq-question i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--surface-soft);
  color: var(--blue);
  font-style: normal;
  font-size: 22px;
  transition: 0.25s;
}
html[data-page="curso-r1"] .faq-item.open .faq-question i {
  transform: rotate(45deg);
  background: rgba(0, 179, 136, 0.12);
  color: var(--green);
}
html[data-page="curso-r1"] .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
html[data-page="curso-r1"] .faq-answer > div {
  overflow: hidden;
}
html[data-page="curso-r1"] .faq-answer p {
  margin: 0;
  padding: 0 21px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
html[data-page="curso-r1"] .faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
html[data-page="curso-r1"] .faq-item.open .faq-answer p {
  padding-bottom: 21px;
}

html[data-page="curso-r1"] .final-cta {
  padding: 0 0 104px;
  background: var(--surface);
}
html[data-page="curso-r1"] .final-cta-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, #071f32, #0b4560 58%, #0f7a78);
  box-shadow: var(--shadow);
}
html[data-page="curso-r1"] .final-cta-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -120px;
  top: -180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
html[data-page="curso-r1"] .final-cta-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  right: 14%;
  bottom: -100px;
  background: radial-gradient(circle, rgba(43, 212, 168, 0.3), transparent 66%);
}
html[data-page="curso-r1"] .final-cta-copy {
  position: relative;
  z-index: 1;
}
html[data-page="curso-r1"] .final-cta-copy span {
  color: #a9d8e9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
html[data-page="curso-r1"] .final-cta-copy h2 {
  margin: 12px 0 0;
  max-width: 780px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="curso-r1"] .final-cta-copy p {
  margin: 18px 0 0;
  color: #c4d9e3;
  font-size: 15px;
  line-height: 1.7;
}
html[data-page="curso-r1"] .final-cta .btn-primary {
  position: relative;
  z-index: 1;
  min-width: 220px;
}

html[data-page="curso-r1"] .brand-strip {
  padding: 27px 0 30px;
  background: #fff;
  border-top: 1px solid #dfe8ee;
  border-bottom: 1px solid #dfe8ee;
  color: #102939;
}
html[data-page="curso-r1"] .brand-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 1px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
html[data-page="curso-r1"] .brand-strip-divider {
  width: 1px;
  height: 94px;
  background: #d7e1e8;
}
html[data-page="curso-r1"] .brand-group h2 {
  margin: 0 0 15px;
  text-align: center;
  color: #49668f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
html[data-page="curso-r1"] .brand-logos {
  display: grid;
  gap: 10px;
}
html[data-page="curso-r1"] .institution-logos {
  grid-template-columns: repeat(5, 1fr);
}
html[data-page="curso-r1"] .developed-logos {
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="curso-r1"] .brand-logo-card {
  height: 72px;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e5ed;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(8, 41, 66, 0.05);
}
html[data-page="curso-r1"] .brand-logo-card img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

html[data-page="curso-r1"] footer {
  background: #061b2a;
  color: #fff;
}
html[data-page="curso-r1"] .footer-main {
  padding: 74px 0 58px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}
html[data-page="curso-r1"] .footer-brand img {
  width: 235px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}
html[data-page="curso-r1"] .footer-brand > p {
  margin: 25px 0;
  color: #9fb4c2;
  font-size: 15px;
  line-height: 1.75;
}
html[data-page="curso-r1"] .socials {
  display: flex;
  gap: 9px;
}
html[data-page="curso-r1"] .socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: #a7bdca;
  transition: 0.2s;
}
html[data-page="curso-r1"] .socials a:hover {
  background: var(--blue);
  color: #fff;
}
html[data-page="curso-r1"] .footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
html[data-page="curso-r1"] .footer-links h3 {
  margin: 0 0 21px;
  font-size: 15px;
}
html[data-page="curso-r1"] .footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
html[data-page="curso-r1"] .footer-links a,
html[data-page="curso-r1"] .footer-links span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9db2bf;
  font-size: 13px;
  line-height: 1.5;
}
html[data-page="curso-r1"] .footer-links a:hover {
  color: #fff;
}
html[data-page="curso-r1"] .footer-links small {
  margin-top: 8px;
  color: #7892a1;
  font-size: 11px;
  line-height: 1.5;
}
html[data-page="curso-r1"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
html[data-page="curso-r1"] .footer-bottom > div {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #7894a3;
  font-size: 11px;
  line-height: 1.55;
}
html[data-page="curso-r1"] .floating-contact {
  position: fixed;
  z-index: 80;
  right: 23px;
  bottom: 23px;
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00b388, #008e70);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0, 179, 136, 0.3);
  transition: 0.25s;
}
html[data-page="curso-r1"] .floating-contact:hover {
  transform: translateY(-3px);
}

html[data-page="curso-r1"] .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
html[data-page="curso-r1"] .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html[data-page="curso-r1"] *,
  html[data-page="curso-r1"] *::before,
  html[data-page="curso-r1"] *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  html[data-page="curso-r1"] .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  
  
  html[data-page="curso-r1"] .hero-inner {
    gap: 38px;
  }
  html[data-page="curso-r1"] .floating-proof {
    left: -18px;
  }
  html[data-page="curso-r1"] .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="curso-r1"] .teacher-track {
    grid-template-columns: repeat(3, 1fr);
  }
  html[data-page="curso-r1"] .pricing-grid {
    grid-template-columns: 1fr 390px;
    gap: 34px;
  }
  html[data-page="curso-r1"] .footer-main {
    grid-template-columns: 250px 1fr;
    gap: 45px;
  }
}
@media (max-width: 920px) {
  
  
  
  
  
  
  
  
  
  
  
  
  
  html[data-page="curso-r1"] .hero-r1,
  html[data-page="curso-r1"] .hero-inner {
    min-height: auto;
  }
  html[data-page="curso-r1"] .hero-r1 {
    margin-top: 74px;
  }
  html[data-page="curso-r1"] .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 76px 100px;
  }
  html[data-page="curso-r1"] .hero-copy {
    text-align: center;
  }
  html[data-page="curso-r1"] .hero-copy > p {
    margin-inline: auto;
  }
  html[data-page="curso-r1"] .eyebrow {
    justify-content: center;
  }
  html[data-page="curso-r1"] .hero-facts,
  html[data-page="curso-r1"] .hero-actions {
    justify-content: center;
  }
  html[data-page="curso-r1"] .hero-visual {
    max-width: 720px;
    margin-inline: auto;
    width: 100%;
  }
  html[data-page="curso-r1"] .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="curso-r1"] .quick-item:nth-child(2)::after {
    display: none;
  }
  html[data-page="curso-r1"] .quick-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="curso-r1"] .why-grid,
  html[data-page="curso-r1"] .pricing-grid,
  html[data-page="curso-r1"] .faq-layout {
    grid-template-columns: 1fr;
  }
  html[data-page="curso-r1"] .why-panel {
    min-height: auto;
  }
  html[data-page="curso-r1"] .price-card,
  html[data-page="curso-r1"] .faq-aside {
    position: relative;
    top: auto;
  }
  html[data-page="curso-r1"] .method-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }
  html[data-page="curso-r1"] .method-line,
  html[data-page="curso-r1"] .method-line-fill {
    display: none;
  }
  html[data-page="curso-r1"] .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="curso-r1"] .number-item:nth-child(2) {
    border-right: 0;
  }
  html[data-page="curso-r1"] .number-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  html[data-page="curso-r1"] .objection-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="curso-r1"] .teacher-track {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="curso-r1"] .brand-strip-inner {
    grid-template-columns: 1fr;
  }
  html[data-page="curso-r1"] .brand-strip-divider {
    width: 100%;
    height: 1px;
  }
  html[data-page="curso-r1"] .footer-main {
    grid-template-columns: 1fr;
  }
  html[data-page="curso-r1"] .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  html[data-page="curso-r1"] .section-shell {
    width: min(100% - 28px, var(--max));
  }
  
  
  
  
  html[data-page="curso-r1"] .hero-inner {
    padding-block: 60px 88px;
  }
  html[data-page="curso-r1"] .hero-copy h1 {
    font-size: 42px;
  }
  html[data-page="curso-r1"] .hero-copy > p {
    font-size: 16px;
  }
  html[data-page="curso-r1"] .video-shell {
    transform: none;
    animation: none;
    padding: 7px;
    border-radius: 20px;
  }
  html[data-page="curso-r1"] .floating-proof {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 13px;
  }
  html[data-page="curso-r1"] .quick-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="curso-r1"] .quick-item::after {
    display: none !important;
  }
  html[data-page="curso-r1"] .quick-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="curso-r1"] .section-pad {
    padding: 78px 0;
  }
  html[data-page="curso-r1"] .resources-grid,
  html[data-page="curso-r1"] .included-list,
  html[data-page="curso-r1"] .numbers-grid,
  html[data-page="curso-r1"] .teacher-track {
    grid-template-columns: 1fr;
  }
  html[data-page="curso-r1"] .method-flow {
    display: flex;
    gap: 14px;
    margin-inline: -14px;
    padding: 8px 14px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  html[data-page="curso-r1"] .method-flow::-webkit-scrollbar {
    display: none;
  }
  html[data-page="curso-r1"] .method-line,
  html[data-page="curso-r1"] .method-line-fill {
    display: none;
  }
  html[data-page="curso-r1"] .method-step {
    flex: 0 0 min(78vw, 286px);
    min-height: 250px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.64);
    scroll-snap-align: center;
    box-shadow: 0 14px 34px rgba(8, 41, 66, 0.07);
  }
  html[data-page="curso-r1"][data-theme="dark"] .method-step {
    background: rgba(255, 255, 255, 0.045);
  }
  html[data-page="curso-r1"] .number-item {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  html[data-page="curso-r1"] .number-item:last-child {
    border-bottom: 0;
  }
  html[data-page="curso-r1"] .pricing-content {
    text-align: center;
  }
  html[data-page="curso-r1"] .bonus-card {
    text-align: left;
  }
  html[data-page="curso-r1"] .installments strong {
    font-size: 42px;
  }
  html[data-page="curso-r1"] .final-cta-card {
    padding: 34px 26px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  html[data-page="curso-r1"] .final-cta .btn-primary {
    min-width: 0;
    width: 100%;
  }
  html[data-page="curso-r1"] .institution-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="curso-r1"] .institution-logos .brand-logo-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 5px);
    justify-self: center;
  }
  html[data-page="curso-r1"] .developed-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="curso-r1"] .footer-links {
    grid-template-columns: 1fr;
  }
  html[data-page="curso-r1"] .footer-bottom > div {
    padding-block: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  html[data-page="curso-r1"] .floating-contact span {
    display: none;
  }
  html[data-page="curso-r1"] .floating-contact {
    width: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* ============================================================
   Cabeçalho e rodapé globais — padrão para todas as páginas
   ============================================================ */









html[data-page="curso-r1"] .footer-brand > p {
  font-size: 17px !important;
  line-height: 1.75 !important;
}
html[data-page="curso-r1"] .footer-links h3 {
  font-size: 17px !important;
  letter-spacing: 0.01em;
}
html[data-page="curso-r1"] .footer-links a,
html[data-page="curso-r1"] .footer-links span {
  font-size: 15px !important;
  line-height: 1.62 !important;
}
html[data-page="curso-r1"] .footer-links small {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="curso-r1"] .footer-bottom > div {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="curso-r1"] .brand-group h2 {
  font-size: 14px !important;
}

@media (max-width: 920px) {
  
  
}

/* R1: mesma escala de H1 utilizada no hero da Home */
html[data-page="curso-r1"] .hero-copy h1 {
  font-size: clamp(40px, 3.4vw, 50px);
  line-height: 1.035;
  letter-spacing: -0.045em;
}

/* Informações rápidas com ícones temáticos */
html[data-page="curso-r1"] .quick-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 15px;
  padding: 24px 22px;
}
html[data-page="curso-r1"] .quick-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid currentColor;
  box-shadow: 0 10px 24px rgba(8, 41, 66, 0.08);
}
html[data-page="curso-r1"] .quick-icon svg {
  width: 25px;
  height: 25px;
}
html[data-page="curso-r1"] .quick-icon-blue {
  color: #2f80ed;
  background: rgba(47, 128, 237, 0.1);
}
html[data-page="curso-r1"] .quick-icon-green {
  color: #00a983;
  background: rgba(0, 179, 136, 0.11);
}
html[data-page="curso-r1"] .quick-icon-cyan {
  color: #0097b2;
  background: rgba(0, 151, 178, 0.11);
}
html[data-page="curso-r1"] .quick-icon-orange {
  color: #ef8a22;
  background: rgba(239, 138, 34, 0.11);
}
html[data-page="curso-r1"] .quick-item small {
  margin-bottom: 6px;
}
html[data-page="curso-r1"] .quick-item strong {
  display: block;
}
html[data-page="curso-r1"] .why-copy .benefit-list {
  margin-top: 32px;
}

@media (max-width: 640px) {
  html[data-page="curso-r1"] .hero-copy h1 {
    font-size: 34px;
  }
  html[data-page="curso-r1"] .quick-item {
    grid-template-columns: 48px 1fr;
    padding: 20px 18px;
  }
  html[data-page="curso-r1"] .quick-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

/* Cabeçalho centralizado no limite de 1240 px */
@media (min-width: 921px) {
  
  
  
  
  
  
}

/* ============================================================
 * Página(s): index
 * ============================================================ */
html[data-page="index"] {
  --blue: #2f80ed;
  --blue-deep: #082942;
  --green: #00b388;
  --ink: #102939;
  --muted: #667085;
  --surface: #fff;
  --surface-soft: #f6f9fc;
  --border: rgba(16, 41, 57, 0.11);
  --header: rgba(255, 255, 255, 0.9);
  --shadow: 0 22px 60px rgba(8, 41, 66, 0.14);
  --max: 1240px;
  color-scheme: light;
}
html[data-page="index"][data-theme="dark"] {
  --ink: #f7fafc;
  --muted: #aab8c4;
  --surface: #081a28;
  --surface-soft: #0c2334;
  --border: rgba(230, 241, 255, 0.1);
  --header: rgba(7, 24, 37, 0.91);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}
html[data-page="index"] * {
  box-sizing: border-box;
}
html[data-page="index"] {
  scroll-behavior: smooth;
}
html[data-page="index"] body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}
html[data-page="index"] a {
  color: inherit;
  text-decoration: none;
}
html[data-page="index"] button {
  font: inherit;
  color: inherit;
}















html[data-page="index"] .hero {
  position: relative;
  height: 700px;
  margin-top: 84px;
  overflow: hidden;
  background: #061d2f;
  color: #fff;
}
html[data-page="index"] .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition:
    opacity 0.8s,
    visibility 0.8s,
    transform 1.1s;
  background-image: var(--hero-desktop);
  background-position: center;
  background-size: cover;
}
html[data-page="index"] .hero-inteligencia {
  --hero-desktop: url("../images/banner-inteligencia-desktop.webp");
  --hero-mobile: var(--hero-desktop);
  --hero-mobile-size: 78%;
}
html[data-page="index"] .hero-jornada {
  --hero-desktop: url("../images/banner-jornada-desktop.webp");
  --hero-mobile: var(--hero-desktop);
  --hero-mobile-size: 86%;
}
html[data-page="index"] .hero-desempenho {
  --hero-desktop: url("../images/banner-desempenho-desktop.webp");
  --hero-mobile: var(--hero-desktop);
  --hero-mobile-size: 48%;
}
html[data-page="index"] .hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}
html[data-page="index"] .hero-slide:before {
  display: none;
}
html[data-page="index"] .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000 10%, transparent 68%);
}
html[data-page="index"] .hero-container {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 30px;
}
html[data-page="index"] .hero-copy {
  max-width: 720px;
  animation: index-reveal 0.85s 0.15s both;
  text-shadow: 0 2px 22px rgba(2, 17, 28, 0.24);
}
html[data-page="index"] .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #b8d9f5;
  margin-bottom: 24px;
}
html[data-page="index"] .eyebrow span {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="index"] .hero-brand-logo {
  display: block;
  width: clamp(290px, 25vw, 380px);
  max-width: 80%;
  height: auto;
  margin: 0 0 28px;
  filter: brightness(0) invert(1);
  opacity: 0.98;
}
html[data-page="index"] .hero h1 {
  margin: 0;
  font-size: clamp(34px, 2.7vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  max-width: 650px;
}
html[data-page="index"] .hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #67a7ff, #35d5ac);
  -webkit-background-clip: text;
  color: transparent;
}
html[data-page="index"] .hero-copy > p {
  max-width: 630px;
  margin: 24px 0 30px;
  color: #d1deea;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}
html[data-page="index"] .hero-buttons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
html[data-page="index"] .button {
  min-height: 52px;
  padding: 0 23px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 760;
  transition: 0.22s;
}
html[data-page="index"] .button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #216cdc);
  box-shadow: 0 16px 35px rgba(47, 128, 237, 0.3);
}
html[data-page="index"] .button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(47, 128, 237, 0.42);
}
html[data-page="index"] .button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}
html[data-page="index"] .button.ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}
html[data-page="index"] .hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}
html[data-page="index"] .avatar-stack {
  display: flex;
}
html[data-page="index"] .avatar-stack span {
  width: 50px;
  height: 50px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #0b2e49;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 15px;
  font-weight: 600;
}
html[data-page="index"] .avatar-stack span:first-child {
  margin-left: 0;
}
html[data-page="index"] .hero-proof p {
  margin: 0;
  font-size: 20px;
  color: #b8cadd;
}
html[data-page="index"] .hero-proof strong {
  color: #fff;
}
html[data-page="index"] .hero-proof-clean {
  gap: 10px;
  flex-wrap: wrap;
  color: #c6d9e3;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.025em;
}
html[data-page="index"] .hero-proof-clean span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
html[data-page="index"] .hero-proof-clean span:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 11px rgba(44, 211, 171, 0.7);
}
html[data-page="index"] .hero-journey-line {
  margin-top: 22px;
  color: #8fe6d1;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
html[data-page="index"] .hero-visual-labels {
  position: absolute;
  z-index: 3;
  right: clamp(34px, 5vw, 96px);
  bottom: 52px;
  width: min(500px, 36vw);
  padding: 15px;
  border: 1px solid rgba(143, 230, 209, 0.2);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(6, 30, 48, 0.82),
    rgba(8, 75, 85, 0.7)
  );
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}
html[data-page="index"] .hero-visual-labels > strong {
  display: block;
  color: #8fe6d1;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
}
html[data-page="index"] .hero-visual-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
html[data-page="index"] .hero-visual-grid span {
  min-height: 36px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4fbff;
  font-size: 12px;
  font-weight: 750;
}
html[data-page="index"] .hero-visual-grid span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 3px;
  background: linear-gradient(135deg, #59a3ff, #42d6ad);
  box-shadow: 0 0 12px rgba(66, 214, 173, 0.48);
}
html[data-page="index"] .slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(5, 29, 47, 0.38);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.2s;
}
html[data-page="index"] .slider-arrow:hover {
  background: rgba(47, 128, 237, 0.78);
}
html[data-page="index"] .slider-arrow.prev {
  left: 22px;
  transform: rotate(180deg);
}
html[data-page="index"] .slider-arrow.next {
  right: 22px;
}
html[data-page="index"] .slider-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}
html[data-page="index"] .slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
html[data-page="index"] .slider-dot {
  width: 34px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  cursor: pointer;
}
html[data-page="index"] .slider-dot span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="index"] .slider-dot.active span {
  animation: index-progress 7.5s linear forwards;
}
html[data-page="index"] .hero.is-paused .slider-dot.active span,
html[data-page="index"] .hero.is-hover-paused .slider-dot.active span {
  animation-play-state: paused;
}
html[data-page="index"] .slider-pause {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(5, 29, 47, 0.62);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.2s ease;
}
html[data-page="index"] .slider-pause:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(47, 128, 237, 0.82);
  transform: scale(1.06);
}
html[data-page="index"] .slider-pause:focus-visible {
  outline: 3px solid rgba(126, 217, 87, 0.76);
  outline-offset: 3px;
}
html[data-page="index"] .slider-pause svg {
  width: 14px;
  height: 14px;
}
html[data-page="index"] .slider-pause .slider-play-icon {
  display: none;
}
html[data-page="index"] .slider-pause.is-paused .slider-pause-icon {
  display: none;
}
html[data-page="index"] .slider-pause.is-paused .slider-play-icon {
  display: block;
}
html[data-page="index"] .trust-strip {
  min-height: 104px;
  padding: 18px max(24px, calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 35px rgba(8, 41, 66, 0.05);
}
html[data-page="index"] .trust-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--border);
}
html[data-page="index"] .trust-strip > div:last-child {
  border-right: 0;
}
html[data-page="index"] .trust-strip svg {
  color: var(--blue);
}
html[data-page="index"] .trust-strip span {
  font-size: 20px;
  color: var(--muted);
}
html[data-page="index"] .trust-strip strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
}

/* Shared section system */
html[data-page="index"] .section {
  padding: 112px 0;
  position: relative;
}
html[data-page="index"] .section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}
html[data-page="index"] .section-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
html[data-page="index"] .section-kicker.light {
  color: #72c9ff;
}
html[data-page="index"] .section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(35px, 3.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html[data-page="index"] .section h2 em {
  font-style: normal;
  color: var(--green);
}
html[data-page="index"] .section-heading {
  margin-bottom: 52px;
}
html[data-page="index"] .section-heading.centered {
  text-align: center;
  margin: 0 auto 54px;
}
html[data-page="index"] .section-heading > p {
  max-width: 800px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
html[data-page="index"] .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
html[data-page="index"] .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* About and video */
html[data-page="index"] .about {
  overflow: hidden;
  background: var(--surface);
}
html[data-page="index"] .about:before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: -260px;
  top: 90px;
  border-radius: 50%;
  background: rgba(47, 128, 237, 0.07);
  filter: blur(3px);
}
html[data-page="index"] .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
html[data-page="index"] .about-copy > p {
  margin: 24px 0 34px;
  max-width: 590px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="index"] .benefit-list {
  display: grid;
  gap: 22px;
}
html[data-page="index"] .benefit-list article {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
html[data-page="index"] .benefit-list article > span {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 128, 237, 0.14);
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(47, 128, 237, 0.12),
    rgba(0, 179, 136, 0.08)
  );
  color: var(--blue);
}
html[data-page="index"] .benefit-list h3 {
  margin: 0 0 5px;
  font-size: 15px;
}
html[data-page="index"] .benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
html[data-page="index"] .video-showcase {
  position: relative;
  padding: 25px 0;
}
html[data-page="index"] .video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1.34;
  border: 0;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #07263e, #0e5873 58%, #00a47f);
  color: #fff;
  box-shadow: 0 35px 80px rgba(8, 41, 66, 0.24);
  cursor: pointer;
  text-align: left;
}
html[data-page="index"] .video-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(103, 210, 255, 0.35),
      transparent 25%
    ),
    linear-gradient(90deg, rgba(4, 25, 40, 0.4), transparent);
}
html[data-page="index"] .video-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  mask-image: linear-gradient(120deg, transparent 10%, #000 80%);
}
html[data-page="index"] .video-brand {
  position: absolute;
  left: 35px;
  top: 35px;
}
html[data-page="index"] .video-brand small {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #b9e4fb;
}
html[data-page="index"] .video-brand strong {
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
html[data-page="index"] .play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(15px);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 13px rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}
html[data-page="index"] .video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
  color: var(--blue);
}
html[data-page="index"] .video-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
html[data-page="index"] .video-caption span {
  display: flex;
  align-items: center;
  gap: 8px;
}
html[data-page="index"] .video-caption i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #41e2b8;
  box-shadow: 0 0 0 5px rgba(65, 226, 184, 0.16);
}
html[data-page="index"] .floating-badge {
  position: absolute;
  z-index: 2;
  min-width: 230px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--ink);
  animation: index-float 4s ease-in-out infinite;
}
html[data-page="index"] .floating-badge > svg {
  color: var(--green);
}
html[data-page="index"] .floating-badge strong,
html[data-page="index"] .floating-badge small {
  display: block;
}
html[data-page="index"] .floating-badge strong {
  font-size: 12px;
}
html[data-page="index"] .floating-badge span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}
html[data-page="index"] .badge-top {
  right: -28px;
  top: 0;
}
html[data-page="index"] .badge-bottom {
  left: -40px;
  bottom: 0;
  animation-delay: -2s;
}

/* Journey */
html[data-page="index"] .journey {
  background: var(--surface-soft);
  overflow: hidden;
}
html[data-page="index"] .journey:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(47, 128, 237, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 88%,
      rgba(0, 179, 136, 0.08),
      transparent 28%
    ),
    linear-gradient(
      90deg,
      transparent 49.9%,
      var(--border) 50%,
      transparent 50.1%
    );
  opacity: 0.8;
  pointer-events: none;
}
html[data-page="index"] .journey .section-shell {
  position: relative;
}
html[data-page="index"] .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
html[data-page="index"] .product-card {
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: linear-gradient(
    155deg,
    var(--surface),
    color-mix(in srgb, var(--surface) 93%, var(--blue) 7%)
  );
  box-shadow: 0 14px 35px rgba(8, 41, 66, 0.055);
  overflow: hidden;
  isolation: isolate;
  transition:
    opacity 0.75s,
    transform 0.75s,
    border-color 0.3s,
    box-shadow 0.3s;
}
html[data-page="index"] .product-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  right: -105px;
  top: -110px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(47, 128, 237, 0.12),
    rgba(0, 179, 136, 0.08)
  );
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}
html[data-page="index"] .product-card:after {
  content: "";
  position: absolute;
  inset: auto 30px 0;
  height: 3px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
html[data-page="index"] .product-card:hover {
  transform: translateY(-9px);
  border-color: rgba(47, 128, 237, 0.35);
  box-shadow: 0 26px 62px rgba(8, 41, 66, 0.14);
}
html[data-page="index"] .product-card:hover:before {
  transform: scale(1.25);
  opacity: 0.9;
}
html[data-page="index"] .product-card:hover:after {
  transform: scaleX(1);
}
html[data-page="index"] .product-card.featured {
  border-color: rgba(0, 179, 136, 0.42);
  box-shadow: 0 18px 45px rgba(0, 179, 136, 0.11);
}
html[data-page="index"] .product-icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 19px;
  background: linear-gradient(145deg, #2f80ed, #00ad87);
  color: #fff;
  box-shadow:
    0 15px 32px rgba(47, 128, 237, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
html[data-page="index"] .product-icon:after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(47, 128, 237, 0.14);
  border-radius: 23px;
}
html[data-page="index"] .product-icon svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 3px 7px rgba(2, 28, 44, 0.18));
}
html[data-page="index"] .product-card:hover .product-icon {
  transform: translateY(-3px) rotate(-2deg) scale(1.04);
  box-shadow:
    0 19px 38px rgba(0, 179, 136, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
html[data-page="index"] .product-card > small {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
html[data-page="index"] .product-card h3 {
  margin: 9px 0 13px;
  color: var(--ink);
  font-size: 26px;
  letter-spacing: -0.04em;
}
html[data-page="index"] .product-card > p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}
html[data-page="index"] .product-card > a {
  width: fit-content;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  transition:
    color 0.25s ease,
    gap 0.25s ease;
}
html[data-page="index"] .product-card > a svg {
  transition: transform 0.25s ease;
}
html[data-page="index"] .product-card > a:hover {
  color: var(--green);
  gap: 13px;
}
html[data-page="index"] .product-card > a:hover svg {
  transform: translateX(2px);
}

/* Resources methodology */
html[data-page="index"] .method-resources {
  overflow: hidden;
  background: #071f31;
  color: #fff;
}
html[data-page="index"] .method-resources:before,
html[data-page="index"] .study-flow:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.55), transparent);
}
html[data-page="index"] .method-resources:after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -270px;
  top: -140px;
  border-radius: 50%;
  background: rgba(0, 179, 136, 0.16);
  filter: blur(95px);
  pointer-events: none;
}
html[data-page="index"] .method-resources .section-shell,
html[data-page="index"] .study-flow .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="index"] .resources-heading {
  max-width: 1060px;
  margin: 0 auto 58px;
  text-align: center;
}
html[data-page="index"] .resources-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(90deg, #1497c8, #00b388 58%, #70d85b);
  box-shadow: 0 14px 34px rgba(0, 179, 136, 0.2);
  color: #fff;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 850;
  letter-spacing: -0.025em;
}
html[data-page="index"] .method-resources h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
}
html[data-page="index"] .resources-heading > p {
  max-width: 1020px;
  margin: 18px auto 0;
  color: #b9cad6;
  font-size: 14px;
  line-height: 1.72;
}
html[data-page="index"] .resources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 30px;
}
html[data-page="index"] .resource-item {
  position: relative;
  padding: 24px 24px 24px 92px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.045)
  );
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(12px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}
html[data-page="index"] .resource-item:hover {
  transform: translateY(-5px);
  border-color: rgba(83, 221, 178, 0.4);
  background: linear-gradient(
    145deg,
    rgba(47, 128, 237, 0.14),
    rgba(0, 179, 136, 0.09)
  );
}
html[data-page="index"] .resource-icon {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), var(--green));
  color: #fff;
  box-shadow:
    0 12px 28px rgba(0, 179, 136, 0.18),
    0 0 0 7px rgba(255, 255, 255, 0.035);
  transition: transform 0.35s ease;
}
html[data-page="index"] .resource-item:hover .resource-icon {
  transform: rotate(-5deg) scale(1.08);
}
html[data-page="index"] .resource-icon svg {
  width: 27px;
  height: 27px;
}
html[data-page="index"] .resource-item h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.025em;
}
html[data-page="index"] .resource-item p {
  margin: 0;
  color: #aebfcb;
  font-size: 12.5px;
  line-height: 1.62;
}

/* Horizontal study flow */
html[data-page="index"] .study-flow {
  overflow: hidden;
  background: linear-gradient(180deg, #0a2940 0%, #061b2b 100%);
  color: #fff;
}
html[data-page="index"] .study-flow:after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: -250px;
  bottom: -330px;
  border-radius: 50%;
  background: rgba(47, 128, 237, 0.17);
  filter: blur(95px);
  pointer-events: none;
}
html[data-page="index"] .study-flow .method-head {
  display: block;
  margin: 0 auto 64px;
  text-align: center;
}
html[data-page="index"] .study-flow .method-head .section-kicker {
  margin-bottom: 18px;
}
html[data-page="index"] .study-flow .method-head h2,
html[data-page="index"] .study-flow .method-head h3 {
  color: #fff;
}
html[data-page="index"] .study-flow .method-head > p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #b6c9d7;
  font-size: 15px;
  line-height: 1.75;
}
html[data-page="index"] .study-flow .method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
}
html[data-page="index"] .study-flow .trail {
  --trail-progress: 0%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 6px;
}
html[data-page="index"] .study-flow .trail-line,
html[data-page="index"] .study-flow .trail-line-fill {
  position: absolute;
  z-index: 0;
  left: calc(12.5% - 1px);
  top: 37px;
  height: 3px;
  border-radius: 99px;
}
html[data-page="index"] .study-flow .trail-line {
  right: calc(12.5% - 1px);
  background: rgba(255, 255, 255, 0.12);
}
html[data-page="index"] .study-flow .trail-line-fill {
  width: var(--trail-progress);
  max-width: calc(75% - 2px);
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 18px rgba(0, 179, 136, 0.28);
  transition: width 0.48s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="index"] .study-flow .trail article {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  padding: 0 8px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  outline: none;
}
html[data-page="index"] .study-flow .trail article > span {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #0b2b41;
  color: #91aabe;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
html[data-page="index"] .study-flow .trail article > span:before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid transparent;
  border-radius: inherit;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease;
}
html[data-page="index"] .study-flow .trail article.active > span,
html[data-page="index"] .study-flow .trail article:hover > span,
html[data-page="index"] .study-flow .trail article:focus-visible > span {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  transform: translateY(-5px) scale(1.08);
  box-shadow:
    0 0 0 8px rgba(47, 128, 237, 0.1),
    0 18px 36px rgba(0, 179, 136, 0.2);
}
html[data-page="index"] .study-flow .trail article.active > span:before,
html[data-page="index"] .study-flow .trail article:hover > span:before,
html[data-page="index"] .study-flow .trail article:focus-visible > span:before {
  border-color: rgba(91, 220, 182, 0.36);
  transform: scale(1.04);
}
html[data-page="index"] .study-flow .trail article > div {
  max-width: 250px;
  margin-top: 21px;
  padding: 18px 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
html[data-page="index"] .study-flow .trail article.active > div,
html[data-page="index"] .study-flow .trail article:hover > div {
  transform: translateY(-3px);
  border-color: rgba(0, 179, 136, 0.34);
}
html[data-page="index"] .study-flow .trail small {
  color: #5f99ba;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}
html[data-page="index"] .study-flow .trail h3 {
  margin: 6px 0 8px;
  color: #fff;
  font-size: 20px;
}
html[data-page="index"] .study-flow .trail p {
  margin: 0;
  color: #93aab9;
  font-size: 12px;
  line-height: 1.6;
}
html[data-page="index"] .study-flow .performance-card {
  width: min(980px, 100%);
  margin: auto;
  padding: 30px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}
html[data-page="index"] .study-flow .performance-top,
html[data-page="index"] .study-flow .ai-note {
  grid-column: 1 / -1;
}
html[data-page="index"] .performance-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
html[data-page="index"] .performance-top small {
  font-size: 8px;
  color: #7fb0cc;
  letter-spacing: 0.14em;
}
html[data-page="index"] .performance-top h3 {
  margin: 6px 0 0;
  color: #fff;
  font-size: 19px;
}
html[data-page="index"] .performance-top > span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  color: #92a8b7;
  font-size: 9px;
}
html[data-page="index"] .performance-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 10px 0;
}
html[data-page="index"] .score-ring {
  width: 154px;
  height: 154px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 78%, rgba(255, 255, 255, 0.08) 78%);
  position: relative;
}
html[data-page="index"] .score-ring:before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #15374c;
}
html[data-page="index"] .score-ring strong,
html[data-page="index"] .score-ring span {
  position: relative;
}
html[data-page="index"] .score-ring strong {
  color: #fff;
  font-size: 31px;
}
html[data-page="index"] .score-ring span {
  font-size: 9px;
  color: #92a8b7;
}
html[data-page="index"] .score-info p {
  margin: 0 0 10px;
  font-size: 10px;
  color: #9db1bf;
}
html[data-page="index"] .score-info p span {
  color: #42ddb7;
  font-size: 18px;
  font-weight: 800;
}
html[data-page="index"] .score-info small {
  color: #9db1bf;
}
html[data-page="index"] .discipline-bars {
  display: grid;
  align-content: center;
  gap: 13px;
}
html[data-page="index"] .discipline-bars > div {
  display: grid;
  grid-template-columns: 90px 1fr 32px;
  align-items: center;
  gap: 9px;
  color: #aabac5;
  font-size: 9px;
}
html[data-page="index"] .discipline-bars i {
  height: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}
html[data-page="index"] .discipline-bars b {
  display: block;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 1.3s;
}
html[data-page="index"] .discipline-bars strong {
  text-align: right;
  color: #fff;
  font-size: 9px;
}
html[data-page="index"] .ai-note {
  margin-top: 2px;
  padding: 14px 16px;
  display: flex;
  gap: 11px;
  align-items: center;
  border: 1px solid rgba(0, 179, 136, 0.2);
  border-radius: 13px;
  background: rgba(0, 179, 136, 0.08);
}
html[data-page="index"] .ai-note svg {
  color: #42ddb7;
}
html[data-page="index"] .ai-note p {
  margin: 0;
  color: #91aab9;
  font-size: 9px;
}
html[data-page="index"] .ai-note strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 10px;
}

/* Product showcases */
html[data-page="index"] .products-focus {
  padding-bottom: 125px;
  background: var(--surface);
}
html[data-page="index"] .focus-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 88px;
  align-items: center;
}
html[data-page="index"] .medprovas-grid {
  position: relative;
  z-index: 1;
  min-height: 610px;
  isolation: isolate;
}
html[data-page="index"] .medprovas-grid:before {
  content: "";
  position: absolute;
  z-index: -2;
  top: -82px;
  bottom: -82px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(88deg, #ffffff, #f5f5f5, #00b38812);
  pointer-events: none;
}
html[data-page="index"] .medprovas-device-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
  perspective: 1200px;
}
html[data-page="index"] .medprovas-device-stage:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 13%;
  right: 5%;
  bottom: 8%;
  height: 38px;
  border-radius: 50%;
  background: rgba(8, 41, 66, 0.23);
  filter: blur(22px);
  opacity: 0.34;
  transform: scaleX(0.92);
  pointer-events: none;
}
html[data-page="index"] .medprovas-devices {
  width: min(790px, 121%);
  max-width: none;
  height: auto;
  display: block;
  transform: translateX(2.5%) translateY(0) rotateX(0.01deg);
  transform-origin: 50% 65%;
  filter: drop-shadow(0 24px 24px rgba(8, 41, 66, 0.12))
    drop-shadow(0 42px 54px rgba(8, 41, 66, 0.1));
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  animation: index-medprovas-device-float 7s ease-in-out infinite;
  will-change: transform;
}
html[data-page="index"] .medprovas-device-stage:hover .medprovas-devices {
  transform: translateX(2.5%) translateY(-9px) scale(1.012);
  filter: drop-shadow(0 28px 28px rgba(8, 41, 66, 0.14))
    drop-shadow(0 48px 64px rgba(8, 41, 66, 0.12));
}
@keyframes index-medprovas-device-float {
  0%,
  100% {
    transform: translateX(2.5%) translateY(0) rotateX(0.01deg);
  }
  50% {
    transform: translateX(2.5%) translateY(-7px) rotateX(0.01deg);
  }
}
html[data-page="index"] .focus-grid + .focus-grid {
  margin-top: 140px;
}
html[data-page="index"] .focus-copy {
  max-width: 540px;
}
html[data-page="index"] .product-wordmark {
  display: inline-flex;
  margin-bottom: 24px;
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -0.04em;
}
html[data-page="index"] .product-wordmark.green {
  color: var(--green);
}
html[data-page="index"] .product-wordmark.blue {
  color: var(--blue);
}
html[data-page="index"] .focus-copy > p {
  margin: 22px 0 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
html[data-page="index"] .focus-copy ul {
  margin: 0 0 29px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}
html[data-page="index"] .focus-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}
html[data-page="index"] .focus-copy li svg {
  width: 23px;
  height: 23px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(0, 179, 136, 0.1);
  color: var(--green);
}
html[data-page="index"] .button.secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #008d71);
  box-shadow: 0 16px 35px rgba(0, 179, 136, 0.22);
}
html[data-page="index"] .question-mock,
html[data-page="index"] .stream-mock {
  border: 1px solid var(--border);
  border-radius: 25px;
  background: var(--surface);
  box-shadow: 0 35px 90px rgba(8, 41, 66, 0.16);
  overflow: hidden;
}
html[data-page="index"] .mock-top {
  height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border);
}
html[data-page="index"] .mock-top > span {
  display: flex;
  gap: 5px;
}
html[data-page="index"] .mock-top > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d5dfe6;
}
html[data-page="index"] .mock-top small,
html[data-page="index"] .mock-top b {
  font-size: 8px;
  color: var(--muted);
}
html[data-page="index"] .mock-top b {
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(47, 128, 237, 0.1);
  color: var(--blue);
}
html[data-page="index"] .mock-layout {
  display: grid;
  grid-template-columns: 125px 1fr;
  min-height: 430px;
}
html[data-page="index"] .mock-layout aside {
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #082942;
  color: #7894a8;
}
html[data-page="index"] .mini-logo {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}
html[data-page="index"] .mini-logo svg {
  width: 21px;
  height: 21px;
  padding: 4px;
  border-radius: 50%;
  background: var(--green);
}
html[data-page="index"] .mock-layout aside > span {
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 8px;
}
html[data-page="index"] .mock-layout aside > span.on {
  background: rgba(47, 128, 237, 0.2);
  color: #fff;
}
html[data-page="index"] .question-content {
  padding: 30px;
}
html[data-page="index"] .question-content > small {
  color: var(--blue);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
html[data-page="index"] .question-content h3 {
  margin: 11px 0 22px;
  font-size: 17px;
  line-height: 1.45;
}
html[data-page="index"] .answer {
  min-height: 48px;
  margin-bottom: 9px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  font-size: 9px;
}
html[data-page="index"] .answer b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--surface-soft);
  color: var(--ink);
}
html[data-page="index"] .answer.correct {
  border-color: rgba(0, 179, 136, 0.45);
  background: rgba(0, 179, 136, 0.07);
  color: var(--ink);
}
html[data-page="index"] .answer.correct b {
  background: var(--green);
  color: #fff;
}
html[data-page="index"] .answer.correct svg {
  margin-left: auto;
  color: var(--green);
}
html[data-page="index"] .question-footer {
  margin-top: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 8px;
}
html[data-page="index"] .question-footer button {
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 8px;
}
html[data-page="index"] .medflix-grid {
  grid-template-columns: 1.12fr 0.88fr;
}
html[data-page="index"] .stream-mock {
  padding: 0;
  background: #071c2c;
  color: #fff;
}
html[data-page="index"] .stream-head {
  height: 58px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 17, 27, 0.9);
}
html[data-page="index"] .stream-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 850;
}
html[data-page="index"] .stream-logo svg {
  padding: 4px;
  border-radius: 6px;
  background: var(--blue);
}
html[data-page="index"] .stream-head > div {
  display: flex;
  gap: 12px;
}
html[data-page="index"] .stream-head i {
  display: block;
  width: 38px;
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
}
html[data-page="index"] .stream-feature {
  position: relative;
  height: 245px;
  padding: 42px 35px;
  background:
    radial-gradient(circle at 80% 40%, rgba(0, 179, 136, 0.5), transparent 28%),
    linear-gradient(110deg, #09243a, #0b5770);
}
html[data-page="index"] .stream-feature:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: 45px;
  top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(0, 179, 136, 0.2);
}
html[data-page="index"] .stream-feature > span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: #8ed7ef;
}
html[data-page="index"] .stream-feature h3 {
  margin: 10px 0 20px;
  font-size: 28px;
  line-height: 1.02;
}
html[data-page="index"] .stream-feature button {
  padding: 9px 13px;
  display: flex;
  gap: 7px;
  align-items: center;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #082942;
  font-size: 9px;
  font-weight: 750;
}
html[data-page="index"] .stream-mock > small {
  display: block;
  margin: 20px 22px 12px;
  color: #8ea5b6;
}
html[data-page="index"] .thumb-row {
  padding: 0 22px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
html[data-page="index"] .thumb-row > div {
  position: relative;
  height: 90px;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(145deg, #113b58, #0c6c66);
  overflow: hidden;
}
html[data-page="index"] .thumb-row > div > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}
html[data-page="index"] .thumb-row b {
  position: absolute;
  left: 12px;
  bottom: 15px;
  font-size: 9px;
}
html[data-page="index"] .thumb-row i {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background: var(--green);
}

/* Numbers, testimonials, teachers, blog */
html[data-page="index"] .numbers {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background: linear-gradient(110deg, #082942, #0d4962 55%, #008970);
  color: #fff;
}
html[data-page="index"] .numbers:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 45px 45px;
}
html[data-page="index"] .numbers-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="index"] .numbers article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}
html[data-page="index"] .numbers article:last-child {
  border: 0;
}
html[data-page="index"] .numbers strong {
  min-width: 102px;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, #fff, #68e3c0);
  -webkit-background-clip: text;
  color: transparent;
}
html[data-page="index"] .numbers span {
  ccolor: #ffffff;
  font-size: 18px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
html[data-page="index"] .testimonials {
  background: var(--surface-soft);
}
html[data-page="index"] .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
html[data-page="index"] .testimonial-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 23px;
  background: var(--surface);
  box-shadow: 0 15px 40px rgba(8, 41, 66, 0.055);
}
html[data-page="index"] .quote-icon {
  position: absolute;
  right: 25px;
  top: 22px;
  color: rgba(47, 128, 237, 0.14);
}
html[data-page="index"] .quote-icon svg {
  width: 50px;
  height: 50px;
}
html[data-page="index"] .stars {
  margin-bottom: 20px;
  color: #e8b747;
  font-size: 12px;
  letter-spacing: 3px;
}
html[data-page="index"] .testimonial-card > p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.8;
}
html[data-page="index"] .testimonial-face {
  position: absolute;
  right: 24px;
  top: 22px;
  width: 86px;
  height: 86px;
  margin-left: 10px;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(8, 41, 66, 0.2);
}
html[data-page="index"] .testimonial-card.has-face .stars {
  padding-right: 106px;
}
html[data-page="index"] .testimonial-card.has-face > p {
  display: -webkit-box;
  max-height: none;
  padding-right: 106px;
  overflow: hidden;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  line-clamp: 6;
}
html[data-page="index"] .testimonial-card.has-face {
  cursor: pointer;
}
html[data-page="index"] .testimonial-card-cta {
  margin-top: 14px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
html[data-page="index"] .testimonial-card.has-face:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 72%, transparent);
  outline-offset: 4px;
}
html[data-page="index"] .testimonial-person > span {
  min-width: 0;
}
html[data-page="index"] .testimonial-person small {
  line-height: 1.45;
}
html[data-page="index"] .testimonial-card > div:last-child {
  margin-top: auto;
  padding-top: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
}
html[data-page="index"] .student-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-size: 9px;
  font-weight: 850;
}
html[data-page="index"] .testimonial-card strong,
html[data-page="index"] .testimonial-card small {
  display: block;
}
html[data-page="index"] .testimonial-card strong {
  font-size: 11px;
}
html[data-page="index"] .testimonial-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}
html[data-page="index"] .teachers {
  background: var(--surface);
}
html[data-page="index"] .teacher-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
html[data-page="index"] .teacher-card {
  padding: 14px 14px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  transition:
    opacity 0.75s,
    transform 0.75s,
    box-shadow 0.25s;
}
html[data-page="index"] .teacher-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(8, 41, 66, 0.11);
}
html[data-page="index"] .teacher-portrait {
  position: relative;
  height: 205px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(150deg, #dcebfa, #9bd9d1);
}
html[data-page="index"] .teacher-portrait:before {
  content: "";
  position: absolute;
  width: 125px;
  height: 125px;
  bottom: -45px;
  border-radius: 50% 50% 20px 20px;
  background: linear-gradient(145deg, #123f5a, #2f80ed);
}
html[data-page="index"] .teacher-portrait span {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: linear-gradient(135deg, #082942, #00a582);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(8, 41, 66, 0.23);
}
html[data-page="index"] .teacher-portrait i {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.7) 1px,
    transparent 1px
  );
  background-size: 16px 16px;
  opacity: 0.35;
}
html[data-page="index"] .portrait-1 {
  background: linear-gradient(150deg, #d9f3ee, #a7d5f7);
}
html[data-page="index"] .portrait-2 {
  background: linear-gradient(150deg, #e6efff, #b0ebdc);
}
html[data-page="index"] .portrait-3 {
  background: linear-gradient(150deg, #dff6f1, #bad8f3);
}
html[data-page="index"] .portrait-4 {
  background: linear-gradient(150deg, #e5efff, #bce8e1);
}
html[data-page="index"] .teacher-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
}
html[data-page="index"] .teacher-card p {
  min-height: 55px;
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}
html[data-page="index"] .teacher-card a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 750;
}
html[data-page="index"] .blog {
  background: var(--surface-soft);
}
html[data-page="index"] .blog-head {
  margin-bottom: 42px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
html[data-page="index"] .blog-head > div {
  max-width: 750px;
}
html[data-page="index"] .blog-head > a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
}
html[data-page="index"] .post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
html[data-page="index"] .post-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(8, 41, 66, 0.05);
  transition:
    opacity 0.75s,
    transform 0.75s,
    box-shadow 0.25s;
}
html[data-page="index"] .post-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 23px 55px rgba(8, 41, 66, 0.12);
}
html[data-page="index"] .post-cover {
  position: relative;
  height: 160px;
  padding: 0;
  overflow: hidden;
  background: #082942;
}
html[data-page="index"] .post-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}
html[data-page="index"] .post-card:hover .post-cover img {
  transform: scale(1.05);
}
html[data-page="index"] .post-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
}
html[data-page="index"] .cover-1 {
  background: linear-gradient(135deg, #0b3556, #008e79);
}
html[data-page="index"] .cover-2 {
  background: linear-gradient(135deg, #123f5a, #2f80ed);
}
html[data-page="index"] .post-body {
  padding: 18px 20px 22px;
}
html[data-page="index"] .post-body small {
  color: var(--muted);
  font-size: 9px;
}
html[data-page="index"] .post-body h3 {
  min-height: 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.42;
}
html[data-page="index"] .post-body a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 760;
}

/* CTA, FAQ, footer */
html[data-page="index"] .final-cta {
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(115deg, #082942, #0c5370 55%, #008b70);
  color: #fff;
}
html[data-page="index"] .final-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.16) 1px,
    transparent 1px
  );
  background-size: 23px 23px;
  mask-image: linear-gradient(90deg, transparent, #000);
}
html[data-page="index"] .cta-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  right: 5%;
  top: -170px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025);
}
html[data-page="index"] .cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
html[data-page="index"] .cta-content > div:first-child {
  max-width: 780px;
}
html[data-page="index"] .final-cta h2 {
  color: #fff;
}
html[data-page="index"] .final-cta h2 em {
  color: #60e1bd;
}
html[data-page="index"] .final-cta p {
  max-width: 670px;
  margin: 18px 0 0;
  color: #bdd3df;
  font-size: 14px;
  line-height: 1.75;
}
html[data-page="index"] .cta-content > div:last-child {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
html[data-page="index"] .button.white {
  background: #fff;
  color: #08304a;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}
html[data-page="index"] .button.cta-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
}
html[data-page="index"] .faq {
  background: var(--surface);
}
html[data-page="index"] .faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 90px;
  align-items: start;
}
html[data-page="index"] .faq-intro {
  position: sticky;
  top: 120px;
}
html[data-page="index"] .faq-intro > p {
  margin: 22px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
html[data-page="index"] .faq-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
}
html[data-page="index"] .faq-list {
  border-top: 1px solid var(--border);
}
html[data-page="index"] .faq-list article {
  border-bottom: 1px solid var(--border);
}
html[data-page="index"] .faq-list button {
  width: 100%;
  min-height: 80px;
  padding: 0 4px;
  display: grid;
  grid-template-columns: 45px 1fr 42px;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
html[data-page="index"] .faq-list button > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
html[data-page="index"] .faq-list button > strong {
  font-size: 16px;
}
html[data-page="index"] .faq-list button > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--blue);
  transition: 0.25s;
}
html[data-page="index"] .faq-list article.open button > i {
  background: var(--blue);
  color: #fff;
  transform: rotate(90deg);
}
html[data-page="index"] .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s;
}
html[data-page="index"] .faq-answer p {
  overflow: hidden;
  margin: 0 55px 0 61px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
html[data-page="index"] .faq-list article.open .faq-answer {
  grid-template-rows: 1fr;
}
html[data-page="index"] .faq-list article.open .faq-answer p {
  padding-bottom: 25px;
}
html[data-page="index"] footer {
  background: #061b2a;
  color: #fff;
}
html[data-page="index"] .footer-main {
  padding: 75px 0 60px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}
html[data-page="index"] .footer-brand img {
  width: 235px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
html[data-page="index"] .footer-brand > p {
  margin: 25px 0;
  color: #90a8b8;
  font-size: 15px;
  line-height: 1.75;
}
html[data-page="index"] .socials {
  display: flex;
  gap: 9px;
}
html[data-page="index"] .socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  color: #9bb2c1;
  transition: 0.2s;
}
html[data-page="index"] .socials a:hover {
  background: var(--blue);
  color: #fff;
}
html[data-page="index"] .footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
html[data-page="index"] .footer-links h3 {
  margin: 0 0 21px;
  font-size: 15px;
}
html[data-page="index"] .footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
html[data-page="index"] .footer-links a,
html[data-page="index"] .footer-links span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9db2bf;
  font-size: 13px;
}
html[data-page="index"] .footer-links a:hover {
  color: #fff;
}
html[data-page="index"] .footer-links small {
  margin-top: 8px;
  color: #7892a1;
  font-size: 11px;
}
html[data-page="index"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
html[data-page="index"] .footer-bottom > div {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7894a3;
  font-size: 11px;
}
html[data-page="index"] .floating-contact {
  position: fixed;
  z-index: 80;
  right: 23px;
  bottom: 23px;
  height: 48px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00b388, #008e70);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  box-shadow: 0 15px 35px rgba(0, 179, 136, 0.3);
}
html[data-page="index"] .video-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 28px;
  display: grid;
  place-items: center;
  background: rgba(2, 13, 22, 0.86);
  backdrop-filter: blur(12px);
  animation: index-fadeIn 0.25s;
}
html[data-page="index"] .video-modal-box {
  position: relative;
  width: min(1050px, 100%);
}
html[data-page="index"] .video-modal-box > button {
  position: absolute;
  z-index: 2;
  right: -12px;
  top: -52px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}
html[data-page="index"] .video-frame {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45);
}
html[data-page="index"] .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

















@keyframes index-float {
  50% {
    transform: translateY(-10px);
  }
}
@keyframes index-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes index-reveal {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes index-progress {
  to {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  
  
  
  
}
@media (max-width: 900px) {
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  html[data-page="index"] .hero {
    margin-top: 74px;
    height: 700px;
  }
  html[data-page="index"] .hero-slide {
    background-image: var(--hero-desktop);
    background-position: 62% center;
  }
  html[data-page="index"] .eyebrow {
    font-size: 22px;
    font-weight: 600;
  }
  html[data-page="index"] .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 20px;
  }
  html[data-page="index"] .trust-strip > div {
    min-height: 70px;
  }
  html[data-page="index"] .trust-strip > div:nth-child(2) {
    border-right: 0;
  }
  html[data-page="index"] .trust-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
}
@media (max-width: 600px) {
  
  
  
  html[data-page="index"] .hero {
    height: 900px;
  }
  html[data-page="index"] .hero-container {
    width: calc(100% - 40px);
    align-items: flex-start;
    padding-top: 52px;
    padding-bottom: 155px;
  }
  html[data-page="index"] .hero-slide {
    background-image: var(--hero-mobile, var(--hero-desktop));
    background-position: center bottom;
    background-size: auto var(--hero-mobile-size, 78%);
    background-repeat: no-repeat;
  }
  html[data-page="index"] .hero h1 {
    font-size: 29px;
    line-height: 1.04;
  }
  html[data-page="index"] .hero-copy > p {
    font-size: 14px;
    line-height: 1.55;
    margin: 17px 0 21px;
  }
  html[data-page="index"] .eyebrow {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
  }
  html[data-page="index"] .button {
    min-height: 49px;
    padding: 0 18px;
    font-size: 13px;
  }
  html[data-page="index"] .hero-proof {
    margin-top: 20px;
  }
  html[data-page="index"] .hero-proof-clean {
    gap: 7px;
    font-size: 11px;
    line-height: 1.35;
  }
  html[data-page="index"] .hero-proof-clean span {
    gap: 7px;
  }
  html[data-page="index"] .hero-journey-line {
    margin-top: 17px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  html[data-page="index"] .hero-visual-labels {
    left: 16px;
    right: 16px;
    bottom: 46px;
    width: auto;
    padding: 10px;
    border-radius: 14px;
  }
  html[data-page="index"] .hero-visual-labels > strong {
    font-size: 10px;
    letter-spacing: 0.09em;
  }
  html[data-page="index"] .hero-visual-grid {
    margin-top: 7px;
    gap: 6px;
  }
  html[data-page="index"] .hero-visual-grid span {
    min-height: 34px;
    padding: 5px 7px;
    gap: 6px;
    border-radius: 9px;
    font-size: 11px;
  }
  html[data-page="index"] .hero-visual-grid span::before {
    width: 7px;
    height: 7px;
  }
  html[data-page="index"] .slider-arrow {
    display: none;
  }
  html[data-page="index"] .slider-controls {
    bottom: 17px;
  }
  html[data-page="index"] .trust-strip {
    grid-template-columns: 1fr 1fr;
    padding: 10px 12px;
  }
  html[data-page="index"] .trust-strip > div {
    justify-content: flex-start;
    padding: 0 8px;
    gap: 9px;
  }
  html[data-page="index"] .trust-strip svg {
    width: 19px;
  }
  html[data-page="index"] .trust-strip span {
    font-size: 10px;
  }
  html[data-page="index"] .trust-strip strong {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html[data-page="index"] * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  html[data-page="index"] .section {
    padding: 95px 0;
  }
  html[data-page="index"] .about-grid {
    gap: 55px;
  }
  html[data-page="index"] .floating-badge {
    min-width: 205px;
  }
  html[data-page="index"] .badge-top {
    right: -10px;
  }
  html[data-page="index"] .badge-bottom {
    left: -15px;
  }
  html[data-page="index"] .method-grid {
    gap: 55px;
  }
  html[data-page="index"] .focus-grid {
    gap: 55px;
  }
  html[data-page="index"] .medprovas-grid {
    min-height: 560px;
  }
  html[data-page="index"] .medprovas-device-stage {
    min-height: 500px;
  }
  html[data-page="index"] .medprovas-devices {
    width: min(720px, 118%);
  }
  html[data-page="index"] .teacher-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  html[data-page="index"] .teacher-card:nth-child(4),
  html[data-page="index"] .teacher-card:nth-child(5) {
    transform: translateX(50%);
  }
  html[data-page="index"] .footer-main {
    gap: 50px;
  }
  html[data-page="index"] .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  html[data-page="index"] .section-shell {
    width: min(var(--max), calc(100% - 36px));
  }
  html[data-page="index"] .section {
    padding: 82px 0;
  }
  html[data-page="index"] .about-grid,
  html[data-page="index"] .method-grid,
  html[data-page="index"] .focus-grid,
  html[data-page="index"] .medflix-grid,
  html[data-page="index"] .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  html[data-page="index"] .about-copy {
    max-width: 680px;
  }
  html[data-page="index"] .video-showcase {
    width: min(650px, 100%);
    margin: auto;
  }
  html[data-page="index"] .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="index"] .method-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  html[data-page="index"] .performance-card {
    width: min(620px, 100%);
    margin: auto;
  }
  html[data-page="index"] .focus-copy {
    max-width: 650px;
  }
  html[data-page="index"] .medflix-grid .stream-mock {
    order: 2;
  }
  html[data-page="index"] .medflix-grid .focus-copy {
    order: 1;
  }
  html[data-page="index"] .question-mock,
  html[data-page="index"] .stream-mock {
    width: min(700px, 100%);
    margin: auto;
  }
  html[data-page="index"] .medprovas-grid {
    min-height: auto;
  }
  html[data-page="index"] .medprovas-grid:before {
    top: -66px;
    bottom: -66px;
  }
  html[data-page="index"] .medprovas-device-stage {
    width: min(780px, 100%);
    min-height: auto;
    margin: 0 auto;
  }
  html[data-page="index"] .medprovas-devices {
    width: 100%;
    max-width: 760px;
    transform: none;
  }
  html[data-page="index"] .medprovas-device-stage:hover .medprovas-devices {
    transform: translateY(-7px) scale(1.008);
  }
  @keyframes index-medprovas-device-float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }
  html[data-page="index"] .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 0;
  }
  html[data-page="index"] .numbers article:nth-child(2) {
    border: 0;
  }
  html[data-page="index"] .testimonial-grid,
  html[data-page="index"] .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="index"] .testimonial-card:last-child,
  html[data-page="index"] .post-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 11px);
    margin: auto;
  }
  html[data-page="index"] .teacher-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  html[data-page="index"] .cta-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }
  html[data-page="index"] .cta-content > div:last-child {
    flex-direction: row;
  }
  html[data-page="index"] .faq-intro {
    position: relative;
    top: 0;
  }
  html[data-page="index"] .footer-main {
    grid-template-columns: 1fr;
  }
  html[data-page="index"] .footer-brand {
    max-width: 420px;
  }
}
@media (max-width: 650px) {
  html[data-page="index"] .section {
    padding: 68px 0;
  }
  html[data-page="index"] .section-shell {
    width: calc(100% - 30px);
  }
  html[data-page="index"] .section h2 {
    font-size: 34px;
  }
  html[data-page="index"] .section-heading {
    margin-bottom: 36px;
  }
  html[data-page="index"] .section-heading > p {
    font-size: 14px;
  }
  html[data-page="index"] .about-grid {
    gap: 42px;
  }
  html[data-page="index"] .about-copy > p {
    font-size: 14px;
  }
  html[data-page="index"] .benefit-list article {
    gap: 12px;
  }
  html[data-page="index"] .benefit-list article > span {
    width: 42px;
    height: 42px;
  }
  html[data-page="index"] .video-showcase {
    padding: 10px 0 35px;
  }
  html[data-page="index"] .video-card {
    aspect-ratio: 1.05;
    border-radius: 22px;
  }
  html[data-page="index"] .video-brand {
    left: 24px;
    top: 26px;
  }
  html[data-page="index"] .video-brand strong {
    font-size: 22px;
  }
  html[data-page="index"] .play-button {
    width: 70px;
    height: 70px;
  }
  html[data-page="index"] .video-caption {
    left: 20px;
    right: 20px;
  }
  html[data-page="index"] .floating-badge {
    position: relative;
    min-width: 0;
    margin-top: 10px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    animation: none;
  }
  html[data-page="index"] .product-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="index"] .product-card {
    min-height: 330px;
  }
  html[data-page="index"] .method-head {
    margin-bottom: 45px;
  }
  html[data-page="index"] .trail article {
    grid-template-columns: 46px 1fr;
  }
  html[data-page="index"] .trail article > span {
    width: 46px;
    height: 46px;
  }
  html[data-page="index"] .trail-line {
    left: 22px;
  }
  html[data-page="index"] .performance-card {
    padding: 20px;
  }
  html[data-page="index"] .performance-top > span {
    display: none;
  }
  html[data-page="index"] .performance-body {
    gap: 20px;
  }
  html[data-page="index"] .score-ring {
    width: 130px;
    height: 130px;
  }
  html[data-page="index"] .discipline-bars > div {
    grid-template-columns: 77px 1fr 28px;
  }
  html[data-page="index"] .focus-grid + .focus-grid {
    margin-top: 95px;
  }
  html[data-page="index"] .medprovas-grid:before {
    top: -52px;
    bottom: -52px;
  }
  html[data-page="index"] .medprovas-device-stage:after {
    left: 12%;
    right: 7%;
    bottom: 7%;
    height: 24px;
    filter: blur(16px);
  }
  html[data-page="index"] .medprovas-devices {
    width: 112%;
    max-width: none;
    margin-left: -6%;
  }
  html[data-page="index"] .mock-layout {
    grid-template-columns: 1fr;
  }
  html[data-page="index"] .mock-layout aside {
    display: none;
  }
  html[data-page="index"] .question-content {
    padding: 22px 17px;
  }
  html[data-page="index"] .question-footer > span {
    display: none;
  }
  html[data-page="index"] .question-footer {
    justify-content: flex-end;
  }
  html[data-page="index"] .stream-head > div {
    display: none;
  }
  html[data-page="index"] .stream-feature {
    height: 225px;
    padding: 34px 24px;
  }
  html[data-page="index"] .stream-feature:after {
    width: 130px;
    height: 130px;
    right: 22px;
    top: 45px;
  }
  html[data-page="index"] .thumb-row {
    padding: 0 14px 18px;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }
  html[data-page="index"] .thumb-row > div {
    height: 74px;
    padding: 9px;
  }
  html[data-page="index"] .numbers {
    padding: 52px 0;
  }
  html[data-page="index"] .numbers-grid {
    gap: 28px 0;
  }
  html[data-page="index"] .numbers article {
    gap: 8px;
    flex-direction: column;
    text-align: center;
  }
  html[data-page="index"] .numbers strong {
    min-width: 0;
    font-size: 38px;
  }
  html[data-page="index"] .numbers span {
    font-size: 9px;
  }
  html[data-page="index"] .testimonial-grid,
  html[data-page="index"] .post-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="index"] .testimonial-card:last-child,
  html[data-page="index"] .post-card:last-child {
    grid-column: auto;
    width: 100%;
  }
  html[data-page="index"] .testimonial-card {
    min-height: 285px;
  }
  html[data-page="index"] .teacher-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="index"] .teacher-card:nth-child(4),
  html[data-page="index"] .teacher-card:nth-child(5) {
    transform: none;
  }
  html[data-page="index"] .teacher-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 8px);
    margin: auto;
  }
  html[data-page="index"] .teacher-portrait {
    height: 170px;
  }
  html[data-page="index"] .blog-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  html[data-page="index"] .post-cover {
    height: 180px;
  }
  html[data-page="index"] .cta-content > div:last-child {
    width: 100%;
    flex-direction: column;
  }
  html[data-page="index"] .cta-content .button {
    width: 100%;
  }
  html[data-page="index"] .faq-list button {
    grid-template-columns: 28px 1fr 36px;
    min-height: 72px;
  }
  html[data-page="index"] .faq-list button > strong {
    font-size: 14px;
  }
  html[data-page="index"] .faq-answer p {
    margin: 0 10px 0 40px;
  }
  html[data-page="index"] .footer-main {
    padding: 55px 0 45px;
  }
  html[data-page="index"] .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }
  html[data-page="index"] .footer-bottom > div {
    height: auto;
    min-height: 75px;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  html[data-page="index"] .floating-contact {
    width: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  html[data-page="index"] .floating-contact span {
    display: none;
  }
  html[data-page="index"] .video-modal {
    padding: 15px;
  }
  html[data-page="index"] .video-modal-box > button {
    right: 0;
    top: -50px;
  }
}

/* Responsive refinements for the redesigned journey and methodology */
html[data-page="index"] .journey,
html[data-page="index"] .method-resources,
html[data-page="index"] .study-flow {
  scroll-margin-top: 84px;
}
@media (max-width: 900px) {
  html[data-page="index"] .resources-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  html[data-page="index"] .resource-item {
    min-height: 0;
  }
  html[data-page="index"] .study-flow .trail {
    gap: 10px;
  }
  html[data-page="index"] .study-flow .trail article {
    padding-inline: 4px;
  }
  html[data-page="index"] .study-flow .trail article > div {
    padding-inline: 8px;
  }
  html[data-page="index"] .study-flow .performance-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  html[data-page="index"] .study-flow .performance-top,
  html[data-page="index"] .study-flow .ai-note {
    grid-column: auto;
  }
}
@media (max-width: 650px) {
  html[data-page="index"] .resources-heading {
    margin-bottom: 38px;
  }
  html[data-page="index"] .resources-pill {
    width: 100%;
    padding: 11px 16px;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
  }
  html[data-page="index"] .method-resources h2 {
    font-size: 29px;
  }
  html[data-page="index"] .resources-heading > p {
    font-size: 13px;
    line-height: 1.68;
  }
  html[data-page="index"] .resource-item {
    padding: 22px 20px 22px 82px;
    border-radius: 19px;
  }
  html[data-page="index"] .resource-icon {
    left: 19px;
    top: 21px;
    width: 48px;
    height: 48px;
  }
  html[data-page="index"] .resource-icon svg {
    width: 24px;
    height: 24px;
  }
  html[data-page="index"] .resource-item h3 {
    font-size: 17px;
  }
  html[data-page="index"] .resource-item p {
    font-size: 12px;
  }
  html[data-page="index"] .study-flow .method-head {
    margin-bottom: 42px;
  }
  html[data-page="index"] .study-flow .trail {
    display: flex;
    gap: 14px;
    margin-inline: -15px;
    padding: 8px 15px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  html[data-page="index"] .study-flow .trail::-webkit-scrollbar {
    display: none;
  }
  html[data-page="index"] .study-flow .trail-line,
  html[data-page="index"] .study-flow .trail-line-fill {
    display: none;
  }
  html[data-page="index"] .study-flow .trail article {
    flex: 0 0 min(78vw, 286px);
    min-height: 250px;
    padding: 24px 20px;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    scroll-snap-align: center;
  }
  html[data-page="index"] .study-flow .trail article > div {
    max-width: none;
    width: 100%;
    margin-top: 20px;
    padding: 18px 0 0;
  }
  html[data-page="index"] .study-flow .performance-card {
    padding: 20px;
    border-radius: 22px;
  }
  html[data-page="index"] .study-flow .performance-body {
    gap: 18px;
  }
  html[data-page="index"] .study-flow .score-ring {
    width: 126px;
    height: 126px;
  }
  html[data-page="index"] .study-flow .discipline-bars > div {
    grid-template-columns: 74px 1fr 29px;
  }
}

/* Conheça também — cards reconstruídos com a identidade visual azul/verde */
html[data-page="index"] .also-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(47, 128, 237, 0.12), transparent 31%),
    radial-gradient(
      circle at 94% 100%,
      rgba(0, 179, 136, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
}
html[data-page="index"] .also-shell {
  width: min(1200px, calc(100% - 48px));
}
html[data-page="index"] .also-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
html[data-page="index"] .also-card {
  position: relative;
  min-height: 381px;
  padding: 30px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: linear-gradient(145deg, #061d31 0%, #0a4f70 58%, #00a982 100%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(8, 41, 66, 0.2);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
html[data-page="index"] .also-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 86px rgba(8, 41, 66, 0.27);
}
html[data-page="index"] .also-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
}
html[data-page="index"] .also-card:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -150px;
  top: -130px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(100, 220, 255, 0.12);
}
html[data-page="index"] .also-card-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -40px;
  bottom: -55px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(55, 225, 185, 0.2);
  filter: blur(30px);
}
html[data-page="index"] .also-logo {
  position: relative;
  z-index: 3;
  display: block;
  max-width: 230px;
  max-height: 78px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}
html[data-page="index"] .medflix-logo {
  max-width: 215px;
}
html[data-page="index"] .revalida-logo {
  max-width: 205px;
}
html[data-page="index"] .also-copy {
  position: absolute;
  z-index: 4;
  left: 30px;
  right: 30px;
  bottom: 30px;
  max-width: 66%;
}
html[data-page="index"] .also-copy > span {
  display: block;
  margin-bottom: 10px;
  color: #8fe6d1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
html[data-page="index"] .also-copy h3 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
html[data-page="index"] .also-copy p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.62;
}
html[data-page="index"] .also-copy a {
  width: max-content;
  height: 42px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 750;
  transition: 0.25s;
}
html[data-page="index"] .also-copy a:hover {
  background: #fff;
  color: #082942;
  transform: translateX(3px);
}
html[data-page="index"] .also-copy a svg {
  width: 16px;
  height: 16px;
}
html[data-page="index"] .also-person {
  position: absolute;
  z-index: 2;
  right: -10px;
  bottom: 0;
  width: 62%;
  height: auto;
  max-height: 75%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.25));
  transition: transform 0.45s ease;
}
html[data-page="index"] .also-card:hover .also-person {
  transform: translate3d(-5px, -5px, 0) scale(1.025);
}
html[data-page="index"] .also-device {
  right: -28px;
  bottom: 15px;
  width: 52%;
  max-height: 72%;
  transform: rotate(1deg);
}
html[data-page="index"] .also-card:hover .also-device {
  transform: translate3d(-5px, -7px, 0) rotate(-1deg) scale(1.03);
}
html[data-page="index"] .revalida-person {
  right: -4px;
  width: 61%;
}
html[data-page="index"] .also-medicina {
  background: linear-gradient(145deg, #061d31 0%, #145d84 58%, #00a982 100%);
}
html[data-page="index"] .also-revalida {
  background: linear-gradient(145deg, #082942 0%, #0d5572 52%, #00aa83 100%);
}

/* Hub de vídeos */
html[data-page="index"] .video-hub {
  overflow: hidden;
  background: linear-gradient(135deg, #061c30 0%, #092f4b 58%, #075b60 100%);
  color: #fff;
}
html[data-page="index"] .video-hub:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.65) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: linear-gradient(120deg, transparent 8%, #000 72%);
}
html[data-page="index"] .video-hub .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="index"] .video-hub-head {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: end;
}
html[data-page="index"] .video-hub h2 {
  color: #fff;
}
html[data-page="index"] .video-hub-head > p {
  margin: 0;
  color: #b7cbd7;
  font-size: 14px;
  line-height: 1.75;
}
html[data-page="index"] .media-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
html[data-page="index"] .media-video-card {
  padding: 0;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.17);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}
html[data-page="index"] .media-video-card:hover {
  transform: translateY(-7px);
  border-color: rgba(101, 226, 194, 0.6);
  background: rgba(255, 255, 255, 0.1);
}
html[data-page="index"] .media-poster {
  position: relative;
  aspect-ratio: 16/9;
  display: block;
  overflow: hidden;
  background: #071725;
}
html[data-page="index"] .media-poster:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 18, 29, 0.55));
}
html[data-page="index"] .media-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}
html[data-page="index"] .media-video-card:hover .media-poster img {
  transform: scale(1.055);
  filter: saturate(1.08);
}
html[data-page="index"] .media-poster i {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(13px);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.07);
  transition: 0.3s;
}
html[data-page="index"] .media-video-card:hover .media-poster i {
  background: #fff;
  color: var(--blue);
  transform: translate(-50%, -50%) scale(1.08);
}
html[data-page="index"] .media-poster b {
  position: absolute;
  z-index: 2;
  right: 13px;
  top: 13px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(4, 24, 38, 0.72);
  color: #8fe6d1;
  font-size: 10px;
}
html[data-page="index"] .media-video-copy {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
html[data-page="index"] .media-video-copy small {
  color: #72e0c2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
html[data-page="index"] .media-video-copy strong {
  margin: 9px 0 22px;
  font-size: 15px;
  line-height: 1.35;
}
html[data-page="index"] .media-video-copy em {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c6d6df;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}
html[data-page="index"] .media-video-copy em svg {
  width: 16px;
  height: 16px;
}
html[data-page="index"] .video-modal-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}

/* Carrosséis premium */
html[data-page="index"] .carousel-heading {
  margin-bottom: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
html[data-page="index"] .carousel-heading .section-heading {
  margin-bottom: 0;
}
html[data-page="index"] .carousel-controls {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
html[data-page="index"] .carousel-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(8, 41, 66, 0.08);
  transition: 0.25s;
}
html[data-page="index"] .carousel-arrow:hover:not(:disabled) {
  transform: translateY(-3px);
  border-color: rgba(47, 128, 237, 0.42);
  color: var(--blue);
}
html[data-page="index"] .carousel-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
html[data-page="index"] .carousel-counter {
  min-width: 54px;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}
html[data-page="index"] .carousel-viewport {
  overflow: hidden;
  padding: 4px 2px 18px;
}
html[data-page="index"] .carousel-track {
  display: flex;
  gap: 22px;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 0.8, 0.24, 1);
}
html[data-page="index"] .carousel-slide {
  flex: 0 0 auto;
}
html[data-page="index"] .testimonial-carousel .testimonial-card {
  min-height: 350px;
}
html[data-page="index"] .demo-label {
  margin-top: 3px;
  color: var(--blue) !important;
  font-size: 8px !important;
  font-weight: 700;
}
html[data-page="index"] .teachers {
  background: var(--surface);
}
html[data-page="index"] .teacher-carousel .carousel-track {
  gap: 16px;
}
html[data-page="index"] .teacher-card {
  min-height: 0;
  padding: 14px 14px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 14px 35px rgba(8, 41, 66, 0.07);
}
html[data-page="index"] .teacher-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(8, 41, 66, 0.13);
}
html[data-page="index"] .teacher-thumb {
  position: relative;
  height: 190px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 15px;
  background: var(--surface-soft);
}
html[data-page="index"] .teacher-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
html[data-page="index"] .teacher-thumb span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(8, 41, 66, 0.85);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
html[data-page="index"] .teacher-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
html[data-page="index"] .teacher-card p {
  min-height: 0;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.58;
}
html[data-page="index"] .teacher-card a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 750;
}
html[data-page="index"] .teacher-card a svg {
  width: 15px;
  height: 15px;
}

/* Faixa institucional idêntica ao material de referência */
html[data-page="index"] .brand-strip {
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid #e5eef2;
  border-bottom: 1px solid #e5eef2;
}
html[data-page="index"] .brand-strip-inner {
  width: 100%;
  margin: auto;
  background: #fff;
}
html[data-page="index"] .brand-strip img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #fff;
}
html[data-page="index"][data-theme="dark"] .brand-strip {
  background: #fff;
}

@media (max-width: 1100px) {
  html[data-page="index"] .also-grid {
    grid-template-columns: 1fr 1fr;
  }
  html[data-page="index"] .also-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 11px);
    margin: auto;
  }
  html[data-page="index"] .media-video-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  html[data-page="index"] .also-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="index"] .also-card,
  html[data-page="index"] .also-card:last-child {
    width: 100%;
    max-width: 680px;
    min-height: 500px;
    margin: auto;
    grid-column: auto;
  }
  html[data-page="index"] .video-hub-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  html[data-page="index"] .carousel-heading {
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  html[data-page="index"] .also-shell {
    width: calc(100% - 28px);
  }
  html[data-page="index"] .also-card {
    min-height: 470px;
    padding: 24px;
    border-radius: 24px;
  }
  html[data-page="index"] .also-logo {
    max-width: 200px;
    max-height: 68px;
  }
  html[data-page="index"] .also-copy {
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: 72%;
  }
  html[data-page="index"] .also-copy h3 {
    font-size: 22px;
  }
  html[data-page="index"] .also-copy p {
    font-size: 11px;
  }
  html[data-page="index"] .also-person {
    width: 68%;
    opacity: 0.92;
  }
  html[data-page="index"] .also-device {
    width: 57%;
    right: -22px;
  }
  html[data-page="index"] .media-video-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="index"] .media-video-card {
    max-width: 520px;
    width: 100%;
    margin: auto;
  }
  html[data-page="index"] .carousel-heading {
    flex-direction: column;
    align-items: stretch;
  }
  html[data-page="index"] .carousel-controls {
    align-self: flex-end;
  }
  html[data-page="index"] .carousel-track {
    gap: 14px;
  }
  html[data-page="index"] .testimonial-carousel .testimonial-card {
    min-height: 310px;
  }
  html[data-page="index"] .teacher-thumb {
    height: 220px;
  }
  html[data-page="index"] .brand-strip {
    overflow-x: auto;
  }
  html[data-page="index"] .brand-strip img {
    width: 980px;
    max-width: none;
  }
}

/* Ajustes finos de composição dos cards Conheça também */
html[data-page="index"] .also-medflix .also-copy {
  max-width: 58%;
}
html[data-page="index"] .also-medicina .also-copy,
html[data-page="index"] .also-revalida .also-copy {
  max-width: 52%;
}
html[data-page="index"] .also-medicina .also-person {
  width: 50%;
  right: -22px;
}
html[data-page="index"] .also-revalida .also-person {
  width: 49%;
  right: -20px;
}
html[data-page="index"] .also-medflix .also-device {
  width: 44%;
  right: -16px;
  bottom: 24px;
}
html[data-page="index"] .also-medicina .also-copy h3,
html[data-page="index"] .also-revalida .also-copy h3 {
  font-size: 22px;
}
@media (max-width: 900px) {
  html[data-page="index"] .also-medflix .also-copy,
  html[data-page="index"] .also-medicina .also-copy,
  html[data-page="index"] .also-revalida .also-copy {
    max-width: 58%;
  }
  html[data-page="index"] .also-medicina .also-person,
  html[data-page="index"] .also-revalida .also-person {
    width: 48%;
  }
}
@media (max-width: 640px) {
  html[data-page="index"] .also-medflix .also-copy,
  html[data-page="index"] .also-medicina .also-copy,
  html[data-page="index"] .also-revalida .also-copy {
    max-width: 62%;
  }
  html[data-page="index"] .also-medicina .also-person,
  html[data-page="index"] .also-revalida .also-person {
    width: 52%;
    right: -24px;
  }
  html[data-page="index"] .also-medflix .also-device {
    width: 48%;
    right: -20px;
  }
}

/* ===== Ajustes editoriais e institucionais — agosto/2026 ===== */
html[data-page="index"] .video-hub-head {
  display: block;
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}
html[data-page="index"] .video-hub-head > div {
  max-width: 900px;
  margin: 0 auto;
}

html[data-page="index"] .testimonials .carousel-heading,
html[data-page="index"] .teachers .carousel-heading {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
html[data-page="index"] .testimonials .carousel-heading .section-heading,
html[data-page="index"] .teachers .carousel-heading .section-heading {
  width: 100%;
  min-width: 0;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}
html[data-page="index"]
  .teachers
  .carousel-heading.teachers-heading
  .section-heading {
  width: 100%;
  max-width: 1280px;
}
html[data-page="index"]
  .teachers
  .carousel-heading.teachers-heading
  .section-heading
  > p {
  max-width: none;
  white-space: nowrap;
}
html[data-page="index"] .testimonials .carousel-controls,
html[data-page="index"] .teachers .carousel-controls {
  align-self: center;
}
html[data-page="index"] .teacher-thumb {
  background: transparent !important;
}
html[data-page="index"] .teacher-thumb img {
  background: transparent !important;
}

html[data-page="index"] .blog-head {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
html[data-page="index"] .blog-head > div {
  max-width: 900px;
}
html[data-page="index"] .blog-head > a {
  justify-content: center;
  font-size: 13px;
}
@media (max-width: 1180px) {
  html[data-page="index"]
    .teachers
    .carousel-heading.teachers-heading
    .section-heading
    > p {
    white-space: normal;
  }
}
html[data-page="index"] .post-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
html[data-page="index"] .cover-3 {
  background: linear-gradient(135deg, #0a3150, #00a582);
}
html[data-page="index"] .cover-4 {
  background: linear-gradient(135deg, #102f58, #2f80ed 58%, #00a982);
}
html[data-page="index"] .cover-5 {
  background: linear-gradient(135deg, #082942, #246b8f 58%, #7abf52);
}
html[data-page="index"] .cover-6 {
  background: linear-gradient(135deg, #183454, #0097b2 60%, #04b482);
}
html[data-page="index"] .cover-7 {
  background: linear-gradient(135deg, #082942, #075d72 55%, #7ed957);
}
html[data-page="index"] .post-body h3 {
  min-height: 94px;
}

/* Faixa institucional: os dois grupos ficam empilhados e centralizados. */
html[data-page="index"] .brand-strip {
  padding: 50px 0 54px;
  overflow: visible;
  background: #fff;
  border-top: 1px solid #dfeaf0;
  border-bottom: 1px solid #dfeaf0;
}
html[data-page="index"] .brand-strip-inner {
  width: min(1040px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  background: #fff;
}
html[data-page="index"] .brand-group {
  min-width: 0;
}
html[data-page="index"] .brand-group h2 {
  margin: 0 0 20px;
  color: #496b9a;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: center;
}
html[data-page="index"] .brand-strip-divider {
  width: 100%;
  height: 1px;
  min-height: 1px;
  background: #d6e2e8;
}
html[data-page="index"] .brand-logos {
  display: grid;
  gap: 16px;
}
html[data-page="index"] .institution-logos {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
html[data-page="index"] .developed-logos {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
html[data-page="index"] .brand-logo-card {
  height: 104px;
  padding: 18px 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dce8ef;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 41, 66, 0.055);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
html[data-page="index"] .brand-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 128, 237, 0.25);
  box-shadow: 0 14px 30px rgba(8, 41, 66, 0.09);
}
html[data-page="index"] .brand-logo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: transparent;
}
html[data-page="index"][data-theme="dark"] .brand-strip,
html[data-page="index"][data-theme="dark"] .brand-strip-inner,
html[data-page="index"][data-theme="dark"] .brand-logo-card {
  background: #fff;
}

@media (max-width: 1100px) {
  html[data-page="index"] .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html[data-page="index"] .post-card:last-child {
    grid-column: auto;
    width: auto;
    margin: 0;
  }
  html[data-page="index"] .brand-strip-inner {
    width: min(100% - 40px, 960px);
  }
  html[data-page="index"] .brand-strip-divider {
    width: 100%;
    min-height: 1px;
    height: 1px;
  }
}

@media (max-width: 760px) {
  html[data-page="index"] .post-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="index"] .post-card:last-child {
    width: 100%;
  }
  html[data-page="index"] .post-body h3 {
    min-height: 0;
  }
  html[data-page="index"] .institution-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html[data-page="index"] .institution-logos .brand-logo-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    justify-self: center;
  }
  html[data-page="index"] .developed-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html[data-page="index"] .brand-logo-card {
    height: 92px;
    padding: 15px 17px;
  }
}

@media (max-width: 430px) {
  html[data-page="index"] .brand-strip-inner {
    width: min(100% - 24px, var(--max));
  }
  html[data-page="index"] .brand-group h2 {
    font-size: 12px;
  }
  html[data-page="index"] .brand-logo-card {
    height: 82px;
    padding: 12px;
  }
}

/* ============================================================
   Cabeçalho e rodapé globais — padrão para todas as páginas
   ============================================================ */









html[data-page="index"] .footer-brand > p {
  font-size: 17px !important;
  line-height: 1.75 !important;
}
html[data-page="index"] .footer-links h3 {
  font-size: 17px !important;
  letter-spacing: 0.01em;
}
html[data-page="index"] .footer-links a,
html[data-page="index"] .footer-links span {
  font-size: 15px !important;
  line-height: 1.62 !important;
}
html[data-page="index"] .footer-links small {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="index"] .footer-bottom > div {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="index"] .brand-group h2 {
  font-size: 14px !important;
}

@media (max-width: 920px) {
  
  
}

/* ============================================================
   Nova composição da home — agosto/2026
   ============================================================ */
html[data-page="index"] .section-title-pill {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 13px 31px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #1598c7 0%, #08b5a0 54%, #68d55e 100%);
  color: #fff !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  text-align: center;
  text-transform: none;
  box-shadow: 0 14px 32px rgba(9, 173, 150, 0.2);
  text-shadow: 0 1px 2px rgba(3, 65, 75, 0.18);
}
html[data-page="index"] .new-section-heading {
  max-width: 970px;
  margin: 0 auto 46px;
  text-align: center;
}
html[data-page="index"] .new-section-heading > p {
  max-width: 870px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.72;
}
html[data-page="index"] .section-subtitle-new {
  margin: 24px auto 0;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-align: center;
}
html[data-page="index"] .section-subtitle-new em {
  color: var(--blue);
  font-style: normal;
}
html[data-page="index"] .final-cta .section-title-pill {
  margin: 0;
  font-size: 26px !important;
}
html[data-page="index"] .faq-lead {
  margin: 25px 0 0;
  color: var(--ink);
  font-size: clamp(27px, calc(2.7vw + 2px), 40px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}
html[data-page="index"] .faq-lead em {
  color: var(--green);
  font-style: normal;
}
html[data-page="index"] .brand-title-pill {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 18px !important;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0a7180 !important;
  font-size: 15px !important;
  letter-spacing: 0.12em !important;
  box-shadow: none;
}

html[data-page="index"] .platform-inside {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 8%, rgba(47, 128, 237, 0.12), transparent 28%),
    radial-gradient(
      circle at 91% 86%,
      rgba(0, 179, 136, 0.13),
      transparent 30%
    ),
    var(--surface);
}
html[data-page="index"] .platform-inside::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image: radial-gradient(
    circle,
    rgba(25, 130, 170, 0.17) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: linear-gradient(120deg, #000, transparent 74%);
  pointer-events: none;
}
html[data-page="index"] .platform-inside .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="index"] .platform-tour-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
html[data-page="index"] .platform-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-content: start;
  gap: 10px;
}
html[data-page="index"] .platform-tab {
  min-height: 72px;
  padding: 12px 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--border));
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 96%, var(--blue) 4%);
  color: var(--ink);
  text-align: center;
  font-weight: 400;
  box-shadow: 0 12px 30px rgba(8, 41, 66, 0.055);
  cursor: pointer;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}
html[data-page="index"] .platform-tab-label {
  display: block;
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 400;
  line-height: 1.3;
}
html[data-page="index"] .platform-tab:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--green) 58%, transparent);
  background: linear-gradient(
    100deg,
    rgba(47, 128, 237, 0.1),
    rgba(0, 179, 136, 0.12)
  );
  box-shadow: 0 15px 32px rgba(8, 41, 66, 0.09);
}
html[data-page="index"] .platform-tab.active {
  transform: translateY(-5px);
  border-color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--green));
  color: #fff;
  box-shadow:
    0 16px 34px rgba(0, 151, 178, 0.28),
    0 7px 18px rgba(8, 41, 66, 0.14);
}
html[data-page="index"] .platform-frame {
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 29px;
  background: linear-gradient(145deg, #061b2c, #0a4053 65%, #087264);
  box-shadow: 0 35px 85px rgba(8, 41, 66, 0.24);
}
html[data-page="index"] .platform-browser {
  height: 40px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 17px 17px 0 0;
  background: rgba(3, 19, 30, 0.88);
}
html[data-page="index"] .platform-browser i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b6b;
}
html[data-page="index"] .platform-browser i:nth-child(2) {
  background: #ffd166;
}
html[data-page="index"] .platform-browser i:nth-child(3) {
  background: #50d890;
}
html[data-page="index"] .platform-browser span {
  margin-left: auto;
  color: #9fb7c3;
  font-size: 9px;
  letter-spacing: 0.08em;
}
html[data-page="index"] .platform-viewport {
  position: relative;
  height: clamp(560px, 49vw, 682px);
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  background: #eef4f7;
}
html[data-page="index"] .platform-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.46s ease,
    transform 0.46s ease,
    visibility 0.46s;
}
html[data-page="index"] .platform-panel.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}
html[data-page="index"] .platform-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: top center;
  background: #f5f8fa;
}
html[data-page="index"] .platform-panel[data-platform-panel="cronograma"] img {
  object-fit: cover;
  object-position: center;
  background: #061b2c;
}
html[data-page="index"] .platform-caption {
  min-height: 68px;
  padding: 15px 10px 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #c9dce5;
  font-size: 12px;
}
html[data-page="index"] .platform-caption strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
}
html[data-page="index"] .platform-caption button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s;
}
html[data-page="index"] .platform-caption button:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #083048;
}

html[data-page="index"] .courses-showcase {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(32, 143, 177, 0.14);
  border-bottom: 1px solid rgba(0, 179, 136, 0.16);
  background:
    radial-gradient(
      circle at 8% 14%,
      rgba(47, 128, 237, 0.19),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(0, 179, 136, 0.19),
      transparent 31%
    ),
    linear-gradient(135deg, #e4f5fb 0%, #f2f9ff 48%, #e8f8f0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 28px 70px rgba(47, 128, 237, 0.035);
}
html[data-page="index"] .courses-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.32;
  background-image: radial-gradient(
    circle,
    rgba(16, 126, 160, 0.23) 1px,
    transparent 1.4px
  );
  background-size: 29px 29px;
  mask-image: linear-gradient(115deg, #000 0%, transparent 54%, #000 100%);
  pointer-events: none;
}
html[data-page="index"] .courses-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 470px;
  height: 470px;
  right: -260px;
  top: -250px;
  border: 1px solid rgba(0, 179, 136, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(47, 128, 237, 0.035),
    0 0 90px rgba(0, 179, 136, 0.09);
  pointer-events: none;
}
html[data-page="index"] .courses-showcase .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="index"] .courses-showcase .new-section-heading > p {
  color: #456575;
  font-weight: 650;
}
html[data-page="index"] .courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
html[data-page="index"] .course-card-new {
  position: relative;
  min-height: 280px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(83, 157, 183, 0.2);
  border-radius: 25px;
  background: var(--surface);
  box-shadow: 0 20px 48px rgba(8, 41, 66, 0.095);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}
html[data-page="index"] .course-card-new::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -100px;
  top: -105px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.18),
    transparent 69%
  );
  transition: transform 0.45s ease;
}
html[data-page="index"] .course-card-new::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: right 0.45s ease;
}
html[data-page="index"] .course-card-new:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 179, 136, 0.32);
  box-shadow: 0 28px 58px rgba(8, 41, 66, 0.13);
}
html[data-page="index"] .course-card-new:hover::before {
  transform: scale(1.2);
}
html[data-page="index"] .course-card-new:hover::after {
  right: 0;
}
html[data-page="index"] .course-card-icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 21px;
  background: linear-gradient(145deg, #2f80ed, #159fc2 54%, #00b388);
  color: #fff;
  box-shadow:
    0 16px 34px rgba(47, 128, 237, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  animation: index-courseIconFloat 3.8s ease-in-out infinite;
  isolation: isolate;
}
html[data-page="index"] .course-card-icon::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(47, 128, 237, 0.2);
  border-radius: 25px;
  opacity: 0.72;
  animation: index-courseIconHalo 3.8s ease-in-out infinite;
}
html[data-page="index"] .course-card-icon::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 16px;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.28),
    transparent 42%
  );
  pointer-events: none;
}
html[data-page="index"] .course-card-icon svg {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  filter: drop-shadow(0 4px 7px rgba(2, 53, 79, 0.2));
  transition: transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="index"] .course-card-new:nth-child(2) .course-card-icon {
  background: linear-gradient(145deg, #1266db, #257fef 52%, #03b4a0);
  animation-delay: -0.65s;
}
html[data-page="index"] .course-card-new:nth-child(3) .course-card-icon {
  background: linear-gradient(145deg, #008fb5, #00aeaa 55%, #64ca61);
  animation-delay: -1.3s;
}
html[data-page="index"] .course-card-new:nth-child(4) .course-card-icon {
  background: linear-gradient(145deg, #215fd4, #557ee8 52%, #08b895);
  animation-delay: -1.95s;
}
html[data-page="index"] .course-card-new:nth-child(5) .course-card-icon {
  background: linear-gradient(145deg, #087ba9, #0aa6aa 55%, #6ac85d);
  animation-delay: -2.6s;
}
html[data-page="index"] .course-card-new:nth-child(6) .course-card-icon {
  background: linear-gradient(145deg, #216fd7, #00a3b6 52%, #17b86e);
  animation-delay: -3.25s;
}
html[data-page="index"] .course-card-new:hover .course-card-icon svg {
  transform: scale(1.15) rotate(-7deg);
}
html[data-page="index"] .course-card-new:hover .course-card-icon::before {
  border-color: rgba(0, 179, 136, 0.5);
  transform: scale(1.08) rotate(8deg);
}
@keyframes index-courseIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(2deg);
  }
}
@keyframes index-courseIconHalo {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.06);
  }
}
html[data-page="index"] .course-card-new small {
  display: block;
  margin-top: 21px;
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
}
html[data-page="index"] .course-card-new h3 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -0.035em;
}
html[data-page="index"] .course-card-new p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.66;
}
html[data-page="index"] .course-card-new a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}
html[data-page="index"] .course-card-new a svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
html[data-page="index"] .course-card-new a:hover svg {
  transform: translateX(4px);
}

/* Faixa de destaque que apresenta a cobertura do Plano Premium. */
html[data-page="index"] .premium-platform-band {
  position: relative;
  width: 100%;
  min-height: 58px;
  margin-top: 26px;
  padding: 10px 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(143, 226, 255, 0.48);
  border-radius: 17px;
  background: linear-gradient(100deg, #237fe5 0%, #0d9fbd 50%, #00ae7f 100%);
  color: #fff;
  box-shadow:
    0 16px 34px rgba(4, 101, 145, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: clamp(14px, 1.5vw, 20px);
  letter-spacing: -0.01em;
  text-align: center;
}
html[data-page="index"] .premium-platform-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent 18%,
    rgba(255, 255, 255, 0.2) 48%,
    transparent 76%
  );
  transform: translateX(-72%);
}
html[data-page="index"] .premium-platform-message {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 2px;
  color: inherit;
  font-size: inherit;
  line-height: 1.25;
}
html[data-page="index"] .premium-platform-message strong {
  font-weight: 850;
  line-height: inherit;
}
html[data-page="index"] .premium-platform-message > span {
  font-weight: 560;
  line-height: inherit;
}

html[data-page="index"] .solutions-new {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(47, 128, 237, 0.12), transparent 31%),
    radial-gradient(
      circle at 94% 100%,
      rgba(0, 179, 136, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, var(--surface), var(--surface-soft));
}
html[data-page="index"] .solutions-grid-new {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
html[data-page="index"] .solution-card-new {
  position: relative;
  min-height: 420px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: linear-gradient(145deg, #061d31 0%, #0b5070 57%, #00a982 100%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(8, 41, 66, 0.2);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
html[data-page="index"] .solution-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 88px rgba(8, 41, 66, 0.28);
}
html[data-page="index"] .solution-card-new::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(135deg, #000, transparent 74%);
}
html[data-page="index"] .solution-card-new::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 310px;
  height: 310px;
  right: -150px;
  top: -140px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(100, 220, 255, 0.13);
}
html[data-page="index"] .solution-logo {
  position: relative;
  z-index: 3;
  max-width: 218px;
  max-height: 74px;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}
html[data-page="index"] .extension-wordmark {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
html[data-page="index"] .extension-wordmark i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.13);
  font-style: normal;
}
html[data-page="index"] .extension-wordmark i svg {
  width: 28px;
  height: 28px;
}
html[data-page="index"] .extension-wordmark strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.03em;
}
html[data-page="index"] .extension-wordmark span {
  display: block;
  margin-top: 5px;
  color: #91f0d7;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
}
html[data-page="index"] .solution-person {
  position: absolute;
  z-index: 1;
  right: -24px;
  bottom: 0;
  width: 61%;
  max-height: 82%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.27));
  transition: transform 0.45s ease;
}
html[data-page="index"] .solution-card-new:hover .solution-person {
  transform: translate3d(-5px, -6px, 0) scale(1.025);
}
html[data-page="index"] .solution-device {
  width: 49%;
  right: -18px;
  bottom: 12px;
  transform: rotate(1deg);
}
html[data-page="index"] .solution-card-new:hover .solution-device {
  transform: translate3d(-5px, -7px, 0) rotate(-1deg) scale(1.03);
}
html[data-page="index"] .solution-body {
  position: relative;
  z-index: 4;
  left: auto;
  right: auto;
  bottom: auto;
  max-width: 61%;
  margin-top: 42px;
}
html[data-page="index"] .solution-body > span {
  display: block;
  margin-bottom: 9px;
  color: #8fe6d1;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
}
html[data-page="index"] .solution-body h3 {
  margin: 0 0 11px;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
html[data-page="index"] .solution-body p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  line-height: 1.58;
}
html[data-page="index"] .solution-body a {
  width: max-content;
  min-height: 41px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  transition: 0.25s;
}
html[data-page="index"] .solution-body a:hover {
  transform: translateX(3px);
  background: #fff;
  color: #082942;
}
html[data-page="index"] .solution-extension {
  background: linear-gradient(145deg, #071d35 0%, #17628a 52%, #02a978 100%);
}
html[data-page="index"] .solution-extension .solution-person {
  width: 64%;
  right: -46px;
  opacity: 0.95;
}
html[data-page="index"] .solution-extension .solution-body {
  max-width: 65%;
  margin-top: 28px;
}
html[data-page="index"] .extension-courses {
  margin: 11px 0 15px;
  display: grid;
  gap: 5px;
}
html[data-page="index"] .extension-courses span {
  position: relative;
  padding-left: 13px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.3;
}
html[data-page="index"] .extension-courses span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7ed957;
  box-shadow: 0 0 9px rgba(126, 217, 87, 0.75);
}

html[data-page="index"] .methodology-new {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eefbff 0%, #f7fffb 48%, #eef9f2 100%);
}
html[data-page="index"] .methodology-new::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -330px;
  top: -310px;
  border: 1px solid rgba(0, 179, 136, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 110px rgba(0, 179, 136, 0.08);
}
html[data-page="index"] .methodology-new .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="index"] .methodology-new .new-section-heading {
  max-width: 1120px;
  margin-bottom: 34px;
}
html[data-page="index"] .methodology-new .new-section-heading > p {
  max-width: 1040px;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.72;
}
html[data-page="index"] .methodology-layout {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 28px;
  align-items: stretch;
}
html[data-page="index"] .learning-panel,
html[data-page="index"] .practice-panel {
  border-radius: 29px;
}
html[data-page="index"] .learning-panel {
  padding: 32px;
  border: 1px solid rgba(47, 128, 237, 0.16);
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 0 25px 65px rgba(8, 41, 66, 0.09);
  backdrop-filter: blur(12px);
}
html[data-page="index"] .method-panel-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}
html[data-page="index"] .method-panel-heading i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  background: linear-gradient(145deg, var(--blue), var(--green));
  color: #fff;
  font-style: normal;
  box-shadow: 0 13px 29px rgba(47, 128, 237, 0.23);
}
html[data-page="index"] .method-panel-heading i svg {
  width: 28px;
  height: 28px;
}
html[data-page="index"] .method-panel-heading small {
  display: block;
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: 0.14em;
}
html[data-page="index"] .method-panel-heading h3 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: clamp(23px, 2vw, 28px);
  line-height: 1.14;
}
html[data-page="index"] .learning-stack {
  display: grid;
  gap: 12px;
}
html[data-page="index"] .learning-item {
  min-height: 101px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(47, 128, 237, 0.12);
  border-radius: 17px;
  background: #fff;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
html[data-page="index"] .learning-item:hover {
  transform: translateX(7px);
  border-color: rgba(0, 179, 136, 0.35);
  box-shadow: 0 12px 28px rgba(8, 41, 66, 0.08);
}
html[data-page="index"] .learning-item > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(
    145deg,
    rgba(47, 128, 237, 0.12),
    rgba(0, 179, 136, 0.14)
  );
  color: var(--blue);
  font-style: normal;
}
html[data-page="index"] .learning-item > i svg {
  width: 24px;
  height: 24px;
}
html[data-page="index"] .learning-item h4 {
  margin: 0 0 5px;
  color: #082942;
  font-size: 16px;
  line-height: 1.3;
}
html[data-page="index"] .learning-item p {
  margin: 0;
  color: #526b79;
  font-size: 12.5px;
  line-height: 1.5;
}
html[data-page="index"] .practice-panel {
  position: relative;
  padding: 32px;
  overflow: hidden;
  background: linear-gradient(145deg, #061b2c, #0a3d51 58%, #087263 100%);
  color: #fff;
  box-shadow: 0 30px 78px rgba(8, 41, 66, 0.23);
}
html[data-page="index"] .practice-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.65) 1px,
    transparent 1px
  );
  background-size: 27px 27px;
  mask-image: linear-gradient(135deg, transparent 8%, #000 88%);
}
html[data-page="index"] .practice-panel > * {
  position: relative;
  z-index: 1;
}
html[data-page="index"] .practice-panel .method-panel-heading small {
  color: #7ee5c8;
  font-size: 11.5px;
}
html[data-page="index"] .practice-panel .method-panel-heading h3 {
  color: #fff;
  font-size: clamp(25px, 2.1vw, 30px);
}
html[data-page="index"] .practice-panel .method-panel-heading i {
  background: linear-gradient(145deg, #04b494, #7ed957);
}
html[data-page="index"] .clinical-case-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}
html[data-page="index"] .clinical-case-card > strong {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
}
html[data-page="index"] .clinical-case-card > strong span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(126, 217, 87, 0.16);
  color: #9af07c;
}
html[data-page="index"] .case-types {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
html[data-page="index"] .case-types article {
  min-height: 114px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  transition: 0.25s;
}
html[data-page="index"] .case-types article:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 217, 87, 0.38);
  background: rgba(255, 255, 255, 0.1);
}
html[data-page="index"] .case-types strong {
  display: block;
  color: #fff;
  font-size: 16.5px;
  line-height: 1.3;
}
html[data-page="index"] .case-types p {
  margin: 7px 0 0;
  color: #c7d8e0;
  font-size: 14.5px;
  line-height: 1.5;
}
html[data-page="index"] .practice-tools {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
html[data-page="index"] .practice-tool {
  min-height: 139px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.075);
  transition: 0.28s;
}
html[data-page="index"] .practice-tool:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(82, 219, 185, 0.42);
}
html[data-page="index"] .practice-tool i {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(82, 219, 185, 0.15);
  color: #7ee5c8;
  font-style: normal;
}
html[data-page="index"] .practice-tool i svg {
  width: 22px;
  height: 22px;
}
html[data-page="index"] .practice-tool strong {
  display: block;
  margin-top: 11px;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}
html[data-page="index"] .practice-tool p {
  margin: 6px 0 0;
  color: #c7d8e0;
  font-size: 14.5px;
  line-height: 1.48;
}
html[data-page="index"] .study-insights {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
html[data-page="index"] .study-insight {
  min-height: 82px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.16),
    rgba(0, 179, 136, 0.15)
  );
}
html[data-page="index"] .study-insight i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #9af07c;
  font-style: normal;
}
html[data-page="index"] .study-insight strong {
  display: block;
  color: #fff;
  font-size: 15.5px;
  line-height: 1.3;
}
html[data-page="index"] .study-insight span {
  display: block;
  margin-top: 4px;
  color: #c7d8e0;
  font-size: 14.5px;
  line-height: 1.45;
}

html[data-page="index"] .blog-head > div {
  max-width: 1200px;
}
html[data-page="index"] .blog .section-subtitle-new {
  white-space: nowrap;
  font-size: clamp(24px, 2.6vw, 37px);
}
html[data-page="index"] .blog .section-subtitle-new em {
  color: var(--green);
}

html[data-page="index"] .ecosystem-videos {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #061c30 0%, #092f4b 58%, #075b60 100%);
  color: #fff;
}
html[data-page="index"] .ecosystem-videos::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.65) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: linear-gradient(120deg, transparent 8%, #000 72%);
}
html[data-page="index"] .ecosystem-videos .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="index"] .ecosystem-videos .new-section-heading > p {
  color: #c3d5de;
}

html[data-page="index"][data-theme="dark"] .platform-inside,
html[data-page="index"][data-theme="dark"] .solutions-new {
  background: var(--surface);
}
html[data-page="index"][data-theme="dark"] .courses-showcase {
  border-color: rgba(104, 213, 180, 0.17);
  background:
    radial-gradient(
      circle at 8% 14%,
      rgba(47, 128, 237, 0.23),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(0, 179, 136, 0.22),
      transparent 34%
    ),
    linear-gradient(135deg, #041522 0%, #082b40 50%, #075548 100%);
  box-shadow: inset 0 1px 0 rgba(129, 224, 196, 0.08);
}
html[data-page="index"][data-theme="dark"] .courses-showcase::before {
  opacity: 0.22;
}
html[data-page="index"][data-theme="dark"] .courses-showcase::after {
  border-color: rgba(108, 226, 190, 0.18);
  box-shadow:
    0 0 0 58px rgba(47, 128, 237, 0.045),
    0 0 100px rgba(0, 179, 136, 0.12);
}
html[data-page="index"][data-theme="dark"]
  .courses-showcase
  .new-section-heading
  > p {
  color: #c9dce4;
}
html[data-page="index"][data-theme="dark"] .platform-tab,
html[data-page="index"][data-theme="dark"] .course-card-new {
  border-color: rgba(136, 208, 196, 0.15);
  background: linear-gradient(145deg, #0d2b3d, #10384a);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2);
}
html[data-page="index"][data-theme="dark"] .platform-tab.active {
  border-color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--green));
  color: #fff;
  box-shadow:
    0 16px 36px rgba(0, 179, 136, 0.24),
    0 8px 20px rgba(0, 0, 0, 0.24);
}
html[data-page="index"][data-theme="dark"] .platform-tab:hover:not(.active) {
  border-color: rgba(0, 179, 136, 0.42);
  background: linear-gradient(145deg, #10374a, #10483f);
}
html[data-page="index"][data-theme="dark"] .course-card-new small {
  color: #66dfbd;
}
html[data-page="index"][data-theme="dark"] .course-card-new p {
  color: #c6d5dd;
}
html[data-page="index"][data-theme="dark"] .course-card-new a {
  color: #75b2ff;
}
html[data-page="index"][data-theme="dark"] .methodology-new {
  background: linear-gradient(135deg, #071d2d, #0a2630 52%, #0a302c);
}
html[data-page="index"][data-theme="dark"] .learning-panel {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(10, 35, 49, 0.92);
  box-shadow: none;
}
html[data-page="index"][data-theme="dark"] .learning-item {
  border-color: rgba(255, 255, 255, 0.09);
  background: #0d2b3d;
}
html[data-page="index"][data-theme="dark"] .learning-item h4 {
  color: #f7fafc;
}
html[data-page="index"][data-theme="dark"] .learning-item p {
  color: #aab8c4;
}

@media (max-width: 1080px) {
  html[data-page="index"] .platform-tour-shell {
    grid-template-columns: minmax(0, 1fr);
  }
  html[data-page="index"] .platform-viewport {
    height: 440px;
  }
  html[data-page="index"] .courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html[data-page="index"] .solutions-grid-new {
    grid-template-columns: 1fr 1fr;
  }
  html[data-page="index"] .solution-card-new:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    margin-inline: auto;
  }
  html[data-page="index"] .methodology-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  html[data-page="index"] .platform-tour-shell {
    grid-template-columns: 1fr;
  }
  html[data-page="index"] .platform-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  html[data-page="index"] .platform-tab {
    min-height: 68px;
    padding: 10px 8px;
    text-align: center;
  }
  html[data-page="index"] .platform-tab:hover,
  html[data-page="index"] .platform-tab.active {
    transform: translateY(-4px);
  }
  html[data-page="index"] .solutions-grid-new {
    grid-template-columns: 1fr;
  }
  html[data-page="index"] .solution-card-new,
  html[data-page="index"] .solution-card-new:last-child {
    width: 100%;
    max-width: 670px;
    min-height: 515px;
    margin-inline: auto;
    grid-column: auto;
  }
}
@media (max-width: 640px) {
  html[data-page="index"] .section-title-pill {
    width: 100%;
    padding: 12px 20px 13px;
    border-radius: 28px;
    font-size: 26px !important;
    box-shadow: 0 12px 28px rgba(9, 173, 150, 0.18);
  }
  html[data-page="index"] .new-section-heading {
    margin-bottom: 34px;
  }
  html[data-page="index"] .new-section-heading > p {
    margin-top: 21px;
    font-size: 14px;
  }
  html[data-page="index"] .platform-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html[data-page="index"] .platform-frame {
    padding: 8px;
    border-radius: 22px;
  }
  html[data-page="index"] .platform-viewport {
    height: 310px;
  }
  html[data-page="index"] .platform-browser span {
    display: none;
  }
  html[data-page="index"] .platform-caption {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 8px 4px;
  }
  html[data-page="index"] .platform-caption button {
    width: 100%;
  }
  html[data-page="index"] .courses-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="index"] .course-card-new {
    min-height: 260px;
  }
  html[data-page="index"] .solution-card-new {
    min-height: 500px;
    padding: 24px;
    border-radius: 25px;
  }
  html[data-page="index"] .solution-logo {
    max-width: 195px;
  }
  html[data-page="index"] .solution-body {
    left: auto;
    right: auto;
    bottom: auto;
    max-width: 68%;
    margin-top: 46px;
  }
  html[data-page="index"] .solution-person {
    width: 65%;
    right: -35px;
  }
  html[data-page="index"] .solution-extension .solution-person {
    width: 68%;
    right: -52px;
  }
  html[data-page="index"] .solution-extension .solution-body {
    max-width: 70%;
    margin-top: 32px;
  }
  html[data-page="index"] .learning-panel,
  html[data-page="index"] .practice-panel {
    padding: 18px;
    border-radius: 23px;
  }
  html[data-page="index"] .blog .section-subtitle-new {
    white-space: normal;
    font-size: 28px;
  }
  html[data-page="index"] .case-types,
  html[data-page="index"] .practice-tools,
  html[data-page="index"] .study-insights {
    grid-template-columns: 1fr;
  }
  html[data-page="index"] .case-types article,
  html[data-page="index"] .practice-tool {
    min-height: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html[data-page="index"] .platform-panel,
  html[data-page="index"] .platform-tab,
  html[data-page="index"] .course-card-new,
  html[data-page="index"] .solution-card-new,
  html[data-page="index"] .solution-person,
  html[data-page="index"] .learning-item,
  html[data-page="index"] .practice-tool {
    transition: none !important;
  }
  html[data-page="index"] .course-card-icon,
  html[data-page="index"] .course-card-icon::before {
    animation: none !important;
  }
}

/* ============================================================
   Refinamentos finais da home — agosto/2026
   ============================================================ */
@media (min-width: 921px) {
  
  
  
  
  
  
}

html[data-page="index"] .hero-desempenho {
  background-color: #061d2f;
  background-position: right center;
  background-size: 78% auto;
  background-repeat: no-repeat;
}
html[data-page="index"] .hero-inteligencia .hero-copy,
html[data-page="index"] .hero-jornada .hero-copy {
  max-width: 630px;
}
html[data-page="index"] .hero-inteligencia h1,
html[data-page="index"] .hero-jornada h1,
html[data-page="index"] .hero-desempenho h1 {
  font-size: 42px;
  font-weight: 100;
}
html[data-page="index"] .hero-desempenho .hero-copy,
html[data-page="index"] .hero-desempenho h1,
html[data-page="index"] .hero-desempenho .hero-copy > p {
  max-width: 565px;
}
html[data-page="index"] .hero-desempenho .hero-visual-labels {
  display: none;
}
html[data-page="index"] .hero-copy > p.hero-lead {
  margin: 20px 0 12px;
  color: #d7e6ef;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.55;
}
html[data-page="index"] .hero-copy > p.hero-supporting {
  margin: 0 0 23px;
  color: #9fbac8;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.52;
}
html[data-page="index"] .hero-resource-list {
  max-width: 575px;
  margin: 24px 0 27px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
}
html[data-page="index"] .hero-resource-list li {
  min-height: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #edf9fb;
  font-size: 19px;
  font-weight: 750;
  line-height: 1.25;
  box-shadow: none;
  backdrop-filter: none;
}
html[data-page="index"] .hero-resource-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #4da5ff, #42d6ad);
  box-shadow: 0 0 12px rgba(66, 214, 173, 0.48);
}
html[data-page="index"] .hero-resource-list li:last-child {
  grid-column: auto;
}

html[data-page="index"] .platform-browser {
  min-height: 46px;
  height: auto;
}
html[data-page="index"] .platform-browser-copy {
  min-width: 0;
  margin-left: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
html[data-page="index"] .platform-browser-copy strong {
  color: #fff;
  font-size: 12px;
}
html[data-page="index"] .platform-browser-copy span {
  margin-left: 0;
  color: #9fb7c3;
  font-size: 10px;
  letter-spacing: 0;
}
html[data-page="index"] .platform-description {
  max-width: 930px;
  margin: 27px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.72;
  text-align: center;
}

html[data-page="index"] .methodology-new .new-section-heading {
  margin-bottom: 34px;
}
html[data-page="index"] .methodology-summary {
  max-width: 1080px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.68;
  text-align: center;
}

html[data-page="index"] .carousel-controls-below {
  margin: 24px auto 0;
  justify-content: center;
}
html[data-page="index"] .teachers {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(47, 128, 237, 0.1);
  border-bottom: 1px solid rgba(0, 179, 136, 0.12);
  background:
    radial-gradient(
      circle at 8% 14%,
      rgba(47, 128, 237, 0.13),
      transparent 31%
    ),
    radial-gradient(
      circle at 92% 84%,
      rgba(0, 179, 136, 0.14),
      transparent 33%
    ),
    linear-gradient(135deg, #edf7ff 0%, #f7fcff 50%, #eefaf5 100%);
}
html[data-page="index"] .teachers::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(
    circle,
    rgba(28, 131, 169, 0.22) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  mask-image: linear-gradient(120deg, #000, transparent 72%);
  pointer-events: none;
}
html[data-page="index"] .teachers .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="index"][data-theme="dark"] .teachers {
  border-color: rgba(106, 220, 190, 0.13);
  background:
    radial-gradient(circle at 8% 14%, rgba(47, 128, 237, 0.2), transparent 31%),
    radial-gradient(
      circle at 92% 84%,
      rgba(0, 179, 136, 0.18),
      transparent 34%
    ),
    linear-gradient(135deg, #061725 0%, #092b3c 52%, #083b35 100%);
}
html[data-page="index"][data-theme="dark"] .teachers .teacher-card {
  border-color: rgba(129, 211, 196, 0.15);
  background: linear-gradient(145deg, #0c2a3b, #103849);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

html[data-page="index"] .final-cta .cta-content {
  gap: 34px;
}
html[data-page="index"] .final-cta h2 {
  max-width: 690px;
  margin: 20px 0 0;
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.08;
}
html[data-page="index"] .cta-logos {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
html[data-page="index"] .cta-logos img {
  width: auto;
  max-width: 190px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}
html[data-page="index"] .cta-logos .cta-logo-revisamed {
  height: 23px;
}
html[data-page="index"] .cta-logos .cta-logo-medprovas {
  height: 34px;
}
html[data-page="index"] .cta-logos .cta-logo-medflix {
  height: 29px;
}
html[data-page="index"] .final-cta .cta-content > div:last-child .button {
  min-height: 58px;
  padding-inline: 27px;
  font-size: 15px;
}

html[data-page="index"] .blog .section-subtitle-new,
html[data-page="index"] .blog .section-subtitle-new em {
  font-weight: 400;
}

@media (max-width: 1100px) and (min-width: 901px) {
  html[data-page="index"] .hero-desempenho {
    background-size: 62% auto;
  }
  html[data-page="index"] .hero-desempenho .hero-copy,
  html[data-page="index"] .hero-desempenho h1,
  html[data-page="index"] .hero-desempenho .hero-copy > p {
    max-width: 500px;
  }
  html[data-page="index"] .hero-resource-list {
    max-width: 520px;
  }
}

@media (max-width: 900px) and (min-width: 601px) {
  html[data-page="index"] .hero-inteligencia .hero-copy,
  html[data-page="index"] .hero-jornada .hero-copy {
    max-width: 52%;
  }
  html[data-page="index"] .hero-inteligencia h1,
  html[data-page="index"] .hero-jornada h1 {
    max-width: 100%;
    font-size: 42px;
  }
  html[data-page="index"] .hero-desempenho {
    background-position: right bottom;
    background-size: 58% auto;
  }
  html[data-page="index"] .hero-desempenho .hero-copy,
  html[data-page="index"] .hero-desempenho h1,
  html[data-page="index"] .hero-desempenho .hero-copy > p {
    max-width: 48%;
  }
  html[data-page="index"] .hero-resource-list {
    max-width: 100%;
    grid-template-columns: 1fr;
  }
  html[data-page="index"] .hero-resource-list li:last-child {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  html[data-page="index"] .hero .eyebrow {
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: 0.1em;
  }
  html[data-page="index"] .hero-desempenho {
    background-position: center bottom;
    background-size: auto 48%;
  }
  html[data-page="index"] .hero-inteligencia,
  html[data-page="index"] .hero-jornada {
    background-position: center bottom;
    background-size: auto var(--hero-mobile-size);
  }
  html[data-page="index"] .hero-brand-logo {
    width: min(76vw, 300px);
    max-width: 100%;
    margin-bottom: 20px;
  }
  html[data-page="index"] .hero-desempenho h1 {
    font-size: 42px;
  }
  html[data-page="index"] .hero-desempenho .hero-copy > p {
    font-size: 13px;
  }
  html[data-page="index"] .hero-inteligencia h1,
  html[data-page="index"] .hero-jornada h1 {
    font-size: 42px;
  }
  html[data-page="index"] .hero-copy > p.hero-lead {
    margin: 14px 0 8px;
    font-size: 13px;
    line-height: 1.45;
  }
  html[data-page="index"] .hero-copy > p.hero-supporting {
    margin: 0 0 16px;
    font-size: 12px;
    line-height: 1.42;
  }
  html[data-page="index"] .hero-resource-list {
    max-width: none;
    margin: 15px 0 18px;
    gap: 6px;
  }
  html[data-page="index"] .hero-resource-list li {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    font-size: 13px;
  }
  html[data-page="index"] .platform-browser {
    min-height: 58px;
    align-items: flex-start;
    padding-top: 12px;
  }
  html[data-page="index"] .platform-browser-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    white-space: normal;
  }
  html[data-page="index"] .platform-browser-copy strong {
    font-size: 11px;
  }
  html[data-page="index"] .platform-browser-copy span {
    display: block;
    font-size: 9px;
    line-height: 1.25;
  }
  html[data-page="index"] .platform-description {
    margin-top: 21px;
    font-size: 14px;
  }
  html[data-page="index"] .methodology-summary {
    margin-top: 25px;
    font-size: 14px;
    text-align: left;
  }
  html[data-page="index"] .carousel-controls-below {
    align-self: center;
    margin-top: 18px;
  }
  html[data-page="index"] .cta-logos {
    gap: 17px;
  }
  html[data-page="index"] .cta-logos img {
    max-width: 145px;
  }
}

/* Alinhamento final dos banners e acabamento visual das seções */
html[data-page="index"] .hero-container {
  align-items: stretch;
  padding-top: 64px;
  padding-bottom: 76px;
}
html[data-page="index"] .hero-copy {
  width: 100%;
  height: 80%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}
html[data-page="index"] .hero-brand-logo {
  align-self: start;
  margin: 0;
}
html[data-page="index"] .hero-message {
  align-self: center;
  min-width: 0;
}
html[data-page="index"] .hero-message h1 {
  margin: 0;
}
html[data-page="index"] .hero-message > .hero-lead {
  max-width: 565px;
  margin: 20px 0 0;
  color: #d7e6ef;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.55;
}
html[data-page="index"] .hero-message .hero-resource-list {
  margin: 24px 0 0;
}
html[data-page="index"] .hero-buttons {
  align-self: end;
  margin-top: 0;
}

html[data-page="index"] .section-title-pill {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 0 0 17px;
  border-radius: 0;
  background: transparent;
  color: var(--ink) !important;
  box-shadow: none;
  text-shadow: none;
}
html[data-page="index"] .section-title-pill::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(120px, 38%, 205px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: translateX(-50%);
}
html[data-page="index"] .ecosystem-videos .section-title-pill {
  color: #fff !important;
}
html[data-page="index"] .section-after-grid {
  max-width: 880px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}
html[data-page="index"] .courses-showcase .section-after-grid {
  color: #456575;
}
html[data-page="index"][data-theme="dark"]
  .courses-showcase
  .section-after-grid,
html[data-page="index"] .ecosystem-videos .section-after-grid {
  color: #c9dce4;
}

html[data-page="index"] .final-cta {
  padding: 36px 0;
}
html[data-page="index"] .final-cta .cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 245px;
  gap: 48px;
}
html[data-page="index"] .final-cta .cta-content > div:first-child {
  max-width: none;
  min-width: 0;
}
html[data-page="index"] .final-cta .section-title-pill {
  margin: 0;
  padding: 13px 31px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1598c7 0%, #08b5a0 54%, #68d55e 100%);
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(9, 173, 150, 0.2);
  text-shadow: 0 1px 2px rgba(3, 65, 75, 0.18);
}
html[data-page="index"] .final-cta .section-title-pill::after {
  display: none;
}
html[data-page="index"] .final-cta h2 {
  max-width: none;
  margin: 16px 0 0;
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
html[data-page="index"] .cta-logos {
  margin-top: 20px;
  gap: 25px;
  flex-wrap: nowrap;
}
html[data-page="index"] .cta-logos .cta-logo-revisamed {
  height: 23px;
}
html[data-page="index"] .cta-logos .cta-logo-medprovas {
  height: 34px;
}
html[data-page="index"] .cta-logos .cta-logo-medflix {
  height: 29px;
}
html[data-page="index"] .final-cta .cta-content > div:last-child {
  width: 245px;
}
html[data-page="index"] .final-cta .cta-content > div:last-child .button {
  width: 100%;
}

html[data-page="index"] .floating-contact {
  height: 58px;
  padding: 0 20px;
  gap: 11px;
  border-radius: 19px;
  font-size: 13px;
}
html[data-page="index"] .floating-contact svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 1080px) {
  html[data-page="index"] .final-cta .cta-content {
    gap: 30px;
  }
  html[data-page="index"] .final-cta h2 {
    font-size: 25px;
  }
}

@media (max-width: 900px) {
  html[data-page="index"] .final-cta {
    padding: 56px 0;
  }
  html[data-page="index"] .final-cta .cta-content {
    display: flex;
    align-items: flex-start;
    gap: 32px;
  }
  html[data-page="index"] .final-cta h2 {
    white-space: normal;
  }
  html[data-page="index"] .final-cta .cta-content > div:last-child {
    width: 100%;
  }
}

@media (max-width: 640px) {
  html[data-page="index"] .hero-container {
    align-items: stretch;
    padding-top: 42px;
    padding-bottom: 190px;
  }
  html[data-page="index"] .hero-brand-logo {
    margin-bottom: 0;
  }
  html[data-page="index"] .hero-message > .hero-lead {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.45;
  }
  html[data-page="index"] .hero-message .hero-resource-list {
    margin-top: 15px;
  }
  html[data-page="index"] .section-title-pill {
    width: max-content;
    max-width: 100%;
    padding: 0 0 15px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  html[data-page="index"] .final-cta .section-title-pill {
    width: max-content;
    padding: 12px 20px 13px;
    border-radius: 28px;
    background: linear-gradient(90deg, #1598c7 0%, #08b5a0 54%, #68d55e 100%);
    box-shadow: 0 12px 28px rgba(9, 173, 150, 0.18);
  }
  html[data-page="index"] .section-after-grid {
    margin-top: 24px;
    font-size: 14px;
  }
  html[data-page="index"] .cta-logos {
    gap: 16px;
    flex-wrap: wrap;
  }
  html[data-page="index"] .floating-contact {
    width: 58px;
    height: 58px;
    padding: 0;
  }
}

/* Ajustes editoriais — agosto/2026 */
html[data-page="index"] .section-title-pill {
  text-transform: uppercase !important;
}
html[data-page="index"] .platform-viewport,
html[data-page="index"] .platform-panel {
  background: #fff;
}
html[data-page="index"] .methodology-platform-tour {
  margin-top: 58px;
  padding-top: 58px;
  border-top: 1px solid color-mix(in srgb, var(--border) 82%, transparent);
}
html[data-page="index"] .post-body h3 {
  font-weight: 500;
}

/* Professores: duas linhas de cinco, avançando uma linha por vez. */
html[data-page="index"] .teacher-carousel {
  --teacher-columns: 5;
  --teacher-visible-rows: 2;
}
html[data-page="index"] .teacher-carousel .carousel-viewport {
  padding: 4px 2px;
  transition: height 0.35s ease;
}
html[data-page="index"] .teacher-carousel .carousel-track {
  display: grid;
  grid-template-columns: repeat(var(--teacher-columns), minmax(0, 1fr));
  grid-auto-rows: 356px;
  gap: 16px;
  align-items: stretch;
}
html[data-page="index"] .teacher-carousel .carousel-slide {
  width: auto;
  min-width: 0;
  flex-basis: auto !important;
}
html[data-page="index"] .teacher-carousel .teacher-card {
  height: 80%;
  padding: 0 0 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 6px;
  text-align: center;
}
html[data-page="index"] .teacher-carousel .teacher-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin-bottom: 0;
  flex: 0 0 auto;
  border-radius: 0;
}
html[data-page="index"] .teacher-carousel .teacher-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background:
    linear-gradient(135deg, rgba(47, 128, 237, 0.86), rgba(0, 151, 178, 0.82)),
    var(--surface-soft);
}
html[data-page="index"] .teacher-carousel .teacher-thumb span,
html[data-page="index"] .teacher-carousel .teacher-card a {
  display: none;
}
html[data-page="index"] .teacher-carousel .teacher-card h3 {
  margin: 19px 12px 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}
html[data-page="index"] .teacher-carousel .teacher-card h3::before {
  content: "";
  width: 48px;
  height: 2px;
  margin: 0 auto 11px;
  display: block;
  background: var(--green);
}
html[data-page="index"] .teacher-carousel .teacher-card p {
  min-height: 0;
  margin: 0 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 980px) {
  html[data-page="index"] .teacher-carousel {
    --teacher-columns: 3;
    --teacher-visible-rows: 2;
  }
  html[data-page="index"] .teacher-carousel .carousel-track {
    grid-auto-rows: 330px;
  }
}
@media (max-width: 640px) {
  html[data-page="index"] .teacher-carousel {
    --teacher-columns: 1;
    --teacher-visible-rows: 1;
  }
  html[data-page="index"] .teacher-carousel .carousel-track {
    grid-auto-rows: 430px;
  }
}

/* Depoimentos completos em modal */
html[data-page="index"] body.testimonial-modal-open {
  overflow: hidden;
}
html[data-page="index"] .testimonial-modal {
  width: min(720px, calc(100% - 32px));
  max-height: min(82vh, 760px);
  padding: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  border-radius: 26px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(4, 25, 42, 0.36);
}
html[data-page="index"] .testimonial-modal::backdrop {
  background: rgba(3, 20, 33, 0.76);
  backdrop-filter: blur(8px);
}
html[data-page="index"] .testimonial-modal-inner {
  position: relative;
  max-height: min(82vh, 760px);
  padding: 34px;
  overflow-y: auto;
}
html[data-page="index"] .testimonial-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
html[data-page="index"] .testimonial-modal-profile {
  padding-right: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
}
html[data-page="index"] .testimonial-modal-face {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 3px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(8, 41, 66, 0.2);
}
html[data-page="index"] .testimonial-modal-name {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}
html[data-page="index"] .testimonial-modal-meta,
html[data-page="index"] .testimonial-modal-institution {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
html[data-page="index"] .testimonial-modal-stars {
  margin: 28px 0 16px;
  color: #e8b747;
  font-size: 13px;
  letter-spacing: 3px;
}
html[data-page="index"] .testimonial-modal-text {
  margin: 0;
  white-space: pre-line;
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="index"] .post-body h3 {
  min-height: 0;
  font-weight: 500;
}
html[data-page="index"] .post-cover {
  height: 160px !important;
}
@media (max-width: 640px) {
  html[data-page="index"] .testimonial-modal-inner {
    padding: 26px 22px 28px;
  }
  html[data-page="index"] .testimonial-modal-profile {
    padding-right: 48px;
    align-items: flex-start;
  }
  html[data-page="index"] .testimonial-modal-face {
    width: 78px;
    height: 78px;
  }
  html[data-page="index"] .testimonial-modal-text {
    font-size: 15px;
  }
}

/* Banner 01 — apresentação principal da plataforma */
html[data-page="index"] .hero-inteligencia .hero-container {
  padding-top: 48px;
  padding-bottom: 62px;
}
html[data-page="index"] .hero-inteligencia .hero-copy {
  width: 100%;
  max-width: 790px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
html[data-page="index"] .hero-inteligencia .hero-brand-logo {
  width: clamp(230px, 19vw, 300px);
  max-width: 72%;
  margin: 0 0 22px;
}
html[data-page="index"] .hero-inteligencia .hero-message {
  width: 100%;
  align-self: auto;
}
html[data-page="index"] .hero-inteligencia .hero-message h1 {
  max-width: 790px;
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 3vw, 50px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.042em;
}
html[data-page="index"] .hero-inteligencia .hero-message h1 span,
html[data-page="index"] .hero-inteligencia .hero-message h1 em {
  display: block;
}
html[data-page="index"] .hero-inteligencia .hero-message h1 em {
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 1101px) {
  html[data-page="index"] .hero-inteligencia .hero-message h1 span,
  html[data-page="index"] .hero-inteligencia .hero-message h1 em {
    white-space: nowrap;
  }
}
html[data-page="index"] .hero-inteligencia .hero-message > .hero-lead {
  max-width: 670px;
  margin: 24px 0 0;
  color: #c9d7e2;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 400;
  line-height: 1.55;
}
html[data-page="index"] .hero-inteligencia .hero-lead strong {
  font-weight: 650;
  background: linear-gradient(90deg, #4da5ff, #35d5ac);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
html[data-page="index"] .hero-inteligencia .hero-buttons {
  width: 100%;
  margin-top: 27px;
  align-self: auto;
  gap: 14px;
}
html[data-page="index"] .hero-inteligencia .button {
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.015em;
  white-space: nowrap;
}
html[data-page="index"] .hero-inteligencia .button.primary {
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 17px 38px rgba(0, 151, 178, 0.3);
}
html[data-page="index"] .hero-inteligencia .button.primary:hover {
  box-shadow: 0 21px 46px rgba(0, 179, 136, 0.36);
}
html[data-page="index"] .hero-inteligencia .button.ghost {
  border-color: rgba(35, 173, 237, 0.86);
  background: rgba(4, 22, 37, 0.42);
  color: #dce8f0;
}
html[data-page="index"] .hero-inteligencia .button.ghost:hover {
  border-color: var(--green);
  background: rgba(0, 179, 136, 0.12);
}
html[data-page="index"] .hero-jornada .button,
html[data-page="index"] .hero-desempenho .button {
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.015em;
  white-space: nowrap;
}
html[data-page="index"] .hero-jornada .button.primary,
html[data-page="index"] .hero-desempenho .button.primary {
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 17px 38px rgba(0, 151, 178, 0.3);
}
html[data-page="index"] .hero-jornada .button.primary:hover,
html[data-page="index"] .hero-desempenho .button.primary:hover {
  box-shadow: 0 21px 46px rgba(0, 179, 136, 0.36);
}
html[data-page="index"] .hero-inteligencia .hero-preparation-note {
  margin: 17px 0 0;
  color: #9eb1bf;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

@media (max-width: 1100px) and (min-width: 601px) {
  html[data-page="index"] .hero-inteligencia .hero-copy {
    max-width: 64%;
  }
  html[data-page="index"] .hero-inteligencia .hero-brand-logo {
    width: clamp(210px, 24vw, 260px);
    margin-bottom: 18px;
  }
  html[data-page="index"] .hero-inteligencia .hero-message h1 {
    font-size: clamp(32px, 4.25vw, 43px);
  }
  html[data-page="index"] .hero-inteligencia .hero-message > .hero-lead {
    margin-top: 18px;
    font-size: 14px;
  }
  html[data-page="index"] .hero-inteligencia .hero-buttons {
    margin-top: 20px;
    gap: 10px;
  }
  html[data-page="index"] .hero-inteligencia .button {
    min-height: 52px;
    padding-inline: 17px;
    font-size: 11px;
  }
  html[data-page="index"] .hero-jornada .button,
  html[data-page="index"] .hero-desempenho .button {
    min-height: 52px;
    padding-inline: 17px;
    font-size: 11px;
  }
  html[data-page="index"] .hero-inteligencia .hero-preparation-note {
    margin-top: 13px;
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  html[data-page="index"] .hero-inteligencia .hero-container {
    padding-top: 34px;
    padding-bottom: 150px;
  }
  html[data-page="index"] .hero-inteligencia .hero-copy {
    max-width: 100%;
    height: auto;
    justify-content: flex-start;
  }
  html[data-page="index"] .hero-inteligencia .hero-brand-logo {
    width: min(61vw, 230px);
    max-width: 100%;
    margin-bottom: 17px;
  }
  html[data-page="index"] .hero-inteligencia .hero-message h1 {
    max-width: 100%;
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }
  html[data-page="index"] .hero-inteligencia .hero-message > .hero-lead {
    max-width: 100%;
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.5;
  }
  html[data-page="index"] .hero-inteligencia .hero-buttons {
    margin-top: 19px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }
  html[data-page="index"] .hero-inteligencia .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 15px;
    font-size: 11px;
  }
  html[data-page="index"] .hero-jornada .button,
  html[data-page="index"] .hero-desempenho .button {
    min-height: 50px;
    padding-inline: 15px;
    font-size: 11px;
  }
  html[data-page="index"] .hero-inteligencia .hero-preparation-note {
    max-width: 330px;
    margin-top: 12px;
    font-size: 11px;
  }
}

/* ===== Ajustes solicitados — 17/08/2026 ===== */
html[data-page="index"] .hero-inteligencia .hero-message h1 {
  font-size: 42px !important;
  font-weight: 100 !important;
}
html[data-page="index"] .hero-inteligencia .hero-message h1 span,
html[data-page="index"] .hero-inteligencia .hero-message h1 em {
  font-weight: 100 !important;
}

html[data-page="index"] .solution-logo-stack {
  position: relative;
  z-index: 5;
  width: 235px;
  max-width: 62%;
  display: grid;
  gap: 10px;
  align-content: start;
}
html[data-page="index"] .solution-logo-stack img {
  width: 100%;
  height: 42px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

/* Professores: proporções originais das thumbs/cards. */
html[data-page="index"] .teacher-carousel .carousel-track {
  grid-auto-rows: 356px;
}
html[data-page="index"] .teacher-carousel .teacher-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
}
html[data-page="index"] .teacher-carousel .teacher-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
html[data-page="index"] .teacher-carousel .teacher-card h3 {
  margin-top: 19px;
}
@media (max-width: 980px) {
  html[data-page="index"] .teacher-carousel .carousel-track {
    grid-auto-rows: 412px;
  }
}
@media (max-width: 640px) {
  html[data-page="index"] .teacher-carousel .carousel-track {
    grid-auto-rows: 538px;
  }
}

/* Planos Revisamed */
html[data-page="index"] .ri-plans {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(0, 179, 136, 0.11),
      transparent 28%
    ),
    radial-gradient(circle at 9% 80%, rgba(47, 128, 237, 0.1), transparent 30%),
    var(--surface);
}
html[data-page="index"] .ri-plans-head {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
}
html[data-page="index"] .ri-plans-head > div:first-child {
  width: 100%;
}
html[data-page="index"] .ri-plans-controls {
  position: static;
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  transform: none;
}
html[data-page="index"] .ri-plans-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 9px 24px rgba(8, 41, 66, 0.07);
  transition: 0.25s ease;
}
html[data-page="index"] .ri-plans-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 128, 237, 0.32);
  color: var(--blue);
}
html[data-page="index"] .ri-plans-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}
html[data-page="index"] .ri-plans-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: none;
  border-radius: 28px;
  outline: none;
}
html[data-page="index"] .ri-plans-viewport::-webkit-scrollbar {
  display: none;
}
html[data-page="index"] .ri-plans-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  padding: 10px 0 24px;
}
html[data-page="index"] .ri-plan-card {
  position: relative;
  min-height: 635px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface) 96%, #fff),
    var(--surface)
  );
  box-shadow: 0 18px 44px rgba(8, 41, 66, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
html[data-page="index"] .ri-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 62px rgba(8, 41, 66, 0.14);
  border-color: rgba(47, 128, 237, 0.25);
}
html[data-page="index"] .ri-plan-card-featured {
  border: 2px solid color-mix(in srgb, var(--green) 58%, var(--blue) 42%);
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 179, 136, 0.12), transparent 28%),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--surface) 94%, #effff9),
      var(--surface)
    );
  box-shadow: 0 24px 58px rgba(0, 151, 178, 0.16);
}
html[data-page="index"] .ri-plan-card-featured h3 {
  color: color-mix(in srgb, var(--ink) 86%, var(--green));
}
html[data-page="index"] .ri-plan-topline {
  min-height: 25px;
}
html[data-page="index"] .ri-plan-topline span {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 9%, transparent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html[data-page="index"] .ri-plan-card-featured .ri-plan-topline span {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 7px 18px rgba(0, 151, 178, 0.16);
}
html[data-page="index"] .ri-plan-card h3 {
  margin: 18px 0 0;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
html[data-page="index"] .ri-plan-summary {
  min-height: 74px;
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}
html[data-page="index"] .ri-plan-duration {
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface-soft);
}
html[data-page="index"] .ri-plan-duration button {
  min-height: 38px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.22s ease;
}
html[data-page="index"] .ri-plan-duration button.active {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 8px 18px rgba(0, 151, 178, 0.18);
}
html[data-page="index"] .ri-plan-price {
  margin-top: 20px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 820;
  letter-spacing: -0.035em;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}
html[data-page="index"] .ri-plan-price.is-changing {
  opacity: 0.25;
  transform: translateY(3px);
}
html[data-page="index"] .ri-plan-access {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}
html[data-page="index"] .ri-plan-card ul {
  margin: 22px 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}
html[data-page="index"] .ri-plan-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.42;
}
html[data-page="index"] .ri-plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 10px;
  font-weight: 900;
}
html[data-page="index"] .ri-plan-cta {
  min-height: 48px;
  margin-top: auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  font-size: 12px;
  font-weight: 820;
  box-shadow: 0 13px 28px rgba(0, 151, 178, 0.18);
}
html[data-page="index"] .ri-plan-cta span {
  font-size: 19px;
  transition: transform 0.2s ease;
}
html[data-page="index"] .ri-plan-cta:hover span {
  transform: translateX(4px);
}
html[data-page="index"] .ri-plans-hint {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}
@media (max-width: 1050px) {
  html[data-page="index"] .ri-plans-track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
}
@media (max-width: 680px) {
  html[data-page="index"] .ri-plans-head {
    flex-direction: column;
    align-items: center;
  }
  html[data-page="index"] .ri-plans-track {
    grid-auto-columns: 86%;
    gap: 14px;
  }
  html[data-page="index"] .ri-plan-card {
    min-height: 610px;
    padding: 24px;
  }
  html[data-page="index"] .ri-plans-arrow {
    width: 42px;
    height: 42px;
  }
}

/* ============================================================
   R3 — componentes espelhados da R1 e cards de Planos e Preços
   ============================================================ */
html[data-page="r3"] .r1e-section {
  position: relative;
  padding: 108px 0;
}
html[data-page="r3"] .r1e-section-head {
  max-width: 980px;
  margin: 0 auto 52px;
  text-align: center;
}
html[data-page="r3"] .r1e-section-title {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 17px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.035em;
  text-align: center;
  text-transform: uppercase;
}
html[data-page="r3"] .r1e-section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(120px, 38%, 205px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: translateX(-50%);
}

/* Os três pilares usam exatamente a geometria, cores e animações da R1. */
html[data-page="r3"] .r1e-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
html[data-page="r3"] .r1e-pillar-card {
  position: relative;
  min-height: 0;
  padding: 32px 30px 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(47, 128, 237, 0.1), transparent 34%),
    linear-gradient(160deg, var(--surface) 0%, var(--surface-soft) 100%);
  box-shadow: 0 18px 50px rgba(8, 41, 66, 0.09);
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
html[data-page="r3"] .r1e-pillar-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px auto 22px 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(var(--blue), var(--green));
  transform: scaleY(0.38);
  transform-origin: center;
  transition: transform 0.35s ease;
}
html[data-page="r3"] .r1e-pillar-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green), #74d85c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
html[data-page="r3"] .r1e-pillar-card:hover {
  border-color: color-mix(in srgb, var(--green) 48%, var(--border));
  box-shadow: 0 30px 70px rgba(8, 41, 66, 0.15);
  transform: translateY(-9px);
}
html[data-page="r3"] .r1e-pillar-card:hover::before { transform: scaleY(1); }
html[data-page="r3"] .r1e-pillar-card:hover::after { transform: scaleX(1); }
html[data-page="r3"] .r1e-icon {
  flex: 0 0 66px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 21px;
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.15), inset 0 0 0 6px rgba(255, 255, 255, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
html[data-page="r3"] .r1e-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}
html[data-page="r3"] .r1e-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="r3"] .r1e-icon-blue { color: #2f80ed; background: rgba(47, 128, 237, 0.12); }
html[data-page="r3"] .r1e-icon-green { color: #00a47d; background: rgba(0, 179, 136, 0.12); }
html[data-page="r3"] .r1e-icon-orange { color: #ea7c22; background: rgba(234, 124, 34, 0.12); }
html[data-page="r3"] .r1e-pillar-card:hover .r1e-icon {
  box-shadow: 0 20px 42px rgba(0, 179, 136, 0.23), inset 0 0 0 6px rgba(255, 255, 255, 0.22);
  transform: translateY(-3px) rotate(-3deg) scale(1.05);
}
html[data-page="r3"] .r1e-pillar-card > small {
  position: absolute;
  top: 34px;
  right: 30px;
  padding: 7px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
html[data-page="r3"] .r1e-pillar-card h3 {
  margin: 20px 0 18px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
html[data-page="r3"] .r1e-pillar-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}
html[data-page="r3"] .r1e-pillar-card li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
html[data-page="r3"] .r1e-pillar-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  font-weight: 950;
}

/* Professores: a mesma seção da R1, com seis professores por tela. */
html[data-page="r3"] .r1e-experts { background: var(--surface); }
html[data-page="r3"] .r1e-expert-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 42px;
  align-items: center;
}
html[data-page="r3"] .r1e-teacher-carousel {
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 27px;
  background: linear-gradient(160deg, var(--surface), var(--surface-soft));
  box-shadow: 0 22px 60px rgba(8, 41, 66, 0.12);
}
html[data-page="r3"] .r1e-teacher-toolbar {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
html[data-page="r3"] .r1e-teacher-toolbar > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
}
html[data-page="r3"] .r1e-teacher-toolbar > span i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--green) 12%, transparent);
}
html[data-page="r3"] .r1e-teacher-toolbar > div { display: flex; gap: 7px; }
html[data-page="r3"] .r1e-teacher-toolbar button {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  font-size: 17px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
html[data-page="r3"] .r1e-teacher-toolbar button:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  transform: translateY(-2px);
}
html[data-page="r3"] .r1e-teacher-viewport { overflow: hidden; border-radius: 19px; }
html[data-page="r3"] .r1e-teacher-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
html[data-page="r3"] .r1e-teacher-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
html[data-page="r3"] .r1e-teacher-slide figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--surface-soft);
}
html[data-page="r3"] .r1e-teacher-slide figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(5, 32, 47, 0.32));
  pointer-events: none;
}
html[data-page="r3"] .r1e-teacher-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: filter 0.45s ease, transform 0.45s ease;
}
html[data-page="r3"] .r1e-teacher-slide figure:hover img { filter: saturate(1.08); transform: scale(1.055); }
html[data-page="r3"] .r1e-teacher-dots {
  min-height: 20px;
  margin-top: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
html[data-page="r3"] .r1e-teacher-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 38%, transparent);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}
html[data-page="r3"] .r1e-teacher-dots button.is-active { width: 27px; background: linear-gradient(90deg, var(--blue), var(--green)); }
html[data-page="r3"] .r1e-expert-copy { display: grid; gap: 15px; }
html[data-page="r3"] .r1e-expert-copy article {
  padding: 19px;
  display: flex;
  gap: 17px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: var(--surface-soft);
}
html[data-page="r3"] .r1e-expert-copy .r1e-icon { flex-basis: 49px; width: 49px; height: 49px; border-radius: 15px; }
html[data-page="r3"] .r1e-expert-copy .r1e-icon svg { width: 23px; height: 23px; }
html[data-page="r3"] .r1e-expert-copy h3 { margin: 1px 0 0; color: var(--ink); font-size: 18px; }
html[data-page="r3"] .r1e-expert-copy p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.62; }
html[data-page="r3"] .r1e-expert-copy blockquote {
  margin: 4px 0 0;
  padding: 23px 25px;
  border-left: 4px solid var(--green);
  border-radius: 0 18px 18px 0;
  color: #fff;
  background: linear-gradient(120deg, #082942, #0a3942);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

/* Acompanhamento reproduzido integralmente da R1. */
html[data-page="r3"] .r1e-progress {
  background: radial-gradient(circle at 10% 70%, rgba(47, 128, 237, 0.08), transparent 28%), var(--surface-soft);
}
html[data-page="r3"] .r1e-progress-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.73fr) minmax(0, 1.27fr);
  gap: 50px;
  align-items: center;
}
html[data-page="r3"] .r1e-progress-copy .r1e-section-title { margin-inline: 0; text-align: left; }
html[data-page="r3"] .r1e-progress-copy .r1e-section-title::after { left: 0; transform: none; }
html[data-page="r3"] .r1e-progress-lead {
  margin: 28px 0 0;
  color: var(--ink) !important;
  font-size: 23px !important;
  font-weight: 800;
  line-height: 1.25 !important;
}
html[data-page="r3"] .r1e-progress-copy > p { margin: 17px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
html[data-page="r3"] .r1e-progress-points { margin-top: 23px; display: grid; gap: 11px; }
html[data-page="r3"] .r1e-progress-points span { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 13px; font-weight: 750; }
html[data-page="r3"] .r1e-progress-points i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 10px;
  font-style: normal;
}
html[data-page="r3"] .r1e-dashboard {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--green) 22%, var(--border));
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 84px rgba(8, 41, 66, 0.18);
  transform: perspective(1400px) rotateY(-2deg);
  transition: transform 0.35s ease;
}
html[data-page="r3"] .r1e-dashboard:hover { transform: perspective(1400px) rotateY(0) translateY(-5px); }
html[data-page="r3"] .r1e-dashboard-top {
  min-height: 46px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #18374b;
  background: #edf5f8;
  font-size: 10px;
  font-weight: 800;
}
html[data-page="r3"] .r1e-dashboard-top b { color: #00a47d; }
html[data-page="r3"] .r1e-dashboard img { width: 100%; height: auto; aspect-ratio: 16 / 9; display: block; object-fit: contain; object-position: center; }

/* Planos R3: os mesmos componentes e a mesma troca 24/12 da página de preços. */
html[data-page="r3"] .r3x-specialty-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
html[data-page="r3"] .r3x-specialty-plan-card {
  position: relative;
  min-height: 720px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid #14a9c7;
  border-radius: 26px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, #fff), var(--surface));
  box-shadow: 0 18px 44px rgba(8, 41, 66, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
html[data-page="r3"] .r3x-specialty-plan-card:hover {
  border-color: #14a9c7;
  box-shadow: 0 28px 62px rgba(8, 41, 66, 0.14);
  transform: translateY(-6px);
}
html[data-page="r3"] .r3x-specialty-plan-card.is-highlighted { animation: r3x-highlight 1.8s ease; }
html[data-page="r3"] .r3x-plan-heading { display: flex; align-items: center; gap: 14px; }
html[data-page="r3"] .r3x-plan-heading > div { min-width: 0; }
html[data-page="r3"] .r3x-plan-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid currentColor;
  border-radius: 19px;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.22), 0 14px 30px rgba(8,41,66,.12);
  transition: transform .3s ease, box-shadow .3s ease;
}
html[data-page="r3"] .r3x-plan-icon::after { content:""; position:absolute; top:8px; right:8px; width:7px; height:7px; border:2px solid var(--surface); border-radius:50%; background:currentColor; box-shadow:0 0 12px currentColor; }
html[data-page="r3"] .r3x-plan-icon svg { width: 30px; height: 30px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
html[data-page="r3"] .r3x-plan-icon-blue { color:#2f80ed; background:rgba(47,128,237,.12); }
html[data-page="r3"] .r3x-plan-icon-green { color:#00a47d; background:rgba(0,179,136,.12); }
html[data-page="r3"] .r3x-plan-icon-orange { color:#ea7c22; background:rgba(234,124,34,.12); }
html[data-page="r3"] .r3x-specialty-plan-card:hover .r3x-plan-icon { transform:translateY(-3px) rotate(-3deg) scale(1.05); box-shadow:inset 0 0 0 6px rgba(255,255,255,.24),0 19px 38px rgba(0,179,136,.18); }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-topline { min-height: 25px; }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-topline span { display:inline-flex; min-height:25px; align-items:center; padding:0 10px; border-radius:999px; color:var(--blue); background:color-mix(in srgb,var(--blue) 9%,transparent); font-size:10px; font-weight:850; letter-spacing:.08em; text-transform:uppercase; }
html[data-page="r3"] .r3x-specialty-plan-card h3 { margin:8px 0 0; color:var(--ink); font-size:25px; line-height:1.1; letter-spacing:-.035em; }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-summary { min-height:62px; margin:18px 0; color:var(--muted); font-size:13px; line-height:1.62; }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-duration { padding:4px; display:grid; grid-template-columns:1fr 1fr; gap:4px; border:1px solid var(--border); border-radius:13px; background:var(--surface-soft); }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-duration button { min-height:38px; border:0; border-radius:9px; color:var(--muted); background:transparent; font:inherit; font-size:14px; font-weight:800; cursor:pointer; transition:.22s ease; }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-duration button.active { color:#fff; background:linear-gradient(90deg,var(--blue),var(--green)); box-shadow:0 8px 18px rgba(0,151,178,.18); }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-price { min-height:58px; display:flex; align-items:flex-end; color:var(--ink); font-size:24px; font-weight:820; letter-spacing:-.035em; transition:opacity .16s ease,transform .16s ease; }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-price.is-changing { opacity:.25; transform:translateY(3px); }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-access { margin-top:5px; color:var(--muted); font-size:11px; }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-cash { width:max-content; max-width:100%; margin:12px 0 0; padding:7px 11px; border:1px solid color-mix(in srgb,var(--green) 34%,var(--border)); border-radius:999px; color:color-mix(in srgb,var(--green) 76%,var(--ink)); background:color-mix(in srgb,var(--green) 9%,transparent); font-size:16px; font-weight:900; letter-spacing:.06em; text-transform:uppercase; }
html[data-page="r3"] .r3x-specialty-plan-card ul { margin:22px 0 24px; padding:0; display:grid; gap:10px; list-style:none; }
html[data-page="r3"] .r3x-specialty-plan-card li { position:relative; padding-left:24px; color:var(--ink); font-size:12px; line-height:1.42; }
html[data-page="r3"] .r3x-specialty-plan-card li::before { content:"✓"; position:absolute; left:0; top:0; width:17px; height:17px; display:grid; place-items:center; border-radius:50%; color:#fff; background:linear-gradient(135deg,var(--blue),var(--green)); font-size:10px; font-weight:900; }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-closing { margin:0 0 18px; display:grid; gap:5px; }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-closing strong { color:var(--ink); font-size:12px; line-height:1.45; }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-closing em { color:var(--muted); font-size:11px; font-style:italic; font-weight:500; line-height:1.5; }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-cta { min-height:48px; margin-top:auto; padding:0 16px; display:flex; align-items:center; justify-content:space-between; gap:14px; border-radius:13px; color:#fff; background:linear-gradient(90deg,var(--blue),var(--green)); font-size:14px; font-weight:820; box-shadow:0 13px 28px rgba(0,151,178,.18); }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-cta span { font-size:19px; transition:transform .2s ease; }
html[data-page="r3"] .r3x-specialty-plan-card .ri-plan-cta:hover span { transform:translateX(4px); }

@media (max-width:1080px) {
  html[data-page="r3"] .r3x-specialty-plan-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:920px) {
  html[data-page="r3"] .r1e-expert-grid,
  html[data-page="r3"] .r1e-progress-grid { grid-template-columns:1fr; }
  html[data-page="r3"] .r1e-teacher-carousel { max-width:760px; margin-inline:auto; }
  html[data-page="r3"] .r1e-progress-copy { text-align:center; }
  html[data-page="r3"] .r1e-progress-copy .r1e-section-title { margin-inline:auto; text-align:center; }
  html[data-page="r3"] .r1e-progress-copy .r1e-section-title::after { left:50%; transform:translateX(-50%); }
  html[data-page="r3"] .r1e-progress-points { width:max-content; max-width:100%; margin-inline:auto; text-align:left; }
  html[data-page="r3"] .r1e-dashboard { transform:none; }
}
@media (max-width:760px) {
  html[data-page="r3"] .r3x-specialty-plan-grid { grid-template-columns:1fr; }
  html[data-page="r3"] .r3x-specialty-plan-card { min-height:auto; }
}
@media (max-width:680px) {
  html[data-page="r3"] .r1e-section { padding:78px 0; }
  html[data-page="r3"] .r1e-section-head { margin-bottom:36px; }
  html[data-page="r3"] .r1e-section-title { width:100%; font-size:23px; line-height:1.2; }
  html[data-page="r3"] .r1e-pillar-grid { grid-template-columns:1fr; }
  html[data-page="r3"] .r1e-pillar-card { padding:25px 23px; }
  html[data-page="r3"] .r1e-teacher-carousel { padding:13px; }
  html[data-page="r3"] .r1e-teacher-slide { gap:7px; }
  html[data-page="r3"] .r1e-teacher-slide figure { border-radius:13px; }
  html[data-page="r3"] .r1e-teacher-toolbar > span { font-size:10px; }
  html[data-page="r3"] .r3x-specialty-plan-card { padding:24px; }
}
@media (prefers-reduced-motion: reduce) {
  html[data-page="r3"] .r1e-teacher-track { transition:none; }
}

/* Carrosséis com navegação lateral — ajuste agosto/2026 */
html[data-page="index"] .ri-plans-head {
  margin-bottom: 30px;
}
html[data-page="index"] .ri-plans-head .section-title-pill::after {
  width: clamp(120px, 38%, 205px);
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="index"] .ri-plans-stage,
html[data-page="index"] .carousel-side-stage {
  width: 100%;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 14px;
}
html[data-page="index"] .ri-plans-stage .ri-plans-arrow,
html[data-page="index"] .carousel-side-stage > .carousel-arrow {
  position: relative;
  z-index: 3;
  align-self: center;
  justify-self: center;
}
html[data-page="index"] .ri-plans-stage .ri-plans-viewport,
html[data-page="index"] .carousel-side-stage > .premium-carousel {
  min-width: 0;
  width: 100%;
}
html[data-page="index"] .carousel-side-stage .carousel-viewport {
  padding-inline: 2px;
}
html[data-page="index"] .testimonial-side-stage,
html[data-page="index"] .teacher-side-stage {
  margin-top: 0;
}

/* Professores: paginação horizontal de 10 em 10 (5 colunas x 2 linhas). */
html[data-page="index"] .teacher-carousel {
  --teacher-page-columns: 5;
  min-width: 0;
}
html[data-page="index"] .teacher-carousel .carousel-viewport {
  overflow: hidden;
  padding: 4px 2px 6px;
}
html[data-page="index"] .teacher-carousel .carousel-track {
  display: flex !important;
  width: 100%;
  gap: 0 !important;
  align-items: stretch;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 0.8, 0.24, 1);
}
html[data-page="index"] .teacher-carousel .teacher-page {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--teacher-page-columns), minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 16px;
  align-content: start;
}
html[data-page="index"] .teacher-carousel .teacher-card {
  width: 100%;
  height: 100% !important;
  min-height: 0;
  padding: 0 0 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 6px;
  text-align: center;
}
html[data-page="index"] .teacher-carousel .teacher-thumb {
  width: 100%;
  height: auto !important;
  aspect-ratio: 16 / 9;
  margin-bottom: 0;
  flex: 0 0 auto;
  border-radius: 0;
}
html[data-page="index"] .teacher-carousel .teacher-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
html[data-page="index"] .teacher-carousel .teacher-card h3 {
  margin: 17px 10px 5px;
}
html[data-page="index"] .teacher-carousel .teacher-card p {
  margin: 0 10px;
}

@media (max-width: 980px) {
  html[data-page="index"] .ri-plans-stage,
  html[data-page="index"] .carousel-side-stage {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 10px;
  }
  html[data-page="index"] .teacher-carousel {
    --teacher-page-columns: 3;
  }
  html[data-page="index"] .teacher-carousel .teacher-page {
    gap: 14px;
  }
}
@media (max-width: 680px) {
  html[data-page="index"] .ri-plans-stage,
  html[data-page="index"] .carousel-side-stage {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 7px;
  }
  html[data-page="index"] .ri-plans-stage .ri-plans-arrow,
  html[data-page="index"] .carousel-side-stage > .carousel-arrow {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 25px;
  }
}
@media (max-width: 640px) {
  html[data-page="index"] .teacher-carousel {
    --teacher-page-columns: 1;
  }
  html[data-page="index"] .teacher-carousel .teacher-page {
    gap: 0;
  }
}

/* === Ajustes solicitados: MedProvas / Revalida / Faixa MedFlix === */
html[data-page="index"] .solutions-grid-new .solution-medprovas {
  background: linear-gradient(145deg, #071d33 0%, #0b3154 44%, #0fa56d 100%);
}
html[data-page="index"] .solution-logo-medprovas {
  max-width: 250px;
  max-height: 84px;
}
html[data-page="index"] .solution-medprovas .solution-body {
  max-width: 52%;
  margin-top: 28px;
}
html[data-page="index"] .solution-medprovas .solution-body h3 {
  font-size: 26px;
}
html[data-page="index"] .solution-medprovas .solution-body p {
  font-size: 13px;
}
html[data-page="index"] .solution-student {
  right: 80px;
  bottom: -4px;
  width: 39%;
  max-height: 84%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.24));
}
html[data-page="index"] .medprovas-phone {
  width: 25%;
  right: -8px;
  bottom: 2px;
  transform: none;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}
html[data-page="index"] .solution-medprovas:hover .solution-student {
  transform: translate3d(-4px, -6px, 0) scale(1.02);
}
html[data-page="index"] .solution-medprovas:hover .medprovas-phone {
  transform: translate3d(-4px, -6px, 0) rotate(-1deg) scale(1.03);
}
html[data-page="index"] .solution-revalida {
  background: linear-gradient(145deg, #071d33 0%, #0b3e66 56%, #0fa56d 100%);
}
html[data-page="index"] .revalida-wordmark {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
html[data-page="index"] .revalida-wordmark img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
html[data-page="index"] .revalida-wordmark span {
  font-size: 28px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
}
html[data-page="index"] .solution-revalida .solution-body {
  max-width: 57%;
  margin-top: 30px;
}
html[data-page="index"] .solution-revalida-person {
  width: 46%;
  right: -8px;
  bottom: -4px;
}
html[data-page="index"] .medflix-cta {
  padding: 34px 0;
}
html[data-page="index"] .medflix-cta .cta-content {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 260px;
  align-items: center;
  gap: 34px;
}
html[data-page="index"] .medflix-cta-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
html[data-page="index"] .medflix-main-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
html[data-page="index"] .medflix-cta-brand span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
}
html[data-page="index"] .medflix-cta-copy h2 {
  margin: 0;
  max-width: none;
  white-space: normal;
  font-size: clamp(29px, 2.5vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html[data-page="index"] .medflix-cta-copy h2 em {
  color: #fff;
  font-style: italic;
  font-weight: 300;
}
html[data-page="index"] .medflix-cta-copy p {
  margin: 14px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.45;
}
html[data-page="index"] .medflix-cta-device-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
html[data-page="index"] .medflix-cta-device {
  width: 240px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.3));
}
@media (max-width: 1180px) {
  html[data-page="index"] .medflix-cta .cta-content {
    grid-template-columns: 210px minmax(0, 1fr) 220px;
    gap: 24px;
  }
  html[data-page="index"] .medflix-main-logo {
    width: 200px;
  }
  html[data-page="index"] .medflix-cta-copy p {
    font-size: 16px;
  }
  html[data-page="index"] .solution-medprovas .solution-body,
  html[data-page="index"] .solution-revalida .solution-body {
    max-width: 58%;
  }
}
@media (max-width: 980px) {
  html[data-page="index"] .solution-medprovas .solution-body,
  html[data-page="index"] .solution-revalida .solution-body {
    max-width: 60%;
  }
  html[data-page="index"] .solution-student {
    width: 37%;
    right: 72px;
  }
  html[data-page="index"] .medprovas-phone {
    width: 24%;
  }
  html[data-page="index"] .medflix-cta .cta-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  html[data-page="index"] .medflix-cta-brand,
  html[data-page="index"] .medflix-cta-copy,
  html[data-page="index"] .medflix-cta-device-wrap {
    width: 100%;
  }
  html[data-page="index"] .medflix-cta-brand {
    align-items: flex-start;
  }
  html[data-page="index"] .medflix-cta-device-wrap {
    justify-content: center;
  }
}
@media (max-width: 720px) {
  html[data-page="index"] .solution-logo-medprovas {
    max-width: 210px;
  }
  html[data-page="index"] .solution-medprovas .solution-body,
  html[data-page="index"] .solution-revalida .solution-body {
    max-width: 100%;
    margin-top: 22px;
    padding-right: 0;
  }
  html[data-page="index"] .solution-student {
    width: 44%;
    right: 68px;
    opacity: 0.82;
  }
  html[data-page="index"] .medprovas-phone {
    width: 26%;
    right: -4px;
  }
  html[data-page="index"] .revalida-wordmark span {
    font-size: 24px;
  }
  html[data-page="index"] .solution-revalida-person {
    width: 44%;
    right: -8px;
    opacity: 0.92;
  }
  html[data-page="index"] .medflix-main-logo {
    width: 190px;
  }
  html[data-page="index"] .medflix-cta-copy h2 {
    font-size: 30px;
  }
  html[data-page="index"] .medflix-cta-copy p {
    font-size: 16px;
  }
  html[data-page="index"] .medflix-cta-device {
    width: 210px;
  }
}
@media (max-width: 560px) {
  html[data-page="index"] .solution-card-new.solution-medprovas,
  html[data-page="index"] .solution-card-new.solution-revalida {
    min-height: 500px;
  }
  html[data-page="index"] .solution-student {
    width: 41%;
    right: 64px;
    bottom: -2px;
    opacity: 0.64;
  }
  html[data-page="index"] .medprovas-phone {
    width: 31%;
    right: -8px;
    bottom: 0;
  }
  html[data-page="index"] .solution-medprovas .solution-body p,
  html[data-page="index"] .solution-revalida .solution-body p {
    max-width: 84%;
  }
  html[data-page="index"] .solution-revalida-person {
    width: 46%;
    opacity: 0.9;
  }
  html[data-page="index"] .medflix-cta {
    padding: 30px 0;
  }
  html[data-page="index"] .medflix-cta-device {
    width: 190px;
  }
}

/* === Correção final dos boxes MedProvas e Revalida === */
html[data-page="index"] .solution-logo-medprovas {
  width: 255px !important;
  max-width: 64% !important;
  height: auto !important;
  max-height: 88px !important;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18)) !important;
}
html[data-page="index"] .solution-medprovas .solution-student {
  width: 48% !important;
  max-height: 91% !important;
  right: -4px !important;
  bottom: 0 !important;
  object-fit: contain !important;
  object-position: right bottom !important;
  opacity: 1 !important;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.28)) !important;
}
html[data-page="index"] .solution-medprovas .solution-body {
  max-width: 55% !important;
  margin-top: 30px !important;
}
html[data-page="index"] .solution-medprovas:hover .solution-student {
  transform: translate3d(-4px, -6px, 0) scale(1.025) !important;
}
html[data-page="index"] .revalida-wordmark {
  width: 270px !important;
  max-width: 68% !important;
  display: block !important;
}
html[data-page="index"] .revalida-wordmark img {
  width: 100% !important;
  height: auto !important;
  max-height: 90px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: left center !important;
  filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.16)) !important;
}
@media (max-width: 720px) {
  html[data-page="index"] .solution-logo-medprovas {
    width: 225px !important;
    max-width: 70% !important;
  }
  html[data-page="index"] .solution-medprovas .solution-student {
    width: 45% !important;
    right: -6px !important;
  }
  html[data-page="index"] .solution-medprovas .solution-body {
    max-width: 61% !important;
  }
  html[data-page="index"] .revalida-wordmark {
    width: 235px !important;
    max-width: 72% !important;
  }
}
@media (max-width: 560px) {
  html[data-page="index"] .solution-medprovas .solution-student {
    width: 43% !important;
    opacity: 0.9 !important;
  }
  html[data-page="index"] .solution-medprovas .solution-body {
    max-width: 67% !important;
  }
  html[data-page="index"] .revalida-wordmark {
    width: 220px !important;
  }
}

/* === CONHEÇA TAMBÉM — composição final conforme referência === */
html[data-page="index"] #conheca-tambem .solutions-grid-new {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch;
}
html[data-page="index"] #conheca-tambem .solution-card-new,
html[data-page="index"] #conheca-tambem .solution-card-new:last-child {
  width: 100% !important;
  min-height: 420px !important;
  height: 420px !important;
  margin: 0 !important;
  padding: 27px !important;
  border-radius: 30px !important;
  grid-column: auto !important;
}
html[data-page="index"] #conheca-tambem .solution-card-new .solution-body {
  position: relative !important;
  z-index: 4 !important;
}
html[data-page="index"]
  #conheca-tambem
  .solution-card-new
  .solution-body
  > span {
  margin-bottom: 8px !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: 0.15em !important;
  line-height: 1.2 !important;
  color: #72f0d3 !important;
}
html[data-page="index"] #conheca-tambem .solution-card-new .solution-body h3 {
  margin: 0 0 14px !important;
  color: #fff !important;
  font-size: 25px !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
}
html[data-page="index"] #conheca-tambem .solution-card-new .solution-body p {
  margin: 0 0 18px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}
html[data-page="index"] #conheca-tambem .solution-card-new .solution-body a {
  min-height: 42px !important;
  padding: 0 14px !important;
  border-radius: 13px !important;
  font-size: 10px !important;
}

/* MedFlix */
html[data-page="index"]
  #conheca-tambem
  .solution-card-new:first-child
  .solution-logo {
  max-height: none !important;
  margin: 11px 0 0 10px !important;
}
html[data-page="index"]
  #conheca-tambem
  .solution-card-new:first-child
  .solution-body {
  max-width: 57% !important;
  margin-top: 55px !important;
}
html[data-page="index"]
  #conheca-tambem
  .solution-card-new:first-child
  .solution-device {
  width: 42% !important;
  right: 4px !important;
  bottom: 42px !important;
  max-height: 66% !important;
  transform: rotate(-3deg) !important;
}
html[data-page="index"]
  #conheca-tambem
  .solution-card-new:first-child:hover
  .solution-device {
  transform: translate3d(-3px, -5px, 0) rotate(-4deg) scale(1.025) !important;
}

/* MedProvas */
html[data-page="index"]
  #conheca-tambem
  .solution-medprovas
  .solution-logo-medprovas {
  width: 245px !important;
  max-width: 66% !important;
  height: auto !important;
  max-height: 74px !important;
  margin: 9px 0 0 8px !important;
  object-fit: contain !important;
  object-position: left center !important;
  filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18)) !important;
}
html[data-page="index"] #conheca-tambem .solution-medprovas .solution-body {
  max-width: 54% !important;
  margin-top: 48px !important;
}
html[data-page="index"] #conheca-tambem .solution-medprovas .solution-student {
  width: 50% !important;
  max-height: 86% !important;
  right: -5px !important;
  bottom: -1px !important;
  object-fit: contain !important;
  object-position: right bottom !important;
  opacity: 1 !important;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.28)) !important;
}
html[data-page="index"]
  #conheca-tambem
  .solution-medprovas:hover
  .solution-student {
  transform: translate3d(-3px, -5px, 0) scale(1.02) !important;
}

/* Revalida */
html[data-page="index"] #conheca-tambem .solution-revalida .revalida-wordmark {
  position: relative !important;
  z-index: 5 !important;
  width: 186px !important;
  max-width: 55% !important;
  height: auto !important;
  margin: 4px 0 0 11px !important;
  display: block !important;
}
html[data-page="index"]
  #conheca-tambem
  .solution-revalida
  .revalida-wordmark
  img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain !important;
  object-position: left center !important;
  filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.16)) !important;
}
html[data-page="index"] #conheca-tambem .solution-revalida .solution-body {
  max-width: 56% !important;
  margin-top: 51px !important;
}
html[data-page="index"]
  #conheca-tambem
  .solution-revalida
  .solution-revalida-person {
  width: 46% !important;
  max-height: 72% !important;
  right: -2px !important;
  bottom: -4px !important;
  object-fit: contain !important;
  object-position: right bottom !important;
}

@media (max-width: 1080px) {
  html[data-page="index"] #conheca-tambem .solutions-grid-new {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  html[data-page="index"] #conheca-tambem .solution-card-new:last-child {
    grid-column: 1 / -1 !important;
    width: calc(50% - 11px) !important;
    margin-inline: auto !important;
  }
}
@media (max-width: 760px) {
  html[data-page="index"] #conheca-tambem .solutions-grid-new {
    grid-template-columns: 1fr !important;
  }
  html[data-page="index"] #conheca-tambem .solution-card-new,
  html[data-page="index"] #conheca-tambem .solution-card-new:last-child {
    width: 100% !important;
    max-width: 670px !important;
    margin-inline: auto !important;
    grid-column: auto !important;
  }
  html[data-page="index"]
    #conheca-tambem
    .solution-card-new:first-child
    .solution-logo {
    width: 170px !important;
  }
  html[data-page="index"]
    #conheca-tambem
    .solution-medprovas
    .solution-logo-medprovas {
    width: 225px !important;
    max-width: 68% !important;
  }
  html[data-page="index"]
    #conheca-tambem
    .solution-revalida
    .revalida-wordmark {
    width: 180px !important;
    max-width: 58% !important;
  }
}
@media (max-width: 520px) {
  html[data-page="index"] #conheca-tambem .solution-card-new,
  html[data-page="index"] #conheca-tambem .solution-card-new:last-child {
    height: 500px !important;
    min-height: 500px !important;
  }
  html[data-page="index"]
    #conheca-tambem
    .solution-card-new:first-child
    .solution-body,
  html[data-page="index"] #conheca-tambem .solution-medprovas .solution-body,
  html[data-page="index"] #conheca-tambem .solution-revalida .solution-body {
    max-width: 64% !important;
  }
  html[data-page="index"]
    #conheca-tambem
    .solution-medprovas
    .solution-student {
    width: 47% !important;
  }
  html[data-page="index"]
    #conheca-tambem
    .solution-revalida
    .solution-revalida-person {
    width: 44% !important;
  }
}

/* === Ajustes 18/08 — Revalida original + faixa MedFlix mais fina === */
html[data-page="index"] #conheca-tambem .solution-revalida .revalida-wordmark {
  width: 205px !important;
  max-width: 62% !important;
}
html[data-page="index"]
  #conheca-tambem
  .solution-revalida
  .revalida-wordmark
  img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: left center !important;
  filter: none !important;
  opacity: 1 !important;
}

html[data-page="index"] .final-cta.medflix-cta {
  padding: 18px 0 !important;
  min-height: 250px !important;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(11, 180, 146, 0.18),
      transparent 30%
    ),
    linear-gradient(105deg, #07324f 0%, #0a4964 50%, #079676 100%) !important;
}
html[data-page="index"] .final-cta.medflix-cta::before {
  opacity: 0.34 !important;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.14) 1px,
    transparent 1px
  ) !important;
  background-size: 22px 22px !important;
  mask-image: linear-gradient(90deg, transparent 15%, #000 100%) !important;
}
html[data-page="index"] .medflix-cta .cta-orb {
  width: 330px !important;
  height: 330px !important;
  right: 5% !important;
  top: -150px !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.018) !important;
}
html[data-page="index"] .medflix-cta .cta-content {
  grid-template-columns: 225px minmax(0, 1fr) 205px !important;
  gap: 28px !important;
  min-height: 214px !important;
  align-items: center !important;
}
html[data-page="index"] .medflix-cta .medflix-main-logo {
  width: 210px !important;
}
html[data-page="index"] .medflix-cta .medflix-cta-brand span {
  margin-top: 6px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}
html[data-page="index"] .medflix-cta .medflix-cta-copy h2 {
  font-size: clamp(27px, 2.25vw, 36px) !important;
  line-height: 1.08 !important;
}
html[data-page="index"] .medflix-cta .medflix-cta-copy p {
  margin-top: 10px !important;
  font-size: 16px !important;
  line-height: 1.42 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}
html[data-page="index"] .medflix-cta .medflix-cta-device {
  width: 182px !important;
  max-height: 215px !important;
  object-fit: contain !important;
}

/* Faixa institucional MedicinAtual — identidade escura, científica e atual. */
html[data-page="index"] .final-cta.medicinatual-cta {
  position: relative;
  min-height: 258px;
  padding: 24px 0 !important;
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 75, 75, 0.18), transparent 29%),
    radial-gradient(
      circle at 36% 118%,
      rgba(76, 205, 183, 0.14),
      transparent 35%
    ),
    linear-gradient(105deg, #071623 0%, #0e2236 56%, #16202b 100%) !important;
}
html[data-page="index"] .final-cta.medicinatual-cta::before {
  z-index: -2;
  opacity: 0.52;
  background-image: radial-gradient(
    circle,
    rgba(76, 205, 183, 0.34) 1px,
    transparent 1.4px
  );
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent 24%, #000 100%);
}
html[data-page="index"] .final-cta.medicinatual-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 370px;
  height: 370px;
  right: -65px;
  top: -215px;
  border: 1px solid rgba(26, 111, 136, 0.42);
  border-radius: 50%;
  box-shadow:
    0 0 0 62px rgba(76, 205, 183, 0.025),
    0 0 0 122px rgba(255, 75, 75, 0.018);
}
html[data-page="index"] .medicinatual-cta-orb {
  position: absolute;
  z-index: -1;
  width: 230px;
  height: 230px;
  left: 42%;
  bottom: -190px;
  border: 1px solid rgba(76, 205, 183, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(76, 205, 183, 0.12);
}
html[data-page="index"] .medicinatual-cta-content {
  min-height: 210px;
  display: grid;
  grid-template-columns: minmax(240px, 290px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 46px;
  color: #fff;
  text-decoration: none;
}
html[data-page="index"] .medicinatual-cta-content:focus-visible {
  outline: 3px solid #4ccdb7;
  outline-offset: 8px;
  border-radius: 18px;
}
html[data-page="index"] .medicinatual-cta-brand {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
html[data-page="index"] .medicinatual-logo-composite {
  position: relative;
  width: 290px;
  max-width: 100%;
  aspect-ratio: 1906 / 283;
  display: block;
  transition: transform 0.28s ease;
}
html[data-page="index"] .medicinatual-logo-composite img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
html[data-page="index"] .medicinatual-logo-base {
  filter: brightness(0) invert(1);
}
html[data-page="index"] .medicinatual-logo-symbol {
  clip-path: inset(0 74.6% 0 0);
  filter: brightness(0) saturate(100%) invert(39%) sepia(95%) saturate(2447%)
    hue-rotate(335deg) brightness(106%) contrast(105%);
}
html[data-page="index"] .pneumoatual-logo-composite {
  position: relative;
  width: 250px;
  max-width: 100%;
  aspect-ratio: 315 / 48;
  margin-top: 18px;
  display: block;
  transition: transform 0.28s ease;
}
html[data-page="index"] .pneumoatual-logo-composite img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
html[data-page="index"] .pneumoatual-logo-base {
  filter: brightness(0) invert(1);
}
html[data-page="index"] .pneumoatual-logo-symbol {
  clip-path: inset(0 76% 0 0);
  filter: brightness(0) saturate(100%) invert(39%) sepia(95%) saturate(2447%)
    hue-rotate(335deg) brightness(106%) contrast(105%);
}
html[data-page="index"] .medicinatual-cta-copy {
  min-width: 0;
}
html[data-page="index"] .medicinatual-cta-copy small {
  display: block;
  margin-bottom: 8px;
  color: #4ccdb7;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
}
html[data-page="index"] .medicinatual-cta-copy h2 {
  max-width: 670px;
  margin: 0;
  color: #fff;
  font-size: clamp(27px, 2.35vw, 36px);
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: -0.04em;
  white-space: normal;
}
html[data-page="index"] .medicinatual-cta-copy h2 em {
  color: #ff4b4b;
  font-style: normal;
  font-weight: 760;
}
html[data-page="index"] .medicinatual-cta-copy p {
  max-width: 660px;
  margin: 10px 0 0;
  color: #d9e1e8;
  font-size: 15px;
  line-height: 1.5;
}
html[data-page="index"] .medicinatual-cta-action {
  min-width: 176px;
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: linear-gradient(135deg, #ff4b4b, #e53939);
  color: #fff;
  box-shadow: 0 16px 34px rgba(229, 57, 57, 0.24);
  font-size: 13px;
  font-weight: 820;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
html[data-page="index"] .medicinatual-cta-action b {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
html[data-page="index"]
  .medicinatual-cta-content:hover
  .medicinatual-logo-composite,
html[data-page="index"]
  .medicinatual-cta-content:hover
  .pneumoatual-logo-composite {
  transform: translateY(-2px) scale(1.015);
}
html[data-page="index"]
  .medicinatual-cta-content:hover
  .medicinatual-cta-action {
  transform: translateY(-3px);
  box-shadow: 0 21px 42px rgba(229, 57, 57, 0.34);
}

@media (max-width: 1080px) {
  html[data-page="index"] .medicinatual-cta-content {
    grid-template-columns: 250px minmax(0, 1fr) auto;
    gap: 28px;
  }
  html[data-page="index"] .medicinatual-logo-composite {
    width: 250px;
  }
  html[data-page="index"] .pneumoatual-logo-composite {
    width: 220px;
  }
  html[data-page="index"] .medicinatual-cta-action {
    min-width: 158px;
  }
}

@media (max-width: 820px) {
  html[data-page="index"] .final-cta.medicinatual-cta {
    padding: 42px 0 !important;
  }
  html[data-page="index"] .medicinatual-cta-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  html[data-page="index"] .medicinatual-cta-brand {
    align-items: center;
  }
  html[data-page="index"] .medicinatual-logo-composite {
    width: min(290px, 82vw);
  }
  html[data-page="index"] .pneumoatual-logo-composite {
    width: min(250px, 72vw);
  }
  html[data-page="index"] .medicinatual-cta-copy h2,
  html[data-page="index"] .medicinatual-cta-copy p {
    margin-inline: auto;
  }
  html[data-page="index"] .medicinatual-cta-action {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  html[data-page="index"] .medicinatual-cta-content {
    gap: 20px;
  }
  html[data-page="index"] .medicinatual-cta-copy h2 {
    font-size: 28px;
  }
  html[data-page="index"] .medicinatual-cta-copy p {
    font-size: 14px;
  }
  html[data-page="index"] .medicinatual-cta-action {
    width: 100%;
  }
}

@media (max-width: 980px) {
  html[data-page="index"] .final-cta.medflix-cta {
    min-height: auto !important;
    padding: 32px 0 !important;
  }
  html[data-page="index"] .medflix-cta .cta-content {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    gap: 18px !important;
  }
  html[data-page="index"] .medflix-cta .medflix-main-logo {
    width: 195px !important;
  }
  html[data-page="index"] .medflix-cta .medflix-cta-device {
    width: 175px !important;
    max-height: none !important;
  }
}
@media (max-width: 720px) {
  html[data-page="index"]
    #conheca-tambem
    .solution-revalida
    .revalida-wordmark {
    width: 190px !important;
    max-width: 64% !important;
  }
}

/*
 * Padronização editorial dos três banners principais.
 * A coluna usa o mesmo limite horizontal do cabeçalho. Dentro dela, a logo
 * permanece no topo, a mensagem ocupa o centro e a ação fecha o conjunto.
 */
html[data-page="index"] .hero-slide .hero-container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: 64px;
  padding-bottom: 78px;
}
html[data-page="index"] .hero-slide .hero-copy {
  width: 100%;
  max-width: 630px;
  height: 90%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: start;
  margin-inline: 0 auto;
}
html[data-page="index"] .hero-slide .hero-brand-logo {
  width: clamp(230px, 19vw, 275px);
  max-width: 72%;
  margin: 0 0 22px;
}
html[data-page="index"] .hero-slide .hero-message {
  width: 100%;
  min-width: 0;
  align-self: center;
  justify-self: start;
}
html[data-page="index"] .hero-action-group {
  width: 100%;
  margin-top: 25px;
  align-self: end;
  justify-self: start;
}
html[data-page="index"] .hero-action-group .hero-buttons {
  margin-top: 0 !important;
  align-self: auto;
}
html[data-page="index"] .hero-action-group .button.primary {
  width: 255px;
  min-width: 255px;
  min-height: 58px;
  padding-inline: 22px;
  justify-content: center;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.015em;
  white-space: nowrap;
}
html[data-page="index"] .hero-journey-note {
  width: max-content;
  max-width: 100%;
  margin: 25px 0 0;
  background: linear-gradient(90deg, #4da5ff, #35d5ac);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 24px;
  font-weight: 760;
  line-height: 1.35;
}
html[data-page="index"] .hero-inteligencia .hero-message .hero-resource-list {
  max-width: 710px;
  margin: 22px 0 0;
  gap: 10px;
}

@media (max-width: 1100px) and (min-width: 601px) {
  html[data-page="index"] .hero-slide .hero-copy {
    max-width: 64%;
  }
  html[data-page="index"] .hero-slide .hero-brand-logo {
    width: clamp(210px, 24vw, 260px);
    margin-bottom: 18px;
  }
  html[data-page="index"] .hero-action-group {
    margin-top: 20px;
  }
  html[data-page="index"] .hero-action-group .button.primary {
    width: 225px;
    min-width: 225px;
    min-height: 52px;
    padding-inline: 17px;
    font-size: 11px;
  }
  html[data-page="index"] .hero-resource-list li {
    font-size: 14px;
  }
  html[data-page="index"] .hero-journey-note {
    margin-top: 11px;
  }
}

@media (max-width: 900px) and (min-width: 601px) {
  html[data-page="index"] .hero-slide .hero-container {
    width: min(100% - 30px, var(--max));
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  html[data-page="index"] .hero-slide .hero-container {
    width: calc(100% - 24px);
    margin-inline: auto;
    padding-top: 42px;
    padding-bottom: 190px;
  }
  html[data-page="index"] .hero-slide .hero-copy {
    max-width: 100%;
    height: 100%;
  }
  html[data-page="index"] .hero-slide .hero-brand-logo {
    width: min(61vw, 230px);
    max-width: 100%;
    margin-bottom: 17px;
  }
  html[data-page="index"] .hero-action-group {
    margin-top: 18px;
  }
  html[data-page="index"] .hero-action-group .button.primary {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding-inline: 15px;
    font-size: 11px;
  }
  html[data-page="index"] .hero-journey-note {
    width: 100%;
    margin-top: 10px;
  }
  html[data-page="index"] .hero-inteligencia .hero-message .hero-resource-list {
    gap: 6px;
  }
  html[data-page="index"] .hero-inteligencia .hero-resource-list li {
    font-size: 12px;
  }
}

/* ============================================================
 * Página(s): medprovas
 * ============================================================ */
html[data-page="medprovas"] {
  --blue: #2f80ed;
  --blue-2: #195fc3;
  --blue-deep: #082942;
  --blue-darker: #051a2a;
  --green: #00b388;
  --green-2: #2bd4a8;
  --ink: #102939;
  --muted: #667085;
  --surface: #ffffff;
  --surface-soft: #f5f9fc;
  --surface-blue: #edf7ff;
  --border: rgba(16, 41, 57, 0.12);
  --header: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 70px rgba(8, 41, 66, 0.14);
  --max: 1240px;
  color-scheme: light;
}
html[data-page="medprovas"][data-theme="dark"] {
  --ink: #f6fbff;
  --muted: #a7bac8;
  --surface: #071b2a;
  --surface-soft: #0b2335;
  --surface-blue: #0d2a40;
  --border: rgba(236, 247, 255, 0.12);
  --header: rgba(6, 24, 37, 0.92);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}
html[data-page="medprovas"] * {
  box-sizing: border-box;
}
html[data-page="medprovas"] {
  scroll-behavior: smooth;
}
html[data-page="medprovas"] body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}
html[data-page="medprovas"] body.menu-open {
  overflow: hidden;
}
html[data-page="medprovas"] img {
  max-width: 100%;
}
html[data-page="medprovas"] a {
  color: inherit;
  text-decoration: none;
}
html[data-page="medprovas"] button,
html[data-page="medprovas"] input {
  font: inherit;
}
html[data-page="medprovas"] button {
  color: inherit;
}
html[data-page="medprovas"] .section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
























html[data-page="medprovas"] .hero-r1 {
  position: relative;
  min-height: 720px;
  margin-top: 84px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 24%,
      rgba(0, 179, 136, 0.27),
      transparent 26%
    ),
    radial-gradient(
      circle at 15% 75%,
      rgba(47, 128, 237, 0.2),
      transparent 28%
    ),
    linear-gradient(135deg, #061a2a 0%, #082d48 54%, #083a4e 100%);
}
html[data-page="medprovas"] .hero-r1::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
html[data-page="medprovas"] .hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
  animation: medprovas-orbFloat 7s ease-in-out infinite;
}
html[data-page="medprovas"] .hero-orb.one {
  width: 280px;
  height: 280px;
  right: -80px;
  top: 80px;
  border: 1px solid rgba(43, 212, 168, 0.38);
}
html[data-page="medprovas"] .hero-orb.two {
  width: 160px;
  height: 160px;
  right: 34%;
  bottom: -60px;
  border: 1px solid rgba(47, 128, 237, 0.38);
  animation-delay: -2s;
}
html[data-page="medprovas"] .hero-orb.three {
  width: 18px;
  height: 18px;
  background: var(--green-2);
  right: 11%;
  top: 17%;
  box-shadow: 0 0 40px rgba(43, 212, 168, 0.85);
  animation-delay: -4s;
}
@keyframes medprovas-orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}
html[data-page="medprovas"] .hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
  padding-block: 78px;
}
html[data-page="medprovas"] .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8d9f5;
}
html[data-page="medprovas"] .eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-2), var(--blue));
}
html[data-page="medprovas"] .hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}
html[data-page="medprovas"] .hero-copy h1 span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #fff, #a9e8db 54%, #94caff);
  -webkit-background-clip: text;
  color: transparent;
}
html[data-page="medprovas"] .hero-copy > p {
  max-width: 660px;
  margin: 26px 0 0;
  color: #c2d6e2;
  font-size: 18px;
  line-height: 1.72;
}
html[data-page="medprovas"] .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
html[data-page="medprovas"] .hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #e5f2f8;
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}
html[data-page="medprovas"] .hero-facts i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(43, 212, 168, 0.18);
  color: var(--green-2);
  font-style: normal;
}
html[data-page="medprovas"] .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
html[data-page="medprovas"] .btn-primary,
html[data-page="medprovas"] .btn-secondary {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 850;
  transition: 0.25s;
}
html[data-page="medprovas"] .btn-primary {
  background: linear-gradient(135deg, var(--green), #009b78);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 179, 136, 0.28);
}
html[data-page="medprovas"] .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(0, 179, 136, 0.36);
}
html[data-page="medprovas"] .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
html[data-page="medprovas"] .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
html[data-page="medprovas"] .hero-visual {
  position: relative;
  perspective: 1200px;
}
html[data-page="medprovas"] .video-shell {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  transform: rotateY(-5deg) rotateX(1.5deg);
  animation: medprovas-visualFloat 5.5s ease-in-out infinite;
}
@keyframes medprovas-visualFloat {
  0%,
  100% {
    transform: rotateY(-5deg) rotateX(1.5deg) translateY(0);
  }
  50% {
    transform: rotateY(-3deg) rotateX(1deg) translateY(-10px);
  }
}
html[data-page="medprovas"] .browser-bar {
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 18px 18px 0 0;
  background: rgba(4, 20, 31, 0.78);
}
html[data-page="medprovas"] .browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}
html[data-page="medprovas"] .browser-bar span {
  margin-left: auto;
  color: #9fb9c8;
  font-size: 10px;
  letter-spacing: 0.08em;
}
html[data-page="medprovas"] .video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 0 0 19px 19px;
  background: #000;
}
html[data-page="medprovas"] .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
html[data-page="medprovas"] .floating-proof {
  position: absolute;
  left: -38px;
  bottom: -35px;
  width: 220px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: #102939;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
  animation: medprovas-proofFloat 4.8s ease-in-out infinite;
}
@keyframes medprovas-proofFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
html[data-page="medprovas"] .floating-proof strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--blue-deep);
}
html[data-page="medprovas"] .floating-proof span {
  display: block;
  margin-top: 7px;
  color: #617484;
  font-size: 12px;
  line-height: 1.5;
}
html[data-page="medprovas"] .floating-proof .mini-stars {
  margin-top: 9px;
  color: #f5a623;
  letter-spacing: 2px;
}

html[data-page="medprovas"] .quick-strip {
  position: relative;
  z-index: 5;
  margin-top: -30px;
}
html[data-page="medprovas"] .quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
html[data-page="medprovas"] .quick-item {
  padding: 27px 26px;
  position: relative;
}
html[data-page="medprovas"] .quick-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--border);
}
html[data-page="medprovas"] .quick-item small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html[data-page="medprovas"] .quick-item strong {
  font-size: 18px;
  line-height: 1.3;
}

html[data-page="medprovas"] section {
  position: relative;
}
html[data-page="medprovas"] .section-pad {
  padding: 104px 0;
}
html[data-page="medprovas"] .section-head {
  max-width: 790px;
  margin: 0 auto 50px;
  text-align: center;
}
html[data-page="medprovas"] .section-head .label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
html[data-page="medprovas"] .section-head .label::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="medprovas"] .section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
html[data-page="medprovas"] .section-head p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

html[data-page="medprovas"] .why-section {
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    var(--surface-soft) 100%
  );
}
html[data-page="medprovas"] .why-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
html[data-page="medprovas"] .why-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="medprovas"] .why-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="medprovas"] .benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
html[data-page="medprovas"] .benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 25px rgba(8, 41, 66, 0.05);
  transition: 0.25s;
}
html[data-page="medprovas"] .benefit-item:hover {
  transform: translateX(6px);
  border-color: rgba(47, 128, 237, 0.34);
}
html[data-page="medprovas"] .benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.13),
    rgba(0, 179, 136, 0.14)
  );
  color: var(--blue);
}
html[data-page="medprovas"] .benefit-item h3 {
  margin: 1px 0 6px;
  font-size: 16px;
}
html[data-page="medprovas"] .benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}
html[data-page="medprovas"] .why-panel {
  position: relative;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #082942, #0a3b56 68%, #0d5b69);
  color: #fff;
  box-shadow: var(--shadow);
}
html[data-page="medprovas"] .why-panel::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -100px;
  top: -80px;
  border-radius: 50%;
  border: 1px solid rgba(43, 212, 168, 0.35);
}
html[data-page="medprovas"] .why-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -120px 20%;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.32),
    transparent 68%
  );
}
html[data-page="medprovas"] .panel-kicker {
  position: relative;
  z-index: 1;
  color: #a8d8ef;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="medprovas"] .why-panel h3 {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html[data-page="medprovas"] .path-cards {
  --path-progress: 0%;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin-top: 30px;
  padding-left: 10px;
}
html[data-page="medprovas"] .path-cards::before,
html[data-page="medprovas"] .path-cards::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 30px;
  top: 34px;
  width: 3px;
  border-radius: 99px;
  pointer-events: none;
}
html[data-page="medprovas"] .path-cards::before {
  bottom: 34px;
  background: rgba(255, 255, 255, 0.11);
}
html[data-page="medprovas"] .path-cards::after {
  height: var(--path-progress);
  max-height: calc(100% - 68px);
  background: linear-gradient(180deg, #39a4ff 0%, #22d3b1 56%, #79f0c8 100%);
  box-shadow:
    0 0 18px rgba(43, 212, 168, 0.64),
    0 0 34px rgba(47, 128, 237, 0.25);
  transition: height 0.56s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="medprovas"] .path-card {
  --path-delay: 0ms;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 76px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  cursor: pointer;
  outline: none;
  transition:
    transform 0.34s cubic-bezier(0.2, 0.85, 0.2, 1.18) var(--path-delay),
    border-color 0.3s ease var(--path-delay),
    background 0.3s ease var(--path-delay),
    box-shadow 0.3s ease var(--path-delay);
}
html[data-page="medprovas"] .path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 8%,
    rgba(255, 255, 255, 0.12) 48%,
    transparent 78%
  );
  transform: translateX(-125%);
  opacity: 0;
  pointer-events: none;
}
html[data-page="medprovas"] .path-card b {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: #103f58;
  color: #a9c5d4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition:
    color 0.3s ease var(--path-delay),
    background 0.3s ease var(--path-delay),
    transform 0.34s cubic-bezier(0.2, 0.85, 0.2, 1.18) var(--path-delay),
    box-shadow 0.3s ease var(--path-delay);
}
html[data-page="medprovas"] .path-card strong {
  display: block;
  font-size: 14px;
  transition: color 0.3s ease var(--path-delay);
}
html[data-page="medprovas"] .path-card span {
  display: block;
  margin-top: 4px;
  color: #abc4d2;
  font-size: 11px;
  transition: color 0.3s ease var(--path-delay);
}
html[data-page="medprovas"] .path-card em {
  font-style: normal;
  color: #7faabd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition:
    color 0.3s ease var(--path-delay),
    transform 0.3s ease var(--path-delay);
}
html[data-page="medprovas"] .path-card.is-lit,
html[data-page="medprovas"] .path-card:hover,
html[data-page="medprovas"] .path-card:focus-visible {
  transform: translateX(8px);
  border-color: rgba(86, 228, 187, 0.42);
  background: linear-gradient(
    105deg,
    rgba(47, 128, 237, 0.17),
    rgba(0, 179, 136, 0.14)
  );
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.17),
    0 0 0 1px rgba(105, 237, 200, 0.05) inset;
}
html[data-page="medprovas"] .path-card.is-lit::after,
html[data-page="medprovas"] .path-card:hover::after,
html[data-page="medprovas"] .path-card:focus-visible::after {
  opacity: 1;
  animation: medprovas-pathShine 0.72s ease forwards var(--path-delay);
}
html[data-page="medprovas"] .path-card.is-lit b,
html[data-page="medprovas"] .path-card:hover b,
html[data-page="medprovas"] .path-card:focus-visible b {
  background: linear-gradient(135deg, #328ff5, var(--green));
  color: #fff;
  transform: scale(1.09) rotate(-3deg);
  box-shadow:
    0 0 0 6px rgba(47, 128, 237, 0.09),
    0 13px 27px rgba(0, 179, 136, 0.25);
}
html[data-page="medprovas"] .path-card.is-lit strong {
  color: #fff;
}
html[data-page="medprovas"] .path-card.is-lit span {
  color: #cfe3ec;
}
html[data-page="medprovas"] .path-card.is-lit em {
  color: #9cf4dc;
  transform: translateX(-2px);
}
@keyframes medprovas-pathShine {
  to {
    transform: translateX(125%);
  }
}
html[data-page="medprovas"] .panel-note {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--green-2);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 0 14px 14px 0;
  color: #c9dce6;
  font-size: 13px;
  line-height: 1.65;
}

html[data-page="medprovas"] .resources-section {
  background: var(--surface);
}
html[data-page="medprovas"] .resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
html[data-page="medprovas"] .resource-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  isolation: isolate;
  transition:
    transform 0.36s cubic-bezier(0.2, 0.85, 0.2, 1.15),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
html[data-page="medprovas"] .resource-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 145px;
  height: 145px;
  right: -72px;
  top: -76px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.16),
    transparent 68%
  );
  transition:
    transform 0.45s ease,
    opacity 0.35s ease;
}
html[data-page="medprovas"] .resource-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: right 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="medprovas"] .resource-card:hover {
  transform: translateY(-9px);
  border-color: rgba(47, 128, 237, 0.38);
  box-shadow: 0 23px 52px rgba(8, 41, 66, 0.13);
}
html[data-page="medprovas"] .resource-card:hover::before {
  transform: scale(1.22);
  opacity: 0.86;
}
html[data-page="medprovas"] .resource-card:hover::after {
  right: 0;
}
html[data-page="medprovas"] .resource-icon {
  position: relative;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  background: linear-gradient(145deg, #2f80ed 0%, #1d98d8 45%, #00b388 100%);
  color: #fff;
  box-shadow:
    0 14px 30px rgba(47, 128, 237, 0.23),
    0 0 0 7px rgba(47, 128, 237, 0.055);
  transform: translateZ(0);
  transition:
    transform 0.38s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
html[data-page="medprovas"] .resource-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
}
html[data-page="medprovas"] .resource-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  right: 8px;
  top: 8px;
  border-radius: 50%;
  background: #8cf3d6;
  box-shadow: 0 0 13px rgba(140, 243, 214, 0.95);
}
html[data-page="medprovas"] .resource-icon svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.16));
}
html[data-page="medprovas"] .resource-card:nth-child(2n) .resource-icon {
  background: linear-gradient(145deg, #0d8fc5, #00b388);
}
html[data-page="medprovas"] .resource-card:nth-child(3n) .resource-icon {
  background: linear-gradient(145deg, #3c72e8, #0aa99a);
}
html[data-page="medprovas"] .resource-card:hover .resource-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.08);
  box-shadow:
    0 20px 38px rgba(0, 179, 136, 0.25),
    0 0 0 9px rgba(0, 179, 136, 0.07);
}
html[data-page="medprovas"] .resource-card h3 {
  margin: 23px 0 9px;
  font-size: 17px;
}
html[data-page="medprovas"] .resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

html[data-page="medprovas"] .method-section {
  overflow: hidden;
  background: linear-gradient(135deg, #edf7ff 0%, #f3fffb 52%, #eff6ff 100%);
}
html[data-page="medprovas"][data-theme="dark"] .method-section {
  background: linear-gradient(135deg, #0b2335, #0c2d37 52%, #0c2537);
}
html[data-page="medprovas"] .method-flow {
  --method-progress: 0%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  padding-top: 6px;
}
html[data-page="medprovas"] .method-line,
html[data-page="medprovas"] .method-line-fill {
  position: absolute;
  z-index: 0;
  left: calc(12.5% - 1px);
  top: 42px;
  height: 4px;
  border-radius: 99px;
}
html[data-page="medprovas"] .method-line {
  right: calc(12.5% - 1px);
  background: rgba(8, 41, 66, 0.12);
}
html[data-page="medprovas"][data-theme="dark"] .method-line {
  background: rgba(255, 255, 255, 0.12);
}
html[data-page="medprovas"] .method-line-fill {
  width: var(--method-progress);
  max-width: calc(75% - 2px);
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 18px rgba(0, 179, 136, 0.36);
  transition: width 0.52s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="medprovas"] .method-step {
  position: relative;
  z-index: 1;
  text-align: center;
  cursor: pointer;
  outline: none;
}
html[data-page="medprovas"] .method-step b {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(47, 128, 237, 0.22);
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(8, 41, 66, 0.12);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
html[data-page="medprovas"] .method-step b::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid transparent;
  border-radius: inherit;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease;
}
html[data-page="medprovas"] .method-step.active b,
html[data-page="medprovas"] .method-step:hover b,
html[data-page="medprovas"] .method-step:focus-visible b {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  transform: translateY(-6px) scale(1.09);
  box-shadow:
    0 0 0 8px rgba(47, 128, 237, 0.09),
    0 19px 38px rgba(0, 179, 136, 0.22);
}
html[data-page="medprovas"] .method-step.active b::before,
html[data-page="medprovas"] .method-step:hover b::before,
html[data-page="medprovas"] .method-step:focus-visible b::before {
  border-color: rgba(0, 179, 136, 0.32);
  transform: scale(1.04);
}
html[data-page="medprovas"] .method-step h3 {
  margin: 21px 0 8px;
  font-size: 18px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
html[data-page="medprovas"] .method-step p {
  margin: 0 auto;
  max-width: 250px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  transition: transform 0.3s ease;
}
html[data-page="medprovas"] .method-step.active h3,
html[data-page="medprovas"] .method-step:hover h3 {
  color: var(--green);
  transform: translateY(-2px);
}
html[data-page="medprovas"] .method-step.active p,
html[data-page="medprovas"] .method-step:hover p {
  transform: translateY(-2px);
}

html[data-page="medprovas"] .pricing-section {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}
html[data-page="medprovas"] .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 54px;
  align-items: start;
}
html[data-page="medprovas"] .pricing-content h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
html[data-page="medprovas"] .pricing-content > p {
  margin: 20px 0 0;
  max-width: 690px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="medprovas"] .included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
html[data-page="medprovas"] .included-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
html[data-page="medprovas"] .included-list i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 179, 136, 0.12);
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}
html[data-page="medprovas"] .bonus-card {
  margin-top: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  border: 1px solid rgba(47, 128, 237, 0.2);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.09),
    rgba(0, 179, 136, 0.09)
  );
}
html[data-page="medprovas"] .bonus-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
}
html[data-page="medprovas"] .bonus-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
}
html[data-page="medprovas"] .bonus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
html[data-page="medprovas"] .price-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border: 1px solid rgba(47, 128, 237, 0.22);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(8, 41, 66, 0.17);
}
html[data-page="medprovas"] .price-card-top {
  padding: 26px 28px;
  background: linear-gradient(135deg, var(--blue-deep), #0c4a65);
  color: #fff;
}
html[data-page="medprovas"] .price-card-top span {
  display: block;
  color: #acd1e1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="medprovas"] .price-card-top h3 {
  margin: 10px 0 0;
  font-size: 28px;
}
html[data-page="medprovas"] .price-body {
  padding: 28px;
}
html[data-page="medprovas"] .price-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
html[data-page="medprovas"] .installments {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
html[data-page="medprovas"] .installments strong {
  font-size: 47px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--blue-deep);
}
html[data-page="medprovas"][data-theme="dark"] .installments strong {
  color: #fff;
}
html[data-page="medprovas"] .installments span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
}
html[data-page="medprovas"] .cash {
  margin-top: 11px;
  color: var(--muted);
  font-size: 13px;
}
html[data-page="medprovas"] .cash b {
  color: var(--ink);
}
html[data-page="medprovas"] .price-benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
html[data-page="medprovas"] .price-benefits span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}
html[data-page="medprovas"] .price-benefits i {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}
html[data-page="medprovas"] .buy-button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), #008e70);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(0, 179, 136, 0.24);
  transition: 0.25s;
}
html[data-page="medprovas"] .buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(0, 179, 136, 0.34);
}
html[data-page="medprovas"] .secure-note {
  margin: 14px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

html[data-page="medprovas"] .numbers-section {
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(100deg, #0c6173, #2c8c88 55%, #66b59f);
}
html[data-page="medprovas"] .numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="medprovas"] .number-item {
  text-align: center;
  padding: 15px 20px;
}
html[data-page="medprovas"] .number-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
html[data-page="medprovas"] .number-item strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.05em;
}
html[data-page="medprovas"] .number-item span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

html[data-page="medprovas"] .teachers-section {
  background: var(--surface);
}
html[data-page="medprovas"] .teacher-track-wrap {
  position: relative;
}
html[data-page="medprovas"] .teacher-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
html[data-page="medprovas"] .teacher-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  transition: 0.28s;
}
html[data-page="medprovas"] .teacher-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 42px rgba(8, 41, 66, 0.12);
}
html[data-page="medprovas"] .teacher-card img {
  width: 100%;
  aspect-ratio: 1.45/1;
  object-fit: cover;
  display: block;
  background: transparent;
}
html[data-page="medprovas"] .teacher-info {
  padding: 17px 17px 20px;
}
html[data-page="medprovas"] .teacher-info h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
html[data-page="medprovas"] .teacher-info p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

html[data-page="medprovas"] .objections-section {
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
}
html[data-page="medprovas"] .objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
html[data-page="medprovas"] .objection-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}
html[data-page="medprovas"] .objection-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.13),
    rgba(0, 179, 136, 0.13)
  );
  color: var(--blue);
}
html[data-page="medprovas"] .objection-card h3 {
  margin: 18px 0 9px;
  font-size: 19px;
  line-height: 1.35;
}
html[data-page="medprovas"] .objection-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

html[data-page="medprovas"] .faq-section {
  background: var(--surface);
}
html[data-page="medprovas"] .faq-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 58px;
  align-items: start;
}
html[data-page="medprovas"] .faq-aside {
  position: sticky;
  top: 116px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--blue-deep), #0b4b63);
  color: #fff;
  box-shadow: var(--shadow);
}
html[data-page="medprovas"] .faq-aside small {
  color: #9fc7d9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="medprovas"] .faq-aside h2 {
  margin: 14px 0 0;
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
html[data-page="medprovas"] .faq-aside p {
  margin: 17px 0 0;
  color: #bdd2dd;
  font-size: 14px;
  line-height: 1.72;
}
html[data-page="medprovas"] .faq-aside a {
  margin-top: 23px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), #009478);
  font-size: 13px;
  font-weight: 850;
}
html[data-page="medprovas"] .faq-list {
  display: grid;
  gap: 10px;
}
html[data-page="medprovas"] .faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
}
html[data-page="medprovas"] .faq-question {
  width: 100%;
  padding: 20px 21px;
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 18px;
  align-items: center;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
html[data-page="medprovas"] .faq-question strong {
  font-size: 14px;
  line-height: 1.45;
}
html[data-page="medprovas"] .faq-question i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--surface-soft);
  color: var(--blue);
  font-style: normal;
  font-size: 22px;
  transition: 0.25s;
}
html[data-page="medprovas"] .faq-item.open .faq-question i {
  transform: rotate(45deg);
  background: rgba(0, 179, 136, 0.12);
  color: var(--green);
}
html[data-page="medprovas"] .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
html[data-page="medprovas"] .faq-answer > div {
  overflow: hidden;
}
html[data-page="medprovas"] .faq-answer p {
  margin: 0;
  padding: 0 21px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
html[data-page="medprovas"] .faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
html[data-page="medprovas"] .faq-item.open .faq-answer p {
  padding-bottom: 21px;
}

html[data-page="medprovas"] .final-cta {
  padding: 0 0 104px;
  background: var(--surface);
}
html[data-page="medprovas"] .final-cta-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, #071f32, #0b4560 58%, #0f7a78);
  box-shadow: var(--shadow);
}
html[data-page="medprovas"] .final-cta-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -120px;
  top: -180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
html[data-page="medprovas"] .final-cta-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  right: 14%;
  bottom: -100px;
  background: radial-gradient(circle, rgba(43, 212, 168, 0.3), transparent 66%);
}
html[data-page="medprovas"] .final-cta-copy {
  position: relative;
  z-index: 1;
}
html[data-page="medprovas"] .final-cta-copy span {
  color: #a9d8e9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
html[data-page="medprovas"] .final-cta-copy h2 {
  margin: 12px 0 0;
  max-width: 780px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="medprovas"] .final-cta-copy p {
  margin: 18px 0 0;
  color: #c4d9e3;
  font-size: 15px;
  line-height: 1.7;
}
html[data-page="medprovas"] .final-cta .btn-primary {
  position: relative;
  z-index: 1;
  min-width: 220px;
}

html[data-page="medprovas"] .brand-strip {
  padding: 27px 0 30px;
  background: #fff;
  border-top: 1px solid #dfe8ee;
  border-bottom: 1px solid #dfe8ee;
  color: #102939;
}
html[data-page="medprovas"] .brand-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 1px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
html[data-page="medprovas"] .brand-strip-divider {
  width: 1px;
  height: 94px;
  background: #d7e1e8;
}
html[data-page="medprovas"] .brand-group h2 {
  margin: 0 0 15px;
  text-align: center;
  color: #49668f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
html[data-page="medprovas"] .brand-logos {
  display: grid;
  gap: 10px;
}
html[data-page="medprovas"] .institution-logos {
  grid-template-columns: repeat(5, 1fr);
}
html[data-page="medprovas"] .developed-logos {
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="medprovas"] .brand-logo-card {
  height: 72px;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e5ed;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(8, 41, 66, 0.05);
}
html[data-page="medprovas"] .brand-logo-card img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

html[data-page="medprovas"] footer {
  background: #061b2a;
  color: #fff;
}
html[data-page="medprovas"] .footer-main {
  padding: 74px 0 58px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}
html[data-page="medprovas"] .footer-brand img {
  width: 235px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}
html[data-page="medprovas"] .footer-brand > p {
  margin: 25px 0;
  color: #9fb4c2;
  font-size: 15px;
  line-height: 1.75;
}
html[data-page="medprovas"] .socials {
  display: flex;
  gap: 9px;
}
html[data-page="medprovas"] .socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: #a7bdca;
  transition: 0.2s;
}
html[data-page="medprovas"] .socials a:hover {
  background: var(--blue);
  color: #fff;
}
html[data-page="medprovas"] .footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
html[data-page="medprovas"] .footer-links h3 {
  margin: 0 0 21px;
  font-size: 15px;
}
html[data-page="medprovas"] .footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
html[data-page="medprovas"] .footer-links a,
html[data-page="medprovas"] .footer-links span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9db2bf;
  font-size: 13px;
  line-height: 1.5;
}
html[data-page="medprovas"] .footer-links a:hover {
  color: #fff;
}
html[data-page="medprovas"] .footer-links small {
  margin-top: 8px;
  color: #7892a1;
  font-size: 11px;
  line-height: 1.5;
}
html[data-page="medprovas"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
html[data-page="medprovas"] .footer-bottom > div {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #7894a3;
  font-size: 11px;
  line-height: 1.55;
}
html[data-page="medprovas"] .floating-contact {
  position: fixed;
  z-index: 80;
  right: 23px;
  bottom: 23px;
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00b388, #008e70);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0, 179, 136, 0.3);
  transition: 0.25s;
}
html[data-page="medprovas"] .floating-contact:hover {
  transform: translateY(-3px);
}

html[data-page="medprovas"] .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
html[data-page="medprovas"] .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html[data-page="medprovas"] *,
  html[data-page="medprovas"] *::before,
  html[data-page="medprovas"] *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  html[data-page="medprovas"] .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  
  
  html[data-page="medprovas"] .hero-inner {
    gap: 38px;
  }
  html[data-page="medprovas"] .floating-proof {
    left: -18px;
  }
  html[data-page="medprovas"] .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="medprovas"] .teacher-track {
    grid-template-columns: repeat(3, 1fr);
  }
  html[data-page="medprovas"] .pricing-grid {
    grid-template-columns: 1fr 390px;
    gap: 34px;
  }
  html[data-page="medprovas"] .footer-main {
    grid-template-columns: 250px 1fr;
    gap: 45px;
  }
}
@media (max-width: 920px) {
  
  
  
  
  
  
  
  
  
  
  
  
  
  html[data-page="medprovas"] .hero-r1,
  html[data-page="medprovas"] .hero-inner {
    min-height: auto;
  }
  html[data-page="medprovas"] .hero-r1 {
    margin-top: 74px;
  }
  html[data-page="medprovas"] .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 76px 100px;
  }
  html[data-page="medprovas"] .hero-copy {
    text-align: center;
  }
  html[data-page="medprovas"] .hero-copy > p {
    margin-inline: auto;
  }
  html[data-page="medprovas"] .eyebrow {
    justify-content: center;
  }
  html[data-page="medprovas"] .hero-facts,
  html[data-page="medprovas"] .hero-actions {
    justify-content: center;
  }
  html[data-page="medprovas"] .hero-visual {
    max-width: 720px;
    margin-inline: auto;
    width: 100%;
  }
  html[data-page="medprovas"] .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="medprovas"] .quick-item:nth-child(2)::after {
    display: none;
  }
  html[data-page="medprovas"] .quick-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="medprovas"] .why-grid,
  html[data-page="medprovas"] .pricing-grid,
  html[data-page="medprovas"] .faq-layout {
    grid-template-columns: 1fr;
  }
  html[data-page="medprovas"] .why-panel {
    min-height: auto;
  }
  html[data-page="medprovas"] .price-card,
  html[data-page="medprovas"] .faq-aside {
    position: relative;
    top: auto;
  }
  html[data-page="medprovas"] .method-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }
  html[data-page="medprovas"] .method-line,
  html[data-page="medprovas"] .method-line-fill {
    display: none;
  }
  html[data-page="medprovas"] .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="medprovas"] .number-item:nth-child(2) {
    border-right: 0;
  }
  html[data-page="medprovas"] .number-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  html[data-page="medprovas"] .objection-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="medprovas"] .teacher-track {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="medprovas"] .brand-strip-inner {
    grid-template-columns: 1fr;
  }
  html[data-page="medprovas"] .brand-strip-divider {
    width: 100%;
    height: 1px;
  }
  html[data-page="medprovas"] .footer-main {
    grid-template-columns: 1fr;
  }
  html[data-page="medprovas"] .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  html[data-page="medprovas"] .section-shell {
    width: min(100% - 28px, var(--max));
  }
  
  
  
  
  html[data-page="medprovas"] .hero-inner {
    padding-block: 60px 88px;
  }
  html[data-page="medprovas"] .hero-copy h1 {
    font-size: 42px;
  }
  html[data-page="medprovas"] .hero-copy > p {
    font-size: 16px;
  }
  html[data-page="medprovas"] .video-shell {
    transform: none;
    animation: none;
    padding: 7px;
    border-radius: 20px;
  }
  html[data-page="medprovas"] .floating-proof {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 13px;
  }
  html[data-page="medprovas"] .quick-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="medprovas"] .quick-item::after {
    display: none !important;
  }
  html[data-page="medprovas"] .quick-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="medprovas"] .section-pad {
    padding: 78px 0;
  }
  html[data-page="medprovas"] .resources-grid,
  html[data-page="medprovas"] .included-list,
  html[data-page="medprovas"] .numbers-grid,
  html[data-page="medprovas"] .teacher-track {
    grid-template-columns: 1fr;
  }
  html[data-page="medprovas"] .method-flow {
    display: flex;
    gap: 14px;
    margin-inline: -14px;
    padding: 8px 14px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  html[data-page="medprovas"] .method-flow::-webkit-scrollbar {
    display: none;
  }
  html[data-page="medprovas"] .method-line,
  html[data-page="medprovas"] .method-line-fill {
    display: none;
  }
  html[data-page="medprovas"] .method-step {
    flex: 0 0 min(78vw, 286px);
    min-height: 250px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.64);
    scroll-snap-align: center;
    box-shadow: 0 14px 34px rgba(8, 41, 66, 0.07);
  }
  html[data-page="medprovas"][data-theme="dark"] .method-step {
    background: rgba(255, 255, 255, 0.045);
  }
  html[data-page="medprovas"] .number-item {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  html[data-page="medprovas"] .number-item:last-child {
    border-bottom: 0;
  }
  html[data-page="medprovas"] .pricing-content {
    text-align: center;
  }
  html[data-page="medprovas"] .bonus-card {
    text-align: left;
  }
  html[data-page="medprovas"] .installments strong {
    font-size: 42px;
  }
  html[data-page="medprovas"] .final-cta-card {
    padding: 34px 26px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  html[data-page="medprovas"] .final-cta .btn-primary {
    min-width: 0;
    width: 100%;
  }
  html[data-page="medprovas"] .institution-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="medprovas"] .institution-logos .brand-logo-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 5px);
    justify-self: center;
  }
  html[data-page="medprovas"] .developed-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="medprovas"] .footer-links {
    grid-template-columns: 1fr;
  }
  html[data-page="medprovas"] .footer-bottom > div {
    padding-block: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  html[data-page="medprovas"] .floating-contact span {
    display: none;
  }
  html[data-page="medprovas"] .floating-contact {
    width: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* ============================================================
   Cabeçalho e rodapé globais — padrão para todas as páginas
   ============================================================ */









html[data-page="medprovas"] .footer-brand > p {
  font-size: 17px !important;
  line-height: 1.75 !important;
}
html[data-page="medprovas"] .footer-links h3 {
  font-size: 17px !important;
  letter-spacing: 0.01em;
}
html[data-page="medprovas"] .footer-links a,
html[data-page="medprovas"] .footer-links span {
  font-size: 15px !important;
  line-height: 1.62 !important;
}
html[data-page="medprovas"] .footer-links small {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="medprovas"] .footer-bottom > div {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="medprovas"] .brand-group h2 {
  font-size: 14px !important;
}

@media (max-width: 920px) {
  
  
}

/* R1: mesma escala de H1 utilizada no hero da Home */
html[data-page="medprovas"] .hero-copy h1 {
  font-size: clamp(40px, 3.4vw, 50px);
  line-height: 1.035;
  letter-spacing: -0.045em;
}

/* Informações rápidas com ícones temáticos */
html[data-page="medprovas"] .quick-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 15px;
  padding: 24px 22px;
}
html[data-page="medprovas"] .quick-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid currentColor;
  box-shadow: 0 10px 24px rgba(8, 41, 66, 0.08);
}
html[data-page="medprovas"] .quick-icon svg {
  width: 25px;
  height: 25px;
}
html[data-page="medprovas"] .quick-icon-blue {
  color: #2f80ed;
  background: rgba(47, 128, 237, 0.1);
}
html[data-page="medprovas"] .quick-icon-green {
  color: #00a983;
  background: rgba(0, 179, 136, 0.11);
}
html[data-page="medprovas"] .quick-icon-cyan {
  color: #0097b2;
  background: rgba(0, 151, 178, 0.11);
}
html[data-page="medprovas"] .quick-icon-orange {
  color: #ef8a22;
  background: rgba(239, 138, 34, 0.11);
}
html[data-page="medprovas"] .quick-item small {
  margin-bottom: 6px;
}
html[data-page="medprovas"] .quick-item strong {
  display: block;
}
html[data-page="medprovas"] .why-copy .benefit-list {
  margin-top: 32px;
}

@media (max-width: 640px) {
  html[data-page="medprovas"] .hero-copy h1 {
    font-size: 34px;
  }
  html[data-page="medprovas"] .quick-item {
    grid-template-columns: 48px 1fr;
    padding: 20px 18px;
  }
  html[data-page="medprovas"] .quick-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

/* =========================================================
   PÁGINA REVALIDA — base visual das páginas internas
========================================================== */
html[data-page="medprovas"] .revalida-page .hero-r1 {
  background:
    radial-gradient(
      circle at 82% 24%,
      rgba(239, 76, 78, 0.22),
      transparent 27%
    ),
    radial-gradient(
      circle at 15% 74%,
      rgba(47, 128, 237, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #061a2a 0%, #082d48 52%, #0b5260 100%);
}
html[data-page="medprovas"] .revalida-page .hero-r1::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}
html[data-page="medprovas"] .revalida-page .hero-copy h1 {
  font-size: clamp(40px, 3.4vw, 50px);
}
html[data-page="medprovas"] .revalida-visual-shell {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 74% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 24%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.17),
      rgba(255, 255, 255, 0.04)
    );
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  animation: medprovas-revalidaVisualFloat 5.8s ease-in-out infinite;
}
html[data-page="medprovas"] .revalida-visual-shell::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -118px;
  top: -120px;
  border-radius: 50%;
  border: 1px solid rgba(107, 231, 199, 0.32);
  box-shadow: 0 0 70px rgba(0, 179, 136, 0.1);
}
html[data-page="medprovas"] .revalida-visual-shell::after {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 112px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.34), transparent 68%);
  filter: blur(9px);
}
@keyframes medprovas-revalidaVisualFloat {
  0%,
  100% {
    transform: translateY(0) rotateY(-2deg);
  }
  50% {
    transform: translateY(-10px) rotateY(0deg);
  }
}
html[data-page="medprovas"] .revalida-person-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}
html[data-page="medprovas"] .revalida-person-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(5, 26, 42, 0.98) 0%,
      rgba(5, 31, 48, 0.72) 33%,
      rgba(5, 31, 48, 0.1) 66%
    ),
    linear-gradient(0deg, rgba(4, 22, 36, 0.46), transparent 42%);
}
html[data-page="medprovas"] .revalida-person-wrap img {
  position: absolute;
  z-index: 1;
  right: -5%;
  bottom: 0;
  width: auto;
  max-width: none;
  height: 110%;
  clip-path: inset(0 0 0 14%);
  object-fit: cover;
}
html[data-page="medprovas"] .revalida-visual-content {
  position: relative;
  z-index: 3;
  width: 54%;
  padding: 42px 0 0 38px;
}
html[data-page="medprovas"] .revalida-visual-content small {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #9eead6;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
html[data-page="medprovas"] .revalida-visual-content h2 {
  margin: 17px 0 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html[data-page="medprovas"] .revalida-visual-content p {
  margin: 15px 0 0;
  color: #bfd3de;
  font-size: 13px;
  line-height: 1.7;
}
html[data-page="medprovas"] .revalida-mini-facts {
  position: absolute;
  z-index: 4;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
html[data-page="medprovas"] .revalida-mini-fact {
  min-height: 64px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: rgba(5, 29, 45, 0.7);
  color: #fff;
  backdrop-filter: blur(13px);
  transition: 0.28s;
}
html[data-page="medprovas"] .revalida-mini-fact:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 232, 201, 0.35);
}
html[data-page="medprovas"] .revalida-mini-fact i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-style: normal;
  box-shadow: 0 10px 24px rgba(0, 179, 136, 0.22);
}
html[data-page="medprovas"] .revalida-mini-fact strong {
  display: block;
  font-size: 12px;
  line-height: 1.3;
}
html[data-page="medprovas"] .revalida-mini-fact span {
  display: block;
  margin-top: 3px;
  color: #9fb8c6;
  font-size: 10px;
}
html[data-page="medprovas"] .revalida-page .why-panel {
  min-height: 680px;
}
html[data-page="medprovas"] .revalida-page .path-card {
  min-height: 70px;
}
html[data-page="medprovas"] .revalida-page .pricing-content h2 {
  font-size: clamp(32px, 3.2vw, 44px);
}
html[data-page="medprovas"] .revalida-page .public-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 25px;
}
html[data-page="medprovas"] .revalida-page .public-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(8, 41, 66, 0.06);
}
html[data-page="medprovas"] .revalida-page .public-card strong {
  display: block;
  font-size: 15px;
}
html[data-page="medprovas"] .revalida-page .public-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
@media (max-width: 920px) {
  html[data-page="medprovas"] .revalida-visual-shell {
    min-height: 500px;
  }
  html[data-page="medprovas"] .revalida-page .why-panel {
    min-height: auto;
  }
}
@media (max-width: 640px) {
  html[data-page="medprovas"] .revalida-page .hero-copy h1 {
    font-size: 34px;
  }
  html[data-page="medprovas"] .revalida-visual-shell {
    min-height: 470px;
  }
  html[data-page="medprovas"] .revalida-visual-content {
    width: 64%;
    padding: 31px 0 0 24px;
  }
  html[data-page="medprovas"] .revalida-visual-content h2 {
    font-size: 24px;
  }
  html[data-page="medprovas"] .revalida-mini-facts {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
  }
  html[data-page="medprovas"] .revalida-mini-fact:nth-child(n + 3) {
    display: none;
  }
  html[data-page="medprovas"] .revalida-person-wrap img {
    right: -18%;
    height: 102%;
  }
  html[data-page="medprovas"] .revalida-page .public-grid {
    grid-template-columns: 1fr;
  }
}

html[data-page="medprovas"] .revalida-direction-title {
  max-width: 650px;
  font-size: clamp(30px, 2.75vw, 38px) !important;
  line-height: 1.12 !important;
}
html[data-page="medprovas"] .revalida-direction-title span {
  display: block;
}
@media (max-width: 640px) {
  html[data-page="medprovas"] .revalida-direction-title span {
    display: inline;
  }
  html[data-page="medprovas"] .revalida-direction-title span + span::before {
    content: " ";
  }
}

/* =========================================================
   MEDPROVAS — página comercial premium
========================================================== */
html[data-page="medprovas"] .medprovas-page {
  --mp-green: #08ad05;
  --mp-green-deep: #078d08;
  --mp-mint: #7ed957;
  --mp-dark: #071b2a;
  --mp-ink: #102939;
}

html[data-page="medprovas"] .mp-hero {
  position: relative;
  min-height: 650px;
  margin-top: 84px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 16%,
      rgba(126, 217, 87, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 14% 82%,
      rgba(0, 151, 178, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #03131f 0%, #07253a 42%, #0a3646 72%, #0d4950 100%);
  background-size:
    100% 100%,
    100% 100%,
    140% 140%;
  animation: medprovas-mpHeroShift 16s ease-in-out infinite;
  isolation: isolate;
}
html[data-page="medprovas"] .mp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.72) 62%,
    transparent 98%
  );
  animation: medprovas-mpGridDrift 22s linear infinite;
}
html[data-page="medprovas"] .mp-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -36% auto;
  z-index: -4;
  width: 880px;
  height: 880px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(126, 217, 87, 0.16) 0%,
    rgba(0, 151, 178, 0.12) 42%,
    transparent 72%
  );
  filter: blur(14px);
  animation: medprovas-mpAuraDrift 14s ease-in-out infinite;
}
html[data-page="medprovas"] .mp-hero-ambient,
html[data-page="medprovas"] .mp-hero-particles,
html[data-page="medprovas"] .mp-hero-scanner,
html[data-page="medprovas"] .mp-hero-tech-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
html[data-page="medprovas"] .mp-hero-ambient {
  z-index: -3;
  background:
    radial-gradient(
      circle at 16% 26%,
      rgba(47, 128, 237, 0.18) 0%,
      transparent 34%
    ),
    radial-gradient(
      circle at 68% 18%,
      rgba(126, 217, 87, 0.12) 0%,
      transparent 32%
    ),
    radial-gradient(
      circle at 84% 78%,
      rgba(0, 151, 178, 0.14) 0%,
      transparent 34%
    );
  filter: blur(12px);
  animation: medprovas-mpAmbientPulse 11s ease-in-out infinite;
}
html[data-page="medprovas"] .mp-hero-tech-lines {
  z-index: -2;
  opacity: 0.55;
  background:
    linear-gradient(
      118deg,
      transparent 0 18%,
      rgba(82, 183, 255, 0.18) 18.5%,
      transparent 19.2%,
      transparent 48%,
      rgba(126, 217, 87, 0.16) 48.6%,
      transparent 49.4%,
      transparent 100%
    ),
    linear-gradient(
      90deg,
      transparent 0 62%,
      rgba(255, 255, 255, 0.05) 62.2%,
      transparent 62.6%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0 28%,
      rgba(255, 255, 255, 0.04) 28.2%,
      transparent 28.6%,
      transparent 100%
    );
  background-size:
    140% 140%,
    100% 100%,
    100% 100%;
  animation: medprovas-mpTechSweep 10s linear infinite;
  mask-image: linear-gradient(
    90deg,
    #000 20%,
    rgba(0, 0, 0, 0.95) 72%,
    transparent 98%
  );
}
html[data-page="medprovas"] .mp-hero-scanner {
  z-index: -1;
  width: 44%;
  left: auto;
  right: 8%;
  top: 8%;
  bottom: 6%;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(126, 217, 87, 0.18) 48%,
      transparent 52%,
      transparent 100%
    );
  mix-blend-mode: screen;
  filter: blur(0.2px);
  animation: medprovas-mpScannerMove 4.6s ease-in-out infinite;
}
html[data-page="medprovas"] .mp-hero-particles {
  z-index: -1;
  background-image:
    radial-gradient(
      circle at 20% 26%,
      rgba(255, 255, 255, 0.82) 0 2px,
      transparent 2.2px
    ),
    radial-gradient(
      circle at 32% 68%,
      rgba(126, 217, 87, 0.75) 0 2.2px,
      transparent 2.4px
    ),
    radial-gradient(
      circle at 58% 16%,
      rgba(47, 128, 237, 0.82) 0 2px,
      transparent 2.2px
    ),
    radial-gradient(
      circle at 72% 60%,
      rgba(255, 255, 255, 0.65) 0 1.8px,
      transparent 2px
    ),
    radial-gradient(
      circle at 86% 28%,
      rgba(126, 217, 87, 0.72) 0 2px,
      transparent 2.2px
    ),
    radial-gradient(
      circle at 90% 74%,
      rgba(47, 128, 237, 0.78) 0 1.8px,
      transparent 2px
    );
  animation: medprovas-mpParticlesFloat 15s ease-in-out infinite;
  opacity: 0.7;
}
html[data-page="medprovas"] .mp-bg-blur {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.55;
  pointer-events: none;
}
html[data-page="medprovas"] .mp-bg-blur--one {
  width: 260px;
  height: 260px;
  left: -70px;
  top: 90px;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.2) 0%,
    rgba(47, 128, 237, 0) 68%
  );
  animation: medprovas-mpGlowFloat 14s ease-in-out infinite;
}
html[data-page="medprovas"] .mp-bg-blur--two {
  width: 220px;
  height: 220px;
  right: 18%;
  top: 88px;
  background: radial-gradient(
    circle,
    rgba(126, 217, 87, 0.22) 0%,
    rgba(126, 217, 87, 0) 68%
  );
  animation: medprovas-mpGlowFloat 18s ease-in-out infinite reverse;
}
@keyframes medprovas-mpHeroShift {
  0%,
  100% {
    background-position:
      78% 16%,
      14% 82%,
      0% 50%;
  }
  50% {
    background-position:
      74% 12%,
      18% 76%,
      100% 50%;
  }
}
@keyframes medprovas-mpGridDrift {
  0% {
    background-position:
      0 0,
      0 0;
  }
  100% {
    background-position:
      56px 56px,
      56px 56px;
  }
}
@keyframes medprovas-mpAuraDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-42px, -24px, 0) scale(1.06);
  }
}
@keyframes medprovas-mpAmbientPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.88;
  }
}
@keyframes medprovas-mpTechSweep {
  0% {
    transform: translateX(0);
    background-position:
      0% 0,
      0 0,
      0 0;
  }
  100% {
    transform: translateX(0);
    background-position:
      100% 0,
      0 0,
      0 0;
  }
}
@keyframes medprovas-mpScannerMove {
  0%,
  100% {
    transform: translateY(-18%) skewX(-8deg);
    opacity: 0.18;
  }
  50% {
    transform: translateY(18%) skewX(-8deg);
    opacity: 0.42;
  }
}
@keyframes medprovas-mpParticlesFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}
@keyframes medprovas-mpGlowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(20px, -10px, 0) scale(1.08);
  }
}
html[data-page="medprovas"] .mp-hero-inner {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 36px;
  padding-block: 38px 54px;
}
html[data-page="medprovas"] .mp-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 640px;
}
html[data-page="medprovas"] .mp-logo-pill {
  display: block;
  margin-bottom: 26px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
}
html[data-page="medprovas"] .mp-logo-pill img {
  width: min(360px, 64vw);
  max-height: none;
  filter: brightness(0) invert(1);
}
html[data-page="medprovas"] .mp-logo-pill span {
  display: none;
}
html[data-page="medprovas"] .mp-hero h1 {
  margin: 0;
  max-width: 640px;
  font-size: 42px !important;
  font-weight: 400 !important;
  line-height: 1.04;
  letter-spacing: -0.045em;
}
html[data-page="medprovas"] .mp-hero h1 span,
html[data-page="medprovas"] .mp-hero h1 em {
  display: block;
}
html[data-page="medprovas"] .mp-hero h1 .mp-title-line {
  white-space: nowrap;
}
html[data-page="medprovas"] .mp-hero h1 em {
  margin-top: 5px;
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, #fff, #8ce7c3 52%, #80c8ff);
  -webkit-background-clip: text;
  background-clip: text;
}
/* O nome do produto recebe o degradê azul-verde solicitado no título. */
html[data-page="medprovas"] .mp-hero h1 .mp-title-highlight {
  margin-top: 5px;
  color: transparent;
  background: linear-gradient(90deg, #55a9ff 0%, #17c4b1 54%, #75d45f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
html[data-page="medprovas"] .mp-hero-copy > p {
  max-width: 620px;
  margin: 25px 0 0;
  color: #c3d6df;
  font-size: 17px;
  line-height: 1.72;
}
html[data-page="medprovas"] .mp-hero-points {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px;
  margin-top: 34px;
}
html[data-page="medprovas"] .mp-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #eef8fb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
html[data-page="medprovas"] .mp-hero-points i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(126, 217, 87, 0.16);
  color: #8ce66d;
  font-style: normal;
}
html[data-page="medprovas"] .mp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
html[data-page="medprovas"] .mp-primary,
html[data-page="medprovas"] .mp-secondary {
  min-height: 55px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 850;
  transition: 0.28s;
}
html[data-page="medprovas"] .mp-primary {
  background: linear-gradient(135deg, #13bd0e, #078f08);
  color: #fff;
  box-shadow: 0 18px 40px rgba(12, 171, 8, 0.28);
}
html[data-page="medprovas"] .mp-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 23px 48px rgba(12, 171, 8, 0.36);
}
html[data-page="medprovas"] .mp-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
html[data-page="medprovas"] .mp-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
}
html[data-page="medprovas"] .mp-hero-visual {
  position: relative;
  min-height: 555px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
html[data-page="medprovas"] .mp-hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(126, 217, 87, 0.2) 0%,
    rgba(47, 128, 237, 0.1) 38%,
    transparent 70%
  );
  filter: blur(18px);
  transform: translate(5%, 3%);
  pointer-events: none;
}
html[data-page="medprovas"] .mp-device-stage {
  position: relative;
  z-index: 2;
  width: 132%;
  margin-left: -9%;
  animation: medprovas-mpDeviceFloat 7.4s ease-in-out infinite;
  filter: drop-shadow(0 38px 52px rgba(0, 0, 0, 0.38))
    drop-shadow(0 14px 30px rgba(126, 217, 87, 0.16));
}
html[data-page="medprovas"] .mp-device-stage img {
  width: 100%;
  display: block;
}
@keyframes medprovas-mpDeviceFloat {
  0%,
  100% {
    transform: translateY(0) rotateY(-2deg);
  }
  50% {
    transform: translateY(-12px) rotateY(0);
  }
}
html[data-page="medprovas"] .mp-visual-ring {
  position: absolute;
  inset: 7% 0 10% 3%;
  border: 1px solid rgba(126, 217, 87, 0.24);
  border-radius: 48% 52% 46% 54%;
  transform: rotate(-7deg);
  animation: medprovas-mpRing 8s ease-in-out infinite;
}
html[data-page="medprovas"] .mp-visual-ring::before,
html[data-page="medprovas"] .mp-visual-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
html[data-page="medprovas"] .mp-visual-ring::before {
  width: 12px;
  height: 12px;
  top: 8%;
  right: 14%;
  background: #7ed957;
  box-shadow: 0 0 26px rgba(126, 217, 87, 0.9);
}
html[data-page="medprovas"] .mp-visual-ring::after {
  width: 9px;
  height: 9px;
  left: 8%;
  bottom: 20%;
  background: #2f80ed;
  box-shadow: 0 0 24px rgba(47, 128, 237, 0.85);
}
@keyframes medprovas-mpRing {
  0%,
  100% {
    transform: rotate(-7deg) scale(1);
  }
  50% {
    transform: rotate(-3deg) scale(1.035);
  }
}

html[data-page="medprovas"] .mp-stat-strip {
  position: relative;
  z-index: 6;
  margin-top: -34px;
}
html[data-page="medprovas"] .mp-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
html[data-page="medprovas"] .mp-stat {
  position: relative;
  min-height: 118px;
  padding: 24px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
}
html[data-page="medprovas"] .mp-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--border);
}
html[data-page="medprovas"] .mp-stat-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(
    135deg,
    rgba(8, 173, 5, 0.13),
    rgba(0, 151, 178, 0.13)
  );
  color: var(--mp-green);
}
html[data-page="medprovas"] .mp-stat-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="medprovas"] .mp-stat small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html[data-page="medprovas"] .mp-stat strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.2;
}

html[data-page="medprovas"] .mp-section {
  padding: 108px 0;
}
html[data-page="medprovas"] .mp-section-head {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}
html[data-page="medprovas"] .mp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--mp-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
html[data-page="medprovas"] .mp-kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mp-green), #0097b2);
}
html[data-page="medprovas"] .mp-section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="medprovas"] .mp-section-head p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

html[data-page="medprovas"] .mp-diagnosis {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}
html[data-page="medprovas"] .mp-diagnosis-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}
html[data-page="medprovas"] .mp-diagnosis-copy h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
html[data-page="medprovas"] .mp-diagnosis-copy > p {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="medprovas"] .mp-check-list {
  display: grid;
  gap: 12px;
  margin-top: 27px;
}
html[data-page="medprovas"] .mp-check-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--surface);
  transition: 0.25s;
}
html[data-page="medprovas"] .mp-check-item:hover {
  transform: translateX(6px);
  border-color: rgba(8, 173, 5, 0.32);
}
html[data-page="medprovas"] .mp-check-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(8, 173, 5, 0.11);
  color: var(--mp-green);
  font-style: normal;
  font-weight: 900;
}
html[data-page="medprovas"] .mp-check-item strong {
  display: block;
  font-size: 14px;
}
html[data-page="medprovas"] .mp-check-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
html[data-page="medprovas"] .mp-diagnostic-board {
  position: relative;
  min-height: 570px;
  padding: 34px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #071e2e, #0a3d4e 66%, #0b5d60);
  color: #fff;
  box-shadow: var(--shadow);
}
html[data-page="medprovas"] .mp-diagnostic-board::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -120px;
  top: -115px;
  border-radius: 50%;
  border: 1px solid rgba(126, 217, 87, 0.28);
}
html[data-page="medprovas"] .mp-diagnostic-board h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
html[data-page="medprovas"] .mp-diagnostic-board > p {
  position: relative;
  z-index: 2;
  margin: 13px 0 0;
  color: #b9d0da;
  font-size: 13px;
  line-height: 1.65;
}
html[data-page="medprovas"] .mp-loop {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
  margin-top: 27px;
}
html[data-page="medprovas"] .mp-loop-card {
  position: relative;
  min-height: 87px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.07);
  transition: 0.32s;
  overflow: hidden;
}
html[data-page="medprovas"] .mp-loop-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-120%);
}
html[data-page="medprovas"] .mp-loop-card:hover {
  transform: translateX(7px);
  border-color: rgba(126, 217, 87, 0.38);
  background: linear-gradient(
    100deg,
    rgba(47, 128, 237, 0.15),
    rgba(8, 173, 5, 0.13)
  );
}
html[data-page="medprovas"] .mp-loop-card:hover::before {
  animation: medprovas-mpShine 0.8s ease forwards;
}
@keyframes medprovas-mpShine {
  to {
    transform: translateX(120%);
  }
}
html[data-page="medprovas"] .mp-loop-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #2f80ed, #08ad05);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(8, 173, 5, 0.17);
}
html[data-page="medprovas"] .mp-loop-card strong {
  display: block;
  font-size: 14px;
}
html[data-page="medprovas"] .mp-loop-card span {
  display: block;
  margin-top: 4px;
  color: #a9c2ce;
  font-size: 11px;
}
html[data-page="medprovas"] .mp-loop-card b {
  color: #87e96b;
  font-size: 18px;
}
html[data-page="medprovas"] .mp-diagnostic-note {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  padding: 15px 17px;
  border-left: 3px solid #7ed957;
  border-radius: 0 14px 14px 0;
  background: rgba(0, 0, 0, 0.17);
  color: #c6d9e1;
  font-size: 12px;
  line-height: 1.65;
}

html[data-page="medprovas"] .mp-features {
  background: var(--surface);
}
html[data-page="medprovas"] .mp-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
html[data-page="medprovas"] .mp-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 275px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 27px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  transition: 0.34s;
  isolation: isolate;
}
html[data-page="medprovas"] .mp-feature-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 160px;
  height: 160px;
  right: -82px;
  top: -88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 173, 5, 0.15), transparent 68%);
  transition: 0.4s;
}
html[data-page="medprovas"] .mp-feature-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #08ad05, #0097b2);
  transition: right 0.4s;
}
html[data-page="medprovas"] .mp-feature-card:hover {
  transform: translateY(-9px);
  border-color: rgba(8, 173, 5, 0.34);
  box-shadow: 0 24px 54px rgba(8, 41, 66, 0.12);
}
html[data-page="medprovas"] .mp-feature-card:hover::before {
  transform: scale(1.2);
}
html[data-page="medprovas"] .mp-feature-card:hover::after {
  right: 0;
}
html[data-page="medprovas"] .mp-feature-icon {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, #08ad05, #0097b2);
  box-shadow:
    0 15px 34px rgba(8, 173, 5, 0.21),
    0 0 0 7px rgba(8, 173, 5, 0.05);
  transition: 0.35s;
}
html[data-page="medprovas"] .mp-feature-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
}
html[data-page="medprovas"] .mp-feature-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  right: 8px;
  top: 8px;
  border-radius: 50%;
  background: #a8f48f;
  box-shadow: 0 0 13px rgba(168, 244, 143, 0.9);
}
html[data-page="medprovas"] .mp-feature-icon svg {
  position: relative;
  z-index: 1;
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="medprovas"] .mp-feature-card:hover .mp-feature-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.08);
}
html[data-page="medprovas"] .mp-feature-card h3 {
  margin: 22px 0 9px;
  font-size: 18px;
  line-height: 1.3;
}
html[data-page="medprovas"] .mp-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

html[data-page="medprovas"] .mp-showcase {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #061b2b, #0a3447 58%, #0c5c5b);
}
html[data-page="medprovas"] .mp-showcase::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -280px;
  top: -300px;
  border-radius: 50%;
  border: 1px solid rgba(126, 217, 87, 0.24);
}
html[data-page="medprovas"] .mp-showcase .mp-section-head h2 {
  color: #fff;
}
html[data-page="medprovas"] .mp-showcase .mp-section-head p {
  color: #b9d1dc;
}
html[data-page="medprovas"] .mp-showcase-shell {
  position: relative;
  z-index: 2;
  display: block;
}
html[data-page="medprovas"] .mp-screen-tabs {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-content: start;
  gap: 10px;
}
html[data-page="medprovas"] .mp-screen-tab {
  width: 100%;
  min-height: 74px;
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.065);
  color: #fff;
  text-align: center;
  font-weight: 400;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
html[data-page="medprovas"] .mp-screen-tab-label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}
html[data-page="medprovas"] .mp-screen-tab:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 217, 87, 0.38);
  background: rgba(255, 255, 255, 0.105);
}
html[data-page="medprovas"] .mp-screen-tab.active {
  transform: translateY(-5px);
  border-color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--green));
  color: #fff;
  box-shadow:
    0 15px 34px rgba(0, 151, 178, 0.3),
    0 7px 18px rgba(0, 0, 0, 0.24);
}
html[data-page="medprovas"] .mp-screen-frame {
  position: relative;
  min-height: 590px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 29px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.32);
}
html[data-page="medprovas"] .mp-screen-browser {
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 17px 17px 0 0;
  background: rgba(3, 19, 30, 0.82);
}
html[data-page="medprovas"] .mp-screen-browser i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}
html[data-page="medprovas"] .mp-screen-browser span {
  margin-left: auto;
  color: #91adbb;
  font-size: 9px;
  letter-spacing: 0.09em;
}
html[data-page="medprovas"] .mp-screen-viewport {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 0 0 19px 19px;
  background: #fff;
}
html[data-page="medprovas"] .mp-screen-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease;
  pointer-events: none;
}
html[data-page="medprovas"] .mp-screen-panel.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
html[data-page="medprovas"] .mp-screen-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #f7f7f7;
}
html[data-page="medprovas"] .mp-screen-caption {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #08ad05, #0097b2);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  box-shadow: 0 12px 26px rgba(8, 41, 66, 0.2);
}
html[data-page="medprovas"] .mp-video-button {
  position: absolute;
  z-index: 5;
  right: 25px;
  bottom: 25px;
  min-height: 48px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: linear-gradient(135deg, #08ad05, #078d08);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 16px 36px rgba(8, 173, 5, 0.28);
  cursor: pointer;
  transition: 0.25s;
}
html[data-page="medprovas"] .mp-video-button:hover {
  transform: translateY(-3px);
}

html[data-page="medprovas"] .mp-method {
  background: linear-gradient(135deg, #effcf0 0%, #f3fbff 50%, #eef8ff 100%);
}
html[data-page="medprovas"][data-theme="dark"] .mp-method {
  background: linear-gradient(135deg, #0a2731, #0a2435 50%, #0b2c35);
}
html[data-page="medprovas"] .mp-method-flow {
  --mp-progress: 0%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
html[data-page="medprovas"] .mp-method-track,
html[data-page="medprovas"] .mp-method-fill {
  position: absolute;
  left: 12.5%;
  top: 39px;
  height: 4px;
  border-radius: 999px;
}
html[data-page="medprovas"] .mp-method-track {
  right: 12.5%;
  background: rgba(8, 41, 66, 0.12);
}
html[data-page="medprovas"] .mp-method-fill {
  width: var(--mp-progress);
  max-width: 75%;
  background: linear-gradient(90deg, #2f80ed, #08ad05);
  box-shadow: 0 0 18px rgba(8, 173, 5, 0.35);
  transition: width 0.48s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="medprovas"] .mp-method-step {
  position: relative;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  outline: none;
}
html[data-page="medprovas"] .mp-method-step b {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid rgba(47, 128, 237, 0.2);
  border-radius: 50%;
  background: var(--surface);
  color: #2f80ed;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 13px 32px rgba(8, 41, 66, 0.11);
  transition: 0.34s;
}
html[data-page="medprovas"] .mp-method-step.active b,
html[data-page="medprovas"] .mp-method-step:hover b,
html[data-page="medprovas"] .mp-method-step:focus-visible b {
  transform: translateY(-6px) scale(1.08);
  border-color: transparent;
  color: #fff;
  background: var(--mp-green);
  box-shadow:
    0 0 0 8px rgba(8, 173, 5, 0.1),
    0 18px 38px rgba(8, 173, 5, 0.26);
}
html[data-page="medprovas"] .mp-method-step h3 {
  margin: 20px 0 8px;
  font-size: 18px;
}
html[data-page="medprovas"] .mp-method-step p {
  margin: 0 auto;
  max-width: 240px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

html[data-page="medprovas"] .mp-audience {
  background: var(--surface);
}
html[data-page="medprovas"] .mp-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
html[data-page="medprovas"] .mp-audience-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  box-shadow: 0 13px 34px rgba(8, 41, 66, 0.06);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
  isolation: isolate;
}
html[data-page="medprovas"] .mp-audience-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 170px;
  height: 170px;
  right: -88px;
  top: -92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 173, 5, 0.15), transparent 68%);
  transition:
    transform 0.45s ease,
    opacity 0.35s ease;
}
html[data-page="medprovas"] .mp-audience-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #08ad05, #0097b2, #2f80ed);
  transition: right 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="medprovas"] .mp-audience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8, 173, 5, 0.35);
  box-shadow: 0 24px 54px rgba(8, 41, 66, 0.13);
}
html[data-page="medprovas"] .mp-audience-card:hover::before {
  transform: scale(1.22);
  opacity: 0.92;
}
html[data-page="medprovas"] .mp-audience-card:hover::after {
  right: 0;
}
html[data-page="medprovas"] .mp-audience-icon {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, #2f80ed 0%, #1598d0 48%, #08ad05 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    0 15px 34px rgba(47, 128, 237, 0.22),
    0 0 0 7px rgba(47, 128, 237, 0.05);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.85, 0.2, 1.22),
    box-shadow 0.32s ease;
}
html[data-page="medprovas"] .mp-audience-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
}
html[data-page="medprovas"] .mp-audience-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 8px;
  right: 8px;
  border-radius: 50%;
  background: #a7f58d;
  box-shadow: 0 0 14px rgba(167, 245, 141, 0.9);
  animation: medprovas-mpAudiencePulse 2.6s ease-in-out infinite;
}
html[data-page="medprovas"] .mp-audience-icon svg {
  position: relative;
  z-index: 1;
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.18));
}
html[data-page="medprovas"] .mp-audience-card:nth-child(2n) .mp-audience-icon {
  background: linear-gradient(145deg, #0097b2, #00a189);
}
html[data-page="medprovas"] .mp-audience-card:nth-child(3n) .mp-audience-icon {
  background: linear-gradient(145deg, #3e74e8, #08ad05);
}
html[data-page="medprovas"] .mp-audience-card:hover .mp-audience-icon {
  transform: translateY(-4px) rotate(-5deg) scale(1.08);
  box-shadow:
    0 22px 42px rgba(8, 173, 5, 0.24),
    0 0 0 9px rgba(8, 173, 5, 0.06);
}
@keyframes medprovas-mpAudiencePulse {
  0%,
  100% {
    transform: scale(0.86);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}
html[data-page="medprovas"] .mp-audience-card h3 {
  margin: 20px 0 8px;
  font-size: 18px;
}
html[data-page="medprovas"] .mp-audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.67;
}

html[data-page="medprovas"] .mp-pricing {
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
}
html[data-page="medprovas"] .mp-pricing .mp-section-head {
  max-width: 760px;
}
html[data-page="medprovas"] .mp-pricing .mp-section-head h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}
html[data-page="medprovas"] .mp-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
html[data-page="medprovas"] .mp-plan {
  position: relative;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 20px 54px rgba(8, 41, 66, 0.1);
  transition: 0.32s;
}
html[data-page="medprovas"] .mp-plan:hover {
  transform: translateY(-9px);
  border-color: rgba(8, 173, 5, 0.38);
  box-shadow: 0 30px 70px rgba(8, 41, 66, 0.16);
}
html[data-page="medprovas"] .mp-plan.featured {
  border-color: rgba(8, 173, 5, 0.42);
  transform: translateY(-8px);
  box-shadow: 0 30px 75px rgba(8, 173, 5, 0.16);
}
html[data-page="medprovas"] .mp-plan.featured:hover {
  transform: translateY(-12px);
}
html[data-page="medprovas"] .mp-plan-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(8, 173, 5, 0.11);
  color: var(--mp-green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
html[data-page="medprovas"] .mp-plan small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
html[data-page="medprovas"] .mp-plan h3 {
  margin: 9px 0 0;
  font-size: 27px;
}
html[data-page="medprovas"] .mp-plan-price {
  margin-top: 22px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
html[data-page="medprovas"] .mp-plan-price strong {
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: -0.05em;
}
html[data-page="medprovas"] .mp-plan-price span {
  color: var(--muted);
  font-size: 12px;
}
html[data-page="medprovas"] .mp-plan-alt {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
}
html[data-page="medprovas"] .mp-plan-list {
  display: grid;
  gap: 11px;
  margin: 24px 0;
}
html[data-page="medprovas"] .mp-plan-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 12px;
}
html[data-page="medprovas"] .mp-plan-list i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 173, 5, 0.11);
  color: var(--mp-green);
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}
html[data-page="medprovas"] .mp-plan a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(100deg, #2f80ed, #00b388);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(0, 140, 165, 0.22);
  transition: 0.25s;
}
html[data-page="medprovas"] .mp-plan a:hover {
  transform: translateY(-2px);
}
html[data-page="medprovas"] .mp-plan-note {
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

html[data-page="medprovas"] .mp-faq {
  background: var(--surface-soft);
}
html[data-page="medprovas"] .medprovas-page .faq-aside {
  background: linear-gradient(145deg, #071e2f, #0a4c55);
}
html[data-page="medprovas"] .medprovas-page .faq-aside a {
  background: linear-gradient(135deg, #08ad05, #078d08);
}
html[data-page="medprovas"] .mp-final {
  padding: 75px 0 105px;
  background: var(--surface-soft);
}
html[data-page="medprovas"] .mp-final-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, #061c2c, #0a4552 62%, #0b735f);
  box-shadow: var(--shadow);
}
html[data-page="medprovas"] .mp-final-card::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  right: -130px;
  top: -205px;
  border-radius: 50%;
  border: 1px solid rgba(126, 217, 87, 0.28);
}
html[data-page="medprovas"] .mp-final-card > * {
  position: relative;
  z-index: 2;
}
html[data-page="medprovas"] .mp-final-card small {
  color: #a7e6cb;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
html[data-page="medprovas"] .mp-final-card h2 {
  margin: 12px 0 0;
  max-width: 800px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="medprovas"] .mp-final-card p {
  margin: 17px 0 0;
  color: #c5d9e2;
  font-size: 14px;
  line-height: 1.7;
}

html[data-page="medprovas"] .mp-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 13, 22, 0.82);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: 0.28s;
}
html[data-page="medprovas"] .mp-modal.open {
  opacity: 1;
  visibility: visible;
}
html[data-page="medprovas"] .mp-modal-dialog {
  position: relative;
  width: min(980px, 94vw);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: #071b2a;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.48);
  transform: translateY(20px) scale(0.97);
  transition: 0.3s;
}
html[data-page="medprovas"] .mp-modal.open .mp-modal-dialog {
  transform: none;
}
html[data-page="medprovas"] .mp-modal-close {
  position: absolute;
  z-index: 3;
  right: -12px;
  top: -12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #fff;
  color: #102939;
  cursor: pointer;
}
html[data-page="medprovas"] .mp-modal-video {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 17px;
  background: #000;
}
html[data-page="medprovas"] .mp-modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1100px) {
  html[data-page="medprovas"] .mp-hero-inner {
    grid-template-columns: 1.16fr 0.84fr;
    gap: 22px;
  }
  html[data-page="medprovas"] .mp-float-card--one {
    left: -3%;
  }
  html[data-page="medprovas"] .mp-float-card--two {
    right: -3%;
  }
  html[data-page="medprovas"] .mp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="medprovas"] .mp-showcase-shell {
    grid-template-columns: 220px 1fr;
  }
  html[data-page="medprovas"] .mp-screen-frame {
    min-height: 520px;
  }
  html[data-page="medprovas"] .mp-screen-viewport {
    height: 450px;
  }
}
@media (max-width: 920px) {
  html[data-page="medprovas"] .mp-hero {
    margin-top: 74px;
  }
  html[data-page="medprovas"] .mp-hero,
  html[data-page="medprovas"] .mp-hero-inner {
    min-height: auto;
  }
  html[data-page="medprovas"] .mp-hero-inner {
    grid-template-columns: 1fr;
    padding-block: 72px 96px;
  }
  html[data-page="medprovas"] .mp-hero-copy {
    text-align: center;
    margin-inline: auto;
  }
  html[data-page="medprovas"] .mp-hero-copy > p {
    margin-inline: auto;
  }
  html[data-page="medprovas"] .mp-hero-actions,
  html[data-page="medprovas"] .mp-hero-points {
    justify-content: center;
  }
  html[data-page="medprovas"] .mp-hero-visual {
    min-height: 530px;
    max-width: 760px;
    width: 100%;
    margin: auto;
  }
  html[data-page="medprovas"] .mp-device-stage {
    width: 112%;
    margin-left: 0;
  }
  html[data-page="medprovas"] .mp-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="medprovas"] .mp-stat:nth-child(2)::after {
    display: none;
  }
  html[data-page="medprovas"] .mp-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="medprovas"] .mp-diagnosis-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="medprovas"] .mp-showcase-shell {
    grid-template-columns: 1fr;
  }
  html[data-page="medprovas"] .mp-screen-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
  html[data-page="medprovas"] .mp-screen-tab {
    min-height: 72px;
    text-align: center;
  }
  html[data-page="medprovas"] .mp-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="medprovas"] .mp-plan-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-inline: auto;
  }
  html[data-page="medprovas"] .mp-plan.featured {
    transform: none;
  }
  html[data-page="medprovas"] .mp-final-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  html[data-page="medprovas"] .mp-hero h1 .mp-title-line {
    white-space: normal;
  }
  html[data-page="medprovas"] .mp-hero h1 {
    font-size: 34px;
  }
  html[data-page="medprovas"] .mp-hero-copy > p {
    font-size: 15px;
  }
  html[data-page="medprovas"] .mp-hero-points span {
    font-size: 13px;
  }
  html[data-page="medprovas"] .mp-hero-visual {
    min-height: 405px;
  }
  html[data-page="medprovas"] .mp-device-stage {
    width: 108%;
  }
  html[data-page="medprovas"] .mp-stat-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="medprovas"] .mp-stat {
    min-height: 94px;
  }
  html[data-page="medprovas"] .mp-stat::after {
    display: none !important;
  }
  html[data-page="medprovas"] .mp-stat:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="medprovas"] .mp-section {
    padding: 82px 0;
  }
  html[data-page="medprovas"] .mp-feature-grid,
  html[data-page="medprovas"] .mp-audience-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="medprovas"] .mp-screen-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="medprovas"] .mp-screen-tab {
    min-height: 68px;
    text-align: center;
  }
  html[data-page="medprovas"] .mp-diagnostic-board {
    min-height: auto;
    padding: 25px;
  }
  html[data-page="medprovas"] .mp-screen-frame {
    min-height: 365px;
    padding: 8px;
  }
  html[data-page="medprovas"] .mp-screen-viewport {
    height: 310px;
  }
  html[data-page="medprovas"] .mp-method-flow {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  html[data-page="medprovas"] .mp-method-track,
  html[data-page="medprovas"] .mp-method-fill {
    display: none;
  }
  html[data-page="medprovas"] .mp-method-step {
    padding: 17px;
    text-align: left;
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 15px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: var(--surface);
  }
  html[data-page="medprovas"] .mp-method-step b {
    width: 58px;
    height: 58px;
    margin: 0;
    grid-row: 1/3;
  }
  html[data-page="medprovas"] .mp-method-step h3 {
    margin: 0 0 5px;
  }
  html[data-page="medprovas"] .mp-method-step p {
    margin: 0;
    max-width: none;
  }
  html[data-page="medprovas"] .mp-final-card {
    padding: 38px 26px;
  }
}

/* Cabeçalho centralizado no limite de 1240 px */
@media (min-width: 921px) {
  
  
  
  
  
  
}

/* Título e botões da apresentação da plataforma */
html[data-page="medprovas"] .mp-showcase .mp-section-head {
  margin-bottom: 44px;
}
html[data-page="medprovas"] .mp-platform-title {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  color: #fff;
  font-size: clamp(27px, 3vw, 38px) !important;
  font-weight: 800;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  text-transform: uppercase;
}
html[data-page="medprovas"] .mp-platform-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(205px, 58%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f80ed 0%, #20a8ef 48%, #00d49a 100%);
  transform: translateX(-50%);
}
html[data-page="medprovas"] .mp-screen-tab {
  min-height: 74px;
}
@media (max-width: 920px) {
  html[data-page="medprovas"] .mp-screen-tab {
    min-height: 72px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  html[data-page="medprovas"] .mp-platform-title {
    font-size: 25px !important;
  }
}

/* Monitor em proporção widescreen, sem faixas laterais */
html[data-page="medprovas"] .mp-screen-frame {
  min-height: 0;
}
html[data-page="medprovas"] .mp-screen-viewport {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
html[data-page="medprovas"] .mp-screen-panel img {
  object-fit: cover;
  object-position: top center;
  background: #fff;
}
@media (max-width: 640px) {
  html[data-page="medprovas"] .mp-screen-frame {
    min-height: 0;
    padding: 8px;
  }
  html[data-page="medprovas"] .mp-screen-viewport {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
html[data-page="medprovas"] .mp-title-26 {
  font-size: 26px !important;
  font-weight: 500 !important;
}

/* ===== Ajustes MedProvas solicitados — 17/08/2026 ===== */
html[data-page="medprovas"] .mp-feature-band {
  position: relative;
  padding: 68px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(47, 128, 237, 0.09),
      transparent 28%
    ),
    radial-gradient(circle at 88% 76%, rgba(0, 179, 136, 0.1), transparent 28%),
    var(--surface-soft);
}
html[data-page="medprovas"] .mp-feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(47, 128, 237, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 128, 237, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 90%);
}
html[data-page="medprovas"] .mp-feature-band .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="medprovas"] .mp-feature-head {
  text-align: center;
}
html[data-page="medprovas"] .mp-feature-head h2 {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  max-width: 930px;
  padding-bottom: 20px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.035em;
}
html[data-page="medprovas"] .mp-feature-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(205px, 58%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f80ed 0%, #20a8ef 48%, #00d49a 100%);
  transform: translateX(-50%);
}
html[data-page="medprovas"] .mp-feature-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
html[data-page="medprovas"] .mp-feature-card {
  position: relative;
  min-height: 190px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(47, 128, 237, 0.15);
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, #08647e, #3a93a1 56%, #7dd4bd);
  box-shadow: 0 18px 40px rgba(8, 41, 66, 0.12);
  animation: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
html[data-page="medprovas"] .mp-feature-card-dark {
  background: linear-gradient(145deg, #27333c, #474747 78%);
  border-color: rgba(255, 255, 255, 0.08);
}
html[data-page="medprovas"] .mp-feature-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -72px;
  top: -80px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
html[data-page="medprovas"] .mp-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 27px 58px rgba(8, 41, 66, 0.2);
}
html[data-page="medprovas"] .mp-feature-index {
  position: absolute;
  left: 27px;
  top: 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
html[data-page="medprovas"] .mp-feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
html[data-page="medprovas"] .mp-feature-line {
  position: absolute;
  left: 27px;
  right: 27px;
  bottom: 17px;
  height: 2px;
  transform: scaleX(0.34);
  transform-origin: left;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  transition: transform 0.35s ease;
}
html[data-page="medprovas"] .mp-feature-card:hover .mp-feature-line {
  transform: scaleX(1);
}
/* Entrada direcional dos 4 destaques do MedProvas.
   A animação só dispara quando a seção entra na área visível da tela. */
html[data-page="medprovas"] .mp-feature-card.reveal {
  opacity: 0;
  filter: blur(4px);
  transition:
    opacity 0.72s ease var(--delay, 0s),
    transform 0.88s cubic-bezier(0.2, 0.82, 0.22, 1) var(--delay, 0s),
    filter 0.72s ease var(--delay, 0s),
    box-shadow 0.3s ease;
  will-change: opacity, transform, filter;
}
html[data-page="medprovas"] .mp-feature-card:nth-child(1).reveal {
  transform: translate3d(-105px, 0, 0) scale(0.975);
}
html[data-page="medprovas"] .mp-feature-card:nth-child(2).reveal {
  transform: translate3d(0, -90px, 0) scale(0.975);
}
html[data-page="medprovas"] .mp-feature-card:nth-child(3).reveal {
  transform: translate3d(0, 90px, 0) scale(0.975);
}
html[data-page="medprovas"] .mp-feature-card:nth-child(4).reveal {
  transform: translate3d(105px, 0, 0) scale(0.975);
}
html[data-page="medprovas"] .mp-feature-card.reveal.visible {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}
html[data-page="medprovas"] .mp-feature-card.reveal.visible:hover {
  transform: translateY(-8px);
}
@media (prefers-reduced-motion: reduce) {
  html[data-page="medprovas"] .mp-feature-card.reveal,
  html[data-page="medprovas"] .mp-feature-card.reveal.visible {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}
@media (max-width: 960px) {
  html[data-page="medprovas"] .mp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  html[data-page="medprovas"] .mp-feature-band {
    padding: 52px 0 62px;
  }
  html[data-page="medprovas"] .mp-feature-head h2 br {
    display: none;
  }
  html[data-page="medprovas"] .mp-feature-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="medprovas"] .mp-feature-card {
    min-height: 150px;
  }
}

/* FAQ — mesma linguagem visual do bloco de referência da Home */
html[data-page="medprovas"] .mp-faq-home {
  background: #061b2a;
  color: #fff;
}
html[data-page="medprovas"] .mp-faq-home .faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 90px;
  align-items: start;
}
html[data-page="medprovas"] .mp-faq-home .faq-intro {
  position: sticky;
  top: 120px;
}
html[data-page="medprovas"] .mp-faq-home .section-title-pill {
  position: relative;
  width: max-content;
  margin: 0;
  padding: 0 0 18px;
  display: inline-block;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
html[data-page="medprovas"] .mp-faq-home .section-title-pill::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="medprovas"] .mp-faq-home .faq-lead {
  max-width: 440px;
  margin: 27px 0 0;
  color: #fff;
  font-size: clamp(31px, 3.1vw, 42px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="medprovas"] .mp-faq-home .faq-lead em {
  color: #00bfa0;
  font-style: normal;
}
html[data-page="medprovas"] .mp-faq-home .faq-intro > p {
  max-width: 470px;
  margin: 24px 0;
  color: #c5d9e2;
  font-size: 16px;
  line-height: 1.75;
}
html[data-page="medprovas"] .mp-faq-home .faq-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #00c5a3;
  font-size: 14px;
  font-weight: 750;
}
html[data-page="medprovas"] .mp-faq-home .faq-intro > a svg {
  flex: 0 0 auto;
}
html[data-page="medprovas"] .mp-faq-home .faq-list {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
html[data-page="medprovas"] .mp-faq-home .faq-item {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
html[data-page="medprovas"] .mp-faq-home .faq-question {
  width: 100%;
  min-height: 80px;
  padding: 0 4px;
  display: grid;
  grid-template-columns: 45px 1fr 42px;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}
html[data-page="medprovas"] .mp-faq-home .faq-question > span {
  color: #55a0ff;
  font-size: 11px;
  font-weight: 800;
}
html[data-page="medprovas"] .mp-faq-home .faq-question strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.45;
}
html[data-page="medprovas"] .mp-faq-home .faq-question i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: transparent;
  color: #55a0ff;
  font-style: normal;
  font-size: 22px;
  transition: 0.25s;
}
html[data-page="medprovas"] .mp-faq-home .faq-item.open .faq-question i {
  transform: rotate(45deg);
  border-color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--green));
  color: #fff;
}
html[data-page="medprovas"] .mp-faq-home .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
html[data-page="medprovas"] .mp-faq-home .faq-answer > div {
  overflow: hidden;
}
html[data-page="medprovas"] .mp-faq-home .faq-answer p {
  margin: 0 55px 0 61px;
  padding: 0;
  color: #a9beca;
  font-size: 14px;
  line-height: 1.7;
}
html[data-page="medprovas"] .mp-faq-home .faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
html[data-page="medprovas"] .mp-faq-home .faq-item.open .faq-answer p {
  padding-bottom: 25px;
}
@media (max-width: 980px) {
  html[data-page="medprovas"] .mp-faq-home .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  html[data-page="medprovas"] .mp-faq-home .faq-intro {
    position: relative;
    top: auto;
  }
}
@media (max-width: 600px) {
  html[data-page="medprovas"] .mp-faq-home .section-title-pill {
    font-size: 24px;
  }
  html[data-page="medprovas"] .mp-faq-home .faq-lead {
    font-size: 34px;
  }
  html[data-page="medprovas"] .mp-faq-home .faq-question {
    grid-template-columns: 34px 1fr 38px;
  }
  html[data-page="medprovas"] .mp-faq-home .faq-answer p {
    margin-left: 46px;
    margin-right: 12px;
  }
}

/* Estratégia incorporada ao box em relevo */
html[data-page="medprovas"] .mp-final {
  padding: 75px 0 105px;
  background: var(--surface-soft);
}
html[data-page="medprovas"] .mp-strategy-card {
  min-height: 0;
  padding: 50px;
  display: block;
  color: #fff;
  background: linear-gradient(135deg, #061c2c, #0a4552 62%, #0b735f);
}
html[data-page="medprovas"] .mp-strategy-card .mp-strategy-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
html[data-page="medprovas"] .mp-strategy-card .mp-strategy-copy h2 {
  margin: 0;
}
html[data-page="medprovas"] .mp-strategy-card .mp-strategy-copy p {
  margin: 18px auto 0;
  max-width: 760px;
  color: #c5d9e2;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}
html[data-page="medprovas"] .mp-strategy-card .mp-method-flow {
  margin-top: 42px;
}
html[data-page="medprovas"] .mp-strategy-card .mp-method-track {
  background: rgba(255, 255, 255, 0.18);
}
html[data-page="medprovas"] .mp-strategy-card .mp-method-step b {
  background: #fff;
  color: #2f80ed;
}
html[data-page="medprovas"] .mp-strategy-card .mp-method-step.active b,
html[data-page="medprovas"] .mp-strategy-card .mp-method-step:hover b,
html[data-page="medprovas"] .mp-strategy-card .mp-method-step:focus-visible b {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #00a189, #7ed957);
  box-shadow:
    0 0 0 8px rgba(0, 179, 136, 0.12),
    0 18px 38px rgba(0, 179, 136, 0.28);
}
html[data-page="medprovas"] .mp-strategy-card .mp-method-step h3 {
  color: #fff;
}
html[data-page="medprovas"] .mp-strategy-card .mp-method-step p {
  color: #c5d9e2;
}
html[data-page="medprovas"] .mp-strategy-card .mp-strategy-footer {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
html[data-page="medprovas"] .mp-strategy-card .mp-strategy-footer h3 {
  margin: 0;
  font-size: 22px;
}
html[data-page="medprovas"] .mp-strategy-card .mp-strategy-footer p {
  margin: 8px 0 0;
  color: #c5d9e2;
  font-size: 13px;
}
@media (max-width: 760px) {
  html[data-page="medprovas"] .mp-strategy-card {
    padding: 32px 22px;
  }
  html[data-page="medprovas"] .mp-strategy-card .mp-method-flow {
    margin-top: 30px;
  }
  html[data-page="medprovas"] .mp-strategy-card .mp-method-step {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
  }
  html[data-page="medprovas"] .mp-strategy-card .mp-method-step p {
    color: #d5e4ea;
  }
  html[data-page="medprovas"] .mp-strategy-card .mp-strategy-footer {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
 * Página(s): precos-e-planos
 * ============================================================ */
html[data-page="precos-e-planos"] {
  --blue: #2f80ed;
  --blue-deep: #082942;
  --green: #00b388;
  --ink: #102939;
  --muted: #667085;
  --surface: #fff;
  --surface-soft: #f6f9fc;
  --border: rgba(16, 41, 57, 0.11);
  --header: rgba(255, 255, 255, 0.9);
  --shadow: 0 22px 60px rgba(8, 41, 66, 0.14);
  --max: 1240px;
  color-scheme: light;
}
html[data-page="precos-e-planos"][data-theme="dark"] {
  --ink: #f7fafc;
  --muted: #aab8c4;
  --surface: #081a28;
  --surface-soft: #0c2334;
  --border: rgba(230, 241, 255, 0.1);
  --header: rgba(7, 24, 37, 0.91);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}
html[data-page="precos-e-planos"] * {
  box-sizing: border-box;
}
html[data-page="precos-e-planos"] {
  scroll-behavior: smooth;
}
html[data-page="precos-e-planos"] body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}
html[data-page="precos-e-planos"] a {
  color: inherit;
  text-decoration: none;
}
html[data-page="precos-e-planos"] button {
  font: inherit;
  color: inherit;
}















html[data-page="precos-e-planos"] .hero {
  position: relative;
  height: 700px;
  margin-top: 84px;
  overflow: hidden;
  background: #061d2f;
  color: #fff;
}
html[data-page="precos-e-planos"] .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition:
    opacity 0.8s,
    visibility 0.8s,
    transform 1.1s;
  background-image: var(--hero-desktop);
  background-position: center;
  background-size: cover;
}
html[data-page="precos-e-planos"] .hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}
html[data-page="precos-e-planos"] .hero-slide:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 22, 35, 0.99) 0%,
    rgba(5, 26, 42, 0.94) 35%,
    rgba(5, 26, 42, 0.48) 59%,
    rgba(5, 26, 42, 0.1) 100%
  );
  z-index: 1;
}
html[data-page="precos-e-planos"] .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000 10%, transparent 68%);
}
html[data-page="precos-e-planos"] .hero-container {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 30px;
}
html[data-page="precos-e-planos"] .hero-copy {
  max-width: 720px;
  animation: precos-e-planos-reveal 0.85s 0.15s both;
  text-shadow: 0 2px 22px rgba(2, 17, 28, 0.24);
}
html[data-page="precos-e-planos"] .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #b8d9f5;
  margin-bottom: 24px;
}
html[data-page="precos-e-planos"] .eyebrow span {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="precos-e-planos"] .hero-brand-logo {
  display: block;
  width: clamp(290px, 25vw, 380px);
  max-width: 80%;
  height: auto;
  margin: 0 0 28px;
  filter: brightness(0) invert(1);
  opacity: 0.98;
}
html[data-page="precos-e-planos"] .hero h1 {
  margin: 0;
  font-size: clamp(34px, 2.7vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  max-width: 650px;
}
html[data-page="precos-e-planos"] .hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #67a7ff, #35d5ac);
  -webkit-background-clip: text;
  color: transparent;
}
html[data-page="precos-e-planos"] .hero-copy > p {
  max-width: 630px;
  margin: 24px 0 30px;
  color: #d1deea;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}
html[data-page="precos-e-planos"] .hero-buttons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
html[data-page="precos-e-planos"] .button {
  min-height: 52px;
  padding: 0 23px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 760;
  transition: 0.22s;
}
html[data-page="precos-e-planos"] .button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #216cdc);
  box-shadow: 0 16px 35px rgba(47, 128, 237, 0.3);
}
html[data-page="precos-e-planos"] .button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(47, 128, 237, 0.42);
}
html[data-page="precos-e-planos"] .button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}
html[data-page="precos-e-planos"] .button.ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}
html[data-page="precos-e-planos"] .hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}
html[data-page="precos-e-planos"] .avatar-stack {
  display: flex;
}
html[data-page="precos-e-planos"] .avatar-stack span {
  width: 50px;
  height: 50px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #0b2e49;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 15px;
  font-weight: 600;
}
html[data-page="precos-e-planos"] .avatar-stack span:first-child {
  margin-left: 0;
}
html[data-page="precos-e-planos"] .hero-proof p {
  margin: 0;
  font-size: 20px;
  color: #b8cadd;
}
html[data-page="precos-e-planos"] .hero-proof strong {
  color: #fff;
}
html[data-page="precos-e-planos"] .hero-proof-clean {
  gap: 10px;
  flex-wrap: wrap;
  color: #c6d9e3;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.025em;
}
html[data-page="precos-e-planos"] .hero-proof-clean span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
html[data-page="precos-e-planos"]
  .hero-proof-clean
  span:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 11px rgba(44, 211, 171, 0.7);
}
html[data-page="precos-e-planos"] .hero-journey-line {
  margin-top: 22px;
  color: #8fe6d1;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
html[data-page="precos-e-planos"] .hero-visual-labels {
  position: absolute;
  z-index: 3;
  right: clamp(34px, 5vw, 96px);
  bottom: 52px;
  width: min(500px, 36vw);
  padding: 15px;
  border: 1px solid rgba(143, 230, 209, 0.2);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(6, 30, 48, 0.82),
    rgba(8, 75, 85, 0.7)
  );
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}
html[data-page="precos-e-planos"] .hero-visual-labels > strong {
  display: block;
  color: #8fe6d1;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
}
html[data-page="precos-e-planos"] .hero-visual-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
html[data-page="precos-e-planos"] .hero-visual-grid span {
  min-height: 36px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4fbff;
  font-size: 12px;
  font-weight: 750;
}
html[data-page="precos-e-planos"] .hero-visual-grid span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 3px;
  background: linear-gradient(135deg, #59a3ff, #42d6ad);
  box-shadow: 0 0 12px rgba(66, 214, 173, 0.48);
}
html[data-page="precos-e-planos"] .slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(5, 29, 47, 0.38);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.2s;
}
html[data-page="precos-e-planos"] .slider-arrow:hover {
  background: rgba(47, 128, 237, 0.78);
}
html[data-page="precos-e-planos"] .slider-arrow.prev {
  left: 22px;
  transform: rotate(180deg);
}
html[data-page="precos-e-planos"] .slider-arrow.next {
  right: 22px;
}
html[data-page="precos-e-planos"] .slider-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}
html[data-page="precos-e-planos"] .slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
html[data-page="precos-e-planos"] .slider-dot {
  width: 34px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  cursor: pointer;
}
html[data-page="precos-e-planos"] .slider-dot span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="precos-e-planos"] .slider-dot.active span {
  animation: precos-e-planos-progress 7.5s linear forwards;
}
html[data-page="precos-e-planos"] .hero.is-paused .slider-dot.active span,
html[data-page="precos-e-planos"]
  .hero.is-hover-paused
  .slider-dot.active
  span {
  animation-play-state: paused;
}
html[data-page="precos-e-planos"] .slider-pause {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(5, 29, 47, 0.62);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.2s ease;
}
html[data-page="precos-e-planos"] .slider-pause:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(47, 128, 237, 0.82);
  transform: scale(1.06);
}
html[data-page="precos-e-planos"] .slider-pause:focus-visible {
  outline: 3px solid rgba(126, 217, 87, 0.76);
  outline-offset: 3px;
}
html[data-page="precos-e-planos"] .slider-pause svg {
  width: 14px;
  height: 14px;
}
html[data-page="precos-e-planos"] .slider-pause .slider-play-icon {
  display: none;
}
html[data-page="precos-e-planos"] .slider-pause.is-paused .slider-pause-icon {
  display: none;
}
html[data-page="precos-e-planos"] .slider-pause.is-paused .slider-play-icon {
  display: block;
}
html[data-page="precos-e-planos"] .trust-strip {
  min-height: 104px;
  padding: 18px max(24px, calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 35px rgba(8, 41, 66, 0.05);
}
html[data-page="precos-e-planos"] .trust-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--border);
}
html[data-page="precos-e-planos"] .trust-strip > div:last-child {
  border-right: 0;
}
html[data-page="precos-e-planos"] .trust-strip svg {
  color: var(--blue);
}
html[data-page="precos-e-planos"] .trust-strip span {
  font-size: 20px;
  color: var(--muted);
}
html[data-page="precos-e-planos"] .trust-strip strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
}

/* Shared section system */
html[data-page="precos-e-planos"] .section {
  padding: 112px 0;
  position: relative;
}
html[data-page="precos-e-planos"] .section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}
html[data-page="precos-e-planos"] .section-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
html[data-page="precos-e-planos"] .section-kicker.light {
  color: #72c9ff;
}
html[data-page="precos-e-planos"] .section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(35px, 3.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html[data-page="precos-e-planos"] .section h2 em {
  font-style: normal;
  color: var(--green);
}
html[data-page="precos-e-planos"] .section-heading {
  margin-bottom: 52px;
}
html[data-page="precos-e-planos"] .section-heading.centered {
  text-align: center;
  margin: 0 auto 54px;
}
html[data-page="precos-e-planos"] .section-heading > p {
  max-width: 800px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
html[data-page="precos-e-planos"] .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
html[data-page="precos-e-planos"] .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* About and video */
html[data-page="precos-e-planos"] .about {
  overflow: hidden;
  background: var(--surface);
}
html[data-page="precos-e-planos"] .about:before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: -260px;
  top: 90px;
  border-radius: 50%;
  background: rgba(47, 128, 237, 0.07);
  filter: blur(3px);
}
html[data-page="precos-e-planos"] .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
html[data-page="precos-e-planos"] .about-copy > p {
  margin: 24px 0 34px;
  max-width: 590px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="precos-e-planos"] .benefit-list {
  display: grid;
  gap: 22px;
}
html[data-page="precos-e-planos"] .benefit-list article {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
html[data-page="precos-e-planos"] .benefit-list article > span {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 128, 237, 0.14);
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(47, 128, 237, 0.12),
    rgba(0, 179, 136, 0.08)
  );
  color: var(--blue);
}
html[data-page="precos-e-planos"] .benefit-list h3 {
  margin: 0 0 5px;
  font-size: 15px;
}
html[data-page="precos-e-planos"] .benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
html[data-page="precos-e-planos"] .video-showcase {
  position: relative;
  padding: 25px 0;
}
html[data-page="precos-e-planos"] .video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1.34;
  border: 0;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #07263e, #0e5873 58%, #00a47f);
  color: #fff;
  box-shadow: 0 35px 80px rgba(8, 41, 66, 0.24);
  cursor: pointer;
  text-align: left;
}
html[data-page="precos-e-planos"] .video-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(103, 210, 255, 0.35),
      transparent 25%
    ),
    linear-gradient(90deg, rgba(4, 25, 40, 0.4), transparent);
}
html[data-page="precos-e-planos"] .video-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  mask-image: linear-gradient(120deg, transparent 10%, #000 80%);
}
html[data-page="precos-e-planos"] .video-brand {
  position: absolute;
  left: 35px;
  top: 35px;
}
html[data-page="precos-e-planos"] .video-brand small {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #b9e4fb;
}
html[data-page="precos-e-planos"] .video-brand strong {
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
html[data-page="precos-e-planos"] .play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(15px);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 13px rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}
html[data-page="precos-e-planos"] .video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
  color: var(--blue);
}
html[data-page="precos-e-planos"] .video-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
html[data-page="precos-e-planos"] .video-caption span {
  display: flex;
  align-items: center;
  gap: 8px;
}
html[data-page="precos-e-planos"] .video-caption i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #41e2b8;
  box-shadow: 0 0 0 5px rgba(65, 226, 184, 0.16);
}
html[data-page="precos-e-planos"] .floating-badge {
  position: absolute;
  z-index: 2;
  min-width: 230px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--ink);
  animation: precos-e-planos-float 4s ease-in-out infinite;
}
html[data-page="precos-e-planos"] .floating-badge > svg {
  color: var(--green);
}
html[data-page="precos-e-planos"] .floating-badge strong,
html[data-page="precos-e-planos"] .floating-badge small {
  display: block;
}
html[data-page="precos-e-planos"] .floating-badge strong {
  font-size: 12px;
}
html[data-page="precos-e-planos"] .floating-badge span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}
html[data-page="precos-e-planos"] .badge-top {
  right: -28px;
  top: 0;
}
html[data-page="precos-e-planos"] .badge-bottom {
  left: -40px;
  bottom: 0;
  animation-delay: -2s;
}

/* Journey */
html[data-page="precos-e-planos"] .journey {
  background: var(--surface-soft);
  overflow: hidden;
}
html[data-page="precos-e-planos"] .journey:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(47, 128, 237, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 88%,
      rgba(0, 179, 136, 0.08),
      transparent 28%
    ),
    linear-gradient(
      90deg,
      transparent 49.9%,
      var(--border) 50%,
      transparent 50.1%
    );
  opacity: 0.8;
  pointer-events: none;
}
html[data-page="precos-e-planos"] .journey .section-shell {
  position: relative;
}
html[data-page="precos-e-planos"] .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
html[data-page="precos-e-planos"] .product-card {
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: linear-gradient(
    155deg,
    var(--surface),
    color-mix(in srgb, var(--surface) 93%, var(--blue) 7%)
  );
  box-shadow: 0 14px 35px rgba(8, 41, 66, 0.055);
  overflow: hidden;
  isolation: isolate;
  transition:
    opacity 0.75s,
    transform 0.75s,
    border-color 0.3s,
    box-shadow 0.3s;
}
html[data-page="precos-e-planos"] .product-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  right: -105px;
  top: -110px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(47, 128, 237, 0.12),
    rgba(0, 179, 136, 0.08)
  );
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}
html[data-page="precos-e-planos"] .product-card:after {
  content: "";
  position: absolute;
  inset: auto 30px 0;
  height: 3px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
html[data-page="precos-e-planos"] .product-card:hover {
  transform: translateY(-9px);
  border-color: rgba(47, 128, 237, 0.35);
  box-shadow: 0 26px 62px rgba(8, 41, 66, 0.14);
}
html[data-page="precos-e-planos"] .product-card:hover:before {
  transform: scale(1.25);
  opacity: 0.9;
}
html[data-page="precos-e-planos"] .product-card:hover:after {
  transform: scaleX(1);
}
html[data-page="precos-e-planos"] .product-card.featured {
  border-color: rgba(0, 179, 136, 0.42);
  box-shadow: 0 18px 45px rgba(0, 179, 136, 0.11);
}
html[data-page="precos-e-planos"] .product-icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 19px;
  background: linear-gradient(145deg, #2f80ed, #00ad87);
  color: #fff;
  box-shadow:
    0 15px 32px rgba(47, 128, 237, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
html[data-page="precos-e-planos"] .product-icon:after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(47, 128, 237, 0.14);
  border-radius: 23px;
}
html[data-page="precos-e-planos"] .product-icon svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 3px 7px rgba(2, 28, 44, 0.18));
}
html[data-page="precos-e-planos"] .product-card:hover .product-icon {
  transform: translateY(-3px) rotate(-2deg) scale(1.04);
  box-shadow:
    0 19px 38px rgba(0, 179, 136, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
html[data-page="precos-e-planos"] .product-card > small {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
html[data-page="precos-e-planos"] .product-card h3 {
  margin: 9px 0 13px;
  color: var(--ink);
  font-size: 26px;
  letter-spacing: -0.04em;
}
html[data-page="precos-e-planos"] .product-card > p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}
html[data-page="precos-e-planos"] .product-card > a {
  width: fit-content;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  transition:
    color 0.25s ease,
    gap 0.25s ease;
}
html[data-page="precos-e-planos"] .product-card > a svg {
  transition: transform 0.25s ease;
}
html[data-page="precos-e-planos"] .product-card > a:hover {
  color: var(--green);
  gap: 13px;
}
html[data-page="precos-e-planos"] .product-card > a:hover svg {
  transform: translateX(2px);
}

/* Resources methodology */
html[data-page="precos-e-planos"] .method-resources {
  overflow: hidden;
  background: #071f31;
  color: #fff;
}
html[data-page="precos-e-planos"] .method-resources:before,
html[data-page="precos-e-planos"] .study-flow:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.55), transparent);
}
html[data-page="precos-e-planos"] .method-resources:after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -270px;
  top: -140px;
  border-radius: 50%;
  background: rgba(0, 179, 136, 0.16);
  filter: blur(95px);
  pointer-events: none;
}
html[data-page="precos-e-planos"] .method-resources .section-shell,
html[data-page="precos-e-planos"] .study-flow .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="precos-e-planos"] .resources-heading {
  max-width: 1060px;
  margin: 0 auto 58px;
  text-align: center;
}
html[data-page="precos-e-planos"] .resources-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(90deg, #1497c8, #00b388 58%, #70d85b);
  box-shadow: 0 14px 34px rgba(0, 179, 136, 0.2);
  color: #fff;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 850;
  letter-spacing: -0.025em;
}
html[data-page="precos-e-planos"] .method-resources h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
}
html[data-page="precos-e-planos"] .resources-heading > p {
  max-width: 1020px;
  margin: 18px auto 0;
  color: #b9cad6;
  font-size: 14px;
  line-height: 1.72;
}
html[data-page="precos-e-planos"] .resources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 30px;
}
html[data-page="precos-e-planos"] .resource-item {
  position: relative;
  padding: 24px 24px 24px 92px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.045)
  );
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(12px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}
html[data-page="precos-e-planos"] .resource-item:hover {
  transform: translateY(-5px);
  border-color: rgba(83, 221, 178, 0.4);
  background: linear-gradient(
    145deg,
    rgba(47, 128, 237, 0.14),
    rgba(0, 179, 136, 0.09)
  );
}
html[data-page="precos-e-planos"] .resource-icon {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), var(--green));
  color: #fff;
  box-shadow:
    0 12px 28px rgba(0, 179, 136, 0.18),
    0 0 0 7px rgba(255, 255, 255, 0.035);
  transition: transform 0.35s ease;
}
html[data-page="precos-e-planos"] .resource-item:hover .resource-icon {
  transform: rotate(-5deg) scale(1.08);
}
html[data-page="precos-e-planos"] .resource-icon svg {
  width: 27px;
  height: 27px;
}
html[data-page="precos-e-planos"] .resource-item h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.025em;
}
html[data-page="precos-e-planos"] .resource-item p {
  margin: 0;
  color: #aebfcb;
  font-size: 12.5px;
  line-height: 1.62;
}

/* Horizontal study flow */
html[data-page="precos-e-planos"] .study-flow {
  overflow: hidden;
  background: linear-gradient(180deg, #0a2940 0%, #061b2b 100%);
  color: #fff;
}
html[data-page="precos-e-planos"] .study-flow:after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: -250px;
  bottom: -330px;
  border-radius: 50%;
  background: rgba(47, 128, 237, 0.17);
  filter: blur(95px);
  pointer-events: none;
}
html[data-page="precos-e-planos"] .study-flow .method-head {
  display: block;
  margin: 0 auto 64px;
  text-align: center;
}
html[data-page="precos-e-planos"] .study-flow .method-head .section-kicker {
  margin-bottom: 18px;
}
html[data-page="precos-e-planos"] .study-flow .method-head h2,
html[data-page="precos-e-planos"] .study-flow .method-head h3 {
  color: #fff;
}
html[data-page="precos-e-planos"] .study-flow .method-head > p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #b6c9d7;
  font-size: 15px;
  line-height: 1.75;
}
html[data-page="precos-e-planos"] .study-flow .method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
}
html[data-page="precos-e-planos"] .study-flow .trail {
  --trail-progress: 0%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 6px;
}
html[data-page="precos-e-planos"] .study-flow .trail-line,
html[data-page="precos-e-planos"] .study-flow .trail-line-fill {
  position: absolute;
  z-index: 0;
  left: calc(12.5% - 1px);
  top: 37px;
  height: 3px;
  border-radius: 99px;
}
html[data-page="precos-e-planos"] .study-flow .trail-line {
  right: calc(12.5% - 1px);
  background: rgba(255, 255, 255, 0.12);
}
html[data-page="precos-e-planos"] .study-flow .trail-line-fill {
  width: var(--trail-progress);
  max-width: calc(75% - 2px);
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 18px rgba(0, 179, 136, 0.28);
  transition: width 0.48s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="precos-e-planos"] .study-flow .trail article {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  padding: 0 8px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  outline: none;
}
html[data-page="precos-e-planos"] .study-flow .trail article > span {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #0b2b41;
  color: #91aabe;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
html[data-page="precos-e-planos"] .study-flow .trail article > span:before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid transparent;
  border-radius: inherit;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease;
}
html[data-page="precos-e-planos"] .study-flow .trail article.active > span,
html[data-page="precos-e-planos"] .study-flow .trail article:hover > span,
html[data-page="precos-e-planos"]
  .study-flow
  .trail
  article:focus-visible
  > span {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  transform: translateY(-5px) scale(1.08);
  box-shadow:
    0 0 0 8px rgba(47, 128, 237, 0.1),
    0 18px 36px rgba(0, 179, 136, 0.2);
}
html[data-page="precos-e-planos"]
  .study-flow
  .trail
  article.active
  > span:before,
html[data-page="precos-e-planos"]
  .study-flow
  .trail
  article:hover
  > span:before,
html[data-page="precos-e-planos"]
  .study-flow
  .trail
  article:focus-visible
  > span:before {
  border-color: rgba(91, 220, 182, 0.36);
  transform: scale(1.04);
}
html[data-page="precos-e-planos"] .study-flow .trail article > div {
  max-width: 250px;
  margin-top: 21px;
  padding: 18px 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
html[data-page="precos-e-planos"] .study-flow .trail article.active > div,
html[data-page="precos-e-planos"] .study-flow .trail article:hover > div {
  transform: translateY(-3px);
  border-color: rgba(0, 179, 136, 0.34);
}
html[data-page="precos-e-planos"] .study-flow .trail small {
  color: #5f99ba;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}
html[data-page="precos-e-planos"] .study-flow .trail h3 {
  margin: 6px 0 8px;
  color: #fff;
  font-size: 20px;
}
html[data-page="precos-e-planos"] .study-flow .trail p {
  margin: 0;
  color: #93aab9;
  font-size: 12px;
  line-height: 1.6;
}
html[data-page="precos-e-planos"] .study-flow .performance-card {
  width: min(980px, 100%);
  margin: auto;
  padding: 30px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}
html[data-page="precos-e-planos"] .study-flow .performance-top,
html[data-page="precos-e-planos"] .study-flow .ai-note {
  grid-column: 1 / -1;
}
html[data-page="precos-e-planos"] .performance-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
html[data-page="precos-e-planos"] .performance-top small {
  font-size: 8px;
  color: #7fb0cc;
  letter-spacing: 0.14em;
}
html[data-page="precos-e-planos"] .performance-top h3 {
  margin: 6px 0 0;
  color: #fff;
  font-size: 19px;
}
html[data-page="precos-e-planos"] .performance-top > span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  color: #92a8b7;
  font-size: 9px;
}
html[data-page="precos-e-planos"] .performance-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 10px 0;
}
html[data-page="precos-e-planos"] .score-ring {
  width: 154px;
  height: 154px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 78%, rgba(255, 255, 255, 0.08) 78%);
  position: relative;
}
html[data-page="precos-e-planos"] .score-ring:before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #15374c;
}
html[data-page="precos-e-planos"] .score-ring strong,
html[data-page="precos-e-planos"] .score-ring span {
  position: relative;
}
html[data-page="precos-e-planos"] .score-ring strong {
  color: #fff;
  font-size: 31px;
}
html[data-page="precos-e-planos"] .score-ring span {
  font-size: 9px;
  color: #92a8b7;
}
html[data-page="precos-e-planos"] .score-info p {
  margin: 0 0 10px;
  font-size: 10px;
  color: #9db1bf;
}
html[data-page="precos-e-planos"] .score-info p span {
  color: #42ddb7;
  font-size: 18px;
  font-weight: 800;
}
html[data-page="precos-e-planos"] .score-info small {
  color: #9db1bf;
}
html[data-page="precos-e-planos"] .discipline-bars {
  display: grid;
  align-content: center;
  gap: 13px;
}
html[data-page="precos-e-planos"] .discipline-bars > div {
  display: grid;
  grid-template-columns: 90px 1fr 32px;
  align-items: center;
  gap: 9px;
  color: #aabac5;
  font-size: 9px;
}
html[data-page="precos-e-planos"] .discipline-bars i {
  height: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}
html[data-page="precos-e-planos"] .discipline-bars b {
  display: block;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 1.3s;
}
html[data-page="precos-e-planos"] .discipline-bars strong {
  text-align: right;
  color: #fff;
  font-size: 9px;
}
html[data-page="precos-e-planos"] .ai-note {
  margin-top: 2px;
  padding: 14px 16px;
  display: flex;
  gap: 11px;
  align-items: center;
  border: 1px solid rgba(0, 179, 136, 0.2);
  border-radius: 13px;
  background: rgba(0, 179, 136, 0.08);
}
html[data-page="precos-e-planos"] .ai-note svg {
  color: #42ddb7;
}
html[data-page="precos-e-planos"] .ai-note p {
  margin: 0;
  color: #91aab9;
  font-size: 9px;
}
html[data-page="precos-e-planos"] .ai-note strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 10px;
}

/* Product showcases */
html[data-page="precos-e-planos"] .products-focus {
  padding-bottom: 125px;
  background: var(--surface);
}
html[data-page="precos-e-planos"] .focus-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 88px;
  align-items: center;
}
html[data-page="precos-e-planos"] .medprovas-grid {
  position: relative;
  z-index: 1;
  min-height: 610px;
  isolation: isolate;
}
html[data-page="precos-e-planos"] .medprovas-grid:before {
  content: "";
  position: absolute;
  z-index: -2;
  top: -82px;
  bottom: -82px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(88deg, #ffffff, #f5f5f5, #00b38812);
  pointer-events: none;
}
html[data-page="precos-e-planos"] .medprovas-device-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
  perspective: 1200px;
}
html[data-page="precos-e-planos"] .medprovas-device-stage:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 13%;
  right: 5%;
  bottom: 8%;
  height: 38px;
  border-radius: 50%;
  background: rgba(8, 41, 66, 0.23);
  filter: blur(22px);
  opacity: 0.34;
  transform: scaleX(0.92);
  pointer-events: none;
}
html[data-page="precos-e-planos"] .medprovas-devices {
  width: min(790px, 121%);
  max-width: none;
  height: auto;
  display: block;
  transform: translateX(2.5%) translateY(0) rotateX(0.01deg);
  transform-origin: 50% 65%;
  filter: drop-shadow(0 24px 24px rgba(8, 41, 66, 0.12))
    drop-shadow(0 42px 54px rgba(8, 41, 66, 0.1));
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  animation: precos-e-planos-medprovas-device-float 7s ease-in-out infinite;
  will-change: transform;
}
html[data-page="precos-e-planos"]
  .medprovas-device-stage:hover
  .medprovas-devices {
  transform: translateX(2.5%) translateY(-9px) scale(1.012);
  filter: drop-shadow(0 28px 28px rgba(8, 41, 66, 0.14))
    drop-shadow(0 48px 64px rgba(8, 41, 66, 0.12));
}
@keyframes precos-e-planos-medprovas-device-float {
  0%,
  100% {
    transform: translateX(2.5%) translateY(0) rotateX(0.01deg);
  }
  50% {
    transform: translateX(2.5%) translateY(-7px) rotateX(0.01deg);
  }
}
html[data-page="precos-e-planos"] .focus-grid + .focus-grid {
  margin-top: 140px;
}
html[data-page="precos-e-planos"] .focus-copy {
  max-width: 540px;
}
html[data-page="precos-e-planos"] .product-wordmark {
  display: inline-flex;
  margin-bottom: 24px;
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -0.04em;
}
html[data-page="precos-e-planos"] .product-wordmark.green {
  color: var(--green);
}
html[data-page="precos-e-planos"] .product-wordmark.blue {
  color: var(--blue);
}
html[data-page="precos-e-planos"] .focus-copy > p {
  margin: 22px 0 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
html[data-page="precos-e-planos"] .focus-copy ul {
  margin: 0 0 29px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}
html[data-page="precos-e-planos"] .focus-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}
html[data-page="precos-e-planos"] .focus-copy li svg {
  width: 23px;
  height: 23px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(0, 179, 136, 0.1);
  color: var(--green);
}
html[data-page="precos-e-planos"] .button.secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #008d71);
  box-shadow: 0 16px 35px rgba(0, 179, 136, 0.22);
}
html[data-page="precos-e-planos"] .question-mock,
html[data-page="precos-e-planos"] .stream-mock {
  border: 1px solid var(--border);
  border-radius: 25px;
  background: var(--surface);
  box-shadow: 0 35px 90px rgba(8, 41, 66, 0.16);
  overflow: hidden;
}
html[data-page="precos-e-planos"] .mock-top {
  height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border);
}
html[data-page="precos-e-planos"] .mock-top > span {
  display: flex;
  gap: 5px;
}
html[data-page="precos-e-planos"] .mock-top > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d5dfe6;
}
html[data-page="precos-e-planos"] .mock-top small,
html[data-page="precos-e-planos"] .mock-top b {
  font-size: 8px;
  color: var(--muted);
}
html[data-page="precos-e-planos"] .mock-top b {
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(47, 128, 237, 0.1);
  color: var(--blue);
}
html[data-page="precos-e-planos"] .mock-layout {
  display: grid;
  grid-template-columns: 125px 1fr;
  min-height: 430px;
}
html[data-page="precos-e-planos"] .mock-layout aside {
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #082942;
  color: #7894a8;
}
html[data-page="precos-e-planos"] .mini-logo {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}
html[data-page="precos-e-planos"] .mini-logo svg {
  width: 21px;
  height: 21px;
  padding: 4px;
  border-radius: 50%;
  background: var(--green);
}
html[data-page="precos-e-planos"] .mock-layout aside > span {
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 8px;
}
html[data-page="precos-e-planos"] .mock-layout aside > span.on {
  background: rgba(47, 128, 237, 0.2);
  color: #fff;
}
html[data-page="precos-e-planos"] .question-content {
  padding: 30px;
}
html[data-page="precos-e-planos"] .question-content > small {
  color: var(--blue);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
html[data-page="precos-e-planos"] .question-content h3 {
  margin: 11px 0 22px;
  font-size: 17px;
  line-height: 1.45;
}
html[data-page="precos-e-planos"] .answer {
  min-height: 48px;
  margin-bottom: 9px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  font-size: 9px;
}
html[data-page="precos-e-planos"] .answer b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--surface-soft);
  color: var(--ink);
}
html[data-page="precos-e-planos"] .answer.correct {
  border-color: rgba(0, 179, 136, 0.45);
  background: rgba(0, 179, 136, 0.07);
  color: var(--ink);
}
html[data-page="precos-e-planos"] .answer.correct b {
  background: var(--green);
  color: #fff;
}
html[data-page="precos-e-planos"] .answer.correct svg {
  margin-left: auto;
  color: var(--green);
}
html[data-page="precos-e-planos"] .question-footer {
  margin-top: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 8px;
}
html[data-page="precos-e-planos"] .question-footer button {
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 8px;
}
html[data-page="precos-e-planos"] .medflix-grid {
  grid-template-columns: 1.12fr 0.88fr;
}
html[data-page="precos-e-planos"] .stream-mock {
  padding: 0;
  background: #071c2c;
  color: #fff;
}
html[data-page="precos-e-planos"] .stream-head {
  height: 58px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 17, 27, 0.9);
}
html[data-page="precos-e-planos"] .stream-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 850;
}
html[data-page="precos-e-planos"] .stream-logo svg {
  padding: 4px;
  border-radius: 6px;
  background: var(--blue);
}
html[data-page="precos-e-planos"] .stream-head > div {
  display: flex;
  gap: 12px;
}
html[data-page="precos-e-planos"] .stream-head i {
  display: block;
  width: 38px;
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
}
html[data-page="precos-e-planos"] .stream-feature {
  position: relative;
  height: 245px;
  padding: 42px 35px;
  background:
    radial-gradient(circle at 80% 40%, rgba(0, 179, 136, 0.5), transparent 28%),
    linear-gradient(110deg, #09243a, #0b5770);
}
html[data-page="precos-e-planos"] .stream-feature:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: 45px;
  top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(0, 179, 136, 0.2);
}
html[data-page="precos-e-planos"] .stream-feature > span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: #8ed7ef;
}
html[data-page="precos-e-planos"] .stream-feature h3 {
  margin: 10px 0 20px;
  font-size: 28px;
  line-height: 1.02;
}
html[data-page="precos-e-planos"] .stream-feature button {
  padding: 9px 13px;
  display: flex;
  gap: 7px;
  align-items: center;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #082942;
  font-size: 9px;
  font-weight: 750;
}
html[data-page="precos-e-planos"] .stream-mock > small {
  display: block;
  margin: 20px 22px 12px;
  color: #8ea5b6;
}
html[data-page="precos-e-planos"] .thumb-row {
  padding: 0 22px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
html[data-page="precos-e-planos"] .thumb-row > div {
  position: relative;
  height: 90px;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(145deg, #113b58, #0c6c66);
  overflow: hidden;
}
html[data-page="precos-e-planos"] .thumb-row > div > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}
html[data-page="precos-e-planos"] .thumb-row b {
  position: absolute;
  left: 12px;
  bottom: 15px;
  font-size: 9px;
}
html[data-page="precos-e-planos"] .thumb-row i {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background: var(--green);
}

/* Numbers, testimonials, teachers, blog */
html[data-page="precos-e-planos"] .numbers {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background: linear-gradient(110deg, #082942, #0d4962 55%, #008970);
  color: #fff;
}
html[data-page="precos-e-planos"] .numbers:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 45px 45px;
}
html[data-page="precos-e-planos"] .numbers-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="precos-e-planos"] .numbers article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}
html[data-page="precos-e-planos"] .numbers article:last-child {
  border: 0;
}
html[data-page="precos-e-planos"] .numbers strong {
  min-width: 102px;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, #fff, #68e3c0);
  -webkit-background-clip: text;
  color: transparent;
}
html[data-page="precos-e-planos"] .numbers span {
  ccolor: #ffffff;
  font-size: 18px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
html[data-page="precos-e-planos"] .testimonials {
  background: var(--surface-soft);
}
html[data-page="precos-e-planos"] .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
html[data-page="precos-e-planos"] .testimonial-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 23px;
  background: var(--surface);
  box-shadow: 0 15px 40px rgba(8, 41, 66, 0.055);
}
html[data-page="precos-e-planos"] .quote-icon {
  position: absolute;
  right: 25px;
  top: 22px;
  color: rgba(47, 128, 237, 0.14);
}
html[data-page="precos-e-planos"] .quote-icon svg {
  width: 50px;
  height: 50px;
}
html[data-page="precos-e-planos"] .stars {
  margin-bottom: 20px;
  color: #e8b747;
  font-size: 12px;
  letter-spacing: 3px;
}
html[data-page="precos-e-planos"] .testimonial-card > p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.8;
}
html[data-page="precos-e-planos"] .testimonial-face {
  position: absolute;
  right: 24px;
  top: 22px;
  width: 86px;
  height: 86px;
  margin-left: 10px;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(8, 41, 66, 0.2);
}
html[data-page="precos-e-planos"] .testimonial-card.has-face .stars {
  padding-right: 106px;
}
html[data-page="precos-e-planos"] .testimonial-card.has-face > p {
  display: -webkit-box;
  max-height: none;
  padding-right: 106px;
  overflow: hidden;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
html[data-page="precos-e-planos"] .testimonial-card.has-face {
  cursor: pointer;
}
html[data-page="precos-e-planos"] .testimonial-card.has-face:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 72%, transparent);
  outline-offset: 4px;
}
html[data-page="precos-e-planos"] .testimonial-person > span {
  min-width: 0;
}
html[data-page="precos-e-planos"] .testimonial-person small {
  line-height: 1.45;
}
html[data-page="precos-e-planos"] .testimonial-card > div:last-child {
  margin-top: auto;
  padding-top: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
}
html[data-page="precos-e-planos"] .student-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-size: 9px;
  font-weight: 850;
}
html[data-page="precos-e-planos"] .testimonial-card strong,
html[data-page="precos-e-planos"] .testimonial-card small {
  display: block;
}
html[data-page="precos-e-planos"] .testimonial-card strong {
  font-size: 11px;
}
html[data-page="precos-e-planos"] .testimonial-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}
html[data-page="precos-e-planos"] .teachers {
  background: var(--surface);
}
html[data-page="precos-e-planos"] .teacher-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
html[data-page="precos-e-planos"] .teacher-card {
  padding: 14px 14px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  transition:
    opacity 0.75s,
    transform 0.75s,
    box-shadow 0.25s;
}
html[data-page="precos-e-planos"] .teacher-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(8, 41, 66, 0.11);
}
html[data-page="precos-e-planos"] .teacher-portrait {
  position: relative;
  height: 205px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(150deg, #dcebfa, #9bd9d1);
}
html[data-page="precos-e-planos"] .teacher-portrait:before {
  content: "";
  position: absolute;
  width: 125px;
  height: 125px;
  bottom: -45px;
  border-radius: 50% 50% 20px 20px;
  background: linear-gradient(145deg, #123f5a, #2f80ed);
}
html[data-page="precos-e-planos"] .teacher-portrait span {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: linear-gradient(135deg, #082942, #00a582);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(8, 41, 66, 0.23);
}
html[data-page="precos-e-planos"] .teacher-portrait i {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.7) 1px,
    transparent 1px
  );
  background-size: 16px 16px;
  opacity: 0.35;
}
html[data-page="precos-e-planos"] .portrait-1 {
  background: linear-gradient(150deg, #d9f3ee, #a7d5f7);
}
html[data-page="precos-e-planos"] .portrait-2 {
  background: linear-gradient(150deg, #e6efff, #b0ebdc);
}
html[data-page="precos-e-planos"] .portrait-3 {
  background: linear-gradient(150deg, #dff6f1, #bad8f3);
}
html[data-page="precos-e-planos"] .portrait-4 {
  background: linear-gradient(150deg, #e5efff, #bce8e1);
}
html[data-page="precos-e-planos"] .teacher-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
}
html[data-page="precos-e-planos"] .teacher-card p {
  min-height: 55px;
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}
html[data-page="precos-e-planos"] .teacher-card a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 750;
}
html[data-page="precos-e-planos"] .blog {
  background: var(--surface-soft);
}
html[data-page="precos-e-planos"] .blog-head {
  margin-bottom: 42px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
html[data-page="precos-e-planos"] .blog-head > div {
  max-width: 750px;
}
html[data-page="precos-e-planos"] .blog-head > a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
}
html[data-page="precos-e-planos"] .post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
html[data-page="precos-e-planos"] .post-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(8, 41, 66, 0.05);
  transition:
    opacity 0.75s,
    transform 0.75s,
    box-shadow 0.25s;
}
html[data-page="precos-e-planos"] .post-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 23px 55px rgba(8, 41, 66, 0.12);
}
html[data-page="precos-e-planos"] .post-cover {
  position: relative;
  height: 160px;
  padding: 0;
  overflow: hidden;
  background: #082942;
}
html[data-page="precos-e-planos"] .post-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}
html[data-page="precos-e-planos"] .post-card:hover .post-cover img {
  transform: scale(1.05);
}
html[data-page="precos-e-planos"] .post-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
}
html[data-page="precos-e-planos"] .cover-1 {
  background: linear-gradient(135deg, #0b3556, #008e79);
}
html[data-page="precos-e-planos"] .cover-2 {
  background: linear-gradient(135deg, #123f5a, #2f80ed);
}
html[data-page="precos-e-planos"] .post-body {
  padding: 18px 20px 22px;
}
html[data-page="precos-e-planos"] .post-body small {
  color: var(--muted);
  font-size: 9px;
}
html[data-page="precos-e-planos"] .post-body h3 {
  min-height: 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.42;
}
html[data-page="precos-e-planos"] .post-body a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 760;
}

/* CTA, FAQ, footer */
html[data-page="precos-e-planos"] .final-cta {
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(115deg, #082942, #0c5370 55%, #008b70);
  color: #fff;
}
html[data-page="precos-e-planos"] .final-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.16) 1px,
    transparent 1px
  );
  background-size: 23px 23px;
  mask-image: linear-gradient(90deg, transparent, #000);
}
html[data-page="precos-e-planos"] .cta-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  right: 5%;
  top: -170px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025);
}
html[data-page="precos-e-planos"] .cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
html[data-page="precos-e-planos"] .cta-content > div:first-child {
  max-width: 780px;
}
html[data-page="precos-e-planos"] .final-cta h2 {
  color: #fff;
}
html[data-page="precos-e-planos"] .final-cta h2 em {
  color: #60e1bd;
}
html[data-page="precos-e-planos"] .final-cta p {
  max-width: 670px;
  margin: 18px 0 0;
  color: #bdd3df;
  font-size: 14px;
  line-height: 1.75;
}
html[data-page="precos-e-planos"] .cta-content > div:last-child {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
html[data-page="precos-e-planos"] .button.white {
  background: #fff;
  color: #08304a;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}
html[data-page="precos-e-planos"] .button.cta-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
}
html[data-page="precos-e-planos"] .faq {
  background: var(--surface);
}
html[data-page="precos-e-planos"] .faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 90px;
  align-items: start;
}
html[data-page="precos-e-planos"] .faq-intro {
  position: sticky;
}
html[data-page="precos-e-planos"] .faq-intro > p {
  margin: 22px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
html[data-page="precos-e-planos"] .faq-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
}
html[data-page="precos-e-planos"] .faq-list {
  border-top: 1px solid var(--border);
}
html[data-page="precos-e-planos"] .faq-list article {
  border-bottom: 1px solid var(--border);
}
html[data-page="precos-e-planos"] .faq-list button {
  width: 100%;
  min-height: 80px;
  padding: 0 4px;
  display: grid;
  grid-template-columns: 45px 1fr 42px;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
html[data-page="precos-e-planos"] .faq-list button > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
html[data-page="precos-e-planos"] .faq-list button > strong {
  font-size: 16px;
}
html[data-page="precos-e-planos"] .faq-list button > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--blue);
  transition: 0.25s;
}
html[data-page="precos-e-planos"] .faq-list article.open button > i {
  background: var(--blue);
  color: #fff;
  transform: rotate(90deg);
}
html[data-page="precos-e-planos"] .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s;
}
html[data-page="precos-e-planos"] .faq-answer p {
  overflow: hidden;
  margin: 0 55px 0 61px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
html[data-page="precos-e-planos"] .faq-list article.open .faq-answer {
  grid-template-rows: 1fr;
}
html[data-page="precos-e-planos"] .faq-list article.open .faq-answer p {
  padding-bottom: 25px;
}
html[data-page="precos-e-planos"] footer {
  background: #061b2a;
  color: #fff;
}
html[data-page="precos-e-planos"] .footer-main {
  padding: 75px 0 60px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}
html[data-page="precos-e-planos"] .footer-brand img {
  width: 235px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
html[data-page="precos-e-planos"] .footer-brand > p {
  margin: 25px 0;
  color: #90a8b8;
  font-size: 15px;
  line-height: 1.75;
}
html[data-page="precos-e-planos"] .socials {
  display: flex;
  gap: 9px;
}
html[data-page="precos-e-planos"] .socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  color: #9bb2c1;
  transition: 0.2s;
}
html[data-page="precos-e-planos"] .socials a:hover {
  background: var(--blue);
  color: #fff;
}
html[data-page="precos-e-planos"] .footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
html[data-page="precos-e-planos"] .footer-links h3 {
  margin: 0 0 21px;
  font-size: 15px;
}
html[data-page="precos-e-planos"] .footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
html[data-page="precos-e-planos"] .footer-links a,
html[data-page="precos-e-planos"] .footer-links span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9db2bf;
  font-size: 13px;
}
html[data-page="precos-e-planos"] .footer-links a:hover {
  color: #fff;
}
html[data-page="precos-e-planos"] .footer-links small {
  margin-top: 8px;
  color: #7892a1;
  font-size: 11px;
}
html[data-page="precos-e-planos"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
html[data-page="precos-e-planos"] .footer-bottom > div {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7894a3;
  font-size: 11px;
}
html[data-page="precos-e-planos"] .floating-contact {
  position: fixed;
  z-index: 80;
  right: 23px;
  bottom: 23px;
  height: 48px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00b388, #008e70);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  box-shadow: 0 15px 35px rgba(0, 179, 136, 0.3);
}
html[data-page="precos-e-planos"] .video-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 28px;
  display: grid;
  place-items: center;
  background: rgba(2, 13, 22, 0.86);
  backdrop-filter: blur(12px);
  animation: precos-e-planos-fadeIn 0.25s;
}
html[data-page="precos-e-planos"] .video-modal-box {
  position: relative;
  width: min(1050px, 100%);
}
html[data-page="precos-e-planos"] .video-modal-box > button {
  position: absolute;
  z-index: 2;
  right: -12px;
  top: -52px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}
html[data-page="precos-e-planos"] .video-frame {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45);
}
html[data-page="precos-e-planos"] .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

















@keyframes precos-e-planos-float {
  50% {
    transform: translateY(-10px);
  }
}
@keyframes precos-e-planos-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes precos-e-planos-reveal {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes precos-e-planos-progress {
  to {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  
  
  
  
}
@media (max-width: 900px) {
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  html[data-page="precos-e-planos"] .hero {
    margin-top: 74px;
    height: 700px;
  }
  html[data-page="precos-e-planos"] .hero-slide {
    background-image: var(--hero-desktop);
    background-position: 62% center;
  }
  html[data-page="precos-e-planos"] .hero-slide:before {
    background: linear-gradient(
      90deg,
      rgba(5, 22, 35, 0.98),
      rgba(5, 26, 42, 0.88) 56%,
      rgba(5, 26, 42, 0.22)
    );
  }
  html[data-page="precos-e-planos"] .eyebrow {
    font-size: 22px;
    font-weight: 600;
  }
  html[data-page="precos-e-planos"] .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 20px;
  }
  html[data-page="precos-e-planos"] .trust-strip > div {
    min-height: 70px;
  }
  html[data-page="precos-e-planos"] .trust-strip > div:nth-child(2) {
    border-right: 0;
  }
  html[data-page="precos-e-planos"] .trust-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
}
@media (max-width: 600px) {
  
  
  
  html[data-page="precos-e-planos"] .hero {
    height: 900px;
  }
  html[data-page="precos-e-planos"] .hero-container {
    width: calc(100% - 40px);
    align-items: flex-start;
    padding-top: 52px;
    padding-bottom: 155px;
  }
  html[data-page="precos-e-planos"] .hero-slide {
    background-image: var(--hero-mobile, var(--hero-desktop));
    background-position: center bottom;
    background-size: auto var(--hero-mobile-size, 78%);
    background-repeat: no-repeat;
  }
  html[data-page="precos-e-planos"] .hero-slide:before {
    background: linear-gradient(
      180deg,
      rgba(5, 22, 35, 0.99) 0%,
      rgba(5, 26, 42, 0.95) 51%,
      rgba(5, 26, 42, 0.5) 72%,
      rgba(5, 26, 42, 0.26) 100%
    );
  }
  html[data-page="precos-e-planos"] .hero h1 {
    font-size: 29px;
    line-height: 1.04;
  }
  html[data-page="precos-e-planos"] .hero-copy > p {
    font-size: 14px;
    line-height: 1.55;
    margin: 17px 0 21px;
  }
  html[data-page="precos-e-planos"] .eyebrow {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
  }
  html[data-page="precos-e-planos"] .button {
    min-height: 49px;
    padding: 0 18px;
    font-size: 13px;
  }
  html[data-page="precos-e-planos"] .hero-proof {
    margin-top: 20px;
  }
  html[data-page="precos-e-planos"] .hero-proof-clean {
    gap: 7px;
    font-size: 11px;
    line-height: 1.35;
  }
  html[data-page="precos-e-planos"] .hero-proof-clean span {
    gap: 7px;
  }
  html[data-page="precos-e-planos"] .hero-journey-line {
    margin-top: 17px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  html[data-page="precos-e-planos"] .hero-visual-labels {
    left: 16px;
    right: 16px;
    bottom: 46px;
    width: auto;
    padding: 10px;
    border-radius: 14px;
  }
  html[data-page="precos-e-planos"] .hero-visual-labels > strong {
    font-size: 10px;
    letter-spacing: 0.09em;
  }
  html[data-page="precos-e-planos"] .hero-visual-grid {
    margin-top: 7px;
    gap: 6px;
  }
  html[data-page="precos-e-planos"] .hero-visual-grid span {
    min-height: 34px;
    padding: 5px 7px;
    gap: 6px;
    border-radius: 9px;
    font-size: 11px;
  }
  html[data-page="precos-e-planos"] .hero-visual-grid span::before {
    width: 7px;
    height: 7px;
  }
  html[data-page="precos-e-planos"] .slider-arrow {
    display: none;
  }
  html[data-page="precos-e-planos"] .slider-controls {
    bottom: 17px;
  }
  html[data-page="precos-e-planos"] .trust-strip {
    grid-template-columns: 1fr 1fr;
    padding: 10px 12px;
  }
  html[data-page="precos-e-planos"] .trust-strip > div {
    justify-content: flex-start;
    padding: 0 8px;
    gap: 9px;
  }
  html[data-page="precos-e-planos"] .trust-strip svg {
    width: 19px;
  }
  html[data-page="precos-e-planos"] .trust-strip span {
    font-size: 10px;
  }
  html[data-page="precos-e-planos"] .trust-strip strong {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html[data-page="precos-e-planos"] * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  html[data-page="precos-e-planos"] .section {
    padding: 95px 0;
  }
  html[data-page="precos-e-planos"] .about-grid {
    gap: 55px;
  }
  html[data-page="precos-e-planos"] .floating-badge {
    min-width: 205px;
  }
  html[data-page="precos-e-planos"] .badge-top {
    right: -10px;
  }
  html[data-page="precos-e-planos"] .badge-bottom {
    left: -15px;
  }
  html[data-page="precos-e-planos"] .method-grid {
    gap: 55px;
  }
  html[data-page="precos-e-planos"] .focus-grid {
    gap: 55px;
  }
  html[data-page="precos-e-planos"] .medprovas-grid {
    min-height: 560px;
  }
  html[data-page="precos-e-planos"] .medprovas-device-stage {
    min-height: 500px;
  }
  html[data-page="precos-e-planos"] .medprovas-devices {
    width: min(720px, 118%);
  }
  html[data-page="precos-e-planos"] .teacher-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  html[data-page="precos-e-planos"] .teacher-card:nth-child(4),
  html[data-page="precos-e-planos"] .teacher-card:nth-child(5) {
    transform: translateX(50%);
  }
  html[data-page="precos-e-planos"] .footer-main {
    gap: 50px;
  }
  html[data-page="precos-e-planos"] .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  html[data-page="precos-e-planos"] .section-shell {
    width: min(var(--max), calc(100% - 36px));
  }
  html[data-page="precos-e-planos"] .section {
    padding: 82px 0;
  }
  html[data-page="precos-e-planos"] .about-grid,
  html[data-page="precos-e-planos"] .method-grid,
  html[data-page="precos-e-planos"] .focus-grid,
  html[data-page="precos-e-planos"] .medflix-grid,
  html[data-page="precos-e-planos"] .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  html[data-page="precos-e-planos"] .about-copy {
    max-width: 680px;
  }
  html[data-page="precos-e-planos"] .video-showcase {
    width: min(650px, 100%);
    margin: auto;
  }
  html[data-page="precos-e-planos"] .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="precos-e-planos"] .method-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  html[data-page="precos-e-planos"] .performance-card {
    width: min(620px, 100%);
    margin: auto;
  }
  html[data-page="precos-e-planos"] .focus-copy {
    max-width: 650px;
  }
  html[data-page="precos-e-planos"] .medflix-grid .stream-mock {
    order: 2;
  }
  html[data-page="precos-e-planos"] .medflix-grid .focus-copy {
    order: 1;
  }
  html[data-page="precos-e-planos"] .question-mock,
  html[data-page="precos-e-planos"] .stream-mock {
    width: min(700px, 100%);
    margin: auto;
  }
  html[data-page="precos-e-planos"] .medprovas-grid {
    min-height: auto;
  }
  html[data-page="precos-e-planos"] .medprovas-grid:before {
    top: -66px;
    bottom: -66px;
  }
  html[data-page="precos-e-planos"] .medprovas-device-stage {
    width: min(780px, 100%);
    min-height: auto;
    margin: 0 auto;
  }
  html[data-page="precos-e-planos"] .medprovas-devices {
    width: 100%;
    max-width: 760px;
    transform: none;
  }
  html[data-page="precos-e-planos"]
    .medprovas-device-stage:hover
    .medprovas-devices {
    transform: translateY(-7px) scale(1.008);
  }
  @keyframes precos-e-planos-medprovas-device-float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }
  html[data-page="precos-e-planos"] .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 0;
  }
  html[data-page="precos-e-planos"] .numbers article:nth-child(2) {
    border: 0;
  }
  html[data-page="precos-e-planos"] .testimonial-grid,
  html[data-page="precos-e-planos"] .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="precos-e-planos"] .testimonial-card:last-child,
  html[data-page="precos-e-planos"] .post-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 11px);
    margin: auto;
  }
  html[data-page="precos-e-planos"] .teacher-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  html[data-page="precos-e-planos"] .cta-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }
  html[data-page="precos-e-planos"] .cta-content > div:last-child {
    flex-direction: row;
  }
  html[data-page="precos-e-planos"] .faq-intro {
    position: relative;
    top: 0;
  }
  html[data-page="precos-e-planos"] .footer-main {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .footer-brand {
    max-width: 420px;
  }
}
@media (max-width: 650px) {
  html[data-page="precos-e-planos"] .section {
    padding: 68px 0;
  }
  html[data-page="precos-e-planos"] .section-shell {
    width: calc(100% - 30px);
  }
  html[data-page="precos-e-planos"] .section h2 {
    font-size: 34px;
  }
  html[data-page="precos-e-planos"] .section-heading {
    margin-bottom: 36px;
  }
  html[data-page="precos-e-planos"] .section-heading > p {
    font-size: 14px;
  }
  html[data-page="precos-e-planos"] .about-grid {
    gap: 42px;
  }
  html[data-page="precos-e-planos"] .about-copy > p {
    font-size: 14px;
  }
  html[data-page="precos-e-planos"] .benefit-list article {
    gap: 12px;
  }
  html[data-page="precos-e-planos"] .benefit-list article > span {
    width: 42px;
    height: 42px;
  }
  html[data-page="precos-e-planos"] .video-showcase {
    padding: 10px 0 35px;
  }
  html[data-page="precos-e-planos"] .video-card {
    aspect-ratio: 1.05;
    border-radius: 22px;
  }
  html[data-page="precos-e-planos"] .video-brand {
    left: 24px;
    top: 26px;
  }
  html[data-page="precos-e-planos"] .video-brand strong {
    font-size: 22px;
  }
  html[data-page="precos-e-planos"] .play-button {
    width: 70px;
    height: 70px;
  }
  html[data-page="precos-e-planos"] .video-caption {
    left: 20px;
    right: 20px;
  }
  html[data-page="precos-e-planos"] .floating-badge {
    position: relative;
    min-width: 0;
    margin-top: 10px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    animation: none;
  }
  html[data-page="precos-e-planos"] .product-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .product-card {
    min-height: 330px;
  }
  html[data-page="precos-e-planos"] .method-head {
    margin-bottom: 45px;
  }
  html[data-page="precos-e-planos"] .trail article {
    grid-template-columns: 46px 1fr;
  }
  html[data-page="precos-e-planos"] .trail article > span {
    width: 46px;
    height: 46px;
  }
  html[data-page="precos-e-planos"] .trail-line {
    left: 22px;
  }
  html[data-page="precos-e-planos"] .performance-card {
    padding: 20px;
  }
  html[data-page="precos-e-planos"] .performance-top > span {
    display: none;
  }
  html[data-page="precos-e-planos"] .performance-body {
    gap: 20px;
  }
  html[data-page="precos-e-planos"] .score-ring {
    width: 130px;
    height: 130px;
  }
  html[data-page="precos-e-planos"] .discipline-bars > div {
    grid-template-columns: 77px 1fr 28px;
  }
  html[data-page="precos-e-planos"] .focus-grid + .focus-grid {
    margin-top: 95px;
  }
  html[data-page="precos-e-planos"] .medprovas-grid:before {
    top: -52px;
    bottom: -52px;
  }
  html[data-page="precos-e-planos"] .medprovas-device-stage:after {
    left: 12%;
    right: 7%;
    bottom: 7%;
    height: 24px;
    filter: blur(16px);
  }
  html[data-page="precos-e-planos"] .medprovas-devices {
    width: 112%;
    max-width: none;
    margin-left: -6%;
  }
  html[data-page="precos-e-planos"] .mock-layout {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .mock-layout aside {
    display: none;
  }
  html[data-page="precos-e-planos"] .question-content {
    padding: 22px 17px;
  }
  html[data-page="precos-e-planos"] .question-footer > span {
    display: none;
  }
  html[data-page="precos-e-planos"] .question-footer {
    justify-content: flex-end;
  }
  html[data-page="precos-e-planos"] .stream-head > div {
    display: none;
  }
  html[data-page="precos-e-planos"] .stream-feature {
    height: 225px;
    padding: 34px 24px;
  }
  html[data-page="precos-e-planos"] .stream-feature:after {
    width: 130px;
    height: 130px;
    right: 22px;
    top: 45px;
  }
  html[data-page="precos-e-planos"] .thumb-row {
    padding: 0 14px 18px;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }
  html[data-page="precos-e-planos"] .thumb-row > div {
    height: 74px;
    padding: 9px;
  }
  html[data-page="precos-e-planos"] .numbers {
    padding: 52px 0;
  }
  html[data-page="precos-e-planos"] .numbers-grid {
    gap: 28px 0;
  }
  html[data-page="precos-e-planos"] .numbers article {
    gap: 8px;
    flex-direction: column;
    text-align: center;
  }
  html[data-page="precos-e-planos"] .numbers strong {
    min-width: 0;
    font-size: 38px;
  }
  html[data-page="precos-e-planos"] .numbers span {
    font-size: 9px;
  }
  html[data-page="precos-e-planos"] .testimonial-grid,
  html[data-page="precos-e-planos"] .post-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .testimonial-card:last-child,
  html[data-page="precos-e-planos"] .post-card:last-child {
    grid-column: auto;
    width: 100%;
  }
  html[data-page="precos-e-planos"] .testimonial-card {
    min-height: 285px;
  }
  html[data-page="precos-e-planos"] .teacher-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="precos-e-planos"] .teacher-card:nth-child(4),
  html[data-page="precos-e-planos"] .teacher-card:nth-child(5) {
    transform: none;
  }
  html[data-page="precos-e-planos"] .teacher-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 8px);
    margin: auto;
  }
  html[data-page="precos-e-planos"] .teacher-portrait {
    height: 170px;
  }
  html[data-page="precos-e-planos"] .blog-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  html[data-page="precos-e-planos"] .post-cover {
    height: 180px;
  }
  html[data-page="precos-e-planos"] .cta-content > div:last-child {
    width: 100%;
    flex-direction: column;
  }
  html[data-page="precos-e-planos"] .cta-content .button {
    width: 100%;
  }
  html[data-page="precos-e-planos"] .faq-list button {
    grid-template-columns: 28px 1fr 36px;
    min-height: 72px;
  }
  html[data-page="precos-e-planos"] .faq-list button > strong {
    font-size: 14px;
  }
  html[data-page="precos-e-planos"] .faq-answer p {
    margin: 0 10px 0 40px;
  }
  html[data-page="precos-e-planos"] .footer-main {
    padding: 55px 0 45px;
  }
  html[data-page="precos-e-planos"] .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }
  html[data-page="precos-e-planos"] .footer-bottom > div {
    height: auto;
    min-height: 75px;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  html[data-page="precos-e-planos"] .floating-contact {
    width: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  html[data-page="precos-e-planos"] .floating-contact span {
    display: none;
  }
  html[data-page="precos-e-planos"] .video-modal {
    padding: 15px;
  }
  html[data-page="precos-e-planos"] .video-modal-box > button {
    right: 0;
    top: -50px;
  }
}

/* Responsive refinements for the redesigned journey and methodology */
html[data-page="precos-e-planos"] .journey,
html[data-page="precos-e-planos"] .method-resources,
html[data-page="precos-e-planos"] .study-flow {
  scroll-margin-top: 84px;
}
@media (max-width: 900px) {
  html[data-page="precos-e-planos"] .resources-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  html[data-page="precos-e-planos"] .resource-item {
    min-height: 0;
  }
  html[data-page="precos-e-planos"] .study-flow .trail {
    gap: 10px;
  }
  html[data-page="precos-e-planos"] .study-flow .trail article {
    padding-inline: 4px;
  }
  html[data-page="precos-e-planos"] .study-flow .trail article > div {
    padding-inline: 8px;
  }
  html[data-page="precos-e-planos"] .study-flow .performance-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  html[data-page="precos-e-planos"] .study-flow .performance-top,
  html[data-page="precos-e-planos"] .study-flow .ai-note {
    grid-column: auto;
  }
}
@media (max-width: 650px) {
  html[data-page="precos-e-planos"] .resources-heading {
    margin-bottom: 38px;
  }
  html[data-page="precos-e-planos"] .resources-pill {
    width: 100%;
    padding: 11px 16px;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
  }
  html[data-page="precos-e-planos"] .method-resources h2 {
    font-size: 29px;
  }
  html[data-page="precos-e-planos"] .resources-heading > p {
    font-size: 13px;
    line-height: 1.68;
  }
  html[data-page="precos-e-planos"] .resource-item {
    padding: 22px 20px 22px 82px;
    border-radius: 19px;
  }
  html[data-page="precos-e-planos"] .resource-icon {
    left: 19px;
    top: 21px;
    width: 48px;
    height: 48px;
  }
  html[data-page="precos-e-planos"] .resource-icon svg {
    width: 24px;
    height: 24px;
  }
  html[data-page="precos-e-planos"] .resource-item h3 {
    font-size: 17px;
  }
  html[data-page="precos-e-planos"] .resource-item p {
    font-size: 12px;
  }
  html[data-page="precos-e-planos"] .study-flow .method-head {
    margin-bottom: 42px;
  }
  html[data-page="precos-e-planos"] .study-flow .trail {
    display: flex;
    gap: 14px;
    margin-inline: -15px;
    padding: 8px 15px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  html[data-page="precos-e-planos"] .study-flow .trail::-webkit-scrollbar {
    display: none;
  }
  html[data-page="precos-e-planos"] .study-flow .trail-line,
  html[data-page="precos-e-planos"] .study-flow .trail-line-fill {
    display: none;
  }
  html[data-page="precos-e-planos"] .study-flow .trail article {
    flex: 0 0 min(78vw, 286px);
    min-height: 250px;
    padding: 24px 20px;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    scroll-snap-align: center;
  }
  html[data-page="precos-e-planos"] .study-flow .trail article > div {
    max-width: none;
    width: 100%;
    margin-top: 20px;
    padding: 18px 0 0;
  }
  html[data-page="precos-e-planos"] .study-flow .performance-card {
    padding: 20px;
    border-radius: 22px;
  }
  html[data-page="precos-e-planos"] .study-flow .performance-body {
    gap: 18px;
  }
  html[data-page="precos-e-planos"] .study-flow .score-ring {
    width: 126px;
    height: 126px;
  }
  html[data-page="precos-e-planos"] .study-flow .discipline-bars > div {
    grid-template-columns: 74px 1fr 29px;
  }
}

/* Conheça também — cards reconstruídos com a identidade visual azul/verde */
html[data-page="precos-e-planos"] .also-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(47, 128, 237, 0.12), transparent 31%),
    radial-gradient(
      circle at 94% 100%,
      rgba(0, 179, 136, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
}
html[data-page="precos-e-planos"] .also-shell {
  width: min(1200px, calc(100% - 48px));
}
html[data-page="precos-e-planos"] .also-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
html[data-page="precos-e-planos"] .also-card {
  position: relative;
  min-height: 381px;
  padding: 30px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: linear-gradient(145deg, #061d31 0%, #0a4f70 58%, #00a982 100%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(8, 41, 66, 0.2);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
html[data-page="precos-e-planos"] .also-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 86px rgba(8, 41, 66, 0.27);
}
html[data-page="precos-e-planos"] .also-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
}
html[data-page="precos-e-planos"] .also-card:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -150px;
  top: -130px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(100, 220, 255, 0.12);
}
html[data-page="precos-e-planos"] .also-card-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -40px;
  bottom: -55px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(55, 225, 185, 0.2);
  filter: blur(30px);
}
html[data-page="precos-e-planos"] .also-logo {
  position: relative;
  z-index: 3;
  display: block;
  max-width: 230px;
  max-height: 78px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}
html[data-page="precos-e-planos"] .medflix-logo {
  max-width: 215px;
}
html[data-page="precos-e-planos"] .revalida-logo {
  max-width: 205px;
}
html[data-page="precos-e-planos"] .also-copy {
  position: absolute;
  z-index: 4;
  left: 30px;
  right: 30px;
  bottom: 30px;
  max-width: 66%;
}
html[data-page="precos-e-planos"] .also-copy > span {
  display: block;
  margin-bottom: 10px;
  color: #8fe6d1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
html[data-page="precos-e-planos"] .also-copy h3 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
html[data-page="precos-e-planos"] .also-copy p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.62;
}
html[data-page="precos-e-planos"] .also-copy a {
  width: max-content;
  height: 42px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 750;
  transition: 0.25s;
}
html[data-page="precos-e-planos"] .also-copy a:hover {
  background: #fff;
  color: #082942;
  transform: translateX(3px);
}
html[data-page="precos-e-planos"] .also-copy a svg {
  width: 16px;
  height: 16px;
}
html[data-page="precos-e-planos"] .also-person {
  position: absolute;
  z-index: 2;
  right: -10px;
  bottom: 0;
  width: 62%;
  height: auto;
  max-height: 75%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.25));
  transition: transform 0.45s ease;
}
html[data-page="precos-e-planos"] .also-card:hover .also-person {
  transform: translate3d(-5px, -5px, 0) scale(1.025);
}
html[data-page="precos-e-planos"] .also-device {
  right: -28px;
  bottom: 15px;
  width: 52%;
  max-height: 72%;
  transform: rotate(1deg);
}
html[data-page="precos-e-planos"] .also-card:hover .also-device {
  transform: translate3d(-5px, -7px, 0) rotate(-1deg) scale(1.03);
}
html[data-page="precos-e-planos"] .revalida-person {
  right: -4px;
  width: 61%;
}
html[data-page="precos-e-planos"] .also-medicina {
  background: linear-gradient(145deg, #061d31 0%, #145d84 58%, #00a982 100%);
}
html[data-page="precos-e-planos"] .also-revalida {
  background: linear-gradient(145deg, #082942 0%, #0d5572 52%, #00aa83 100%);
}

/* Hub de vídeos */
html[data-page="precos-e-planos"] .video-hub {
  overflow: hidden;
  background: linear-gradient(135deg, #061c30 0%, #092f4b 58%, #075b60 100%);
  color: #fff;
}
html[data-page="precos-e-planos"] .video-hub:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.65) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: linear-gradient(120deg, transparent 8%, #000 72%);
}
html[data-page="precos-e-planos"] .video-hub .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="precos-e-planos"] .video-hub-head {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: end;
}
html[data-page="precos-e-planos"] .video-hub h2 {
  color: #fff;
}
html[data-page="precos-e-planos"] .video-hub-head > p {
  margin: 0;
  color: #b7cbd7;
  font-size: 14px;
  line-height: 1.75;
}
html[data-page="precos-e-planos"] .media-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
html[data-page="precos-e-planos"] .media-video-card {
  padding: 0;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.17);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}
html[data-page="precos-e-planos"] .media-video-card:hover {
  transform: translateY(-7px);
  border-color: rgba(101, 226, 194, 0.6);
  background: rgba(255, 255, 255, 0.1);
}
html[data-page="precos-e-planos"] .media-poster {
  position: relative;
  aspect-ratio: 16/9;
  display: block;
  overflow: hidden;
  background: #071725;
}
html[data-page="precos-e-planos"] .media-poster:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 18, 29, 0.55));
}
html[data-page="precos-e-planos"] .media-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}
html[data-page="precos-e-planos"] .media-video-card:hover .media-poster img {
  transform: scale(1.055);
  filter: saturate(1.08);
}
html[data-page="precos-e-planos"] .media-poster i {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(13px);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.07);
  transition: 0.3s;
}
html[data-page="precos-e-planos"] .media-video-card:hover .media-poster i {
  background: #fff;
  color: var(--blue);
  transform: translate(-50%, -50%) scale(1.08);
}
html[data-page="precos-e-planos"] .media-poster b {
  position: absolute;
  z-index: 2;
  right: 13px;
  top: 13px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(4, 24, 38, 0.72);
  color: #8fe6d1;
  font-size: 10px;
}
html[data-page="precos-e-planos"] .media-video-copy {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
html[data-page="precos-e-planos"] .media-video-copy small {
  color: #72e0c2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
html[data-page="precos-e-planos"] .media-video-copy strong {
  margin: 9px 0 22px;
  font-size: 15px;
  line-height: 1.35;
}
html[data-page="precos-e-planos"] .media-video-copy em {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c6d6df;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}
html[data-page="precos-e-planos"] .media-video-copy em svg {
  width: 16px;
  height: 16px;
}
html[data-page="precos-e-planos"] .video-modal-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}

/* Carrosséis premium */
html[data-page="precos-e-planos"] .carousel-heading {
  margin-bottom: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
html[data-page="precos-e-planos"] .carousel-heading .section-heading {
  margin-bottom: 0;
}
html[data-page="precos-e-planos"] .carousel-controls {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
html[data-page="precos-e-planos"] .carousel-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(8, 41, 66, 0.08);
  transition: 0.25s;
}
html[data-page="precos-e-planos"] .carousel-arrow:hover:not(:disabled) {
  transform: translateY(-3px);
  border-color: rgba(47, 128, 237, 0.42);
  color: var(--blue);
}
html[data-page="precos-e-planos"] .carousel-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
html[data-page="precos-e-planos"] .carousel-counter {
  min-width: 54px;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}
html[data-page="precos-e-planos"] .carousel-viewport {
  overflow: hidden;
  padding: 4px 2px 18px;
}
html[data-page="precos-e-planos"] .carousel-track {
  display: flex;
  gap: 22px;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 0.8, 0.24, 1);
}
html[data-page="precos-e-planos"] .carousel-slide {
  flex: 0 0 auto;
}
html[data-page="precos-e-planos"] .testimonial-carousel .testimonial-card {
  min-height: 330px;
}
html[data-page="precos-e-planos"] .demo-label {
  margin-top: 3px;
  color: var(--blue) !important;
  font-size: 8px !important;
  font-weight: 700;
}
html[data-page="precos-e-planos"] .teachers {
  background: var(--surface);
}
html[data-page="precos-e-planos"] .teacher-carousel .carousel-track {
  gap: 16px;
}
html[data-page="precos-e-planos"] .teacher-card {
  min-height: 0;
  padding: 14px 14px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 14px 35px rgba(8, 41, 66, 0.07);
}
html[data-page="precos-e-planos"] .teacher-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(8, 41, 66, 0.13);
}
html[data-page="precos-e-planos"] .teacher-thumb {
  position: relative;
  height: 190px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 15px;
  background: var(--surface-soft);
}
html[data-page="precos-e-planos"] .teacher-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
html[data-page="precos-e-planos"] .teacher-thumb span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(8, 41, 66, 0.85);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
html[data-page="precos-e-planos"] .teacher-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
html[data-page="precos-e-planos"] .teacher-card p {
  min-height: 0;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.58;
}
html[data-page="precos-e-planos"] .teacher-card a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 750;
}
html[data-page="precos-e-planos"] .teacher-card a svg {
  width: 15px;
  height: 15px;
}

/* Faixa institucional idêntica ao material de referência */
html[data-page="precos-e-planos"] .brand-strip {
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid #e5eef2;
  border-bottom: 1px solid #e5eef2;
}
html[data-page="precos-e-planos"] .brand-strip-inner {
  width: 100%;
  margin: auto;
  background: #fff;
}
html[data-page="precos-e-planos"] .brand-strip img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #fff;
}
html[data-page="precos-e-planos"][data-theme="dark"] .brand-strip {
  background: #fff;
}

@media (max-width: 1100px) {
  html[data-page="precos-e-planos"] .also-grid {
    grid-template-columns: 1fr 1fr;
  }
  html[data-page="precos-e-planos"] .also-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 11px);
    margin: auto;
  }
  html[data-page="precos-e-planos"] .media-video-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  html[data-page="precos-e-planos"] .also-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .also-card,
  html[data-page="precos-e-planos"] .also-card:last-child {
    width: 100%;
    max-width: 680px;
    min-height: 500px;
    margin: auto;
    grid-column: auto;
  }
  html[data-page="precos-e-planos"] .video-hub-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  html[data-page="precos-e-planos"] .carousel-heading {
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  html[data-page="precos-e-planos"] .also-shell {
    width: calc(100% - 28px);
  }
  html[data-page="precos-e-planos"] .also-card {
    min-height: 470px;
    padding: 24px;
    border-radius: 24px;
  }
  html[data-page="precos-e-planos"] .also-logo {
    max-width: 200px;
    max-height: 68px;
  }
  html[data-page="precos-e-planos"] .also-copy {
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: 72%;
  }
  html[data-page="precos-e-planos"] .also-copy h3 {
    font-size: 22px;
  }
  html[data-page="precos-e-planos"] .also-copy p {
    font-size: 11px;
  }
  html[data-page="precos-e-planos"] .also-person {
    width: 68%;
    opacity: 0.92;
  }
  html[data-page="precos-e-planos"] .also-device {
    width: 57%;
    right: -22px;
  }
  html[data-page="precos-e-planos"] .media-video-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .media-video-card {
    max-width: 520px;
    width: 100%;
    margin: auto;
  }
  html[data-page="precos-e-planos"] .carousel-heading {
    flex-direction: column;
    align-items: stretch;
  }
  html[data-page="precos-e-planos"] .carousel-controls {
    align-self: flex-end;
  }
  html[data-page="precos-e-planos"] .carousel-track {
    gap: 14px;
  }
  html[data-page="precos-e-planos"] .testimonial-carousel .testimonial-card {
    min-height: 310px;
  }
  html[data-page="precos-e-planos"] .teacher-thumb {
    height: 220px;
  }
  html[data-page="precos-e-planos"] .brand-strip {
    overflow-x: auto;
  }
  html[data-page="precos-e-planos"] .brand-strip img {
    width: 980px;
    max-width: none;
  }
}

/* Ajustes finos de composição dos cards Conheça também */
html[data-page="precos-e-planos"] .also-medflix .also-copy {
  max-width: 58%;
}
html[data-page="precos-e-planos"] .also-medicina .also-copy,
html[data-page="precos-e-planos"] .also-revalida .also-copy {
  max-width: 52%;
}
html[data-page="precos-e-planos"] .also-medicina .also-person {
  width: 50%;
  right: -22px;
}
html[data-page="precos-e-planos"] .also-revalida .also-person {
  width: 49%;
  right: -20px;
}
html[data-page="precos-e-planos"] .also-medflix .also-device {
  width: 44%;
  right: -16px;
  bottom: 24px;
}
html[data-page="precos-e-planos"] .also-medicina .also-copy h3,
html[data-page="precos-e-planos"] .also-revalida .also-copy h3 {
  font-size: 22px;
}
@media (max-width: 900px) {
  html[data-page="precos-e-planos"] .also-medflix .also-copy,
  html[data-page="precos-e-planos"] .also-medicina .also-copy,
  html[data-page="precos-e-planos"] .also-revalida .also-copy {
    max-width: 58%;
  }
  html[data-page="precos-e-planos"] .also-medicina .also-person,
  html[data-page="precos-e-planos"] .also-revalida .also-person {
    width: 48%;
  }
}
@media (max-width: 640px) {
  html[data-page="precos-e-planos"] .also-medflix .also-copy,
  html[data-page="precos-e-planos"] .also-medicina .also-copy,
  html[data-page="precos-e-planos"] .also-revalida .also-copy {
    max-width: 62%;
  }
  html[data-page="precos-e-planos"] .also-medicina .also-person,
  html[data-page="precos-e-planos"] .also-revalida .also-person {
    width: 52%;
    right: -24px;
  }
  html[data-page="precos-e-planos"] .also-medflix .also-device {
    width: 48%;
    right: -20px;
  }
}

/* ===== Ajustes editoriais e institucionais — agosto/2026 ===== */
html[data-page="precos-e-planos"] .video-hub-head {
  display: block;
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}
html[data-page="precos-e-planos"] .video-hub-head > div {
  max-width: 900px;
  margin: 0 auto;
}

html[data-page="precos-e-planos"] .testimonials .carousel-heading,
html[data-page="precos-e-planos"] .teachers .carousel-heading {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
html[data-page="precos-e-planos"]
  .testimonials
  .carousel-heading
  .section-heading,
html[data-page="precos-e-planos"] .teachers .carousel-heading .section-heading {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}
html[data-page="precos-e-planos"]
  .teachers
  .carousel-heading.teachers-heading
  .section-heading {
  width: 100%;
  max-width: 1280px;
}
html[data-page="precos-e-planos"]
  .teachers
  .carousel-heading.teachers-heading
  .section-heading
  > p {
  max-width: none;
  white-space: nowrap;
}
html[data-page="precos-e-planos"] .testimonials .carousel-controls,
html[data-page="precos-e-planos"] .teachers .carousel-controls {
  align-self: center;
}
html[data-page="precos-e-planos"] .teacher-thumb {
  background: transparent !important;
}
html[data-page="precos-e-planos"] .teacher-thumb img {
  background: transparent !important;
}

html[data-page="precos-e-planos"] .blog-head {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
html[data-page="precos-e-planos"] .blog-head > div {
  max-width: 900px;
}
html[data-page="precos-e-planos"] .blog-head > a {
  justify-content: center;
  font-size: 13px;
}
@media (max-width: 1180px) {
  html[data-page="precos-e-planos"]
    .teachers
    .carousel-heading.teachers-heading
    .section-heading
    > p {
    white-space: normal;
  }
}
html[data-page="precos-e-planos"] .post-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
html[data-page="precos-e-planos"] .cover-3 {
  background: linear-gradient(135deg, #0a3150, #00a582);
}
html[data-page="precos-e-planos"] .cover-4 {
  background: linear-gradient(135deg, #102f58, #2f80ed 58%, #00a982);
}
html[data-page="precos-e-planos"] .cover-5 {
  background: linear-gradient(135deg, #082942, #246b8f 58%, #7abf52);
}
html[data-page="precos-e-planos"] .cover-6 {
  background: linear-gradient(135deg, #183454, #0097b2 60%, #04b482);
}
html[data-page="precos-e-planos"] .cover-7 {
  background: linear-gradient(135deg, #082942, #075d72 55%, #7ed957);
}
html[data-page="precos-e-planos"] .post-body h3 {
  min-height: 94px;
}

html[data-page="precos-e-planos"] .brand-strip {
  padding: 34px 0 30px;
  overflow: visible;
  background: #fff;
  border-top: 1px solid #dfeaf0;
  border-bottom: 1px solid #dfeaf0;
}
html[data-page="precos-e-planos"] .brand-strip-inner {
  width: min(var(--max), calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 1px minmax(0, 0.92fr);
  gap: 28px;
  align-items: center;
  background: #fff;
}
html[data-page="precos-e-planos"] .brand-group {
  min-width: 0;
}
html[data-page="precos-e-planos"] .brand-group h2 {
  margin: 0 0 18px;
  color: #496b9a;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: center;
}
html[data-page="precos-e-planos"] .brand-strip-divider {
  align-self: stretch;
  min-height: 88px;
  background: #d6e2e8;
}
html[data-page="precos-e-planos"] .brand-logos {
  display: grid;
  gap: 10px;
}
html[data-page="precos-e-planos"] .institution-logos {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
html[data-page="precos-e-planos"] .developed-logos {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
html[data-page="precos-e-planos"] .brand-logo-card {
  height: 72px;
  padding: 11px 13px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dce8ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 41, 66, 0.055);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
html[data-page="precos-e-planos"] .brand-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 128, 237, 0.25);
  box-shadow: 0 14px 30px rgba(8, 41, 66, 0.09);
}
html[data-page="precos-e-planos"] .brand-logo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: transparent;
}
html[data-page="precos-e-planos"][data-theme="dark"] .brand-strip,
html[data-page="precos-e-planos"][data-theme="dark"] .brand-strip-inner,
html[data-page="precos-e-planos"][data-theme="dark"] .brand-logo-card {
  background: #fff;
}

@media (max-width: 1100px) {
  html[data-page="precos-e-planos"] .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html[data-page="precos-e-planos"] .post-card:last-child {
    grid-column: auto;
    width: auto;
    margin: 0;
  }
  html[data-page="precos-e-planos"] .brand-strip-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  html[data-page="precos-e-planos"] .brand-strip-divider {
    width: 100%;
    min-height: 1px;
    height: 1px;
  }
}

@media (max-width: 760px) {
  html[data-page="precos-e-planos"] .post-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .post-card:last-child {
    width: 100%;
  }
  html[data-page="precos-e-planos"] .post-body h3 {
    min-height: 0;
  }
  html[data-page="precos-e-planos"] .institution-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html[data-page="precos-e-planos"]
    .institution-logos
    .brand-logo-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    justify-self: center;
  }
  html[data-page="precos-e-planos"] .developed-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html[data-page="precos-e-planos"] .brand-logo-card {
    height: 76px;
  }
}

@media (max-width: 430px) {
  html[data-page="precos-e-planos"] .brand-strip-inner {
    width: min(100% - 24px, var(--max));
  }
  html[data-page="precos-e-planos"] .brand-group h2 {
    font-size: 12px;
  }
  html[data-page="precos-e-planos"] .brand-logo-card {
    height: 68px;
    padding: 9px;
  }
}

/* ============================================================
   Cabeçalho e rodapé globais — padrão para todas as páginas
   ============================================================ */









html[data-page="precos-e-planos"] .footer-brand > p {
  font-size: 17px !important;
  line-height: 1.75 !important;
}
html[data-page="precos-e-planos"] .footer-links h3 {
  font-size: 17px !important;
  letter-spacing: 0.01em;
}
html[data-page="precos-e-planos"] .footer-links a,
html[data-page="precos-e-planos"] .footer-links span {
  font-size: 15px !important;
  line-height: 1.62 !important;
}
html[data-page="precos-e-planos"] .footer-links small {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="precos-e-planos"] .footer-bottom > div {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="precos-e-planos"] .brand-group h2 {
  font-size: 14px !important;
}

@media (max-width: 920px) {
  
  
}

/* ============================================================
   Nova composição da home — agosto/2026
   ============================================================ */
html[data-page="precos-e-planos"] .section-title-pill {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 13px 31px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #1598c7 0%, #08b5a0 54%, #68d55e 100%);
  color: #fff !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  text-align: center;
  text-transform: none;
  box-shadow: 0 14px 32px rgba(9, 173, 150, 0.2);
  text-shadow: 0 1px 2px rgba(3, 65, 75, 0.18);
}
html[data-page="precos-e-planos"] .new-section-heading {
  max-width: 970px;
  margin: 0 auto 46px;
  text-align: center;
}
html[data-page="precos-e-planos"] .new-section-heading > p {
  max-width: 870px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.72;
}
html[data-page="precos-e-planos"] .section-subtitle-new {
  margin: 24px auto 0;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-align: center;
}
html[data-page="precos-e-planos"] .section-subtitle-new em {
  color: var(--blue);
  font-style: normal;
}
html[data-page="precos-e-planos"] .final-cta .section-title-pill {
  margin: 0;
  font-size: 26px !important;
}
html[data-page="precos-e-planos"] .faq-lead {
  margin: 25px 0 0;
  color: var(--ink);
  font-size: clamp(27px, calc(2.7vw + 2px), 40px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}
html[data-page="precos-e-planos"] .faq-lead em {
  color: var(--green);
  font-style: normal;
}
html[data-page="precos-e-planos"] .brand-title-pill {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 18px !important;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0a7180 !important;
  font-size: 15px !important;
  letter-spacing: 0.12em !important;
  box-shadow: none;
}

html[data-page="precos-e-planos"] .platform-inside {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 8%, rgba(47, 128, 237, 0.12), transparent 28%),
    radial-gradient(
      circle at 91% 86%,
      rgba(0, 179, 136, 0.13),
      transparent 30%
    ),
    var(--surface);
}
html[data-page="precos-e-planos"] .platform-inside::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image: radial-gradient(
    circle,
    rgba(25, 130, 170, 0.17) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: linear-gradient(120deg, #000, transparent 74%);
  pointer-events: none;
}
html[data-page="precos-e-planos"] .platform-inside .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="precos-e-planos"] .platform-tour-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
html[data-page="precos-e-planos"] .platform-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-content: start;
  gap: 10px;
}
html[data-page="precos-e-planos"] .platform-tab {
  min-height: 72px;
  padding: 12px 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--border));
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 96%, var(--blue) 4%);
  color: var(--ink);
  text-align: center;
  font-weight: 400;
  box-shadow: 0 12px 30px rgba(8, 41, 66, 0.055);
  cursor: pointer;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}
html[data-page="precos-e-planos"] .platform-tab-label {
  display: block;
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 400;
  line-height: 1.3;
}
html[data-page="precos-e-planos"] .platform-tab:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--green) 58%, transparent);
  background: linear-gradient(
    100deg,
    rgba(47, 128, 237, 0.1),
    rgba(0, 179, 136, 0.12)
  );
  box-shadow: 0 15px 32px rgba(8, 41, 66, 0.09);
}
html[data-page="precos-e-planos"] .platform-tab.active {
  transform: translateY(-5px);
  border-color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--green));
  color: #fff;
  box-shadow:
    0 16px 34px rgba(0, 151, 178, 0.28),
    0 7px 18px rgba(8, 41, 66, 0.14);
}
html[data-page="precos-e-planos"] .platform-frame {
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 29px;
  background: linear-gradient(145deg, #061b2c, #0a4053 65%, #087264);
  box-shadow: 0 35px 85px rgba(8, 41, 66, 0.24);
}
html[data-page="precos-e-planos"] .platform-browser {
  height: 40px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 17px 17px 0 0;
  background: rgba(3, 19, 30, 0.88);
}
html[data-page="precos-e-planos"] .platform-browser i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b6b;
}
html[data-page="precos-e-planos"] .platform-browser i:nth-child(2) {
  background: #ffd166;
}
html[data-page="precos-e-planos"] .platform-browser i:nth-child(3) {
  background: #50d890;
}
html[data-page="precos-e-planos"] .platform-browser span {
  margin-left: auto;
  color: #9fb7c3;
  font-size: 9px;
  letter-spacing: 0.08em;
}
html[data-page="precos-e-planos"] .platform-viewport {
  position: relative;
  height: clamp(560px, 49vw, 682px);
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  background: #eef4f7;
}
html[data-page="precos-e-planos"] .platform-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.46s ease,
    transform 0.46s ease,
    visibility 0.46s;
}
html[data-page="precos-e-planos"] .platform-panel.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}
html[data-page="precos-e-planos"] .platform-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: top center;
  background: #f5f8fa;
}
html[data-page="precos-e-planos"]
  .platform-panel[data-platform-panel="cronograma"]
  img {
  object-fit: cover;
  object-position: center;
  background: #061b2c;
}
html[data-page="precos-e-planos"] .platform-caption {
  min-height: 68px;
  padding: 15px 10px 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #c9dce5;
  font-size: 12px;
}
html[data-page="precos-e-planos"] .platform-caption strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
}
html[data-page="precos-e-planos"] .platform-caption button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s;
}
html[data-page="precos-e-planos"] .platform-caption button:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #083048;
}

html[data-page="precos-e-planos"] .courses-showcase {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(32, 143, 177, 0.14);
  border-bottom: 1px solid rgba(0, 179, 136, 0.16);
  background:
    radial-gradient(
      circle at 8% 14%,
      rgba(47, 128, 237, 0.19),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(0, 179, 136, 0.19),
      transparent 31%
    ),
    linear-gradient(135deg, #e4f5fb 0%, #f2f9ff 48%, #e8f8f0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 28px 70px rgba(47, 128, 237, 0.035);
}
html[data-page="precos-e-planos"] .courses-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.32;
  background-image: radial-gradient(
    circle,
    rgba(16, 126, 160, 0.23) 1px,
    transparent 1.4px
  );
  background-size: 29px 29px;
  mask-image: linear-gradient(115deg, #000 0%, transparent 54%, #000 100%);
  pointer-events: none;
}
html[data-page="precos-e-planos"] .courses-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 470px;
  height: 470px;
  right: -260px;
  top: -250px;
  border: 1px solid rgba(0, 179, 136, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(47, 128, 237, 0.035),
    0 0 90px rgba(0, 179, 136, 0.09);
  pointer-events: none;
}
html[data-page="precos-e-planos"] .courses-showcase .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="precos-e-planos"] .courses-showcase .new-section-heading > p {
  color: #456575;
  font-weight: 650;
}
html[data-page="precos-e-planos"] .courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
html[data-page="precos-e-planos"] .course-card-new {
  position: relative;
  min-height: 280px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(83, 157, 183, 0.2);
  border-radius: 25px;
  background: var(--surface);
  box-shadow: 0 20px 48px rgba(8, 41, 66, 0.095);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}
html[data-page="precos-e-planos"] .course-card-new::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -100px;
  top: -105px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.18),
    transparent 69%
  );
  transition: transform 0.45s ease;
}
html[data-page="precos-e-planos"] .course-card-new::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: right 0.45s ease;
}
html[data-page="precos-e-planos"] .course-card-new:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 179, 136, 0.32);
  box-shadow: 0 28px 58px rgba(8, 41, 66, 0.13);
}
html[data-page="precos-e-planos"] .course-card-new:hover::before {
  transform: scale(1.2);
}
html[data-page="precos-e-planos"] .course-card-new:hover::after {
  right: 0;
}
html[data-page="precos-e-planos"] .course-card-icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 21px;
  background: linear-gradient(145deg, #2f80ed, #159fc2 54%, #00b388);
  color: #fff;
  box-shadow:
    0 16px 34px rgba(47, 128, 237, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  animation: precos-e-planos-courseIconFloat 3.8s ease-in-out infinite;
  isolation: isolate;
}
html[data-page="precos-e-planos"] .course-card-icon::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(47, 128, 237, 0.2);
  border-radius: 25px;
  opacity: 0.72;
  animation: precos-e-planos-courseIconHalo 3.8s ease-in-out infinite;
}
html[data-page="precos-e-planos"] .course-card-icon::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 16px;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.28),
    transparent 42%
  );
  pointer-events: none;
}
html[data-page="precos-e-planos"] .course-card-icon svg {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  filter: drop-shadow(0 4px 7px rgba(2, 53, 79, 0.2));
  transition: transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="precos-e-planos"]
  .course-card-new:nth-child(2)
  .course-card-icon {
  background: linear-gradient(145deg, #1266db, #257fef 52%, #03b4a0);
  animation-delay: -0.65s;
}
html[data-page="precos-e-planos"]
  .course-card-new:nth-child(3)
  .course-card-icon {
  background: linear-gradient(145deg, #008fb5, #00aeaa 55%, #64ca61);
  animation-delay: -1.3s;
}
html[data-page="precos-e-planos"]
  .course-card-new:nth-child(4)
  .course-card-icon {
  background: linear-gradient(145deg, #215fd4, #557ee8 52%, #08b895);
  animation-delay: -1.95s;
}
html[data-page="precos-e-planos"]
  .course-card-new:nth-child(5)
  .course-card-icon {
  background: linear-gradient(145deg, #087ba9, #0aa6aa 55%, #6ac85d);
  animation-delay: -2.6s;
}
html[data-page="precos-e-planos"]
  .course-card-new:nth-child(6)
  .course-card-icon {
  background: linear-gradient(145deg, #216fd7, #00a3b6 52%, #17b86e);
  animation-delay: -3.25s;
}
html[data-page="precos-e-planos"] .course-card-new:hover .course-card-icon svg {
  transform: scale(1.15) rotate(-7deg);
}
html[data-page="precos-e-planos"]
  .course-card-new:hover
  .course-card-icon::before {
  border-color: rgba(0, 179, 136, 0.5);
  transform: scale(1.08) rotate(8deg);
}
@keyframes precos-e-planos-courseIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(2deg);
  }
}
@keyframes precos-e-planos-courseIconHalo {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.06);
  }
}
html[data-page="precos-e-planos"] .course-card-new small {
  display: block;
  margin-top: 21px;
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
}
html[data-page="precos-e-planos"] .course-card-new h3 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -0.035em;
}
html[data-page="precos-e-planos"] .course-card-new p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.66;
}
html[data-page="precos-e-planos"] .course-card-new a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}
html[data-page="precos-e-planos"] .course-card-new a svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
html[data-page="precos-e-planos"] .course-card-new a:hover svg {
  transform: translateX(4px);
}

html[data-page="precos-e-planos"] .solutions-new {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(47, 128, 237, 0.12), transparent 31%),
    radial-gradient(
      circle at 94% 100%,
      rgba(0, 179, 136, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, var(--surface), var(--surface-soft));
}
html[data-page="precos-e-planos"] .solutions-grid-new {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
html[data-page="precos-e-planos"] .solution-card-new {
  position: relative;
  min-height: 420px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: linear-gradient(145deg, #061d31 0%, #0b5070 57%, #00a982 100%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(8, 41, 66, 0.2);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
html[data-page="precos-e-planos"] .solution-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 88px rgba(8, 41, 66, 0.28);
}
html[data-page="precos-e-planos"] .solution-card-new::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(135deg, #000, transparent 74%);
}
html[data-page="precos-e-planos"] .solution-card-new::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 310px;
  height: 310px;
  right: -150px;
  top: -140px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(100, 220, 255, 0.13);
}
html[data-page="precos-e-planos"] .solution-logo {
  position: relative;
  z-index: 3;
  max-width: 218px;
  max-height: 74px;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}
html[data-page="precos-e-planos"] .extension-wordmark {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
html[data-page="precos-e-planos"] .extension-wordmark i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.13);
  font-style: normal;
}
html[data-page="precos-e-planos"] .extension-wordmark i svg {
  width: 28px;
  height: 28px;
}
html[data-page="precos-e-planos"] .extension-wordmark strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.03em;
}
html[data-page="precos-e-planos"] .extension-wordmark span {
  display: block;
  margin-top: 5px;
  color: #91f0d7;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
}
html[data-page="precos-e-planos"] .solution-person {
  position: absolute;
  z-index: 1;
  right: -24px;
  bottom: 0;
  width: 61%;
  max-height: 82%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.27));
  transition: transform 0.45s ease;
}
html[data-page="precos-e-planos"] .solution-card-new:hover .solution-person {
  transform: translate3d(-5px, -6px, 0) scale(1.025);
}
html[data-page="precos-e-planos"] .solution-device {
  width: 49%;
  right: -18px;
  bottom: 12px;
  transform: rotate(1deg);
}
html[data-page="precos-e-planos"] .solution-card-new:hover .solution-device {
  transform: translate3d(-5px, -7px, 0) rotate(-1deg) scale(1.03);
}
html[data-page="precos-e-planos"] .solution-body {
  position: relative;
  z-index: 4;
  left: auto;
  right: auto;
  bottom: auto;
  max-width: 61%;
  margin-top: 42px;
}
html[data-page="precos-e-planos"] .solution-body > span {
  display: block;
  margin-bottom: 9px;
  color: #8fe6d1;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
}
html[data-page="precos-e-planos"] .solution-body h3 {
  margin: 0 0 11px;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
html[data-page="precos-e-planos"] .solution-body p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  line-height: 1.58;
}
html[data-page="precos-e-planos"] .solution-body a {
  width: max-content;
  min-height: 41px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  transition: 0.25s;
}
html[data-page="precos-e-planos"] .solution-body a:hover {
  transform: translateX(3px);
  background: #fff;
  color: #082942;
}
html[data-page="precos-e-planos"] .solution-extension {
  background: linear-gradient(145deg, #071d35 0%, #17628a 52%, #02a978 100%);
}
html[data-page="precos-e-planos"] .solution-extension .solution-person {
  width: 64%;
  right: -46px;
  opacity: 0.95;
}
html[data-page="precos-e-planos"] .solution-extension .solution-body {
  max-width: 65%;
  margin-top: 28px;
}
html[data-page="precos-e-planos"] .extension-courses {
  margin: 11px 0 15px;
  display: grid;
  gap: 5px;
}
html[data-page="precos-e-planos"] .extension-courses span {
  position: relative;
  padding-left: 13px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.3;
}
html[data-page="precos-e-planos"] .extension-courses span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7ed957;
  box-shadow: 0 0 9px rgba(126, 217, 87, 0.75);
}

html[data-page="precos-e-planos"] .methodology-new {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eefbff 0%, #f7fffb 48%, #eef9f2 100%);
}
html[data-page="precos-e-planos"] .methodology-new::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -330px;
  top: -310px;
  border: 1px solid rgba(0, 179, 136, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 110px rgba(0, 179, 136, 0.08);
}
html[data-page="precos-e-planos"] .methodology-new .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="precos-e-planos"] .methodology-new .new-section-heading {
  max-width: 1120px;
  margin-bottom: 34px;
}
html[data-page="precos-e-planos"] .methodology-new .new-section-heading > p {
  max-width: 1040px;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.72;
}
html[data-page="precos-e-planos"] .methodology-layout {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 28px;
  align-items: stretch;
}
html[data-page="precos-e-planos"] .learning-panel,
html[data-page="precos-e-planos"] .practice-panel {
  border-radius: 29px;
}
html[data-page="precos-e-planos"] .learning-panel {
  padding: 32px;
  border: 1px solid rgba(47, 128, 237, 0.16);
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 0 25px 65px rgba(8, 41, 66, 0.09);
  backdrop-filter: blur(12px);
}
html[data-page="precos-e-planos"] .method-panel-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}
html[data-page="precos-e-planos"] .method-panel-heading i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  background: linear-gradient(145deg, var(--blue), var(--green));
  color: #fff;
  font-style: normal;
  box-shadow: 0 13px 29px rgba(47, 128, 237, 0.23);
}
html[data-page="precos-e-planos"] .method-panel-heading i svg {
  width: 28px;
  height: 28px;
}
html[data-page="precos-e-planos"] .method-panel-heading small {
  display: block;
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: 0.14em;
}
html[data-page="precos-e-planos"] .method-panel-heading h3 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: clamp(23px, 2vw, 28px);
  line-height: 1.14;
}
html[data-page="precos-e-planos"] .learning-stack {
  display: grid;
  gap: 12px;
}
html[data-page="precos-e-planos"] .learning-item {
  min-height: 101px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(47, 128, 237, 0.12);
  border-radius: 17px;
  background: #fff;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
html[data-page="precos-e-planos"] .learning-item:hover {
  transform: translateX(7px);
  border-color: rgba(0, 179, 136, 0.35);
  box-shadow: 0 12px 28px rgba(8, 41, 66, 0.08);
}
html[data-page="precos-e-planos"] .learning-item > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(
    145deg,
    rgba(47, 128, 237, 0.12),
    rgba(0, 179, 136, 0.14)
  );
  color: var(--blue);
  font-style: normal;
}
html[data-page="precos-e-planos"] .learning-item > i svg {
  width: 24px;
  height: 24px;
}
html[data-page="precos-e-planos"] .learning-item h4 {
  margin: 0 0 5px;
  color: #082942;
  font-size: 16px;
  line-height: 1.3;
}
html[data-page="precos-e-planos"] .learning-item p {
  margin: 0;
  color: #526b79;
  font-size: 12.5px;
  line-height: 1.5;
}
html[data-page="precos-e-planos"] .practice-panel {
  position: relative;
  padding: 32px;
  overflow: hidden;
  background: linear-gradient(145deg, #061b2c, #0a3d51 58%, #087263 100%);
  color: #fff;
  box-shadow: 0 30px 78px rgba(8, 41, 66, 0.23);
}
html[data-page="precos-e-planos"] .practice-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.65) 1px,
    transparent 1px
  );
  background-size: 27px 27px;
  mask-image: linear-gradient(135deg, transparent 8%, #000 88%);
}
html[data-page="precos-e-planos"] .practice-panel > * {
  position: relative;
  z-index: 1;
}
html[data-page="precos-e-planos"] .practice-panel .method-panel-heading small {
  color: #7ee5c8;
  font-size: 11.5px;
}
html[data-page="precos-e-planos"] .practice-panel .method-panel-heading h3 {
  color: #fff;
  font-size: clamp(25px, 2.1vw, 30px);
}
html[data-page="precos-e-planos"] .practice-panel .method-panel-heading i {
  background: linear-gradient(145deg, #04b494, #7ed957);
}
html[data-page="precos-e-planos"] .clinical-case-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}
html[data-page="precos-e-planos"] .clinical-case-card > strong {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
}
html[data-page="precos-e-planos"] .clinical-case-card > strong span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(126, 217, 87, 0.16);
  color: #9af07c;
}
html[data-page="precos-e-planos"] .case-types {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
html[data-page="precos-e-planos"] .case-types article {
  min-height: 114px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  transition: 0.25s;
}
html[data-page="precos-e-planos"] .case-types article:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 217, 87, 0.38);
  background: rgba(255, 255, 255, 0.1);
}
html[data-page="precos-e-planos"] .case-types strong {
  display: block;
  color: #fff;
  font-size: 16.5px;
  line-height: 1.3;
}
html[data-page="precos-e-planos"] .case-types p {
  margin: 7px 0 0;
  color: #c7d8e0;
  font-size: 14.5px;
  line-height: 1.5;
}
html[data-page="precos-e-planos"] .practice-tools {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
html[data-page="precos-e-planos"] .practice-tool {
  min-height: 139px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.075);
  transition: 0.28s;
}
html[data-page="precos-e-planos"] .practice-tool:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(82, 219, 185, 0.42);
}
html[data-page="precos-e-planos"] .practice-tool i {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(82, 219, 185, 0.15);
  color: #7ee5c8;
  font-style: normal;
}
html[data-page="precos-e-planos"] .practice-tool i svg {
  width: 22px;
  height: 22px;
}
html[data-page="precos-e-planos"] .practice-tool strong {
  display: block;
  margin-top: 11px;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}
html[data-page="precos-e-planos"] .practice-tool p {
  margin: 6px 0 0;
  color: #c7d8e0;
  font-size: 14.5px;
  line-height: 1.48;
}
html[data-page="precos-e-planos"] .study-insights {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
html[data-page="precos-e-planos"] .study-insight {
  min-height: 82px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.16),
    rgba(0, 179, 136, 0.15)
  );
}
html[data-page="precos-e-planos"] .study-insight i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #9af07c;
  font-style: normal;
}
html[data-page="precos-e-planos"] .study-insight strong {
  display: block;
  color: #fff;
  font-size: 15.5px;
  line-height: 1.3;
}
html[data-page="precos-e-planos"] .study-insight span {
  display: block;
  margin-top: 4px;
  color: #c7d8e0;
  font-size: 14.5px;
  line-height: 1.45;
}

html[data-page="precos-e-planos"] .blog-head > div {
  max-width: 1200px;
}
html[data-page="precos-e-planos"] .blog .section-subtitle-new {
  white-space: nowrap;
  font-size: clamp(24px, 2.6vw, 37px);
}
html[data-page="precos-e-planos"] .blog .section-subtitle-new em {
  color: var(--green);
}

html[data-page="precos-e-planos"] .ecosystem-videos {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #061c30 0%, #092f4b 58%, #075b60 100%);
  color: #fff;
}
html[data-page="precos-e-planos"] .ecosystem-videos::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.65) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: linear-gradient(120deg, transparent 8%, #000 72%);
}
html[data-page="precos-e-planos"] .ecosystem-videos .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="precos-e-planos"] .ecosystem-videos .new-section-heading > p {
  color: #c3d5de;
}

html[data-page="precos-e-planos"][data-theme="dark"] .platform-inside,
html[data-page="precos-e-planos"][data-theme="dark"] .solutions-new {
  background: var(--surface);
}
html[data-page="precos-e-planos"][data-theme="dark"] .courses-showcase {
  border-color: rgba(104, 213, 180, 0.17);
  background:
    radial-gradient(
      circle at 8% 14%,
      rgba(47, 128, 237, 0.23),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(0, 179, 136, 0.22),
      transparent 34%
    ),
    linear-gradient(135deg, #041522 0%, #082b40 50%, #075548 100%);
  box-shadow: inset 0 1px 0 rgba(129, 224, 196, 0.08);
}
html[data-page="precos-e-planos"][data-theme="dark"] .courses-showcase::before {
  opacity: 0.22;
}
html[data-page="precos-e-planos"][data-theme="dark"] .courses-showcase::after {
  border-color: rgba(108, 226, 190, 0.18);
  box-shadow:
    0 0 0 58px rgba(47, 128, 237, 0.045),
    0 0 100px rgba(0, 179, 136, 0.12);
}
html[data-page="precos-e-planos"][data-theme="dark"]
  .courses-showcase
  .new-section-heading
  > p {
  color: #c9dce4;
}
html[data-page="precos-e-planos"][data-theme="dark"] .platform-tab,
html[data-page="precos-e-planos"][data-theme="dark"] .course-card-new {
  border-color: rgba(136, 208, 196, 0.15);
  background: linear-gradient(145deg, #0d2b3d, #10384a);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2);
}
html[data-page="precos-e-planos"][data-theme="dark"] .platform-tab.active {
  border-color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--green));
  color: #fff;
  box-shadow:
    0 16px 36px rgba(0, 179, 136, 0.24),
    0 8px 20px rgba(0, 0, 0, 0.24);
}
html[data-page="precos-e-planos"][data-theme="dark"]
  .platform-tab:hover:not(.active) {
  border-color: rgba(0, 179, 136, 0.42);
  background: linear-gradient(145deg, #10374a, #10483f);
}
html[data-page="precos-e-planos"][data-theme="dark"] .course-card-new small {
  color: #66dfbd;
}
html[data-page="precos-e-planos"][data-theme="dark"] .course-card-new p {
  color: #c6d5dd;
}
html[data-page="precos-e-planos"][data-theme="dark"] .course-card-new a {
  color: #75b2ff;
}
html[data-page="precos-e-planos"][data-theme="dark"] .methodology-new {
  background: linear-gradient(135deg, #071d2d, #0a2630 52%, #0a302c);
}
html[data-page="precos-e-planos"][data-theme="dark"] .learning-panel {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(10, 35, 49, 0.92);
  box-shadow: none;
}
html[data-page="precos-e-planos"][data-theme="dark"] .learning-item {
  border-color: rgba(255, 255, 255, 0.09);
  background: #0d2b3d;
}
html[data-page="precos-e-planos"][data-theme="dark"] .learning-item h4 {
  color: #f7fafc;
}
html[data-page="precos-e-planos"][data-theme="dark"] .learning-item p {
  color: #aab8c4;
}

@media (max-width: 1080px) {
  html[data-page="precos-e-planos"] .platform-tour-shell {
    grid-template-columns: minmax(0, 1fr);
  }
  html[data-page="precos-e-planos"] .platform-viewport {
    height: 440px;
  }
  html[data-page="precos-e-planos"] .courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html[data-page="precos-e-planos"] .solutions-grid-new {
    grid-template-columns: 1fr 1fr;
  }
  html[data-page="precos-e-planos"] .solution-card-new:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    margin-inline: auto;
  }
  html[data-page="precos-e-planos"] .methodology-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  html[data-page="precos-e-planos"] .platform-tour-shell {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .platform-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  html[data-page="precos-e-planos"] .platform-tab {
    min-height: 68px;
    padding: 10px 8px;
    text-align: center;
  }
  html[data-page="precos-e-planos"] .platform-tab:hover,
  html[data-page="precos-e-planos"] .platform-tab.active {
    transform: translateY(-4px);
  }
  html[data-page="precos-e-planos"] .solutions-grid-new {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .solution-card-new,
  html[data-page="precos-e-planos"] .solution-card-new:last-child {
    width: 100%;
    max-width: 670px;
    min-height: 515px;
    margin-inline: auto;
    grid-column: auto;
  }
}
@media (max-width: 640px) {
  html[data-page="precos-e-planos"] .section-title-pill {
    width: 100%;
    padding: 12px 20px 13px;
    border-radius: 28px;
    font-size: 26px !important;
    box-shadow: 0 12px 28px rgba(9, 173, 150, 0.18);
  }
  html[data-page="precos-e-planos"] .new-section-heading {
    margin-bottom: 34px;
  }
  html[data-page="precos-e-planos"] .new-section-heading > p {
    margin-top: 21px;
    font-size: 14px;
  }
  html[data-page="precos-e-planos"] .platform-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html[data-page="precos-e-planos"] .platform-frame {
    padding: 8px;
    border-radius: 22px;
  }
  html[data-page="precos-e-planos"] .platform-viewport {
    height: 310px;
  }
  html[data-page="precos-e-planos"] .platform-browser span {
    display: none;
  }
  html[data-page="precos-e-planos"] .platform-caption {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 8px 4px;
  }
  html[data-page="precos-e-planos"] .platform-caption button {
    width: 100%;
  }
  html[data-page="precos-e-planos"] .courses-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .course-card-new {
    min-height: 260px;
  }
  html[data-page="precos-e-planos"] .solution-card-new {
    min-height: 500px;
    padding: 24px;
    border-radius: 25px;
  }
  html[data-page="precos-e-planos"] .solution-logo {
    max-width: 195px;
  }
  html[data-page="precos-e-planos"] .solution-body {
    left: auto;
    right: auto;
    bottom: auto;
    max-width: 68%;
    margin-top: 46px;
  }
  html[data-page="precos-e-planos"] .solution-person {
    width: 65%;
    right: -35px;
  }
  html[data-page="precos-e-planos"] .solution-extension .solution-person {
    width: 68%;
    right: -52px;
  }
  html[data-page="precos-e-planos"] .solution-extension .solution-body {
    max-width: 70%;
    margin-top: 32px;
  }
  html[data-page="precos-e-planos"] .learning-panel,
  html[data-page="precos-e-planos"] .practice-panel {
    padding: 18px;
    border-radius: 23px;
  }
  html[data-page="precos-e-planos"] .blog .section-subtitle-new {
    white-space: normal;
    font-size: 28px;
  }
  html[data-page="precos-e-planos"] .case-types,
  html[data-page="precos-e-planos"] .practice-tools,
  html[data-page="precos-e-planos"] .study-insights {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .case-types article,
  html[data-page="precos-e-planos"] .practice-tool {
    min-height: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html[data-page="precos-e-planos"] .platform-panel,
  html[data-page="precos-e-planos"] .platform-tab,
  html[data-page="precos-e-planos"] .course-card-new,
  html[data-page="precos-e-planos"] .solution-card-new,
  html[data-page="precos-e-planos"] .solution-person,
  html[data-page="precos-e-planos"] .learning-item,
  html[data-page="precos-e-planos"] .practice-tool {
    transition: none !important;
  }
  html[data-page="precos-e-planos"] .course-card-icon,
  html[data-page="precos-e-planos"] .course-card-icon::before {
    animation: none !important;
  }
}

/* ============================================================
   Refinamentos finais da home — agosto/2026
   ============================================================ */
@media (min-width: 921px) {
  
  
  
  
  
  
}

html[data-page="precos-e-planos"] .hero-desempenho {
  background-color: #061d2f;
  background-position: right center;
  background-size: 78% auto;
  background-repeat: no-repeat;
}
html[data-page="precos-e-planos"] .hero-inteligencia .hero-copy,
html[data-page="precos-e-planos"] .hero-jornada .hero-copy {
  max-width: 630px;
}
html[data-page="precos-e-planos"] .hero-inteligencia h1,
html[data-page="precos-e-planos"] .hero-jornada h1,
html[data-page="precos-e-planos"] .hero-desempenho h1 {
  font-size: 42px;
  font-weight: 100;
}
html[data-page="precos-e-planos"] .hero-desempenho .hero-copy,
html[data-page="precos-e-planos"] .hero-desempenho h1,
html[data-page="precos-e-planos"] .hero-desempenho .hero-copy > p {
  max-width: 565px;
}
html[data-page="precos-e-planos"] .hero-desempenho .hero-visual-labels {
  display: none;
}
html[data-page="precos-e-planos"] .hero-copy > p.hero-lead {
  margin: 20px 0 12px;
  color: #d7e6ef;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.55;
}
html[data-page="precos-e-planos"] .hero-copy > p.hero-supporting {
  margin: 0 0 23px;
  color: #9fbac8;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.52;
}
html[data-page="precos-e-planos"] .hero-resource-list {
  max-width: 575px;
  margin: 24px 0 27px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
}
html[data-page="precos-e-planos"] .hero-resource-list li {
  min-height: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #edf9fb;
  font-size: 19px;
  font-weight: 750;
  line-height: 1.25;
  box-shadow: none;
  backdrop-filter: none;
}
html[data-page="precos-e-planos"] .hero-resource-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #4da5ff, #42d6ad);
  box-shadow: 0 0 12px rgba(66, 214, 173, 0.48);
}
html[data-page="precos-e-planos"] .hero-resource-list li:last-child {
  grid-column: auto;
}

html[data-page="precos-e-planos"] .platform-browser {
  min-height: 46px;
  height: auto;
}
html[data-page="precos-e-planos"] .platform-browser-copy {
  min-width: 0;
  margin-left: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
html[data-page="precos-e-planos"] .platform-browser-copy strong {
  color: #fff;
  font-size: 12px;
}
html[data-page="precos-e-planos"] .platform-browser-copy span {
  margin-left: 0;
  color: #9fb7c3;
  font-size: 10px;
  letter-spacing: 0;
}
html[data-page="precos-e-planos"] .platform-description {
  max-width: 930px;
  margin: 27px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.72;
  text-align: center;
}

html[data-page="precos-e-planos"] .methodology-new .new-section-heading {
  margin-bottom: 34px;
}
html[data-page="precos-e-planos"] .methodology-summary {
  max-width: 1080px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.68;
  text-align: center;
}

html[data-page="precos-e-planos"] .carousel-controls-below {
  margin: 24px auto 0;
  justify-content: center;
}
html[data-page="precos-e-planos"] .teachers {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(47, 128, 237, 0.1);
  border-bottom: 1px solid rgba(0, 179, 136, 0.12);
  background:
    radial-gradient(
      circle at 8% 14%,
      rgba(47, 128, 237, 0.13),
      transparent 31%
    ),
    radial-gradient(
      circle at 92% 84%,
      rgba(0, 179, 136, 0.14),
      transparent 33%
    ),
    linear-gradient(135deg, #edf7ff 0%, #f7fcff 50%, #eefaf5 100%);
}
html[data-page="precos-e-planos"] .teachers::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(
    circle,
    rgba(28, 131, 169, 0.22) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  mask-image: linear-gradient(120deg, #000, transparent 72%);
  pointer-events: none;
}
html[data-page="precos-e-planos"] .teachers .section-shell {
  position: relative;
  z-index: 1;
}
html[data-page="precos-e-planos"][data-theme="dark"] .teachers {
  border-color: rgba(106, 220, 190, 0.13);
  background:
    radial-gradient(circle at 8% 14%, rgba(47, 128, 237, 0.2), transparent 31%),
    radial-gradient(
      circle at 92% 84%,
      rgba(0, 179, 136, 0.18),
      transparent 34%
    ),
    linear-gradient(135deg, #061725 0%, #092b3c 52%, #083b35 100%);
}
html[data-page="precos-e-planos"][data-theme="dark"] .teachers .teacher-card {
  border-color: rgba(129, 211, 196, 0.15);
  background: linear-gradient(145deg, #0c2a3b, #103849);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

html[data-page="precos-e-planos"] .final-cta .cta-content {
  gap: 34px;
}
html[data-page="precos-e-planos"] .final-cta h2 {
  max-width: 690px;
  margin: 20px 0 0;
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.08;
}
html[data-page="precos-e-planos"] .cta-logos {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
html[data-page="precos-e-planos"] .cta-logos img {
  width: auto;
  max-width: 190px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}
html[data-page="precos-e-planos"] .cta-logos .cta-logo-revisamed {
  height: 23px;
}
html[data-page="precos-e-planos"] .cta-logos .cta-logo-medprovas {
  height: 34px;
}
html[data-page="precos-e-planos"] .cta-logos .cta-logo-medflix {
  height: 29px;
}
html[data-page="precos-e-planos"]
  .final-cta
  .cta-content
  > div:last-child
  .button {
  min-height: 58px;
  padding-inline: 27px;
  font-size: 15px;
}

html[data-page="precos-e-planos"] .blog .section-subtitle-new,
html[data-page="precos-e-planos"] .blog .section-subtitle-new em {
  font-weight: 400;
}

@media (max-width: 1100px) and (min-width: 901px) {
  html[data-page="precos-e-planos"] .hero-desempenho {
    background-size: 62% auto;
  }
  html[data-page="precos-e-planos"] .hero-desempenho .hero-copy,
  html[data-page="precos-e-planos"] .hero-desempenho h1,
  html[data-page="precos-e-planos"] .hero-desempenho .hero-copy > p {
    max-width: 500px;
  }
  html[data-page="precos-e-planos"] .hero-resource-list {
    max-width: 520px;
  }
}

@media (max-width: 900px) and (min-width: 601px) {
  html[data-page="precos-e-planos"] .hero-inteligencia .hero-copy,
  html[data-page="precos-e-planos"] .hero-jornada .hero-copy {
    max-width: 52%;
  }
  html[data-page="precos-e-planos"] .hero-inteligencia h1,
  html[data-page="precos-e-planos"] .hero-jornada h1 {
    max-width: 100%;
    font-size: 42px;
  }
  html[data-page="precos-e-planos"] .hero-desempenho {
    background-position: right bottom;
    background-size: 58% auto;
  }
  html[data-page="precos-e-planos"] .hero-desempenho .hero-copy,
  html[data-page="precos-e-planos"] .hero-desempenho h1,
  html[data-page="precos-e-planos"] .hero-desempenho .hero-copy > p {
    max-width: 48%;
  }
  html[data-page="precos-e-planos"] .hero-resource-list {
    max-width: 100%;
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .hero-resource-list li:last-child {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  html[data-page="precos-e-planos"] .hero .eyebrow {
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: 0.1em;
  }
  html[data-page="precos-e-planos"] .hero-desempenho {
    background-position: center bottom;
    background-size: auto 48%;
  }
  html[data-page="precos-e-planos"] .hero-inteligencia,
  html[data-page="precos-e-planos"] .hero-jornada {
    background-position: center bottom;
    background-size: auto var(--hero-mobile-size);
  }
  html[data-page="precos-e-planos"] .hero-brand-logo {
    width: min(76vw, 300px);
    max-width: 100%;
    margin-bottom: 20px;
  }
  html[data-page="precos-e-planos"] .hero-desempenho h1 {
    font-size: 42px;
  }
  html[data-page="precos-e-planos"] .hero-desempenho .hero-copy > p {
    font-size: 13px;
  }
  html[data-page="precos-e-planos"] .hero-inteligencia h1,
  html[data-page="precos-e-planos"] .hero-jornada h1 {
    font-size: 42px;
  }
  html[data-page="precos-e-planos"] .hero-copy > p.hero-lead {
    margin: 14px 0 8px;
    font-size: 13px;
    line-height: 1.45;
  }
  html[data-page="precos-e-planos"] .hero-copy > p.hero-supporting {
    margin: 0 0 16px;
    font-size: 12px;
    line-height: 1.42;
  }
  html[data-page="precos-e-planos"] .hero-resource-list {
    max-width: none;
    margin: 15px 0 18px;
    gap: 6px;
  }
  html[data-page="precos-e-planos"] .hero-resource-list li {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    font-size: 13px;
  }
  html[data-page="precos-e-planos"] .platform-browser {
    min-height: 58px;
    align-items: flex-start;
    padding-top: 12px;
  }
  html[data-page="precos-e-planos"] .platform-browser-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    white-space: normal;
  }
  html[data-page="precos-e-planos"] .platform-browser-copy strong {
    font-size: 11px;
  }
  html[data-page="precos-e-planos"] .platform-browser-copy span {
    display: block;
    font-size: 9px;
    line-height: 1.25;
  }
  html[data-page="precos-e-planos"] .platform-description {
    margin-top: 21px;
    font-size: 14px;
  }
  html[data-page="precos-e-planos"] .methodology-summary {
    margin-top: 25px;
    font-size: 14px;
    text-align: left;
  }
  html[data-page="precos-e-planos"] .carousel-controls-below {
    align-self: center;
    margin-top: 18px;
  }
  html[data-page="precos-e-planos"] .cta-logos {
    gap: 17px;
  }
  html[data-page="precos-e-planos"] .cta-logos img {
    max-width: 145px;
  }
}

/* Alinhamento final dos banners e acabamento visual das seções */
html[data-page="precos-e-planos"] .hero-container {
  align-items: stretch;
  padding-top: 64px;
  padding-bottom: 76px;
}
html[data-page="precos-e-planos"] .hero-copy {
  width: 100%;
  height: 80%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}
html[data-page="precos-e-planos"] .hero-brand-logo {
  align-self: start;
  margin: 0;
}
html[data-page="precos-e-planos"] .hero-message {
  align-self: center;
  min-width: 0;
}
html[data-page="precos-e-planos"] .hero-message h1 {
  margin: 0;
}
html[data-page="precos-e-planos"] .hero-message > .hero-lead {
  max-width: 565px;
  margin: 20px 0 0;
  color: #d7e6ef;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.55;
}
html[data-page="precos-e-planos"] .hero-message .hero-resource-list {
  margin: 24px 0 0;
}
html[data-page="precos-e-planos"] .hero-buttons {
  align-self: end;
  margin-top: 0;
}

html[data-page="precos-e-planos"] .section-title-pill {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 0 0 17px;
  border-radius: 0;
  background: transparent;
  color: var(--ink) !important;
  box-shadow: none;
  text-shadow: none;
}
html[data-page="precos-e-planos"] .section-title-pill::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(120px, 38%, 205px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: translateX(-50%);
}
html[data-page="precos-e-planos"] .ecosystem-videos .section-title-pill {
  color: #fff !important;
}
html[data-page="precos-e-planos"] .section-after-grid {
  max-width: 880px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}
html[data-page="precos-e-planos"] .courses-showcase .section-after-grid {
  color: #456575;
}
html[data-page="precos-e-planos"][data-theme="dark"]
  .courses-showcase
  .section-after-grid,
html[data-page="precos-e-planos"] .ecosystem-videos .section-after-grid {
  color: #c9dce4;
}

html[data-page="precos-e-planos"] .final-cta {
  padding: 36px 0;
}
html[data-page="precos-e-planos"] .final-cta .cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 245px;
  gap: 48px;
}
html[data-page="precos-e-planos"] .final-cta .cta-content > div:first-child {
  max-width: none;
  min-width: 0;
}
html[data-page="precos-e-planos"] .final-cta .section-title-pill {
  margin: 0;
  padding: 13px 31px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1598c7 0%, #08b5a0 54%, #68d55e 100%);
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(9, 173, 150, 0.2);
  text-shadow: 0 1px 2px rgba(3, 65, 75, 0.18);
}
html[data-page="precos-e-planos"] .final-cta .section-title-pill::after {
  display: none;
}
html[data-page="precos-e-planos"] .final-cta h2 {
  max-width: none;
  margin: 16px 0 0;
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
html[data-page="precos-e-planos"] .cta-logos {
  margin-top: 20px;
  gap: 25px;
  flex-wrap: nowrap;
}
html[data-page="precos-e-planos"] .cta-logos .cta-logo-revisamed {
  height: 23px;
}
html[data-page="precos-e-planos"] .cta-logos .cta-logo-medprovas {
  height: 34px;
}
html[data-page="precos-e-planos"] .cta-logos .cta-logo-medflix {
  height: 29px;
}
html[data-page="precos-e-planos"] .final-cta .cta-content > div:last-child {
  width: 245px;
}
html[data-page="precos-e-planos"]
  .final-cta
  .cta-content
  > div:last-child
  .button {
  width: 100%;
}

html[data-page="precos-e-planos"] .floating-contact {
  height: 58px;
  padding: 0 20px;
  gap: 11px;
  border-radius: 19px;
  font-size: 13px;
}
html[data-page="precos-e-planos"] .floating-contact svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 1080px) {
  html[data-page="precos-e-planos"] .final-cta .cta-content {
    gap: 30px;
  }
  html[data-page="precos-e-planos"] .final-cta h2 {
    font-size: 25px;
  }
}

@media (max-width: 900px) {
  html[data-page="precos-e-planos"] .final-cta {
    padding: 56px 0;
  }
  html[data-page="precos-e-planos"] .final-cta .cta-content {
    display: flex;
    align-items: flex-start;
    gap: 32px;
  }
  html[data-page="precos-e-planos"] .final-cta h2 {
    white-space: normal;
  }
  html[data-page="precos-e-planos"] .final-cta .cta-content > div:last-child {
    width: 100%;
  }
}

@media (max-width: 640px) {
  html[data-page="precos-e-planos"] .hero-container {
    align-items: stretch;
    padding-top: 42px;
    padding-bottom: 190px;
  }
  html[data-page="precos-e-planos"] .hero-brand-logo {
    margin-bottom: 0;
  }
  html[data-page="precos-e-planos"] .hero-message > .hero-lead {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.45;
  }
  html[data-page="precos-e-planos"] .hero-message .hero-resource-list {
    margin-top: 15px;
  }
  html[data-page="precos-e-planos"] .section-title-pill {
    width: max-content;
    max-width: 100%;
    padding: 0 0 15px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  html[data-page="precos-e-planos"] .final-cta .section-title-pill {
    width: max-content;
    padding: 12px 20px 13px;
    border-radius: 28px;
    background: linear-gradient(90deg, #1598c7 0%, #08b5a0 54%, #68d55e 100%);
    box-shadow: 0 12px 28px rgba(9, 173, 150, 0.18);
  }
  html[data-page="precos-e-planos"] .section-after-grid {
    margin-top: 24px;
    font-size: 14px;
  }
  html[data-page="precos-e-planos"] .cta-logos {
    gap: 16px;
    flex-wrap: wrap;
  }
  html[data-page="precos-e-planos"] .floating-contact {
    width: 58px;
    height: 58px;
    padding: 0;
  }
}

/* Ajustes editoriais — agosto/2026 */
html[data-page="precos-e-planos"] .section-title-pill {
  text-transform: uppercase !important;
}
html[data-page="precos-e-planos"] .platform-viewport,
html[data-page="precos-e-planos"] .platform-panel {
  background: #fff;
}
html[data-page="precos-e-planos"] .methodology-platform-tour {
  margin-top: 58px;
  padding-top: 58px;
  border-top: 1px solid color-mix(in srgb, var(--border) 82%, transparent);
}
html[data-page="precos-e-planos"] .post-body h3 {
  font-weight: 500;
}

/* Professores: duas linhas de cinco, avançando uma linha por vez. */
html[data-page="precos-e-planos"] .teacher-carousel {
  --teacher-columns: 5;
  --teacher-visible-rows: 2;
}
html[data-page="precos-e-planos"] .teacher-carousel .carousel-viewport {
  padding: 4px 2px;
  transition: height 0.35s ease;
}
html[data-page="precos-e-planos"] .teacher-carousel .carousel-track {
  display: grid;
  grid-template-columns: repeat(var(--teacher-columns), minmax(0, 1fr));
  grid-auto-rows: 356px;
  gap: 16px;
  align-items: stretch;
}
html[data-page="precos-e-planos"] .teacher-carousel .carousel-slide {
  width: auto;
  min-width: 0;
  flex-basis: auto !important;
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-card {
  height: 80%;
  padding: 0 0 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 6px;
  text-align: center;
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin-bottom: 0;
  flex: 0 0 auto;
  border-radius: 0;
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background:
    linear-gradient(135deg, rgba(47, 128, 237, 0.86), rgba(0, 151, 178, 0.82)),
    var(--surface-soft);
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-thumb span,
html[data-page="precos-e-planos"] .teacher-carousel .teacher-card a {
  display: none;
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-card h3 {
  margin: 19px 12px 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-card h3::before {
  content: "";
  width: 48px;
  height: 2px;
  margin: 0 auto 11px;
  display: block;
  background: var(--green);
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-card p {
  min-height: 0;
  margin: 0 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 980px) {
  html[data-page="precos-e-planos"] .teacher-carousel {
    --teacher-columns: 3;
    --teacher-visible-rows: 2;
  }
  html[data-page="precos-e-planos"] .teacher-carousel .carousel-track {
    grid-auto-rows: 330px;
  }
}
@media (max-width: 640px) {
  html[data-page="precos-e-planos"] .teacher-carousel {
    --teacher-columns: 1;
    --teacher-visible-rows: 1;
  }
  html[data-page="precos-e-planos"] .teacher-carousel .carousel-track {
    grid-auto-rows: 430px;
  }
}

/* Depoimentos completos em modal */
html[data-page="precos-e-planos"] body.testimonial-modal-open {
  overflow: hidden;
}
html[data-page="precos-e-planos"] .testimonial-modal {
  width: min(720px, calc(100% - 32px));
  max-height: min(82vh, 760px);
  padding: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  border-radius: 26px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(4, 25, 42, 0.36);
}
html[data-page="precos-e-planos"] .testimonial-modal::backdrop {
  background: rgba(3, 20, 33, 0.76);
  backdrop-filter: blur(8px);
}
html[data-page="precos-e-planos"] .testimonial-modal-inner {
  position: relative;
  max-height: min(82vh, 760px);
  padding: 34px;
  overflow-y: auto;
}
html[data-page="precos-e-planos"] .testimonial-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
html[data-page="precos-e-planos"] .testimonial-modal-profile {
  padding-right: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
}
html[data-page="precos-e-planos"] .testimonial-modal-face {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 3px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(8, 41, 66, 0.2);
}
html[data-page="precos-e-planos"] .testimonial-modal-name {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}
html[data-page="precos-e-planos"] .testimonial-modal-meta,
html[data-page="precos-e-planos"] .testimonial-modal-institution {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
html[data-page="precos-e-planos"] .testimonial-modal-stars {
  margin: 28px 0 16px;
  color: #e8b747;
  font-size: 13px;
  letter-spacing: 3px;
}
html[data-page="precos-e-planos"] .testimonial-modal-text {
  margin: 0;
  white-space: pre-line;
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="precos-e-planos"] .post-body h3 {
  min-height: 0;
  font-weight: 500;
}
html[data-page="precos-e-planos"] .post-cover {
  height: 160px !important;
}
@media (max-width: 640px) {
  html[data-page="precos-e-planos"] .testimonial-modal-inner {
    padding: 26px 22px 28px;
  }
  html[data-page="precos-e-planos"] .testimonial-modal-profile {
    padding-right: 48px;
    align-items: flex-start;
  }
  html[data-page="precos-e-planos"] .testimonial-modal-face {
    width: 78px;
    height: 78px;
  }
  html[data-page="precos-e-planos"] .testimonial-modal-text {
    font-size: 15px;
  }
}

/* Banner 01 — apresentação principal da plataforma */
html[data-page="precos-e-planos"] .hero-inteligencia .hero-container {
  padding-top: 48px;
  padding-bottom: 62px;
}
html[data-page="precos-e-planos"] .hero-inteligencia .hero-copy {
  width: 100%;
  max-width: 790px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
html[data-page="precos-e-planos"] .hero-inteligencia .hero-brand-logo {
  width: clamp(230px, 19vw, 300px);
  max-width: 72%;
  margin: 0 0 22px;
}
html[data-page="precos-e-planos"] .hero-inteligencia .hero-message {
  width: 100%;
  align-self: auto;
}
html[data-page="precos-e-planos"] .hero-inteligencia .hero-message h1 {
  max-width: 790px;
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 3vw, 50px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.042em;
}
html[data-page="precos-e-planos"] .hero-inteligencia .hero-message h1 span,
html[data-page="precos-e-planos"] .hero-inteligencia .hero-message h1 em {
  display: block;
}
html[data-page="precos-e-planos"] .hero-inteligencia .hero-message h1 em {
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 1101px) {
  html[data-page="precos-e-planos"] .hero-inteligencia .hero-message h1 span,
  html[data-page="precos-e-planos"] .hero-inteligencia .hero-message h1 em {
    white-space: nowrap;
  }
}
html[data-page="precos-e-planos"]
  .hero-inteligencia
  .hero-message
  > .hero-lead {
  max-width: 670px;
  margin: 24px 0 0;
  color: #c9d7e2;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 400;
  line-height: 1.55;
}
html[data-page="precos-e-planos"] .hero-inteligencia .hero-lead strong {
  font-weight: 650;
  background: linear-gradient(90deg, #4da5ff, #35d5ac);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
html[data-page="precos-e-planos"] .hero-inteligencia .hero-buttons {
  width: 100%;
  margin-top: 27px;
  align-self: auto;
  gap: 14px;
}
html[data-page="precos-e-planos"] .hero-inteligencia .button {
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.015em;
  white-space: nowrap;
}
html[data-page="precos-e-planos"] .hero-inteligencia .button.primary {
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 17px 38px rgba(0, 151, 178, 0.3);
}
html[data-page="precos-e-planos"] .hero-inteligencia .button.primary:hover {
  box-shadow: 0 21px 46px rgba(0, 179, 136, 0.36);
}
html[data-page="precos-e-planos"] .hero-inteligencia .button.ghost {
  border-color: rgba(35, 173, 237, 0.86);
  background: rgba(4, 22, 37, 0.42);
  color: #dce8f0;
}
html[data-page="precos-e-planos"] .hero-inteligencia .button.ghost:hover {
  border-color: var(--green);
  background: rgba(0, 179, 136, 0.12);
}
html[data-page="precos-e-planos"] .hero-jornada .button,
html[data-page="precos-e-planos"] .hero-desempenho .button {
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.015em;
  white-space: nowrap;
}
html[data-page="precos-e-planos"] .hero-jornada .button.primary,
html[data-page="precos-e-planos"] .hero-desempenho .button.primary {
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 17px 38px rgba(0, 151, 178, 0.3);
}
html[data-page="precos-e-planos"] .hero-jornada .button.primary:hover,
html[data-page="precos-e-planos"] .hero-desempenho .button.primary:hover {
  box-shadow: 0 21px 46px rgba(0, 179, 136, 0.36);
}
html[data-page="precos-e-planos"] .hero-inteligencia .hero-preparation-note {
  margin: 17px 0 0;
  color: #9eb1bf;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

@media (max-width: 1100px) and (min-width: 601px) {
  html[data-page="precos-e-planos"] .hero-inteligencia .hero-copy {
    max-width: 64%;
  }
  html[data-page="precos-e-planos"] .hero-inteligencia .hero-brand-logo {
    width: clamp(210px, 24vw, 260px);
    margin-bottom: 18px;
  }
  html[data-page="precos-e-planos"] .hero-inteligencia .hero-message h1 {
    font-size: clamp(32px, 4.25vw, 43px);
  }
  html[data-page="precos-e-planos"]
    .hero-inteligencia
    .hero-message
    > .hero-lead {
    margin-top: 18px;
    font-size: 14px;
  }
  html[data-page="precos-e-planos"] .hero-inteligencia .hero-buttons {
    margin-top: 20px;
    gap: 10px;
  }
  html[data-page="precos-e-planos"] .hero-inteligencia .button {
    min-height: 52px;
    padding-inline: 17px;
    font-size: 11px;
  }
  html[data-page="precos-e-planos"] .hero-jornada .button,
  html[data-page="precos-e-planos"] .hero-desempenho .button {
    min-height: 52px;
    padding-inline: 17px;
    font-size: 11px;
  }
  html[data-page="precos-e-planos"] .hero-inteligencia .hero-preparation-note {
    margin-top: 13px;
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  html[data-page="precos-e-planos"] .hero-inteligencia .hero-container {
    padding-top: 34px;
    padding-bottom: 150px;
  }
  html[data-page="precos-e-planos"] .hero-inteligencia .hero-copy {
    max-width: 100%;
    height: auto;
    justify-content: flex-start;
  }
  html[data-page="precos-e-planos"] .hero-inteligencia .hero-brand-logo {
    width: min(61vw, 230px);
    max-width: 100%;
    margin-bottom: 17px;
  }
  html[data-page="precos-e-planos"] .hero-inteligencia .hero-message h1 {
    max-width: 100%;
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }
  html[data-page="precos-e-planos"]
    .hero-inteligencia
    .hero-message
    > .hero-lead {
    max-width: 100%;
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.5;
  }
  html[data-page="precos-e-planos"] .hero-inteligencia .hero-buttons {
    margin-top: 19px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }
  html[data-page="precos-e-planos"] .hero-inteligencia .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 15px;
    font-size: 11px;
  }
  html[data-page="precos-e-planos"] .hero-jornada .button,
  html[data-page="precos-e-planos"] .hero-desempenho .button {
    min-height: 50px;
    padding-inline: 15px;
    font-size: 11px;
  }
  html[data-page="precos-e-planos"] .hero-inteligencia .hero-preparation-note {
    max-width: 330px;
    margin-top: 12px;
    font-size: 11px;
  }
}

/* ===== Ajustes solicitados — 17/08/2026 ===== */
html[data-page="precos-e-planos"] .hero-inteligencia .hero-message h1 {
  font-size: 42px !important;
  font-weight: 100 !important;
}
html[data-page="precos-e-planos"] .hero-inteligencia .hero-message h1 span,
html[data-page="precos-e-planos"] .hero-inteligencia .hero-message h1 em {
  font-weight: 100 !important;
}

html[data-page="precos-e-planos"] .solution-logo-stack {
  position: relative;
  z-index: 5;
  width: 235px;
  max-width: 62%;
  display: grid;
  gap: 10px;
  align-content: start;
}
html[data-page="precos-e-planos"] .solution-logo-stack img {
  width: 100%;
  height: 42px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

/* Professores: proporções originais das thumbs/cards. */
html[data-page="precos-e-planos"] .teacher-carousel .carousel-track {
  grid-auto-rows: 356px;
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-card h3 {
  margin-top: 19px;
}
@media (max-width: 980px) {
  html[data-page="precos-e-planos"] .teacher-carousel .carousel-track {
    grid-auto-rows: 412px;
  }
}
@media (max-width: 640px) {
  html[data-page="precos-e-planos"] .teacher-carousel .carousel-track {
    grid-auto-rows: 538px;
  }
}

/* Planos Revisamed */
html[data-page="precos-e-planos"] .ri-plans {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(0, 179, 136, 0.11),
      transparent 28%
    ),
    radial-gradient(circle at 9% 80%, rgba(47, 128, 237, 0.1), transparent 30%),
    var(--surface);
}
html[data-page="precos-e-planos"] .ri-plans-head {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
}
html[data-page="precos-e-planos"] .ri-plans-head > div:first-child {
  width: 100%;
}
html[data-page="precos-e-planos"] .ri-plans-controls {
  position: static;
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  transform: none;
}
html[data-page="precos-e-planos"] .ri-plans-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 9px 24px rgba(8, 41, 66, 0.07);
  transition: 0.25s ease;
}
html[data-page="precos-e-planos"] .ri-plans-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 128, 237, 0.32);
  color: var(--blue);
}
html[data-page="precos-e-planos"] .ri-plans-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}
html[data-page="precos-e-planos"] .ri-plans-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: none;
  border-radius: 28px;
  outline: none;
}
html[data-page="precos-e-planos"] .ri-plans-viewport::-webkit-scrollbar {
  display: none;
}
html[data-page="precos-e-planos"] .ri-plans-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  padding: 10px 0 24px;
}
html[data-page="precos-e-planos"] .ri-plan-card {
  position: relative;
  min-height: 635px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid #14a9c7;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface) 96%, #fff),
    var(--surface)
  );
  box-shadow: 0 18px 44px rgba(8, 41, 66, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
html[data-page="precos-e-planos"] .ri-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 62px rgba(8, 41, 66, 0.14);
  border-color: #14a9c7;
}
html[data-page="precos-e-planos"] .ri-plan-card-featured {
  border: 2px solid color-mix(in srgb, var(--green) 58%, var(--blue) 42%);
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 179, 136, 0.12), transparent 28%),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--surface) 94%, #effff9),
      var(--surface)
    );
  box-shadow: 0 24px 58px rgba(0, 151, 178, 0.16);
}
html[data-page="precos-e-planos"] .ri-plan-card-featured h3 {
  color: color-mix(in srgb, var(--ink) 86%, var(--green));
}
html[data-page="precos-e-planos"] .ri-plan-topline {
  min-height: 25px;
}
html[data-page="precos-e-planos"] .ri-plan-topline span {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 9%, transparent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html[data-page="precos-e-planos"] .ri-plan-card-featured .ri-plan-topline span {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 7px 18px rgba(0, 151, 178, 0.16);
}
html[data-page="precos-e-planos"] .ri-plan-card h3 {
  margin: 18px 0 0;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
html[data-page="precos-e-planos"] .ri-plan-summary {
  min-height: 74px;
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}
html[data-page="precos-e-planos"] .ri-plan-duration {
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface-soft);
}
html[data-page="precos-e-planos"] .ri-plan-duration button {
  min-height: 38px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.22s ease;
}
html[data-page="precos-e-planos"] .ri-plan-duration button.active {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 8px 18px rgba(0, 151, 178, 0.18);
}
html[data-page="precos-e-planos"] .ri-plan-price {
  color: var(--ink);
  font-size: 24px;
  font-weight: 820;
  letter-spacing: -0.035em;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}
html[data-page="precos-e-planos"] .ri-plan-price-from span {
  margin-right: 7px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
}
html[data-page="precos-e-planos"] .ri-plan-price.is-changing {
  opacity: 0.25;
  transform: translateY(3px);
}
html[data-page="precos-e-planos"] .ri-plan-access {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}
html[data-page="precos-e-planos"] .ri-plan-card ul {
  margin: 22px 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}
html[data-page="precos-e-planos"] .ri-plan-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.42;
}
html[data-page="precos-e-planos"] .ri-plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 10px;
  font-weight: 900;
}
html[data-page="precos-e-planos"] .ri-plan-cta {
  min-height: 48px;
  margin-top: auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  font-size: 12px;
  font-weight: 820;
  box-shadow: 0 13px 28px rgba(0, 151, 178, 0.18);
}
html[data-page="precos-e-planos"] .ri-plan-cta span {
  font-size: 19px;
  transition: transform 0.2s ease;
}
html[data-page="precos-e-planos"] .ri-plan-cta:hover span {
  transform: translateX(4px);
}
html[data-page="precos-e-planos"] .ri-plans-hint {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}
@media (max-width: 1050px) {
  html[data-page="precos-e-planos"] .ri-plans-track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
}
@media (max-width: 680px) {
  html[data-page="precos-e-planos"] .ri-plans-head {
    flex-direction: column;
    align-items: center;
  }
  html[data-page="precos-e-planos"] .ri-plans-track {
    grid-auto-columns: 86%;
    gap: 14px;
  }
  html[data-page="precos-e-planos"] .ri-plan-card {
    min-height: 610px;
    padding: 24px;
  }
  html[data-page="precos-e-planos"] .ri-plans-arrow {
    width: 42px;
    height: 42px;
  }
}

/* Carrosséis com navegação lateral — ajuste agosto/2026 */
html[data-page="precos-e-planos"] .ri-plans-head {
  margin-bottom: 30px;
}
html[data-page="precos-e-planos"] .ri-plans-head .section-title-pill::after {
  width: clamp(120px, 38%, 205px);
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="precos-e-planos"] .ri-plans-stage,
html[data-page="precos-e-planos"] .carousel-side-stage {
  width: 100%;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 14px;
}
html[data-page="precos-e-planos"] .ri-plans-stage .ri-plans-arrow,
html[data-page="precos-e-planos"] .carousel-side-stage > .carousel-arrow {
  position: relative;
  z-index: 3;
  align-self: center;
  justify-self: center;
}
html[data-page="precos-e-planos"] .ri-plans-stage .ri-plans-viewport,
html[data-page="precos-e-planos"] .carousel-side-stage > .premium-carousel {
  min-width: 0;
  width: 100%;
}
html[data-page="precos-e-planos"] .carousel-side-stage .carousel-viewport {
  padding-inline: 2px;
}
html[data-page="precos-e-planos"] .testimonial-side-stage,
html[data-page="precos-e-planos"] .teacher-side-stage {
  margin-top: 0;
}

/* Professores: paginação horizontal de 10 em 10 (5 colunas x 2 linhas). */
html[data-page="precos-e-planos"] .teacher-carousel {
  --teacher-page-columns: 5;
  min-width: 0;
}
html[data-page="precos-e-planos"] .teacher-carousel .carousel-viewport {
  overflow: hidden;
  padding: 4px 2px 6px;
}
html[data-page="precos-e-planos"] .teacher-carousel .carousel-track {
  display: flex !important;
  width: 100%;
  gap: 0 !important;
  align-items: stretch;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 0.8, 0.24, 1);
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-page {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--teacher-page-columns), minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 16px;
  align-content: start;
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-card {
  width: 100%;
  height: 100% !important;
  min-height: 0;
  padding: 0 0 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 6px;
  text-align: center;
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-thumb {
  width: 100%;
  height: auto !important;
  aspect-ratio: 16 / 9;
  margin-bottom: 0;
  flex: 0 0 auto;
  border-radius: 0;
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-card h3 {
  margin: 17px 10px 5px;
}
html[data-page="precos-e-planos"] .teacher-carousel .teacher-card p {
  margin: 0 10px;
}

@media (max-width: 980px) {
  html[data-page="precos-e-planos"] .ri-plans-stage,
  html[data-page="precos-e-planos"] .carousel-side-stage {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 10px;
  }
  html[data-page="precos-e-planos"] .teacher-carousel {
    --teacher-page-columns: 3;
  }
  html[data-page="precos-e-planos"] .teacher-carousel .teacher-page {
    gap: 14px;
  }
}
@media (max-width: 680px) {
  html[data-page="precos-e-planos"] .ri-plans-stage,
  html[data-page="precos-e-planos"] .carousel-side-stage {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 7px;
  }
  html[data-page="precos-e-planos"] .ri-plans-stage .ri-plans-arrow,
  html[data-page="precos-e-planos"] .carousel-side-stage > .carousel-arrow {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 25px;
  }
}
@media (max-width: 640px) {
  html[data-page="precos-e-planos"] .teacher-carousel {
    --teacher-page-columns: 1;
  }
  html[data-page="precos-e-planos"] .teacher-carousel .teacher-page {
    gap: 0;
  }
}

html[data-page="precos-e-planos"] .pricing-page {
  background: var(--surface);
}
html[data-page="precos-e-planos"] .pricing-page main {
  overflow: clip;
}
html[data-page="precos-e-planos"] .pricing-hero {
  position: relative;
  padding: 154px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(47, 128, 237, 0.18),
      transparent 31%
    ),
    radial-gradient(
      circle at 88% 15%,
      rgba(0, 179, 136, 0.16),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--surface) 93%, #071e2b),
      var(--surface)
    );
}
html[data-page="precos-e-planos"] .pricing-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue),
    var(--green),
    transparent
  );
  opacity: 0.55;
}
html[data-page="precos-e-planos"] .pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 64px;
  align-items: center;
}
html[data-page="precos-e-planos"] .pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="precos-e-planos"] .pricing-eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="precos-e-planos"] .pricing-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  font-weight: 100;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
html[data-page="precos-e-planos"] .pricing-hero h1 em {
  color: inherit;
  font-style: normal;
  font-weight: inherit;
}
html[data-page="precos-e-planos"] .pricing-hero-copy > p {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}
html[data-page="precos-e-planos"] .pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
html[data-page="precos-e-planos"] .pricing-primary,
html[data-page="precos-e-planos"] .pricing-secondary {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 850;
  transition: 0.25s ease;
}
html[data-page="precos-e-planos"] .pricing-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 16px 36px rgba(0, 151, 178, 0.22);
}
html[data-page="precos-e-planos"] .pricing-secondary {
  color: var(--ink);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
}
html[data-page="precos-e-planos"] .pricing-primary:hover,
html[data-page="precos-e-planos"] .pricing-secondary:hover {
  transform: translateY(-2px);
}
html[data-page="precos-e-planos"] .pricing-hero-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--surface) 91%, var(--blue) 9%),
    color-mix(in srgb, var(--surface) 96%, var(--green) 4%)
  );
  box-shadow: 0 24px 70px rgba(7, 30, 45, 0.16);
}
html[data-page="precos-e-planos"] .pricing-hero-panel small {
  color: var(--green);
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
html[data-page="precos-e-planos"] .pricing-hero-panel h2 {
  margin: 12px 0 20px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
html[data-page="precos-e-planos"] .pricing-hero-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
html[data-page="precos-e-planos"] .pricing-hero-panel li {
  display: flex;
  gap: 11px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
html[data-page="precos-e-planos"] .pricing-hero-panel li::before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 11px;
  font-weight: 900;
}
html[data-page="precos-e-planos"] .pricing-proof {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}
html[data-page="precos-e-planos"] .pricing-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
html[data-page="precos-e-planos"] .pricing-proof-item {
  min-height: 92px;
  padding: 19px 21px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(8, 41, 66, 0.08);
}
html[data-page="precos-e-planos"] .pricing-proof-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  align-self: center;
  margin: 0;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.03em;
}
html[data-page="precos-e-planos"] .pricing-proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}
html[data-page="precos-e-planos"] .pricing-proof-item > div > span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

html[data-page="precos-e-planos"] .pricing-plans {
  position: relative;
  padding-top: 140px;
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 179, 136, 0.08), transparent 25%),
    radial-gradient(
      circle at 8% 72%,
      rgba(47, 128, 237, 0.08),
      transparent 27%
    ),
    var(--surface);
}
html[data-page="precos-e-planos"] .pricing-section-head {
  max-width: 850px;
  margin: 0 auto 44px;
  text-align: center;
}
html[data-page="precos-e-planos"] .pricing-section-head .section-title-pill {
  display: inline-block;
}
html[data-page="precos-e-planos"]
  .pricing-section-head
  .section-title-pill::after {
  width: clamp(130px, 42%, 220px);
  height: 4px;
  margin-inline: auto;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="precos-e-planos"] .pricing-section-head p {
  margin: 20px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
html[data-page="precos-e-planos"] .pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
html[data-page="precos-e-planos"] .pricing-plan-grid .ri-plan-card {
  min-height: 760px;
  scroll-snap-align: unset;
}
html[data-page="precos-e-planos"] .pricing-plan-grid .ri-plan-card:nth-child(1),
html[data-page="precos-e-planos"] .pricing-plan-grid .ri-plan-card:nth-child(2),
html[data-page="precos-e-planos"]
  .pricing-plan-grid
  .ri-plan-card:nth-child(3) {
  margin-bottom: 4px;
}

/* Conteúdo complementar e condições comerciais dos novos planos. */
html[data-page="precos-e-planos"] .pricing-plan-grid .ri-plan-card h3 {
  min-height: 0;
}
html[data-page="precos-e-planos"] .pricing-plan-grid .ri-plan-summary {
  min-height: 0;
}
html[data-page="precos-e-planos"] .pricing-plan-grid .ri-plan-price {
  min-height: 58px;
  display: flex;
  align-items: flex-end;
}
html[data-page="precos-e-planos"] .ri-plan-duration-single {
  grid-template-columns: 1fr;
}
html[data-page="precos-e-planos"] .ri-plan-cash {
  width: max-content;
  max-width: 100%;
  margin: 12px 0 0;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--green) 34%, var(--border));
  border-radius: 999px;
  color: color-mix(in srgb, var(--green) 76%, var(--ink));
  background: color-mix(in srgb, var(--green) 9%, transparent);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
html[data-page="precos-e-planos"] .pricing-plans .ri-plan-cta {
  font-size: 14px;
}
html[data-page="precos-e-planos"] .ri-plan-areas,
html[data-page="precos-e-planos"] .ri-plan-closing,
html[data-page="precos-e-planos"] .ri-plan-list-title {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
html[data-page="precos-e-planos"] .ri-plan-areas {
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface-soft);
}
html[data-page="precos-e-planos"] .ri-plan-list-title {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 850;
}
html[data-page="precos-e-planos"] .ri-plan-card .ri-plan-course-list {
  margin-top: 0;
}
html[data-page="precos-e-planos"] .ri-plan-closing {
  color: color-mix(in srgb, var(--muted) 86%, var(--blue));
  font-weight: 650;
}
html[data-page="precos-e-planos"] .ri-plan-specialties {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
html[data-page="precos-e-planos"] .ri-plan-specialties a {
  min-height: 38px;
  padding: 7px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--blue) 24%, var(--border));
  border-radius: 10px;
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 7%, var(--surface));
  font-size: 9px;
  line-height: 1.25;
  font-weight: 850;
  text-align: center;
  transition: 0.2s ease;
}
html[data-page="precos-e-planos"] .ri-plan-specialties a:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

/* Premium em faixa horizontal, apresentado antes dos seis cards principais. */
html[data-page="precos-e-planos"] .ri-plan-card-premium {
  min-height: 444px;
  margin-bottom: 34px;
  padding: 38px 40px;
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(0, 1.22fr);
  gap: 46px;
  overflow: hidden;
  border: 2px solid #14a9c7;
  border-radius: 26px;
  color: #f7fbff;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(0, 179, 136, 0.12),
      transparent 30%
    ),
    linear-gradient(115deg, #0d2332 0%, #0b2634 58%, #07333a 100%);
  box-shadow: 0 24px 64px rgba(2, 19, 30, 0.26);
}
html[data-page="precos-e-planos"] .ri-plan-card-premium::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 179, 136, 0.16), transparent 68%);
  pointer-events: none;
}
html[data-page="precos-e-planos"] .ri-premium-overview,
html[data-page="precos-e-planos"] .ri-premium-benefits,
html[data-page="precos-e-planos"] .ri-premium-cta {
  position: relative;
  z-index: 1;
}
html[data-page="precos-e-planos"] .ri-premium-benefits {
  display: flex;
  flex-direction: column;
}
html[data-page="precos-e-planos"] .ri-plan-card-premium h3 {
  margin: 18px 0 0;
  color: #f7fbff;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1;
  letter-spacing: -0.045em;
}
html[data-page="precos-e-planos"] .ri-plan-card-premium .ri-plan-summary {
  min-height: 0;
  margin-bottom: 20px;
  color: #c7d9e4;
}
html[data-page="precos-e-planos"] .ri-plan-card-premium .ri-plan-duration {
  border-color: rgba(70, 158, 193, 0.34);
  background: #0a2134;
}
html[data-page="precos-e-planos"]
  .ri-plan-card-premium
  .ri-plan-duration
  button {
  color: #c7d9e4;
}
html[data-page="precos-e-planos"]
  .ri-plan-card-premium
  .ri-plan-duration
  button.active {
  color: #fff;
}
html[data-page="precos-e-planos"] .ri-plan-card-premium .ri-plan-price {
  color: #f7fbff;
  font-size: 31px;
}
html[data-page="precos-e-planos"] .ri-plan-card-premium .ri-plan-access {
  color: #b9cdda;
}
html[data-page="precos-e-planos"] .ri-plan-card-premium .ri-plan-cash {
  border-color: rgba(0, 213, 171, 0.5);
  color: #20dcb8;
  background: rgba(0, 179, 136, 0.08);
}
html[data-page="precos-e-planos"] .ri-premium-kicker {
  margin: 0;
  color: #f7fbff;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -0.02em;
}
html[data-page="precos-e-planos"] .ri-plan-card-premium ul {
  margin: 22px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 18px;
}
html[data-page="precos-e-planos"] .ri-plan-card-premium li {
  color: #f7fbff;
  font-size: 13px;
}
html[data-page="precos-e-planos"] .ri-premium-closing {
  max-width: 720px;
  margin: 23px 0 0;
  color: #c2d5df;
  font-size: 13px;
  line-height: 1.6;
}
html[data-page="precos-e-planos"] .ri-premium-cta {
  width: min(100%, 360px);
  align-self: flex-end;
  margin: 28px 0 0 auto;
}

html[data-page="precos-e-planos"] .pricing-guide {
  background: var(--surface-soft);
}
html[data-page="precos-e-planos"] .pricing-guide-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}
html[data-page="precos-e-planos"] .pricing-guide-copy h2 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
html[data-page="precos-e-planos"] .pricing-guide-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
html[data-page="precos-e-planos"] .pricing-goals {
  display: grid;
  gap: 14px;
}
html[data-page="precos-e-planos"] .pricing-goal {
  padding: 23px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 17px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(8, 41, 66, 0.06);
}
html[data-page="precos-e-planos"] .pricing-goal b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 12px;
}
html[data-page="precos-e-planos"] .pricing-goal strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}
html[data-page="precos-e-planos"] .pricing-goal span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
html[data-page="precos-e-planos"] .pricing-goal em {
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

html[data-page="precos-e-planos"] .pricing-steps {
  background: var(--surface);
}
html[data-page="precos-e-planos"] .pricing-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
html[data-page="precos-e-planos"] .pricing-step {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}
html[data-page="precos-e-planos"] .pricing-step b {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.12em;
}
html[data-page="precos-e-planos"] .pricing-step h3 {
  margin: 15px 0 0;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.025em;
}
html[data-page="precos-e-planos"] .pricing-step p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

html[data-page="precos-e-planos"] .pricing-final-cta {
  padding: 26px 0 88px;
  background: var(--surface);
}
html[data-page="precos-e-planos"] .pricing-final-box {
  position: relative;
  overflow: hidden;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--blue) 24%, var(--border));
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(0, 179, 136, 0.15),
      transparent 31%
    ),
    radial-gradient(
      circle at 8% 90%,
      rgba(47, 128, 237, 0.13),
      transparent 34%
    ),
    var(--surface-soft);
}
html[data-page="precos-e-planos"] .pricing-final-box h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
html[data-page="precos-e-planos"] .pricing-final-box p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
html[data-page="precos-e-planos"] .pricing-page .faq {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  border-top: 1px solid color-mix(in srgb, var(--blue) 22%, var(--border));
  background:
    radial-gradient(
      circle at 8% 16%,
      color-mix(in srgb, var(--blue) 14%, transparent),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 84%,
      color-mix(in srgb, var(--green) 12%, transparent),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--surface-soft) 90%, var(--blue) 10%),
      var(--surface-soft) 52%,
      color-mix(in srgb, var(--surface-soft) 91%, var(--green) 9%)
    );
}
html[data-page="precos-e-planos"] .pricing-page .faq-grid {
  position: relative;
  z-index: 1;
}
html[data-page="precos-e-planos"] .pricing-page .faq-list {
  padding: 6px 24px;
  border: 1px solid color-mix(in srgb, var(--blue) 16%, var(--border));
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: 0 22px 54px rgba(8, 41, 66, 0.09);
}

@media (max-width: 1080px) {
  html[data-page="precos-e-planos"] .pricing-hero-grid,
  html[data-page="precos-e-planos"] .pricing-guide-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  html[data-page="precos-e-planos"] .pricing-hero-panel {
    max-width: 700px;
  }
  html[data-page="precos-e-planos"] .pricing-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html[data-page="precos-e-planos"] .ri-plan-card-premium {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .ri-premium-cta {
    align-self: flex-start;
    margin-left: 0;
  }
}
@media (max-width: 760px) {
  html[data-page="precos-e-planos"] .pricing-hero {
    padding: 128px 0 72px;
  }
  html[data-page="precos-e-planos"] .pricing-proof {
    margin-top: -18px;
  }
  html[data-page="precos-e-planos"] .pricing-proof-grid,
  html[data-page="precos-e-planos"] .pricing-steps-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .pricing-plan-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .pricing-plan-grid .ri-plan-card {
    min-height: auto;
  }
  html[data-page="precos-e-planos"] .ri-plan-card-premium {
    padding: 30px 26px;
  }
  html[data-page="precos-e-planos"] .pricing-goal {
    grid-template-columns: auto 1fr;
  }
  html[data-page="precos-e-planos"] .pricing-goal em {
    grid-column: 2;
  }
  html[data-page="precos-e-planos"] .pricing-final-box {
    padding: 34px 26px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  html[data-page="precos-e-planos"] .pricing-hero h1 {
    font-size: 42px;
  }
  html[data-page="precos-e-planos"] .pricing-hero-actions {
    display: grid;
  }
  html[data-page="precos-e-planos"] .pricing-primary,
  html[data-page="precos-e-planos"] .pricing-secondary {
    width: 100%;
  }
  html[data-page="precos-e-planos"] .pricing-hero-panel {
    padding: 24px;
  }
  html[data-page="precos-e-planos"] .pricing-plan-grid .ri-plan-card {
    padding: 24px;
  }
  html[data-page="precos-e-planos"] .pricing-plan-grid .ri-plan-card h3,
  html[data-page="precos-e-planos"] .pricing-plan-grid .ri-plan-summary,
  html[data-page="precos-e-planos"] .pricing-plan-grid .ri-plan-price {
    min-height: 0;
  }
  html[data-page="precos-e-planos"] .ri-plan-specialties,
  html[data-page="precos-e-planos"] .ri-plan-card-premium ul {
    grid-template-columns: 1fr;
  }
  html[data-page="precos-e-planos"] .ri-premium-cta {
    width: 100%;
  }
  html[data-page="precos-e-planos"] .pricing-page .faq-list {
    padding-inline: 14px;
    border-radius: 18px;
  }
}

/* ============================================================
 * Página(s): r3-cirurgia, r3-clinica-medica, r3-pediatria
 * ============================================================ */
:is(
  html[data-page="r3-cirurgia"],
  html[data-page="r3-clinica-medica"],
  html[data-page="r3-pediatria"]
) {
  --blue: #2f80ed;
  --blue-2: #195fc3;
  --blue-deep: #082942;
  --blue-darker: #051a2a;
  --green: #00b388;
  --green-2: #2bd4a8;
  --ink: #102939;
  --muted: #667085;
  --surface: #ffffff;
  --surface-soft: #f5f9fc;
  --surface-blue: #edf7ff;
  --border: rgba(16, 41, 57, 0.12);
  --header: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 70px rgba(8, 41, 66, 0.14);
  --max: 1240px;
  color-scheme: light;
}
:is(
  html[data-page="r3-cirurgia"],
  html[data-page="r3-clinica-medica"],
  html[data-page="r3-pediatria"]
)[data-theme="dark"] {
  --ink: #f6fbff;
  --muted: #a7bac8;
  --surface: #071b2a;
  --surface-soft: #0b2335;
  --surface-blue: #0d2a40;
  --border: rgba(236, 247, 255, 0.12);
  --header: rgba(6, 24, 37, 0.92);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  * {
  box-sizing: border-box;
}
:is(
  html[data-page="r3-cirurgia"],
  html[data-page="r3-clinica-medica"],
  html[data-page="r3-pediatria"]
) {
  scroll-behavior: smooth;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  body.menu-open {
  overflow: hidden;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  img {
  max-width: 100%;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  a {
  color: inherit;
  text-decoration: none;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  button,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  input {
  font: inherit;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  button {
  color: inherit;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
























:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-r1 {
  position: relative;
  min-height: 720px;
  margin-top: 84px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 24%,
      rgba(0, 179, 136, 0.27),
      transparent 26%
    ),
    radial-gradient(
      circle at 15% 75%,
      rgba(47, 128, 237, 0.2),
      transparent 28%
    ),
    linear-gradient(135deg, #061a2a 0%, #082d48 54%, #083a4e 100%);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-r1::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
  animation: r3-especialidades-orbFloat 7s ease-in-out infinite;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-orb.one {
  width: 280px;
  height: 280px;
  right: -80px;
  top: 80px;
  border: 1px solid rgba(43, 212, 168, 0.38);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-orb.two {
  width: 160px;
  height: 160px;
  right: 34%;
  bottom: -60px;
  border: 1px solid rgba(47, 128, 237, 0.38);
  animation-delay: -2s;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-orb.three {
  width: 18px;
  height: 18px;
  background: var(--green-2);
  right: 11%;
  top: 17%;
  box-shadow: 0 0 40px rgba(43, 212, 168, 0.85);
  animation-delay: -4s;
}
@keyframes r3-especialidades-orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
  padding-block: 78px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8d9f5;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-2), var(--blue));
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-copy
  h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-copy
  h1
  span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #fff, #a9e8db 54%, #94caff);
  -webkit-background-clip: text;
  color: transparent;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-copy
  > p {
  max-width: 660px;
  margin: 26px 0 0;
  color: #c2d6e2;
  font-size: 18px;
  line-height: 1.72;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-facts
  span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #e5f2f8;
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-facts
  i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(43, 212, 168, 0.18);
  color: var(--green-2);
  font-style: normal;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .btn-primary,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .btn-secondary {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 850;
  transition: 0.25s;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .btn-primary {
  background: linear-gradient(135deg, var(--green), #009b78);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 179, 136, 0.28);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(0, 179, 136, 0.36);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-visual {
  position: relative;
  perspective: 1200px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .video-shell {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  transform: rotateY(-5deg) rotateX(1.5deg);
  animation: r3-especialidades-visualFloat 5.5s ease-in-out infinite;
}
@keyframes r3-especialidades-visualFloat {
  0%,
  100% {
    transform: rotateY(-5deg) rotateX(1.5deg) translateY(0);
  }
  50% {
    transform: rotateY(-3deg) rotateX(1deg) translateY(-10px);
  }
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .browser-bar {
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 18px 18px 0 0;
  background: rgba(4, 20, 31, 0.78);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .browser-bar
  i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .browser-bar
  span {
  margin-left: auto;
  color: #9fb9c8;
  font-size: 10px;
  letter-spacing: 0.08em;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 0 0 19px 19px;
  background: #000;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .video-frame
  iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .floating-proof {
  position: absolute;
  left: -38px;
  bottom: -35px;
  width: 220px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: #102939;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
  animation: r3-especialidades-proofFloat 4.8s ease-in-out infinite;
}
@keyframes r3-especialidades-proofFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .floating-proof
  strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--blue-deep);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .floating-proof
  span {
  display: block;
  margin-top: 7px;
  color: #617484;
  font-size: 12px;
  line-height: 1.5;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .floating-proof
  .mini-stars {
  margin-top: 9px;
  color: #f5a623;
  letter-spacing: 2px;
}

:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-strip {
  position: relative;
  z-index: 5;
  margin-top: -30px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-item {
  padding: 27px 26px;
  position: relative;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--border);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-item
  small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-item
  strong {
  font-size: 18px;
  line-height: 1.3;
}

:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  section {
  position: relative;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .section-pad {
  padding: 104px 0;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .section-head {
  max-width: 790px;
  margin: 0 auto 50px;
  text-align: center;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .section-head
  .label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .section-head
  .label::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .section-head
  h2 {
  margin: 0;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .section-head
  p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .why-section {
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    var(--surface-soft) 100%
  );
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .why-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .why-copy
  h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .why-copy
  > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 25px rgba(8, 41, 66, 0.05);
  transition: 0.25s;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .benefit-item:hover {
  transform: translateX(6px);
  border-color: rgba(47, 128, 237, 0.34);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.13),
    rgba(0, 179, 136, 0.14)
  );
  color: var(--blue);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .benefit-item
  h3 {
  margin: 1px 0 6px;
  font-size: 16px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .benefit-item
  p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .why-panel {
  position: relative;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #082942, #0a3b56 68%, #0d5b69);
  color: #fff;
  box-shadow: var(--shadow);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .why-panel::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -100px;
  top: -80px;
  border-radius: 50%;
  border: 1px solid rgba(43, 212, 168, 0.35);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .why-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -120px 20%;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.32),
    transparent 68%
  );
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .panel-kicker {
  position: relative;
  z-index: 1;
  color: #a8d8ef;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .why-panel
  h3 {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-cards {
  --path-progress: 0%;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin-top: 30px;
  padding-left: 10px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-cards::before,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-cards::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 30px;
  top: 34px;
  width: 3px;
  border-radius: 99px;
  pointer-events: none;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-cards::before {
  bottom: 34px;
  background: rgba(255, 255, 255, 0.11);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-cards::after {
  height: var(--path-progress);
  max-height: calc(100% - 68px);
  background: linear-gradient(180deg, #39a4ff 0%, #22d3b1 56%, #79f0c8 100%);
  box-shadow:
    0 0 18px rgba(43, 212, 168, 0.64),
    0 0 34px rgba(47, 128, 237, 0.25);
  transition: height 0.56s cubic-bezier(0.2, 0.8, 0.2, 1);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card {
  --path-delay: 0ms;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 76px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  cursor: pointer;
  outline: none;
  transition:
    transform 0.34s cubic-bezier(0.2, 0.85, 0.2, 1.18) var(--path-delay),
    border-color 0.3s ease var(--path-delay),
    background 0.3s ease var(--path-delay),
    box-shadow 0.3s ease var(--path-delay);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 8%,
    rgba(255, 255, 255, 0.12) 48%,
    transparent 78%
  );
  transform: translateX(-125%);
  opacity: 0;
  pointer-events: none;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card
  b {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: #103f58;
  color: #a9c5d4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition:
    color 0.3s ease var(--path-delay),
    background 0.3s ease var(--path-delay),
    transform 0.34s cubic-bezier(0.2, 0.85, 0.2, 1.18) var(--path-delay),
    box-shadow 0.3s ease var(--path-delay);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card
  strong {
  display: block;
  font-size: 14px;
  transition: color 0.3s ease var(--path-delay);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card
  span {
  display: block;
  margin-top: 4px;
  color: #abc4d2;
  font-size: 11px;
  transition: color 0.3s ease var(--path-delay);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card
  em {
  font-style: normal;
  color: #7faabd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition:
    color 0.3s ease var(--path-delay),
    transform 0.3s ease var(--path-delay);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card.is-lit,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card:hover,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card:focus-visible {
  transform: translateX(8px);
  border-color: rgba(86, 228, 187, 0.42);
  background: linear-gradient(
    105deg,
    rgba(47, 128, 237, 0.17),
    rgba(0, 179, 136, 0.14)
  );
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.17),
    0 0 0 1px rgba(105, 237, 200, 0.05) inset;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card.is-lit::after,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card:hover::after,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card:focus-visible::after {
  opacity: 1;
  animation: r3-especialidades-pathShine 0.72s ease forwards var(--path-delay);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card.is-lit
  b,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card:hover
  b,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card:focus-visible
  b {
  background: linear-gradient(135deg, #328ff5, var(--green));
  color: #fff;
  transform: scale(1.09) rotate(-3deg);
  box-shadow:
    0 0 0 6px rgba(47, 128, 237, 0.09),
    0 13px 27px rgba(0, 179, 136, 0.25);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card.is-lit
  strong {
  color: #fff;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card.is-lit
  span {
  color: #cfe3ec;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .path-card.is-lit
  em {
  color: #9cf4dc;
  transform: translateX(-2px);
}
@keyframes r3-especialidades-pathShine {
  to {
    transform: translateX(125%);
  }
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .panel-note {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--green-2);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 0 14px 14px 0;
  color: #c9dce6;
  font-size: 13px;
  line-height: 1.65;
}

:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resources-section {
  background: var(--surface);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  isolation: isolate;
  transition:
    transform 0.36s cubic-bezier(0.2, 0.85, 0.2, 1.15),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 145px;
  height: 145px;
  right: -72px;
  top: -76px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.16),
    transparent 68%
  );
  transition:
    transform 0.45s ease,
    opacity 0.35s ease;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: right 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-card:hover {
  transform: translateY(-9px);
  border-color: rgba(47, 128, 237, 0.38);
  box-shadow: 0 23px 52px rgba(8, 41, 66, 0.13);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-card:hover::before {
  transform: scale(1.22);
  opacity: 0.86;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-card:hover::after {
  right: 0;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-icon {
  position: relative;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  background: linear-gradient(145deg, #2f80ed 0%, #1d98d8 45%, #00b388 100%);
  color: #fff;
  box-shadow:
    0 14px 30px rgba(47, 128, 237, 0.23),
    0 0 0 7px rgba(47, 128, 237, 0.055);
  transform: translateZ(0);
  transition:
    transform 0.38s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  right: 8px;
  top: 8px;
  border-radius: 50%;
  background: #8cf3d6;
  box-shadow: 0 0 13px rgba(140, 243, 214, 0.95);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-icon
  svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.16));
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-card:nth-child(2n)
  .resource-icon {
  background: linear-gradient(145deg, #0d8fc5, #00b388);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-card:nth-child(3n)
  .resource-icon {
  background: linear-gradient(145deg, #3c72e8, #0aa99a);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-card:hover
  .resource-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.08);
  box-shadow:
    0 20px 38px rgba(0, 179, 136, 0.25),
    0 0 0 9px rgba(0, 179, 136, 0.07);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-card
  h3 {
  margin: 23px 0 9px;
  font-size: 17px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .resource-card
  p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-section {
  overflow: hidden;
  background: linear-gradient(135deg, #edf7ff 0%, #f3fffb 52%, #eff6ff 100%);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )[data-theme="dark"]
  .method-section {
  background: linear-gradient(135deg, #0b2335, #0c2d37 52%, #0c2537);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-flow {
  --method-progress: 0%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  padding-top: 6px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-line,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-line-fill {
  position: absolute;
  z-index: 0;
  left: calc(12.5% - 1px);
  top: 42px;
  height: 4px;
  border-radius: 99px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-line {
  right: calc(12.5% - 1px);
  background: rgba(8, 41, 66, 0.12);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )[data-theme="dark"]
  .method-line {
  background: rgba(255, 255, 255, 0.12);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-line-fill {
  width: var(--method-progress);
  max-width: calc(75% - 2px);
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 18px rgba(0, 179, 136, 0.36);
  transition: width 0.52s cubic-bezier(0.2, 0.8, 0.2, 1);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step {
  position: relative;
  z-index: 1;
  text-align: center;
  cursor: pointer;
  outline: none;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step
  b {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(47, 128, 237, 0.22);
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(8, 41, 66, 0.12);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step
  b::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid transparent;
  border-radius: inherit;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step.active
  b,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step:hover
  b,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step:focus-visible
  b {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  transform: translateY(-6px) scale(1.09);
  box-shadow:
    0 0 0 8px rgba(47, 128, 237, 0.09),
    0 19px 38px rgba(0, 179, 136, 0.22);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step.active
  b::before,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step:hover
  b::before,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step:focus-visible
  b::before {
  border-color: rgba(0, 179, 136, 0.32);
  transform: scale(1.04);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step
  h3 {
  margin: 21px 0 8px;
  font-size: 18px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step
  p {
  margin: 0 auto;
  max-width: 250px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  transition: transform 0.3s ease;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step.active
  h3,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step:hover
  h3 {
  color: var(--green);
  transform: translateY(-2px);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step.active
  p,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .method-step:hover
  p {
  transform: translateY(-2px);
}

:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .pricing-section {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 54px;
  align-items: start;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .pricing-content
  h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .pricing-content
  > p {
  margin: 20px 0 0;
  max-width: 690px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .included-list
  span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .included-list
  i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 179, 136, 0.12);
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .bonus-card {
  margin-top: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  border: 1px solid rgba(47, 128, 237, 0.2);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.09),
    rgba(0, 179, 136, 0.09)
  );
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .bonus-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .bonus-card
  h3 {
  margin: 0 0 6px;
  font-size: 17px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .bonus-card
  p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .price-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border: 1px solid rgba(47, 128, 237, 0.22);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(8, 41, 66, 0.17);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .price-card-top {
  padding: 26px 28px;
  background: linear-gradient(135deg, var(--blue-deep), #0c4a65);
  color: #fff;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .price-card-top
  span {
  display: block;
  color: #acd1e1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .price-card-top
  h3 {
  margin: 10px 0 0;
  font-size: 28px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .price-body {
  padding: 28px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .price-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .installments {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .installments
  strong {
  font-size: 47px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--blue-deep);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )[data-theme="dark"]
  .installments
  strong {
  color: #fff;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .installments
  span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .cash {
  margin-top: 11px;
  color: var(--muted);
  font-size: 13px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .cash
  b {
  color: var(--ink);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .price-benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .price-benefits
  span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .price-benefits
  i {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .buy-button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), #008e70);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(0, 179, 136, 0.24);
  transition: 0.25s;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(0, 179, 136, 0.34);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .secure-note {
  margin: 14px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .numbers-section {
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(100deg, #0c6173, #2c8c88 55%, #66b59f);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .number-item {
  text-align: center;
  padding: 15px 20px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .number-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .number-item
  strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.05em;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .number-item
  span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .teachers-section {
  background: var(--surface);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .teacher-track-wrap {
  position: relative;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .teacher-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .teacher-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  transition: 0.28s;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .teacher-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 42px rgba(8, 41, 66, 0.12);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .teacher-card
  img {
  width: 100%;
  aspect-ratio: 1.45/1;
  object-fit: cover;
  display: block;
  background: transparent;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .teacher-info {
  padding: 17px 17px 20px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .teacher-info
  h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .teacher-info
  p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .objections-section {
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .objection-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .objection-card
  span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.13),
    rgba(0, 179, 136, 0.13)
  );
  color: var(--blue);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .objection-card
  h3 {
  margin: 18px 0 9px;
  font-size: 19px;
  line-height: 1.35;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .objection-card
  p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-section {
  background: var(--surface);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 58px;
  align-items: start;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-aside {
  position: sticky;
  top: 116px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--blue-deep), #0b4b63);
  color: #fff;
  box-shadow: var(--shadow);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-aside
  small {
  color: #9fc7d9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-aside
  h2 {
  margin: 14px 0 0;
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-aside
  p {
  margin: 17px 0 0;
  color: #bdd2dd;
  font-size: 14px;
  line-height: 1.72;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-aside
  a {
  margin-top: 23px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), #009478);
  font-size: 13px;
  font-weight: 850;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-list {
  display: grid;
  gap: 10px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-question {
  width: 100%;
  padding: 20px 21px;
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 18px;
  align-items: center;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-question
  strong {
  font-size: 14px;
  line-height: 1.45;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-question
  i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--surface-soft);
  color: var(--blue);
  font-style: normal;
  font-size: 22px;
  transition: 0.25s;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-item.open
  .faq-question
  i {
  transform: rotate(45deg);
  background: rgba(0, 179, 136, 0.12);
  color: var(--green);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-answer
  > div {
  overflow: hidden;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-answer
  p {
  margin: 0;
  padding: 0 21px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-item.open
  .faq-answer {
  grid-template-rows: 1fr;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .faq-item.open
  .faq-answer
  p {
  padding-bottom: 21px;
}

:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .final-cta {
  padding: 0 0 104px;
  background: var(--surface);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .final-cta-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, #071f32, #0b4560 58%, #0f7a78);
  box-shadow: var(--shadow);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .final-cta-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -120px;
  top: -180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .final-cta-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  right: 14%;
  bottom: -100px;
  background: radial-gradient(circle, rgba(43, 212, 168, 0.3), transparent 66%);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .final-cta-copy {
  position: relative;
  z-index: 1;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .final-cta-copy
  span {
  color: #a9d8e9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .final-cta-copy
  h2 {
  margin: 12px 0 0;
  max-width: 780px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .final-cta-copy
  p {
  margin: 18px 0 0;
  color: #c4d9e3;
  font-size: 15px;
  line-height: 1.7;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .final-cta
  .btn-primary {
  position: relative;
  z-index: 1;
  min-width: 220px;
}

:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .brand-strip {
  padding: 27px 0 30px;
  background: #fff;
  border-top: 1px solid #dfe8ee;
  border-bottom: 1px solid #dfe8ee;
  color: #102939;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .brand-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 1px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .brand-strip-divider {
  width: 1px;
  height: 94px;
  background: #d7e1e8;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .brand-group
  h2 {
  margin: 0 0 15px;
  text-align: center;
  color: #49668f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .brand-logos {
  display: grid;
  gap: 10px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .institution-logos {
  grid-template-columns: repeat(5, 1fr);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .developed-logos {
  grid-template-columns: repeat(4, 1fr);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .brand-logo-card {
  height: 72px;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e5ed;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(8, 41, 66, 0.05);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .brand-logo-card
  img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  footer {
  background: #061b2a;
  color: #fff;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-main {
  padding: 74px 0 58px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-brand
  img {
  width: 235px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-brand
  > p {
  margin: 25px 0;
  color: #9fb4c2;
  font-size: 15px;
  line-height: 1.75;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .socials {
  display: flex;
  gap: 9px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .socials
  a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: #a7bdca;
  transition: 0.2s;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .socials
  a:hover {
  background: var(--blue);
  color: #fff;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-links
  h3 {
  margin: 0 0 21px;
  font-size: 15px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-links
  > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-links
  a,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-links
  span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9db2bf;
  font-size: 13px;
  line-height: 1.5;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-links
  a:hover {
  color: #fff;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-links
  small {
  margin-top: 8px;
  color: #7892a1;
  font-size: 11px;
  line-height: 1.5;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-bottom
  > div {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #7894a3;
  font-size: 11px;
  line-height: 1.55;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .floating-contact {
  position: fixed;
  z-index: 80;
  right: 23px;
  bottom: 23px;
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00b388, #008e70);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0, 179, 136, 0.3);
  transition: 0.25s;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .floating-contact:hover {
  transform: translateY(-3px);
}

:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    *,
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    *::before,
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  
  
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .hero-inner {
    gap: 38px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .floating-proof {
    left: -18px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .teacher-track {
    grid-template-columns: repeat(3, 1fr);
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .pricing-grid {
    grid-template-columns: 1fr 390px;
    gap: 34px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .footer-main {
    grid-template-columns: 250px 1fr;
    gap: 45px;
  }
}
@media (max-width: 920px) {
  
  
  
  
  
  
  
  
  
  
  
  
  
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .hero-r1,
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .hero-inner {
    min-height: auto;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .hero-r1 {
    margin-top: 74px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 76px 100px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .hero-copy {
    text-align: center;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .hero-copy
    > p {
    margin-inline: auto;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .eyebrow {
    justify-content: center;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .hero-facts,
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .hero-actions {
    justify-content: center;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .hero-visual {
    max-width: 720px;
    margin-inline: auto;
    width: 100%;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .quick-item:nth-child(2)::after {
    display: none;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .quick-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .why-grid,
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .pricing-grid,
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .faq-layout {
    grid-template-columns: 1fr;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .why-panel {
    min-height: auto;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .price-card,
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .faq-aside {
    position: relative;
    top: auto;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .method-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .method-line,
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .method-line-fill {
    display: none;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .number-item:nth-child(2) {
    border-right: 0;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .number-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .objection-grid {
    grid-template-columns: 1fr;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .teacher-track {
    grid-template-columns: repeat(2, 1fr);
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .brand-strip-inner {
    grid-template-columns: 1fr;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .brand-strip-divider {
    width: 100%;
    height: 1px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .footer-main {
    grid-template-columns: 1fr;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .section-shell {
    width: min(100% - 28px, var(--max));
  }
  
  
  
  
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .hero-inner {
    padding-block: 60px 88px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .hero-copy
    h1 {
    font-size: 42px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .hero-copy
    > p {
    font-size: 16px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .video-shell {
    transform: none;
    animation: none;
    padding: 7px;
    border-radius: 20px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .floating-proof {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 13px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .quick-grid {
    grid-template-columns: 1fr;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .quick-item::after {
    display: none !important;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .quick-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .section-pad {
    padding: 78px 0;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .resources-grid,
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .included-list,
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .numbers-grid,
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .teacher-track {
    grid-template-columns: 1fr;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .method-flow {
    display: flex;
    gap: 14px;
    margin-inline: -14px;
    padding: 8px 14px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .method-flow::-webkit-scrollbar {
    display: none;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .method-line,
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .method-line-fill {
    display: none;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .method-step {
    flex: 0 0 min(78vw, 286px);
    min-height: 250px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.64);
    scroll-snap-align: center;
    box-shadow: 0 14px 34px rgba(8, 41, 66, 0.07);
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )[data-theme="dark"]
    .method-step {
    background: rgba(255, 255, 255, 0.045);
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .number-item {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .number-item:last-child {
    border-bottom: 0;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .pricing-content {
    text-align: center;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .bonus-card {
    text-align: left;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .installments
    strong {
    font-size: 42px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .final-cta-card {
    padding: 34px 26px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .final-cta
    .btn-primary {
    min-width: 0;
    width: 100%;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .institution-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .institution-logos
    .brand-logo-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 5px);
    justify-self: center;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .developed-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .footer-links {
    grid-template-columns: 1fr;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .footer-bottom
    > div {
    padding-block: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .floating-contact
    span {
    display: none;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .floating-contact {
    width: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* ============================================================
   Cabeçalho e rodapé globais — padrão para todas as páginas
   ============================================================ */









:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-brand
  > p {
  font-size: 17px !important;
  line-height: 1.75 !important;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-links
  h3 {
  font-size: 17px !important;
  letter-spacing: 0.01em;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-links
  a,
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-links
  span {
  font-size: 15px !important;
  line-height: 1.62 !important;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-links
  small {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .footer-bottom
  > div {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .brand-group
  h2 {
  font-size: 14px !important;
}

@media (max-width: 920px) {
  
  
}

/* R1: mesma escala de H1 utilizada no hero da Home */
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .hero-copy
  h1 {
  font-size: clamp(40px, 3.4vw, 50px);
  line-height: 1.035;
  letter-spacing: -0.045em;
}

/* Informações rápidas com ícones temáticos */
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 15px;
  padding: 24px 22px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid currentColor;
  box-shadow: 0 10px 24px rgba(8, 41, 66, 0.08);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-icon
  svg {
  width: 25px;
  height: 25px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-icon-blue {
  color: #2f80ed;
  background: rgba(47, 128, 237, 0.1);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-icon-green {
  color: #00a983;
  background: rgba(0, 179, 136, 0.11);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-icon-cyan {
  color: #0097b2;
  background: rgba(0, 151, 178, 0.11);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-icon-orange {
  color: #ef8a22;
  background: rgba(239, 138, 34, 0.11);
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-item
  small {
  margin-bottom: 6px;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .quick-item
  strong {
  display: block;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .why-copy
  .benefit-list {
  margin-top: 32px;
}

@media (max-width: 640px) {
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .hero-copy
    h1 {
    font-size: 34px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .quick-item {
    grid-template-columns: 48px 1fr;
    padding: 20px 18px;
  }
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .quick-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

/* Ajustes tipográficos das páginas internas R3 */
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .why-copy
  h2 {
  max-width: 660px;
  font-size: clamp(30px, 3.15vw, 42px);
  line-height: 1.08;
}
:is(
    html[data-page="r3-cirurgia"],
    html[data-page="r3-clinica-medica"],
    html[data-page="r3-pediatria"]
  )
  .pricing-content
  h2 {
  max-width: 720px;
  font-size: clamp(30px, 3.25vw, 43px);
  line-height: 1.08;
}
@media (max-width: 640px) {
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .why-copy
    h2,
  :is(
      html[data-page="r3-cirurgia"],
      html[data-page="r3-clinica-medica"],
      html[data-page="r3-pediatria"]
    )
    .pricing-content
    h2 {
    font-size: 29px;
  }
}

/* Cabeçalho centralizado no limite de 1240 px */
@media (min-width: 921px) {
  
  
  
  
  
  
}

/* ============================================================
 * Página(s): r3
 * ============================================================ */
html[data-page="r3"] {
  --blue: #2f80ed;
  --blue-2: #195fc3;
  --blue-deep: #082942;
  --blue-darker: #051a2a;
  --green: #00b388;
  --green-2: #2bd4a8;
  --ink: #102939;
  --muted: #667085;
  --surface: #ffffff;
  --surface-soft: #f5f9fc;
  --surface-blue: #edf7ff;
  --border: rgba(16, 41, 57, 0.12);
  --header: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 70px rgba(8, 41, 66, 0.14);
  --max: 1240px;
  color-scheme: light;
}
html[data-page="r3"][data-theme="dark"] {
  --ink: #f6fbff;
  --muted: #a7bac8;
  --surface: #071b2a;
  --surface-soft: #0b2335;
  --surface-blue: #0d2a40;
  --border: rgba(236, 247, 255, 0.12);
  --header: rgba(6, 24, 37, 0.92);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}
html[data-page="r3"] * {
  box-sizing: border-box;
}
html[data-page="r3"] {
  scroll-behavior: smooth;
}
html[data-page="r3"] body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}
html[data-page="r3"] body.menu-open {
  overflow: hidden;
}
html[data-page="r3"] img {
  max-width: 100%;
}
html[data-page="r3"] a {
  color: inherit;
  text-decoration: none;
}
html[data-page="r3"] button,
html[data-page="r3"] input {
  font: inherit;
}
html[data-page="r3"] button {
  color: inherit;
}
html[data-page="r3"] .section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
























html[data-page="r3"] .hero-r1 {
  position: relative;
  min-height: 720px;
  margin-top: 84px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 24%,
      rgba(0, 179, 136, 0.27),
      transparent 26%
    ),
    radial-gradient(
      circle at 15% 75%,
      rgba(47, 128, 237, 0.2),
      transparent 28%
    ),
    linear-gradient(135deg, #061a2a 0%, #082d48 54%, #083a4e 100%);
}
html[data-page="r3"] .hero-r1::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
html[data-page="r3"] .hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
  animation: r3-orbFloat 7s ease-in-out infinite;
}
html[data-page="r3"] .hero-orb.one {
  width: 280px;
  height: 280px;
  right: -80px;
  top: 80px;
  border: 1px solid rgba(43, 212, 168, 0.38);
}
html[data-page="r3"] .hero-orb.two {
  width: 160px;
  height: 160px;
  right: 34%;
  bottom: -60px;
  border: 1px solid rgba(47, 128, 237, 0.38);
  animation-delay: -2s;
}
html[data-page="r3"] .hero-orb.three {
  width: 18px;
  height: 18px;
  background: var(--green-2);
  right: 11%;
  top: 17%;
  box-shadow: 0 0 40px rgba(43, 212, 168, 0.85);
  animation-delay: -4s;
}
@keyframes r3-orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}
html[data-page="r3"] .hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
  padding-block: 78px;
}
html[data-page="r3"] .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8d9f5;
}
html[data-page="r3"] .eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-2), var(--blue));
}
html[data-page="r3"] .hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}
html[data-page="r3"] .hero-copy h1 span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #fff, #a9e8db 54%, #94caff);
  -webkit-background-clip: text;
  color: transparent;
}
html[data-page="r3"] .hero-copy > p {
  max-width: 660px;
  margin: 26px 0 0;
  color: #c2d6e2;
  font-size: 18px;
  line-height: 1.72;
}
html[data-page="r3"] .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
html[data-page="r3"] .hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #e5f2f8;
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}
html[data-page="r3"] .hero-facts i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(43, 212, 168, 0.18);
  color: var(--green-2);
  font-style: normal;
}
html[data-page="r3"] .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
html[data-page="r3"] .btn-primary,
html[data-page="r3"] .btn-secondary {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 850;
  transition: 0.25s;
}
html[data-page="r3"] .btn-primary {
  background: linear-gradient(135deg, var(--green), #009b78);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 179, 136, 0.28);
}
html[data-page="r3"] .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(0, 179, 136, 0.36);
}
html[data-page="r3"] .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
html[data-page="r3"] .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
html[data-page="r3"] .hero-visual {
  position: relative;
  perspective: 1200px;
}
html[data-page="r3"] .video-shell {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  transform: rotateY(-5deg) rotateX(1.5deg);
  animation: r3-visualFloat 5.5s ease-in-out infinite;
}
@keyframes r3-visualFloat {
  0%,
  100% {
    transform: rotateY(-5deg) rotateX(1.5deg) translateY(0);
  }
  50% {
    transform: rotateY(-3deg) rotateX(1deg) translateY(-10px);
  }
}
html[data-page="r3"] .browser-bar {
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 18px 18px 0 0;
  background: rgba(4, 20, 31, 0.78);
}
html[data-page="r3"] .browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}
html[data-page="r3"] .browser-bar span {
  margin-left: auto;
  color: #9fb9c8;
  font-size: 10px;
  letter-spacing: 0.08em;
}
html[data-page="r3"] .video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 0 0 19px 19px;
  background: #000;
}
html[data-page="r3"] .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
html[data-page="r3"] .floating-proof {
  position: absolute;
  left: -38px;
  bottom: -35px;
  width: 220px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: #102939;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
  animation: r3-proofFloat 4.8s ease-in-out infinite;
}
@keyframes r3-proofFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
html[data-page="r3"] .floating-proof strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--blue-deep);
}
html[data-page="r3"] .floating-proof span {
  display: block;
  margin-top: 7px;
  color: #617484;
  font-size: 12px;
  line-height: 1.5;
}
html[data-page="r3"] .floating-proof .mini-stars {
  margin-top: 9px;
  color: #f5a623;
  letter-spacing: 2px;
}

html[data-page="r3"] .quick-strip {
  position: relative;
  z-index: 5;
  margin-top: -30px;
}
html[data-page="r3"] .quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
html[data-page="r3"] .quick-item {
  padding: 27px 26px;
  position: relative;
}
html[data-page="r3"] .quick-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--border);
}
html[data-page="r3"] .quick-item small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html[data-page="r3"] .quick-item strong {
  font-size: 18px;
  line-height: 1.3;
}

html[data-page="r3"] section {
  position: relative;
}
html[data-page="r3"] .section-pad {
  padding: 104px 0;
}
html[data-page="r3"] .section-head {
  max-width: 790px;
  margin: 0 auto 50px;
  text-align: center;
}
html[data-page="r3"] .section-head .label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
html[data-page="r3"] .section-head .label::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="r3"] .section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
html[data-page="r3"] .section-head p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

html[data-page="r3"] .why-section {
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    var(--surface-soft) 100%
  );
}
html[data-page="r3"] .why-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
html[data-page="r3"] .why-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="r3"] .why-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="r3"] .benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
html[data-page="r3"] .benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 25px rgba(8, 41, 66, 0.05);
  transition: 0.25s;
}
html[data-page="r3"] .benefit-item:hover {
  transform: translateX(6px);
  border-color: rgba(47, 128, 237, 0.34);
}
html[data-page="r3"] .benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.13),
    rgba(0, 179, 136, 0.14)
  );
  color: var(--blue);
}
html[data-page="r3"] .benefit-item h3 {
  margin: 1px 0 6px;
  font-size: 16px;
}
html[data-page="r3"] .benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}
html[data-page="r3"] .why-panel {
  position: relative;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #082942, #0a3b56 68%, #0d5b69);
  color: #fff;
  box-shadow: var(--shadow);
}
html[data-page="r3"] .why-panel::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -100px;
  top: -80px;
  border-radius: 50%;
  border: 1px solid rgba(43, 212, 168, 0.35);
}
html[data-page="r3"] .why-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -120px 20%;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.32),
    transparent 68%
  );
}
html[data-page="r3"] .panel-kicker {
  position: relative;
  z-index: 1;
  color: #a8d8ef;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="r3"] .why-panel h3 {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html[data-page="r3"] .path-cards {
  --path-progress: 0%;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin-top: 30px;
  padding-left: 10px;
}
html[data-page="r3"] .path-cards::before,
html[data-page="r3"] .path-cards::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 30px;
  top: 34px;
  width: 3px;
  border-radius: 99px;
  pointer-events: none;
}
html[data-page="r3"] .path-cards::before {
  bottom: 34px;
  background: rgba(255, 255, 255, 0.11);
}
html[data-page="r3"] .path-cards::after {
  height: var(--path-progress);
  max-height: calc(100% - 68px);
  background: linear-gradient(180deg, #39a4ff 0%, #22d3b1 56%, #79f0c8 100%);
  box-shadow:
    0 0 18px rgba(43, 212, 168, 0.64),
    0 0 34px rgba(47, 128, 237, 0.25);
  transition: height 0.56s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="r3"] .path-card {
  --path-delay: 0ms;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 76px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  cursor: pointer;
  outline: none;
  transition:
    transform 0.34s cubic-bezier(0.2, 0.85, 0.2, 1.18) var(--path-delay),
    border-color 0.3s ease var(--path-delay),
    background 0.3s ease var(--path-delay),
    box-shadow 0.3s ease var(--path-delay);
}
html[data-page="r3"] .path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 8%,
    rgba(255, 255, 255, 0.12) 48%,
    transparent 78%
  );
  transform: translateX(-125%);
  opacity: 0;
  pointer-events: none;
}
html[data-page="r3"] .path-card b {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: #103f58;
  color: #a9c5d4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition:
    color 0.3s ease var(--path-delay),
    background 0.3s ease var(--path-delay),
    transform 0.34s cubic-bezier(0.2, 0.85, 0.2, 1.18) var(--path-delay),
    box-shadow 0.3s ease var(--path-delay);
}
html[data-page="r3"] .path-card strong {
  display: block;
  font-size: 14px;
  transition: color 0.3s ease var(--path-delay);
}
html[data-page="r3"] .path-card span {
  display: block;
  margin-top: 4px;
  color: #abc4d2;
  font-size: 11px;
  transition: color 0.3s ease var(--path-delay);
}
html[data-page="r3"] .path-card em {
  font-style: normal;
  color: #7faabd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition:
    color 0.3s ease var(--path-delay),
    transform 0.3s ease var(--path-delay);
}
html[data-page="r3"] .path-card.is-lit,
html[data-page="r3"] .path-card:hover,
html[data-page="r3"] .path-card:focus-visible {
  transform: translateX(8px);
  border-color: rgba(86, 228, 187, 0.42);
  background: linear-gradient(
    105deg,
    rgba(47, 128, 237, 0.17),
    rgba(0, 179, 136, 0.14)
  );
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.17),
    0 0 0 1px rgba(105, 237, 200, 0.05) inset;
}
html[data-page="r3"] .path-card.is-lit::after,
html[data-page="r3"] .path-card:hover::after,
html[data-page="r3"] .path-card:focus-visible::after {
  opacity: 1;
  animation: r3-pathShine 0.72s ease forwards var(--path-delay);
}
html[data-page="r3"] .path-card.is-lit b,
html[data-page="r3"] .path-card:hover b,
html[data-page="r3"] .path-card:focus-visible b {
  background: linear-gradient(135deg, #328ff5, var(--green));
  color: #fff;
  transform: scale(1.09) rotate(-3deg);
  box-shadow:
    0 0 0 6px rgba(47, 128, 237, 0.09),
    0 13px 27px rgba(0, 179, 136, 0.25);
}
html[data-page="r3"] .path-card.is-lit strong {
  color: #fff;
}
html[data-page="r3"] .path-card.is-lit span {
  color: #cfe3ec;
}
html[data-page="r3"] .path-card.is-lit em {
  color: #9cf4dc;
  transform: translateX(-2px);
}
@keyframes r3-pathShine {
  to {
    transform: translateX(125%);
  }
}
html[data-page="r3"] .panel-note {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--green-2);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 0 14px 14px 0;
  color: #c9dce6;
  font-size: 13px;
  line-height: 1.65;
}

html[data-page="r3"] .resources-section {
  background: var(--surface);
}
html[data-page="r3"] .resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
html[data-page="r3"] .resource-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  isolation: isolate;
  transition:
    transform 0.36s cubic-bezier(0.2, 0.85, 0.2, 1.15),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
html[data-page="r3"] .resource-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 145px;
  height: 145px;
  right: -72px;
  top: -76px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.16),
    transparent 68%
  );
  transition:
    transform 0.45s ease,
    opacity 0.35s ease;
}
html[data-page="r3"] .resource-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: right 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="r3"] .resource-card:hover {
  transform: translateY(-9px);
  border-color: rgba(47, 128, 237, 0.38);
  box-shadow: 0 23px 52px rgba(8, 41, 66, 0.13);
}
html[data-page="r3"] .resource-card:hover::before {
  transform: scale(1.22);
  opacity: 0.86;
}
html[data-page="r3"] .resource-card:hover::after {
  right: 0;
}
html[data-page="r3"] .resource-icon {
  position: relative;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  background: linear-gradient(145deg, #2f80ed 0%, #1d98d8 45%, #00b388 100%);
  color: #fff;
  box-shadow:
    0 14px 30px rgba(47, 128, 237, 0.23),
    0 0 0 7px rgba(47, 128, 237, 0.055);
  transform: translateZ(0);
  transition:
    transform 0.38s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
html[data-page="r3"] .resource-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
}
html[data-page="r3"] .resource-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  right: 8px;
  top: 8px;
  border-radius: 50%;
  background: #8cf3d6;
  box-shadow: 0 0 13px rgba(140, 243, 214, 0.95);
}
html[data-page="r3"] .resource-icon svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.16));
}
html[data-page="r3"] .resource-card:nth-child(2n) .resource-icon {
  background: linear-gradient(145deg, #0d8fc5, #00b388);
}
html[data-page="r3"] .resource-card:nth-child(3n) .resource-icon {
  background: linear-gradient(145deg, #3c72e8, #0aa99a);
}
html[data-page="r3"] .resource-card:hover .resource-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.08);
  box-shadow:
    0 20px 38px rgba(0, 179, 136, 0.25),
    0 0 0 9px rgba(0, 179, 136, 0.07);
}
html[data-page="r3"] .resource-card h3 {
  margin: 23px 0 9px;
  font-size: 17px;
}
html[data-page="r3"] .resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

html[data-page="r3"] .method-section {
  overflow: hidden;
  background: linear-gradient(135deg, #edf7ff 0%, #f3fffb 52%, #eff6ff 100%);
}
html[data-page="r3"][data-theme="dark"] .method-section {
  background: linear-gradient(135deg, #0b2335, #0c2d37 52%, #0c2537);
}
html[data-page="r3"] .method-flow {
  --method-progress: 0%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  padding-top: 6px;
}
html[data-page="r3"] .method-line,
html[data-page="r3"] .method-line-fill {
  position: absolute;
  z-index: 0;
  left: calc(12.5% - 1px);
  top: 42px;
  height: 4px;
  border-radius: 99px;
}
html[data-page="r3"] .method-line {
  right: calc(12.5% - 1px);
  background: rgba(8, 41, 66, 0.12);
}
html[data-page="r3"][data-theme="dark"] .method-line {
  background: rgba(255, 255, 255, 0.12);
}
html[data-page="r3"] .method-line-fill {
  width: var(--method-progress);
  max-width: calc(75% - 2px);
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 18px rgba(0, 179, 136, 0.36);
  transition: width 0.52s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="r3"] .method-step {
  position: relative;
  z-index: 1;
  text-align: center;
  cursor: pointer;
  outline: none;
}
html[data-page="r3"] .method-step b {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(47, 128, 237, 0.22);
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(8, 41, 66, 0.12);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
html[data-page="r3"] .method-step b::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid transparent;
  border-radius: inherit;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease;
}
html[data-page="r3"] .method-step.active b,
html[data-page="r3"] .method-step:hover b,
html[data-page="r3"] .method-step:focus-visible b {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  transform: translateY(-6px) scale(1.09);
  box-shadow:
    0 0 0 8px rgba(47, 128, 237, 0.09),
    0 19px 38px rgba(0, 179, 136, 0.22);
}
html[data-page="r3"] .method-step.active b::before,
html[data-page="r3"] .method-step:hover b::before,
html[data-page="r3"] .method-step:focus-visible b::before {
  border-color: rgba(0, 179, 136, 0.32);
  transform: scale(1.04);
}
html[data-page="r3"] .method-step h3 {
  margin: 21px 0 8px;
  font-size: 18px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
html[data-page="r3"] .method-step p {
  margin: 0 auto;
  max-width: 250px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  transition: transform 0.3s ease;
}
html[data-page="r3"] .method-step.active h3,
html[data-page="r3"] .method-step:hover h3 {
  color: var(--green);
  transform: translateY(-2px);
}
html[data-page="r3"] .method-step.active p,
html[data-page="r3"] .method-step:hover p {
  transform: translateY(-2px);
}

html[data-page="r3"] .pricing-section {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}
html[data-page="r3"] .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 54px;
  align-items: start;
}
html[data-page="r3"] .pricing-content h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
html[data-page="r3"] .pricing-content > p {
  margin: 20px 0 0;
  max-width: 690px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="r3"] .included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
html[data-page="r3"] .included-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
html[data-page="r3"] .included-list i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 179, 136, 0.12);
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}
html[data-page="r3"] .bonus-card {
  margin-top: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  border: 1px solid rgba(47, 128, 237, 0.2);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.09),
    rgba(0, 179, 136, 0.09)
  );
}
html[data-page="r3"] .bonus-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
}
html[data-page="r3"] .bonus-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
}
html[data-page="r3"] .bonus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
html[data-page="r3"] .price-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border: 1px solid rgba(47, 128, 237, 0.22);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(8, 41, 66, 0.17);
}
html[data-page="r3"] .price-card-top {
  padding: 26px 28px;
  background: linear-gradient(135deg, var(--blue-deep), #0c4a65);
  color: #fff;
}
html[data-page="r3"] .price-card-top span {
  display: block;
  color: #acd1e1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="r3"] .price-card-top h3 {
  margin: 10px 0 0;
  font-size: 28px;
}
html[data-page="r3"] .price-body {
  padding: 28px;
}
html[data-page="r3"] .price-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
html[data-page="r3"] .installments {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
html[data-page="r3"] .installments strong {
  font-size: 47px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--blue-deep);
}
html[data-page="r3"][data-theme="dark"] .installments strong {
  color: #fff;
}
html[data-page="r3"] .installments span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
}
html[data-page="r3"] .cash {
  margin-top: 11px;
  color: var(--muted);
  font-size: 13px;
}
html[data-page="r3"] .cash b {
  color: var(--ink);
}
html[data-page="r3"] .price-benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
html[data-page="r3"] .price-benefits span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}
html[data-page="r3"] .price-benefits i {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}
html[data-page="r3"] .buy-button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), #008e70);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(0, 179, 136, 0.24);
  transition: 0.25s;
}
html[data-page="r3"] .buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(0, 179, 136, 0.34);
}
html[data-page="r3"] .secure-note {
  margin: 14px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

html[data-page="r3"] .numbers-section {
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(100deg, #0c6173, #2c8c88 55%, #66b59f);
}
html[data-page="r3"] .numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="r3"] .number-item {
  text-align: center;
  padding: 15px 20px;
}
html[data-page="r3"] .number-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
html[data-page="r3"] .number-item strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.05em;
}
html[data-page="r3"] .number-item span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

html[data-page="r3"] .teachers-section {
  background: var(--surface);
}
html[data-page="r3"] .teacher-track-wrap {
  position: relative;
}
html[data-page="r3"] .teacher-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
html[data-page="r3"] .teacher-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  transition: 0.28s;
}
html[data-page="r3"] .teacher-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 42px rgba(8, 41, 66, 0.12);
}
html[data-page="r3"] .teacher-card img {
  width: 100%;
  aspect-ratio: 1.45/1;
  object-fit: cover;
  display: block;
  background: transparent;
}
html[data-page="r3"] .teacher-info {
  padding: 17px 17px 20px;
}
html[data-page="r3"] .teacher-info h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
html[data-page="r3"] .teacher-info p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

html[data-page="r3"] .objections-section {
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
}
html[data-page="r3"] .objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
html[data-page="r3"] .objection-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}
html[data-page="r3"] .objection-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.13),
    rgba(0, 179, 136, 0.13)
  );
  color: var(--blue);
}
html[data-page="r3"] .objection-card h3 {
  margin: 18px 0 9px;
  font-size: 19px;
  line-height: 1.35;
}
html[data-page="r3"] .objection-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

html[data-page="r3"] .faq-section {
  background: var(--surface);
}
html[data-page="r3"] .faq-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 58px;
  align-items: start;
}
html[data-page="r3"] .faq-aside {
  position: sticky;
  top: 116px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--blue-deep), #0b4b63);
  color: #fff;
  box-shadow: var(--shadow);
}
html[data-page="r3"] .faq-aside small {
  color: #9fc7d9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="r3"] .faq-aside h2 {
  margin: 14px 0 0;
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
html[data-page="r3"] .faq-aside p {
  margin: 17px 0 0;
  color: #bdd2dd;
  font-size: 14px;
  line-height: 1.72;
}
html[data-page="r3"] .faq-aside a {
  margin-top: 23px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), #009478);
  font-size: 13px;
  font-weight: 850;
}
html[data-page="r3"] .faq-list {
  display: grid;
  gap: 10px;
}
html[data-page="r3"] .faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
}
html[data-page="r3"] .faq-question {
  width: 100%;
  padding: 20px 21px;
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 18px;
  align-items: center;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
html[data-page="r3"] .faq-question strong {
  font-size: 14px;
  line-height: 1.45;
}
html[data-page="r3"] .faq-question i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--surface-soft);
  color: var(--blue);
  font-style: normal;
  font-size: 22px;
  transition: 0.25s;
}
html[data-page="r3"] .faq-item.open .faq-question i {
  transform: rotate(45deg);
  background: rgba(0, 179, 136, 0.12);
  color: var(--green);
}
html[data-page="r3"] .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
html[data-page="r3"] .faq-answer > div {
  overflow: hidden;
}
html[data-page="r3"] .faq-answer p {
  margin: 0;
  padding: 0 21px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
html[data-page="r3"] .faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
html[data-page="r3"] .faq-item.open .faq-answer p {
  padding-bottom: 21px;
}

html[data-page="r3"] .final-cta {
  padding: 0 0 104px;
  background: var(--surface);
}
html[data-page="r3"] .final-cta-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, #071f32, #0b4560 58%, #0f7a78);
  box-shadow: var(--shadow);
}
html[data-page="r3"] .final-cta-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -120px;
  top: -180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
html[data-page="r3"] .final-cta-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  right: 14%;
  bottom: -100px;
  background: radial-gradient(circle, rgba(43, 212, 168, 0.3), transparent 66%);
}
html[data-page="r3"] .final-cta-copy {
  position: relative;
  z-index: 1;
}
html[data-page="r3"] .final-cta-copy span {
  color: #a9d8e9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
html[data-page="r3"] .final-cta-copy h2 {
  margin: 12px 0 0;
  max-width: 780px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="r3"] .final-cta-copy p {
  margin: 18px 0 0;
  color: #c4d9e3;
  font-size: 15px;
  line-height: 1.7;
}
html[data-page="r3"] .final-cta .btn-primary {
  position: relative;
  z-index: 1;
  min-width: 220px;
}

html[data-page="r3"] .brand-strip {
  padding: 27px 0 30px;
  background: #fff;
  border-top: 1px solid #dfe8ee;
  border-bottom: 1px solid #dfe8ee;
  color: #102939;
}
html[data-page="r3"] .brand-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 1px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
html[data-page="r3"] .brand-strip-divider {
  width: 1px;
  height: 94px;
  background: #d7e1e8;
}
html[data-page="r3"] .brand-group h2 {
  margin: 0 0 15px;
  text-align: center;
  color: #49668f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
html[data-page="r3"] .brand-logos {
  display: grid;
  gap: 10px;
}
html[data-page="r3"] .institution-logos {
  grid-template-columns: repeat(5, 1fr);
}
html[data-page="r3"] .developed-logos {
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="r3"] .brand-logo-card {
  height: 72px;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e5ed;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(8, 41, 66, 0.05);
}
html[data-page="r3"] .brand-logo-card img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

html[data-page="r3"] footer {
  background: #061b2a;
  color: #fff;
}
html[data-page="r3"] .footer-main {
  padding: 74px 0 58px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}
html[data-page="r3"] .footer-brand img {
  width: 235px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}
html[data-page="r3"] .footer-brand > p {
  margin: 25px 0;
  color: #9fb4c2;
  font-size: 15px;
  line-height: 1.75;
}
html[data-page="r3"] .socials {
  display: flex;
  gap: 9px;
}
html[data-page="r3"] .socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: #a7bdca;
  transition: 0.2s;
}
html[data-page="r3"] .socials a:hover {
  background: var(--blue);
  color: #fff;
}
html[data-page="r3"] .footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
html[data-page="r3"] .footer-links h3 {
  margin: 0 0 21px;
  font-size: 15px;
}
html[data-page="r3"] .footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
html[data-page="r3"] .footer-links a,
html[data-page="r3"] .footer-links span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9db2bf;
  font-size: 13px;
  line-height: 1.5;
}
html[data-page="r3"] .footer-links a:hover {
  color: #fff;
}
html[data-page="r3"] .footer-links small {
  margin-top: 8px;
  color: #7892a1;
  font-size: 11px;
  line-height: 1.5;
}
html[data-page="r3"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
html[data-page="r3"] .footer-bottom > div {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #7894a3;
  font-size: 11px;
  line-height: 1.55;
}
html[data-page="r3"] .floating-contact {
  position: fixed;
  z-index: 80;
  right: 23px;
  bottom: 23px;
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00b388, #008e70);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0, 179, 136, 0.3);
  transition: 0.25s;
}
html[data-page="r3"] .floating-contact:hover {
  transform: translateY(-3px);
}

html[data-page="r3"] .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
html[data-page="r3"] .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html[data-page="r3"] *,
  html[data-page="r3"] *::before,
  html[data-page="r3"] *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  html[data-page="r3"] .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  
  
  html[data-page="r3"] .hero-inner {
    gap: 38px;
  }
  html[data-page="r3"] .floating-proof {
    left: -18px;
  }
  html[data-page="r3"] .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="r3"] .teacher-track {
    grid-template-columns: repeat(3, 1fr);
  }
  html[data-page="r3"] .pricing-grid {
    grid-template-columns: 1fr 390px;
    gap: 34px;
  }
  html[data-page="r3"] .footer-main {
    grid-template-columns: 250px 1fr;
    gap: 45px;
  }
}
@media (max-width: 920px) {
  
  
  
  
  
  
  
  
  
  
  
  
  
  html[data-page="r3"] .hero-r1,
  html[data-page="r3"] .hero-inner {
    min-height: auto;
  }
  html[data-page="r3"] .hero-r1 {
    margin-top: 74px;
  }
  html[data-page="r3"] .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 76px 100px;
  }
  html[data-page="r3"] .hero-copy {
    text-align: center;
  }
  html[data-page="r3"] .hero-copy > p {
    margin-inline: auto;
  }
  html[data-page="r3"] .eyebrow {
    justify-content: center;
  }
  html[data-page="r3"] .hero-facts,
  html[data-page="r3"] .hero-actions {
    justify-content: center;
  }
  html[data-page="r3"] .hero-visual {
    max-width: 720px;
    margin-inline: auto;
    width: 100%;
  }
  html[data-page="r3"] .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="r3"] .quick-item:nth-child(2)::after {
    display: none;
  }
  html[data-page="r3"] .quick-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="r3"] .why-grid,
  html[data-page="r3"] .pricing-grid,
  html[data-page="r3"] .faq-layout {
    grid-template-columns: 1fr;
  }
  html[data-page="r3"] .why-panel {
    min-height: auto;
  }
  html[data-page="r3"] .price-card,
  html[data-page="r3"] .faq-aside {
    position: relative;
    top: auto;
  }
  html[data-page="r3"] .method-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }
  html[data-page="r3"] .method-line,
  html[data-page="r3"] .method-line-fill {
    display: none;
  }
  html[data-page="r3"] .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="r3"] .number-item:nth-child(2) {
    border-right: 0;
  }
  html[data-page="r3"] .number-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  html[data-page="r3"] .objection-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="r3"] .teacher-track {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="r3"] .brand-strip-inner {
    grid-template-columns: 1fr;
  }
  html[data-page="r3"] .brand-strip-divider {
    width: 100%;
    height: 1px;
  }
  html[data-page="r3"] .footer-main {
    grid-template-columns: 1fr;
  }
  html[data-page="r3"] .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  html[data-page="r3"] .section-shell {
    width: min(100% - 28px, var(--max));
  }
  
  
  
  
  html[data-page="r3"] .hero-inner {
    padding-block: 60px 88px;
  }
  html[data-page="r3"] .hero-copy h1 {
    font-size: 42px;
  }
  html[data-page="r3"] .hero-copy > p {
    font-size: 16px;
  }
  html[data-page="r3"] .video-shell {
    transform: none;
    animation: none;
    padding: 7px;
    border-radius: 20px;
  }
  html[data-page="r3"] .floating-proof {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 13px;
  }
  html[data-page="r3"] .quick-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="r3"] .quick-item::after {
    display: none !important;
  }
  html[data-page="r3"] .quick-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="r3"] .section-pad {
    padding: 78px 0;
  }
  html[data-page="r3"] .resources-grid,
  html[data-page="r3"] .included-list,
  html[data-page="r3"] .numbers-grid,
  html[data-page="r3"] .teacher-track {
    grid-template-columns: 1fr;
  }
  html[data-page="r3"] .method-flow {
    display: flex;
    gap: 14px;
    margin-inline: -14px;
    padding: 8px 14px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  html[data-page="r3"] .method-flow::-webkit-scrollbar {
    display: none;
  }
  html[data-page="r3"] .method-line,
  html[data-page="r3"] .method-line-fill {
    display: none;
  }
  html[data-page="r3"] .method-step {
    flex: 0 0 min(78vw, 286px);
    min-height: 250px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.64);
    scroll-snap-align: center;
    box-shadow: 0 14px 34px rgba(8, 41, 66, 0.07);
  }
  html[data-page="r3"][data-theme="dark"] .method-step {
    background: rgba(255, 255, 255, 0.045);
  }
  html[data-page="r3"] .number-item {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  html[data-page="r3"] .number-item:last-child {
    border-bottom: 0;
  }
  html[data-page="r3"] .pricing-content {
    text-align: center;
  }
  html[data-page="r3"] .bonus-card {
    text-align: left;
  }
  html[data-page="r3"] .installments strong {
    font-size: 42px;
  }
  html[data-page="r3"] .final-cta-card {
    padding: 34px 26px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  html[data-page="r3"] .final-cta .btn-primary {
    min-width: 0;
    width: 100%;
  }
  html[data-page="r3"] .institution-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="r3"] .institution-logos .brand-logo-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 5px);
    justify-self: center;
  }
  html[data-page="r3"] .developed-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="r3"] .footer-links {
    grid-template-columns: 1fr;
  }
  html[data-page="r3"] .footer-bottom > div {
    padding-block: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  html[data-page="r3"] .floating-contact span {
    display: none;
  }
  html[data-page="r3"] .floating-contact {
    width: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* ============================================================
   Cabeçalho e rodapé globais — padrão para todas as páginas
   ============================================================ */









html[data-page="r3"] .footer-brand > p {
  font-size: 17px !important;
  line-height: 1.75 !important;
}
html[data-page="r3"] .footer-links h3 {
  font-size: 17px !important;
  letter-spacing: 0.01em;
}
html[data-page="r3"] .footer-links a,
html[data-page="r3"] .footer-links span {
  font-size: 15px !important;
  line-height: 1.62 !important;
}
html[data-page="r3"] .footer-links small {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="r3"] .footer-bottom > div {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="r3"] .brand-group h2 {
  font-size: 14px !important;
}

@media (max-width: 920px) {
  
  
}

/* R1: mesma escala de H1 utilizada no hero da Home */
html[data-page="r3"] .hero-copy h1 {
  font-size: clamp(40px, 3.4vw, 50px);
  line-height: 1.035;
  letter-spacing: -0.045em;
}

/* Informações rápidas com ícones temáticos */
html[data-page="r3"] .quick-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 15px;
  padding: 24px 22px;
}
html[data-page="r3"] .quick-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid currentColor;
  box-shadow: 0 10px 24px rgba(8, 41, 66, 0.08);
}
html[data-page="r3"] .quick-icon svg {
  width: 25px;
  height: 25px;
}
html[data-page="r3"] .quick-icon-blue {
  color: #2f80ed;
  background: rgba(47, 128, 237, 0.1);
}
html[data-page="r3"] .quick-icon-green {
  color: #00a983;
  background: rgba(0, 179, 136, 0.11);
}
html[data-page="r3"] .quick-icon-cyan {
  color: #0097b2;
  background: rgba(0, 151, 178, 0.11);
}
html[data-page="r3"] .quick-icon-orange {
  color: #ef8a22;
  background: rgba(239, 138, 34, 0.11);
}
html[data-page="r3"] .quick-item small {
  margin-bottom: 6px;
}
html[data-page="r3"] .quick-item strong {
  display: block;
}
html[data-page="r3"] .why-copy .benefit-list {
  margin-top: 32px;
}

@media (max-width: 640px) {
  html[data-page="r3"] .hero-copy h1 {
    font-size: 34px;
  }
  html[data-page="r3"] .quick-item {
    grid-template-columns: 48px 1fr;
    padding: 20px 18px;
  }
  html[data-page="r3"] .quick-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

/* =========================================================
   PÁGINA CICLO BÁSICO
========================================================= */
html[data-page="r3"] .hero-cb {
  position: relative;
  min-height: 720px;
  margin-top: 84px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(4, 24, 40, 0.98) 0%,
      rgba(5, 31, 51, 0.93) 39%,
      rgba(5, 38, 58, 0.48) 67%,
      rgba(5, 38, 58, 0.1) 100%
    ),
    url("../images/banner-ciclo-basico.webp") center/cover no-repeat;
}
html[data-page="r3"] .hero-cb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(43, 212, 168, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 12% 82%,
      rgba(47, 128, 237, 0.23),
      transparent 30%
    );
  pointer-events: none;
}
html[data-page="r3"] .hero-cb::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0 46%, transparent 78%);
}
html[data-page="r3"] .hero-cb-inner {
  position: relative;
  z-index: 3;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  align-items: center;
  gap: 54px;
  padding-block: 78px;
}
html[data-page="r3"] .hero-cb-copy {
  max-width: 665px;
}
html[data-page="r3"] .hero-cb-copy h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(40px, 3.4vw, 50px);
  line-height: 1.07;
  letter-spacing: -0.045em;
  font-weight: 900;
}
html[data-page="r3"] .hero-cb-copy h1 span {
  display: block;
  background: linear-gradient(90deg, #7ddcff, #58e3ba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
html[data-page="r3"] .hero-cb-copy > p {
  max-width: 625px;
  margin: 24px 0 0;
  color: rgba(239, 249, 255, 0.84);
  font-size: 17px;
  line-height: 1.75;
}
html[data-page="r3"] .hero-cb .hero-facts {
  margin-top: 25px;
}
html[data-page="r3"] .hero-cb-visual {
  position: relative;
  min-height: 510px;
  pointer-events: none;
}
html[data-page="r3"] .study-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 18px;
  background: rgba(6, 31, 48, 0.66);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px) saturate(145%);
  animation: r3-cbFloat 5.8s ease-in-out infinite;
}
html[data-page="r3"] .study-chip i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-style: normal;
  font-weight: 900;
}
html[data-page="r3"] .study-chip span {
  display: grid;
  gap: 2px;
}
html[data-page="r3"] .study-chip strong {
  font-size: 14px;
}
html[data-page="r3"] .study-chip small {
  color: rgba(233, 247, 255, 0.66);
  font-size: 11px;
}
html[data-page="r3"] .study-chip.one {
  right: 1%;
  top: 9%;
}
html[data-page="r3"] .study-chip.two {
  left: 4%;
  bottom: 18%;
  animation-delay: -2s;
}
html[data-page="r3"] .study-chip.three {
  right: 7%;
  bottom: 7%;
  animation-delay: -3.6s;
}
html[data-page="r3"] .study-badge {
  position: absolute;
  left: 16%;
  top: 8%;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(47, 128, 237, 0.92),
    rgba(0, 179, 136, 0.92)
  );
  box-shadow:
    0 22px 60px rgba(0, 179, 136, 0.28),
    inset 0 0 0 8px rgba(255, 255, 255, 0.1);
  animation: r3-badgePulse 3.6s ease-in-out infinite;
}
html[data-page="r3"] .study-badge strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}
html[data-page="r3"] .study-badge small {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@keyframes r3-cbFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes r3-badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 22px 60px rgba(0, 179, 136, 0.28),
      inset 0 0 0 8px rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow:
      0 30px 75px rgba(47, 128, 237, 0.35),
      inset 0 0 0 8px rgba(255, 255, 255, 0.14);
  }
}

html[data-page="r3"] .cb-intro {
  background: var(--surface);
}
html[data-page="r3"] .cb-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}
html[data-page="r3"] .cb-benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 31px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  box-shadow: 0 15px 45px rgba(8, 41, 66, 0.08);
  transition: 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
html[data-page="r3"] .cb-benefit-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -68px;
  top: -76px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.18),
    transparent 70%
  );
  transition: 0.35s;
}
html[data-page="r3"] .cb-benefit-card:nth-child(2)::before {
  background: radial-gradient(circle, rgba(0, 179, 136, 0.18), transparent 70%);
}
html[data-page="r3"] .cb-benefit-card:nth-child(3)::before {
  background: radial-gradient(
    circle,
    rgba(108, 92, 231, 0.18),
    transparent 70%
  );
}
html[data-page="r3"] .cb-benefit-card:hover {
  transform: translateY(-9px);
  border-color: rgba(47, 128, 237, 0.34);
  box-shadow: 0 25px 65px rgba(8, 41, 66, 0.14);
}
html[data-page="r3"] .cb-benefit-card:hover::before {
  transform: scale(1.35);
}
html[data-page="r3"] .cb-benefit-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 14px 28px rgba(47, 128, 237, 0.25);
}
html[data-page="r3"] .cb-benefit-card:nth-child(2) .cb-benefit-icon {
  background: linear-gradient(135deg, var(--green), #0a9476);
  box-shadow: 0 14px 28px rgba(0, 179, 136, 0.23);
}
html[data-page="r3"] .cb-benefit-card:nth-child(3) .cb-benefit-icon {
  background: linear-gradient(135deg, #6c5ce7, #2f80ed);
  box-shadow: 0 14px 28px rgba(108, 92, 231, 0.23);
}
html[data-page="r3"] .cb-benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="r3"] .cb-benefit-card h3 {
  margin: 24px 0 11px;
  font-size: 21px;
  letter-spacing: -0.025em;
}
html[data-page="r3"] .cb-benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

html[data-page="r3"] .disciplines-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(47, 128, 237, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 94% 82%,
      rgba(0, 179, 136, 0.11),
      transparent 27%
    ),
    var(--surface-soft);
}
html[data-page="r3"] .disciplines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}
html[data-page="r3"] .discipline-card {
  position: relative;
  min-height: 154px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 21px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 12px 30px rgba(8, 41, 66, 0.06);
  transition: 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
}
html[data-page="r3"] .discipline-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.32s;
}
html[data-page="r3"] .discipline-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 179, 136, 0.34);
  box-shadow: 0 22px 48px rgba(8, 41, 66, 0.12);
}
html[data-page="r3"] .discipline-card:hover::after {
  transform: scaleX(1);
}
html[data-page="r3"] .discipline-icon {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(47, 128, 237, 0.18);
  border-radius: 17px;
  background: linear-gradient(
    145deg,
    rgba(47, 128, 237, 0.12),
    rgba(0, 179, 136, 0.16)
  );
  color: var(--blue);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(47, 128, 237, 0.1);
  transition:
    transform 0.34s cubic-bezier(0.2, 0.75, 0.2, 1),
    color 0.34s ease,
    background 0.34s ease,
    box-shadow 0.34s ease;
}
html[data-page="r3"] .discipline-icon::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  top: -18px;
  right: -15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  filter: blur(2px);
}
html[data-page="r3"] .discipline-icon svg {
  position: relative;
  z-index: 1;
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="r3"] .discipline-card:nth-child(3n + 2) .discipline-icon {
  color: var(--green);
  background: linear-gradient(
    145deg,
    rgba(0, 179, 136, 0.12),
    rgba(47, 128, 237, 0.13)
  );
}
html[data-page="r3"] .discipline-card:nth-child(3n) .discipline-icon {
  color: #635bdb;
  background: linear-gradient(
    145deg,
    rgba(99, 91, 219, 0.12),
    rgba(47, 128, 237, 0.12)
  );
}
html[data-page="r3"] .discipline-card:hover .discipline-icon {
  transform: translateY(-3px) rotate(-5deg) scale(1.08);
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow:
    0 16px 32px rgba(0, 179, 136, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
html[data-page="r3"] .discipline-card h3 {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

html[data-page="r3"] .formats-band {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
html[data-page="r3"] .format-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 19px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}
html[data-page="r3"] .format-pill b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-blue);
  color: var(--blue);
}
html[data-page="r3"] .format-pill strong {
  font-size: 14px;
}
html[data-page="r3"] .format-pill small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

html[data-page="r3"] .extensions-section {
  background: var(--surface);
}
html[data-page="r3"] .extensions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}
html[data-page="r3"] .extension-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: linear-gradient(
    155deg,
    var(--surface) 0%,
    var(--surface-soft) 100%
  );
  transition: 0.35s;
}
html[data-page="r3"] .extension-card::before {
  content: "";
  position: absolute;
  inset: auto -55px -75px auto;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.18),
    rgba(0, 179, 136, 0.17)
  );
  filter: blur(1px);
  transition: 0.35s;
}
html[data-page="r3"] .extension-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 58px rgba(8, 41, 66, 0.13);
  border-color: rgba(47, 128, 237, 0.34);
}
html[data-page="r3"] .extension-card:hover::before {
  transform: scale(1.3);
}
html[data-page="r3"] .extension-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
html[data-page="r3"] .extension-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 13px 28px rgba(47, 128, 237, 0.24);
}
html[data-page="r3"] .extension-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="r3"] .extension-tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 179, 136, 0.11);
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
html[data-page="r3"] .extension-card h3 {
  margin: 25px 0 10px;
  font-size: 20px;
  letter-spacing: -0.025em;
}
html[data-page="r3"] .extension-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}
html[data-page="r3"] .extension-card a {
  position: absolute;
  left: 27px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}
html[data-page="r3"] .extension-card a:hover {
  gap: 12px;
}

html[data-page="r3"] .cb-pricing .pricing-content > p {
  max-width: 680px;
}
html[data-page="r3"] .cb-price-card .installments strong {
  font-size: clamp(40px, 4vw, 58px);
}
html[data-page="r3"] .guarantee-box {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0, 179, 136, 0.09);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}
html[data-page="r3"] .guarantee-box svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

html[data-page="r3"] .cb-testimonials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #061b2c 0%, #0a304b 58%, #0a4b52 100%);
  color: #fff;
}
html[data-page="r3"] .cb-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 90% 12%,
      rgba(43, 212, 168, 0.2),
      transparent 26%
    ),
    radial-gradient(circle at 8% 88%, rgba(47, 128, 237, 0.2), transparent 30%);
}
html[data-page="r3"] .cb-testimonials .section-head {
  position: relative;
  z-index: 2;
}
html[data-page="r3"] .cb-testimonials .section-head h2,
html[data-page="r3"] .cb-testimonials .section-head p {
  color: #fff;
}
html[data-page="r3"] .cb-testimonials-head {
  max-width: 1180px;
}
@media (min-width: 1025px) {
  html[data-page="r3"] .cb-testimonials-head h2,
  html[data-page="r3"] .cb-testimonials-head > p {
    white-space: nowrap;
  }
}
html[data-page="r3"] .stars-row {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 14px;
  color: #ffc857;
  font-size: 22px;
  letter-spacing: 0.08em;
}
html[data-page="r3"] .cb-carousel {
  position: relative;
  z-index: 2;
  margin-top: 38px;
}
html[data-page="r3"] .cb-carousel-viewport {
  overflow: hidden;
}
html[data-page="r3"] .cb-carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
html[data-page="r3"] .cb-testimonial-slide {
  flex: 0 0 33.3333%;
  padding: 0 9px;
}
html[data-page="r3"] .cb-testimonial-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}
html[data-page="r3"] .cb-testimonial-card .quote {
  color: #70e6c3;
  font-size: 40px;
  line-height: 1;
}
html[data-page="r3"] .cb-testimonial-card p {
  margin: 18px 0 26px;
  color: rgba(242, 249, 255, 0.82);
  font-size: 14px;
  line-height: 1.72;
}
html[data-page="r3"] .student-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
html[data-page="r3"] .student-meta b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
}
html[data-page="r3"] .student-meta strong {
  display: block;
  font-size: 13px;
}
html[data-page="r3"] .student-meta small {
  display: block;
  margin-top: 3px;
  color: rgba(234, 247, 255, 0.58);
  font-size: 10px;
}
html[data-page="r3"] .demo-note {
  display: inline-flex;
  margin-top: 8px;
  color: rgba(234, 247, 255, 0.42) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 8px !important;
}
html[data-page="r3"] .cb-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
html[data-page="r3"] .cb-carousel-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: 0.25s;
}
html[data-page="r3"] .cb-carousel-arrow:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-color: transparent;
}

html[data-page="r3"] .cb-ecosystem {
  background: var(--surface-soft);
}
html[data-page="r3"] .ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
html[data-page="r3"] .ecosystem-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 26px;
  color: #fff;
  box-shadow: 0 18px 48px rgba(8, 41, 66, 0.16);
}
html[data-page="r3"] .ecosystem-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
html[data-page="r3"] .ecosystem-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(3, 17, 29, 0.9) 100%
  );
}
html[data-page="r3"] .ecosystem-card:hover img {
  transform: scale(1.06);
}
html[data-page="r3"] .ecosystem-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
}
html[data-page="r3"] .ecosystem-copy small {
  color: #84e7c9;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
html[data-page="r3"] .ecosystem-copy h3 {
  margin: 8px 0 5px;
  font-size: 22px;
}
html[data-page="r3"] .ecosystem-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  html[data-page="r3"] .hero-cb-inner {
    grid-template-columns: 1fr 0.7fr;
    gap: 20px;
  }
  html[data-page="r3"] .study-chip.one {
    right: -15%;
  }
  html[data-page="r3"] .study-chip.two {
    left: -5%;
  }
  html[data-page="r3"] .disciplines-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  html[data-page="r3"] .extensions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="r3"] .cb-testimonial-slide {
    flex-basis: 50%;
  }
}
@media (max-width: 820px) {
  html[data-page="r3"] .hero-cb {
    min-height: auto;
    background-position: 68% center;
  }
  html[data-page="r3"] .hero-cb::before {
    background: linear-gradient(
      180deg,
      rgba(4, 24, 40, 0.3),
      rgba(4, 24, 40, 0.94) 62%
    );
  }
  html[data-page="r3"] .hero-cb-inner {
    min-height: 760px;
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 230px;
    padding-bottom: 74px;
  }
  html[data-page="r3"] .hero-cb-copy {
    max-width: 680px;
  }
  html[data-page="r3"] .hero-cb-visual {
    display: none;
  }
  html[data-page="r3"] .cb-benefit-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="r3"] .disciplines-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="r3"] .formats-band {
    grid-template-columns: 1fr;
  }
  html[data-page="r3"] .ecosystem-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  html[data-page="r3"] .hero-cb {
    background-position: 72% center;
  }
  html[data-page="r3"] .hero-cb-inner {
    min-height: 700px;
    padding-top: 235px;
  }
  html[data-page="r3"] .hero-cb-copy h1 {
    font-size: 34px;
  }
  html[data-page="r3"] .hero-cb-copy > p {
    font-size: 15px;
    line-height: 1.65;
  }
  html[data-page="r3"] .disciplines-grid,
  html[data-page="r3"] .extensions-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="r3"] .discipline-card {
    min-height: 130px;
  }
  html[data-page="r3"] .cb-testimonial-slide {
    flex-basis: 100%;
  }
}

/* =========================================================
   PÁGINA R3 — identidade visual Revisamed Inteligente
========================================================== */
html[data-page="r3"] .hero-r3 {
  position: relative;
  min-height: 720px;
  margin-top: 84px;
  overflow: hidden;
  color: #fff;
  background: #061b2c url("../images/banner-r1-r3.webp") center/cover no-repeat;
  isolation: isolate;
}
html[data-page="r3"] .hero-r3::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(3, 20, 34, 0.98) 0%,
      rgba(5, 34, 55, 0.95) 39%,
      rgba(5, 34, 55, 0.38) 70%,
      rgba(5, 34, 55, 0.1) 100%
    ),
    radial-gradient(circle at 72% 24%, rgba(0, 179, 136, 0.23), transparent 29%);
}
html[data-page="r3"] .hero-r3::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}
html[data-page="r3"] .hero-r3-inner {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.86fr);
  align-items: center;
  gap: 62px;
  padding-block: 88px 92px;
}
html[data-page="r3"] .hero-r3-copy {
  max-width: 690px;
}
html[data-page="r3"] .hero-r3-copy h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(42px, 4.25vw, 55px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
html[data-page="r3"] .hero-r3-copy h1 span {
  color: transparent;
  background: linear-gradient(100deg, #fff 0%, #85e9cf 48%, #7bb7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
html[data-page="r3"] .hero-r3-copy > p {
  max-width: 620px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.72;
}
html[data-page="r3"] .hero-r3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}
html[data-page="r3"] .hero-r3-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
}
html[data-page="r3"] .hero-r3-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d7eaf6;
  font-size: 13px;
  font-weight: 750;
}
html[data-page="r3"] .hero-r3-facts i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(43, 212, 168, 0.14);
  color: #67e5bf;
  font-style: normal;
  border: 1px solid rgba(103, 229, 191, 0.3);
}
html[data-page="r3"] .hero-r3-visual {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 48px 0 32px 24px;
}
html[data-page="r3"] .hero-r3-visual::before {
  content: "";
  position: absolute;
  left: 0;
  right: 42%;
  bottom: 16px;
  height: 250px;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(8, 42, 64, 0.42),
    rgba(5, 28, 44, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}
html[data-page="r3"] .r3-orbit {
  position: absolute;
  inset: auto auto 22px 0;
  width: 60%;
  height: 72%;
  border: 1px solid rgba(115, 221, 195, 0.26);
  border-radius: 46px;
  transform: rotate(-7deg);
  animation: r3-r3OrbitPulse 6s ease-in-out infinite;
}
html[data-page="r3"] .r3-orbit::before,
html[data-page="r3"] .r3-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
html[data-page="r3"] .r3-orbit::before {
  width: 12px;
  height: 12px;
  right: 11%;
  top: 8%;
  background: #39d2aa;
  box-shadow: 0 0 26px rgba(57, 210, 170, 0.9);
}
html[data-page="r3"] .r3-orbit::after {
  width: 9px;
  height: 9px;
  left: 9%;
  bottom: 14%;
  background: #59a4ff;
  box-shadow: 0 0 24px rgba(89, 164, 255, 0.85);
}
@keyframes r3-r3OrbitPulse {
  0%,
  100% {
    transform: rotate(-7deg) scale(1);
  }
  50% {
    transform: rotate(-4deg) scale(1.03);
  }
}
html[data-page="r3"] .r3-floating-stack {
  position: relative;
  z-index: 2;
  width: min(255px, 86%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
html[data-page="r3"] .r3-floating-card {
  width: 100%;
  min-height: 88px;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(8, 43, 67, 0.88),
    rgba(6, 29, 47, 0.78)
  );
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px) saturate(135%);
  animation: r3-r3CardFloat 6s ease-in-out infinite;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
html[data-page="r3"] .r3-floating-card:nth-child(1) {
  margin-left: 0;
  animation-delay: -1s;
}
html[data-page="r3"] .r3-floating-card:nth-child(2) {
  margin-left: 18px;
  animation-delay: -3s;
}
html[data-page="r3"] .r3-floating-card:nth-child(3) {
  margin-left: 6px;
  animation-delay: -5s;
}
@keyframes r3-r3CardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -7px, 0);
  }
}
html[data-page="r3"] .r3-float-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 10px 24px rgba(0, 179, 136, 0.24);
}
html[data-page="r3"] .r3-float-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="r3"] .r3-floating-card small {
  display: block;
  color: #84e7c9;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="r3"] .r3-floating-card strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}
html[data-page="r3"] .r3-floating-card b {
  color: #91a9b8;
  font-size: 18px;
  transition: 0.25s;
}
html[data-page="r3"] .r3-floating-card:hover,
html[data-page="r3"] .r3-floating-card:focus-visible {
  transform: translateX(6px);
  border-color: rgba(117, 230, 198, 0.42);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}
html[data-page="r3"] .r3-floating-card:hover b,
html[data-page="r3"] .r3-floating-card:focus-visible b {
  color: #70e0c0;
  transform: translateX(4px);
}

html[data-page="r3"] .r3-intro {
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    var(--surface-soft) 100%
  );
}
html[data-page="r3"] .r3-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}
html[data-page="r3"] .r3-promise-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(8, 41, 66, 0.08);
  transition:
    transform 0.28s,
    border-color 0.28s,
    box-shadow 0.28s;
}
html[data-page="r3"] .r3-promise-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--blue), var(--green));
  transform: scaleY(0.24);
  transform-origin: top;
  transition: 0.35s;
}
html[data-page="r3"] .r3-promise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 128, 237, 0.32);
  box-shadow: 0 24px 58px rgba(8, 41, 66, 0.14);
}
html[data-page="r3"] .r3-promise-card:hover::before {
  transform: scaleY(1);
}
html[data-page="r3"] .r3-promise-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 13px 30px rgba(47, 128, 237, 0.2);
}
html[data-page="r3"] .r3-promise-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="r3"] .r3-promise-card h3 {
  margin: 22px 0 10px;
  font-size: 20px;
  line-height: 1.25;
}
html[data-page="r3"] .r3-promise-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

html[data-page="r3"] .r3-areas {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #061b2c, #0a3850);
  color: #fff;
}
html[data-page="r3"] .r3-areas::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -260px;
  top: -230px;
  border: 1px solid rgba(43, 212, 168, 0.23);
  box-shadow: 0 0 100px rgba(43, 212, 168, 0.08);
}
html[data-page="r3"] .r3-areas .section-head h2,
html[data-page="r3"] .r3-areas .section-head p {
  color: #fff;
}
html[data-page="r3"] .r3-areas .section-head h2 {
  font-size: clamp(24px, 2.7vw, 36px);
}
html[data-page="r3"] .r3-areas .section-head p {
  color: rgba(255, 255, 255, 0.7);
}
html[data-page="r3"] .r3-areas .section-head .r3-areas-lead {
  max-width: none;
  font-size: 15px;
  white-space: nowrap;
}
html[data-page="r3"] .r3-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
html[data-page="r3"] .r3-area-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.32s,
    border-color 0.32s,
    box-shadow 0.32s;
}
html[data-page="r3"] .r3-area-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="r3"] .r3-area-card:hover {
  transform: translateY(-12px);
  border-color: rgba(117, 230, 198, 0.44);
  box-shadow: 0 34px 85px rgba(0, 0, 0, 0.3);
}
html[data-page="r3"] .r3-area-thumb {
  position: relative;
  height: 250px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
html[data-page="r3"] .r3-area-photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
html[data-page="r3"] .r3-area-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition:
    transform 0.55s ease,
    filter 0.42s ease;
}
html[data-page="r3"] .r3-area-thumb--clinica .r3-area-photo::before {
  background-image:
    linear-gradient(135deg, rgba(4, 22, 38, 0.9), rgba(8, 85, 120, 0.55)),
    url("../images/banner-r1-r3.webp");
  background-position: 76% center;
}
html[data-page="r3"] .r3-area-thumb--cirurgia .r3-area-photo::before {
  background-image:
    linear-gradient(135deg, rgba(4, 20, 35, 0.92), rgba(0, 135, 142, 0.46)),
    url("../images/banner-r1-r3.webp");
  background-position: 68% center;
}
html[data-page="r3"] .r3-area-thumb--pediatria .r3-area-photo::before {
  background-image:
    linear-gradient(135deg, rgba(3, 23, 38, 0.9), rgba(0, 160, 146, 0.42)),
    url("../images/banner-ciclo-basico.webp");
  background-position: 72% center;
}
html[data-page="r3"] .r3-area-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 26%),
    linear-gradient(0deg, rgba(3, 17, 29, 0.82), rgba(3, 17, 29, 0.06));
}
html[data-page="r3"] .r3-area-photo > * {
  position: relative;
  z-index: 2;
}
html[data-page="r3"] .r3-area-chip {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(4, 27, 42, 0.52);
  color: #e6f6ff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
html[data-page="r3"] .r3-area-mark {
  position: absolute;
  right: 18px;
  top: 20px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.92),
    rgba(0, 179, 136, 0.88)
  );
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}
html[data-page="r3"] .r3-area-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
}
html[data-page="r3"] .r3-area-mark svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.16));
}
html[data-page="r3"] .r3-area-image-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(5, 30, 46, 0.55);
  color: #d9effa;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  backdrop-filter: blur(14px);
}
html[data-page="r3"] .r3-area-thumb--cirurgia .r3-area-mark {
  background: linear-gradient(135deg, #1471d2, #12b1ab);
}
html[data-page="r3"] .r3-area-thumb--pediatria .r3-area-mark {
  background: linear-gradient(135deg, #3d8cff, #2ad0a0);
}
html[data-page="r3"] .r3-area-card:hover .r3-area-photo::before {
  transform: scale(1.1);
  filter: saturate(1.06) contrast(1.04);
}
html[data-page="r3"] .r3-area-copy {
  position: relative;
  min-height: 320px;
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
}
html[data-page="r3"] .r3-area-copy small {
  color: #7fe1c4;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
html[data-page="r3"] .r3-area-copy h3 {
  margin: 9px 0 12px;
  font-size: 27px;
}
html[data-page="r3"] .r3-area-copy p {
  min-height: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}
html[data-page="r3"] .r3-area-link {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}
html[data-page="r3"] .r3-area-link span:last-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.25s;
}
html[data-page="r3"] .r3-area-card:hover .r3-area-link span:last-child {
  background: #fff;
  color: #0a3550;
  transform: translateX(4px);
}

html[data-page="r3"] .r3-formats {
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
}
html[data-page="r3"] .r3-formats .section-head h2 {
  font-size: clamp(28px, 3vw, 40px);
}
html[data-page="r3"] .r3-format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}
html[data-page="r3"] .r3-format-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  box-shadow: 0 14px 36px rgba(8, 41, 66, 0.06);
  transition:
    transform 0.32s,
    border-color 0.32s,
    box-shadow 0.32s;
}
html[data-page="r3"] .r3-format-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -78px;
  top: -86px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.15),
    transparent 68%
  );
  transition:
    transform 0.4s ease,
    opacity 0.32s ease;
}
html[data-page="r3"] .r3-format-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: right 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="r3"] .r3-format-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 128, 237, 0.34);
  box-shadow: 0 22px 52px rgba(8, 41, 66, 0.12);
}
html[data-page="r3"] .r3-format-card:hover::before {
  transform: scale(1.22);
  opacity: 0.9;
}
html[data-page="r3"] .r3-format-card:hover::after {
  right: 0;
}
html[data-page="r3"] .r3-format-icon {
  position: relative;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, #2f80ed 0%, #1d98d8 48%, #00b388 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    0 15px 34px rgba(47, 128, 237, 0.23),
    0 0 0 7px rgba(47, 128, 237, 0.05);
  transition:
    transform 0.36s cubic-bezier(0.2, 0.85, 0.2, 1.22),
    box-shadow 0.32s ease;
}
html[data-page="r3"] .r3-format-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 17px;
}
html[data-page="r3"] .r3-format-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 8px;
  right: 8px;
  border-radius: 50%;
  background: #90f6da;
  box-shadow: 0 0 14px rgba(144, 246, 218, 0.9);
}
html[data-page="r3"] .r3-format-icon svg {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.18));
}
html[data-page="r3"] .r3-format-card:nth-child(2n) .r3-format-icon {
  background: linear-gradient(145deg, #0d8fc5, #00b388);
}
html[data-page="r3"] .r3-format-card:nth-child(3n) .r3-format-icon {
  background: linear-gradient(145deg, #3c72e8, #0aa99a);
}
html[data-page="r3"] .r3-format-card:hover .r3-format-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.08);
  box-shadow:
    0 22px 42px rgba(0, 179, 136, 0.22),
    0 0 0 9px rgba(0, 179, 136, 0.06);
}
html[data-page="r3"] .r3-format-card h3 {
  margin: 20px 0 8px;
  font-size: 17px;
}
html[data-page="r3"] .r3-format-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

html[data-page="r3"] .r3-flow-wrap {
  position: relative;
  margin-top: 48px;
}
html[data-page="r3"] .r3-flow-line {
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  border-radius: 999px;
  background: rgba(47, 128, 237, 0.12);
  overflow: hidden;
}
html[data-page="r3"] .r3-flow-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: translateX(-75%);
  animation: r3-r3FlowLight 5s ease-in-out infinite;
}
@keyframes r3-r3FlowLight {
  0%,
  15% {
    transform: translateX(-75%);
  }
  40% {
    transform: translateX(-45%);
  }
  65% {
    transform: translateX(-20%);
  }
  90%,
  100% {
    transform: translateX(0);
  }
}
html[data-page="r3"] .r3-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
html[data-page="r3"] .r3-flow-step {
  position: relative;
  text-align: center;
  padding-top: 0;
}
html[data-page="r3"] .r3-flow-step i {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(47, 128, 237, 0.2);
  color: var(--blue);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(8, 41, 66, 0.1);
  transition: 0.3s;
}
html[data-page="r3"] .r3-flow-step:hover i {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 17px 35px rgba(0, 179, 136, 0.22);
}
html[data-page="r3"] .r3-flow-step h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
html[data-page="r3"] .r3-flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

html[data-page="r3"] .r3-faq {
  background: var(--surface-soft);
}
html[data-page="r3"] .r3-final {
  padding: 28px 0 88px;
  background: var(--surface-soft);
}
html[data-page="r3"] .r3-final-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 52px 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, #082942, #0b4960);
  box-shadow: var(--shadow);
}
html[data-page="r3"] .r3-final-card::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  border: 1px solid rgba(113, 229, 197, 0.32);
}
html[data-page="r3"] .r3-final-card > * {
  position: relative;
  z-index: 2;
}
html[data-page="r3"] .r3-final-card span {
  color: #82e3c6;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
html[data-page="r3"] .r3-final-card h2 {
  max-width: 730px;
  margin: 11px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

@media (max-width: 1024px) {
  html[data-page="r3"] .hero-r3-inner {
    grid-template-columns: 1fr 0.72fr;
    gap: 26px;
  }
  html[data-page="r3"] .r3-floating-card {
    width: 240px;
  }
  html[data-page="r3"] .r3-promise-grid,
  html[data-page="r3"] .r3-area-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="r3"] .r3-area-card {
    min-height: 0;
    display: block;
  }
  html[data-page="r3"] .r3-area-thumb {
    height: 100%;
    min-height: 340px;
  }
  html[data-page="r3"] .r3-area-copy p {
    min-height: 0;
  }
  html[data-page="r3"] .r3-format-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  html[data-page="r3"] .hero-r3 {
    min-height: auto;
    background-position: 66% center;
  }
  html[data-page="r3"] .hero-r3::before {
    background: linear-gradient(
      180deg,
      rgba(4, 24, 40, 0.42),
      rgba(4, 24, 40, 0.98) 58%
    );
  }
  html[data-page="r3"] .hero-r3-inner {
    min-height: 760px;
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 250px;
    padding-bottom: 76px;
  }
  html[data-page="r3"] .hero-r3-visual {
    display: none;
  }
  html[data-page="r3"] .r3-area-card {
    display: block;
  }
  html[data-page="r3"] .r3-area-thumb {
    min-height: 250px;
    height: 250px;
  }
  html[data-page="r3"] .r3-flow-line {
    display: none;
  }
  html[data-page="r3"] .r3-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="r3"] .r3-final-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 44px 36px;
  }
}
@media (max-width: 640px) {
  html[data-page="r3"] .hero-r3 {
    background-position: 73% center;
  }
  html[data-page="r3"] .hero-r3-inner {
    min-height: 700px;
    padding-top: 235px;
  }
  html[data-page="r3"] .hero-r3-copy h1 {
    font-size: 34px;
  }
  html[data-page="r3"] .hero-r3-copy > p {
    font-size: 15px;
  }
  html[data-page="r3"] .r3-promise-grid,
  html[data-page="r3"] .r3-format-grid,
  html[data-page="r3"] .r3-flow {
    grid-template-columns: 1fr;
  }
  html[data-page="r3"] .r3-areas .section-head .r3-areas-lead {
    white-space: normal;
  }
  html[data-page="r3"] .r3-area-copy {
    padding: 24px;
  }
  html[data-page="r3"] .r3-area-copy h3 {
    font-size: 24px;
  }
  html[data-page="r3"] .r3-final-card {
    padding: 38px 26px;
  }
}

/* Ícones premium dos cards de escolha R3 */
html[data-page="r3"] .r3-area-card {
  padding-right: 142px;
}
html[data-page="r3"] .r3-area-icon {
  position: absolute;
  z-index: 3;
  right: 28px;
  top: 50%;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(145deg, #2f80ed 0%, #149ac1 48%, #00b388 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.28),
    0 0 0 9px rgba(47, 128, 237, 0.08);
  transform: translateY(-50%);
  transition:
    transform 0.42s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease,
    filter 0.35s ease;
  isolation: isolate;
}
html[data-page="r3"] .r3-area-icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 21px;
}
html[data-page="r3"] .r3-area-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  right: 10px;
  top: 10px;
  border-radius: 50%;
  background: #91f6d9;
  box-shadow: 0 0 16px rgba(145, 246, 217, 0.95);
  animation: r3-r3IconPulse 2.2s ease-in-out infinite;
}
html[data-page="r3"] .r3-area-icon svg {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.2));
}
html[data-page="r3"] .r3-area-card:nth-child(2) .r3-area-icon {
  background: linear-gradient(145deg, #1474d4, #0d9fb1 55%, #00b388);
}
html[data-page="r3"] .r3-area-card:nth-child(3) .r3-area-icon {
  background: linear-gradient(145deg, #3b7ee8, #1aa5c1 48%, #22bd91);
}
html[data-page="r3"] .r3-area-card:hover .r3-area-icon {
  transform: translateY(-50%) rotate(-7deg) scale(1.1);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.32),
    0 0 0 12px rgba(0, 179, 136, 0.1),
    0 0 38px rgba(43, 212, 168, 0.22);
  filter: saturate(1.12);
}
@keyframes r3-r3IconPulse {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.14);
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  html[data-page="r3"] .r3-area-card {
    padding-right: 130px;
  }
  html[data-page="r3"] .r3-area-icon {
    right: 24px;
    width: 82px;
    height: 82px;
    border-radius: 24px;
  }
  html[data-page="r3"] .r3-area-icon svg {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 640px) {
  html[data-page="r3"] .r3-area-card {
    padding-right: 96px;
  }
  html[data-page="r3"] .r3-area-icon {
    right: 18px;
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }
  html[data-page="r3"] .r3-area-icon::before {
    border-radius: 15px;
  }
  html[data-page="r3"] .r3-area-icon svg {
    width: 30px;
    height: 30px;
  }
}

/* Cabeçalho centralizado no limite de 1240 px */
@media (min-width: 921px) {
  
  
  
  
  
  
}

/* ============================================================
 * Página(s): revalida
 * ============================================================ */
html[data-page="revalida"] {
  --blue: #2f80ed;
  --blue-2: #195fc3;
  --blue-deep: #082942;
  --blue-darker: #051a2a;
  --green: #00b388;
  --green-2: #2bd4a8;
  --ink: #102939;
  --muted: #667085;
  --surface: #ffffff;
  --surface-soft: #f5f9fc;
  --surface-blue: #edf7ff;
  --border: rgba(16, 41, 57, 0.12);
  --header: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 70px rgba(8, 41, 66, 0.14);
  --max: 1240px;
  color-scheme: light;
}
html[data-page="revalida"][data-theme="dark"] {
  --ink: #f6fbff;
  --muted: #a7bac8;
  --surface: #071b2a;
  --surface-soft: #0b2335;
  --surface-blue: #0d2a40;
  --border: rgba(236, 247, 255, 0.12);
  --header: rgba(6, 24, 37, 0.92);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}
html[data-page="revalida"] * {
  box-sizing: border-box;
}
html[data-page="revalida"] {
  scroll-behavior: smooth;
}
html[data-page="revalida"] body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}
html[data-page="revalida"] body.menu-open {
  overflow: hidden;
}
html[data-page="revalida"] img {
  max-width: 100%;
}
html[data-page="revalida"] a {
  color: inherit;
  text-decoration: none;
}
html[data-page="revalida"] button,
html[data-page="revalida"] input {
  font: inherit;
}
html[data-page="revalida"] button {
  color: inherit;
}
html[data-page="revalida"] .section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
























html[data-page="revalida"] .hero-r1 {
  position: relative;
  min-height: 720px;
  margin-top: 84px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 24%,
      rgba(0, 179, 136, 0.27),
      transparent 26%
    ),
    radial-gradient(
      circle at 15% 75%,
      rgba(47, 128, 237, 0.2),
      transparent 28%
    ),
    linear-gradient(135deg, #061a2a 0%, #082d48 54%, #083a4e 100%);
}
html[data-page="revalida"] .hero-r1::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
html[data-page="revalida"] .hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
  animation: revalida-orbFloat 7s ease-in-out infinite;
}
html[data-page="revalida"] .hero-orb.one {
  width: 280px;
  height: 280px;
  right: -80px;
  top: 80px;
  border: 1px solid rgba(43, 212, 168, 0.38);
}
html[data-page="revalida"] .hero-orb.two {
  width: 160px;
  height: 160px;
  right: 34%;
  bottom: -60px;
  border: 1px solid rgba(47, 128, 237, 0.38);
  animation-delay: -2s;
}
html[data-page="revalida"] .hero-orb.three {
  width: 18px;
  height: 18px;
  background: var(--green-2);
  right: 11%;
  top: 17%;
  box-shadow: 0 0 40px rgba(43, 212, 168, 0.85);
  animation-delay: -4s;
}
@keyframes revalida-orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}
html[data-page="revalida"] .hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
  padding-block: 78px;
}
html[data-page="revalida"] .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8d9f5;
}
html[data-page="revalida"] .eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-2), var(--blue));
}
html[data-page="revalida"] .hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}
html[data-page="revalida"] .hero-copy h1 span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #fff, #a9e8db 54%, #94caff);
  -webkit-background-clip: text;
  color: transparent;
}
html[data-page="revalida"] .hero-copy > p {
  max-width: 660px;
  margin: 26px 0 0;
  color: #c2d6e2;
  font-size: 18px;
  line-height: 1.72;
}
html[data-page="revalida"] .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
html[data-page="revalida"] .hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #e5f2f8;
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}
html[data-page="revalida"] .hero-facts i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(43, 212, 168, 0.18);
  color: var(--green-2);
  font-style: normal;
}
html[data-page="revalida"] .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
html[data-page="revalida"] .btn-primary,
html[data-page="revalida"] .btn-secondary {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 850;
  transition: 0.25s;
}
html[data-page="revalida"] .btn-primary {
  background: linear-gradient(135deg, var(--green), #009b78);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 179, 136, 0.28);
}
html[data-page="revalida"] .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(0, 179, 136, 0.36);
}
html[data-page="revalida"] .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
html[data-page="revalida"] .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
html[data-page="revalida"] .hero-visual {
  position: relative;
  perspective: 1200px;
}
html[data-page="revalida"] .video-shell {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  transform: rotateY(-5deg) rotateX(1.5deg);
  animation: revalida-visualFloat 5.5s ease-in-out infinite;
}
@keyframes revalida-visualFloat {
  0%,
  100% {
    transform: rotateY(-5deg) rotateX(1.5deg) translateY(0);
  }
  50% {
    transform: rotateY(-3deg) rotateX(1deg) translateY(-10px);
  }
}
html[data-page="revalida"] .browser-bar {
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 18px 18px 0 0;
  background: rgba(4, 20, 31, 0.78);
}
html[data-page="revalida"] .browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}
html[data-page="revalida"] .browser-bar span {
  margin-left: auto;
  color: #9fb9c8;
  font-size: 10px;
  letter-spacing: 0.08em;
}
html[data-page="revalida"] .video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 0 0 19px 19px;
  background: #000;
}
html[data-page="revalida"] .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
html[data-page="revalida"] .floating-proof {
  position: absolute;
  left: -38px;
  bottom: -35px;
  width: 220px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: #102939;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
  animation: revalida-proofFloat 4.8s ease-in-out infinite;
}
@keyframes revalida-proofFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
html[data-page="revalida"] .floating-proof strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--blue-deep);
}
html[data-page="revalida"] .floating-proof span {
  display: block;
  margin-top: 7px;
  color: #617484;
  font-size: 12px;
  line-height: 1.5;
}
html[data-page="revalida"] .floating-proof .mini-stars {
  margin-top: 9px;
  color: #f5a623;
  letter-spacing: 2px;
}

html[data-page="revalida"] .quick-strip {
  position: relative;
  z-index: 5;
  margin-top: -30px;
}
html[data-page="revalida"] .quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
html[data-page="revalida"] .quick-item {
  padding: 27px 26px;
  position: relative;
}
html[data-page="revalida"] .quick-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--border);
}
html[data-page="revalida"] .quick-item small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html[data-page="revalida"] .quick-item strong {
  font-size: 18px;
  line-height: 1.3;
}

html[data-page="revalida"] section {
  position: relative;
}
html[data-page="revalida"] .section-pad {
  padding: 104px 0;
}
html[data-page="revalida"] .section-head {
  max-width: 790px;
  margin: 0 auto 50px;
  text-align: center;
}
html[data-page="revalida"] .section-head .label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
html[data-page="revalida"] .section-head .label::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="revalida"] .section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
html[data-page="revalida"] .section-head p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

html[data-page="revalida"] .why-section {
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    var(--surface-soft) 100%
  );
}
html[data-page="revalida"] .why-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
html[data-page="revalida"] .why-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="revalida"] .why-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="revalida"] .benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
html[data-page="revalida"] .benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 25px rgba(8, 41, 66, 0.05);
  transition: 0.25s;
}
html[data-page="revalida"] .benefit-item:hover {
  transform: translateX(6px);
  border-color: rgba(47, 128, 237, 0.34);
}
html[data-page="revalida"] .benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.13),
    rgba(0, 179, 136, 0.14)
  );
  color: var(--blue);
}
html[data-page="revalida"] .benefit-item h3 {
  margin: 1px 0 6px;
  font-size: 16px;
}
html[data-page="revalida"] .benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}
html[data-page="revalida"] .why-panel {
  position: relative;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #082942, #0a3b56 68%, #0d5b69);
  color: #fff;
  box-shadow: var(--shadow);
}
html[data-page="revalida"] .why-panel::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -100px;
  top: -80px;
  border-radius: 50%;
  border: 1px solid rgba(43, 212, 168, 0.35);
}
html[data-page="revalida"] .why-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -120px 20%;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.32),
    transparent 68%
  );
}
html[data-page="revalida"] .panel-kicker {
  position: relative;
  z-index: 1;
  color: #a8d8ef;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="revalida"] .why-panel h3 {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html[data-page="revalida"] .path-cards {
  --path-progress: 0%;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin-top: 30px;
  padding-left: 10px;
}
html[data-page="revalida"] .path-cards::before,
html[data-page="revalida"] .path-cards::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 30px;
  top: 34px;
  width: 3px;
  border-radius: 99px;
  pointer-events: none;
}
html[data-page="revalida"] .path-cards::before {
  bottom: 34px;
  background: rgba(255, 255, 255, 0.11);
}
html[data-page="revalida"] .path-cards::after {
  height: var(--path-progress);
  max-height: calc(100% - 68px);
  background: linear-gradient(180deg, #39a4ff 0%, #22d3b1 56%, #79f0c8 100%);
  box-shadow:
    0 0 18px rgba(43, 212, 168, 0.64),
    0 0 34px rgba(47, 128, 237, 0.25);
  transition: height 0.56s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="revalida"] .path-card {
  --path-delay: 0ms;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 76px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  cursor: pointer;
  outline: none;
  transition:
    transform 0.34s cubic-bezier(0.2, 0.85, 0.2, 1.18) var(--path-delay),
    border-color 0.3s ease var(--path-delay),
    background 0.3s ease var(--path-delay),
    box-shadow 0.3s ease var(--path-delay);
}
html[data-page="revalida"] .path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 8%,
    rgba(255, 255, 255, 0.12) 48%,
    transparent 78%
  );
  transform: translateX(-125%);
  opacity: 0;
  pointer-events: none;
}
html[data-page="revalida"] .path-card b {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: #103f58;
  color: #a9c5d4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition:
    color 0.3s ease var(--path-delay),
    background 0.3s ease var(--path-delay),
    transform 0.34s cubic-bezier(0.2, 0.85, 0.2, 1.18) var(--path-delay),
    box-shadow 0.3s ease var(--path-delay);
}
html[data-page="revalida"] .path-card strong {
  display: block;
  font-size: 14px;
  transition: color 0.3s ease var(--path-delay);
}
html[data-page="revalida"] .path-card span {
  display: block;
  margin-top: 4px;
  color: #abc4d2;
  font-size: 11px;
  transition: color 0.3s ease var(--path-delay);
}
html[data-page="revalida"] .path-card em {
  font-style: normal;
  color: #7faabd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition:
    color 0.3s ease var(--path-delay),
    transform 0.3s ease var(--path-delay);
}
html[data-page="revalida"] .path-card.is-lit,
html[data-page="revalida"] .path-card:hover,
html[data-page="revalida"] .path-card:focus-visible {
  transform: translateX(8px);
  border-color: rgba(86, 228, 187, 0.42);
  background: linear-gradient(
    105deg,
    rgba(47, 128, 237, 0.17),
    rgba(0, 179, 136, 0.14)
  );
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.17),
    0 0 0 1px rgba(105, 237, 200, 0.05) inset;
}
html[data-page="revalida"] .path-card.is-lit::after,
html[data-page="revalida"] .path-card:hover::after,
html[data-page="revalida"] .path-card:focus-visible::after {
  opacity: 1;
  animation: revalida-pathShine 0.72s ease forwards var(--path-delay);
}
html[data-page="revalida"] .path-card.is-lit b,
html[data-page="revalida"] .path-card:hover b,
html[data-page="revalida"] .path-card:focus-visible b {
  background: linear-gradient(135deg, #328ff5, var(--green));
  color: #fff;
  transform: scale(1.09) rotate(-3deg);
  box-shadow:
    0 0 0 6px rgba(47, 128, 237, 0.09),
    0 13px 27px rgba(0, 179, 136, 0.25);
}
html[data-page="revalida"] .path-card.is-lit strong {
  color: #fff;
}
html[data-page="revalida"] .path-card.is-lit span {
  color: #cfe3ec;
}
html[data-page="revalida"] .path-card.is-lit em {
  color: #9cf4dc;
  transform: translateX(-2px);
}
@keyframes revalida-pathShine {
  to {
    transform: translateX(125%);
  }
}
html[data-page="revalida"] .panel-note {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--green-2);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 0 14px 14px 0;
  color: #c9dce6;
  font-size: 13px;
  line-height: 1.65;
}

html[data-page="revalida"] .resources-section {
  background: var(--surface);
}
html[data-page="revalida"] .resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
html[data-page="revalida"] .resource-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  isolation: isolate;
  transition:
    transform 0.36s cubic-bezier(0.2, 0.85, 0.2, 1.15),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
html[data-page="revalida"] .resource-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 145px;
  height: 145px;
  right: -72px;
  top: -76px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.16),
    transparent 68%
  );
  transition:
    transform 0.45s ease,
    opacity 0.35s ease;
}
html[data-page="revalida"] .resource-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: right 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="revalida"] .resource-card:hover {
  transform: translateY(-9px);
  border-color: rgba(47, 128, 237, 0.38);
  box-shadow: 0 23px 52px rgba(8, 41, 66, 0.13);
}
html[data-page="revalida"] .resource-card:hover::before {
  transform: scale(1.22);
  opacity: 0.86;
}
html[data-page="revalida"] .resource-card:hover::after {
  right: 0;
}
html[data-page="revalida"] .resource-icon {
  position: relative;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  background: linear-gradient(145deg, #2f80ed 0%, #1d98d8 45%, #00b388 100%);
  color: #fff;
  box-shadow:
    0 14px 30px rgba(47, 128, 237, 0.23),
    0 0 0 7px rgba(47, 128, 237, 0.055);
  transform: translateZ(0);
  transition:
    transform 0.38s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
html[data-page="revalida"] .resource-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
}
html[data-page="revalida"] .resource-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  right: 8px;
  top: 8px;
  border-radius: 50%;
  background: #8cf3d6;
  box-shadow: 0 0 13px rgba(140, 243, 214, 0.95);
}
html[data-page="revalida"] .resource-icon svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.16));
}
html[data-page="revalida"] .resource-card:nth-child(2n) .resource-icon {
  background: linear-gradient(145deg, #0d8fc5, #00b388);
}
html[data-page="revalida"] .resource-card:nth-child(3n) .resource-icon {
  background: linear-gradient(145deg, #3c72e8, #0aa99a);
}
html[data-page="revalida"] .resource-card:hover .resource-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.08);
  box-shadow:
    0 20px 38px rgba(0, 179, 136, 0.25),
    0 0 0 9px rgba(0, 179, 136, 0.07);
}
html[data-page="revalida"] .resource-card h3 {
  margin: 23px 0 9px;
  font-size: 17px;
}
html[data-page="revalida"] .resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

html[data-page="revalida"] .method-section {
  overflow: hidden;
  background: linear-gradient(135deg, #edf7ff 0%, #f3fffb 52%, #eff6ff 100%);
}
html[data-page="revalida"][data-theme="dark"] .method-section {
  background: linear-gradient(135deg, #0b2335, #0c2d37 52%, #0c2537);
}
html[data-page="revalida"] .method-flow {
  --method-progress: 0%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  padding-top: 6px;
}
html[data-page="revalida"] .method-line,
html[data-page="revalida"] .method-line-fill {
  position: absolute;
  z-index: 0;
  left: calc(12.5% - 1px);
  top: 42px;
  height: 4px;
  border-radius: 99px;
}
html[data-page="revalida"] .method-line {
  right: calc(12.5% - 1px);
  background: rgba(8, 41, 66, 0.12);
}
html[data-page="revalida"][data-theme="dark"] .method-line {
  background: rgba(255, 255, 255, 0.12);
}
html[data-page="revalida"] .method-line-fill {
  width: var(--method-progress);
  max-width: calc(75% - 2px);
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 18px rgba(0, 179, 136, 0.36);
  transition: width 0.52s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="revalida"] .method-step {
  position: relative;
  z-index: 1;
  text-align: center;
  cursor: pointer;
  outline: none;
}
html[data-page="revalida"] .method-step b {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(47, 128, 237, 0.22);
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(8, 41, 66, 0.12);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
html[data-page="revalida"] .method-step b::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid transparent;
  border-radius: inherit;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease;
}
html[data-page="revalida"] .method-step.active b,
html[data-page="revalida"] .method-step:hover b,
html[data-page="revalida"] .method-step:focus-visible b {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  transform: translateY(-6px) scale(1.09);
  box-shadow:
    0 0 0 8px rgba(47, 128, 237, 0.09),
    0 19px 38px rgba(0, 179, 136, 0.22);
}
html[data-page="revalida"] .method-step.active b::before,
html[data-page="revalida"] .method-step:hover b::before,
html[data-page="revalida"] .method-step:focus-visible b::before {
  border-color: rgba(0, 179, 136, 0.32);
  transform: scale(1.04);
}
html[data-page="revalida"] .method-step h3 {
  margin: 21px 0 8px;
  font-size: 18px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
html[data-page="revalida"] .method-step p {
  margin: 0 auto;
  max-width: 250px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  transition: transform 0.3s ease;
}
html[data-page="revalida"] .method-step.active h3,
html[data-page="revalida"] .method-step:hover h3 {
  color: var(--green);
  transform: translateY(-2px);
}
html[data-page="revalida"] .method-step.active p,
html[data-page="revalida"] .method-step:hover p {
  transform: translateY(-2px);
}

html[data-page="revalida"] .pricing-section {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}
html[data-page="revalida"] .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 54px;
  align-items: start;
}
html[data-page="revalida"] .pricing-content h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
html[data-page="revalida"] .pricing-content > p {
  margin: 20px 0 0;
  max-width: 690px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="revalida"] .included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
html[data-page="revalida"] .included-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
html[data-page="revalida"] .included-list i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 179, 136, 0.12);
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}
html[data-page="revalida"] .bonus-card {
  margin-top: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  border: 1px solid rgba(47, 128, 237, 0.2);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.09),
    rgba(0, 179, 136, 0.09)
  );
}
html[data-page="revalida"] .bonus-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
}
html[data-page="revalida"] .bonus-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
}
html[data-page="revalida"] .bonus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
html[data-page="revalida"] .price-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border: 1px solid rgba(47, 128, 237, 0.22);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(8, 41, 66, 0.17);
}
html[data-page="revalida"] .price-card-top {
  padding: 26px 28px;
  background: linear-gradient(135deg, var(--blue-deep), #0c4a65);
  color: #fff;
}
html[data-page="revalida"] .price-card-top span {
  display: block;
  color: #acd1e1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="revalida"] .price-card-top h3 {
  margin: 10px 0 0;
  font-size: 28px;
}
html[data-page="revalida"] .price-body {
  padding: 28px;
}
html[data-page="revalida"] .price-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
html[data-page="revalida"] .installments {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
html[data-page="revalida"] .installments strong {
  font-size: 47px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--blue-deep);
}
html[data-page="revalida"][data-theme="dark"] .installments strong {
  color: #fff;
}
html[data-page="revalida"] .installments span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
}
html[data-page="revalida"] .cash {
  margin-top: 11px;
  color: var(--muted);
  font-size: 13px;
}
html[data-page="revalida"] .cash b {
  color: var(--ink);
}
html[data-page="revalida"] .price-benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
html[data-page="revalida"] .price-benefits span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}
html[data-page="revalida"] .price-benefits i {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}
html[data-page="revalida"] .buy-button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), #008e70);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(0, 179, 136, 0.24);
  transition: 0.25s;
}
html[data-page="revalida"] .buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(0, 179, 136, 0.34);
}
html[data-page="revalida"] .secure-note {
  margin: 14px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

html[data-page="revalida"] .numbers-section {
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(100deg, #0c6173, #2c8c88 55%, #66b59f);
}
html[data-page="revalida"] .numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="revalida"] .number-item {
  text-align: center;
  padding: 15px 20px;
}
html[data-page="revalida"] .number-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
html[data-page="revalida"] .number-item strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.05em;
}
html[data-page="revalida"] .number-item span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

html[data-page="revalida"] .teachers-section {
  background: var(--surface);
}
html[data-page="revalida"] .teacher-track-wrap {
  position: relative;
}
html[data-page="revalida"] .teacher-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
html[data-page="revalida"] .teacher-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  transition: 0.28s;
}
html[data-page="revalida"] .teacher-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 42px rgba(8, 41, 66, 0.12);
}
html[data-page="revalida"] .teacher-card img {
  width: 100%;
  aspect-ratio: 1.45/1;
  object-fit: cover;
  display: block;
  background: transparent;
}
html[data-page="revalida"] .teacher-info {
  padding: 17px 17px 20px;
}
html[data-page="revalida"] .teacher-info h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
html[data-page="revalida"] .teacher-info p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

html[data-page="revalida"] .objections-section {
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
}
html[data-page="revalida"] .objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
html[data-page="revalida"] .objection-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}
html[data-page="revalida"] .objection-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.13),
    rgba(0, 179, 136, 0.13)
  );
  color: var(--blue);
}
html[data-page="revalida"] .objection-card h3 {
  margin: 18px 0 9px;
  font-size: 19px;
  line-height: 1.35;
}
html[data-page="revalida"] .objection-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

html[data-page="revalida"] .faq-section {
  background: var(--surface);
}
html[data-page="revalida"] .faq-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 58px;
  align-items: start;
}
html[data-page="revalida"] .faq-aside {
  position: sticky;
  top: 116px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--blue-deep), #0b4b63);
  color: #fff;
  box-shadow: var(--shadow);
}
html[data-page="revalida"] .faq-aside small {
  color: #9fc7d9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="revalida"] .faq-aside h2 {
  margin: 14px 0 0;
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
html[data-page="revalida"] .faq-aside p {
  margin: 17px 0 0;
  color: #bdd2dd;
  font-size: 14px;
  line-height: 1.72;
}
html[data-page="revalida"] .faq-aside a {
  margin-top: 23px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), #009478);
  font-size: 13px;
  font-weight: 850;
}
html[data-page="revalida"] .faq-list {
  display: grid;
  gap: 10px;
}
html[data-page="revalida"] .faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
}
html[data-page="revalida"] .faq-question {
  width: 100%;
  padding: 20px 21px;
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 18px;
  align-items: center;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
html[data-page="revalida"] .faq-question strong {
  font-size: 14px;
  line-height: 1.45;
}
html[data-page="revalida"] .faq-question i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--surface-soft);
  color: var(--blue);
  font-style: normal;
  font-size: 22px;
  transition: 0.25s;
}
html[data-page="revalida"] .faq-item.open .faq-question i {
  transform: rotate(45deg);
  background: rgba(0, 179, 136, 0.12);
  color: var(--green);
}
html[data-page="revalida"] .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
html[data-page="revalida"] .faq-answer > div {
  overflow: hidden;
}
html[data-page="revalida"] .faq-answer p {
  margin: 0;
  padding: 0 21px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
html[data-page="revalida"] .faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
html[data-page="revalida"] .faq-item.open .faq-answer p {
  padding-bottom: 21px;
}

html[data-page="revalida"] .final-cta {
  padding: 0 0 104px;
  background: var(--surface);
}
html[data-page="revalida"] .final-cta-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, #071f32, #0b4560 58%, #0f7a78);
  box-shadow: var(--shadow);
}
html[data-page="revalida"] .final-cta-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -120px;
  top: -180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
html[data-page="revalida"] .final-cta-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  right: 14%;
  bottom: -100px;
  background: radial-gradient(circle, rgba(43, 212, 168, 0.3), transparent 66%);
}
html[data-page="revalida"] .final-cta-copy {
  position: relative;
  z-index: 1;
}
html[data-page="revalida"] .final-cta-copy span {
  color: #a9d8e9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
html[data-page="revalida"] .final-cta-copy h2 {
  margin: 12px 0 0;
  max-width: 780px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="revalida"] .final-cta-copy p {
  margin: 18px 0 0;
  color: #c4d9e3;
  font-size: 15px;
  line-height: 1.7;
}
html[data-page="revalida"] .final-cta .btn-primary {
  position: relative;
  z-index: 1;
  min-width: 220px;
}

html[data-page="revalida"] .brand-strip {
  padding: 27px 0 30px;
  background: #fff;
  border-top: 1px solid #dfe8ee;
  border-bottom: 1px solid #dfe8ee;
  color: #102939;
}
html[data-page="revalida"] .brand-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 1px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
html[data-page="revalida"] .brand-strip-divider {
  width: 1px;
  height: 94px;
  background: #d7e1e8;
}
html[data-page="revalida"] .brand-group h2 {
  margin: 0 0 15px;
  text-align: center;
  color: #49668f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
html[data-page="revalida"] .brand-logos {
  display: grid;
  gap: 10px;
}
html[data-page="revalida"] .institution-logos {
  grid-template-columns: repeat(5, 1fr);
}
html[data-page="revalida"] .developed-logos {
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="revalida"] .brand-logo-card {
  height: 72px;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e5ed;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(8, 41, 66, 0.05);
}
html[data-page="revalida"] .brand-logo-card img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

html[data-page="revalida"] footer {
  background: #061b2a;
  color: #fff;
}
html[data-page="revalida"] .footer-main {
  padding: 74px 0 58px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}
html[data-page="revalida"] .footer-brand img {
  width: 235px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}
html[data-page="revalida"] .footer-brand > p {
  margin: 25px 0;
  color: #9fb4c2;
  font-size: 15px;
  line-height: 1.75;
}
html[data-page="revalida"] .socials {
  display: flex;
  gap: 9px;
}
html[data-page="revalida"] .socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: #a7bdca;
  transition: 0.2s;
}
html[data-page="revalida"] .socials a:hover {
  background: var(--blue);
  color: #fff;
}
html[data-page="revalida"] .footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
html[data-page="revalida"] .footer-links h3 {
  margin: 0 0 21px;
  font-size: 15px;
}
html[data-page="revalida"] .footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
html[data-page="revalida"] .footer-links a,
html[data-page="revalida"] .footer-links span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9db2bf;
  font-size: 13px;
  line-height: 1.5;
}
html[data-page="revalida"] .footer-links a:hover {
  color: #fff;
}
html[data-page="revalida"] .footer-links small {
  margin-top: 8px;
  color: #7892a1;
  font-size: 11px;
  line-height: 1.5;
}
html[data-page="revalida"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
html[data-page="revalida"] .footer-bottom > div {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #7894a3;
  font-size: 11px;
  line-height: 1.55;
}
html[data-page="revalida"] .floating-contact {
  position: fixed;
  z-index: 80;
  right: 23px;
  bottom: 23px;
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00b388, #008e70);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0, 179, 136, 0.3);
  transition: 0.25s;
}
html[data-page="revalida"] .floating-contact:hover {
  transform: translateY(-3px);
}

html[data-page="revalida"] .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
html[data-page="revalida"] .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html[data-page="revalida"] *,
  html[data-page="revalida"] *::before,
  html[data-page="revalida"] *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  html[data-page="revalida"] .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  
  
  html[data-page="revalida"] .hero-inner {
    gap: 38px;
  }
  html[data-page="revalida"] .floating-proof {
    left: -18px;
  }
  html[data-page="revalida"] .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="revalida"] .teacher-track {
    grid-template-columns: repeat(3, 1fr);
  }
  html[data-page="revalida"] .pricing-grid {
    grid-template-columns: 1fr 390px;
    gap: 34px;
  }
  html[data-page="revalida"] .footer-main {
    grid-template-columns: 250px 1fr;
    gap: 45px;
  }
}
@media (max-width: 920px) {
  
  
  
  
  
  
  
  
  
  
  
  
  
  html[data-page="revalida"] .hero-r1,
  html[data-page="revalida"] .hero-inner {
    min-height: auto;
  }
  html[data-page="revalida"] .hero-r1 {
    margin-top: 74px;
  }
  html[data-page="revalida"] .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 76px 100px;
  }
  html[data-page="revalida"] .hero-copy {
    text-align: center;
  }
  html[data-page="revalida"] .hero-copy > p {
    margin-inline: auto;
  }
  html[data-page="revalida"] .eyebrow {
    justify-content: center;
  }
  html[data-page="revalida"] .hero-facts,
  html[data-page="revalida"] .hero-actions {
    justify-content: center;
  }
  html[data-page="revalida"] .hero-visual {
    max-width: 720px;
    margin-inline: auto;
    width: 100%;
  }
  html[data-page="revalida"] .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="revalida"] .quick-item:nth-child(2)::after {
    display: none;
  }
  html[data-page="revalida"] .quick-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="revalida"] .why-grid,
  html[data-page="revalida"] .pricing-grid,
  html[data-page="revalida"] .faq-layout {
    grid-template-columns: 1fr;
  }
  html[data-page="revalida"] .why-panel {
    min-height: auto;
  }
  html[data-page="revalida"] .price-card,
  html[data-page="revalida"] .faq-aside {
    position: relative;
    top: auto;
  }
  html[data-page="revalida"] .method-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }
  html[data-page="revalida"] .method-line,
  html[data-page="revalida"] .method-line-fill {
    display: none;
  }
  html[data-page="revalida"] .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="revalida"] .number-item:nth-child(2) {
    border-right: 0;
  }
  html[data-page="revalida"] .number-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  html[data-page="revalida"] .objection-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="revalida"] .teacher-track {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="revalida"] .brand-strip-inner {
    grid-template-columns: 1fr;
  }
  html[data-page="revalida"] .brand-strip-divider {
    width: 100%;
    height: 1px;
  }
  html[data-page="revalida"] .footer-main {
    grid-template-columns: 1fr;
  }
  html[data-page="revalida"] .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  html[data-page="revalida"] .section-shell {
    width: min(100% - 28px, var(--max));
  }
  
  
  
  
  html[data-page="revalida"] .hero-inner {
    padding-block: 60px 88px;
  }
  html[data-page="revalida"] .hero-copy h1 {
    font-size: 42px;
  }
  html[data-page="revalida"] .hero-copy > p {
    font-size: 16px;
  }
  html[data-page="revalida"] .video-shell {
    transform: none;
    animation: none;
    padding: 7px;
    border-radius: 20px;
  }
  html[data-page="revalida"] .floating-proof {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 13px;
  }
  html[data-page="revalida"] .quick-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="revalida"] .quick-item::after {
    display: none !important;
  }
  html[data-page="revalida"] .quick-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="revalida"] .section-pad {
    padding: 78px 0;
  }
  html[data-page="revalida"] .resources-grid,
  html[data-page="revalida"] .included-list,
  html[data-page="revalida"] .numbers-grid,
  html[data-page="revalida"] .teacher-track {
    grid-template-columns: 1fr;
  }
  html[data-page="revalida"] .method-flow {
    display: flex;
    gap: 14px;
    margin-inline: -14px;
    padding: 8px 14px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  html[data-page="revalida"] .method-flow::-webkit-scrollbar {
    display: none;
  }
  html[data-page="revalida"] .method-line,
  html[data-page="revalida"] .method-line-fill {
    display: none;
  }
  html[data-page="revalida"] .method-step {
    flex: 0 0 min(78vw, 286px);
    min-height: 250px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.64);
    scroll-snap-align: center;
    box-shadow: 0 14px 34px rgba(8, 41, 66, 0.07);
  }
  html[data-page="revalida"][data-theme="dark"] .method-step {
    background: rgba(255, 255, 255, 0.045);
  }
  html[data-page="revalida"] .number-item {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  html[data-page="revalida"] .number-item:last-child {
    border-bottom: 0;
  }
  html[data-page="revalida"] .pricing-content {
    text-align: center;
  }
  html[data-page="revalida"] .bonus-card {
    text-align: left;
  }
  html[data-page="revalida"] .installments strong {
    font-size: 42px;
  }
  html[data-page="revalida"] .final-cta-card {
    padding: 34px 26px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  html[data-page="revalida"] .final-cta .btn-primary {
    min-width: 0;
    width: 100%;
  }
  html[data-page="revalida"] .institution-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="revalida"] .institution-logos .brand-logo-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 5px);
    justify-self: center;
  }
  html[data-page="revalida"] .developed-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="revalida"] .footer-links {
    grid-template-columns: 1fr;
  }
  html[data-page="revalida"] .footer-bottom > div {
    padding-block: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  html[data-page="revalida"] .floating-contact span {
    display: none;
  }
  html[data-page="revalida"] .floating-contact {
    width: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* ============================================================
   Cabeçalho e rodapé globais — padrão para todas as páginas
   ============================================================ */









html[data-page="revalida"] .footer-brand > p {
  font-size: 17px !important;
  line-height: 1.75 !important;
}
html[data-page="revalida"] .footer-links h3 {
  font-size: 17px !important;
  letter-spacing: 0.01em;
}
html[data-page="revalida"] .footer-links a,
html[data-page="revalida"] .footer-links span {
  font-size: 15px !important;
  line-height: 1.62 !important;
}
html[data-page="revalida"] .footer-links small {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="revalida"] .footer-bottom > div {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="revalida"] .brand-group h2 {
  font-size: 14px !important;
}

@media (max-width: 920px) {
  
  
}

/* R1: mesma escala de H1 utilizada no hero da Home */
html[data-page="revalida"] .hero-copy h1 {
  font-size: clamp(40px, 3.4vw, 50px);
  line-height: 1.035;
  letter-spacing: -0.045em;
}

/* Informações rápidas com ícones temáticos */
html[data-page="revalida"] .quick-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 15px;
  padding: 24px 22px;
}
html[data-page="revalida"] .quick-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid currentColor;
  box-shadow: 0 10px 24px rgba(8, 41, 66, 0.08);
}
html[data-page="revalida"] .quick-icon svg {
  width: 25px;
  height: 25px;
}
html[data-page="revalida"] .quick-icon-blue {
  color: #2f80ed;
  background: rgba(47, 128, 237, 0.1);
}
html[data-page="revalida"] .quick-icon-green {
  color: #00a983;
  background: rgba(0, 179, 136, 0.11);
}
html[data-page="revalida"] .quick-icon-cyan {
  color: #0097b2;
  background: rgba(0, 151, 178, 0.11);
}
html[data-page="revalida"] .quick-icon-orange {
  color: #ef8a22;
  background: rgba(239, 138, 34, 0.11);
}
html[data-page="revalida"] .quick-item small {
  margin-bottom: 6px;
}
html[data-page="revalida"] .quick-item strong {
  display: block;
}
html[data-page="revalida"] .why-copy .benefit-list {
  margin-top: 32px;
}

@media (max-width: 640px) {
  html[data-page="revalida"] .hero-copy h1 {
    font-size: 34px;
  }
  html[data-page="revalida"] .quick-item {
    grid-template-columns: 48px 1fr;
    padding: 20px 18px;
  }
  html[data-page="revalida"] .quick-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

/* =========================================================
   PÁGINA REVALIDA — base visual das páginas internas
========================================================== */
html[data-page="revalida"] .revalida-page .hero-r1 {
  background:
    radial-gradient(
      circle at 82% 24%,
      rgba(239, 76, 78, 0.22),
      transparent 27%
    ),
    radial-gradient(
      circle at 15% 74%,
      rgba(47, 128, 237, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #061a2a 0%, #082d48 52%, #0b5260 100%);
}
html[data-page="revalida"] .revalida-page .hero-r1::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}
html[data-page="revalida"] .revalida-page .hero-copy h1 {
  font-size: clamp(40px, 3.4vw, 50px);
}
html[data-page="revalida"] .revalida-visual-shell {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 74% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 24%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.17),
      rgba(255, 255, 255, 0.04)
    );
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  animation: revalida-revalidaVisualFloat 5.8s ease-in-out infinite;
}
html[data-page="revalida"] .revalida-visual-shell::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -118px;
  top: -120px;
  border-radius: 50%;
  border: 1px solid rgba(107, 231, 199, 0.32);
  box-shadow: 0 0 70px rgba(0, 179, 136, 0.1);
}
html[data-page="revalida"] .revalida-visual-shell::after {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 112px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.34), transparent 68%);
  filter: blur(9px);
}
@keyframes revalida-revalidaVisualFloat {
  0%,
  100% {
    transform: translateY(0) rotateY(-2deg);
  }
  50% {
    transform: translateY(-10px) rotateY(0deg);
  }
}
html[data-page="revalida"] .revalida-person-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}
html[data-page="revalida"] .revalida-person-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(5, 26, 42, 0.98) 0%,
      rgba(5, 31, 48, 0.72) 33%,
      rgba(5, 31, 48, 0.1) 66%
    ),
    linear-gradient(0deg, rgba(4, 22, 36, 0.46), transparent 42%);
}
html[data-page="revalida"] .revalida-person-wrap img {
  position: absolute;
  z-index: 1;
  right: -5%;
  bottom: 0;
  width: auto;
  max-width: none;
  height: 110%;
  clip-path: inset(0 0 0 14%);
  object-fit: cover;
}
html[data-page="revalida"] .revalida-visual-content {
  position: relative;
  z-index: 3;
  width: 54%;
  padding: 42px 0 0 38px;
}
html[data-page="revalida"] .revalida-visual-content small {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #9eead6;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
html[data-page="revalida"] .revalida-visual-content h2 {
  margin: 17px 0 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html[data-page="revalida"] .revalida-visual-content p {
  margin: 15px 0 0;
  color: #bfd3de;
  font-size: 13px;
  line-height: 1.7;
}
html[data-page="revalida"] .revalida-mini-facts {
  position: absolute;
  z-index: 4;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
html[data-page="revalida"] .revalida-mini-fact {
  min-height: 64px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: rgba(5, 29, 45, 0.7);
  color: #fff;
  backdrop-filter: blur(13px);
  transition: 0.28s;
}
html[data-page="revalida"] .revalida-mini-fact:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 232, 201, 0.35);
}
html[data-page="revalida"] .revalida-mini-fact i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-style: normal;
  box-shadow: 0 10px 24px rgba(0, 179, 136, 0.22);
}
html[data-page="revalida"] .revalida-mini-fact strong {
  display: block;
  font-size: 12px;
  line-height: 1.3;
}
html[data-page="revalida"] .revalida-mini-fact span {
  display: block;
  margin-top: 3px;
  color: #9fb8c6;
  font-size: 10px;
}
html[data-page="revalida"] .revalida-page .why-panel {
  min-height: 680px;
}
html[data-page="revalida"] .revalida-page .path-card {
  min-height: 70px;
}
html[data-page="revalida"] .revalida-page .pricing-content h2 {
  font-size: clamp(32px, 3.2vw, 44px);
}
html[data-page="revalida"] .revalida-page .public-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 25px;
}
html[data-page="revalida"] .revalida-page .public-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(8, 41, 66, 0.06);
}
html[data-page="revalida"] .revalida-page .public-card strong {
  display: block;
  font-size: 15px;
}
html[data-page="revalida"] .revalida-page .public-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
@media (max-width: 920px) {
  html[data-page="revalida"] .revalida-visual-shell {
    min-height: 500px;
  }
  html[data-page="revalida"] .revalida-page .why-panel {
    min-height: auto;
  }
}
@media (max-width: 640px) {
  html[data-page="revalida"] .revalida-page .hero-copy h1 {
    font-size: 34px;
  }
  html[data-page="revalida"] .revalida-visual-shell {
    min-height: 470px;
  }
  html[data-page="revalida"] .revalida-visual-content {
    width: 64%;
    padding: 31px 0 0 24px;
  }
  html[data-page="revalida"] .revalida-visual-content h2 {
    font-size: 24px;
  }
  html[data-page="revalida"] .revalida-mini-facts {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
  }
  html[data-page="revalida"] .revalida-mini-fact:nth-child(n + 3) {
    display: none;
  }
  html[data-page="revalida"] .revalida-person-wrap img {
    right: -18%;
    height: 102%;
  }
  html[data-page="revalida"] .revalida-page .public-grid {
    grid-template-columns: 1fr;
  }
}

html[data-page="revalida"] .revalida-direction-title {
  max-width: 560px;
  font-size: clamp(27px, 2.3vw, 34px) !important;
  line-height: 1.14 !important;
}
html[data-page="revalida"] .revalida-direction-title span {
  display: block;
}
@media (max-width: 640px) {
  html[data-page="revalida"] .revalida-direction-title span {
    display: inline;
  }
  html[data-page="revalida"] .revalida-direction-title span + span::before {
    content: " ";
  }
}

/* Cabeçalho centralizado no limite de 1240 px */
@media (min-width: 921px) {
  
  
  
  
  
  
}

/* ============================================================
 * Página(s): revisamed-inteligente
 * ============================================================ */
html[data-page="praticas-medicas-simuladas"] {
  --blue: #2f80ed;
  --blue-2: #195fc3;
  --blue-deep: #082942;
  --blue-darker: #051a2a;
  --green: #00b388;
  --green-2: #2bd4a8;
  --ink: #102939;
  --muted: #667085;
  --surface: #ffffff;
  --surface-soft: #f5f9fc;
  --surface-blue: #edf7ff;
  --border: rgba(16, 41, 57, 0.12);
  --header: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 70px rgba(8, 41, 66, 0.14);
  --max: 1240px;
  color-scheme: light;
}
html[data-page="praticas-medicas-simuladas"][data-theme="dark"] {
  --ink: #f6fbff;
  --muted: #a7bac8;
  --surface: #071b2a;
  --surface-soft: #0b2335;
  --surface-blue: #0d2a40;
  --border: rgba(236, 247, 255, 0.12);
  --header: rgba(6, 24, 37, 0.92);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}
html[data-page="praticas-medicas-simuladas"] * {
  box-sizing: border-box;
}
html[data-page="praticas-medicas-simuladas"] {
  scroll-behavior: smooth;
}
html[data-page="praticas-medicas-simuladas"] body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}
html[data-page="praticas-medicas-simuladas"] body.menu-open {
  overflow: hidden;
}
html[data-page="praticas-medicas-simuladas"] img {
  max-width: 100%;
}
html[data-page="praticas-medicas-simuladas"] a {
  color: inherit;
  text-decoration: none;
}
html[data-page="praticas-medicas-simuladas"] button,
html[data-page="praticas-medicas-simuladas"] input {
  font: inherit;
}
html[data-page="praticas-medicas-simuladas"] button {
  color: inherit;
}
html[data-page="praticas-medicas-simuladas"] .section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
























html[data-page="praticas-medicas-simuladas"] .hero-r1 {
  position: relative;
  min-height: 720px;
  margin-top: 84px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 24%,
      rgba(0, 179, 136, 0.27),
      transparent 26%
    ),
    radial-gradient(
      circle at 15% 75%,
      rgba(47, 128, 237, 0.2),
      transparent 28%
    ),
    linear-gradient(135deg, #061a2a 0%, #082d48 54%, #083a4e 100%);
}
html[data-page="praticas-medicas-simuladas"] .hero-r1::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
html[data-page="praticas-medicas-simuladas"] .hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
  animation: revisamed-inteligente-orbFloat 7s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .hero-orb.one {
  width: 280px;
  height: 280px;
  right: -80px;
  top: 80px;
  border: 1px solid rgba(43, 212, 168, 0.38);
}
html[data-page="praticas-medicas-simuladas"] .hero-orb.two {
  width: 160px;
  height: 160px;
  right: 34%;
  bottom: -60px;
  border: 1px solid rgba(47, 128, 237, 0.38);
  animation-delay: -2s;
}
html[data-page="praticas-medicas-simuladas"] .hero-orb.three {
  width: 18px;
  height: 18px;
  background: var(--green-2);
  right: 11%;
  top: 17%;
  box-shadow: 0 0 40px rgba(43, 212, 168, 0.85);
  animation-delay: -4s;
}
@keyframes revisamed-inteligente-orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}
html[data-page="praticas-medicas-simuladas"] .hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
  padding-block: 78px;
}
html[data-page="praticas-medicas-simuladas"] .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8d9f5;
}
html[data-page="praticas-medicas-simuladas"] .eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-2), var(--blue));
}
html[data-page="praticas-medicas-simuladas"] .hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}
html[data-page="praticas-medicas-simuladas"] .hero-copy h1 span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #fff, #a9e8db 54%, #94caff);
  -webkit-background-clip: text;
  color: transparent;
}
html[data-page="praticas-medicas-simuladas"] .hero-copy > p {
  max-width: 660px;
  margin: 26px 0 0;
  color: #c2d6e2;
  font-size: 18px;
  line-height: 1.72;
}
html[data-page="praticas-medicas-simuladas"] .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
html[data-page="praticas-medicas-simuladas"] .hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #e5f2f8;
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}
html[data-page="praticas-medicas-simuladas"] .hero-facts i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(43, 212, 168, 0.18);
  color: var(--green-2);
  font-style: normal;
}
html[data-page="praticas-medicas-simuladas"] .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
html[data-page="praticas-medicas-simuladas"] .btn-primary,
html[data-page="praticas-medicas-simuladas"] .btn-secondary {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 850;
  transition: 0.25s;
}
html[data-page="praticas-medicas-simuladas"] .btn-primary {
  background: linear-gradient(135deg, var(--green), #009b78);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 179, 136, 0.28);
}
html[data-page="praticas-medicas-simuladas"] .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(0, 179, 136, 0.36);
}
html[data-page="praticas-medicas-simuladas"] .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
html[data-page="praticas-medicas-simuladas"] .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
html[data-page="praticas-medicas-simuladas"] .hero-visual {
  position: relative;
  perspective: 1200px;
}
html[data-page="praticas-medicas-simuladas"] .video-shell {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  transform: rotateY(-5deg) rotateX(1.5deg);
  animation: revisamed-inteligente-visualFloat 5.5s ease-in-out infinite;
}
@keyframes revisamed-inteligente-visualFloat {
  0%,
  100% {
    transform: rotateY(-5deg) rotateX(1.5deg) translateY(0);
  }
  50% {
    transform: rotateY(-3deg) rotateX(1deg) translateY(-10px);
  }
}
html[data-page="praticas-medicas-simuladas"] .browser-bar {
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 18px 18px 0 0;
  background: rgba(4, 20, 31, 0.78);
}
html[data-page="praticas-medicas-simuladas"] .browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}
html[data-page="praticas-medicas-simuladas"] .browser-bar span {
  margin-left: auto;
  color: #9fb9c8;
  font-size: 10px;
  letter-spacing: 0.08em;
}
html[data-page="praticas-medicas-simuladas"] .video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 0 0 19px 19px;
  background: #000;
}
html[data-page="praticas-medicas-simuladas"] .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
html[data-page="praticas-medicas-simuladas"] .floating-proof {
  position: absolute;
  left: -38px;
  bottom: -35px;
  width: 220px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: #102939;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
  animation: revisamed-inteligente-proofFloat 4.8s ease-in-out infinite;
}
@keyframes revisamed-inteligente-proofFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
html[data-page="praticas-medicas-simuladas"] .floating-proof strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--blue-deep);
}
html[data-page="praticas-medicas-simuladas"] .floating-proof span {
  display: block;
  margin-top: 7px;
  color: #617484;
  font-size: 12px;
  line-height: 1.5;
}
html[data-page="praticas-medicas-simuladas"] .floating-proof .mini-stars {
  margin-top: 9px;
  color: #f5a623;
  letter-spacing: 2px;
}

html[data-page="praticas-medicas-simuladas"] .quick-strip {
  position: relative;
  z-index: 5;
  margin-top: -30px;
}
html[data-page="praticas-medicas-simuladas"] .quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
html[data-page="praticas-medicas-simuladas"] .quick-item {
  padding: 27px 26px;
  position: relative;
}
html[data-page="praticas-medicas-simuladas"] .quick-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--border);
}
html[data-page="praticas-medicas-simuladas"] .quick-item small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .quick-item strong {
  font-size: 18px;
  line-height: 1.3;
}

html[data-page="praticas-medicas-simuladas"] section {
  position: relative;
}
html[data-page="praticas-medicas-simuladas"] .section-pad {
  padding: 104px 0;
}
html[data-page="praticas-medicas-simuladas"] .section-head {
  max-width: 790px;
  margin: 0 auto 50px;
  text-align: center;
}
html[data-page="praticas-medicas-simuladas"] .section-head .label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .section-head .label::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="praticas-medicas-simuladas"] .section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
html[data-page="praticas-medicas-simuladas"] .section-head p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

html[data-page="praticas-medicas-simuladas"] .why-section {
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    var(--surface-soft) 100%
  );
}
html[data-page="praticas-medicas-simuladas"] .why-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
html[data-page="praticas-medicas-simuladas"] .why-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="praticas-medicas-simuladas"] .why-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="praticas-medicas-simuladas"] .benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
html[data-page="praticas-medicas-simuladas"] .benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 25px rgba(8, 41, 66, 0.05);
  transition: 0.25s;
}
html[data-page="praticas-medicas-simuladas"] .benefit-item:hover {
  transform: translateX(6px);
  border-color: rgba(47, 128, 237, 0.34);
}
html[data-page="praticas-medicas-simuladas"] .benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.13),
    rgba(0, 179, 136, 0.14)
  );
  color: var(--blue);
}
html[data-page="praticas-medicas-simuladas"] .benefit-item h3 {
  margin: 1px 0 6px;
  font-size: 16px;
}
html[data-page="praticas-medicas-simuladas"] .benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}
html[data-page="praticas-medicas-simuladas"] .why-panel {
  position: relative;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #082942, #0a3b56 68%, #0d5b69);
  color: #fff;
  box-shadow: var(--shadow);
}
html[data-page="praticas-medicas-simuladas"] .why-panel::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -100px;
  top: -80px;
  border-radius: 50%;
  border: 1px solid rgba(43, 212, 168, 0.35);
}
html[data-page="praticas-medicas-simuladas"] .why-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -120px 20%;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.32),
    transparent 68%
  );
}
html[data-page="praticas-medicas-simuladas"] .panel-kicker {
  position: relative;
  z-index: 1;
  color: #a8d8ef;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .why-panel h3 {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html[data-page="praticas-medicas-simuladas"] .path-cards {
  --path-progress: 0%;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin-top: 30px;
  padding-left: 10px;
}
html[data-page="praticas-medicas-simuladas"] .path-cards::before,
html[data-page="praticas-medicas-simuladas"] .path-cards::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 30px;
  top: 34px;
  width: 3px;
  border-radius: 99px;
  pointer-events: none;
}
html[data-page="praticas-medicas-simuladas"] .path-cards::before {
  bottom: 34px;
  background: rgba(255, 255, 255, 0.11);
}
html[data-page="praticas-medicas-simuladas"] .path-cards::after {
  height: var(--path-progress);
  max-height: calc(100% - 68px);
  background: linear-gradient(180deg, #39a4ff 0%, #22d3b1 56%, #79f0c8 100%);
  box-shadow:
    0 0 18px rgba(43, 212, 168, 0.64),
    0 0 34px rgba(47, 128, 237, 0.25);
  transition: height 0.56s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="praticas-medicas-simuladas"] .path-card {
  --path-delay: 0ms;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 76px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  cursor: pointer;
  outline: none;
  transition:
    transform 0.34s cubic-bezier(0.2, 0.85, 0.2, 1.18) var(--path-delay),
    border-color 0.3s ease var(--path-delay),
    background 0.3s ease var(--path-delay),
    box-shadow 0.3s ease var(--path-delay);
}
html[data-page="praticas-medicas-simuladas"] .path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 8%,
    rgba(255, 255, 255, 0.12) 48%,
    transparent 78%
  );
  transform: translateX(-125%);
  opacity: 0;
  pointer-events: none;
}
html[data-page="praticas-medicas-simuladas"] .path-card b {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: #103f58;
  color: #a9c5d4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition:
    color 0.3s ease var(--path-delay),
    background 0.3s ease var(--path-delay),
    transform 0.34s cubic-bezier(0.2, 0.85, 0.2, 1.18) var(--path-delay),
    box-shadow 0.3s ease var(--path-delay);
}
html[data-page="praticas-medicas-simuladas"] .path-card strong {
  display: block;
  font-size: 14px;
  transition: color 0.3s ease var(--path-delay);
}
html[data-page="praticas-medicas-simuladas"] .path-card span {
  display: block;
  margin-top: 4px;
  color: #abc4d2;
  font-size: 11px;
  transition: color 0.3s ease var(--path-delay);
}
html[data-page="praticas-medicas-simuladas"] .path-card em {
  font-style: normal;
  color: #7faabd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition:
    color 0.3s ease var(--path-delay),
    transform 0.3s ease var(--path-delay);
}
html[data-page="praticas-medicas-simuladas"] .path-card.is-lit,
html[data-page="praticas-medicas-simuladas"] .path-card:hover,
html[data-page="praticas-medicas-simuladas"] .path-card:focus-visible {
  transform: translateX(8px);
  border-color: rgba(86, 228, 187, 0.42);
  background: linear-gradient(
    105deg,
    rgba(47, 128, 237, 0.17),
    rgba(0, 179, 136, 0.14)
  );
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.17),
    0 0 0 1px rgba(105, 237, 200, 0.05) inset;
}
html[data-page="praticas-medicas-simuladas"] .path-card.is-lit::after,
html[data-page="praticas-medicas-simuladas"] .path-card:hover::after,
html[data-page="praticas-medicas-simuladas"] .path-card:focus-visible::after {
  opacity: 1;
  animation: revisamed-inteligente-pathShine 0.72s ease forwards
    var(--path-delay);
}
html[data-page="praticas-medicas-simuladas"] .path-card.is-lit b,
html[data-page="praticas-medicas-simuladas"] .path-card:hover b,
html[data-page="praticas-medicas-simuladas"] .path-card:focus-visible b {
  background: linear-gradient(135deg, #328ff5, var(--green));
  color: #fff;
  transform: scale(1.09) rotate(-3deg);
  box-shadow:
    0 0 0 6px rgba(47, 128, 237, 0.09),
    0 13px 27px rgba(0, 179, 136, 0.25);
}
html[data-page="praticas-medicas-simuladas"] .path-card.is-lit strong {
  color: #fff;
}
html[data-page="praticas-medicas-simuladas"] .path-card.is-lit span {
  color: #cfe3ec;
}
html[data-page="praticas-medicas-simuladas"] .path-card.is-lit em {
  color: #9cf4dc;
  transform: translateX(-2px);
}
@keyframes revisamed-inteligente-pathShine {
  to {
    transform: translateX(125%);
  }
}
html[data-page="praticas-medicas-simuladas"] .panel-note {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--green-2);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 0 14px 14px 0;
  color: #c9dce6;
  font-size: 13px;
  line-height: 1.65;
}

html[data-page="praticas-medicas-simuladas"] .resources-section {
  background: var(--surface);
}
html[data-page="praticas-medicas-simuladas"] .resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
html[data-page="praticas-medicas-simuladas"] .resource-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  isolation: isolate;
  transition:
    transform 0.36s cubic-bezier(0.2, 0.85, 0.2, 1.15),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
html[data-page="praticas-medicas-simuladas"] .resource-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 145px;
  height: 145px;
  right: -72px;
  top: -76px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.16),
    transparent 68%
  );
  transition:
    transform 0.45s ease,
    opacity 0.35s ease;
}
html[data-page="praticas-medicas-simuladas"] .resource-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: right 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="praticas-medicas-simuladas"] .resource-card:hover {
  transform: translateY(-9px);
  border-color: rgba(47, 128, 237, 0.38);
  box-shadow: 0 23px 52px rgba(8, 41, 66, 0.13);
}
html[data-page="praticas-medicas-simuladas"] .resource-card:hover::before {
  transform: scale(1.22);
  opacity: 0.86;
}
html[data-page="praticas-medicas-simuladas"] .resource-card:hover::after {
  right: 0;
}
html[data-page="praticas-medicas-simuladas"] .resource-icon {
  position: relative;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  background: linear-gradient(145deg, #2f80ed 0%, #1d98d8 45%, #00b388 100%);
  color: #fff;
  box-shadow:
    0 14px 30px rgba(47, 128, 237, 0.23),
    0 0 0 7px rgba(47, 128, 237, 0.055);
  transform: translateZ(0);
  transition:
    transform 0.38s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
html[data-page="praticas-medicas-simuladas"] .resource-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
}
html[data-page="praticas-medicas-simuladas"] .resource-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  right: 8px;
  top: 8px;
  border-radius: 50%;
  background: #8cf3d6;
  box-shadow: 0 0 13px rgba(140, 243, 214, 0.95);
}
html[data-page="praticas-medicas-simuladas"] .resource-icon svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.16));
}
html[data-page="praticas-medicas-simuladas"]
  .resource-card:nth-child(2n)
  .resource-icon {
  background: linear-gradient(145deg, #0d8fc5, #00b388);
}
html[data-page="praticas-medicas-simuladas"]
  .resource-card:nth-child(3n)
  .resource-icon {
  background: linear-gradient(145deg, #3c72e8, #0aa99a);
}
html[data-page="praticas-medicas-simuladas"] .resource-card:hover .resource-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.08);
  box-shadow:
    0 20px 38px rgba(0, 179, 136, 0.25),
    0 0 0 9px rgba(0, 179, 136, 0.07);
}
html[data-page="praticas-medicas-simuladas"] .resource-card h3 {
  margin: 23px 0 9px;
  font-size: 17px;
}
html[data-page="praticas-medicas-simuladas"] .resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

html[data-page="praticas-medicas-simuladas"] .method-section {
  overflow: hidden;
  background: linear-gradient(135deg, #edf7ff 0%, #f3fffb 52%, #eff6ff 100%);
}
html[data-page="praticas-medicas-simuladas"][data-theme="dark"] .method-section {
  background: linear-gradient(135deg, #0b2335, #0c2d37 52%, #0c2537);
}
html[data-page="praticas-medicas-simuladas"] .method-flow {
  --method-progress: 0%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  padding-top: 6px;
}
html[data-page="praticas-medicas-simuladas"] .method-line,
html[data-page="praticas-medicas-simuladas"] .method-line-fill {
  position: absolute;
  z-index: 0;
  left: calc(12.5% - 1px);
  top: 42px;
  height: 4px;
  border-radius: 99px;
}
html[data-page="praticas-medicas-simuladas"] .method-line {
  right: calc(12.5% - 1px);
  background: rgba(8, 41, 66, 0.12);
}
html[data-page="praticas-medicas-simuladas"][data-theme="dark"] .method-line {
  background: rgba(255, 255, 255, 0.12);
}
html[data-page="praticas-medicas-simuladas"] .method-line-fill {
  width: var(--method-progress);
  max-width: calc(75% - 2px);
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 18px rgba(0, 179, 136, 0.36);
  transition: width 0.52s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="praticas-medicas-simuladas"] .method-step {
  position: relative;
  z-index: 1;
  text-align: center;
  cursor: pointer;
  outline: none;
}
html[data-page="praticas-medicas-simuladas"] .method-step b {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(47, 128, 237, 0.22);
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(8, 41, 66, 0.12);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.85, 0.2, 1.25),
    box-shadow 0.35s ease;
}
html[data-page="praticas-medicas-simuladas"] .method-step b::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid transparent;
  border-radius: inherit;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease;
}
html[data-page="praticas-medicas-simuladas"] .method-step.active b,
html[data-page="praticas-medicas-simuladas"] .method-step:hover b,
html[data-page="praticas-medicas-simuladas"] .method-step:focus-visible b {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  transform: translateY(-6px) scale(1.09);
  box-shadow:
    0 0 0 8px rgba(47, 128, 237, 0.09),
    0 19px 38px rgba(0, 179, 136, 0.22);
}
html[data-page="praticas-medicas-simuladas"] .method-step.active b::before,
html[data-page="praticas-medicas-simuladas"] .method-step:hover b::before,
html[data-page="praticas-medicas-simuladas"] .method-step:focus-visible b::before {
  border-color: rgba(0, 179, 136, 0.32);
  transform: scale(1.04);
}
html[data-page="praticas-medicas-simuladas"] .method-step h3 {
  margin: 21px 0 8px;
  font-size: 18px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
html[data-page="praticas-medicas-simuladas"] .method-step p {
  margin: 0 auto;
  max-width: 250px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  transition: transform 0.3s ease;
}
html[data-page="praticas-medicas-simuladas"] .method-step.active h3,
html[data-page="praticas-medicas-simuladas"] .method-step:hover h3 {
  color: var(--green);
  transform: translateY(-2px);
}
html[data-page="praticas-medicas-simuladas"] .method-step.active p,
html[data-page="praticas-medicas-simuladas"] .method-step:hover p {
  transform: translateY(-2px);
}

html[data-page="praticas-medicas-simuladas"] .pricing-section {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}
html[data-page="praticas-medicas-simuladas"] .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 54px;
  align-items: start;
}
html[data-page="praticas-medicas-simuladas"] .pricing-content h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
html[data-page="praticas-medicas-simuladas"] .pricing-content > p {
  margin: 20px 0 0;
  max-width: 690px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="praticas-medicas-simuladas"] .included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
html[data-page="praticas-medicas-simuladas"] .included-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
html[data-page="praticas-medicas-simuladas"] .included-list i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 179, 136, 0.12);
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}
html[data-page="praticas-medicas-simuladas"] .bonus-card {
  margin-top: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  border: 1px solid rgba(47, 128, 237, 0.2);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.09),
    rgba(0, 179, 136, 0.09)
  );
}
html[data-page="praticas-medicas-simuladas"] .bonus-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
}
html[data-page="praticas-medicas-simuladas"] .bonus-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
}
html[data-page="praticas-medicas-simuladas"] .bonus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
html[data-page="praticas-medicas-simuladas"] .price-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border: 1px solid rgba(47, 128, 237, 0.22);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(8, 41, 66, 0.17);
}
html[data-page="praticas-medicas-simuladas"] .price-card-top {
  padding: 26px 28px;
  background: linear-gradient(135deg, var(--blue-deep), #0c4a65);
  color: #fff;
}
html[data-page="praticas-medicas-simuladas"] .price-card-top span {
  display: block;
  color: #acd1e1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .price-card-top h3 {
  margin: 10px 0 0;
  font-size: 28px;
}
html[data-page="praticas-medicas-simuladas"] .price-body {
  padding: 28px;
}
html[data-page="praticas-medicas-simuladas"] .price-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
html[data-page="praticas-medicas-simuladas"] .installments {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
html[data-page="praticas-medicas-simuladas"] .installments strong {
  font-size: 47px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--blue-deep);
}
html[data-page="praticas-medicas-simuladas"][data-theme="dark"]
  .installments
  strong {
  color: #fff;
}
html[data-page="praticas-medicas-simuladas"] .installments span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
}
html[data-page="praticas-medicas-simuladas"] .cash {
  margin-top: 11px;
  color: var(--muted);
  font-size: 13px;
}
html[data-page="praticas-medicas-simuladas"] .cash b {
  color: var(--ink);
}
html[data-page="praticas-medicas-simuladas"] .price-benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
html[data-page="praticas-medicas-simuladas"] .price-benefits span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}
html[data-page="praticas-medicas-simuladas"] .price-benefits i {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}
html[data-page="praticas-medicas-simuladas"] .buy-button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), #008e70);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(0, 179, 136, 0.24);
  transition: 0.25s;
}
html[data-page="praticas-medicas-simuladas"] .buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(0, 179, 136, 0.34);
}
html[data-page="praticas-medicas-simuladas"] .secure-note {
  margin: 14px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

html[data-page="praticas-medicas-simuladas"] .numbers-section {
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(100deg, #0c6173, #2c8c88 55%, #66b59f);
}
html[data-page="praticas-medicas-simuladas"] .numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="praticas-medicas-simuladas"] .number-item {
  text-align: center;
  padding: 15px 20px;
}
html[data-page="praticas-medicas-simuladas"] .number-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
html[data-page="praticas-medicas-simuladas"] .number-item strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.05em;
}
html[data-page="praticas-medicas-simuladas"] .number-item span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

html[data-page="praticas-medicas-simuladas"] .teachers-section {
  background: var(--surface);
}
html[data-page="praticas-medicas-simuladas"] .teacher-track-wrap {
  position: relative;
}
html[data-page="praticas-medicas-simuladas"] .teacher-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
html[data-page="praticas-medicas-simuladas"] .teacher-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  transition: 0.28s;
}
html[data-page="praticas-medicas-simuladas"] .teacher-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 42px rgba(8, 41, 66, 0.12);
}
html[data-page="praticas-medicas-simuladas"] .teacher-card img {
  width: 100%;
  aspect-ratio: 1.45/1;
  object-fit: cover;
  display: block;
  background: transparent;
}
html[data-page="praticas-medicas-simuladas"] .teacher-info {
  padding: 17px 17px 20px;
}
html[data-page="praticas-medicas-simuladas"] .teacher-info h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
html[data-page="praticas-medicas-simuladas"] .teacher-info p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

html[data-page="praticas-medicas-simuladas"] .objections-section {
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
}
html[data-page="praticas-medicas-simuladas"] .objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
html[data-page="praticas-medicas-simuladas"] .objection-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}
html[data-page="praticas-medicas-simuladas"] .objection-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.13),
    rgba(0, 179, 136, 0.13)
  );
  color: var(--blue);
}
html[data-page="praticas-medicas-simuladas"] .objection-card h3 {
  margin: 18px 0 9px;
  font-size: 19px;
  line-height: 1.35;
}
html[data-page="praticas-medicas-simuladas"] .objection-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

html[data-page="praticas-medicas-simuladas"] .faq-section {
  background: var(--surface);
}
html[data-page="praticas-medicas-simuladas"] .faq-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 58px;
  align-items: start;
}
html[data-page="praticas-medicas-simuladas"] .faq-aside {
  position: sticky;
  top: 116px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--blue-deep), #0b4b63);
  color: #fff;
  box-shadow: var(--shadow);
}
html[data-page="praticas-medicas-simuladas"] .faq-aside small {
  color: #9fc7d9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .faq-aside h2 {
  margin: 14px 0 0;
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
html[data-page="praticas-medicas-simuladas"] .faq-aside p {
  margin: 17px 0 0;
  color: #bdd2dd;
  font-size: 14px;
  line-height: 1.72;
}
html[data-page="praticas-medicas-simuladas"] .faq-aside a {
  margin-top: 23px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), #009478);
  font-size: 13px;
  font-weight: 850;
}
html[data-page="praticas-medicas-simuladas"] .faq-list {
  display: grid;
  gap: 10px;
}
html[data-page="praticas-medicas-simuladas"] .faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
}
html[data-page="praticas-medicas-simuladas"] .faq-question {
  width: 100%;
  padding: 20px 21px;
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 18px;
  align-items: center;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
html[data-page="praticas-medicas-simuladas"] .faq-question strong {
  font-size: 14px;
  line-height: 1.45;
}
html[data-page="praticas-medicas-simuladas"] .faq-question i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--surface-soft);
  color: var(--blue);
  font-style: normal;
  font-size: 22px;
  transition: 0.25s;
}
html[data-page="praticas-medicas-simuladas"] .faq-item.open .faq-question i {
  transform: rotate(45deg);
  background: rgba(0, 179, 136, 0.12);
  color: var(--green);
}
html[data-page="praticas-medicas-simuladas"] .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
html[data-page="praticas-medicas-simuladas"] .faq-answer > div {
  overflow: hidden;
}
html[data-page="praticas-medicas-simuladas"] .faq-answer p {
  margin: 0;
  padding: 0 21px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
html[data-page="praticas-medicas-simuladas"] .faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
html[data-page="praticas-medicas-simuladas"] .faq-item.open .faq-answer p {
  padding-bottom: 21px;
}

html[data-page="praticas-medicas-simuladas"] .final-cta {
  padding: 0 0 104px;
  background: var(--surface);
}
html[data-page="praticas-medicas-simuladas"] .final-cta-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, #071f32, #0b4560 58%, #0f7a78);
  box-shadow: var(--shadow);
}
html[data-page="praticas-medicas-simuladas"] .final-cta-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -120px;
  top: -180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
html[data-page="praticas-medicas-simuladas"] .final-cta-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  right: 14%;
  bottom: -100px;
  background: radial-gradient(circle, rgba(43, 212, 168, 0.3), transparent 66%);
}
html[data-page="praticas-medicas-simuladas"] .final-cta-copy {
  position: relative;
  z-index: 1;
}
html[data-page="praticas-medicas-simuladas"] .final-cta-copy span {
  color: #a9d8e9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .final-cta-copy h2 {
  margin: 12px 0 0;
  max-width: 780px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="praticas-medicas-simuladas"] .final-cta-copy p {
  margin: 18px 0 0;
  color: #c4d9e3;
  font-size: 15px;
  line-height: 1.7;
}
html[data-page="praticas-medicas-simuladas"] .final-cta .btn-primary {
  position: relative;
  z-index: 1;
  min-width: 220px;
}

html[data-page="praticas-medicas-simuladas"] .brand-strip {
  padding: 27px 0 30px;
  background: #fff;
  border-top: 1px solid #dfe8ee;
  border-bottom: 1px solid #dfe8ee;
  color: #102939;
}
html[data-page="praticas-medicas-simuladas"] .brand-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 1px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
html[data-page="praticas-medicas-simuladas"] .brand-strip-divider {
  width: 1px;
  height: 94px;
  background: #d7e1e8;
}
html[data-page="praticas-medicas-simuladas"] .brand-group h2 {
  margin: 0 0 15px;
  text-align: center;
  color: #49668f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
html[data-page="praticas-medicas-simuladas"] .brand-logos {
  display: grid;
  gap: 10px;
}
html[data-page="praticas-medicas-simuladas"] .institution-logos {
  grid-template-columns: repeat(5, 1fr);
}
html[data-page="praticas-medicas-simuladas"] .developed-logos {
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="praticas-medicas-simuladas"] .brand-logo-card {
  height: 72px;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e5ed;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(8, 41, 66, 0.05);
}
html[data-page="praticas-medicas-simuladas"] .brand-logo-card img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

html[data-page="praticas-medicas-simuladas"] footer {
  background: #061b2a;
  color: #fff;
}
html[data-page="praticas-medicas-simuladas"] .footer-main {
  padding: 74px 0 58px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}
html[data-page="praticas-medicas-simuladas"] .footer-brand img {
  width: 235px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}
html[data-page="praticas-medicas-simuladas"] .footer-brand > p {
  margin: 25px 0;
  color: #9fb4c2;
  font-size: 15px;
  line-height: 1.75;
}
html[data-page="praticas-medicas-simuladas"] .socials {
  display: flex;
  gap: 9px;
}
html[data-page="praticas-medicas-simuladas"] .socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: #a7bdca;
  transition: 0.2s;
}
html[data-page="praticas-medicas-simuladas"] .socials a:hover {
  background: var(--blue);
  color: #fff;
}
html[data-page="praticas-medicas-simuladas"] .footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
html[data-page="praticas-medicas-simuladas"] .footer-links h3 {
  margin: 0 0 21px;
  font-size: 15px;
}
html[data-page="praticas-medicas-simuladas"] .footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
html[data-page="praticas-medicas-simuladas"] .footer-links a,
html[data-page="praticas-medicas-simuladas"] .footer-links span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9db2bf;
  font-size: 13px;
  line-height: 1.5;
}
html[data-page="praticas-medicas-simuladas"] .footer-links a:hover {
  color: #fff;
}
html[data-page="praticas-medicas-simuladas"] .footer-links small {
  margin-top: 8px;
  color: #7892a1;
  font-size: 11px;
  line-height: 1.5;
}
html[data-page="praticas-medicas-simuladas"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
html[data-page="praticas-medicas-simuladas"] .footer-bottom > div {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #7894a3;
  font-size: 11px;
  line-height: 1.55;
}
html[data-page="praticas-medicas-simuladas"] .floating-contact {
  position: fixed;
  z-index: 80;
  right: 23px;
  bottom: 23px;
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00b388, #008e70);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0, 179, 136, 0.3);
  transition: 0.25s;
}
html[data-page="praticas-medicas-simuladas"] .floating-contact:hover {
  transform: translateY(-3px);
}

html[data-page="praticas-medicas-simuladas"] .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
html[data-page="praticas-medicas-simuladas"] .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html[data-page="praticas-medicas-simuladas"] *,
  html[data-page="praticas-medicas-simuladas"] *::before,
  html[data-page="praticas-medicas-simuladas"] *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  html[data-page="praticas-medicas-simuladas"] .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  
  
  html[data-page="praticas-medicas-simuladas"] .hero-inner {
    gap: 38px;
  }
  html[data-page="praticas-medicas-simuladas"] .floating-proof {
    left: -18px;
  }
  html[data-page="praticas-medicas-simuladas"] .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .teacher-track {
    grid-template-columns: repeat(3, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .pricing-grid {
    grid-template-columns: 1fr 390px;
    gap: 34px;
  }
  html[data-page="praticas-medicas-simuladas"] .footer-main {
    grid-template-columns: 250px 1fr;
    gap: 45px;
  }
}
@media (max-width: 920px) {
  
  
  
  
  
  
  
  
  
  
  
  
  
  html[data-page="praticas-medicas-simuladas"] .hero-r1,
  html[data-page="praticas-medicas-simuladas"] .hero-inner {
    min-height: auto;
  }
  html[data-page="praticas-medicas-simuladas"] .hero-r1 {
    margin-top: 74px;
  }
  html[data-page="praticas-medicas-simuladas"] .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 76px 100px;
  }
  html[data-page="praticas-medicas-simuladas"] .hero-copy {
    text-align: center;
  }
  html[data-page="praticas-medicas-simuladas"] .hero-copy > p {
    margin-inline: auto;
  }
  html[data-page="praticas-medicas-simuladas"] .eyebrow {
    justify-content: center;
  }
  html[data-page="praticas-medicas-simuladas"] .hero-facts,
  html[data-page="praticas-medicas-simuladas"] .hero-actions {
    justify-content: center;
  }
  html[data-page="praticas-medicas-simuladas"] .hero-visual {
    max-width: 720px;
    margin-inline: auto;
    width: 100%;
  }
  html[data-page="praticas-medicas-simuladas"] .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .quick-item:nth-child(2)::after {
    display: none;
  }
  html[data-page="praticas-medicas-simuladas"] .quick-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="praticas-medicas-simuladas"] .why-grid,
  html[data-page="praticas-medicas-simuladas"] .pricing-grid,
  html[data-page="praticas-medicas-simuladas"] .faq-layout {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .why-panel {
    min-height: auto;
  }
  html[data-page="praticas-medicas-simuladas"] .price-card,
  html[data-page="praticas-medicas-simuladas"] .faq-aside {
    position: relative;
    top: auto;
  }
  html[data-page="praticas-medicas-simuladas"] .method-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }
  html[data-page="praticas-medicas-simuladas"] .method-line,
  html[data-page="praticas-medicas-simuladas"] .method-line-fill {
    display: none;
  }
  html[data-page="praticas-medicas-simuladas"] .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .number-item:nth-child(2) {
    border-right: 0;
  }
  html[data-page="praticas-medicas-simuladas"] .number-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  html[data-page="praticas-medicas-simuladas"] .objection-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .teacher-track {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .brand-strip-inner {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .brand-strip-divider {
    width: 100%;
    height: 1px;
  }
  html[data-page="praticas-medicas-simuladas"] .footer-main {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  html[data-page="praticas-medicas-simuladas"] .section-shell {
    width: min(100% - 28px, var(--max));
  }
  
  
  
  
  html[data-page="praticas-medicas-simuladas"] .hero-inner {
    padding-block: 60px 88px;
  }
  html[data-page="praticas-medicas-simuladas"] .hero-copy h1 {
    font-size: 42px;
  }
  html[data-page="praticas-medicas-simuladas"] .hero-copy > p {
    font-size: 16px;
  }
  html[data-page="praticas-medicas-simuladas"] .video-shell {
    transform: none;
    animation: none;
    padding: 7px;
    border-radius: 20px;
  }
  html[data-page="praticas-medicas-simuladas"] .floating-proof {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 13px;
  }
  html[data-page="praticas-medicas-simuladas"] .quick-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .quick-item::after {
    display: none !important;
  }
  html[data-page="praticas-medicas-simuladas"] .quick-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="praticas-medicas-simuladas"] .section-pad {
    padding: 78px 0;
  }
  html[data-page="praticas-medicas-simuladas"] .resources-grid,
  html[data-page="praticas-medicas-simuladas"] .included-list,
  html[data-page="praticas-medicas-simuladas"] .numbers-grid,
  html[data-page="praticas-medicas-simuladas"] .teacher-track {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .method-flow {
    display: flex;
    gap: 14px;
    margin-inline: -14px;
    padding: 8px 14px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  html[data-page="praticas-medicas-simuladas"] .method-flow::-webkit-scrollbar {
    display: none;
  }
  html[data-page="praticas-medicas-simuladas"] .method-line,
  html[data-page="praticas-medicas-simuladas"] .method-line-fill {
    display: none;
  }
  html[data-page="praticas-medicas-simuladas"] .method-step {
    flex: 0 0 min(78vw, 286px);
    min-height: 250px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.64);
    scroll-snap-align: center;
    box-shadow: 0 14px 34px rgba(8, 41, 66, 0.07);
  }
  html[data-page="praticas-medicas-simuladas"][data-theme="dark"] .method-step {
    background: rgba(255, 255, 255, 0.045);
  }
  html[data-page="praticas-medicas-simuladas"] .number-item {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  html[data-page="praticas-medicas-simuladas"] .number-item:last-child {
    border-bottom: 0;
  }
  html[data-page="praticas-medicas-simuladas"] .pricing-content {
    text-align: center;
  }
  html[data-page="praticas-medicas-simuladas"] .bonus-card {
    text-align: left;
  }
  html[data-page="praticas-medicas-simuladas"] .installments strong {
    font-size: 42px;
  }
  html[data-page="praticas-medicas-simuladas"] .final-cta-card {
    padding: 34px 26px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  html[data-page="praticas-medicas-simuladas"] .final-cta .btn-primary {
    min-width: 0;
    width: 100%;
  }
  html[data-page="praticas-medicas-simuladas"] .institution-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"]
    .institution-logos
    .brand-logo-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 5px);
    justify-self: center;
  }
  html[data-page="praticas-medicas-simuladas"] .developed-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .footer-links {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .footer-bottom > div {
    padding-block: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  html[data-page="praticas-medicas-simuladas"] .floating-contact span {
    display: none;
  }
  html[data-page="praticas-medicas-simuladas"] .floating-contact {
    width: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* ============================================================
   Cabeçalho e rodapé globais — padrão para todas as páginas
   ============================================================ */









html[data-page="praticas-medicas-simuladas"] .footer-brand > p {
  font-size: 17px !important;
  line-height: 1.75 !important;
}
html[data-page="praticas-medicas-simuladas"] .footer-links h3 {
  font-size: 17px !important;
  letter-spacing: 0.01em;
}
html[data-page="praticas-medicas-simuladas"] .footer-links a,
html[data-page="praticas-medicas-simuladas"] .footer-links span {
  font-size: 15px !important;
  line-height: 1.62 !important;
}
html[data-page="praticas-medicas-simuladas"] .footer-links small {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="praticas-medicas-simuladas"] .footer-bottom > div {
  font-size: 13px !important;
  line-height: 1.6 !important;
}
html[data-page="praticas-medicas-simuladas"] .brand-group h2 {
  font-size: 14px !important;
}

@media (max-width: 920px) {
  
  
}

/* R1: mesma escala de H1 utilizada no hero da Home */
html[data-page="praticas-medicas-simuladas"] .hero-copy h1 {
  font-size: clamp(40px, 3.4vw, 50px);
  line-height: 1.035;
  letter-spacing: -0.045em;
}

/* Informações rápidas com ícones temáticos */
html[data-page="praticas-medicas-simuladas"] .quick-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 15px;
  padding: 24px 22px;
}
html[data-page="praticas-medicas-simuladas"] .quick-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid currentColor;
  box-shadow: 0 10px 24px rgba(8, 41, 66, 0.08);
}
html[data-page="praticas-medicas-simuladas"] .quick-icon svg {
  width: 25px;
  height: 25px;
}
html[data-page="praticas-medicas-simuladas"] .quick-icon-blue {
  color: #2f80ed;
  background: rgba(47, 128, 237, 0.1);
}
html[data-page="praticas-medicas-simuladas"] .quick-icon-green {
  color: #00a983;
  background: rgba(0, 179, 136, 0.11);
}
html[data-page="praticas-medicas-simuladas"] .quick-icon-cyan {
  color: #0097b2;
  background: rgba(0, 151, 178, 0.11);
}
html[data-page="praticas-medicas-simuladas"] .quick-icon-orange {
  color: #ef8a22;
  background: rgba(239, 138, 34, 0.11);
}
html[data-page="praticas-medicas-simuladas"] .quick-item small {
  margin-bottom: 6px;
}
html[data-page="praticas-medicas-simuladas"] .quick-item strong {
  display: block;
}
html[data-page="praticas-medicas-simuladas"] .why-copy .benefit-list {
  margin-top: 32px;
}

@media (max-width: 640px) {
  html[data-page="praticas-medicas-simuladas"] .hero-copy h1 {
    font-size: 34px;
  }
  html[data-page="praticas-medicas-simuladas"] .quick-item {
    grid-template-columns: 48px 1fr;
    padding: 20px 18px;
  }
  html[data-page="praticas-medicas-simuladas"] .quick-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

/* =========================================================
   PÁGINA REVALIDA — base visual das páginas internas
========================================================== */
html[data-page="praticas-medicas-simuladas"] .revalida-page .hero-r1 {
  background:
    radial-gradient(
      circle at 82% 24%,
      rgba(239, 76, 78, 0.22),
      transparent 27%
    ),
    radial-gradient(
      circle at 15% 74%,
      rgba(47, 128, 237, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #061a2a 0%, #082d48 52%, #0b5260 100%);
}
html[data-page="praticas-medicas-simuladas"] .revalida-page .hero-r1::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}
html[data-page="praticas-medicas-simuladas"] .revalida-page .hero-copy h1 {
  font-size: clamp(40px, 3.4vw, 50px);
}
html[data-page="praticas-medicas-simuladas"] .revalida-visual-shell {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 74% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 24%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.17),
      rgba(255, 255, 255, 0.04)
    );
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  animation: revisamed-inteligente-revalidaVisualFloat 5.8s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .revalida-visual-shell::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -118px;
  top: -120px;
  border-radius: 50%;
  border: 1px solid rgba(107, 231, 199, 0.32);
  box-shadow: 0 0 70px rgba(0, 179, 136, 0.1);
}
html[data-page="praticas-medicas-simuladas"] .revalida-visual-shell::after {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 112px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.34), transparent 68%);
  filter: blur(9px);
}
@keyframes revisamed-inteligente-revalidaVisualFloat {
  0%,
  100% {
    transform: translateY(0) rotateY(-2deg);
  }
  50% {
    transform: translateY(-10px) rotateY(0deg);
  }
}
html[data-page="praticas-medicas-simuladas"] .revalida-person-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}
html[data-page="praticas-medicas-simuladas"] .revalida-person-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(5, 26, 42, 0.98) 0%,
      rgba(5, 31, 48, 0.72) 33%,
      rgba(5, 31, 48, 0.1) 66%
    ),
    linear-gradient(0deg, rgba(4, 22, 36, 0.46), transparent 42%);
}
html[data-page="praticas-medicas-simuladas"] .revalida-person-wrap img {
  position: absolute;
  z-index: 1;
  right: -5%;
  bottom: 0;
  width: auto;
  max-width: none;
  height: 110%;
  clip-path: inset(0 0 0 14%);
  object-fit: cover;
}
html[data-page="praticas-medicas-simuladas"] .revalida-visual-content {
  position: relative;
  z-index: 3;
  width: 54%;
  padding: 42px 0 0 38px;
}
html[data-page="praticas-medicas-simuladas"] .revalida-visual-content small {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #9eead6;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .revalida-visual-content h2 {
  margin: 17px 0 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html[data-page="praticas-medicas-simuladas"] .revalida-visual-content p {
  margin: 15px 0 0;
  color: #bfd3de;
  font-size: 13px;
  line-height: 1.7;
}
html[data-page="praticas-medicas-simuladas"] .revalida-mini-facts {
  position: absolute;
  z-index: 4;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
html[data-page="praticas-medicas-simuladas"] .revalida-mini-fact {
  min-height: 64px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: rgba(5, 29, 45, 0.7);
  color: #fff;
  backdrop-filter: blur(13px);
  transition: 0.28s;
}
html[data-page="praticas-medicas-simuladas"] .revalida-mini-fact:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 232, 201, 0.35);
}
html[data-page="praticas-medicas-simuladas"] .revalida-mini-fact i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-style: normal;
  box-shadow: 0 10px 24px rgba(0, 179, 136, 0.22);
}
html[data-page="praticas-medicas-simuladas"] .revalida-mini-fact strong {
  display: block;
  font-size: 12px;
  line-height: 1.3;
}
html[data-page="praticas-medicas-simuladas"] .revalida-mini-fact span {
  display: block;
  margin-top: 3px;
  color: #9fb8c6;
  font-size: 10px;
}
html[data-page="praticas-medicas-simuladas"] .revalida-page .why-panel {
  min-height: 680px;
}
html[data-page="praticas-medicas-simuladas"] .revalida-page .path-card {
  min-height: 70px;
}
html[data-page="praticas-medicas-simuladas"] .revalida-page .pricing-content h2 {
  font-size: clamp(32px, 3.2vw, 44px);
}
html[data-page="praticas-medicas-simuladas"] .revalida-page .public-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 25px;
}
html[data-page="praticas-medicas-simuladas"] .revalida-page .public-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(8, 41, 66, 0.06);
}
html[data-page="praticas-medicas-simuladas"] .revalida-page .public-card strong {
  display: block;
  font-size: 15px;
}
html[data-page="praticas-medicas-simuladas"] .revalida-page .public-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
@media (max-width: 920px) {
  html[data-page="praticas-medicas-simuladas"] .revalida-visual-shell {
    min-height: 500px;
  }
  html[data-page="praticas-medicas-simuladas"] .revalida-page .why-panel {
    min-height: auto;
  }
}
@media (max-width: 640px) {
  html[data-page="praticas-medicas-simuladas"] .revalida-page .hero-copy h1 {
    font-size: 34px;
  }
  html[data-page="praticas-medicas-simuladas"] .revalida-visual-shell {
    min-height: 470px;
  }
  html[data-page="praticas-medicas-simuladas"] .revalida-visual-content {
    width: 64%;
    padding: 31px 0 0 24px;
  }
  html[data-page="praticas-medicas-simuladas"] .revalida-visual-content h2 {
    font-size: 24px;
  }
  html[data-page="praticas-medicas-simuladas"] .revalida-mini-facts {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .revalida-mini-fact:nth-child(n + 3) {
    display: none;
  }
  html[data-page="praticas-medicas-simuladas"] .revalida-person-wrap img {
    right: -18%;
    height: 102%;
  }
  html[data-page="praticas-medicas-simuladas"] .revalida-page .public-grid {
    grid-template-columns: 1fr;
  }
}

html[data-page="praticas-medicas-simuladas"] .revalida-direction-title {
  max-width: 650px;
  font-size: clamp(30px, 2.75vw, 38px) !important;
  line-height: 1.12 !important;
}
html[data-page="praticas-medicas-simuladas"] .revalida-direction-title span {
  display: block;
}
@media (max-width: 640px) {
  html[data-page="praticas-medicas-simuladas"] .revalida-direction-title span {
    display: inline;
  }
  html[data-page="praticas-medicas-simuladas"]
    .revalida-direction-title
    span
    + span::before {
    content: " ";
  }
}

/* =========================================================
   MEDPROVAS — página comercial premium
========================================================== */
html[data-page="praticas-medicas-simuladas"] .medprovas-page {
  --mp-green: #08ad05;
  --mp-green-deep: #078d08;
  --mp-mint: #7ed957;
  --mp-dark: #071b2a;
  --mp-ink: #102939;
}

html[data-page="praticas-medicas-simuladas"] .mp-hero {
  position: relative;
  min-height: 650px;
  margin-top: 84px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 16%,
      rgba(126, 217, 87, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 14% 82%,
      rgba(0, 151, 178, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #03131f 0%, #07253a 42%, #0a3646 72%, #0d4950 100%);
  background-size:
    100% 100%,
    100% 100%,
    140% 140%;
  animation: revisamed-inteligente-mpHeroShift 16s ease-in-out infinite;
  isolation: isolate;
}
html[data-page="praticas-medicas-simuladas"] .mp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.72) 62%,
    transparent 98%
  );
  animation: revisamed-inteligente-mpGridDrift 22s linear infinite;
}
html[data-page="praticas-medicas-simuladas"] .mp-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -36% auto;
  z-index: -4;
  width: 880px;
  height: 880px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(126, 217, 87, 0.16) 0%,
    rgba(0, 151, 178, 0.12) 42%,
    transparent 72%
  );
  filter: blur(14px);
  animation: revisamed-inteligente-mpAuraDrift 14s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .mp-hero-ambient,
html[data-page="praticas-medicas-simuladas"] .mp-hero-particles,
html[data-page="praticas-medicas-simuladas"] .mp-hero-scanner,
html[data-page="praticas-medicas-simuladas"] .mp-hero-tech-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
html[data-page="praticas-medicas-simuladas"] .mp-hero-ambient {
  z-index: -3;
  background:
    radial-gradient(
      circle at 16% 26%,
      rgba(47, 128, 237, 0.18) 0%,
      transparent 34%
    ),
    radial-gradient(
      circle at 68% 18%,
      rgba(126, 217, 87, 0.12) 0%,
      transparent 32%
    ),
    radial-gradient(
      circle at 84% 78%,
      rgba(0, 151, 178, 0.14) 0%,
      transparent 34%
    );
  filter: blur(12px);
  animation: revisamed-inteligente-mpAmbientPulse 11s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .mp-hero-tech-lines {
  z-index: -2;
  opacity: 0.55;
  background:
    linear-gradient(
      118deg,
      transparent 0 18%,
      rgba(82, 183, 255, 0.18) 18.5%,
      transparent 19.2%,
      transparent 48%,
      rgba(126, 217, 87, 0.16) 48.6%,
      transparent 49.4%,
      transparent 100%
    ),
    linear-gradient(
      90deg,
      transparent 0 62%,
      rgba(255, 255, 255, 0.05) 62.2%,
      transparent 62.6%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0 28%,
      rgba(255, 255, 255, 0.04) 28.2%,
      transparent 28.6%,
      transparent 100%
    );
  background-size:
    140% 140%,
    100% 100%,
    100% 100%;
  animation: revisamed-inteligente-mpTechSweep 10s linear infinite;
  mask-image: linear-gradient(
    90deg,
    #000 20%,
    rgba(0, 0, 0, 0.95) 72%,
    transparent 98%
  );
}
html[data-page="praticas-medicas-simuladas"] .mp-hero-scanner {
  z-index: -1;
  width: 44%;
  left: auto;
  right: 8%;
  top: 8%;
  bottom: 6%;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(126, 217, 87, 0.18) 48%,
      transparent 52%,
      transparent 100%
    );
  mix-blend-mode: screen;
  filter: blur(0.2px);
  animation: revisamed-inteligente-mpScannerMove 4.6s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .mp-hero-particles {
  z-index: -1;
  background-image:
    radial-gradient(
      circle at 20% 26%,
      rgba(255, 255, 255, 0.82) 0 2px,
      transparent 2.2px
    ),
    radial-gradient(
      circle at 32% 68%,
      rgba(126, 217, 87, 0.75) 0 2.2px,
      transparent 2.4px
    ),
    radial-gradient(
      circle at 58% 16%,
      rgba(47, 128, 237, 0.82) 0 2px,
      transparent 2.2px
    ),
    radial-gradient(
      circle at 72% 60%,
      rgba(255, 255, 255, 0.65) 0 1.8px,
      transparent 2px
    ),
    radial-gradient(
      circle at 86% 28%,
      rgba(126, 217, 87, 0.72) 0 2px,
      transparent 2.2px
    ),
    radial-gradient(
      circle at 90% 74%,
      rgba(47, 128, 237, 0.78) 0 1.8px,
      transparent 2px
    );
  animation: revisamed-inteligente-mpParticlesFloat 15s ease-in-out infinite;
  opacity: 0.7;
}
html[data-page="praticas-medicas-simuladas"] .mp-bg-blur {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.55;
  pointer-events: none;
}
html[data-page="praticas-medicas-simuladas"] .mp-bg-blur--one {
  width: 260px;
  height: 260px;
  left: -70px;
  top: 90px;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.2) 0%,
    rgba(47, 128, 237, 0) 68%
  );
  animation: revisamed-inteligente-mpGlowFloat 14s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .mp-bg-blur--two {
  width: 220px;
  height: 220px;
  right: 18%;
  top: 88px;
  background: radial-gradient(
    circle,
    rgba(126, 217, 87, 0.22) 0%,
    rgba(126, 217, 87, 0) 68%
  );
  animation: revisamed-inteligente-mpGlowFloat 18s ease-in-out infinite reverse;
}
@keyframes revisamed-inteligente-mpHeroShift {
  0%,
  100% {
    background-position:
      78% 16%,
      14% 82%,
      0% 50%;
  }
  50% {
    background-position:
      74% 12%,
      18% 76%,
      100% 50%;
  }
}
@keyframes revisamed-inteligente-mpGridDrift {
  0% {
    background-position:
      0 0,
      0 0;
  }
  100% {
    background-position:
      56px 56px,
      56px 56px;
  }
}
@keyframes revisamed-inteligente-mpAuraDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-42px, -24px, 0) scale(1.06);
  }
}
@keyframes revisamed-inteligente-mpAmbientPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.88;
  }
}
@keyframes revisamed-inteligente-mpTechSweep {
  0% {
    transform: translateX(0);
    background-position:
      0% 0,
      0 0,
      0 0;
  }
  100% {
    transform: translateX(0);
    background-position:
      100% 0,
      0 0,
      0 0;
  }
}
@keyframes revisamed-inteligente-mpScannerMove {
  0%,
  100% {
    transform: translateY(-18%) skewX(-8deg);
    opacity: 0.18;
  }
  50% {
    transform: translateY(18%) skewX(-8deg);
    opacity: 0.42;
  }
}
@keyframes revisamed-inteligente-mpParticlesFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}
@keyframes revisamed-inteligente-mpGlowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(20px, -10px, 0) scale(1.08);
  }
}
html[data-page="praticas-medicas-simuladas"] .mp-hero-inner {
  min-height: 650px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 54px;
  padding-block: 38px 54px;
}
html[data-page="praticas-medicas-simuladas"] .mp-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 500px;
}
html[data-page="praticas-medicas-simuladas"] .mp-logo-pill {
  display: block;
  margin-bottom: 26px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
}
html[data-page="praticas-medicas-simuladas"] .mp-logo-pill img {
  width: min(300px, 52vw);
  max-height: none;
  filter: brightness(0) invert(1);
}
html[data-page="praticas-medicas-simuladas"] .mp-logo-pill span {
  display: none;
}
html[data-page="praticas-medicas-simuladas"] .mp-hero h1 {
  margin: 0;
  max-width: 430px;
  font-size: clamp(32px, 3.2vw, 45px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
html[data-page="praticas-medicas-simuladas"] .mp-hero h1 span,
html[data-page="praticas-medicas-simuladas"] .mp-hero h1 em {
  display: block;
}
html[data-page="praticas-medicas-simuladas"] .mp-hero h1 em {
  margin-top: 5px;
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, #fff, #8ce7c3 52%, #80c8ff);
  -webkit-background-clip: text;
  background-clip: text;
}
html[data-page="praticas-medicas-simuladas"] .mp-hero-copy > p {
  max-width: 620px;
  margin: 25px 0 0;
  color: #c3d6df;
  font-size: 17px;
  line-height: 1.72;
}
html[data-page="praticas-medicas-simuladas"] .mp-hero-points {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px;
  margin-top: 34px;
}
html[data-page="praticas-medicas-simuladas"] .mp-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #eef8fb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
html[data-page="praticas-medicas-simuladas"] .mp-hero-points i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(126, 217, 87, 0.16);
  color: #8ce66d;
  font-style: normal;
}
html[data-page="praticas-medicas-simuladas"] .mp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
html[data-page="praticas-medicas-simuladas"] .mp-primary,
html[data-page="praticas-medicas-simuladas"] .mp-secondary {
  min-height: 55px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 850;
  transition: 0.28s;
}
html[data-page="praticas-medicas-simuladas"] .mp-primary {
  background: linear-gradient(135deg, #13bd0e, #078f08);
  color: #fff;
  box-shadow: 0 18px 40px rgba(12, 171, 8, 0.28);
}
html[data-page="praticas-medicas-simuladas"] .mp-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 23px 48px rgba(12, 171, 8, 0.36);
}
html[data-page="praticas-medicas-simuladas"] .mp-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
html[data-page="praticas-medicas-simuladas"] .mp-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
}
html[data-page="praticas-medicas-simuladas"] .mp-hero-visual {
  position: relative;
  min-height: 555px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
html[data-page="praticas-medicas-simuladas"] .mp-device-stage {
  position: relative;
  z-index: 2;
  width: 112%;
  margin-left: -2%;
  animation: revisamed-inteligente-mpDeviceFloat 7.4s ease-in-out infinite;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.3))
    drop-shadow(0 12px 24px rgba(126, 217, 87, 0.1));
}
html[data-page="praticas-medicas-simuladas"] .mp-device-stage img {
  width: 100%;
  display: block;
}
@keyframes revisamed-inteligente-mpDeviceFloat {
  0%,
  100% {
    transform: translateY(0) rotateY(-2deg);
  }
  50% {
    transform: translateY(-12px) rotateY(0);
  }
}
html[data-page="praticas-medicas-simuladas"] .mp-visual-ring {
  position: absolute;
  inset: 7% 0 10% 3%;
  border: 1px solid rgba(126, 217, 87, 0.24);
  border-radius: 48% 52% 46% 54%;
  transform: rotate(-7deg);
  animation: revisamed-inteligente-mpRing 8s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .mp-visual-ring::before,
html[data-page="praticas-medicas-simuladas"] .mp-visual-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
html[data-page="praticas-medicas-simuladas"] .mp-visual-ring::before {
  width: 12px;
  height: 12px;
  top: 8%;
  right: 14%;
  background: #7ed957;
  box-shadow: 0 0 26px rgba(126, 217, 87, 0.9);
}
html[data-page="praticas-medicas-simuladas"] .mp-visual-ring::after {
  width: 9px;
  height: 9px;
  left: 8%;
  bottom: 20%;
  background: #2f80ed;
  box-shadow: 0 0 24px rgba(47, 128, 237, 0.85);
}
@keyframes revisamed-inteligente-mpRing {
  0%,
  100% {
    transform: rotate(-7deg) scale(1);
  }
  50% {
    transform: rotate(-3deg) scale(1.035);
  }
}

html[data-page="praticas-medicas-simuladas"] .mp-stat-strip {
  position: relative;
  z-index: 6;
  margin-top: -34px;
}
html[data-page="praticas-medicas-simuladas"] .mp-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
html[data-page="praticas-medicas-simuladas"] .mp-stat {
  position: relative;
  min-height: 118px;
  padding: 24px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
}
html[data-page="praticas-medicas-simuladas"] .mp-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--border);
}
html[data-page="praticas-medicas-simuladas"] .mp-stat-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(
    135deg,
    rgba(8, 173, 5, 0.13),
    rgba(0, 151, 178, 0.13)
  );
  color: var(--mp-green);
}
html[data-page="praticas-medicas-simuladas"] .mp-stat-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="praticas-medicas-simuladas"] .mp-stat small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .mp-stat strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.2;
}

html[data-page="praticas-medicas-simuladas"] .mp-section {
  padding: 108px 0;
}
html[data-page="praticas-medicas-simuladas"] .mp-section-head {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}
html[data-page="praticas-medicas-simuladas"] .mp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--mp-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .mp-kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mp-green), #0097b2);
}
html[data-page="praticas-medicas-simuladas"] .mp-section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="praticas-medicas-simuladas"] .mp-section-head p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

html[data-page="praticas-medicas-simuladas"] .mp-diagnosis {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}
html[data-page="praticas-medicas-simuladas"] .mp-diagnosis-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}
html[data-page="praticas-medicas-simuladas"] .mp-diagnosis-copy h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
html[data-page="praticas-medicas-simuladas"] .mp-diagnosis-copy > p {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
html[data-page="praticas-medicas-simuladas"] .mp-check-list {
  display: grid;
  gap: 12px;
  margin-top: 27px;
}
html[data-page="praticas-medicas-simuladas"] .mp-check-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--surface);
  transition: 0.25s;
}
html[data-page="praticas-medicas-simuladas"] .mp-check-item:hover {
  transform: translateX(6px);
  border-color: rgba(8, 173, 5, 0.32);
}
html[data-page="praticas-medicas-simuladas"] .mp-check-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(8, 173, 5, 0.11);
  color: var(--mp-green);
  font-style: normal;
  font-weight: 900;
}
html[data-page="praticas-medicas-simuladas"] .mp-check-item strong {
  display: block;
  font-size: 14px;
}
html[data-page="praticas-medicas-simuladas"] .mp-check-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
html[data-page="praticas-medicas-simuladas"] .mp-diagnostic-board {
  position: relative;
  min-height: 570px;
  padding: 34px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #071e2e, #0a3d4e 66%, #0b5d60);
  color: #fff;
  box-shadow: var(--shadow);
}
html[data-page="praticas-medicas-simuladas"] .mp-diagnostic-board::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -120px;
  top: -115px;
  border-radius: 50%;
  border: 1px solid rgba(126, 217, 87, 0.28);
}
html[data-page="praticas-medicas-simuladas"] .mp-diagnostic-board h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
html[data-page="praticas-medicas-simuladas"] .mp-diagnostic-board > p {
  position: relative;
  z-index: 2;
  margin: 13px 0 0;
  color: #b9d0da;
  font-size: 13px;
  line-height: 1.65;
}
html[data-page="praticas-medicas-simuladas"] .mp-loop {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
  margin-top: 27px;
}
html[data-page="praticas-medicas-simuladas"] .mp-loop-card {
  position: relative;
  min-height: 87px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.07);
  transition: 0.32s;
  overflow: hidden;
}
html[data-page="praticas-medicas-simuladas"] .mp-loop-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-120%);
}
html[data-page="praticas-medicas-simuladas"] .mp-loop-card:hover {
  transform: translateX(7px);
  border-color: rgba(126, 217, 87, 0.38);
  background: linear-gradient(
    100deg,
    rgba(47, 128, 237, 0.15),
    rgba(8, 173, 5, 0.13)
  );
}
html[data-page="praticas-medicas-simuladas"] .mp-loop-card:hover::before {
  animation: revisamed-inteligente-mpShine 0.8s ease forwards;
}
@keyframes revisamed-inteligente-mpShine {
  to {
    transform: translateX(120%);
  }
}
html[data-page="praticas-medicas-simuladas"] .mp-loop-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #2f80ed, #08ad05);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(8, 173, 5, 0.17);
}
html[data-page="praticas-medicas-simuladas"] .mp-loop-card strong {
  display: block;
  font-size: 14px;
}
html[data-page="praticas-medicas-simuladas"] .mp-loop-card span {
  display: block;
  margin-top: 4px;
  color: #a9c2ce;
  font-size: 11px;
}
html[data-page="praticas-medicas-simuladas"] .mp-loop-card b {
  color: #87e96b;
  font-size: 18px;
}
html[data-page="praticas-medicas-simuladas"] .mp-diagnostic-note {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  padding: 15px 17px;
  border-left: 3px solid #7ed957;
  border-radius: 0 14px 14px 0;
  background: rgba(0, 0, 0, 0.17);
  color: #c6d9e1;
  font-size: 12px;
  line-height: 1.65;
}

html[data-page="praticas-medicas-simuladas"] .mp-features {
  background: var(--surface);
}
html[data-page="praticas-medicas-simuladas"] .mp-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
html[data-page="praticas-medicas-simuladas"] .mp-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 275px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 27px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  transition: 0.34s;
  isolation: isolate;
}
html[data-page="praticas-medicas-simuladas"] .mp-feature-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 160px;
  height: 160px;
  right: -82px;
  top: -88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 173, 5, 0.15), transparent 68%);
  transition: 0.4s;
}
html[data-page="praticas-medicas-simuladas"] .mp-feature-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #08ad05, #0097b2);
  transition: right 0.4s;
}
html[data-page="praticas-medicas-simuladas"] .mp-feature-card:hover {
  transform: translateY(-9px);
  border-color: rgba(8, 173, 5, 0.34);
  box-shadow: 0 24px 54px rgba(8, 41, 66, 0.12);
}
html[data-page="praticas-medicas-simuladas"] .mp-feature-card:hover::before {
  transform: scale(1.2);
}
html[data-page="praticas-medicas-simuladas"] .mp-feature-card:hover::after {
  right: 0;
}
html[data-page="praticas-medicas-simuladas"] .mp-feature-icon {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, #08ad05, #0097b2);
  box-shadow:
    0 15px 34px rgba(8, 173, 5, 0.21),
    0 0 0 7px rgba(8, 173, 5, 0.05);
  transition: 0.35s;
}
html[data-page="praticas-medicas-simuladas"] .mp-feature-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
}
html[data-page="praticas-medicas-simuladas"] .mp-feature-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  right: 8px;
  top: 8px;
  border-radius: 50%;
  background: #a8f48f;
  box-shadow: 0 0 13px rgba(168, 244, 143, 0.9);
}
html[data-page="praticas-medicas-simuladas"] .mp-feature-icon svg {
  position: relative;
  z-index: 1;
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="praticas-medicas-simuladas"]
  .mp-feature-card:hover
  .mp-feature-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.08);
}
html[data-page="praticas-medicas-simuladas"] .mp-feature-card h3 {
  margin: 22px 0 9px;
  font-size: 18px;
  line-height: 1.3;
}
html[data-page="praticas-medicas-simuladas"] .mp-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

html[data-page="praticas-medicas-simuladas"] .mp-showcase {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #061b2b, #0a3447 58%, #0c5c5b);
}
html[data-page="praticas-medicas-simuladas"] .mp-showcase::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -280px;
  top: -300px;
  border-radius: 50%;
  border: 1px solid rgba(126, 217, 87, 0.24);
}
html[data-page="praticas-medicas-simuladas"] .mp-showcase .mp-section-head h2 {
  color: #fff;
}
html[data-page="praticas-medicas-simuladas"] .mp-showcase .mp-section-head p {
  color: #b9d1dc;
}
html[data-page="praticas-medicas-simuladas"] .mp-showcase-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 25px;
  align-items: stretch;
}
html[data-page="praticas-medicas-simuladas"] .mp-screen-tabs {
  display: grid;
  align-content: start;
  gap: 10px;
}
html[data-page="praticas-medicas-simuladas"] .mp-screen-tab {
  width: 100%;
  min-height: 82px;
  padding: 14px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: 0.25s;
}
html[data-page="praticas-medicas-simuladas"] .mp-screen-tab i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  color: #7ed957;
  font-style: normal;
  font-weight: 900;
}
html[data-page="praticas-medicas-simuladas"] .mp-screen-tab strong {
  display: block;
  font-size: 13px;
}
html[data-page="praticas-medicas-simuladas"] .mp-screen-tab span {
  display: block;
  margin-top: 4px;
  color: #9eb8c5;
  font-size: 10px;
  line-height: 1.4;
}
html[data-page="praticas-medicas-simuladas"] .mp-screen-tab.active,
html[data-page="praticas-medicas-simuladas"] .mp-screen-tab:hover {
  transform: translateX(5px);
  border-color: rgba(126, 217, 87, 0.4);
  background: linear-gradient(
    100deg,
    rgba(8, 173, 5, 0.18),
    rgba(0, 151, 178, 0.14)
  );
}
html[data-page="praticas-medicas-simuladas"] .mp-screen-frame {
  position: relative;
  min-height: 590px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 29px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.32);
}
html[data-page="praticas-medicas-simuladas"] .mp-screen-browser {
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 17px 17px 0 0;
  background: rgba(3, 19, 30, 0.82);
}
html[data-page="praticas-medicas-simuladas"] .mp-screen-browser i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}
html[data-page="praticas-medicas-simuladas"] .mp-screen-browser span {
  margin-left: auto;
  color: #91adbb;
  font-size: 9px;
  letter-spacing: 0.09em;
}
html[data-page="praticas-medicas-simuladas"] .mp-screen-viewport {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 0 0 19px 19px;
  background: #fff;
}
html[data-page="praticas-medicas-simuladas"] .mp-screen-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease;
  pointer-events: none;
}
html[data-page="praticas-medicas-simuladas"] .mp-screen-panel.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
html[data-page="praticas-medicas-simuladas"] .mp-screen-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #f7f7f7;
}
html[data-page="praticas-medicas-simuladas"] .mp-video-button {
  position: absolute;
  z-index: 5;
  right: 25px;
  bottom: 25px;
  min-height: 48px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: linear-gradient(135deg, #08ad05, #078d08);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 16px 36px rgba(8, 173, 5, 0.28);
  cursor: pointer;
  transition: 0.25s;
}
html[data-page="praticas-medicas-simuladas"] .mp-video-button:hover {
  transform: translateY(-3px);
}

html[data-page="praticas-medicas-simuladas"] .mp-method {
  background: linear-gradient(135deg, #effcf0 0%, #f3fbff 50%, #eef8ff 100%);
}
html[data-page="praticas-medicas-simuladas"][data-theme="dark"] .mp-method {
  background: linear-gradient(135deg, #0a2731, #0a2435 50%, #0b2c35);
}
html[data-page="praticas-medicas-simuladas"] .mp-method-flow {
  --mp-progress: 0%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
html[data-page="praticas-medicas-simuladas"] .mp-method-track,
html[data-page="praticas-medicas-simuladas"] .mp-method-fill {
  position: absolute;
  left: 12.5%;
  top: 39px;
  height: 4px;
  border-radius: 999px;
}
html[data-page="praticas-medicas-simuladas"] .mp-method-track {
  right: 12.5%;
  background: rgba(8, 41, 66, 0.12);
}
html[data-page="praticas-medicas-simuladas"] .mp-method-fill {
  width: var(--mp-progress);
  max-width: 75%;
  background: linear-gradient(90deg, #2f80ed, #08ad05);
  box-shadow: 0 0 18px rgba(8, 173, 5, 0.35);
  transition: width 0.48s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="praticas-medicas-simuladas"] .mp-method-step {
  position: relative;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  outline: none;
}
html[data-page="praticas-medicas-simuladas"] .mp-method-step b {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid rgba(47, 128, 237, 0.2);
  border-radius: 50%;
  background: var(--surface);
  color: #2f80ed;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 13px 32px rgba(8, 41, 66, 0.11);
  transition: 0.34s;
}
html[data-page="praticas-medicas-simuladas"] .mp-method-step.active b,
html[data-page="praticas-medicas-simuladas"] .mp-method-step:hover b,
html[data-page="praticas-medicas-simuladas"] .mp-method-step:focus-visible b {
  transform: translateY(-6px) scale(1.08);
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #2f80ed, #08ad05);
  box-shadow:
    0 0 0 8px rgba(8, 173, 5, 0.08),
    0 18px 38px rgba(8, 173, 5, 0.22);
}
html[data-page="praticas-medicas-simuladas"] .mp-method-step h3 {
  margin: 20px 0 8px;
  font-size: 18px;
}
html[data-page="praticas-medicas-simuladas"] .mp-method-step p {
  margin: 0 auto;
  max-width: 240px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

html[data-page="praticas-medicas-simuladas"] .mp-audience {
  background: var(--surface);
}
html[data-page="praticas-medicas-simuladas"] .mp-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
html[data-page="praticas-medicas-simuladas"] .mp-audience-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  box-shadow: 0 13px 34px rgba(8, 41, 66, 0.06);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
  isolation: isolate;
}
html[data-page="praticas-medicas-simuladas"] .mp-audience-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 170px;
  height: 170px;
  right: -88px;
  top: -92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 173, 5, 0.15), transparent 68%);
  transition:
    transform 0.45s ease,
    opacity 0.35s ease;
}
html[data-page="praticas-medicas-simuladas"] .mp-audience-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #08ad05, #0097b2, #2f80ed);
  transition: right 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="praticas-medicas-simuladas"] .mp-audience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8, 173, 5, 0.35);
  box-shadow: 0 24px 54px rgba(8, 41, 66, 0.13);
}
html[data-page="praticas-medicas-simuladas"] .mp-audience-card:hover::before {
  transform: scale(1.22);
  opacity: 0.92;
}
html[data-page="praticas-medicas-simuladas"] .mp-audience-card:hover::after {
  right: 0;
}
html[data-page="praticas-medicas-simuladas"] .mp-audience-icon {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, #2f80ed 0%, #1598d0 48%, #08ad05 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    0 15px 34px rgba(47, 128, 237, 0.22),
    0 0 0 7px rgba(47, 128, 237, 0.05);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.85, 0.2, 1.22),
    box-shadow 0.32s ease;
}
html[data-page="praticas-medicas-simuladas"] .mp-audience-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
}
html[data-page="praticas-medicas-simuladas"] .mp-audience-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 8px;
  right: 8px;
  border-radius: 50%;
  background: #a7f58d;
  box-shadow: 0 0 14px rgba(167, 245, 141, 0.9);
  animation: revisamed-inteligente-mpAudiencePulse 2.6s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .mp-audience-icon svg {
  position: relative;
  z-index: 1;
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.18));
}
html[data-page="praticas-medicas-simuladas"]
  .mp-audience-card:nth-child(2n)
  .mp-audience-icon {
  background: linear-gradient(145deg, #0097b2, #00a189);
}
html[data-page="praticas-medicas-simuladas"]
  .mp-audience-card:nth-child(3n)
  .mp-audience-icon {
  background: linear-gradient(145deg, #3e74e8, #08ad05);
}
html[data-page="praticas-medicas-simuladas"]
  .mp-audience-card:hover
  .mp-audience-icon {
  transform: translateY(-4px) rotate(-5deg) scale(1.08);
  box-shadow:
    0 22px 42px rgba(8, 173, 5, 0.24),
    0 0 0 9px rgba(8, 173, 5, 0.06);
}
@keyframes revisamed-inteligente-mpAudiencePulse {
  0%,
  100% {
    transform: scale(0.86);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}
html[data-page="praticas-medicas-simuladas"] .mp-audience-card h3 {
  margin: 20px 0 8px;
  font-size: 18px;
}
html[data-page="praticas-medicas-simuladas"] .mp-audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.67;
}

html[data-page="praticas-medicas-simuladas"] .mp-pricing {
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
}
html[data-page="praticas-medicas-simuladas"] .mp-pricing .mp-section-head {
  max-width: 760px;
}
html[data-page="praticas-medicas-simuladas"] .mp-pricing .mp-section-head h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}
html[data-page="praticas-medicas-simuladas"] .mp-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
html[data-page="praticas-medicas-simuladas"] .mp-plan {
  position: relative;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 20px 54px rgba(8, 41, 66, 0.1);
  transition: 0.32s;
}
html[data-page="praticas-medicas-simuladas"] .mp-plan:hover {
  transform: translateY(-9px);
  border-color: rgba(8, 173, 5, 0.38);
  box-shadow: 0 30px 70px rgba(8, 41, 66, 0.16);
}
html[data-page="praticas-medicas-simuladas"] .mp-plan.featured {
  border-color: rgba(8, 173, 5, 0.42);
  transform: translateY(-8px);
  box-shadow: 0 30px 75px rgba(8, 173, 5, 0.16);
}
html[data-page="praticas-medicas-simuladas"] .mp-plan.featured:hover {
  transform: translateY(-12px);
}
html[data-page="praticas-medicas-simuladas"] .mp-plan-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(8, 173, 5, 0.11);
  color: var(--mp-green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .mp-plan small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .mp-plan h3 {
  margin: 9px 0 0;
  font-size: 27px;
}
html[data-page="praticas-medicas-simuladas"] .mp-plan-price {
  margin-top: 22px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
html[data-page="praticas-medicas-simuladas"] .mp-plan-price strong {
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: -0.05em;
}
html[data-page="praticas-medicas-simuladas"] .mp-plan-price span {
  color: var(--muted);
  font-size: 12px;
}
html[data-page="praticas-medicas-simuladas"] .mp-plan-alt {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
}
html[data-page="praticas-medicas-simuladas"] .mp-plan-list {
  display: grid;
  gap: 11px;
  margin: 24px 0;
}
html[data-page="praticas-medicas-simuladas"] .mp-plan-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 12px;
}
html[data-page="praticas-medicas-simuladas"] .mp-plan-list i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 173, 5, 0.11);
  color: var(--mp-green);
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}
html[data-page="praticas-medicas-simuladas"] .mp-plan a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #08ad05, #078d08);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(8, 173, 5, 0.22);
  transition: 0.25s;
}
html[data-page="praticas-medicas-simuladas"] .mp-plan a:hover {
  transform: translateY(-2px);
}
html[data-page="praticas-medicas-simuladas"] .mp-plan-note {
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

html[data-page="praticas-medicas-simuladas"] .mp-faq {
  background: var(--surface-soft);
}
html[data-page="praticas-medicas-simuladas"] .medprovas-page .faq-aside {
  background: linear-gradient(145deg, #071e2f, #0a4c55);
}
html[data-page="praticas-medicas-simuladas"] .medprovas-page .faq-aside a {
  background: linear-gradient(135deg, #08ad05, #078d08);
}
html[data-page="praticas-medicas-simuladas"] .mp-final {
  padding: 0 0 105px;
  background: var(--surface-soft);
}
html[data-page="praticas-medicas-simuladas"] .mp-final-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, #061c2c, #0a4552 62%, #0b735f);
  box-shadow: var(--shadow);
}
html[data-page="praticas-medicas-simuladas"] .mp-final-card::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  right: -130px;
  top: -205px;
  border-radius: 50%;
  border: 1px solid rgba(126, 217, 87, 0.28);
}
html[data-page="praticas-medicas-simuladas"] .mp-final-card > * {
  position: relative;
  z-index: 2;
}
html[data-page="praticas-medicas-simuladas"] .mp-final-card small {
  color: #a7e6cb;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .mp-final-card h2 {
  margin: 12px 0 0;
  max-width: 800px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
html[data-page="praticas-medicas-simuladas"] .mp-final-card p {
  margin: 17px 0 0;
  color: #c5d9e2;
  font-size: 14px;
  line-height: 1.7;
}

html[data-page="praticas-medicas-simuladas"] .mp-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 13, 22, 0.82);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: 0.28s;
}
html[data-page="praticas-medicas-simuladas"] .mp-modal.open {
  opacity: 1;
  visibility: visible;
}
html[data-page="praticas-medicas-simuladas"] .mp-modal-dialog {
  position: relative;
  width: min(980px, 94vw);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: #071b2a;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.48);
  transform: translateY(20px) scale(0.97);
  transition: 0.3s;
}
html[data-page="praticas-medicas-simuladas"] .mp-modal.open .mp-modal-dialog {
  transform: none;
}
html[data-page="praticas-medicas-simuladas"] .mp-modal-close {
  position: absolute;
  z-index: 3;
  right: -12px;
  top: -12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #fff;
  color: #102939;
  cursor: pointer;
}
html[data-page="praticas-medicas-simuladas"] .mp-modal-video {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 17px;
  background: #000;
}
html[data-page="praticas-medicas-simuladas"] .mp-modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1100px) {
  html[data-page="praticas-medicas-simuladas"] .mp-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-float-card--one {
    left: -3%;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-float-card--two {
    right: -3%;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .mp-showcase-shell {
    grid-template-columns: 220px 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-screen-frame {
    min-height: 520px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-screen-viewport {
    height: 450px;
  }
}
@media (max-width: 920px) {
  html[data-page="praticas-medicas-simuladas"] .mp-hero {
    margin-top: 74px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-hero,
  html[data-page="praticas-medicas-simuladas"] .mp-hero-inner {
    min-height: auto;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-hero-inner {
    grid-template-columns: 1fr;
    padding-block: 72px 96px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-hero-copy {
    text-align: center;
    margin-inline: auto;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-hero-copy > p {
    margin-inline: auto;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-hero-actions,
  html[data-page="praticas-medicas-simuladas"] .mp-hero-points {
    justify-content: center;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-hero-visual {
    min-height: 530px;
    max-width: 760px;
    width: 100%;
    margin: auto;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-device-stage {
    width: 100%;
    margin-left: 0;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .mp-stat:nth-child(2)::after {
    display: none;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="praticas-medicas-simuladas"] .mp-diagnosis-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-showcase-shell {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-screen-tabs {
    grid-template-columns: repeat(4, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .mp-screen-tab {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    min-height: 96px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-screen-tab span {
    display: none;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .mp-plan-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-inline: auto;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-plan.featured {
    transform: none;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-final-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  html[data-page="praticas-medicas-simuladas"] .mp-hero h1 {
    font-size: 34px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-hero-copy > p {
    font-size: 15px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-hero-points span {
    font-size: 13px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-hero-visual {
    min-height: 405px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-stat-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-stat {
    min-height: 94px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-stat::after {
    display: none !important;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-stat:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="praticas-medicas-simuladas"] .mp-section {
    padding: 82px 0;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-feature-grid,
  html[data-page="praticas-medicas-simuladas"] .mp-audience-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-diagnostic-board {
    min-height: auto;
    padding: 25px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-screen-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .mp-screen-frame {
    min-height: 365px;
    padding: 8px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-screen-viewport {
    height: 310px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-method-flow {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-method-track,
  html[data-page="praticas-medicas-simuladas"] .mp-method-fill {
    display: none;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-method-step {
    padding: 17px;
    text-align: left;
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 15px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: var(--surface);
  }
  html[data-page="praticas-medicas-simuladas"] .mp-method-step b {
    width: 58px;
    height: 58px;
    margin: 0;
    grid-row: 1/3;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-method-step h3 {
    margin: 0 0 5px;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-method-step p {
    margin: 0;
    max-width: none;
  }
  html[data-page="praticas-medicas-simuladas"] .mp-final-card {
    padding: 38px 26px;
  }
}

/* ============================================================
   APP REVISAMED INTELIGENTE — LANDING PAGE PREMIUM
   ============================================================ */
html[data-page="praticas-medicas-simuladas"] body.ri-app-page {
  overflow-x: hidden;
}
html[data-page="praticas-medicas-simuladas"] .ri-app-page main {
  background: var(--surface);
}


html[data-page="praticas-medicas-simuladas"] .ri-hero {
  position: relative;
  min-height: 780px;
  margin-top: 84px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(74, 232, 194, 0.2),
      transparent 27%
    ),
    radial-gradient(
      circle at 16% 78%,
      rgba(47, 128, 237, 0.21),
      transparent 29%
    ),
    linear-gradient(135deg, #041521 0%, #082b40 47%, #0a4b51 100%);
  isolation: isolate;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.75) 70%,
    transparent 100%
  );
  animation: revisamed-inteligente-riGridMove 24s linear infinite;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero::after {
  content: "";
  position: absolute;
  z-index: -4;
  width: 780px;
  height: 780px;
  right: -210px;
  bottom: -370px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(126, 217, 87, 0.18),
    rgba(0, 151, 178, 0.12) 42%,
    transparent 72%
  );
  filter: blur(10px);
  animation: revisamed-inteligente-riAura 15s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero-ambient,
html[data-page="praticas-medicas-simuladas"] .ri-hero-lines,
html[data-page="praticas-medicas-simuladas"] .ri-hero-particles,
html[data-page="praticas-medicas-simuladas"] .ri-hero-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero-ambient {
  z-index: -3;
  background:
    radial-gradient(
      circle at 15% 26%,
      rgba(47, 128, 237, 0.17),
      transparent 31%
    ),
    radial-gradient(
      circle at 67% 14%,
      rgba(126, 217, 87, 0.13),
      transparent 28%
    ),
    radial-gradient(circle at 88% 72%, rgba(0, 151, 178, 0.16), transparent 35%);
  filter: blur(13px);
  animation: revisamed-inteligente-riAmbient 12s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero-lines {
  z-index: -2;
  opacity: 0.56;
  background:
    linear-gradient(
      118deg,
      transparent 0 18%,
      rgba(82, 183, 255, 0.18) 18.4%,
      transparent 19.2%,
      transparent 51%,
      rgba(126, 217, 87, 0.17) 51.5%,
      transparent 52.2%,
      transparent 100%
    ),
    linear-gradient(
      90deg,
      transparent 0 64%,
      rgba(255, 255, 255, 0.045) 64.2%,
      transparent 64.6%,
      transparent 100%
    );
  background-size:
    150% 150%,
    100% 100%;
  animation: revisamed-inteligente-riTechSweep 11s linear infinite;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero-particles {
  z-index: -1;
  opacity: 0.72;
  background-image:
    radial-gradient(
      circle at 16% 28%,
      rgba(255, 255, 255, 0.9) 0 1.8px,
      transparent 2px
    ),
    radial-gradient(
      circle at 30% 72%,
      rgba(126, 217, 87, 0.8) 0 2px,
      transparent 2.2px
    ),
    radial-gradient(
      circle at 55% 12%,
      rgba(47, 128, 237, 0.9) 0 2px,
      transparent 2.2px
    ),
    radial-gradient(
      circle at 75% 58%,
      rgba(255, 255, 255, 0.7) 0 1.7px,
      transparent 2px
    ),
    radial-gradient(
      circle at 88% 25%,
      rgba(126, 217, 87, 0.78) 0 2px,
      transparent 2.2px
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(47, 128, 237, 0.84) 0 1.8px,
      transparent 2px
    );
  animation: revisamed-inteligente-riParticleFloat 13s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero-scan {
  z-index: -1;
  left: auto;
  right: 5%;
  top: 10%;
  bottom: 8%;
  width: 48%;
  border-radius: 38px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(126, 217, 87, 0.2) 48%,
    transparent 52%,
    transparent 100%
  );
  mix-blend-mode: screen;
  animation: revisamed-inteligente-riScanner 4.8s ease-in-out infinite;
}
@keyframes revisamed-inteligente-riGridMove {
  to {
    background-position:
      58px 58px,
      58px 58px;
  }
}
@keyframes revisamed-inteligente-riAura {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-40px, -22px, 0) scale(1.06);
  }
}
@keyframes revisamed-inteligente-riAmbient {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.07);
    opacity: 0.88;
  }
}
@keyframes revisamed-inteligente-riTechSweep {
  from {
    background-position:
      0 0,
      0 0;
  }
  to {
    background-position:
      100% 0,
      0 0;
  }
}
@keyframes revisamed-inteligente-riParticleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes revisamed-inteligente-riScanner {
  0%,
  100% {
    transform: translateY(-20%) skewX(-8deg);
    opacity: 0.18;
  }
  50% {
    transform: translateY(20%) skewX(-8deg);
    opacity: 0.44;
  }
}

html[data-page="praticas-medicas-simuladas"] .ri-hero-inner {
  min-height: 780px;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 52px;
  padding-block: 78px 92px;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 570px;
}
html[data-page="praticas-medicas-simuladas"] .ri-logo-lockup {
  width: min(310px, 54vw);
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}
html[data-page="praticas-medicas-simuladas"] .ri-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #a6efd4;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
html[data-page="praticas-medicas-simuladas"] .ri-hero-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ed957;
  box-shadow: 0 0 14px rgba(126, 217, 87, 0.9);
}
html[data-page="praticas-medicas-simuladas"] .ri-hero h1 {
  margin: 0;
  max-width: 590px;
  font-size: clamp(42px, 4.35vw, 61px);
  line-height: 1.01;
  letter-spacing: -0.055em;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero h1 em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, #fff, #75e7c2 52%, #76bfff);
  -webkit-background-clip: text;
  background-clip: text;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero-copy > p {
  max-width: 590px;
  margin: 25px 0 0;
  color: #c5d8e1;
  font-size: 17px;
  line-height: 1.72;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #eff8fb;
  font-size: 13px;
  font-weight: 800;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero-points i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(126, 217, 87, 0.16);
  color: #91ec72;
  font-style: normal;
}
html[data-page="praticas-medicas-simuladas"] .ri-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
html[data-page="praticas-medicas-simuladas"] .ri-primary,
html[data-page="praticas-medicas-simuladas"] .ri-secondary {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 17px;
  font-size: 14px;
  font-weight: 850;
  transition: 0.28s;
}
html[data-page="praticas-medicas-simuladas"] .ri-primary {
  color: #fff;
  background: linear-gradient(135deg, #16bb12, #028c65);
  box-shadow: 0 18px 40px rgba(11, 175, 105, 0.27);
}
html[data-page="praticas-medicas-simuladas"] .ri-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(11, 175, 105, 0.37);
}
html[data-page="praticas-medicas-simuladas"] .ri-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}
html[data-page="praticas-medicas-simuladas"] .ri-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
}

html[data-page="praticas-medicas-simuladas"] .ri-hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  perspective: 1300px;
}
html[data-page="praticas-medicas-simuladas"] .ri-browser {
  position: relative;
  z-index: 3;
  width: 108%;
  margin-left: -4%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.06)
  );
  box-shadow: 0 42px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  animation: revisamed-inteligente-riBrowserFloat 7s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .ri-browser-top {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 16px 16px 0 0;
  background: rgba(4, 24, 38, 0.86);
}
html[data-page="praticas-medicas-simuladas"] .ri-browser-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b6b;
}
html[data-page="praticas-medicas-simuladas"] .ri-browser-top i:nth-child(2) {
  background: #ffd166;
}
html[data-page="praticas-medicas-simuladas"] .ri-browser-top i:nth-child(3) {
  background: #50d890;
}
html[data-page="praticas-medicas-simuladas"] .ri-browser-top span {
  margin-left: 8px;
  color: #9cb7c5;
  font-size: 10px;
  letter-spacing: 0.04em;
}
html[data-page="praticas-medicas-simuladas"] .ri-browser img {
  width: 100%;
  display: block;
  border-radius: 0 0 18px 18px;
}
@keyframes revisamed-inteligente-riBrowserFloat {
  0%,
  100% {
    transform: translateY(0) rotateY(-2deg);
  }
  50% {
    transform: translateY(-12px) rotateY(0);
  }
}
html[data-page="praticas-medicas-simuladas"] .ri-orbit {
  position: absolute;
  inset: 7% 1% 8% 3%;
  border: 1px solid rgba(126, 217, 87, 0.25);
  border-radius: 50%;
  transform: rotate(-7deg);
  animation: revisamed-inteligente-riOrbit 8s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .ri-orbit::before,
html[data-page="praticas-medicas-simuladas"] .ri-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
html[data-page="praticas-medicas-simuladas"] .ri-orbit::before {
  width: 12px;
  height: 12px;
  right: 15%;
  top: 7%;
  background: #7ed957;
  box-shadow: 0 0 25px rgba(126, 217, 87, 0.9);
}
html[data-page="praticas-medicas-simuladas"] .ri-orbit::after {
  width: 9px;
  height: 9px;
  left: 8%;
  bottom: 20%;
  background: #2f80ed;
  box-shadow: 0 0 23px rgba(47, 128, 237, 0.9);
}
@keyframes revisamed-inteligente-riOrbit {
  0%,
  100% {
    transform: rotate(-7deg) scale(1);
  }
  50% {
    transform: rotate(-3deg) scale(1.035);
  }
}
html[data-page="praticas-medicas-simuladas"] .ri-float-screen {
  position: absolute;
  z-index: 5;
  width: 235px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(5, 30, 45, 0.74);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  animation: revisamed-inteligente-riScreenFloat 6s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .ri-float-screen img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
html[data-page="praticas-medicas-simuladas"] .ri-float-screen span {
  display: block;
  padding: 9px 5px 3px;
  color: #dff5ed;
  font-size: 11px;
  font-weight: 800;
}
html[data-page="praticas-medicas-simuladas"] .ri-float-screen--one {
  left: -3%;
  top: 10%;
  animation-delay: -2s;
}
html[data-page="praticas-medicas-simuladas"] .ri-float-screen--two {
  right: -3%;
  bottom: 4%;
  animation-delay: -4.3s;
}
@keyframes revisamed-inteligente-riScreenFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

html[data-page="praticas-medicas-simuladas"] .ri-stat-strip {
  position: relative;
  z-index: 8;
  margin-top: -44px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 27px;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(8, 41, 66, 0.12);
}
html[data-page="praticas-medicas-simuladas"] .ri-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="praticas-medicas-simuladas"] .ri-stat {
  min-height: 104px;
  padding: 17px 19px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--border);
}
html[data-page="praticas-medicas-simuladas"] .ri-stat:last-child {
  border-right: 0;
}
html[data-page="praticas-medicas-simuladas"] .ri-stat-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 12px 28px rgba(47, 128, 237, 0.18);
}
html[data-page="praticas-medicas-simuladas"] .ri-stat-icon svg,
html[data-page="praticas-medicas-simuladas"] .ri-feature-icon svg,
html[data-page="praticas-medicas-simuladas"] .ri-mode-icon svg,
html[data-page="praticas-medicas-simuladas"] .ri-audience-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="praticas-medicas-simuladas"] .ri-stat small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .ri-stat strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

html[data-page="praticas-medicas-simuladas"] .ri-section {
  padding: 110px 0;
}
html[data-page="praticas-medicas-simuladas"] .ri-section-head {
  max-width: 850px;
  margin: 0 auto 44px;
  text-align: center;
}
html[data-page="praticas-medicas-simuladas"] .ri-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(0, 179, 136, 0.18);
  border-radius: 999px;
  background: rgba(0, 179, 136, 0.08);
  color: #008c72;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .ri-section-head h2 {
  margin: 18px 0 13px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 53px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
html[data-page="praticas-medicas-simuladas"] .ri-section-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

html[data-page="praticas-medicas-simuladas"] .ri-intro {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}
html[data-page="praticas-medicas-simuladas"] .ri-intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}
html[data-page="praticas-medicas-simuladas"] .ri-intro-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
html[data-page="praticas-medicas-simuladas"] .ri-intro-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
html[data-page="praticas-medicas-simuladas"] .ri-study-flow {
  margin-top: 30px;
  display: grid;
  gap: 13px;
}
html[data-page="praticas-medicas-simuladas"] .ri-flow-item {
  position: relative;
  overflow: hidden;
  min-height: 82px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  transition: 0.3s;
}
html[data-page="praticas-medicas-simuladas"] .ri-flow-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: right 0.4s;
}
html[data-page="praticas-medicas-simuladas"] .ri-flow-item:hover {
  transform: translateX(6px);
  box-shadow: 0 18px 38px rgba(8, 41, 66, 0.09);
}
html[data-page="praticas-medicas-simuladas"] .ri-flow-item:hover::after {
  right: 0;
}
html[data-page="praticas-medicas-simuladas"] .ri-flow-item i {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.14),
    rgba(0, 179, 136, 0.14)
  );
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}
html[data-page="praticas-medicas-simuladas"] .ri-flow-item strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}
html[data-page="praticas-medicas-simuladas"] .ri-flow-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
html[data-page="praticas-medicas-simuladas"] .ri-intro-board {
  position: relative;
  min-height: 520px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  box-shadow: 0 25px 70px rgba(8, 41, 66, 0.1);
  overflow: hidden;
}
html[data-page="praticas-medicas-simuladas"] .ri-intro-board::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -160px;
  top: -160px;
  background: radial-gradient(
    circle,
    rgba(126, 217, 87, 0.18),
    transparent 68%
  );
}
html[data-page="praticas-medicas-simuladas"] .ri-board-title {
  position: relative;
  z-index: 2;
}
html[data-page="praticas-medicas-simuladas"] .ri-board-title small {
  color: #008c72;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .ri-board-title h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.15;
}
html[data-page="praticas-medicas-simuladas"] .ri-mode-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
html[data-page="praticas-medicas-simuladas"] .ri-mode-card {
  min-height: 155px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 21px;
  background: var(--surface);
  transition: 0.3s;
}
html[data-page="praticas-medicas-simuladas"] .ri-mode-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 179, 136, 0.3);
  box-shadow: 0 20px 42px rgba(8, 41, 66, 0.1);
}
html[data-page="praticas-medicas-simuladas"] .ri-mode-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 12px 28px rgba(47, 128, 237, 0.18);
}
html[data-page="praticas-medicas-simuladas"] .ri-mode-card h4 {
  margin: 16px 0 7px;
  color: var(--ink);
  font-size: 16px;
}
html[data-page="praticas-medicas-simuladas"] .ri-mode-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

html[data-page="praticas-medicas-simuladas"] .ri-features {
  background: var(--surface-soft);
}
html[data-page="praticas-medicas-simuladas"] .ri-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
html[data-page="praticas-medicas-simuladas"] .ri-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: var(--surface);
  box-shadow: 0 13px 34px rgba(8, 41, 66, 0.045);
  transition: 0.32s;
}
html[data-page="praticas-medicas-simuladas"] .ri-feature-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -85px;
  top: -88px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.14),
    transparent 70%
  );
  transition: 0.4s;
}
html[data-page="praticas-medicas-simuladas"] .ri-feature-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: right 0.45s;
}
html[data-page="praticas-medicas-simuladas"] .ri-feature-card:hover {
  transform: translateY(-9px);
  border-color: rgba(47, 128, 237, 0.28);
  box-shadow: 0 24px 52px rgba(8, 41, 66, 0.11);
}
html[data-page="praticas-medicas-simuladas"] .ri-feature-card:hover::before {
  transform: scale(1.2);
}
html[data-page="praticas-medicas-simuladas"] .ri-feature-card:hover::after {
  right: 0;
}
html[data-page="praticas-medicas-simuladas"] .ri-feature-icon {
  position: relative;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  color: #fff;
  background: linear-gradient(145deg, #2f80ed, #1598ce 48%, #00b388);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.22);
  transition: 0.35s;
}
html[data-page="praticas-medicas-simuladas"] .ri-feature-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 8px;
  right: 8px;
  border-radius: 50%;
  background: #9cf6da;
  box-shadow: 0 0 14px rgba(156, 246, 218, 0.9);
}
html[data-page="praticas-medicas-simuladas"]
  .ri-feature-card:hover
  .ri-feature-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.07);
}
html[data-page="praticas-medicas-simuladas"] .ri-feature-card h3 {
  margin: 19px 0 9px;
  color: var(--ink);
  font-size: 17px;
}
html[data-page="praticas-medicas-simuladas"] .ri-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

html[data-page="praticas-medicas-simuladas"] .ri-screens {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #061b2c, #0a3a4d);
  color: #fff;
}
html[data-page="praticas-medicas-simuladas"] .ri-screens::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(126, 217, 87, 0.2);
  border-radius: 50%;
  right: -300px;
  top: -270px;
  box-shadow: 0 0 130px rgba(126, 217, 87, 0.08);
}
html[data-page="praticas-medicas-simuladas"] .ri-screens .ri-section-head h2 {
  color: #fff;
}
html[data-page="praticas-medicas-simuladas"] .ri-screens .ri-section-head p {
  color: rgba(255, 255, 255, 0.7);
}
html[data-page="praticas-medicas-simuladas"] .ri-screens .ri-kicker {
  border-color: rgba(126, 217, 87, 0.24);
  background: rgba(126, 217, 87, 0.1);
  color: #9af07c;
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0 auto 22px;
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-tab {
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: #cfe0e8;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: 0.26s;
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-tab:hover,
html[data-page="praticas-medicas-simuladas"] .ri-screen-tab.active {
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(47, 128, 237, 0.85),
    rgba(0, 179, 136, 0.82)
  );
  border-color: transparent;
  transform: translateY(-2px);
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-frame {
  position: relative;
  min-height: 620px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-toolbar {
  height: 39px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 17px 17px 0 0;
  background: rgba(3, 23, 37, 0.88);
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-toolbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b6b;
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-toolbar i:nth-child(2) {
  background: #ffd166;
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-toolbar i:nth-child(3) {
  background: #50d890;
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-toolbar span {
  margin-left: 8px;
  color: #90acba;
  font-size: 10px;
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-viewport {
  position: relative;
  height: 550px;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  background: #eaf1f5;
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.985);
  transition: 0.5s;
  cursor: zoom-in;
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #f5f8fa;
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  color: #c9dce5;
  font-size: 13px;
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-caption strong {
  color: #fff;
  font-size: 15px;
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-caption button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

html[data-page="praticas-medicas-simuladas"] .ri-planner {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}
html[data-page="praticas-medicas-simuladas"] .ri-planner-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 58px;
  align-items: center;
}
html[data-page="praticas-medicas-simuladas"] .ri-planner-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
html[data-page="praticas-medicas-simuladas"] .ri-planner-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
html[data-page="praticas-medicas-simuladas"] .ri-planner-list {
  margin-top: 27px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
html[data-page="praticas-medicas-simuladas"] .ri-planner-list span {
  min-height: 53px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}
html[data-page="praticas-medicas-simuladas"] .ri-planner-list i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 179, 136, 0.13);
  color: #00a47f;
  font-style: normal;
}
html[data-page="praticas-medicas-simuladas"] .ri-planner-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 29px;
  background: var(--surface);
  box-shadow: 0 24px 65px rgba(8, 41, 66, 0.1);
}
html[data-page="praticas-medicas-simuladas"] .ri-planner-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -150px;
  top: -150px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 128, 237, 0.17),
    transparent 68%
  );
}
html[data-page="praticas-medicas-simuladas"] .ri-planner-card h3 {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-size: 25px;
}
html[data-page="praticas-medicas-simuladas"] .ri-planner-card > p {
  position: relative;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
html[data-page="praticas-medicas-simuladas"] .ri-timeline {
  position: relative;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
html[data-page="praticas-medicas-simuladas"] .ri-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: var(--border);
}
html[data-page="praticas-medicas-simuladas"] .ri-timeline-fill {
  position: absolute;
  left: 23px;
  top: 22px;
  width: 2px;
  height: var(--ri-progress, 0%);
  background: linear-gradient(var(--blue), var(--green));
  transition: height 0.4s;
}
html[data-page="praticas-medicas-simuladas"] .ri-timeline-step {
  position: relative;
  z-index: 2;
  min-height: 78px;
  padding: 14px 16px 14px 62px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  transition: 0.28s;
  cursor: pointer;
}
html[data-page="praticas-medicas-simuladas"] .ri-timeline-step b {
  position: absolute;
  left: 8px;
  top: 15px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  transition: 0.28s;
}
html[data-page="praticas-medicas-simuladas"] .ri-timeline-step h4 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}
html[data-page="praticas-medicas-simuladas"] .ri-timeline-step p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
html[data-page="praticas-medicas-simuladas"] .ri-timeline-step.is-lit {
  border-color: rgba(0, 179, 136, 0.3);
  transform: translateX(5px);
  box-shadow: 0 14px 32px rgba(8, 41, 66, 0.08);
}
html[data-page="praticas-medicas-simuladas"] .ri-timeline-step.is-lit b {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 8px 20px rgba(0, 179, 136, 0.2);
}

html[data-page="praticas-medicas-simuladas"] .ri-audience {
  background: var(--surface);
}
html[data-page="praticas-medicas-simuladas"] .ri-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
html[data-page="praticas-medicas-simuladas"] .ri-audience-card {
  min-height: 260px;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  transition: 0.3s;
}
html[data-page="praticas-medicas-simuladas"] .ri-audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(8, 41, 66, 0.1);
}
html[data-page="praticas-medicas-simuladas"] .ri-audience-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 15px 32px rgba(47, 128, 237, 0.2);
}
html[data-page="praticas-medicas-simuladas"] .ri-audience-card h3 {
  margin: 19px 0 9px;
  color: var(--ink);
  font-size: 18px;
}
html[data-page="praticas-medicas-simuladas"] .ri-audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
html[data-page="praticas-medicas-simuladas"] .ri-audience-card strong {
  display: block;
  margin-top: 18px;
  color: #008c72;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

html[data-page="praticas-medicas-simuladas"] .ri-method {
  background: var(--surface-soft);
}
html[data-page="praticas-medicas-simuladas"] .ri-method-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 45px;
}
html[data-page="praticas-medicas-simuladas"] .ri-method-track,
html[data-page="praticas-medicas-simuladas"] .ri-method-fill {
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 35px;
  height: 3px;
  border-radius: 999px;
}
html[data-page="praticas-medicas-simuladas"] .ri-method-track {
  background: var(--border);
}
html[data-page="praticas-medicas-simuladas"] .ri-method-fill {
  right: auto;
  width: var(--method-progress, 0%);
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 0.42s;
}
html[data-page="praticas-medicas-simuladas"] .ri-method-step {
  position: relative;
  z-index: 2;
  text-align: center;
  cursor: pointer;
}
html[data-page="praticas-medicas-simuladas"] .ri-method-step b {
  width: 70px;
  height: 70px;
  margin: 0 auto 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--blue);
  font-size: 20px;
  box-shadow: 0 12px 30px rgba(8, 41, 66, 0.07);
  transition: 0.3s;
}
html[data-page="praticas-medicas-simuladas"] .ri-method-step.active b {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(0, 179, 136, 0.22);
}
html[data-page="praticas-medicas-simuladas"] .ri-method-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
}
html[data-page="praticas-medicas-simuladas"] .ri-method-step p {
  max-width: 250px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

html[data-page="praticas-medicas-simuladas"] .ri-faq {
  background: var(--surface);
}
html[data-page="praticas-medicas-simuladas"] .ri-faq .faq-aside {
  background: linear-gradient(145deg, #061c2d, #0a4050);
}
html[data-page="praticas-medicas-simuladas"] .ri-final {
  padding: 0 0 110px;
  background: var(--surface);
}
html[data-page="praticas-medicas-simuladas"] .ri-final-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 48px 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, #061a2a, #0a3a4b 54%, #087c70);
  box-shadow: 0 30px 80px rgba(8, 41, 66, 0.2);
}
html[data-page="praticas-medicas-simuladas"] .ri-final-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(126, 217, 87, 0.28);
  border-radius: 50%;
  right: -170px;
  top: -230px;
}
html[data-page="praticas-medicas-simuladas"] .ri-final-card small {
  color: #9befcf;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .ri-final-card h2 {
  margin: 12px 0 12px;
  max-width: 720px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
html[data-page="praticas-medicas-simuladas"] .ri-final-card p {
  max-width: 700px;
  margin: 0;
  color: #c7dbe4;
  font-size: 15px;
  line-height: 1.7;
}
html[data-page="praticas-medicas-simuladas"] .ri-final-card .ri-primary {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

html[data-page="praticas-medicas-simuladas"] .ri-image-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 14, 24, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
html[data-page="praticas-medicas-simuladas"] .ri-image-modal.open {
  opacity: 1;
  visibility: visible;
}
html[data-page="praticas-medicas-simuladas"] .ri-image-dialog {
  position: relative;
  width: min(1380px, 96vw);
  max-height: 92vh;
  padding: 10px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.45);
}
html[data-page="praticas-medicas-simuladas"] .ri-image-dialog img {
  width: 100%;
  max-height: calc(92vh - 20px);
  display: block;
  object-fit: contain;
  border-radius: 16px;
}
html[data-page="praticas-medicas-simuladas"] .ri-image-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(3, 18, 30, 0.82);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

html[data-page="praticas-medicas-simuladas"][data-theme="dark"] .ri-intro,
html[data-page="praticas-medicas-simuladas"][data-theme="dark"] .ri-planner {
  background: linear-gradient(180deg, var(--surface), #091b28);
}
html[data-page="praticas-medicas-simuladas"][data-theme="dark"] .ri-feature-card,
html[data-page="praticas-medicas-simuladas"][data-theme="dark"] .ri-mode-card,
html[data-page="praticas-medicas-simuladas"][data-theme="dark"] .ri-flow-item,
html[data-page="praticas-medicas-simuladas"][data-theme="dark"] .ri-planner-card,
html[data-page="praticas-medicas-simuladas"][data-theme="dark"] .ri-timeline-step,
html[data-page="praticas-medicas-simuladas"][data-theme="dark"] .ri-audience-card {
  box-shadow: none;
}

@media (max-width: 1120px) {
  html[data-page="praticas-medicas-simuladas"] .ri-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 65px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-hero-copy {
    max-width: none;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-hero-visual {
    min-height: 560px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-browser {
    width: min(900px, 100%);
    margin: 0;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .ri-stat:nth-child(2) {
    border-right: 0;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  html[data-page="praticas-medicas-simuladas"] .ri-intro-grid,
  html[data-page="praticas-medicas-simuladas"] .ri-planner-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-feature-grid,
  html[data-page="praticas-medicas-simuladas"] .ri-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .ri-screen-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .ri-method-flow {
    gap: 14px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-final-card {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-final-card .ri-primary {
    justify-self: start;
  }
}
@media (max-width: 760px) {
  html[data-page="praticas-medicas-simuladas"] .ri-hero {
    margin-top: 74px;
    min-height: auto;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-hero-inner {
    min-height: auto;
    padding: 58px 0 85px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-hero h1 {
    font-size: 38px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-hero-copy > p {
    font-size: 15px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-logo-lockup {
    width: 250px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-actions a {
    width: 100%;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-hero-visual {
    min-height: 430px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-float-screen {
    width: 175px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-float-screen--one {
    left: 0;
    top: 2%;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-float-screen--two {
    right: 0;
    bottom: 0;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-stat-strip {
    margin-top: -35px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-stat {
    min-height: 88px;
    padding: 13px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-section {
    padding: 85px 0;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-section-head h2,
  html[data-page="praticas-medicas-simuladas"] .ri-intro-copy h2,
  html[data-page="praticas-medicas-simuladas"] .ri-planner-copy h2 {
    font-size: 36px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-mode-grid {
    grid-template-columns: 1fr 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-feature-grid,
  html[data-page="praticas-medicas-simuladas"] .ri-audience-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-screen-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .ri-screen-frame {
    min-height: 460px;
    padding: 8px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-screen-viewport {
    height: 400px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-planner-list {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-method-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-method-track,
  html[data-page="praticas-medicas-simuladas"] .ri-method-fill {
    display: none;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-method-step {
    padding: 16px;
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 15px;
    align-items: center;
    text-align: left;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: var(--surface);
  }
  html[data-page="praticas-medicas-simuladas"] .ri-method-step b {
    width: 58px;
    height: 58px;
    margin: 0;
    grid-row: 1/3;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-method-step h3 {
    margin: 0 0 5px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-method-step p {
    margin: 0;
    max-width: none;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-final-card {
    padding: 38px 27px;
  }
}
@media (max-width: 520px) {
  html[data-page="praticas-medicas-simuladas"] .ri-hero h1 {
    font-size: 34px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-hero-points {
    display: grid;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-hero-points span {
    justify-content: flex-start;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-hero-visual {
    min-height: 350px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-browser {
    padding: 6px;
    border-radius: 18px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-browser-top {
    height: 28px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-float-screen {
    display: none;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-stat-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-stat {
    border-right: 0;
    border-bottom: 1px solid var(--border) !important;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-stat:last-child {
    border-bottom: 0 !important;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-mode-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-screen-tabs {
    grid-template-columns: 1fr 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-screen-viewport {
    height: 310px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-screen-caption {
    align-items: flex-start;
    flex-direction: column;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-planner-card {
    padding: 22px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-final-card {
    padding: 32px 22px;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-final-card .ri-primary {
    width: 100%;
  }
  html[data-page="praticas-medicas-simuladas"] .ri-image-modal {
    padding: 10px;
  }
}

/* Cabeçalho centralizado no limite de 1240 px */
@media (min-width: 921px) {
  
  
  
  
  
  
}

/* ============================================================
   Faixa institucional global
   Mantém "Instituições atendidas" acima de "Desenvolvido por"
   com o mesmo tamanho e alinhamento em todas as páginas.
   ============================================================ */
html[data-page] .brand-strip {
  padding: 50px 0 54px;
  overflow: visible;
  background: #fff;
  border-top: 1px solid #dfeaf0;
  border-bottom: 1px solid #dfeaf0;
}
html[data-page] .brand-strip-inner {
  width: min(1040px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  background: #fff;
}
html[data-page] .brand-group {
  min-width: 0;
}
html[data-page] .brand-group h2,
html[data-page] .brand-title-pill {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 20px !important;
  padding: 0;
  color: #0a7180 !important;
  font-size: 16px !important;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.12em !important;
  text-align: center;
}
html[data-page] .brand-strip-divider {
  width: 100%;
  height: 1px;
  min-height: 1px;
  background: #d6e2e8;
}
html[data-page] .brand-logos {
  display: grid;
  gap: 16px;
}
html[data-page] .institution-logos {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
html[data-page] .developed-logos {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
html[data-page] .brand-logo-card {
  width: auto;
  height: 104px;
  padding: 18px 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dce8ef;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 41, 66, 0.055);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
html[data-page] .brand-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 128, 237, 0.25);
  box-shadow: 0 14px 30px rgba(8, 41, 66, 0.09);
}
html[data-page] .brand-logo-card img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  background: transparent;
}
html[data-page][data-theme="dark"] .brand-strip,
html[data-page][data-theme="dark"] .brand-strip-inner,
html[data-page][data-theme="dark"] .brand-logo-card {
  background: #fff;
}

@media (max-width: 1100px) {
  html[data-page] .brand-strip-inner {
    width: min(100% - 40px, 960px);
  }
}

@media (max-width: 760px) {
  html[data-page] .institution-logos,
  html[data-page] .developed-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html[data-page] .institution-logos .brand-logo-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 8px);
    justify-self: center;
  }
  html[data-page] .brand-logo-card {
    height: 92px;
    padding: 15px 17px;
  }
}

@media (max-width: 430px) {
  html[data-page] .brand-strip {
    padding: 42px 0 46px;
  }
  html[data-page] .brand-strip-inner {
    width: min(100% - 24px, 960px);
    gap: 26px;
  }
  html[data-page] .brand-group h2,
  html[data-page] .brand-title-pill {
    font-size: 13px !important;
  }
  html[data-page] .brand-logo-card {
    height: 82px;
    padding: 12px;
  }
}

/* ============================================================
   Escala visual global para desktop
   O conteúdo e o rodapé são exibidos a 90%; o header permanece
   em 100%. Como o zoom participa do fluxo da página, alturas,
   paddings e intervalos entre seções também diminuem juntos.
   ============================================================ */
@media (min-width: 921px) {
  html[data-page] body > main > :not(.site-header),
  html[data-page] body > footer,
  html[data-page] body > .floating-contact {
    zoom: 0.9;
  }
}

/* ============================================================
   R1 Essencial — conteúdo editorial agosto/2026
   Nova composição preservando header, marcas e footer do projeto.
   ============================================================ */
html[data-page="curso-r1"] .r1e-main {
  overflow: clip;
  background: var(--surface);
}
html[data-page="curso-r1"] .r1e-main * {
  box-sizing: border-box;
}
html[data-page="curso-r1"] .r1e-section {
  position: relative;
  padding: 108px 0;
}
html[data-page="curso-r1"] .r1e-section-head {
  max-width: 980px;
  margin: 0 auto 52px;
  text-align: center;
}
html[data-page="curso-r1"] .r1e-section-title {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 17px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.035em;
  text-align: center;
  text-transform: uppercase;
}
html[data-page="curso-r1"] .r1e-section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(120px, 38%, 205px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: translateX(-50%);
}
html[data-page="curso-r1"] .r1e-section-head > p {
  max-width: 850px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.72;
}

/* Hero */
html[data-page="curso-r1"] .r1e-hero {
  position: relative;
  min-height: 785px;
  padding: 160px 0 96px;
  overflow: hidden;
  color: #f7fbff;
  background:
    radial-gradient(circle at 8% 18%, rgba(47, 128, 237, 0.32), transparent 31%),
    radial-gradient(circle at 82% 28%, rgba(0, 179, 136, 0.2), transparent 34%),
    linear-gradient(118deg, #061927 0%, #082942 52%, #07333d 100%);
}
html[data-page="curso-r1"] .r1e-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--green), transparent);
  opacity: 0.8;
}
html[data-page="curso-r1"] .r1e-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 530px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(500px, 0.97fr);
  gap: 42px;
  align-items: center;
}
html[data-page="curso-r1"] .r1e-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
}
html[data-page="curso-r1"] .r1e-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 23px;
  color: #57dfbc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
html[data-page="curso-r1"] .r1e-eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="curso-r1"] .r1e-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #f7fbff;
  font-size: clamp(38px, 3.35vw, 42px);
  font-weight: 100;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
html[data-page="curso-r1"] .r1e-hero-lead {
  max-width: 690px;
  margin: 25px 0 0;
  color: #c8dbe7;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.66;
}
html[data-page="curso-r1"] .r1e-hero-prices {
  max-width: 660px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 9px;
  align-items: stretch;
}
html[data-page="curso-r1"] .r1e-hero-prices > div,
html[data-page="curso-r1"] .r1e-hero-prices > b {
  min-height: 66px;
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(185, 220, 236, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}
html[data-page="curso-r1"] .r1e-hero-prices span {
  color: #7fc7e8;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
html[data-page="curso-r1"] .r1e-hero-prices strong {
  margin-top: 5px;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}
html[data-page="curso-r1"] .r1e-hero-prices > b {
  color: #52dfbb;
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}
html[data-page="curso-r1"] .r1e-hero-actions {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
html[data-page="curso-r1"] .r1e-button {
  min-height: 52px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
html[data-page="curso-r1"] .r1e-button span {
  font-size: 18px;
  transition: transform 0.25s ease;
}
html[data-page="curso-r1"] .r1e-button:hover {
  transform: translateY(-3px);
}
html[data-page="curso-r1"] .r1e-button:hover span {
  transform: translateX(4px);
}
html[data-page="curso-r1"] .r1e-button-primary {
  color: #fff;
  background: linear-gradient(90deg, #1598c7 0%, #08b5a0 54%, #68d55e 100%);
  box-shadow: 0 16px 36px rgba(9, 173, 150, 0.25);
}
html[data-page="curso-r1"] .r1e-button-secondary {
  color: var(--ink);
  border-color: var(--border);
  background: var(--surface);
}
html[data-page="curso-r1"] .r1e-hero .r1e-button-secondary {
  color: #eaf7ff;
  border-color: rgba(221, 242, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}
html[data-page="curso-r1"] .r1e-area-line {
  max-width: 660px;
  margin: 20px 0 0;
  color: #9db7c6;
  font-size: 11px;
  line-height: 1.6;
}
html[data-page="curso-r1"] .r1e-area-line i {
  margin: 0 4px;
  color: #3ed6ad;
  font-style: normal;
}
html[data-page="curso-r1"] .r1e-hero-visual {
  position: relative;
  min-height: 560px;
}
html[data-page="curso-r1"] .r1e-platform-card {
  position: absolute;
  z-index: 1;
  top: 42px;
  right: -120px;
  width: 650px;
  overflow: hidden;
  border: 1px solid rgba(217, 239, 250, 0.22);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
  transform: perspective(1300px) rotateY(-9deg) rotateX(2deg);
  animation: r1e-screen-float 7s ease-in-out infinite;
}
html[data-page="curso-r1"] .r1e-platform-bar {
  height: 36px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #466679;
  background: #eef5f8;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
html[data-page="curso-r1"] .r1e-platform-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #68d55e;
}
html[data-page="curso-r1"] .r1e-platform-bar i:nth-child(2) { background: #08b5a0; }
html[data-page="curso-r1"] .r1e-platform-bar i:nth-child(3) { margin-right: 5px; background: #2f80ed; }
html[data-page="curso-r1"] .r1e-platform-card > img {
  width: 100%;
  height: 365px;
  display: block;
  object-fit: cover;
  object-position: left top;
}
html[data-page="curso-r1"] .r1e-students {
  position: absolute;
  z-index: 3;
  right: -80px;
  bottom: -117px;
  width: 585px;
  max-width: none;
  filter: drop-shadow(0 28px 26px rgba(0, 0, 0, 0.34));
}
html[data-page="curso-r1"] .r1e-floating-chip {
  position: absolute;
  z-index: 5;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 13px;
  color: #fff;
  background: rgba(7, 35, 49, 0.82);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 850;
  animation: r1e-chip-float 5s ease-in-out infinite;
}
html[data-page="curso-r1"] .r1e-chip-one { top: 112px; left: 5px; }
html[data-page="curso-r1"] .r1e-chip-two { right: -24px; bottom: 55px; animation-delay: -2.2s; }
html[data-page="curso-r1"] .r1e-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}
html[data-page="curso-r1"] .r1e-orb-one {
  width: 320px;
  height: 320px;
  top: -110px;
  right: 28%;
  border: 1px solid rgba(47, 128, 237, 0.22);
  animation: r1e-orb-drift 11s ease-in-out infinite;
}
html[data-page="curso-r1"] .r1e-orb-two {
  width: 180px;
  height: 180px;
  bottom: -80px;
  left: 7%;
  background: radial-gradient(circle, rgba(0, 179, 136, 0.18), transparent 68%);
  animation: r1e-orb-drift 9s ease-in-out infinite reverse;
}

/* Três pilares */
html[data-page="curso-r1"] .r1e-direction {
  background:
    radial-gradient(circle at 8% 22%, rgba(47, 128, 237, 0.08), transparent 25%),
    var(--surface);
}
html[data-page="curso-r1"] .r1e-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 21px;
}
html[data-page="curso-r1"] .r1e-pillar-card {
  position: relative;
  padding: 31px 29px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
  box-shadow: 0 18px 50px rgba(8, 41, 66, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
html[data-page="curso-r1"] .r1e-pillar-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -80px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 179, 136, 0.1), transparent 70%);
}
html[data-page="curso-r1"] .r1e-pillar-card:hover {
  border-color: color-mix(in srgb, var(--green) 42%, var(--border));
  box-shadow: 0 26px 62px rgba(8, 41, 66, 0.13);
  transform: translateY(-7px);
}
html[data-page="curso-r1"] .r1e-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
}
html[data-page="curso-r1"] .r1e-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="curso-r1"] .r1e-icon-blue { color: #2f80ed; background: rgba(47, 128, 237, 0.12); }
html[data-page="curso-r1"] .r1e-icon-green { color: #00a47d; background: rgba(0, 179, 136, 0.12); }
html[data-page="curso-r1"] .r1e-icon-orange { color: #ea7c22; background: rgba(234, 124, 34, 0.12); }
html[data-page="curso-r1"] .r1e-pillar-card > small {
  position: absolute;
  top: 37px;
  right: 28px;
  color: color-mix(in srgb, var(--muted) 65%, transparent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
html[data-page="curso-r1"] .r1e-pillar-card h3 {
  margin: 27px 0 20px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
html[data-page="curso-r1"] .r1e-pillar-card ul,
html[data-page="curso-r1"] .r1e-price-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}
html[data-page="curso-r1"] .r1e-pillar-card li,
html[data-page="curso-r1"] .r1e-price-card li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
html[data-page="curso-r1"] .r1e-pillar-card li::before,
html[data-page="curso-r1"] .r1e-price-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  font-weight: 950;
}

/* Áreas e conteúdo expansível */
html[data-page="curso-r1"] .r1e-areas {
  background:
    radial-gradient(circle at 90% 15%, rgba(0, 179, 136, 0.09), transparent 26%),
    var(--surface-soft);
}
html[data-page="curso-r1"] .r1e-area-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
}
html[data-page="curso-r1"] .r1e-area-card {
  min-height: 152px;
  padding: 21px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(8, 41, 66, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
html[data-page="curso-r1"] .r1e-area-card:hover {
  border-color: color-mix(in srgb, var(--blue) 55%, var(--border));
  transform: translateY(-5px);
}
html[data-page="curso-r1"] .r1e-area-card span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
html[data-page="curso-r1"] .r1e-area-card h3 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.23;
  letter-spacing: -0.02em;
}
html[data-page="curso-r1"] .r1e-content-details {
  max-width: 1040px;
  margin: 30px auto 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(8, 41, 66, 0.08);
}
html[data-page="curso-r1"] .r1e-content-details summary {
  min-height: 66px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--blue);
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  list-style: none;
}
html[data-page="curso-r1"] .r1e-content-details summary::-webkit-details-marker { display: none; }
html[data-page="curso-r1"] .r1e-content-details summary i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 20px;
  font-style: normal;
  transition: transform 0.25s ease;
}
html[data-page="curso-r1"] .r1e-content-details[open] summary i { transform: rotate(45deg); }
html[data-page="curso-r1"] .r1e-content-panel {
  padding: 5px 22px 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
html[data-page="curso-r1"] .r1e-content-panel article {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface-soft);
}
html[data-page="curso-r1"] .r1e-content-panel article:last-child { grid-column: 1 / -1; }
html[data-page="curso-r1"] .r1e-content-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}
html[data-page="curso-r1"] .r1e-content-panel p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

/* Fluxo de aprendizagem */
html[data-page="curso-r1"] .r1e-learning {
  color: #f7fbff;
  background:
    radial-gradient(circle at 8% 80%, rgba(47, 128, 237, 0.19), transparent 31%),
    radial-gradient(circle at 92% 12%, rgba(0, 179, 136, 0.17), transparent 29%),
    linear-gradient(125deg, #061927, #082942 55%, #07313a);
}
html[data-page="curso-r1"] .r1e-learning .r1e-section-title { color: #fff; }
html[data-page="curso-r1"] .r1e-learning .r1e-section-head > p { color: #bfd1dc; }
html[data-page="curso-r1"] .r1e-learning-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: 38px;
  align-items: center;
}
html[data-page="curso-r1"] .r1e-flow {
  position: relative;
  display: grid;
  gap: 10px;
}
html[data-page="curso-r1"] .r1e-flow::before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 25px;
  width: 2px;
  background: linear-gradient(var(--blue), var(--green));
}
html[data-page="curso-r1"] .r1e-flow article {
  position: relative;
  z-index: 1;
  min-height: 62px;
  padding: 10px 14px 10px 68px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(218, 238, 249, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, background 0.25s ease;
}
html[data-page="curso-r1"] .r1e-flow article:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateX(7px);
}
html[data-page="curso-r1"] .r1e-flow b {
  position: absolute;
  left: 11px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 9px;
}
html[data-page="curso-r1"] .r1e-flow span {
  color: #f7fbff;
  font-size: 17px;
  font-weight: 800;
}
html[data-page="curso-r1"] .r1e-learning-note {
  margin: 21px 0 0;
  color: #a9c1cf;
  font-size: 13px;
  line-height: 1.65;
}
html[data-page="curso-r1"] .r1e-screen-showcase { min-width: 0; }
html[data-page="curso-r1"] .r1e-screen-frame {
  overflow: hidden;
  border: 1px solid rgba(227, 245, 255, 0.2);
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  transform: perspective(1500px) rotateY(-2deg);
  transition: transform 0.35s ease;
}
html[data-page="curso-r1"] .r1e-screen-frame:hover { transform: perspective(1500px) rotateY(0) translateY(-5px); }
html[data-page="curso-r1"] .r1e-screen-bar {
  height: 34px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #eef4f8;
}
html[data-page="curso-r1"] .r1e-screen-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f80ed;
}
html[data-page="curso-r1"] .r1e-screen-bar i:nth-child(2) { background: #00b388; }
html[data-page="curso-r1"] .r1e-screen-bar i:nth-child(3) { background: #68d55e; }
html[data-page="curso-r1"] .r1e-screen-frame img {
  width: 100%;
  height: 405px;
  display: block;
  object-fit: cover;
  object-position: left top;
}
html[data-page="curso-r1"] .r1e-screen-resources {
  margin-top: 13px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
html[data-page="curso-r1"] .r1e-screen-resources span {
  padding: 10px 8px;
  border: 1px solid rgba(228, 245, 255, 0.16);
  border-radius: 11px;
  color: #dbeef7;
  background: rgba(255, 255, 255, 0.06);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

/* Professores e recursos */
html[data-page="curso-r1"] .r1e-experts { background: var(--surface); }
html[data-page="curso-r1"] .r1e-expert-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 46px;
  align-items: center;
}
html[data-page="curso-r1"] .r1e-teacher-collage {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}
html[data-page="curso-r1"] .r1e-teacher-collage figure {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 19px;
  background: var(--surface-soft);
}
html[data-page="curso-r1"] .r1e-teacher-collage .r1e-teacher-large { grid-row: 1 / 3; }
html[data-page="curso-r1"] .r1e-teacher-collage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}
html[data-page="curso-r1"] .r1e-teacher-collage figure:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}
html[data-page="curso-r1"] .r1e-teacher-collage > span {
  position: absolute;
  left: 22px;
  bottom: 21px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  color: #fff;
  background: rgba(5, 27, 42, 0.8);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  font-size: 11px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}
html[data-page="curso-r1"] .r1e-expert-copy {
  display: grid;
  gap: 15px;
}
html[data-page="curso-r1"] .r1e-expert-copy article {
  padding: 19px;
  display: flex;
  gap: 17px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: var(--surface-soft);
}
html[data-page="curso-r1"] .r1e-expert-copy .r1e-icon {
  flex-basis: 49px;
  width: 49px;
  height: 49px;
  border-radius: 15px;
}
html[data-page="curso-r1"] .r1e-expert-copy .r1e-icon svg { width: 23px; height: 23px; }
html[data-page="curso-r1"] .r1e-expert-copy h3 {
  margin: 1px 0 0;
  color: var(--ink);
  font-size: 18px;
}
html[data-page="curso-r1"] .r1e-expert-copy p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.62;
}
html[data-page="curso-r1"] .r1e-expert-copy blockquote {
  margin: 4px 0 0;
  padding: 23px 25px;
  border-left: 4px solid var(--green);
  border-radius: 0 18px 18px 0;
  color: #fff;
  background: linear-gradient(120deg, #082942, #0a3942);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

/* Desempenho */
html[data-page="curso-r1"] .r1e-progress {
  background:
    radial-gradient(circle at 10% 70%, rgba(47, 128, 237, 0.08), transparent 28%),
    var(--surface-soft);
}
html[data-page="curso-r1"] .r1e-progress-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.73fr) minmax(0, 1.27fr);
  gap: 50px;
  align-items: center;
}
html[data-page="curso-r1"] .r1e-progress-copy .r1e-section-title {
  margin-inline: 0;
  text-align: left;
}
html[data-page="curso-r1"] .r1e-progress-copy .r1e-section-title::after {
  left: 0;
  transform: none;
}
html[data-page="curso-r1"] .r1e-progress-lead {
  margin: 28px 0 0;
  color: var(--ink) !important;
  font-size: 23px !important;
  font-weight: 800;
  line-height: 1.25 !important;
}
html[data-page="curso-r1"] .r1e-progress-copy > p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
html[data-page="curso-r1"] .r1e-progress-points {
  margin-top: 23px;
  display: grid;
  gap: 11px;
}
html[data-page="curso-r1"] .r1e-progress-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}
html[data-page="curso-r1"] .r1e-progress-points i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 10px;
  font-style: normal;
}
html[data-page="curso-r1"] .r1e-dashboard {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 74px rgba(8, 41, 66, 0.15);
  transform: perspective(1400px) rotateY(-2deg);
  transition: transform 0.35s ease;
}
html[data-page="curso-r1"] .r1e-dashboard:hover { transform: perspective(1400px) rotateY(0) translateY(-5px); }
html[data-page="curso-r1"] .r1e-dashboard-top {
  min-height: 46px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #18374b;
  background: #edf5f8;
  font-size: 10px;
  font-weight: 800;
}
html[data-page="curso-r1"] .r1e-dashboard-top b { color: #00a47d; }
html[data-page="curso-r1"] .r1e-dashboard img {
  width: 100%;
  height: 425px;
  display: block;
  object-fit: cover;
  object-position: left top;
}

/* Planos */
html[data-page="curso-r1"] .r1e-pricing {
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 179, 136, 0.09), transparent 25%),
    var(--surface);
}
html[data-page="curso-r1"] .r1e-price-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
html[data-page="curso-r1"] .r1e-price-card {
  position: relative;
  min-height: 520px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
  box-shadow: 0 20px 56px rgba(8, 41, 66, 0.1);
}
html[data-page="curso-r1"] .r1e-price-featured {
  border: 2px solid color-mix(in srgb, var(--green) 70%, var(--blue));
  box-shadow: 0 28px 74px rgba(0, 156, 143, 0.17);
  transform: translateY(-11px);
}
html[data-page="curso-r1"] .r1e-price-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
html[data-page="curso-r1"] .r1e-price-kicker {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
html[data-page="curso-r1"] .r1e-price-card h3 {
  margin: 15px 0 0;
  color: var(--ink);
  font-size: 39px;
  line-height: 1;
  letter-spacing: -0.045em;
}
html[data-page="curso-r1"] .r1e-installment {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 15px;
}
html[data-page="curso-r1"] .r1e-installment strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.15;
}
html[data-page="curso-r1"] .r1e-total {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
}
html[data-page="curso-r1"] .r1e-cash {
  width: max-content;
  margin: 17px 0 0;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--green) 34%, var(--border));
  border-radius: 999px;
  color: color-mix(in srgb, var(--green) 78%, var(--ink));
  background: color-mix(in srgb, var(--green) 9%, transparent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
html[data-page="curso-r1"] .r1e-price-card ul {
  margin: 26px 0 28px;
}
html[data-page="curso-r1"] .r1e-price-card .r1e-button {
  width: 100%;
  margin-top: auto;
}

/* Fechamento */
html[data-page="curso-r1"] .r1e-final {
  padding: 24px 0 92px;
  background: var(--surface);
}
html[data-page="curso-r1"] .r1e-final-card {
  position: relative;
  overflow: hidden;
  padding: 49px 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  border: 1px solid rgba(55, 191, 166, 0.28);
  border-radius: 29px;
  color: #f7fbff;
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 179, 136, 0.19), transparent 31%),
    radial-gradient(circle at 5% 90%, rgba(47, 128, 237, 0.17), transparent 35%),
    linear-gradient(120deg, #061927, #082942 58%, #07333d);
  box-shadow: 0 26px 72px rgba(5, 28, 43, 0.2);
}
html[data-page="curso-r1"] .r1e-final-card > div > span {
  color: #52dfbb;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
html[data-page="curso-r1"] .r1e-final-card h2 {
  max-width: 760px;
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
html[data-page="curso-r1"] .r1e-final-card .r1e-section-title {
  width: auto;
  margin-inline: 0;
  text-align: left;
  text-transform: none;
}
html[data-page="curso-r1"] .r1e-final-card .r1e-section-title::after {
  left: 0;
  width: 160px;
  transform: none;
}
html[data-page="curso-r1"] .r1e-final-card p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #c4d7e2;
  font-size: 14px;
  line-height: 1.65;
}
html[data-page="curso-r1"] .r1e-final-card small {
  display: block;
  margin-top: 15px;
  color: #8eabba;
  font-size: 11px;
  font-style: italic;
}
html[data-page="curso-r1"] .r1e-final-card .r1e-button { min-width: 235px; }

/* Texto editorial dos seis planos em preços-e-planos. */
html[data-page="precos-e-planos"] .pricing-plan-grid .ri-plan-closing {
  margin: 0 0 18px;
  display: grid;
  gap: 5px;
}
html[data-page="precos-e-planos"] .pricing-plan-grid .ri-plan-closing strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.45;
}
html[data-page="precos-e-planos"] .pricing-plan-grid .ri-plan-closing em {
  color: var(--muted);
  font-size: 11px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
}

@keyframes r1e-screen-float {
  0%, 100% { transform: perspective(1300px) rotateY(-9deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1300px) rotateY(-7deg) rotateX(2deg) translateY(-10px); }
}
@keyframes r1e-chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes r1e-orb-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, 20px, 0) scale(1.06); }
}

@media (max-width: 1120px) {
  html[data-page="curso-r1"] .r1e-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
    gap: 20px;
  }
  html[data-page="curso-r1"] .r1e-platform-card { right: -200px; }
  html[data-page="curso-r1"] .r1e-students { right: -120px; }
  html[data-page="curso-r1"] .r1e-area-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  html[data-page="curso-r1"] .r1e-area-card:nth-child(4),
  html[data-page="curso-r1"] .r1e-area-card:nth-child(5) { min-height: 135px; }
}

@media (max-width: 920px) {
  html[data-page="curso-r1"] .r1e-hero { padding: 136px 0 70px; }
  html[data-page="curso-r1"] .r1e-hero-grid,
  html[data-page="curso-r1"] .r1e-learning-grid,
  html[data-page="curso-r1"] .r1e-expert-grid,
  html[data-page="curso-r1"] .r1e-progress-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="curso-r1"] .r1e-hero-grid { gap: 8px; }
  html[data-page="curso-r1"] .r1e-hero-copy { max-width: 760px; }
  html[data-page="curso-r1"] .r1e-hero-visual { min-height: 560px; }
  html[data-page="curso-r1"] .r1e-platform-card { top: 72px; right: 2%; width: 86%; }
  html[data-page="curso-r1"] .r1e-students { right: 1%; bottom: -100px; width: 560px; }
  html[data-page="curso-r1"] .r1e-chip-one { top: 118px; left: 4%; }
  html[data-page="curso-r1"] .r1e-chip-two { right: 3%; bottom: 40px; }
  html[data-page="curso-r1"] .r1e-pillar-grid { grid-template-columns: 1fr; }
  html[data-page="curso-r1"] .r1e-pillar-card { min-height: 0; }
  html[data-page="curso-r1"] .r1e-learning-grid { gap: 32px; }
  html[data-page="curso-r1"] .r1e-expert-grid { gap: 33px; }
  html[data-page="curso-r1"] .r1e-progress-copy .r1e-section-title { margin-inline: auto; text-align: center; }
  html[data-page="curso-r1"] .r1e-progress-copy .r1e-section-title::after { left: 50%; transform: translateX(-50%); }
  html[data-page="curso-r1"] .r1e-progress-copy { text-align: center; }
  html[data-page="curso-r1"] .r1e-progress-points { width: max-content; max-width: 100%; margin-inline: auto; text-align: left; }
  html[data-page="curso-r1"] .r1e-dashboard { transform: none; }
  html[data-page="curso-r1"] .r1e-final-card { grid-template-columns: 1fr; }
  html[data-page="curso-r1"] .r1e-final-card .r1e-button { width: max-content; }
}

@media (max-width: 680px) {
  html[data-page="curso-r1"] .r1e-section { padding: 78px 0; }
  html[data-page="curso-r1"] .r1e-section-head { margin-bottom: 36px; }
  html[data-page="curso-r1"] .r1e-section-title { width: 100%; font-size: 23px; line-height: 1.2; }
  html[data-page="curso-r1"] .r1e-hero { min-height: 0; padding: 120px 0 55px; }
  html[data-page="curso-r1"] .r1e-hero h1 { font-size: 34px; line-height: 1.13; }
  html[data-page="curso-r1"] .r1e-hero-lead { font-size: 15px; }
  html[data-page="curso-r1"] .r1e-hero-prices { grid-template-columns: 1fr 1fr; }
  html[data-page="curso-r1"] .r1e-hero-prices > b { grid-column: 1 / -1; min-height: 42px; }
  html[data-page="curso-r1"] .r1e-hero-actions { display: grid; }
  html[data-page="curso-r1"] .r1e-button { width: 100%; }
  html[data-page="curso-r1"] .r1e-area-line { text-align: center; }
  html[data-page="curso-r1"] .r1e-hero-visual { min-height: 445px; }
  html[data-page="curso-r1"] .r1e-platform-card { top: 72px; right: -27%; width: 122%; transform: none; }
  html[data-page="curso-r1"] .r1e-platform-card > img { height: 260px; }
  html[data-page="curso-r1"] .r1e-students { right: -25%; bottom: -62px; width: 490px; }
  html[data-page="curso-r1"] .r1e-floating-chip { font-size: 9px; }
  html[data-page="curso-r1"] .r1e-chip-one { top: 105px; left: 0; }
  html[data-page="curso-r1"] .r1e-chip-two { right: 0; bottom: 25px; }
  html[data-page="curso-r1"] .r1e-pillar-card { padding: 25px 23px; }
  html[data-page="curso-r1"] .r1e-area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  html[data-page="curso-r1"] .r1e-area-card { min-height: 132px; }
  html[data-page="curso-r1"] .r1e-area-card:last-child { grid-column: 1 / -1; }
  html[data-page="curso-r1"] .r1e-content-panel { grid-template-columns: 1fr; }
  html[data-page="curso-r1"] .r1e-content-panel article:last-child { grid-column: auto; }
  html[data-page="curso-r1"] .r1e-screen-frame img { height: 285px; }
  html[data-page="curso-r1"] .r1e-screen-resources { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  html[data-page="curso-r1"] .r1e-teacher-collage { min-height: 390px; grid-template-columns: 1.1fr 0.9fr; }
  html[data-page="curso-r1"] .r1e-teacher-collage figure:nth-of-type(4),
  html[data-page="curso-r1"] .r1e-teacher-collage figure:nth-of-type(5) { display: none; }
  html[data-page="curso-r1"] .r1e-price-grid { grid-template-columns: 1fr; }
  html[data-page="curso-r1"] .r1e-price-featured { transform: none; }
  html[data-page="curso-r1"] .r1e-price-card { min-height: 0; padding: 28px 24px; }
  html[data-page="curso-r1"] .r1e-installment strong { font-size: 25px; }
  html[data-page="curso-r1"] .r1e-final { padding: 12px 0 72px; }
  html[data-page="curso-r1"] .r1e-final-card { padding: 34px 25px; gap: 27px; }
  html[data-page="curso-r1"] .r1e-final-card .r1e-button { width: 100%; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html[data-page="curso-r1"] .r1e-platform-card,
  html[data-page="curso-r1"] .r1e-floating-chip,
  html[data-page="curso-r1"] .r1e-orb {
    animation: none !important;
  }
}

/* ============================================================
   R1 Essencial — refinamento premium e interações
   ============================================================ */
html[data-page="curso-r1"] .r1e-hero h1 {
  font-weight: 400;
}
html[data-page="curso-r1"] .r1e-hero-prices {
  max-width: 715px;
  gap: 11px;
}
html[data-page="curso-r1"] .r1e-hero-prices > div {
  min-height: 78px;
  padding: 14px 17px;
  border-color: rgba(191, 229, 244, 0.27);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 14px 30px rgba(0, 0, 0, 0.12);
}
html[data-page="curso-r1"] .r1e-hero-prices span {
  color: #8bdaf6;
  font-size: 12px;
  letter-spacing: 0.12em;
}
html[data-page="curso-r1"] .r1e-hero-prices strong {
  margin-top: 6px;
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 850;
}
html[data-page="curso-r1"] .r1e-hero-prices > b {
  position: relative;
  min-width: 142px;
  min-height: 78px;
  padding: 13px 18px;
  overflow: hidden;
  border-color: rgba(96, 235, 192, 0.48);
  color: #072d31;
  background: linear-gradient(135deg, #73e9c6 0%, #b7f06c 100%);
  box-shadow: 0 15px 38px rgba(55, 216, 164, 0.27);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  animation: r1e-discount-pulse 3.4s ease-in-out infinite;
}
html[data-page="curso-r1"] .r1e-hero-prices > b::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  width: 35%;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-18deg);
  animation: r1e-shine 4.8s ease-in-out infinite;
}
html[data-page="curso-r1"] .r1e-button {
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.015em;
}
html[data-page="curso-r1"] .r1e-button-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 17px 38px rgba(0, 151, 178, 0.3);
}
html[data-page="curso-r1"] .r1e-button-primary:hover {
  box-shadow: 0 21px 46px rgba(0, 179, 136, 0.36);
}
html[data-page="curso-r1"] .r1e-chip-one {
  top: 102px;
  left: -8px;
  min-height: 48px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-color: rgba(105, 231, 196, 0.62);
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(120deg, rgba(17, 128, 177, 0.94), rgba(0, 168, 132, 0.94));
  box-shadow: 0 18px 42px rgba(0, 179, 136, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
html[data-page="curso-r1"] .r1e-chip-one svg {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.2);
  stroke: #dfffee;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

/* Pilares mais expressivos */
html[data-page="curso-r1"] .r1e-pillar-card {
  min-height: 0;
  padding: 32px 30px 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(47, 128, 237, 0.1), transparent 34%),
    linear-gradient(160deg, var(--surface) 0%, var(--surface-soft) 100%);
  box-shadow: 0 18px 50px rgba(8, 41, 66, 0.09);
  isolation: isolate;
}
html[data-page="curso-r1"] .r1e-pillar-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px auto 22px 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(var(--blue), var(--green));
  transform: scaleY(0.38);
  transform-origin: center;
  transition: transform 0.35s ease;
}
html[data-page="curso-r1"] .r1e-pillar-card::after {
  inset: auto 0 0;
  width: 100%;
  height: 4px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--blue), var(--green), #74d85c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
html[data-page="curso-r1"] .r1e-pillar-card:hover {
  border-color: color-mix(in srgb, var(--green) 48%, var(--border));
  box-shadow: 0 30px 70px rgba(8, 41, 66, 0.15);
  transform: translateY(-9px);
}
html[data-page="curso-r1"] .r1e-pillar-card:hover::before { transform: scaleY(1); }
html[data-page="curso-r1"] .r1e-pillar-card:hover::after { transform: scaleX(1); }
html[data-page="curso-r1"] .r1e-pillar-card .r1e-icon {
  position: relative;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 21px;
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.15), inset 0 0 0 6px rgba(255, 255, 255, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
html[data-page="curso-r1"] .r1e-pillar-card .r1e-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}
html[data-page="curso-r1"] .r1e-pillar-card:hover .r1e-icon {
  box-shadow: 0 20px 42px rgba(0, 179, 136, 0.23), inset 0 0 0 6px rgba(255, 255, 255, 0.22);
  transform: translateY(-3px) rotate(-3deg) scale(1.05);
}
html[data-page="curso-r1"] .r1e-pillar-card .r1e-icon svg { width: 31px; height: 31px; stroke-width: 1.8; }
html[data-page="curso-r1"] .r1e-pillar-card > small {
  top: 34px;
  right: 30px;
  padding: 7px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
}
html[data-page="curso-r1"] .r1e-pillar-card h3 { margin: 20px 0 18px; }

/* Cinco áreas: seleção direta com painel de conteúdo permanente */
html[data-page="curso-r1"] .r1e-areas {
  color: #f7fbff;
  background:
    radial-gradient(circle at 92% 7%, rgba(0, 179, 136, 0.24), transparent 28%),
    radial-gradient(circle at 4% 85%, rgba(47, 128, 237, 0.22), transparent 32%),
    linear-gradient(125deg, #061927, #082942 56%, #07333d);
}
html[data-page="curso-r1"] .r1e-areas .r1e-section-title { color: #fff; }
html[data-page="curso-r1"] .r1e-areas .r1e-section-head > p { color: #bfd1dc; }
html[data-page="curso-r1"] .r1e-area-experience {
  padding: 18px;
  border: 1px solid rgba(199, 229, 242, 0.14);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}
html[data-page="curso-r1"] .r1e-area-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
html[data-page="curso-r1"] .r1e-area-card {
  appearance: none;
  position: relative;
  min-height: 184px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(209, 235, 247, 0.14);
  border-radius: 22px;
  color: #d9eaf3;
  background:
    radial-gradient(circle at 100% 0, rgba(56, 198, 181, 0.11), transparent 42%),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 0.32s ease, border-color 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
}
html[data-page="curso-r1"] .r1e-area-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green), #74d85c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
html[data-page="curso-r1"] .r1e-area-card:hover,
html[data-page="curso-r1"] .r1e-area-card:focus-visible,
html[data-page="curso-r1"] .r1e-area-card.is-active {
  border-color: rgba(95, 224, 192, 0.56);
  color: #fff;
  background: linear-gradient(150deg, rgba(47, 128, 237, 0.24), rgba(0, 179, 136, 0.18));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-7px);
}
html[data-page="curso-r1"] .r1e-area-card:hover::after,
html[data-page="curso-r1"] .r1e-area-card.is-active::after { transform: scaleX(1); }
html[data-page="curso-r1"] .r1e-area-icon {
  width: 58px !important;
  height: 58px !important;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(169, 235, 220, 0.26);
  border-radius: 18px !important;
  color: #69e4c0 !important;
  background: linear-gradient(145deg, rgba(47, 128, 237, 0.26), rgba(0, 179, 136, 0.23)) !important;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.035), 0 12px 28px rgba(0, 0, 0, 0.14);
  transition: transform 0.35s ease, color 0.35s ease;
}
html[data-page="curso-r1"] .r1e-area-card:hover .r1e-area-icon,
html[data-page="curso-r1"] .r1e-area-card.is-active .r1e-area-icon {
  color: #fff !important;
  transform: rotate(-4deg) scale(1.07);
}
html[data-page="curso-r1"] .r1e-area-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="curso-r1"] .r1e-area-card small {
  position: absolute;
  top: 20px;
  right: 17px;
  color: rgba(206, 230, 240, 0.5);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
html[data-page="curso-r1"] .r1e-area-card h3 {
  margin: 13px 0 0;
  color: inherit;
  font-size: 17px;
  line-height: 1.16;
}
html[data-page="curso-r1"] .r1e-area-card > i {
  position: absolute;
  right: 18px;
  bottom: 15px;
  color: #61dfbb;
  font-size: 18px;
  font-style: normal;
  opacity: 0;
  transform: translateX(-7px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
html[data-page="curso-r1"] .r1e-area-card:hover > i,
html[data-page="curso-r1"] .r1e-area-card.is-active > i { opacity: 1; transform: none; }
html[data-page="curso-r1"] .r1e-area-panels {
  position: relative;
  min-height: 178px;
  margin-top: 14px;
}
html[data-page="curso-r1"] .r1e-area-panel {
  position: relative;
  min-height: 178px;
  padding: 29px 32px;
  display: grid;
  grid-template-columns: minmax(235px, 0.64fr) minmax(0, 1.36fr);
  gap: 38px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(107, 229, 197, 0.22);
  border-radius: 23px;
  background:
    radial-gradient(circle at 92% 12%, rgba(99, 220, 185, 0.16), transparent 32%),
    linear-gradient(120deg, rgba(10, 55, 75, 0.92), rgba(8, 43, 61, 0.95));
  animation: r1e-panel-in 0.4s ease both;
}
html[data-page="curso-r1"] .r1e-area-panel[hidden] { display: none; }
html[data-page="curso-r1"] .r1e-area-panel > div > span {
  color: #59ddb8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
html[data-page="curso-r1"] .r1e-area-panel h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 28px;
  letter-spacing: -0.035em;
}
html[data-page="curso-r1"] .r1e-area-panel > div > p {
  margin: 9px 0 0;
  color: #aac4d1;
  font-size: 12px;
  line-height: 1.6;
}
html[data-page="curso-r1"] .r1e-topic-list {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid rgba(214, 238, 248, 0.12);
  border-radius: 18px;
  color: #d8e8f0;
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.9;
}
html[data-page="curso-r1"] .r1e-topic-list i { margin: 0 5px; color: #54dcb6; font-style: normal; }

/* Jornada de aprendizagem */
html[data-page="curso-r1"] .r1e-flow { gap: 11px; }
html[data-page="curso-r1"] .r1e-flow::before {
  top: 38px;
  bottom: 38px;
  left: 34px;
  width: 3px;
  opacity: 0.72;
}
html[data-page="curso-r1"] .r1e-flow article {
  min-height: 76px;
  padding: 11px 18px 11px 86px;
  border-radius: 19px;
  cursor: pointer;
  outline: none;
}
html[data-page="curso-r1"] .r1e-flow article::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 86px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}
html[data-page="curso-r1"] .r1e-flow article:hover,
html[data-page="curso-r1"] .r1e-flow article:focus-visible,
html[data-page="curso-r1"] .r1e-flow article.is-active {
  border-color: rgba(98, 224, 192, 0.38);
  background: linear-gradient(100deg, rgba(47, 128, 237, 0.16), rgba(0, 179, 136, 0.12));
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.15);
  transform: translateX(8px);
}
html[data-page="curso-r1"] .r1e-flow article:hover::after,
html[data-page="curso-r1"] .r1e-flow article.is-active::after { transform: scaleX(1); }
html[data-page="curso-r1"] .r1e-flow b {
  left: 12px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(126, 226, 204, 0.38);
  border-radius: 15px;
  color: #6ce2c0;
  background: rgba(6, 37, 53, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), inset 0 0 0 4px rgba(255, 255, 255, 0.035);
  font-size: 17px;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
html[data-page="curso-r1"] .r1e-flow article:hover b,
html[data-page="curso-r1"] .r1e-flow article.is-active b {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  transform: rotate(-3deg) scale(1.07);
}
html[data-page="curso-r1"] .r1e-flow article > span {
  display: grid;
  gap: 3px;
  color: #fff;
  font-size: 17px;
  font-weight: 820;
}
html[data-page="curso-r1"] .r1e-flow article > span small {
  color: #72d9be;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

/* Professores: seis por tela, todos com o mesmo tamanho */
html[data-page="curso-r1"] .r1e-expert-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 42px;
}
html[data-page="curso-r1"] .r1e-teacher-carousel {
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 27px;
  background: linear-gradient(160deg, var(--surface), var(--surface-soft));
  box-shadow: 0 22px 60px rgba(8, 41, 66, 0.12);
}
html[data-page="curso-r1"] .r1e-teacher-toolbar {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
html[data-page="curso-r1"] .r1e-teacher-toolbar > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
}
html[data-page="curso-r1"] .r1e-teacher-toolbar > span i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--green) 12%, transparent);
}
html[data-page="curso-r1"] .r1e-teacher-toolbar > div { display: flex; gap: 7px; }
html[data-page="curso-r1"] .r1e-teacher-toolbar button {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  font-size: 17px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
html[data-page="curso-r1"] .r1e-teacher-toolbar button:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  transform: translateY(-2px);
}
html[data-page="curso-r1"] .r1e-teacher-viewport { overflow: hidden; border-radius: 19px; }
html[data-page="curso-r1"] .r1e-teacher-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
html[data-page="curso-r1"] .r1e-teacher-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
html[data-page="curso-r1"] .r1e-teacher-slide figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--surface-soft);
}
html[data-page="curso-r1"] .r1e-teacher-slide figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(5, 32, 47, 0.32));
  pointer-events: none;
}
html[data-page="curso-r1"] .r1e-teacher-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: filter 0.45s ease, transform 0.45s ease;
}
html[data-page="curso-r1"] .r1e-teacher-slide figure:hover img { filter: saturate(1.08); transform: scale(1.055); }
html[data-page="curso-r1"] .r1e-teacher-dots {
  min-height: 20px;
  margin-top: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
html[data-page="curso-r1"] .r1e-teacher-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 38%, transparent);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}
html[data-page="curso-r1"] .r1e-teacher-dots button.is-active { width: 27px; background: linear-gradient(90deg, var(--blue), var(--green)); }
html[data-page="curso-r1"] .r1e-expert-copy blockquote { font-weight: 400; }

/* Dashboard real */
html[data-page="curso-r1"] .r1e-dashboard {
  border-color: color-mix(in srgb, var(--green) 22%, var(--border));
  box-shadow: 0 30px 84px rgba(8, 41, 66, 0.18);
}
html[data-page="curso-r1"] .r1e-dashboard img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
}

/* Planos com a mesma linguagem da página Planos e Preços */
html[data-page="curso-r1"] .r1e-price-grid { max-width: 1010px; gap: 26px; }
html[data-page="curso-r1"] .r1e-price-card {
  min-height: 548px;
  padding: 38px;
  overflow: hidden;
  border-radius: 29px;
  background:
    radial-gradient(circle at 100% 0, rgba(47, 128, 237, 0.1), transparent 31%),
    linear-gradient(180deg, var(--surface), var(--surface-soft));
  box-shadow: 0 22px 64px rgba(8, 41, 66, 0.11);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
html[data-page="curso-r1"] .r1e-price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--green), #72d85b);
}
html[data-page="curso-r1"] .r1e-price-card::after {
  content: "";
  position: absolute;
  top: -105px;
  right: -105px;
  width: 230px;
  height: 230px;
  border: 1px solid color-mix(in srgb, var(--green) 24%, transparent);
  border-radius: 50%;
  pointer-events: none;
}
html[data-page="curso-r1"] .r1e-price-card:hover {
  border-color: color-mix(in srgb, var(--green) 52%, var(--border));
  box-shadow: 0 32px 78px rgba(8, 41, 66, 0.16);
  transform: translateY(-8px);
}
html[data-page="curso-r1"] .r1e-price-featured {
  border: 2px solid color-mix(in srgb, var(--green) 68%, var(--blue));
  box-shadow: 0 31px 80px rgba(0, 156, 143, 0.18);
  transform: translateY(-11px);
}
html[data-page="curso-r1"] .r1e-price-featured:hover { transform: translateY(-16px); }
html[data-page="curso-r1"] .r1e-price-kicker { font-size: 11px; }
html[data-page="curso-r1"] .r1e-price-card h3 { margin-top: 18px; font-size: 43px; }
html[data-page="curso-r1"] .r1e-installment { margin-top: 27px; }
html[data-page="curso-r1"] .r1e-installment strong { font-size: 30px; }
html[data-page="curso-r1"] .r1e-cash {
  margin-top: 19px;
  padding: 9px 13px;
  border-color: color-mix(in srgb, var(--green) 48%, var(--border));
  color: color-mix(in srgb, var(--green) 70%, var(--ink));
  background: color-mix(in srgb, var(--green) 13%, transparent);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--green) 13%, transparent);
  font-size: 12px;
}
html[data-page="curso-r1"] .r1e-price-card li { font-size: 14px; }

@keyframes r1e-discount-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 15px 38px rgba(55, 216, 164, 0.27); }
  50% { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(55, 216, 164, 0.4); }
}
@keyframes r1e-shine {
  0%, 62%, 100% { left: -45%; }
  78% { left: 125%; }
}
@keyframes r1e-panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  html[data-page="curso-r1"] .r1e-area-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  html[data-page="curso-r1"] .r1e-area-card:nth-child(4),
  html[data-page="curso-r1"] .r1e-area-card:nth-child(5) { min-height: 170px; }
  html[data-page="curso-r1"] .r1e-area-card:last-child { grid-column: auto; }
}
@media (max-width: 920px) {
  html[data-page="curso-r1"] .r1e-expert-grid { grid-template-columns: 1fr; }
  html[data-page="curso-r1"] .r1e-teacher-carousel { max-width: 760px; margin-inline: auto; }
}
@media (max-width: 680px) {
  html[data-page="curso-r1"] .r1e-hero-prices > div,
  html[data-page="curso-r1"] .r1e-hero-prices > b { min-height: 72px; }
  html[data-page="curso-r1"] .r1e-hero-prices span { font-size: 10px; }
  html[data-page="curso-r1"] .r1e-hero-prices strong { font-size: 15px; }
  html[data-page="curso-r1"] .r1e-hero-prices > b { font-size: 13px; }
  html[data-page="curso-r1"] .r1e-chip-one { top: 99px; min-height: 43px; padding: 10px 13px; font-size: 11px; }
  html[data-page="curso-r1"] .r1e-area-experience { padding: 12px; border-radius: 25px; }
  html[data-page="curso-r1"] .r1e-area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  html[data-page="curso-r1"] .r1e-area-card,
  html[data-page="curso-r1"] .r1e-area-card:nth-child(4),
  html[data-page="curso-r1"] .r1e-area-card:nth-child(5) { min-height: 158px; padding: 17px 15px; }
  html[data-page="curso-r1"] .r1e-area-card:last-child { grid-column: 1 / -1; }
  html[data-page="curso-r1"] .r1e-area-icon { width: 50px !important; height: 50px !important; }
  html[data-page="curso-r1"] .r1e-area-icon svg { width: 26px; height: 26px; }
  html[data-page="curso-r1"] .r1e-area-card h3 { font-size: 15px; }
  html[data-page="curso-r1"] .r1e-area-panel { min-height: 0; padding: 24px 21px; grid-template-columns: 1fr; gap: 19px; }
  html[data-page="curso-r1"] .r1e-area-panels { min-height: 0; }
  html[data-page="curso-r1"] .r1e-topic-list { padding: 18px; font-size: 12px; }
  html[data-page="curso-r1"] .r1e-flow article { min-height: 72px; padding-left: 81px; }
  html[data-page="curso-r1"] .r1e-teacher-carousel { padding: 13px; }
  html[data-page="curso-r1"] .r1e-teacher-slide { gap: 7px; }
  html[data-page="curso-r1"] .r1e-teacher-slide figure { border-radius: 13px; }
  html[data-page="curso-r1"] .r1e-teacher-toolbar > span { font-size: 10px; }
  html[data-page="curso-r1"] .r1e-price-card { min-height: 0; padding: 30px 24px; }
  html[data-page="curso-r1"] .r1e-price-featured,
  html[data-page="curso-r1"] .r1e-price-featured:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html[data-page="curso-r1"] .r1e-hero-prices > b,
  html[data-page="curso-r1"] .r1e-hero-prices > b::after,
  html[data-page="curso-r1"] .r1e-area-panel { animation: none !important; }
  html[data-page="curso-r1"] .r1e-teacher-track { transition: none; }
}

/* ============================================================
   Ciclo Básico + Extensão — página editorial agosto/2026
   Segue a linguagem premium aprovada na página R1.
   ============================================================ */
html[data-page="ciclo-basico"] .cbx-main {
  overflow: clip;
  background: var(--surface);
}
html[data-page="ciclo-basico"] .cbx-main * { box-sizing: border-box; }
html[data-page="ciclo-basico"] .cbx-section {
  position: relative;
  padding: 108px 0;
}
html[data-page="ciclo-basico"] .cbx-section-head {
  max-width: 980px;
  margin: 0 auto 52px;
  text-align: center;
}
html[data-page="ciclo-basico"] .cbx-section-title {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 17px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.035em;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}
html[data-page="ciclo-basico"] .cbx-section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(120px, 38%, 205px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: translateX(-50%);
}
html[data-page="ciclo-basico"] .cbx-section-head > p {
  max-width: 860px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.72;
}

/* Hero */
html[data-page="ciclo-basico"] .cbx-hero {
  position: relative;
  min-height: 785px;
  padding: 160px 0 96px;
  overflow: hidden;
  color: #f7fbff;
  background:
    linear-gradient(90deg, rgba(4, 24, 40, 0.98) 0%, rgba(5, 31, 50, 0.94) 39%, rgba(5, 34, 52, 0.43) 69%, rgba(4, 24, 40, 0.18) 100%),
    url("../images/banner-ciclo-basico.webp") center / cover no-repeat;
}
html[data-page="ciclo-basico"] .cbx-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--green), transparent);
}
html[data-page="ciclo-basico"] .cbx-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 530px;
  display: flex;
  align-items: center;
}
html[data-page="ciclo-basico"] .cbx-hero-copy {
  position: relative;
  z-index: 3;
  width: min(710px, 62%);
}
html[data-page="ciclo-basico"] .cbx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 23px;
  color: #62e3bf;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
html[data-page="ciclo-basico"] .cbx-eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="ciclo-basico"] .cbx-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 3.35vw, 42px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
html[data-page="ciclo-basico"] .cbx-hero-lead {
  max-width: 690px;
  margin: 25px 0 0;
  color: #c8dbe7;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.66;
}
html[data-page="ciclo-basico"] .cbx-hero-prices {
  max-width: 715px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 11px;
  align-items: stretch;
}
html[data-page="ciclo-basico"] .cbx-hero-prices > div,
html[data-page="ciclo-basico"] .cbx-hero-prices > b {
  min-height: 78px;
  padding: 14px 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(191, 229, 244, 0.27);
  border-radius: 15px;
  backdrop-filter: blur(14px);
}
html[data-page="ciclo-basico"] .cbx-hero-prices > div {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 14px 30px rgba(0, 0, 0, 0.12);
}
html[data-page="ciclo-basico"] .cbx-hero-prices span {
  color: #8bdaf6;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
html[data-page="ciclo-basico"] .cbx-hero-prices strong {
  margin-top: 6px;
  color: #fff;
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 850;
  line-height: 1.25;
}
html[data-page="ciclo-basico"] .cbx-hero-prices > b {
  position: relative;
  min-width: 142px;
  overflow: hidden;
  border-color: rgba(96, 235, 192, 0.48);
  color: #072d31;
  background: linear-gradient(135deg, #73e9c6 0%, #b7f06c 100%);
  box-shadow: 0 15px 38px rgba(55, 216, 164, 0.27);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
  animation: cbx-discount-pulse 3.4s ease-in-out infinite;
}
html[data-page="ciclo-basico"] .cbx-hero-prices > b::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  width: 35%;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-18deg);
  animation: cbx-shine 4.8s ease-in-out infinite;
}
html[data-page="ciclo-basico"] .cbx-hero-actions {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
html[data-page="ciclo-basico"] .cbx-button {
  min-height: 58px;
  padding-inline: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.015em;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
html[data-page="ciclo-basico"] .cbx-button > span {
  font-size: 18px;
  transition: transform 0.25s ease;
}
html[data-page="ciclo-basico"] .cbx-button:hover { transform: translateY(-3px); }
html[data-page="ciclo-basico"] .cbx-button:hover > span { transform: translateX(4px); }
html[data-page="ciclo-basico"] .cbx-button-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 17px 38px rgba(0, 151, 178, 0.3);
}
html[data-page="ciclo-basico"] .cbx-button-primary:hover { box-shadow: 0 21px 46px rgba(0, 179, 136, 0.36); }
html[data-page="ciclo-basico"] .cbx-button-secondary {
  color: #eaf7ff;
  border-color: rgba(221, 242, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}
html[data-page="ciclo-basico"] .cbx-hero-facts {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
html[data-page="ciclo-basico"] .cbx-hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #a9c2d0;
  font-size: 11px;
  font-weight: 750;
}
html[data-page="ciclo-basico"] .cbx-hero-facts i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 9px;
  font-style: normal;
}
html[data-page="ciclo-basico"] .cbx-hero-chips {
  position: absolute;
  inset: 0 0 0 60%;
}
html[data-page="ciclo-basico"] .cbx-hero-chip {
  position: absolute;
  padding: 12px 17px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  color: #fff;
  background: rgba(5, 32, 48, 0.79);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(13px);
  font-size: 12px;
  font-weight: 900;
  animation: cbx-chip-float 5s ease-in-out infinite;
}
html[data-page="ciclo-basico"] .cbx-hero-chip svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #6fe2c1;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="ciclo-basico"] .cbx-chip-one { top: 70px; left: 8%; }
html[data-page="ciclo-basico"] .cbx-chip-two {
  right: 1%;
  bottom: 58px;
  border-color: rgba(102, 227, 193, 0.52);
  background: linear-gradient(120deg, rgba(17, 128, 177, 0.92), rgba(0, 168, 132, 0.92));
  animation-delay: -2.1s;
}
html[data-page="ciclo-basico"] .cbx-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: cbx-orb-drift 10s ease-in-out infinite;
}
html[data-page="ciclo-basico"] .cbx-orb-one {
  top: -140px;
  left: 38%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(47, 128, 237, 0.21);
}
html[data-page="ciclo-basico"] .cbx-orb-two {
  bottom: -90px;
  left: 8%;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(0, 179, 136, 0.18), transparent 68%);
  animation-direction: reverse;
}

/* Três pilares */
html[data-page="ciclo-basico"] .cbx-foundation {
  background: radial-gradient(circle at 8% 22%, rgba(47, 128, 237, 0.08), transparent 25%), var(--surface);
}
html[data-page="ciclo-basico"] .cbx-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 21px;
}
html[data-page="ciclo-basico"] .cbx-pillar-card {
  position: relative;
  padding: 32px 30px 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: radial-gradient(circle at 100% 0, rgba(47, 128, 237, 0.1), transparent 34%), linear-gradient(160deg, var(--surface), var(--surface-soft));
  box-shadow: 0 18px 50px rgba(8, 41, 66, 0.09);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
html[data-page="ciclo-basico"] .cbx-pillar-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px auto 22px 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(var(--blue), var(--green));
  transform: scaleY(0.38);
  transition: transform 0.35s ease;
}
html[data-page="ciclo-basico"] .cbx-pillar-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green), #74d85c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
html[data-page="ciclo-basico"] .cbx-pillar-card:hover {
  border-color: color-mix(in srgb, var(--green) 48%, var(--border));
  box-shadow: 0 30px 70px rgba(8, 41, 66, 0.15);
  transform: translateY(-9px);
}
html[data-page="ciclo-basico"] .cbx-pillar-card:hover::before { transform: scaleY(1); }
html[data-page="ciclo-basico"] .cbx-pillar-card:hover::after { transform: scaleX(1); }
html[data-page="ciclo-basico"] .cbx-pillar-icon {
  position: relative;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 21px;
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.15), inset 0 0 0 6px rgba(255, 255, 255, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
html[data-page="ciclo-basico"] .cbx-pillar-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}
html[data-page="ciclo-basico"] .cbx-pillar-card:hover .cbx-pillar-icon { transform: translateY(-3px) rotate(-3deg) scale(1.05); }
html[data-page="ciclo-basico"] .cbx-pillar-icon svg,
html[data-page="ciclo-basico"] .cbx-mini-icon svg,
html[data-page="ciclo-basico"] .cbx-extension-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="ciclo-basico"] .cbx-icon-blue { color: #2f80ed; background: rgba(47, 128, 237, 0.12); }
html[data-page="ciclo-basico"] .cbx-icon-green { color: #00a47d; background: rgba(0, 179, 136, 0.12); }
html[data-page="ciclo-basico"] .cbx-icon-orange { color: #ea7c22; background: rgba(234, 124, 34, 0.12); }
html[data-page="ciclo-basico"] .cbx-pillar-card > small {
  position: absolute;
  top: 34px;
  right: 30px;
  padding: 7px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
html[data-page="ciclo-basico"] .cbx-pillar-card h3 {
  margin: 20px 0 18px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
html[data-page="ciclo-basico"] .cbx-pillar-card ul,
html[data-page="ciclo-basico"] .cbx-price-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}
html[data-page="ciclo-basico"] .cbx-pillar-card li,
html[data-page="ciclo-basico"] .cbx-price-card li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
html[data-page="ciclo-basico"] .cbx-pillar-card li::before,
html[data-page="ciclo-basico"] .cbx-price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 950;
}

/* Recursos integrados */
html[data-page="ciclo-basico"] .cbx-resources {
  color: #f7fbff;
  background: radial-gradient(circle at 8% 80%, rgba(47, 128, 237, 0.19), transparent 31%), radial-gradient(circle at 92% 12%, rgba(0, 179, 136, 0.17), transparent 29%), linear-gradient(125deg, #061927, #082942 55%, #07313a);
}
html[data-page="ciclo-basico"] .cbx-resources .cbx-section-title { color: #fff; }
html[data-page="ciclo-basico"] .cbx-resources .cbx-section-head > p { color: #bfd1dc; }
html[data-page="ciclo-basico"] .cbx-resource-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}
html[data-page="ciclo-basico"] .cbx-resource-flow button {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: 86px;
  padding: 20px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(190, 227, 241, 0.2);
  border-radius: 22px;
  color: #e1edf3;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 28px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
html[data-page="ciclo-basico"] .cbx-resource-flow button::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -65% -45%;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.38) 49%, transparent 60%);
  opacity: 0;
  transform: translateX(-55%) rotate(9deg);
  transition: opacity 0.3s ease, transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-page="ciclo-basico"] .cbx-resource-flow button::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -54px;
  left: 50%;
  width: 128px;
  height: 108px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(113, 246, 212, 0.72) 0%, rgba(47, 128, 237, 0.25) 42%, transparent 72%);
  filter: blur(9px);
  opacity: 0;
  transform: translateX(-50%) scale(0.55);
  transition: opacity 0.4s ease, transform 0.45s ease;
}
html[data-page="ciclo-basico"] .cbx-resource-flow button:hover,
html[data-page="ciclo-basico"] .cbx-resource-flow button:focus-visible {
  border-color: rgba(119, 239, 209, 0.62);
  color: #fff;
  background: linear-gradient(145deg, rgba(47, 128, 237, 0.28), rgba(0, 179, 136, 0.22));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 18px 38px rgba(0, 0, 0, 0.23), 0 0 22px rgba(74, 224, 189, 0.14);
  transform: translateY(-6px) scale(1.015);
}
html[data-page="ciclo-basico"] .cbx-resource-flow button:hover::before,
html[data-page="ciclo-basico"] .cbx-resource-flow button:focus-visible::before {
  opacity: 0.75;
  transform: translateX(55%) rotate(9deg);
}
html[data-page="ciclo-basico"] .cbx-resource-flow button.is-active {
  border-color: rgba(159, 255, 231, 0.88);
  color: #fff;
  background: linear-gradient(135deg, rgba(47, 128, 237, 0.78), rgba(0, 179, 136, 0.8));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), inset 0 0 28px rgba(119, 245, 214, 0.17), 0 21px 46px rgba(0, 0, 0, 0.29), 0 0 0 1px rgba(118, 245, 213, 0.2), 0 0 34px rgba(67, 225, 188, 0.38);
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.32);
  transform: translateY(-7px) scale(1.025);
  animation: cbx-resource-active-glow 2.5s ease-in-out infinite;
}
html[data-page="ciclo-basico"] .cbx-resource-flow button.is-active::before {
  opacity: 0.82;
  animation: cbx-resource-button-shine 3.2s ease-in-out infinite;
}
html[data-page="ciclo-basico"] .cbx-resource-flow button.is-active::after {
  opacity: 0.85;
  transform: translateX(-50%) scale(1);
}
html[data-page="ciclo-basico"] .cbx-resource-flow button > span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: inherit;
  font-weight: 600;
  line-height: 1.3;
}
html[data-page="ciclo-basico"] .cbx-resource-flow button > span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #70e8c8;
  box-shadow: 0 0 0 4px rgba(112, 232, 200, 0.1), 0 0 13px rgba(112, 232, 200, 0.42);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
html[data-page="ciclo-basico"] .cbx-resource-flow button.is-active > span::before {
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16), 0 0 20px rgba(255, 255, 255, 0.9);
  transform: scale(1.12);
}
html[data-page="ciclo-basico"] .cbx-resource-flow small {
  color: #8cf0d5;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 0;
}
html[data-page="ciclo-basico"] .cbx-resource-flow button.is-active small {
  color: #fff;
}
html[data-page="ciclo-basico"] .cbx-resource-stage {
  max-width: 1120px;
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid rgba(206, 235, 247, 0.21);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.31);
  transform: perspective(1600px) rotateX(1.4deg);
  transition: transform 0.4s ease;
}
html[data-page="ciclo-basico"] .cbx-resource-stage:hover { transform: perspective(1600px) rotateX(0) translateY(-5px); }
html[data-page="ciclo-basico"] .cbx-screen-toolbar {
  min-height: 42px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #557080;
  background: #edf4f7;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
html[data-page="ciclo-basico"] .cbx-screen-toolbar > div { display: flex; gap: 6px; }
html[data-page="ciclo-basico"] .cbx-screen-toolbar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f80ed;
}
html[data-page="ciclo-basico"] .cbx-screen-toolbar i:nth-child(2) { background: #00b388; }
html[data-page="ciclo-basico"] .cbx-screen-toolbar i:nth-child(3) { background: #68d55e; }
html[data-page="ciclo-basico"] .cbx-screen-toolbar > span { margin-right: auto; }
html[data-page="ciclo-basico"] .cbx-screen-toolbar > b { color: #00a47d; }
html[data-page="ciclo-basico"] .cbx-resource-image-wrap {
  position: relative;
  height: 545px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f3f7f9;
}
html[data-page="ciclo-basico"] .cbx-resource-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(7, 40, 61, 0.05);
}
html[data-page="ciclo-basico"] .cbx-resource-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left top;
  transition: opacity 0.2s ease, transform 0.45s ease;
}
html[data-page="ciclo-basico"] .cbx-resource-image-wrap img.is-changing { opacity: 0; transform: scale(0.985); }
html[data-page="ciclo-basico"] .cbx-resource-note {
  max-width: 920px;
  margin: 22px auto 0;
  color: #d8eaf2;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 780;
  line-height: 1.6;
  text-align: center;
}

/* Professores */
html[data-page="ciclo-basico"] .cbx-experts { background: var(--surface); }
html[data-page="ciclo-basico"] .cbx-expert-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 42px;
  align-items: center;
}
html[data-page="ciclo-basico"] .cbx-teacher-carousel {
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 27px;
  background: linear-gradient(160deg, var(--surface), var(--surface-soft));
  box-shadow: 0 22px 60px rgba(8, 41, 66, 0.12);
}
html[data-page="ciclo-basico"] .cbx-teacher-toolbar {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
html[data-page="ciclo-basico"] .cbx-teacher-toolbar > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
}
html[data-page="ciclo-basico"] .cbx-teacher-toolbar > span i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--green) 12%, transparent);
}
html[data-page="ciclo-basico"] .cbx-teacher-toolbar > div { display: flex; gap: 7px; }
html[data-page="ciclo-basico"] .cbx-teacher-toolbar button {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  font-size: 17px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
html[data-page="ciclo-basico"] .cbx-teacher-toolbar button:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  transform: translateY(-2px);
}
html[data-page="ciclo-basico"] .cbx-teacher-viewport { overflow: hidden; border-radius: 19px; }
html[data-page="ciclo-basico"] .cbx-teacher-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
html[data-page="ciclo-basico"] .cbx-teacher-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
html[data-page="ciclo-basico"] .cbx-teacher-slide figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--surface-soft);
}
html[data-page="ciclo-basico"] .cbx-teacher-slide figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(5, 32, 47, 0.32));
}
html[data-page="ciclo-basico"] .cbx-teacher-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: filter 0.45s ease, transform 0.45s ease;
}
html[data-page="ciclo-basico"] .cbx-teacher-slide figure:hover img { filter: saturate(1.08); transform: scale(1.055); }
html[data-page="ciclo-basico"] .cbx-teacher-dots {
  min-height: 20px;
  margin-top: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
html[data-page="ciclo-basico"] .cbx-teacher-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 38%, transparent);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}
html[data-page="ciclo-basico"] .cbx-teacher-dots button.is-active { width: 27px; background: linear-gradient(90deg, var(--blue), var(--green)); }
html[data-page="ciclo-basico"] .cbx-expert-copy { display: grid; gap: 15px; }
html[data-page="ciclo-basico"] .cbx-expert-copy article {
  padding: 19px;
  display: flex;
  gap: 17px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: var(--surface-soft);
}
html[data-page="ciclo-basico"] .cbx-mini-icon {
  flex: 0 0 49px;
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #2f80ed;
  background: rgba(47, 128, 237, 0.12);
}
html[data-page="ciclo-basico"] .cbx-mini-icon svg { width: 23px; height: 23px; }
html[data-page="ciclo-basico"] .cbx-mini-green { color: #00a47d; background: rgba(0, 179, 136, 0.12); }
html[data-page="ciclo-basico"] .cbx-expert-copy h3 { margin: 1px 0 0; color: var(--ink); font-size: 18px; }
html[data-page="ciclo-basico"] .cbx-expert-copy p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.62; }
html[data-page="ciclo-basico"] .cbx-expert-copy blockquote {
  margin: 4px 0 0;
  padding: 23px 25px;
  border-left: 4px solid var(--green);
  border-radius: 0 18px 18px 0;
  color: #fff;
  background: linear-gradient(120deg, #082942, #0a3942);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

/* Cursos de extensão */
html[data-page="ciclo-basico"] .cbx-extensions {
  background: radial-gradient(circle at 91% 12%, rgba(0, 179, 136, 0.09), transparent 27%), var(--surface-soft);
}
html[data-page="ciclo-basico"] .cbx-extension-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
html[data-page="ciclo-basico"] .cbx-extension-card {
  position: relative;
  grid-column: span 2;
  padding: 28px 25px 25px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: radial-gradient(circle at 100% 0, rgba(47, 128, 237, 0.1), transparent 38%), linear-gradient(160deg, var(--surface), var(--surface-soft));
  box-shadow: 0 16px 44px rgba(8, 41, 66, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
html[data-page="ciclo-basico"] .cbx-extension-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green), #74d85c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
html[data-page="ciclo-basico"] .cbx-extension-card:hover {
  border-color: color-mix(in srgb, var(--green) 48%, var(--border));
  box-shadow: 0 28px 65px rgba(8, 41, 66, 0.15);
  transform: translateY(-9px);
}
html[data-page="ciclo-basico"] .cbx-extension-card:hover::after { transform: scaleX(1); }
html[data-page="ciclo-basico"] .cbx-extension-icon {
  width: 61px;
  height: 61px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--green) 24%, var(--border));
  border-radius: 19px;
  color: #00a47d;
  background: linear-gradient(145deg, rgba(47, 128, 237, 0.13), rgba(0, 179, 136, 0.13));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.17), 0 13px 29px rgba(0, 148, 136, 0.12);
  transition: transform 0.35s ease;
}
html[data-page="ciclo-basico"] .cbx-extension-card:hover .cbx-extension-icon { transform: rotate(-4deg) scale(1.07); }
html[data-page="ciclo-basico"] .cbx-extension-card > small {
  position: absolute;
  top: 29px;
  right: 25px;
  padding: 7px 9px;
  border: 1px solid color-mix(in srgb, var(--green) 28%, var(--border));
  border-radius: 999px;
  color: color-mix(in srgb, var(--green) 78%, var(--ink));
  background: color-mix(in srgb, var(--green) 9%, transparent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
html[data-page="ciclo-basico"] .cbx-extension-card h3 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.14;
  letter-spacing: -0.025em;
}
html[data-page="ciclo-basico"] .cbx-extension-card p {
  margin: 13px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}
html[data-page="ciclo-basico"] .cbx-extension-card > b {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 11px;
}
html[data-page="ciclo-basico"] .cbx-extension-card > b i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 9px;
  font-style: normal;
}
html[data-page="ciclo-basico"] .cbx-extension-summary {
  border-color: rgba(87, 219, 185, 0.34);
  background:
    radial-gradient(circle at 100% 0, rgba(0, 179, 136, 0.25), transparent 42%),
    linear-gradient(135deg, #082942, #0a3a42);
  box-shadow: 0 22px 56px rgba(5, 34, 51, 0.19);
}
html[data-page="ciclo-basico"] .cbx-extension-summary .cbx-extension-icon {
  color: #73e3c2;
  border-color: rgba(112, 226, 196, 0.34);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.035), 0 13px 29px rgba(0, 0, 0, 0.16);
}
html[data-page="ciclo-basico"] .cbx-extension-summary > small {
  color: #80e8ca;
  border-color: rgba(104, 226, 191, 0.28);
  background: rgba(255, 255, 255, 0.07);
}
html[data-page="ciclo-basico"] .cbx-extension-summary h3 { color: #fff; }
html[data-page="ciclo-basico"] .cbx-extension-summary p { color: #bdd2dc; }
html[data-page="ciclo-basico"] .cbx-extension-summary > b { color: #fff; }
html[data-page="ciclo-basico"] .cbx-certificate-callout {
  max-width: 840px;
  margin: 27px auto 0;
  padding: 21px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid color-mix(in srgb, var(--green) 31%, var(--border));
  border-radius: 20px;
  background: color-mix(in srgb, var(--green) 7%, var(--surface));
  box-shadow: 0 15px 38px rgba(8, 41, 66, 0.07);
}
html[data-page="ciclo-basico"] .cbx-certificate-callout > span {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 12px 26px rgba(0, 179, 136, 0.23);
  font-weight: 900;
}
html[data-page="ciclo-basico"] .cbx-certificate-callout strong { color: var(--ink); font-size: 15px; }
html[data-page="ciclo-basico"] .cbx-certificate-callout p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }

/* Grade completa */
html[data-page="ciclo-basico"] .cbx-curriculum {
  color: #f7fbff;
  background: radial-gradient(circle at 93% 9%, rgba(0, 179, 136, 0.2), transparent 27%), radial-gradient(circle at 5% 88%, rgba(47, 128, 237, 0.18), transparent 31%), linear-gradient(125deg, #061927, #082942 56%, #07333d);
}
html[data-page="ciclo-basico"] .cbx-curriculum .cbx-section-title { color: #fff; }
html[data-page="ciclo-basico"] .cbx-curriculum .cbx-section-head > p { color: #bfd1dc; }
html[data-page="ciclo-basico"] .cbx-curriculum-details {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(209, 235, 247, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}
html[data-page="ciclo-basico"] .cbx-curriculum-details summary {
  min-height: 92px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  cursor: pointer;
  list-style: none;
}
html[data-page="ciclo-basico"] .cbx-curriculum-details summary::-webkit-details-marker { display: none; }
html[data-page="ciclo-basico"] .cbx-curriculum-details summary > span {
  display: grid;
  gap: 5px;
  font-size: 18px;
  font-weight: 850;
}
html[data-page="ciclo-basico"] .cbx-curriculum-details summary small {
  color: #61dfbb;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
html[data-page="ciclo-basico"] .cbx-curriculum-details summary > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 12px 28px rgba(0, 179, 136, 0.24);
  font-size: 23px;
  font-style: normal;
  transition: transform 0.3s ease;
}
html[data-page="ciclo-basico"] .cbx-curriculum-details[open] summary > i { transform: rotate(45deg); }
html[data-page="ciclo-basico"] .cbx-curriculum-panel {
  padding: 0;
  display: grid;
  gap: 18px;
  animation: cbx-panel-in 0.4s ease both;
}
html[data-page="ciclo-basico"] .cbx-curriculum-open {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}
html[data-page="ciclo-basico"] .cbx-curriculum-panel > section,
html[data-page="ciclo-basico"] .cbx-panel-columns > section {
  position: relative;
  padding: 27px;
  overflow: hidden;
  border: 1px solid rgba(214, 238, 248, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(0, 179, 136, 0.1), transparent 34%),
    rgba(4, 31, 47, 0.64);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}
html[data-page="ciclo-basico"] .cbx-curriculum-panel > section:hover,
html[data-page="ciclo-basico"] .cbx-panel-columns > section:hover {
  border-color: rgba(101, 225, 191, 0.34);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
  transform: translateY(-5px);
}
html[data-page="ciclo-basico"] .cbx-panel-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
}
html[data-page="ciclo-basico"] .cbx-panel-title > .cbx-panel-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111, 226, 193, 0.35);
  border-radius: 18px;
  color: #68e2be;
  background: linear-gradient(145deg, rgba(47, 128, 237, 0.2), rgba(0, 179, 136, 0.17));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.035), 0 12px 28px rgba(0, 0, 0, 0.15);
  transition: transform 0.32s ease, color 0.32s ease;
}
html[data-page="ciclo-basico"] .cbx-panel-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="ciclo-basico"] .cbx-curriculum-panel > section:hover .cbx-panel-icon,
html[data-page="ciclo-basico"] .cbx-panel-columns > section:hover .cbx-panel-icon {
  color: #fff;
  transform: rotate(-4deg) scale(1.06);
}
html[data-page="ciclo-basico"] .cbx-panel-title h3 { margin: 0; color: #fff; font-size: 19px; }
html[data-page="ciclo-basico"] .cbx-panel-title p { margin: 4px 0 0; color: #9eb9c8; font-size: 11px; }
html[data-page="ciclo-basico"] .cbx-discipline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
html[data-page="ciclo-basico"] .cbx-discipline-grid article {
  position: relative;
  min-height: 104px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  overflow: hidden;
  border: 1px solid rgba(218, 238, 249, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}
html[data-page="ciclo-basico"] .cbx-discipline-grid article:hover {
  border-color: rgba(103, 227, 194, 0.37);
  background: linear-gradient(145deg, rgba(47, 128, 237, 0.15), rgba(0, 179, 136, 0.11));
  transform: translateY(-4px);
}
html[data-page="ciclo-basico"] .cbx-discipline-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(101, 224, 190, 0.25);
  border-radius: 14px;
  color: #65dfbc;
  background: linear-gradient(145deg, rgba(47, 128, 237, 0.16), rgba(0, 179, 136, 0.14));
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.025);
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}
html[data-page="ciclo-basico"] .cbx-discipline-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="ciclo-basico"] .cbx-discipline-grid article:hover .cbx-discipline-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  transform: rotate(-4deg) scale(1.06);
}
html[data-page="ciclo-basico"] .cbx-discipline-grid h4 { margin: 0; color: #e4f0f5; font-size: 12px; line-height: 1.35; }
html[data-page="ciclo-basico"] .cbx-panel-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
html[data-page="ciclo-basico"] .cbx-topic-chips { display: flex; flex-wrap: wrap; gap: 8px; }
html[data-page="ciclo-basico"] .cbx-topic-chips span {
  padding: 9px 11px;
  border: 1px solid rgba(209, 235, 247, 0.13);
  border-radius: 999px;
  color: #d5e6ee;
  background: rgba(255, 255, 255, 0.05);
  font-size: 10px;
  font-weight: 750;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
html[data-page="ciclo-basico"] .cbx-topic-chips span:hover {
  border-color: rgba(100, 226, 191, 0.36);
  color: #fff;
  background: linear-gradient(135deg, rgba(47, 128, 237, 0.18), rgba(0, 179, 136, 0.15));
  transform: translateY(-2px);
}

/* Planos */
html[data-page="ciclo-basico"] .cbx-pricing {
  background: radial-gradient(circle at 90% 10%, rgba(0, 179, 136, 0.09), transparent 25%), var(--surface);
}
html[data-page="ciclo-basico"] .cbx-price-grid {
  max-width: 1010px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}
html[data-page="ciclo-basico"] .cbx-price-card {
  position: relative;
  min-height: 570px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 29px;
  background: radial-gradient(circle at 100% 0, rgba(47, 128, 237, 0.1), transparent 31%), linear-gradient(180deg, var(--surface), var(--surface-soft));
  box-shadow: 0 22px 64px rgba(8, 41, 66, 0.11);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
html[data-page="ciclo-basico"] .cbx-price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--green), #72d85b);
}
html[data-page="ciclo-basico"] .cbx-price-card::after {
  content: "";
  position: absolute;
  top: -105px;
  right: -105px;
  width: 230px;
  height: 230px;
  border: 1px solid color-mix(in srgb, var(--green) 24%, transparent);
  border-radius: 50%;
}
html[data-page="ciclo-basico"] .cbx-price-card:hover {
  border-color: color-mix(in srgb, var(--green) 52%, var(--border));
  box-shadow: 0 32px 78px rgba(8, 41, 66, 0.16);
  transform: translateY(-8px);
}
html[data-page="ciclo-basico"] .cbx-price-featured {
  border: 2px solid color-mix(in srgb, var(--green) 68%, var(--blue));
  box-shadow: 0 31px 80px rgba(0, 156, 143, 0.18);
  transform: translateY(-11px);
}
html[data-page="ciclo-basico"] .cbx-price-featured:hover { transform: translateY(-16px); }
html[data-page="ciclo-basico"] .cbx-price-badge {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 22px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
html[data-page="ciclo-basico"] .cbx-price-kicker { color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
html[data-page="ciclo-basico"] .cbx-price-card h3 { margin: 18px 0 0; color: var(--ink); font-size: 43px; line-height: 1; letter-spacing: -0.045em; }
html[data-page="ciclo-basico"] .cbx-installment { margin: 27px 0 0; color: var(--muted); font-size: 15px; }
html[data-page="ciclo-basico"] .cbx-installment strong { display: block; margin-top: 5px; color: var(--ink); font-size: 30px; line-height: 1.15; }
html[data-page="ciclo-basico"] .cbx-total { margin: 9px 0 0; color: var(--muted); font-size: 12px; }
html[data-page="ciclo-basico"] .cbx-cash {
  width: max-content;
  margin: 19px 0 0;
  padding: 9px 13px;
  border: 1px solid color-mix(in srgb, var(--green) 48%, var(--border));
  border-radius: 999px;
  color: color-mix(in srgb, var(--green) 70%, var(--ink));
  background: color-mix(in srgb, var(--green) 13%, transparent);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--green) 13%, transparent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
html[data-page="ciclo-basico"] .cbx-price-card ul { margin: 28px 0 30px; }
html[data-page="ciclo-basico"] .cbx-price-card li { font-size: 14px; }
html[data-page="ciclo-basico"] .cbx-price-card .cbx-button { width: 100%; margin-top: auto; }

/* Fechamento */
html[data-page="ciclo-basico"] .cbx-final { padding: 24px 0 92px; background: var(--surface); }
html[data-page="ciclo-basico"] .cbx-final-card {
  position: relative;
  overflow: hidden;
  padding: 49px 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  border: 1px solid rgba(55, 191, 166, 0.28);
  border-radius: 29px;
  color: #f7fbff;
  background: radial-gradient(circle at 88% 20%, rgba(0, 179, 136, 0.19), transparent 31%), radial-gradient(circle at 5% 90%, rgba(47, 128, 237, 0.17), transparent 35%), linear-gradient(120deg, #061927, #082942 58%, #07333d);
  box-shadow: 0 26px 72px rgba(5, 28, 43, 0.2);
}
html[data-page="ciclo-basico"] .cbx-final-card > div > span { color: #52dfbb; font-size: 10px; font-weight: 900; letter-spacing: 0.14em; }
html[data-page="ciclo-basico"] .cbx-final-card .cbx-section-title {
  width: auto;
  max-width: 760px;
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 1.08;
  text-align: left;
  text-transform: none;
}
html[data-page="ciclo-basico"] .cbx-final-card .cbx-section-title::after { left: 0; width: 160px; transform: none; }
html[data-page="ciclo-basico"] .cbx-final-card p { max-width: 760px; margin: 16px 0 0; color: #c4d7e2; font-size: 14px; line-height: 1.65; }
html[data-page="ciclo-basico"] .cbx-final-card small { display: block; margin-top: 15px; color: #8eabba; font-size: 11px; font-style: italic; }
html[data-page="ciclo-basico"] .cbx-final-card .cbx-button { min-width: 220px; }

@keyframes cbx-discount-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 15px 38px rgba(55, 216, 164, 0.27); }
  50% { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(55, 216, 164, 0.4); }
}
@keyframes cbx-shine {
  0%, 62%, 100% { left: -45%; }
  78% { left: 125%; }
}
@keyframes cbx-chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes cbx-orb-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, 20px, 0) scale(1.06); }
}
@keyframes cbx-panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cbx-resource-active-glow {
  0%, 100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), inset 0 0 28px rgba(119, 245, 214, 0.17), 0 21px 46px rgba(0, 0, 0, 0.29), 0 0 0 1px rgba(118, 245, 213, 0.2), 0 0 30px rgba(67, 225, 188, 0.3);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56), inset 0 0 34px rgba(141, 255, 226, 0.25), 0 23px 50px rgba(0, 0, 0, 0.31), 0 0 0 1px rgba(154, 255, 230, 0.34), 0 0 46px rgba(73, 237, 199, 0.5);
  }
}
@keyframes cbx-resource-button-shine {
  0%, 20% { transform: translateX(-58%) rotate(9deg); }
  56%, 100% { transform: translateX(58%) rotate(9deg); }
}

@media (max-width: 1120px) {
  html[data-page="ciclo-basico"] .cbx-hero-copy { width: min(720px, 67%); }
  html[data-page="ciclo-basico"] .cbx-discipline-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 920px) {
  html[data-page="ciclo-basico"] .cbx-hero { padding: 136px 0 70px; background-position: 64% center; }
  html[data-page="ciclo-basico"] .cbx-hero-copy { width: 100%; max-width: 720px; }
  html[data-page="ciclo-basico"] .cbx-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 25, 40, 0.47);
  }
  html[data-page="ciclo-basico"] .cbx-hero-chips { display: none; }
  html[data-page="ciclo-basico"] .cbx-pillar-grid,
  html[data-page="ciclo-basico"] .cbx-expert-grid { grid-template-columns: 1fr; }
  html[data-page="ciclo-basico"] .cbx-resource-flow { grid-template-columns: repeat(5, minmax(132px, 1fr)); overflow-x: auto; padding: 8px 4px 18px; scroll-snap-type: x mandatory; }
  html[data-page="ciclo-basico"] .cbx-resource-flow button { scroll-snap-align: start; }
  html[data-page="ciclo-basico"] .cbx-teacher-carousel { max-width: 760px; margin-inline: auto; }
  html[data-page="ciclo-basico"] .cbx-extension-card { grid-column: span 3; }
  html[data-page="ciclo-basico"] .cbx-final-card { grid-template-columns: 1fr; }
  html[data-page="ciclo-basico"] .cbx-final-card .cbx-button { width: max-content; }
}
@media (max-width: 680px) {
  html[data-page="ciclo-basico"] .cbx-section { padding: 78px 0; }
  html[data-page="ciclo-basico"] .cbx-section-head { margin-bottom: 36px; }
  html[data-page="ciclo-basico"] .cbx-section-title { width: 100%; font-size: 23px; line-height: 1.2; }
  html[data-page="ciclo-basico"] .cbx-hero { min-height: 0; padding: 120px 0 60px; background-position: 68% center; }
  html[data-page="ciclo-basico"] .cbx-hero h1 { font-size: 34px; line-height: 1.13; }
  html[data-page="ciclo-basico"] .cbx-hero-lead { font-size: 15px; }
  html[data-page="ciclo-basico"] .cbx-hero-prices { grid-template-columns: 1fr 1fr; }
  html[data-page="ciclo-basico"] .cbx-hero-prices > div,
  html[data-page="ciclo-basico"] .cbx-hero-prices > b { min-height: 72px; }
  html[data-page="ciclo-basico"] .cbx-hero-prices > b { grid-column: 1 / -1; min-height: 48px; font-size: 13px; }
  html[data-page="ciclo-basico"] .cbx-hero-prices span { font-size: 10px; }
  html[data-page="ciclo-basico"] .cbx-hero-prices strong { font-size: 15px; }
  html[data-page="ciclo-basico"] .cbx-hero-actions { display: grid; }
  html[data-page="ciclo-basico"] .cbx-button { width: 100%; }
  html[data-page="ciclo-basico"] .cbx-hero-facts { justify-content: center; }
  html[data-page="ciclo-basico"] .cbx-pillar-card { padding: 25px 23px; }
  html[data-page="ciclo-basico"] .cbx-resource-image-wrap { height: 285px; }
  html[data-page="ciclo-basico"] .cbx-teacher-carousel { padding: 13px; }
  html[data-page="ciclo-basico"] .cbx-teacher-slide { gap: 7px; }
  html[data-page="ciclo-basico"] .cbx-teacher-slide figure { border-radius: 13px; }
  html[data-page="ciclo-basico"] .cbx-teacher-toolbar > span { font-size: 10px; }
  html[data-page="ciclo-basico"] .cbx-extension-grid { grid-template-columns: 1fr; }
  html[data-page="ciclo-basico"] .cbx-extension-card { grid-column: 1; }
  html[data-page="ciclo-basico"] .cbx-certificate-callout { align-items: flex-start; }
  html[data-page="ciclo-basico"] .cbx-curriculum-details summary { min-height: 82px; padding: 0 19px; }
  html[data-page="ciclo-basico"] .cbx-curriculum-panel { padding: 0; }
  html[data-page="ciclo-basico"] .cbx-curriculum-panel > section,
  html[data-page="ciclo-basico"] .cbx-panel-columns > section { padding: 19px; }
  html[data-page="ciclo-basico"] .cbx-discipline-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  html[data-page="ciclo-basico"] .cbx-panel-columns { grid-template-columns: 1fr; }
  html[data-page="ciclo-basico"] .cbx-price-grid { grid-template-columns: 1fr; }
  html[data-page="ciclo-basico"] .cbx-price-card { min-height: 0; padding: 30px 24px; }
  html[data-page="ciclo-basico"] .cbx-price-featured,
  html[data-page="ciclo-basico"] .cbx-price-featured:hover { transform: none; }
  html[data-page="ciclo-basico"] .cbx-installment strong { font-size: 25px; }
  html[data-page="ciclo-basico"] .cbx-final { padding: 12px 0 72px; }
  html[data-page="ciclo-basico"] .cbx-final-card { padding: 34px 25px; gap: 27px; }
  html[data-page="ciclo-basico"] .cbx-final-card .cbx-button { width: 100%; min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html[data-page="ciclo-basico"] .cbx-hero-prices > b,
  html[data-page="ciclo-basico"] .cbx-hero-prices > b::after,
  html[data-page="ciclo-basico"] .cbx-hero-chip,
  html[data-page="ciclo-basico"] .cbx-orb,
  html[data-page="ciclo-basico"] .cbx-resource-flow button.is-active,
  html[data-page="ciclo-basico"] .cbx-resource-flow button.is-active::before,
  html[data-page="ciclo-basico"] .cbx-curriculum-panel { animation: none !important; }
  html[data-page="ciclo-basico"] .cbx-teacher-track { transition: none; }
}

/* =========================================================
   R3 ESSENCIAL — página interna unificada
   ========================================================= */
html[data-page="r3"] .r3x-section {
  position: relative;
  padding: 104px 0;
  background: var(--surface);
}
html[data-page="r3"] .r3x-section-head {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}
html[data-page="r3"] .r3x-section-head > span,
html[data-page="r3"] .r3x-kicker {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
html[data-page="r3"] .r3x-section-head h2,
html[data-page="r3"] .r3x-title-left {
  position: relative;
  margin: 15px 0 0;
  padding-bottom: 21px;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
html[data-page="r3"] .r3x-section-head h2::after,
html[data-page="r3"] .r3x-title-left::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 150px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 5px 18px rgba(0, 179, 136, 0.22);
  transform: translateX(-50%);
}
html[data-page="r3"] .r3x-section-head p {
  max-width: 790px;
  margin: 21px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
html[data-page="r3"] .r3x-title-left { font-size: clamp(31px, 3.2vw, 45px); }
html[data-page="r3"] .r3x-title-left::after { left: 0; transform: none; }

/* Hero */
html[data-page="r3"] .r3x-hero {
  position: relative;
  min-height: 780px;
  padding: 144px 0 88px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 25, 40, 0.99) 0%, rgba(5, 34, 54, 0.95) 48%, rgba(5, 39, 57, 0.76) 100%),
    url("../images/banner-r1-r3.webp") center/cover no-repeat;
}
html[data-page="r3"] .r3x-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}
html[data-page="r3"] .r3x-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: 62px;
  align-items: center;
}
html[data-page="r3"] .r3x-eyebrow {
  width: max-content;
  padding: 9px 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(111, 239, 207, .35);
  border-radius: 999px;
  color: #77e9ca;
  background: rgba(7, 61, 70, .55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 32px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
html[data-page="r3"] .r3x-eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #64e5c3;
  box-shadow: 0 0 0 5px rgba(100,229,195,.12), 0 0 18px rgba(100,229,195,.7);
}
html[data-page="r3"] .r3x-hero h1 {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(48px, 5.25vw, 75px);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -0.058em;
}
html[data-page="r3"] .r3x-hero-copy > p {
  max-width: 690px;
  margin: 25px 0 0;
  color: #c4d8e4;
  font-size: 17px;
  line-height: 1.68;
}
html[data-page="r3"] .r3x-hero-offer {
  max-width: 690px;
  margin-top: 29px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}
html[data-page="r3"] .r3x-hero-offer > div,
html[data-page="r3"] .r3x-hero-offer > b {
  min-height: 78px;
  padding: 15px 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(195, 230, 243, .15);
  border-radius: 17px;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(11px);
}
html[data-page="r3"] .r3x-hero-offer span {
  color: #9fb8c7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
html[data-page="r3"] .r3x-hero-offer strong {
  margin-top: 5px;
  color: #fff;
  font-size: 20px;
  font-weight: 850;
}
html[data-page="r3"] .r3x-hero-offer > b {
  min-width: 135px;
  align-items: center;
  color: #062d34;
  background: linear-gradient(135deg, #85f1d1, #47d3ad);
  box-shadow: 0 14px 34px rgba(62, 223, 179, .26);
  font-size: 14px;
  font-weight: 950;
  text-align: center;
  animation: r3x-offer-pulse 2.8s ease-in-out infinite;
}
html[data-page="r3"] .r3x-hero-actions {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
html[data-page="r3"] .r3x-button {
  min-height: 58px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: .015em;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
html[data-page="r3"] .r3x-button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #216cdc);
  box-shadow: 0 16px 35px rgba(47, 128, 237, .3);
}
html[data-page="r3"] .r3x-button-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(47,128,237,.42); }
html[data-page="r3"] .r3x-button-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}
html[data-page="r3"] .r3x-button-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
html[data-page="r3"] .r3x-area-chips { margin-top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
html[data-page="r3"] .r3x-area-chips span {
  padding: 8px 12px;
  border: 1px solid rgba(201,230,242,.16);
  border-radius: 999px;
  color: #bed3df;
  background: rgba(255,255,255,.045);
  font-size: 11px;
  font-weight: 750;
}
html[data-page="r3"] .r3x-hero-visual { position: relative; min-height: 500px; }
html[data-page="r3"] .r3x-hero-screen {
  position: absolute;
  top: 48px;
  right: -74px;
  width: min(680px, 46vw);
  overflow: hidden;
  border: 1px solid rgba(176, 231, 236, .32);
  border-radius: 25px;
  background: #f4f8fa;
  box-shadow: 0 44px 110px rgba(0,0,0,.44), 0 0 50px rgba(42,188,172,.13);
  transform: perspective(1500px) rotateY(-7deg) rotateX(2deg);
}
html[data-page="r3"] .r3x-screen-top {
  height: 39px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #607b8b;
  background: #edf4f7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
}
html[data-page="r3"] .r3x-screen-top i { width: 7px; height: 7px; border-radius: 50%; background: #2f80ed; }
html[data-page="r3"] .r3x-screen-top i:nth-child(2) { background: #00b388; }
html[data-page="r3"] .r3x-screen-top i:nth-child(3) { background: #ff8a3d; }
html[data-page="r3"] .r3x-screen-top span { margin-left: 5px; }
html[data-page="r3"] .r3x-hero-screen img { width: 100%; height: 420px; display: block; object-fit: cover; object-position: left top; }
html[data-page="r3"] .r3x-float-card {
  position: absolute;
  z-index: 3;
  min-width: 205px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(176, 237, 221, .3);
  border-radius: 17px;
  color: #fff;
  background: rgba(4, 39, 53, .88);
  box-shadow: 0 18px 46px rgba(0,0,0,.27), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(13px);
  animation: r3x-card-float 4.2s ease-in-out infinite;
}
html[data-page="r3"] .r3x-float-card > span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 11px; color: #061e2a; background: linear-gradient(135deg,#78ebcb,#42cfa8); font-size: 11px; font-weight: 950; }
html[data-page="r3"] .r3x-float-card small { display: block; color: #75ddc1; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
html[data-page="r3"] .r3x-float-card strong { display: block; margin-top: 2px; font-size: 13px; }
html[data-page="r3"] .r3x-float-clinic { top: 2px; left: 0; }
html[data-page="r3"] .r3x-float-surgery { right: -10px; bottom: 34px; animation-delay: -.8s; }
html[data-page="r3"] .r3x-float-peds { bottom: -8px; left: 26px; animation-delay: -1.6s; }
html[data-page="r3"] .r3x-orb { position: absolute; z-index: 1; border-radius: 50%; filter: blur(4px); opacity: .6; animation: r3x-orb-drift 8s ease-in-out infinite; }
html[data-page="r3"] .r3x-orb-one { top: 18%; left: -100px; width: 240px; height: 240px; background: rgba(47,128,237,.22); }
html[data-page="r3"] .r3x-orb-two { right: 6%; bottom: -130px; width: 310px; height: 310px; background: rgba(0,179,136,.18); animation-delay: -3s; }

/* Pilares */
html[data-page="r3"] .r3x-focus { background: linear-gradient(180deg, var(--surface), var(--surface-soft)); }
html[data-page="r3"] .r3x-pillar-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
html[data-page="r3"] .r3x-pillar-card {
  position: relative;
  min-height: 410px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(155deg, var(--surface), var(--surface-soft));
  box-shadow: 0 20px 55px rgba(7,39,61,.1);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
html[data-page="r3"] .r3x-pillar-card::after { content:""; position:absolute; inset:auto -60px -90px auto; width:190px; height:190px; border-radius:50%; background:radial-gradient(circle,rgba(47,128,237,.13),transparent 68%); transition:transform .4s ease; }
html[data-page="r3"] .r3x-pillar-card:hover { transform: translateY(-10px); border-color: color-mix(in srgb,var(--green) 42%,var(--border)); box-shadow: 0 30px 70px rgba(7,39,61,.16); }
html[data-page="r3"] .r3x-pillar-card:hover::after { transform: scale(1.28); }
html[data-page="r3"] .r3x-icon,
html[data-page="r3"] .r3x-area-icon,
html[data-page="r3"] .r3x-price-symbol {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.46), 0 13px 28px rgba(8,41,66,.13);
}
html[data-page="r3"] .r3x-icon svg,
html[data-page="r3"] .r3x-area-icon svg,
html[data-page="r3"] .r3x-price-symbol svg { width: 29px; height: 29px; fill:none; stroke:currentColor; stroke-width:1.75; stroke-linecap:round; stroke-linejoin:round; }
html[data-page="r3"] .r3x-icon-blue { color:#2576e4; background:linear-gradient(145deg,#edf6ff,#dcecff); }
html[data-page="r3"] .r3x-icon-green { color:#009d77; background:linear-gradient(145deg,#e9fbf6,#d8f7ee); }
html[data-page="r3"] .r3x-icon-orange { color:#e8751d; background:linear-gradient(145deg,#fff4e9,#ffe7d2); }
html[data-page="r3"] .r3x-pillar-card > small { display:block; margin-top:24px; color:var(--green); font-size:10px; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
html[data-page="r3"] .r3x-pillar-card h3 { margin:10px 0 21px; color:var(--ink); font-size:24px; line-height:1.15; letter-spacing:-.035em; }
html[data-page="r3"] .r3x-pillar-card ul,
html[data-page="r3"] .r3x-content-details ul { margin:0; padding:0; display:grid; gap:12px; list-style:none; }
html[data-page="r3"] .r3x-pillar-card li,
html[data-page="r3"] .r3x-content-details li { position:relative; padding-left:24px; color:var(--muted); font-size:13px; line-height:1.5; }
html[data-page="r3"] .r3x-pillar-card li::before,
html[data-page="r3"] .r3x-content-details li::before { content:"✓"; position:absolute; left:0; color:var(--green); font-weight:950; }

/* Áreas */
html[data-page="r3"] .r3x-areas { background: var(--surface-soft); }
html[data-page="r3"] .r3x-area-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
html[data-page="r3"] .r3x-area-card {
  position:relative;
  min-height:280px;
  padding:30px;
  display:grid;
  grid-template-columns:66px 1fr;
  gap:21px;
  align-items:start;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:27px;
  color:inherit;
  background:var(--surface);
  box-shadow:0 20px 54px rgba(8,41,66,.1);
  transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease;
}
html[data-page="r3"] .r3x-area-card::before { content:""; position:absolute; inset:0; background:linear-gradient(135deg,rgba(47,128,237,.08),transparent 48%,rgba(0,179,136,.08)); opacity:0; transition:opacity .35s ease; }
html[data-page="r3"] .r3x-area-card:hover { transform:translateY(-9px); border-color:color-mix(in srgb,var(--green) 38%,var(--border)); box-shadow:0 30px 72px rgba(8,41,66,.16); }
html[data-page="r3"] .r3x-area-card:hover::before { opacity:1; }
html[data-page="r3"] .r3x-area-card > * { position:relative; z-index:1; }
html[data-page="r3"] .r3x-area-icon-blue { color:#287ee9; background:rgba(47,128,237,.11); }
html[data-page="r3"] .r3x-area-icon-green { color:#00a17a; background:rgba(0,179,136,.11); }
html[data-page="r3"] .r3x-area-icon-orange { color:#ef7d20; background:rgba(239,125,32,.11); }
html[data-page="r3"] .r3x-area-card small { color:var(--muted); font-size:10px; font-weight:850; letter-spacing:.08em; text-transform:uppercase; }
html[data-page="r3"] .r3x-area-card h3 { margin:8px 0 12px; color:var(--ink); font-size:25px; letter-spacing:-.035em; }
html[data-page="r3"] .r3x-area-card p { margin:0; color:var(--muted); font-size:13px; line-height:1.65; }
html[data-page="r3"] .r3x-area-card div > span { margin-top:22px; display:inline-flex; align-items:center; gap:12px; color:var(--blue); font-size:12px; font-weight:850; }
html[data-page="r3"] .r3x-area-card div > span b { font-size:18px; transition:transform .25s ease; }
html[data-page="r3"] .r3x-area-card:hover div > span b { transform:translateX(5px); }

/* Recursos integrados */
html[data-page="r3"] .r3x-resources { color:#f7fbff; background:radial-gradient(circle at 8% 80%,rgba(47,128,237,.2),transparent 31%),radial-gradient(circle at 92% 12%,rgba(0,179,136,.18),transparent 29%),linear-gradient(125deg,#061927,#082942 55%,#07313a); }
html[data-page="r3"] .r3x-resources .r3x-section-head h2 { color:#fff; }
html[data-page="r3"] .r3x-resources .r3x-section-head p { color:#bfd1dc; }
html[data-page="r3"] .r3x-resource-tabs { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:15px; }
html[data-page="r3"] .r3x-resource-tabs button {
  position:relative;
  isolation:isolate;
  min-height:86px;
  padding:20px 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border:1px solid rgba(190,227,241,.2);
  border-radius:22px;
  color:#e1edf3;
  background:linear-gradient(145deg,rgba(255,255,255,.085),rgba(255,255,255,.035));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12),0 12px 28px rgba(0,0,0,.14);
  cursor:pointer;
  font-family:inherit;
  font-size:17px;
  font-weight:600;
  transition:transform .38s cubic-bezier(.2,.8,.2,1),background .35s ease,border-color .35s ease,box-shadow .35s ease;
}
html[data-page="r3"] .r3x-resource-tabs button::before { content:""; position:absolute; z-index:0; inset:-65% -45%; pointer-events:none; background:linear-gradient(110deg,transparent 38%,rgba(255,255,255,.38) 49%,transparent 60%); opacity:0; transform:translateX(-55%) rotate(9deg); transition:opacity .3s ease,transform .75s cubic-bezier(.2,.8,.2,1); }
html[data-page="r3"] .r3x-resource-tabs button::after { content:""; position:absolute; z-index:0; top:-54px; left:50%; width:128px; height:108px; border-radius:50%; pointer-events:none; background:radial-gradient(circle,rgba(113,246,212,.72),rgba(47,128,237,.25) 42%,transparent 72%); filter:blur(9px); opacity:0; transform:translateX(-50%) scale(.55); transition:.4s ease; }
html[data-page="r3"] .r3x-resource-tabs button:hover,
html[data-page="r3"] .r3x-resource-tabs button:focus-visible { border-color:rgba(119,239,209,.62); color:#fff; background:linear-gradient(145deg,rgba(47,128,237,.28),rgba(0,179,136,.22)); box-shadow:inset 0 1px 0 rgba(255,255,255,.22),0 18px 38px rgba(0,0,0,.23),0 0 22px rgba(74,224,189,.14); transform:translateY(-6px) scale(1.015); }
html[data-page="r3"] .r3x-resource-tabs button:hover::before,
html[data-page="r3"] .r3x-resource-tabs button:focus-visible::before { opacity:.75; transform:translateX(55%) rotate(9deg); }
html[data-page="r3"] .r3x-resource-tabs button.is-active { border-color:rgba(159,255,231,.88); color:#fff; background:linear-gradient(135deg,rgba(47,128,237,.78),rgba(0,179,136,.8)); box-shadow:inset 0 1px 0 rgba(255,255,255,.46),inset 0 0 28px rgba(119,245,214,.17),0 21px 46px rgba(0,0,0,.29),0 0 0 1px rgba(118,245,213,.2),0 0 34px rgba(67,225,188,.38); text-shadow:0 1px 14px rgba(255,255,255,.32); transform:translateY(-7px) scale(1.025); animation:r3x-active-glow 2.5s ease-in-out infinite; }
html[data-page="r3"] .r3x-resource-tabs button.is-active::before { opacity:.82; animation:r3x-button-shine 3.2s ease-in-out infinite; }
html[data-page="r3"] .r3x-resource-tabs button.is-active::after { opacity:.85; transform:translateX(-50%) scale(1); }
html[data-page="r3"] .r3x-resource-tabs button > span { position:relative; z-index:2; display:inline-flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:6px; line-height:1.3; }
html[data-page="r3"] .r3x-resource-tabs small { color:#8cf0d5; font-size:inherit; font-weight:600; }
html[data-page="r3"] .r3x-resource-tabs button.is-active small { color:#fff; }
html[data-page="r3"] .r3x-resource-stage { max-width:1120px; margin:31px auto 0; overflow:hidden; border:1px solid rgba(206,235,247,.21); border-radius:26px; background:#fff; box-shadow:0 32px 88px rgba(0,0,0,.31); transform:perspective(1600px) rotateX(1.4deg); transition:transform .4s ease; }
html[data-page="r3"] .r3x-resource-stage:hover { transform:perspective(1600px) rotateX(0) translateY(-5px); }
html[data-page="r3"] .r3x-stage-toolbar { min-height:42px; padding:0 15px; display:flex; align-items:center; gap:12px; color:#557080; background:#edf4f7; font-size:9px; font-weight:850; letter-spacing:.08em; }
html[data-page="r3"] .r3x-stage-toolbar > div { display:flex; gap:6px; }
html[data-page="r3"] .r3x-stage-toolbar i { width:7px; height:7px; border-radius:50%; background:#2f80ed; }
html[data-page="r3"] .r3x-stage-toolbar i:nth-child(2) { background:#00b388; }
html[data-page="r3"] .r3x-stage-toolbar i:nth-child(3) { background:#ff8a3d; }
html[data-page="r3"] .r3x-stage-toolbar > span { margin-right:auto; }
html[data-page="r3"] .r3x-stage-toolbar > b { color:#00a47d; }
html[data-page="r3"] .r3x-resource-image-wrap { height:545px; display:grid; place-items:center; overflow:hidden; background:#f3f7f9; }
html[data-page="r3"] .r3x-resource-image-wrap img { width:100%; height:100%; display:block; object-fit:cover; object-position:left top; transition:opacity .2s ease,transform .45s ease; }
html[data-page="r3"] .r3x-resource-image-wrap img.is-changing { opacity:0; transform:scale(.985); }
html[data-page="r3"] .r3x-resource-note { max-width:920px; margin:23px auto 0; color:#d8eaf2; font-size:clamp(17px,1.5vw,20px); font-weight:700; line-height:1.6; text-align:center; }

/* Especialistas */
html[data-page="r3"] .r3x-experts { background:var(--surface); }
html[data-page="r3"] .r3x-expert-grid { display:grid; grid-template-columns:minmax(0,.82fr) minmax(520px,1.18fr); gap:52px; align-items:center; }
html[data-page="r3"] .r3x-expert-grid > div:first-child > p,
html[data-page="r3"] .r3x-progress-grid > div:last-child > p { margin:23px 0 0; color:var(--muted); font-size:15px; line-height:1.75; }
html[data-page="r3"] .r3x-human-callout { margin-top:26px; padding:18px 20px; display:flex; align-items:flex-start; gap:13px; border:1px solid color-mix(in srgb,var(--green) 30%,var(--border)); border-radius:18px; color:var(--ink); background:color-mix(in srgb,var(--green) 8%,var(--surface)); font-size:13px; line-height:1.55; }
html[data-page="r3"] .r3x-human-callout i { width:10px; height:10px; margin-top:5px; flex:0 0 10px; border-radius:50%; background:var(--green); box-shadow:0 0 0 6px color-mix(in srgb,var(--green) 12%,transparent); }
html[data-page="r3"] .r3x-teacher-carousel { min-width:0; padding:18px; border:1px solid var(--border); border-radius:28px; background:linear-gradient(160deg,var(--surface),var(--surface-soft)); box-shadow:0 24px 65px rgba(8,41,66,.13); }
html[data-page="r3"] .r3x-teacher-toolbar { margin-bottom:14px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
html[data-page="r3"] .r3x-teacher-toolbar > span { display:inline-flex; align-items:center; gap:9px; color:var(--ink); font-size:11px; font-weight:850; }
html[data-page="r3"] .r3x-teacher-toolbar > span i { width:9px; height:9px; border-radius:50%; background:var(--green); box-shadow:0 0 0 5px color-mix(in srgb,var(--green) 12%,transparent); }
html[data-page="r3"] .r3x-teacher-toolbar > div { display:flex; gap:7px; }
html[data-page="r3"] .r3x-teacher-toolbar button { width:38px; height:38px; display:grid; place-items:center; border:1px solid var(--border); border-radius:12px; color:var(--ink); background:var(--surface); cursor:pointer; font-size:17px; transition:.25s ease; }
html[data-page="r3"] .r3x-teacher-toolbar button:hover { color:#fff; background:linear-gradient(135deg,var(--blue),var(--green)); transform:translateY(-2px); }
html[data-page="r3"] .r3x-teacher-viewport { overflow:hidden; border-radius:20px; }
html[data-page="r3"] .r3x-teacher-track { display:flex; transition:transform .55s cubic-bezier(.2,.8,.2,1); }
html[data-page="r3"] .r3x-teacher-slide { min-width:100%; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; }
html[data-page="r3"] .r3x-teacher-slide figure { position:relative; height:335px; margin:0; overflow:hidden; border-radius:17px; background:var(--surface-soft); }
html[data-page="r3"] .r3x-teacher-slide img { width:100%; height:100%; display:block; object-fit:cover; object-position:center top; transition:transform .5s ease; }
html[data-page="r3"] .r3x-teacher-slide figure:hover img { transform:scale(1.045); }
html[data-page="r3"] .r3x-teacher-slide figcaption { position:absolute; right:9px; bottom:9px; left:9px; padding:10px 11px; border:1px solid rgba(255,255,255,.25); border-radius:12px; color:#fff; background:rgba(4,31,46,.7); backdrop-filter:blur(10px); font-size:10px; font-weight:800; text-align:center; }
html[data-page="r3"] .r3x-teacher-dots { margin-top:13px; display:flex; justify-content:center; gap:7px; }
html[data-page="r3"] .r3x-teacher-dots button { width:8px; height:8px; padding:0; border:0; border-radius:50%; background:color-mix(in srgb,var(--muted) 35%,transparent); cursor:pointer; transition:.25s ease; }
html[data-page="r3"] .r3x-teacher-dots button.is-active { width:28px; border-radius:999px; background:linear-gradient(90deg,var(--blue),var(--green)); }

/* Evolução */
html[data-page="r3"] .r3x-progress { background:linear-gradient(180deg,var(--surface-soft),var(--surface)); }
html[data-page="r3"] .r3x-progress-grid { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(350px,.85fr); gap:54px; align-items:center; }
html[data-page="r3"] .r3x-dashboard { overflow:hidden; border:1px solid var(--border); border-radius:27px; background:var(--surface); box-shadow:0 28px 75px rgba(8,41,66,.14); transform:perspective(1500px) rotateY(2deg); transition:transform .4s ease; }
html[data-page="r3"] .r3x-dashboard:hover { transform:perspective(1500px) rotateY(0) translateY(-5px); }
html[data-page="r3"] .r3x-dashboard-top { min-height:48px; padding:0 16px; display:flex; align-items:center; justify-content:space-between; gap:12px; border-bottom:1px solid var(--border); color:var(--ink); background:var(--surface); font-size:10px; font-weight:850; }
html[data-page="r3"] .r3x-dashboard-top span { display:flex; align-items:center; gap:8px; }
html[data-page="r3"] .r3x-dashboard-top i { width:8px; height:8px; border-radius:50%; background:var(--green); box-shadow:0 0 0 5px color-mix(in srgb,var(--green) 12%,transparent); }
html[data-page="r3"] .r3x-dashboard-top b { color:var(--green); }
html[data-page="r3"] .r3x-dashboard img { width:100%; height:420px; display:block; object-fit:cover; object-position:left top; }
html[data-page="r3"] .r3x-progress-points { margin-top:26px; display:grid; gap:10px; }
html[data-page="r3"] .r3x-progress-points span { padding:13px 15px; display:flex; align-items:center; gap:11px; border:1px solid var(--border); border-radius:14px; color:var(--ink); background:var(--surface); box-shadow:0 8px 22px rgba(8,41,66,.06); font-size:12px; font-weight:760; }
html[data-page="r3"] .r3x-progress-points i { width:24px; height:24px; display:grid; place-items:center; border-radius:8px; color:#fff; background:linear-gradient(135deg,var(--blue),var(--green)); font-size:11px; font-style:normal; }

/* Preços */
html[data-page="r3"] .r3x-pricing { background:var(--surface-soft); }
html[data-page="r3"] .r3x-price-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; align-items:start; }
html[data-page="r3"] .r3x-price-card { position:relative; padding:27px; overflow:hidden; border:1px solid var(--border); border-radius:28px; background:linear-gradient(155deg,var(--surface),var(--surface-soft)); box-shadow:0 22px 62px rgba(8,41,66,.12); transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease; scroll-margin-top:115px; }
html[data-page="r3"] .r3x-price-card::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--blue),var(--green),#ff8a3d); }
html[data-page="r3"] .r3x-price-card:hover,
html[data-page="r3"] .r3x-price-card.is-highlighted { transform:translateY(-9px); border-color:color-mix(in srgb,var(--green) 46%,var(--border)); box-shadow:0 34px 82px rgba(8,41,66,.18),0 0 34px color-mix(in srgb,var(--green) 12%,transparent); }
html[data-page="r3"] .r3x-price-head { display:flex; align-items:center; gap:15px; }
html[data-page="r3"] .r3x-price-symbol { width:54px; height:54px; flex:0 0 54px; border-radius:17px; }
html[data-page="r3"] .r3x-price-symbol svg { width:26px; height:26px; }
html[data-page="r3"] .r3x-price-blue { color:#287ee9; background:rgba(47,128,237,.11); }
html[data-page="r3"] .r3x-price-green { color:#00a17a; background:rgba(0,179,136,.11); }
html[data-page="r3"] .r3x-price-orange { color:#ef7d20; background:rgba(239,125,32,.11); }
html[data-page="r3"] .r3x-price-head small { color:var(--green); font-size:9px; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
html[data-page="r3"] .r3x-price-head h3 { margin:4px 0 0; color:var(--ink); font-size:25px; letter-spacing:-.035em; }
html[data-page="r3"] .r3x-price-summary { min-height:45px; margin:19px 0 0; color:var(--muted); font-size:12px; line-height:1.55; }
html[data-page="r3"] .r3x-access-options { margin-top:21px; display:grid; gap:12px; }
html[data-page="r3"] .r3x-access-options > div { position:relative; padding:19px; display:flex; flex-direction:column; border:1px solid var(--border); border-radius:19px; background:var(--surface); box-shadow:inset 0 1px 0 rgba(255,255,255,.06); }
html[data-page="r3"] .r3x-access-options > div.is-featured { border-color:color-mix(in srgb,var(--green) 45%,var(--border)); background:linear-gradient(145deg,color-mix(in srgb,var(--green) 8%,var(--surface)),var(--surface)); }
html[data-page="r3"] .r3x-access-options em { width:max-content; margin:-30px 0 11px auto; padding:6px 9px; border-radius:999px; color:#fff; background:linear-gradient(135deg,var(--blue),var(--green)); box-shadow:0 8px 20px rgba(0,179,136,.2); font-size:8px; font-style:normal; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
html[data-page="r3"] .r3x-access-options span { color:var(--muted); font-size:10px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
html[data-page="r3"] .r3x-access-options strong { margin-top:7px; color:var(--ink); font-size:21px; line-height:1.2; }
html[data-page="r3"] .r3x-access-options small { margin-top:5px; color:var(--muted); font-size:10px; }
html[data-page="r3"] .r3x-access-options b { width:max-content; margin-top:11px; padding:6px 9px; border-radius:999px; color:#008563; background:rgba(0,179,136,.1); font-size:9px; font-weight:900; letter-spacing:.05em; }
html[data-page="r3"] .r3x-access-options a { min-height:48px; margin-top:16px; padding:0 15px; display:flex; align-items:center; justify-content:center; gap:10px; border-radius:14px; color:#fff; background:linear-gradient(135deg,var(--blue),#216cdc); box-shadow:0 14px 30px rgba(47,128,237,.25); font-size:12px; font-weight:850; transition:.25s ease; }
html[data-page="r3"] .r3x-access-options a:hover { transform:translateY(-3px); box-shadow:0 18px 38px rgba(47,128,237,.38); }
html[data-page="r3"] .r3x-access-options a i { font-size:16px; font-style:normal; }
html[data-page="r3"] .r3x-content-details { margin-top:16px; border:1px solid var(--border); border-radius:17px; background:var(--surface); }
html[data-page="r3"] .r3x-content-details summary { min-height:54px; padding:0 15px; display:flex; align-items:center; justify-content:space-between; gap:12px; color:var(--ink); cursor:pointer; list-style:none; font-size:11px; font-weight:850; }
html[data-page="r3"] .r3x-content-details summary::-webkit-details-marker { display:none; }
html[data-page="r3"] .r3x-content-details summary span { width:27px; height:27px; display:grid; place-items:center; flex:0 0 27px; border-radius:9px; color:#fff; background:linear-gradient(135deg,var(--blue),var(--green)); font-size:17px; transition:transform .3s ease; }
html[data-page="r3"] .r3x-content-details[open] summary span { transform:rotate(45deg); }
html[data-page="r3"] .r3x-content-details > div { padding:2px 16px 17px; animation:r3x-panel-in .3s ease both; }
html[data-page="r3"] .r3x-content-details li { font-size:11px; }

/* Fechamento */
html[data-page="r3"] .r3x-final { padding:24px 0 92px; background:var(--surface-soft); }
html[data-page="r3"] .r3x-final-card { position:relative; overflow:hidden; padding:49px 52px; display:grid; grid-template-columns:minmax(0,1fr) auto; gap:36px; align-items:center; border:1px solid rgba(55,191,166,.28); border-radius:29px; color:#f7fbff; background:radial-gradient(circle at 88% 20%,rgba(0,179,136,.19),transparent 31%),radial-gradient(circle at 5% 90%,rgba(47,128,237,.17),transparent 35%),linear-gradient(120deg,#061927,#082942 58%,#07333d); box-shadow:0 26px 72px rgba(5,28,43,.2); }
html[data-page="r3"] .r3x-final-card > div > span { color:#52dfbb; font-size:10px; font-weight:900; letter-spacing:.14em; text-transform:uppercase; }
html[data-page="r3"] .r3x-final-card h2 { max-width:780px; margin:14px 0 0; color:#fff; font-size:clamp(31px,3.2vw,44px); line-height:1.08; letter-spacing:-.045em; }
html[data-page="r3"] .r3x-final-card p { max-width:760px; margin:16px 0 0; color:#c4d7e2; font-size:14px; line-height:1.65; }

@keyframes r3x-offer-pulse { 0%,100%{transform:translateY(0);box-shadow:0 14px 34px rgba(62,223,179,.26)} 50%{transform:translateY(-3px);box-shadow:0 19px 43px rgba(62,223,179,.42)} }
@keyframes r3x-card-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes r3x-orb-drift { 0%,100%{transform:translate3d(0,0,0) scale(1)} 50%{transform:translate3d(18px,20px,0) scale(1.06)} }
@keyframes r3x-active-glow { 0%,100%{box-shadow:inset 0 1px 0 rgba(255,255,255,.46),inset 0 0 28px rgba(119,245,214,.17),0 21px 46px rgba(0,0,0,.29),0 0 30px rgba(67,225,188,.3)} 50%{box-shadow:inset 0 1px 0 rgba(255,255,255,.56),inset 0 0 34px rgba(141,255,226,.25),0 23px 50px rgba(0,0,0,.31),0 0 46px rgba(73,237,199,.5)} }
@keyframes r3x-button-shine { 0%,20%{transform:translateX(-58%) rotate(9deg)} 56%,100%{transform:translateX(58%) rotate(9deg)} }
@keyframes r3x-panel-in { from{opacity:0;transform:translateY(9px)} to{opacity:1;transform:translateY(0)} }

@media (max-width: 1120px) {
  html[data-page="r3"] .r3x-hero-grid { grid-template-columns:minmax(0,1fr) minmax(360px,.8fr); gap:38px; }
  html[data-page="r3"] .r3x-price-grid { grid-template-columns:1fr 1fr; }
  html[data-page="r3"] .r3x-price-card:last-child { grid-column:1 / -1; width:calc(50% - 10px); justify-self:center; }
}
@media (max-width: 920px) {
  html[data-page="r3"] .r3x-hero { min-height:0; padding:132px 0 74px; }
  html[data-page="r3"] .r3x-hero-grid { grid-template-columns:1fr; }
  html[data-page="r3"] .r3x-hero-copy { max-width:760px; }
  html[data-page="r3"] .r3x-hero-visual { min-height:480px; }
  html[data-page="r3"] .r3x-hero-screen { right:0; width:92%; }
  html[data-page="r3"] .r3x-pillar-grid,
  html[data-page="r3"] .r3x-area-grid { grid-template-columns:1fr; }
  html[data-page="r3"] .r3x-pillar-card { min-height:0; }
  html[data-page="r3"] .r3x-resource-tabs { grid-template-columns:repeat(5,minmax(155px,1fr)); overflow-x:auto; padding:8px 4px 20px; scroll-snap-type:x mandatory; }
  html[data-page="r3"] .r3x-resource-tabs button { scroll-snap-align:start; }
  html[data-page="r3"] .r3x-expert-grid,
  html[data-page="r3"] .r3x-progress-grid { grid-template-columns:1fr; }
  html[data-page="r3"] .r3x-expert-grid > div:first-child { max-width:760px; }
  html[data-page="r3"] .r3x-teacher-carousel { max-width:760px; margin:auto; }
  html[data-page="r3"] .r3x-dashboard { order:2; }
  html[data-page="r3"] .r3x-final-card { grid-template-columns:1fr; }
  html[data-page="r3"] .r3x-final-card .r3x-button { width:max-content; }
}
@media (max-width: 680px) {
  html[data-page="r3"] .r3x-section { padding:78px 0; }
  html[data-page="r3"] .r3x-section-head { margin-bottom:36px; }
  html[data-page="r3"] .r3x-section-head h2,
  html[data-page="r3"] .r3x-title-left { font-size:27px; line-height:1.16; }
  html[data-page="r3"] .r3x-hero { padding:118px 0 58px; }
  html[data-page="r3"] .r3x-hero h1 { font-size:38px; line-height:1.08; }
  html[data-page="r3"] .r3x-hero-copy > p { font-size:15px; }
  html[data-page="r3"] .r3x-hero-offer { grid-template-columns:1fr 1fr; }
  html[data-page="r3"] .r3x-hero-offer > b { grid-column:1 / -1; min-height:48px; }
  html[data-page="r3"] .r3x-hero-offer strong { font-size:15px; }
  html[data-page="r3"] .r3x-hero-actions { display:grid; }
  html[data-page="r3"] .r3x-button { width:100%; }
  html[data-page="r3"] .r3x-hero-visual { min-height:320px; margin-top:12px; }
  html[data-page="r3"] .r3x-hero-screen { top:34px; width:100%; transform:none; }
  html[data-page="r3"] .r3x-hero-screen img { height:245px; }
  html[data-page="r3"] .r3x-float-card { min-width:0; padding:10px 11px; }
  html[data-page="r3"] .r3x-float-card > span { width:29px; height:29px; }
  html[data-page="r3"] .r3x-float-card strong { font-size:10px; }
  html[data-page="r3"] .r3x-float-clinic { left:5px; }
  html[data-page="r3"] .r3x-float-surgery { right:0; bottom:8px; }
  html[data-page="r3"] .r3x-float-peds { display:none; }
  html[data-page="r3"] .r3x-pillar-card,
  html[data-page="r3"] .r3x-area-card,
  html[data-page="r3"] .r3x-price-card { padding:24px; }
  html[data-page="r3"] .r3x-area-card { grid-template-columns:54px 1fr; gap:16px; min-height:0; }
  html[data-page="r3"] .r3x-area-icon { width:54px; height:54px; }
  html[data-page="r3"] .r3x-resource-image-wrap { height:285px; }
  html[data-page="r3"] .r3x-stage-toolbar > b { display:none; }
  html[data-page="r3"] .r3x-teacher-slide { gap:7px; }
  html[data-page="r3"] .r3x-teacher-slide figure { height:220px; border-radius:13px; }
  html[data-page="r3"] .r3x-teacher-slide figcaption { display:none; }
  html[data-page="r3"] .r3x-dashboard img { height:285px; }
  html[data-page="r3"] .r3x-price-grid { grid-template-columns:1fr; }
  html[data-page="r3"] .r3x-price-card:last-child { grid-column:auto; width:auto; }
  html[data-page="r3"] .r3x-final { padding:12px 0 72px; }
  html[data-page="r3"] .r3x-final-card { padding:34px 25px; gap:27px; }
  html[data-page="r3"] .r3x-final-card .r3x-button { width:100%; }
}
@media (prefers-reduced-motion: reduce) {
  html[data-page="r3"] .r3x-hero-offer > b,
  html[data-page="r3"] .r3x-float-card,
  html[data-page="r3"] .r3x-orb,
  html[data-page="r3"] .r3x-resource-tabs button.is-active,
  html[data-page="r3"] .r3x-resource-tabs button.is-active::before,
  html[data-page="r3"] .r3x-content-details > div { animation:none !important; }
  html[data-page="r3"] .r3x-teacher-track { transition:none; }
}

/* R3 — alinhamento visual integral com a página R1 Essencial */
html[data-page="r3"] .r3x-section {
  padding: 108px 0;
}
html[data-page="r3"] .r3x-section-head {
  max-width: 980px;
  margin: 0 auto 52px;
}
html[data-page="r3"] .r3x-section-head > span,
html[data-page="r3"] .r3x-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
html[data-page="r3"] .r3x-section-head > span::before,
html[data-page="r3"] .r3x-kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="r3"] .r3x-section-head h2,
html[data-page="r3"] .r3x-title-left {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 17px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.035em;
  text-align: center;
  text-transform: uppercase;
}
html[data-page="r3"] .r3x-section-head h2::after,
html[data-page="r3"] .r3x-title-left::after {
  bottom: 0;
  left: 50%;
  width: clamp(120px, 38%, 205px);
  height: 4px;
  box-shadow: none;
  transform: translateX(-50%);
}
html[data-page="r3"] .r3x-section-head p {
  max-width: 850px;
  margin: 26px auto 0;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.72;
}
html[data-page="r3"] .r3x-expert-grid .r3x-title-left,
html[data-page="r3"] .r3x-progress-grid .r3x-title-left {
  width: auto;
  margin: 0;
  text-align: left;
}
html[data-page="r3"] .r3x-expert-grid .r3x-title-left::after,
html[data-page="r3"] .r3x-progress-grid .r3x-title-left::after {
  left: 0;
  transform: none;
}

/* Hero com a mesma escala, ritmo e composição do R1 */
html[data-page="r3"] .r3x-hero {
  min-height: 785px;
  padding: 160px 0 96px;
  display: block;
  color: #f7fbff;
  background:
    radial-gradient(circle at 8% 18%, rgba(47, 128, 237, 0.32), transparent 31%),
    radial-gradient(circle at 82% 28%, rgba(0, 179, 136, 0.2), transparent 34%),
    linear-gradient(118deg, #061927 0%, #082942 52%, #07333d 100%);
}
html[data-page="r3"] .r3x-hero::after {
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--green), transparent);
  opacity: 0.8;
  mask-image: none;
}
html[data-page="r3"] .r3x-hero-grid {
  min-height: 530px;
  grid-template-columns: minmax(0, 1.03fr) minmax(500px, 0.97fr);
  gap: 42px;
}
html[data-page="r3"] .r3x-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
}
html[data-page="r3"] .r3x-eyebrow {
  padding: 0;
  gap: 11px;
  margin: 0 0 23px;
  border: 0;
  border-radius: 0;
  color: #57dfbc;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
html[data-page="r3"] .r3x-eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="r3"] .r3x-eyebrow i { display: none; }
html[data-page="r3"] .r3x-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #f7fbff;
  font-size: clamp(38px, 3.35vw, 42px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
html[data-page="r3"] .r3x-hero-copy > p {
  max-width: 690px;
  margin: 25px 0 0;
  color: #c8dbe7;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.66;
}
html[data-page="r3"] .r3x-hero-offer {
  max-width: 715px;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 11px;
}
html[data-page="r3"] .r3x-hero-offer > div,
html[data-page="r3"] .r3x-hero-offer > b {
  min-height: 78px;
  padding: 14px 17px;
  border-color: rgba(191, 229, 244, 0.27);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 14px 30px rgba(0, 0, 0, 0.12);
}
html[data-page="r3"] .r3x-hero-offer span {
  color: #8bdaf6;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
html[data-page="r3"] .r3x-hero-offer strong {
  margin-top: 6px;
  color: #fff;
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 850;
}
html[data-page="r3"] .r3x-hero-offer > b {
  position: relative;
  min-width: 142px;
  padding: 13px 18px;
  overflow: hidden;
  border-color: rgba(96, 235, 192, 0.48);
  color: #072d31;
  background: linear-gradient(135deg, #73e9c6 0%, #b7f06c 100%);
  box-shadow: 0 15px 38px rgba(55, 216, 164, 0.27);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
html[data-page="r3"] .r3x-hero-offer > b::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  width: 35%;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-18deg);
  animation: r1e-shine 4.8s ease-in-out infinite;
}
html[data-page="r3"] .r3x-hero-actions { margin-top: 25px; gap: 12px; }
html[data-page="r3"] .r3x-button {
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.015em;
}
html[data-page="r3"] .r3x-button-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 17px 38px rgba(0, 151, 178, 0.3);
}
html[data-page="r3"] .r3x-button-primary:hover { box-shadow: 0 21px 46px rgba(0, 179, 136, 0.36); }
html[data-page="r3"] .r3x-area-chips {
  max-width: 660px;
  margin-top: 20px;
  gap: 0;
}
html[data-page="r3"] .r3x-area-chips span {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #9db7c6;
  background: none;
  font-size: 11px;
  font-weight: 650;
}
html[data-page="r3"] .r3x-area-chips span:not(:last-child)::after {
  content: "•";
  margin: 0 9px;
  color: #3ed6ad;
}
html[data-page="r3"] .r3x-hero-visual { min-height: 560px; }
html[data-page="r3"] .r3x-hero-screen {
  z-index: 1;
  top: 42px;
  right: -120px;
  width: 650px;
  border-color: rgba(217, 239, 250, 0.22);
  border-radius: 24px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
  transform: perspective(1300px) rotateY(-9deg) rotateX(2deg);
  animation: r1e-screen-float 7s ease-in-out infinite;
}
html[data-page="r3"] .r3x-screen-top {
  height: 36px;
  padding: 0 14px;
  gap: 7px;
  color: #466679;
  background: #eef5f8;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
html[data-page="r3"] .r3x-hero-screen img {
  width: 100%;
  height: 365px;
  object-fit: cover;
  object-position: left top;
}
html[data-page="r3"] .r3x-resident-doctors {
  position: absolute;
  z-index: 3;
  right: -92px;
  bottom: -117px;
  width: 620px;
  max-width: none;
  filter: drop-shadow(0 28px 26px rgba(0, 0, 0, 0.34));
}
html[data-page="r3"] .r3x-float-card {
  z-index: 5;
  min-width: 184px;
  min-height: 58px;
  padding: 10px 14px;
  gap: 11px;
  border-color: rgba(105, 231, 196, 0.62);
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(120deg, rgba(17, 128, 177, 0.95), rgba(0, 168, 132, 0.95));
  box-shadow: 0 18px 42px rgba(0, 179, 136, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 0 28px rgba(79, 224, 190, 0.15);
  font-size: 13px;
  font-weight: 900;
}
html[data-page="r3"] .r3x-float-card > b {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  flex: 0 0 35px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 11px;
  color: #fff;
  background: rgba(5, 58, 72, 0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
  font-size: 10px;
  font-weight: 950;
}
html[data-page="r3"] .r3x-float-card > span {
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  color: inherit;
  background: none;
  box-shadow: none;
}
html[data-page="r3"] .r3x-float-card small {
  color: #d9fff4;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.16em;
}
html[data-page="r3"] .r3x-float-card strong {
  margin-top: 2px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
html[data-page="r3"] .r3x-float-clinic { top: 87px; left: -5px; }
html[data-page="r3"] .r3x-float-surgery { right: -20px; bottom: 111px; }
html[data-page="r3"] .r3x-float-peds { left: 11px; bottom: 31px; }

/* Cards e ícones no mesmo vocabulário visual do R1 */
html[data-page="r3"] .r3x-pillar-grid { gap: 22px; }
html[data-page="r3"] .r3x-pillar-card {
  min-height: 0;
  padding: 32px 30px 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(47, 128, 237, 0.1), transparent 34%),
    linear-gradient(160deg, var(--surface) 0%, var(--surface-soft) 100%);
  box-shadow: 0 18px 50px rgba(8, 41, 66, 0.09);
  isolation: isolate;
}
html[data-page="r3"] .r3x-pillar-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px auto 22px 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(var(--blue), var(--green));
  transform: scaleY(0.38);
  transform-origin: center;
  transition: transform 0.35s ease;
}
html[data-page="r3"] .r3x-pillar-card::after {
  inset: auto 0 0;
  width: 100%;
  height: 4px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--blue), var(--green), #74d85c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
html[data-page="r3"] .r3x-pillar-card:hover::before { transform: scaleY(1); }
html[data-page="r3"] .r3x-pillar-card:hover::after { transform: scaleX(1); }
html[data-page="r3"] .r3x-pillar-card .r3x-icon {
  position: relative;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 21px;
  box-shadow: 0 16px 34px rgba(47, 128, 237, 0.15), inset 0 0 0 6px rgba(255, 255, 255, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
html[data-page="r3"] .r3x-pillar-card .r3x-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}
html[data-page="r3"] .r3x-pillar-card:hover .r3x-icon {
  box-shadow: 0 20px 42px rgba(0, 179, 136, 0.23), inset 0 0 0 6px rgba(255, 255, 255, 0.22);
  transform: translateY(-3px) rotate(-3deg) scale(1.05);
}
html[data-page="r3"] .r3x-pillar-card .r3x-icon svg { width: 31px; height: 31px; stroke-width: 1.8; }
html[data-page="r3"] .r3x-pillar-card > small {
  position: absolute;
  top: 34px;
  right: 30px;
  margin: 0;
  padding: 7px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
html[data-page="r3"] .r3x-pillar-card h3 { margin: 20px 0 18px; font-size: 25px; line-height: 1.08; }

html[data-page="r3"] .r3x-areas {
  color: #f7fbff;
  background:
    radial-gradient(circle at 92% 7%, rgba(0, 179, 136, 0.24), transparent 28%),
    radial-gradient(circle at 4% 85%, rgba(47, 128, 237, 0.22), transparent 32%),
    linear-gradient(125deg, #061927, #082942 56%, #07333d);
}
html[data-page="r3"] .r3x-areas .r3x-section-head h2 { color: #fff; }
html[data-page="r3"] .r3x-areas .r3x-section-head p { color: #bfd1dc; }
html[data-page="r3"] .r3x-area-grid {
  padding: 18px;
  gap: 12px;
  border: 1px solid rgba(199, 229, 242, 0.14);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}
html[data-page="r3"] .r3x-area-card {
  min-height: 235px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  border: 1px solid rgba(209, 235, 247, 0.14);
  border-radius: 22px;
  color: #d9eaf3;
  background:
    radial-gradient(circle at 100% 0, rgba(56, 198, 181, 0.11), transparent 42%),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
html[data-page="r3"] .r3x-area-card::before { inset: auto 0 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--green), #74d85c); opacity: 1; transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
html[data-page="r3"] .r3x-area-card:hover { border-color: rgba(95, 224, 192, 0.56); color: #fff; background: linear-gradient(150deg, rgba(47, 128, 237, 0.24), rgba(0, 179, 136, 0.18)); box-shadow: 0 18px 42px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.1); transform: translateY(-7px); }
html[data-page="r3"] .r3x-area-card:hover::before { transform: scaleX(1); }
html[data-page="r3"] .r3x-area-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 1px solid rgba(169, 235, 220, 0.26);
  border-radius: 18px;
  color: #69e4c0;
  background: linear-gradient(145deg, rgba(47, 128, 237, 0.26), rgba(0, 179, 136, 0.23));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.035), 0 12px 28px rgba(0, 0, 0, 0.14);
  transition: transform .35s ease, color .35s ease;
}
html[data-page="r3"] .r3x-area-card:hover .r3x-area-icon { color:#fff; transform:rotate(-4deg) scale(1.07); }
html[data-page="r3"] .r3x-area-icon svg { width:30px; height:30px; stroke-width:1.7; }
html[data-page="r3"] .r3x-area-card > div:last-child { display:flex; flex:1; flex-direction:column; }
html[data-page="r3"] .r3x-area-card small { position:absolute; top:22px; right:19px; color:rgba(206,230,240,.58); font-size:10px; font-weight:900; letter-spacing:.14em; }
html[data-page="r3"] .r3x-area-card h3 { margin:15px 0 0; color:inherit; font-size:19px; line-height:1.16; }
html[data-page="r3"] .r3x-area-card p { margin:11px 0 0; color:#aac4d1; font-size:12px; line-height:1.58; }
html[data-page="r3"] .r3x-area-card div > span { margin-top:auto; padding-top:17px; color:#61dfbb; font-size:12px; }

html[data-page="r3"] .r3x-price-card,
html[data-page="r3"] .r3x-dashboard,
html[data-page="r3"] .r3x-teacher-carousel {
  border-radius: 27px;
  background: linear-gradient(160deg, var(--surface), var(--surface-soft));
  box-shadow: 0 22px 60px rgba(8, 41, 66, 0.12);
}
html[data-page="r3"] .r3x-access-options a {
  min-height: 58px;
  border-radius: 15px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 17px 38px rgba(0, 151, 178, 0.25);
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 1120px) {
  html[data-page="r3"] .r3x-hero-screen { right: -200px; }
  html[data-page="r3"] .r3x-resident-doctors { right: -125px; }
}
@media (max-width: 920px) {
  html[data-page="r3"] .r3x-hero { min-height: 0; padding: 136px 0 70px; }
  html[data-page="r3"] .r3x-hero-grid { grid-template-columns: 1fr; gap: 8px; }
  html[data-page="r3"] .r3x-hero-copy { max-width: 760px; }
  html[data-page="r3"] .r3x-hero-visual { min-height: 560px; }
  html[data-page="r3"] .r3x-hero-screen { top: 72px; right: 2%; width: 86%; }
  html[data-page="r3"] .r3x-resident-doctors { right: 1%; bottom: -100px; width: 590px; }
  html[data-page="r3"] .r3x-float-clinic { top: 112px; left: 4%; }
  html[data-page="r3"] .r3x-float-surgery { right: 3%; bottom: 92px; }
  html[data-page="r3"] .r3x-float-peds { left: 5%; bottom: 21px; }
  html[data-page="r3"] .r3x-expert-grid .r3x-title-left,
  html[data-page="r3"] .r3x-progress-grid .r3x-title-left { margin-inline: auto; text-align: center; }
  html[data-page="r3"] .r3x-expert-grid .r3x-title-left::after,
  html[data-page="r3"] .r3x-progress-grid .r3x-title-left::after { left: 50%; transform: translateX(-50%); }
}
@media (max-width: 680px) {
  html[data-page="r3"] .r3x-section { padding: 78px 0; }
  html[data-page="r3"] .r3x-section-head { margin-bottom: 36px; }
  html[data-page="r3"] .r3x-section-head h2,
  html[data-page="r3"] .r3x-title-left { width:100%; font-size:23px; line-height:1.2; }
  html[data-page="r3"] .r3x-hero { padding: 120px 0 55px; }
  html[data-page="r3"] .r3x-hero h1 { font-size: 34px; line-height: 1.13; }
  html[data-page="r3"] .r3x-hero-copy > p { font-size: 15px; }
  html[data-page="r3"] .r3x-hero-offer { grid-template-columns: 1fr 1fr; }
  html[data-page="r3"] .r3x-hero-offer > b { grid-column:1 / -1; min-height:42px; }
  html[data-page="r3"] .r3x-hero-actions { display:grid; }
  html[data-page="r3"] .r3x-button { width:100%; }
  html[data-page="r3"] .r3x-hero-visual { min-height:445px; }
  html[data-page="r3"] .r3x-hero-screen { top:72px; right:-27%; width:122%; transform:none; }
  html[data-page="r3"] .r3x-hero-screen img { height:260px; }
  html[data-page="r3"] .r3x-resident-doctors { right:-27%; bottom:-62px; width:510px; }
  html[data-page="r3"] .r3x-float-card { min-width:148px; min-height:50px; padding:8px 10px; }
  html[data-page="r3"] .r3x-float-card > b { width:30px; height:30px; flex-basis:30px; }
  html[data-page="r3"] .r3x-float-card strong { font-size:11px; }
  html[data-page="r3"] .r3x-float-clinic { top:104px; left:0; }
  html[data-page="r3"] .r3x-float-surgery { right:0; bottom:83px; }
  html[data-page="r3"] .r3x-float-peds { display:flex; left:0; bottom:22px; }
  html[data-page="r3"] .r3x-pillar-card { padding:25px 23px; }
  html[data-page="r3"] .r3x-area-grid { grid-template-columns:1fr; }
  html[data-page="r3"] .r3x-area-card { min-height:210px; }
}

/* ============================================================
   Intensivo ENAMED — página editorial no padrão R1 / R3
   ============================================================ */
html[data-product="enamed"] .enx-main { overflow:clip; background:var(--surface); }
html[data-product="enamed"] .enx-main * { box-sizing:border-box; }
html[data-product="enamed"] .enx-section { position:relative; padding:108px 0; }
html[data-product="enamed"] .enx-section-head { max-width:980px; margin:0 auto 52px; text-align:center; }
html[data-product="enamed"] .enx-section-title {
  position:relative;
  width:max-content;
  max-width:100%;
  margin:0 auto;
  padding:0 0 17px;
  color:var(--ink);
  font-size:26px;
  font-weight:500;
  line-height:1.16;
  letter-spacing:-.035em;
  text-align:center;
  text-transform:uppercase;
}
html[data-product="enamed"] .enx-section-title::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:clamp(120px,38%,205px);
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--blue),var(--green));
  transform:translateX(-50%);
}
html[data-product="enamed"] .enx-section-head > p { max-width:850px; margin:26px auto 0; color:var(--muted); font-size:clamp(15px,1.35vw,18px); line-height:1.72; }

/* Hero */
html[data-product="enamed"] .enx-hero {
  position:relative;
  min-height:785px;
  padding:160px 0 96px;
  overflow:hidden;
  color:#f7fbff;
  background:
    radial-gradient(circle at 8% 18%,rgba(47,128,237,.32),transparent 31%),
    radial-gradient(circle at 82% 28%,rgba(0,179,136,.2),transparent 34%),
    linear-gradient(118deg,#061927 0%,#082942 52%,#07333d 100%);
}
html[data-product="enamed"] .enx-hero::after { content:""; position:absolute; inset:auto 0 0; height:1px; background:linear-gradient(90deg,transparent,var(--blue),var(--green),transparent); opacity:.8; }
html[data-product="enamed"] .enx-hero-grid { position:relative; z-index:2; min-height:530px; display:grid; grid-template-columns:minmax(0,1.03fr) minmax(500px,.97fr); gap:42px; align-items:center; }
html[data-product="enamed"] .enx-hero-copy { position:relative; z-index:5; max-width:720px; }
html[data-product="enamed"] .enx-eyebrow { display:inline-flex; align-items:center; gap:11px; margin-bottom:23px; color:#57dfbc; font-size:12px; font-weight:900; letter-spacing:.16em; }
html[data-product="enamed"] .enx-eyebrow::before { content:""; width:36px; height:3px; border-radius:99px; background:linear-gradient(90deg,var(--blue),var(--green)); }
html[data-product="enamed"] .enx-hero h1 { max-width:760px; margin:0; color:#f7fbff; font-size:clamp(38px,3.35vw,42px); font-weight:400; line-height:1.12; letter-spacing:-.035em; text-wrap:balance; }
html[data-product="enamed"] .enx-hero-copy > p { max-width:690px; margin:25px 0 0; color:#c8dbe7; font-size:clamp(16px,1.35vw,19px); line-height:1.66; }
html[data-product="enamed"] .enx-hero-offer { max-width:620px; margin-top:28px; display:grid; grid-template-columns:minmax(0,1fr) auto; gap:11px; }
html[data-product="enamed"] .enx-hero-offer > div,
html[data-product="enamed"] .enx-hero-offer > b { min-height:82px; padding:14px 18px; display:flex; flex-direction:column; justify-content:center; border:1px solid rgba(191,229,244,.27); border-radius:15px; background:linear-gradient(145deg,rgba(255,255,255,.105),rgba(255,255,255,.055)); box-shadow:inset 0 1px 0 rgba(255,255,255,.11),0 14px 30px rgba(0,0,0,.12); }
html[data-product="enamed"] .enx-hero-offer span { color:#8bdaf6; font-size:12px; font-weight:850; letter-spacing:.12em; text-transform:uppercase; }
html[data-product="enamed"] .enx-hero-offer strong { margin-top:4px; color:#fff; font-size:clamp(20px,1.55vw,24px); font-weight:850; }
html[data-product="enamed"] .enx-hero-offer small { margin-top:4px; color:#9db7c6; font-size:10px; }
html[data-product="enamed"] .enx-hero-offer > b { position:relative; min-width:156px; overflow:hidden; border-color:rgba(96,235,192,.48); color:#072d31; background:linear-gradient(135deg,#73e9c6,#b7f06c); box-shadow:0 15px 38px rgba(55,216,164,.27); font-size:14px; font-weight:950; letter-spacing:.035em; text-transform:uppercase; animation:r1e-discount-pulse 4s ease-in-out infinite; }
html[data-product="enamed"] .enx-hero-offer > b::after { content:""; position:absolute; inset:-40% auto -40% -45%; width:35%; background:rgba(255,255,255,.5); transform:skewX(-18deg); animation:r1e-shine 4.8s ease-in-out infinite; }
html[data-product="enamed"] .enx-hero-actions { margin-top:25px; display:flex; flex-wrap:wrap; gap:12px; }
html[data-product="enamed"] .enx-button { min-height:58px; padding:0 28px; display:inline-flex; align-items:center; justify-content:center; gap:15px; border:1px solid transparent; border-radius:15px; font-size:14px; font-weight:750; letter-spacing:.015em; transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
html[data-product="enamed"] .enx-button-primary { color:#fff; background:linear-gradient(90deg,var(--blue),var(--green)); box-shadow:0 17px 38px rgba(0,151,178,.3); }
html[data-product="enamed"] .enx-button-primary:hover { box-shadow:0 21px 46px rgba(0,179,136,.36); transform:translateY(-3px); }
html[data-product="enamed"] .enx-button-ghost { border-color:rgba(201,232,244,.28); color:#deedf4; background:rgba(255,255,255,.055); }
html[data-product="enamed"] .enx-button-ghost:hover { border-color:rgba(106,229,197,.65); transform:translateY(-3px); }
html[data-product="enamed"] .enx-hero-proof { margin-top:20px; display:flex; flex-wrap:wrap; gap:0; color:#9db7c6; font-size:11px; font-weight:650; }
html[data-product="enamed"] .enx-hero-proof span:not(:last-child)::after { content:"•"; margin:0 9px; color:#3ed6ad; }
html[data-product="enamed"] .enx-hero-visual { position:relative; min-height:560px; }
html[data-product="enamed"] .enx-hero-screen { position:absolute; z-index:1; top:53px; right:-112px; width:665px; overflow:hidden; border:1px solid rgba(217,239,250,.22); border-radius:24px; background:#fff; box-shadow:0 36px 90px rgba(0,0,0,.34); transform:perspective(1300px) rotateY(-9deg) rotateX(2deg); animation:r1e-screen-float 7s ease-in-out infinite; }
html[data-product="enamed"] .enx-screen-top { height:36px; padding:0 14px; display:flex; align-items:center; gap:7px; color:#466679; background:#eef5f8; font-size:9px; font-weight:850; letter-spacing:.08em; }
html[data-product="enamed"] .enx-screen-top i { width:7px; height:7px; border-radius:50%; background:#a7c0cd; }
html[data-product="enamed"] .enx-screen-top span { margin-left:5px; }
html[data-product="enamed"] .enx-hero-screen > img { width:100%; height:385px; display:block; object-fit:cover; object-position:left top; }
html[data-product="enamed"] .enx-professor-stack { position:absolute; z-index:3; right:-55px; bottom:-18px; width:520px; height:300px; display:flex; align-items:flex-end; justify-content:flex-end; gap:9px; pointer-events:none; }
html[data-product="enamed"] .enx-professor-stack figure { position:relative; width:155px; height:236px; margin:0; overflow:hidden; border:2px solid rgba(255,255,255,.72); border-radius:22px 22px 10px 10px; background:#dbeaf0; box-shadow:0 22px 42px rgba(0,0,0,.3); transform:rotate(-3deg); }
html[data-product="enamed"] .enx-professor-stack figure:nth-child(2) { width:175px; height:270px; z-index:2; transform:translateY(-15px); }
html[data-product="enamed"] .enx-professor-stack figure:nth-child(3) { transform:rotate(3deg); }
html[data-product="enamed"] .enx-professor-stack img { width:100%; height:100%; object-fit:cover; object-position:center top; }
html[data-product="enamed"] .enx-professor-stack figcaption { position:absolute; inset:auto 0 0; padding:18px 8px 9px; color:#fff; background:linear-gradient(transparent,rgba(5,32,47,.9)); font-size:9px; font-weight:850; text-align:center; }
html[data-product="enamed"] .enx-float-card { position:absolute; z-index:5; min-height:48px; padding:11px 14px; display:inline-flex; align-items:center; gap:9px; border:1px solid rgba(105,231,196,.62); border-radius:16px; color:#fff; background:linear-gradient(120deg,rgba(17,128,177,.95),rgba(0,168,132,.95)); box-shadow:0 18px 42px rgba(0,179,136,.3),inset 0 1px 0 rgba(255,255,255,.24); font-size:12px; font-weight:900; animation:r1e-chip-float 5s ease-in-out infinite; }
html[data-product="enamed"] .enx-float-card svg { width:21px; height:21px; fill:none; stroke:#dffff5; stroke-width:1.8; stroke-linecap:round; }
html[data-product="enamed"] .enx-float-one { top:92px; left:-8px; }
html[data-product="enamed"] .enx-float-two { right:-25px; bottom:255px; animation-delay:-2s; }
html[data-product="enamed"] .enx-orb { position:absolute; border-radius:50%; pointer-events:none; }
html[data-product="enamed"] .enx-orb-one { width:320px; height:320px; top:-110px; right:28%; border:1px solid rgba(47,128,237,.22); animation:r1e-orb-drift 11s ease-in-out infinite; }
html[data-product="enamed"] .enx-orb-two { width:180px; height:180px; bottom:-80px; left:7%; background:radial-gradient(circle,rgba(0,179,136,.18),transparent 68%); animation:r1e-orb-drift 9s ease-in-out infinite reverse; }

/* Faixa Revalida */
html[data-product="enamed"] .enx-revalida-strip { position:relative; z-index:3; padding:0; background:var(--surface); }
html[data-product="enamed"] .enx-revalida-inner { min-height:150px; margin-top:-34px; padding:26px 30px; display:grid; grid-template-columns:auto minmax(0,1fr) auto; align-items:center; gap:22px; border:1px solid color-mix(in srgb,var(--blue) 22%,var(--border)); border-radius:25px; background:linear-gradient(135deg,var(--surface),var(--surface-soft)); box-shadow:0 24px 62px rgba(8,41,66,.14); }
html[data-product="enamed"] .enx-revalida-icon { width:64px; height:64px; display:grid; place-items:center; border-radius:20px; color:#00a47d; background:rgba(0,179,136,.12); box-shadow:inset 0 0 0 6px rgba(255,255,255,.2); }
html[data-product="enamed"] .enx-revalida-icon svg { width:31px; height:31px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
html[data-product="enamed"] .enx-revalida-inner strong { color:var(--ink); font-size:20px; letter-spacing:-.02em; }
html[data-product="enamed"] .enx-revalida-inner p { margin:7px 0 0; color:var(--muted); font-size:13px; line-height:1.62; }
html[data-product="enamed"] .enx-revalida-inner > a { min-height:44px; padding:0 16px; display:inline-flex; align-items:center; gap:11px; border:1px solid color-mix(in srgb,var(--green) 34%,var(--border)); border-radius:12px; color:var(--green); background:color-mix(in srgb,var(--green) 8%,transparent); font-size:11px; font-weight:850; }

/* Três pilares */
html[data-product="enamed"] .enx-direction { background:radial-gradient(circle at 8% 22%,rgba(47,128,237,.08),transparent 25%),var(--surface); }
html[data-product="enamed"] .enx-pillar-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
html[data-product="enamed"] .enx-pillar-card { position:relative; min-height:0; padding:32px 30px 30px; overflow:hidden; border:1px solid var(--border); border-radius:28px; background:radial-gradient(circle at 100% 0,rgba(47,128,237,.1),transparent 34%),linear-gradient(160deg,var(--surface),var(--surface-soft)); box-shadow:0 18px 50px rgba(8,41,66,.09); isolation:isolate; transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease; }
html[data-product="enamed"] .enx-pillar-card::before { content:""; position:absolute; z-index:-1; inset:22px auto 22px 0; width:4px; border-radius:0 999px 999px 0; background:linear-gradient(var(--blue),var(--green)); transform:scaleY(.38); transition:transform .35s ease; }
html[data-product="enamed"] .enx-pillar-card::after { content:""; position:absolute; inset:auto 0 0; height:4px; background:linear-gradient(90deg,var(--blue),var(--green),#74d85c); transform:scaleX(0); transform-origin:left; transition:transform .4s ease; }
html[data-product="enamed"] .enx-pillar-card:hover { border-color:color-mix(in srgb,var(--green) 48%,var(--border)); box-shadow:0 30px 70px rgba(8,41,66,.15); transform:translateY(-9px); }
html[data-product="enamed"] .enx-pillar-card:hover::before { transform:scaleY(1); }
html[data-product="enamed"] .enx-pillar-card:hover::after { transform:scaleX(1); }
html[data-product="enamed"] .enx-icon { flex:0 0 66px; width:66px; height:66px; display:grid; place-items:center; position:relative; border:1px solid rgba(255,255,255,.42); border-radius:21px; box-shadow:0 16px 34px rgba(47,128,237,.15),inset 0 0 0 6px rgba(255,255,255,.2); transition:transform .35s ease,box-shadow .35s ease; }
html[data-product="enamed"] .enx-icon::after { content:""; position:absolute; top:8px; right:8px; width:7px; height:7px; border:2px solid var(--surface); border-radius:50%; background:currentColor; box-shadow:0 0 12px currentColor; }
html[data-product="enamed"] .enx-icon svg,
html[data-product="enamed"] .enx-resource-icon svg,
html[data-product="enamed"] .enx-content-icon svg { width:31px; height:31px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
html[data-product="enamed"] .enx-icon-blue { color:#2f80ed; background:rgba(47,128,237,.12); }
html[data-product="enamed"] .enx-icon-green { color:#00a47d; background:rgba(0,179,136,.12); }
html[data-product="enamed"] .enx-icon-orange { color:#ea7c22; background:rgba(234,124,34,.12); }
html[data-product="enamed"] .enx-icon-purple { color:#8667f5; background:rgba(134,103,245,.12); }
html[data-product="enamed"] .enx-icon-teal { color:#0da6b5; background:rgba(13,166,181,.12); }
html[data-product="enamed"] .enx-pillar-card:hover .enx-icon { transform:translateY(-3px) rotate(-3deg) scale(1.05); box-shadow:0 20px 42px rgba(0,179,136,.23),inset 0 0 0 6px rgba(255,255,255,.22); }
html[data-product="enamed"] .enx-pillar-card > small { position:absolute; top:34px; right:30px; padding:7px 9px; border:1px solid var(--border); border-radius:999px; color:var(--muted); background:var(--surface); font-size:10px; font-weight:900; letter-spacing:.12em; }
html[data-product="enamed"] .enx-pillar-card h3 { margin:20px 0 18px; color:var(--ink); font-size:25px; line-height:1.08; letter-spacing:-.035em; }
html[data-product="enamed"] .enx-pillar-card ul { margin:0; padding:0; display:grid; gap:13px; list-style:none; }
html[data-product="enamed"] .enx-pillar-card li { position:relative; padding-left:25px; color:var(--muted); font-size:13px; line-height:1.5; }
html[data-product="enamed"] .enx-pillar-card li::before { content:"✓"; position:absolute; left:0; color:var(--green); font-weight:950; }

/* Questão direciona o estudo */
html[data-product="enamed"] .enx-question-section { color:#f7fbff; background:radial-gradient(circle at 92% 7%,rgba(0,179,136,.24),transparent 28%),radial-gradient(circle at 4% 85%,rgba(47,128,237,.22),transparent 32%),linear-gradient(125deg,#061927,#082942 56%,#07333d); }
html[data-product="enamed"] .enx-question-section .enx-section-title { color:#fff; }
html[data-product="enamed"] .enx-question-section .enx-section-head > p { color:#bfd1dc; }
html[data-product="enamed"] .enx-question-experience { padding:18px; border:1px solid rgba(199,229,242,.14); border-radius:32px; background:rgba(255,255,255,.035); box-shadow:0 32px 80px rgba(0,0,0,.2); backdrop-filter:blur(16px); }
html[data-product="enamed"] .enx-question-flow { padding:13px; display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:9px; color:#aac4d1; font-size:11px; font-weight:850; }
html[data-product="enamed"] .enx-question-flow span { padding:9px 12px; border:1px solid rgba(205,235,247,.13); border-radius:10px; background:rgba(255,255,255,.05); }
html[data-product="enamed"] .enx-question-flow span.is-active { color:#fff; border-color:rgba(105,231,196,.54); background:linear-gradient(135deg,rgba(47,128,237,.3),rgba(0,179,136,.24)); box-shadow:0 0 25px rgba(0,179,136,.16); }
html[data-product="enamed"] .enx-question-flow i { color:#57dfbc; font-style:normal; }
html[data-product="enamed"] .enx-screen-tabs { margin:8px 0 14px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:9px; }
html[data-product="enamed"] .enx-screen-tabs button { min-height:58px; padding:10px 13px; display:flex; align-items:center; gap:10px; border:1px solid rgba(209,235,247,.14); border-radius:14px; color:#b7ccd7; background:rgba(255,255,255,.05); font:inherit; font-size:12px; font-weight:750; cursor:pointer; transition:.25s ease; }
html[data-product="enamed"] .enx-screen-tabs button > span { width:30px; height:30px; display:grid; place-items:center; flex:0 0 30px; border-radius:10px; color:#72dfc0; background:rgba(0,179,136,.13); font-size:9px; font-weight:950; }
html[data-product="enamed"] .enx-screen-tabs button:hover { color:#fff; transform:translateY(-3px); }
html[data-product="enamed"] .enx-screen-tabs button.is-active { color:#fff; border-color:rgba(105,231,196,.62); background:linear-gradient(120deg,rgba(17,128,177,.6),rgba(0,168,132,.55)); box-shadow:0 15px 36px rgba(0,179,136,.18),0 0 24px rgba(79,224,190,.12); }
html[data-product="enamed"] .enx-question-stage { overflow:hidden; border:1px solid rgba(202,232,244,.2); border-radius:22px; background:#fff; box-shadow:0 25px 64px rgba(0,0,0,.25); }
html[data-product="enamed"] .enx-stage-top { min-height:43px; padding:0 16px; display:flex; align-items:center; justify-content:space-between; color:#36566a; background:#edf5f8; font-size:9px; font-weight:850; letter-spacing:.08em; }
html[data-product="enamed"] .enx-stage-top > div { display:flex; gap:6px; }
html[data-product="enamed"] .enx-stage-top i { width:7px; height:7px; border-radius:50%; background:#9db6c3; }
html[data-product="enamed"] .enx-stage-top b { color:#00a47d; }
html[data-product="enamed"] .enx-question-stage > img { width:100%; height:520px; display:block; object-fit:contain; object-position:center top; transition:opacity .18s ease,transform .18s ease; }
html[data-product="enamed"] .enx-question-stage > img.is-changing { opacity:.2; transform:translateY(5px); }

/* Professores no mesmo componente da R1 */
html[data-product="enamed"] .enx-experts { background:var(--surface); }
html[data-product="enamed"] .enx-expert-grid { display:grid; grid-template-columns:minmax(0,1.25fr) minmax(340px,.75fr); gap:42px; align-items:center; }
html[data-product="enamed"] .r1e-teacher-carousel { min-width:0; padding:17px; border:1px solid var(--border); border-radius:27px; background:linear-gradient(160deg,var(--surface),var(--surface-soft)); box-shadow:0 22px 60px rgba(8,41,66,.12); }
html[data-product="enamed"] .r1e-teacher-toolbar { margin-bottom:13px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
html[data-product="enamed"] .r1e-teacher-toolbar > span { display:inline-flex; align-items:center; gap:9px; color:var(--ink); font-size:11px; font-weight:850; }
html[data-product="enamed"] .r1e-teacher-toolbar > span i { width:9px; height:9px; border-radius:50%; background:var(--green); box-shadow:0 0 0 5px color-mix(in srgb,var(--green) 12%,transparent); }
html[data-product="enamed"] .r1e-teacher-toolbar > div { display:flex; gap:7px; }
html[data-product="enamed"] .r1e-teacher-toolbar button { width:37px; height:37px; display:grid; place-items:center; border:1px solid var(--border); border-radius:12px; color:var(--ink); background:var(--surface); cursor:pointer; font-size:17px; transition:.25s ease; }
html[data-product="enamed"] .r1e-teacher-toolbar button:hover { color:#fff; background:linear-gradient(135deg,var(--blue),var(--green)); transform:translateY(-2px); }
html[data-product="enamed"] .r1e-teacher-viewport { overflow:hidden; border-radius:19px; }
html[data-product="enamed"] .r1e-teacher-track { display:flex; transition:transform .6s cubic-bezier(.22,1,.36,1); will-change:transform; }
html[data-product="enamed"] .r1e-teacher-slide { flex:0 0 100%; min-width:0; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; }
html[data-product="enamed"] .r1e-teacher-slide figure { position:relative; margin:0; aspect-ratio:1.18/1; overflow:hidden; border:1px solid var(--border); border-radius:17px; background:var(--surface-soft); }
html[data-product="enamed"] .r1e-teacher-slide figure::after { content:""; position:absolute; inset:auto 0 0; height:28%; background:linear-gradient(transparent,rgba(5,32,47,.32)); pointer-events:none; }
html[data-product="enamed"] .r1e-teacher-slide img { width:100%; height:100%; display:block; object-fit:cover; object-position:center top; transition:filter .45s ease,transform .45s ease; }
html[data-product="enamed"] .r1e-teacher-slide figure:hover img { filter:saturate(1.08); transform:scale(1.055); }
html[data-product="enamed"] .r1e-teacher-dots { min-height:20px; margin-top:11px; display:flex; justify-content:center; align-items:center; gap:7px; }
html[data-product="enamed"] .r1e-teacher-dots button { width:8px; height:8px; padding:0; border:0; border-radius:999px; background:color-mix(in srgb,var(--muted) 38%,transparent); cursor:pointer; transition:width .3s ease,background .3s ease; }
html[data-product="enamed"] .r1e-teacher-dots button.is-active { width:27px; background:linear-gradient(90deg,var(--blue),var(--green)); }
html[data-product="enamed"] .enx-expert-copy { display:grid; gap:15px; }
html[data-product="enamed"] .enx-expert-copy article { padding:19px; display:flex; gap:17px; border:1px solid var(--border); border-radius:19px; background:var(--surface-soft); }
html[data-product="enamed"] .enx-expert-copy .enx-icon { flex-basis:49px; width:49px; height:49px; border-radius:15px; }
html[data-product="enamed"] .enx-expert-copy .enx-icon svg { width:23px; height:23px; }
html[data-product="enamed"] .enx-expert-copy h3 { margin:1px 0 0; color:var(--ink); font-size:18px; }
html[data-product="enamed"] .enx-expert-copy p { margin:7px 0 0; color:var(--muted); font-size:12px; line-height:1.62; }
html[data-product="enamed"] .enx-expert-copy blockquote { margin:4px 0 0; padding:23px 25px; border-left:4px solid var(--green); border-radius:0 18px 18px 0; color:#fff; background:linear-gradient(120deg,#082942,#0a3942); font-size:20px; font-weight:400; line-height:1.35; letter-spacing:-.025em; }

/* Recursos conectados */
html[data-product="enamed"] .enx-resources { background:radial-gradient(circle at 10% 70%,rgba(47,128,237,.08),transparent 28%),var(--surface-soft); }
html[data-product="enamed"] .enx-resources-grid { display:grid; grid-template-columns:minmax(360px,.78fr) minmax(0,1.22fr); gap:42px; align-items:center; }
html[data-product="enamed"] .enx-resource-cards { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:13px; }
html[data-product="enamed"] .enx-resource-cards article { min-height:190px; padding:22px; display:flex; flex-direction:column; align-items:flex-start; border:1px solid var(--border); border-radius:22px; background:linear-gradient(160deg,var(--surface),var(--surface-soft)); box-shadow:0 16px 40px rgba(8,41,66,.08); transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease; }
html[data-product="enamed"] .enx-resource-cards article:hover { border-color:color-mix(in srgb,var(--green) 42%,var(--border)); box-shadow:0 24px 52px rgba(8,41,66,.13); transform:translateY(-6px); }
html[data-product="enamed"] .enx-resource-icon { width:52px; height:52px; display:grid; place-items:center; border-radius:16px; }
html[data-product="enamed"] .enx-resource-icon svg { width:25px; height:25px; }
html[data-product="enamed"] .enx-resource-cards small { display:block; margin-top:16px; color:var(--green); font-size:9px; font-weight:900; letter-spacing:.15em; }
html[data-product="enamed"] .enx-resource-cards h3 { margin:7px 0 0; color:var(--ink); font-size:18px; line-height:1.15; }
html[data-product="enamed"] .enx-resource-cards p { margin:9px 0 0; color:var(--muted); font-size:12px; line-height:1.55; }
html[data-product="enamed"] .enx-dashboard { overflow:hidden; border:1px solid color-mix(in srgb,var(--green) 22%,var(--border)); border-radius:24px; background:#fff; box-shadow:0 30px 84px rgba(8,41,66,.18); transform:perspective(1400px) rotateY(-2deg); transition:transform .35s ease; }
html[data-product="enamed"] .enx-dashboard:hover { transform:perspective(1400px) rotateY(0) translateY(-5px); }
html[data-product="enamed"] .enx-dashboard-top { min-height:46px; padding:0 17px; display:flex; align-items:center; justify-content:space-between; color:#18374b; background:#edf5f8; font-size:10px; font-weight:800; }
html[data-product="enamed"] .enx-dashboard-top b { color:#00a47d; }
html[data-product="enamed"] .enx-dashboard img { width:100%; height:auto; aspect-ratio:16/9; display:block; object-fit:contain; }

/* Conteúdo em accordion */
html[data-product="enamed"] .enx-content { background:var(--surface); }
html[data-product="enamed"] .enx-content-grid { max-width:1050px; margin:0 auto; display:grid; gap:11px; }
html[data-product="enamed"] .enx-content-item { overflow:hidden; border:1px solid var(--border); border-radius:19px; background:linear-gradient(160deg,var(--surface),var(--surface-soft)); box-shadow:0 12px 34px rgba(8,41,66,.06); transition:border-color .25s ease,box-shadow .25s ease,transform .25s ease; }
html[data-product="enamed"] .enx-content-item:hover,
html[data-product="enamed"] .enx-content-item[open] { border-color:color-mix(in srgb,var(--green) 42%,var(--border)); box-shadow:0 20px 46px rgba(8,41,66,.1); transform:translateY(-2px); }
html[data-product="enamed"] .enx-content-item summary { min-height:86px; padding:14px 20px; display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:17px; cursor:pointer; list-style:none; }
html[data-product="enamed"] .enx-content-item summary::-webkit-details-marker { display:none; }
html[data-product="enamed"] .enx-content-icon { width:54px; height:54px; display:grid; place-items:center; border-radius:17px; }
html[data-product="enamed"] .enx-content-icon svg { width:26px; height:26px; }
html[data-product="enamed"] .enx-content-item small { display:block; color:var(--green); font-size:9px; font-weight:900; letter-spacing:.15em; }
html[data-product="enamed"] .enx-content-item strong { display:block; margin-top:5px; color:var(--ink); font-size:18px; }
html[data-product="enamed"] .enx-content-item summary > i { width:34px; height:34px; display:grid; place-items:center; border:1px solid var(--border); border-radius:11px; color:var(--green); background:var(--surface); font-size:20px; font-style:normal; transition:transform .25s ease,background .25s ease,color .25s ease; }
html[data-product="enamed"] .enx-content-item[open] summary > i { color:#fff; background:linear-gradient(135deg,var(--blue),var(--green)); transform:rotate(45deg); }
html[data-product="enamed"] .enx-content-item > div { padding:0 24px 22px 91px; }
html[data-product="enamed"] .enx-content-item > div p { margin:0; padding:17px 19px; border-left:3px solid var(--green); border-radius:0 14px 14px 0; color:var(--muted); background:color-mix(in srgb,var(--green) 6%,var(--surface-soft)); font-size:13px; line-height:1.7; }

/* Preço */
html[data-product="enamed"] .enx-pricing { background:radial-gradient(circle at 90% 10%,rgba(0,179,136,.09),transparent 25%),var(--surface-soft); }
html[data-product="enamed"] .enx-price-card { max-width:1020px; min-height:470px; margin:0 auto; padding:38px 40px; display:grid; grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr); gap:42px; align-items:stretch; overflow:hidden; border:2px solid #14a9c7; border-radius:29px; background:radial-gradient(circle at 92% 8%,rgba(0,179,136,.12),transparent 28%),linear-gradient(160deg,var(--surface),var(--surface-soft)); box-shadow:0 28px 72px rgba(8,41,66,.16); }
html[data-product="enamed"] .enx-price-heading { display:flex; align-items:center; gap:15px; }
html[data-product="enamed"] .enx-price-icon { width:66px; height:66px; flex:0 0 66px; display:grid; place-items:center; border:1px solid rgba(47,128,237,.3); border-radius:20px; color:#2f80ed; background:rgba(47,128,237,.12); box-shadow:inset 0 0 0 6px rgba(255,255,255,.2),0 16px 32px rgba(47,128,237,.12); }
html[data-product="enamed"] .enx-price-icon svg { width:31px; height:31px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
html[data-product="enamed"] .enx-price-heading small { color:var(--green); font-size:10px; font-weight:900; letter-spacing:.14em; }
html[data-product="enamed"] .enx-price-heading h3 { margin:6px 0 0; color:var(--ink); font-size:29px; line-height:1.08; letter-spacing:-.035em; }
html[data-product="enamed"] .enx-price-main > p { margin:22px 0 0; color:var(--muted); font-size:14px; line-height:1.65; }
html[data-product="enamed"] .enx-price-main ul { margin:25px 0 0; padding:0; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px 18px; list-style:none; }
html[data-product="enamed"] .enx-price-main li { position:relative; padding-left:24px; color:var(--ink); font-size:12px; line-height:1.45; }
html[data-product="enamed"] .enx-price-main li::before { content:"✓"; position:absolute; left:0; top:0; width:17px; height:17px; display:grid; place-items:center; border-radius:50%; color:#fff; background:linear-gradient(135deg,var(--blue),var(--green)); font-size:10px; font-weight:900; }
html[data-product="enamed"] .enx-price-offer { padding:28px; display:flex; flex-direction:column; justify-content:center; border:1px solid color-mix(in srgb,var(--green) 28%,var(--border)); border-radius:23px; background:var(--surface); box-shadow:0 18px 46px rgba(8,41,66,.1); }
html[data-product="enamed"] .enx-price-offer > span { color:var(--blue); font-size:11px; font-weight:850; letter-spacing:.12em; text-transform:uppercase; }
html[data-product="enamed"] .enx-price-offer > strong { margin-top:12px; color:var(--ink); font-size:30px; line-height:1.08; letter-spacing:-.04em; }
html[data-product="enamed"] .enx-price-offer > small { margin-top:8px; color:var(--muted); font-size:12px; }
html[data-product="enamed"] .enx-price-offer > b { width:max-content; max-width:100%; margin-top:18px; padding:8px 12px; border:1px solid color-mix(in srgb,var(--green) 34%,var(--border)); border-radius:999px; color:color-mix(in srgb,var(--green) 76%,var(--ink)); background:color-mix(in srgb,var(--green) 9%,transparent); font-size:16px; font-weight:900; letter-spacing:.06em; text-transform:uppercase; }
html[data-product="enamed"] .enx-price-offer > a { min-height:54px; margin-top:22px; padding:0 18px; display:flex; align-items:center; justify-content:space-between; gap:14px; border-radius:14px; color:#fff; background:linear-gradient(90deg,var(--blue),var(--green)); box-shadow:0 15px 32px rgba(0,151,178,.22); font-size:14px; font-weight:820; }
html[data-product="enamed"] .enx-price-offer > a i { font-size:19px; font-style:normal; transition:transform .2s ease; }
html[data-product="enamed"] .enx-price-offer > a:hover i { transform:translateX(4px); }

/* Fechamento */
html[data-product="enamed"] .enx-final { padding:26px 0 105px; background:var(--surface-soft); }
html[data-product="enamed"] .enx-final-card { padding:46px 48px; display:grid; grid-template-columns:minmax(0,1fr) auto; gap:38px; align-items:center; border:1px solid rgba(93,224,190,.3); border-radius:29px; color:#fff; background:radial-gradient(circle at 90% 20%,rgba(0,179,136,.2),transparent 32%),linear-gradient(120deg,#061927,#082942 60%,#07333d); box-shadow:0 30px 80px rgba(3,28,43,.24); }
html[data-product="enamed"] .enx-final-card > div > span { color:#65dfbd; font-size:10px; font-weight:900; letter-spacing:.16em; }
html[data-product="enamed"] .enx-final-card h2 { margin:12px 0 0; max-width:720px; font-size:30px; font-weight:500; line-height:1.12; letter-spacing:-.035em; }
html[data-product="enamed"] .enx-final-card p { margin:15px 0 0; max-width:760px; color:#bad0db; font-size:14px; line-height:1.65; }
html[data-product="enamed"] .enx-final-card .enx-button { min-width:280px; }

@media (max-width:1120px) {
  html[data-product="enamed"] .enx-hero-screen { right:-205px; }
  html[data-product="enamed"] .enx-professor-stack { right:-120px; }
  html[data-product="enamed"] .enx-resources-grid { grid-template-columns:1fr; }
  html[data-product="enamed"] .enx-dashboard { max-width:830px; margin:0 auto; transform:none; }
}
@media (max-width:920px) {
  html[data-product="enamed"] .enx-hero { min-height:0; padding:136px 0 70px; }
  html[data-product="enamed"] .enx-hero-grid { grid-template-columns:1fr; gap:8px; }
  html[data-product="enamed"] .enx-hero-visual { min-height:570px; }
  html[data-product="enamed"] .enx-hero-screen { top:70px; right:2%; width:86%; }
  html[data-product="enamed"] .enx-professor-stack { right:1%; bottom:-15px; }
  html[data-product="enamed"] .enx-float-one { top:105px; left:4%; }
  html[data-product="enamed"] .enx-float-two { right:3%; bottom:245px; }
  html[data-product="enamed"] .enx-revalida-inner { grid-template-columns:auto 1fr; }
  html[data-product="enamed"] .enx-revalida-inner > a { grid-column:2; width:max-content; }
  html[data-product="enamed"] .enx-expert-grid { grid-template-columns:1fr; }
  html[data-product="enamed"] .r1e-teacher-carousel { max-width:760px; margin-inline:auto; }
  html[data-product="enamed"] .enx-price-card { grid-template-columns:1fr; }
  html[data-product="enamed"] .enx-final-card { grid-template-columns:1fr; }
  html[data-product="enamed"] .enx-final-card .enx-button { width:max-content; }
}
@media (max-width:760px) {
  html[data-product="enamed"] .enx-pillar-grid { grid-template-columns:1fr; }
  html[data-product="enamed"] .enx-screen-tabs { grid-template-columns:1fr; }
  html[data-product="enamed"] .enx-question-stage > img { height:auto; max-height:460px; }
  html[data-product="enamed"] .enx-resource-cards { grid-template-columns:1fr; }
  html[data-product="enamed"] .enx-price-main ul { grid-template-columns:1fr; }
}
@media (max-width:680px) {
  html[data-product="enamed"] .enx-section { padding:78px 0; }
  html[data-product="enamed"] .enx-section-head { margin-bottom:36px; }
  html[data-product="enamed"] .enx-section-title { width:100%; font-size:23px; line-height:1.2; }
  html[data-product="enamed"] .enx-hero { padding:120px 0 55px; }
  html[data-product="enamed"] .enx-hero h1 { font-size:34px; line-height:1.13; }
  html[data-product="enamed"] .enx-hero-copy > p { font-size:15px; }
  html[data-product="enamed"] .enx-hero-offer { grid-template-columns:1fr; }
  html[data-product="enamed"] .enx-hero-offer > b { min-height:52px; }
  html[data-product="enamed"] .enx-hero-actions { display:grid; }
  html[data-product="enamed"] .enx-button { width:100%; }
  html[data-product="enamed"] .enx-hero-visual { min-height:485px; }
  html[data-product="enamed"] .enx-hero-screen { top:72px; right:-28%; width:125%; transform:none; }
  html[data-product="enamed"] .enx-hero-screen > img { height:265px; }
  html[data-product="enamed"] .enx-professor-stack { right:-25%; width:460px; height:260px; }
  html[data-product="enamed"] .enx-professor-stack figure { width:126px; height:190px; }
  html[data-product="enamed"] .enx-professor-stack figure:nth-child(2) { width:142px; height:220px; }
  html[data-product="enamed"] .enx-float-card { padding:9px 11px; font-size:10px; }
  html[data-product="enamed"] .enx-float-one { top:95px; left:0; }
  html[data-product="enamed"] .enx-float-two { right:0; bottom:210px; }
  html[data-product="enamed"] .enx-revalida-inner { margin-top:-20px; padding:23px 20px; grid-template-columns:1fr; text-align:center; }
  html[data-product="enamed"] .enx-revalida-icon { margin:auto; }
  html[data-product="enamed"] .enx-revalida-inner > a { grid-column:auto; width:100%; justify-content:center; }
  html[data-product="enamed"] .enx-pillar-card { padding:25px 23px; }
  html[data-product="enamed"] .enx-pillar-card > small { right:23px; }
  html[data-product="enamed"] .enx-question-experience { padding:12px; border-radius:24px; }
  html[data-product="enamed"] .enx-question-flow { gap:5px; }
  html[data-product="enamed"] .enx-question-flow span { padding:7px 8px; font-size:9px; }
  html[data-product="enamed"] .enx-stage-top > span { display:none; }
  html[data-product="enamed"] .r1e-teacher-carousel { padding:13px; }
  html[data-product="enamed"] .r1e-teacher-slide { gap:7px; }
  html[data-product="enamed"] .r1e-teacher-slide figure { border-radius:13px; }
  html[data-product="enamed"] .enx-content-item summary { min-height:78px; padding:12px 14px; gap:12px; }
  html[data-product="enamed"] .enx-content-icon { width:48px; height:48px; }
  html[data-product="enamed"] .enx-content-item strong { font-size:15px; }
  html[data-product="enamed"] .enx-content-item > div { padding:0 15px 17px; }
  html[data-product="enamed"] .enx-price-card { padding:27px 22px; gap:26px; }
  html[data-product="enamed"] .enx-price-heading { align-items:flex-start; }
  html[data-product="enamed"] .enx-price-heading h3 { font-size:24px; }
  html[data-product="enamed"] .enx-price-offer > strong { font-size:27px; }
  html[data-product="enamed"] .enx-final-card { padding:34px 25px; }
  html[data-product="enamed"] .enx-final-card h2 { font-size:25px; }
  html[data-product="enamed"] .enx-final-card .enx-button { width:100%; min-width:0; }
}
@media (prefers-reduced-motion:reduce) {
  html[data-product="enamed"] .enx-hero-screen,
  html[data-product="enamed"] .enx-float-card,
  html[data-product="enamed"] .enx-orb,
  html[data-product="enamed"] .enx-hero-offer > b,
  html[data-product="enamed"] .enx-hero-offer > b::after { animation:none!important; }
  html[data-product="enamed"] .r1e-teacher-track { transition:none; }
}

/* ============================================================
   Intensivo ENAMED — refinamentos de interação e oferta
   ============================================================ */
html[data-product="enamed"] .enx-revalida-strip {
  padding:0 0 18px;
  background:var(--surface);
}
html[data-product="enamed"] .enx-revalida-inner {
  position:relative;
  isolation:isolate;
  overflow:visible;
  min-height:144px;
  border-color:rgba(69,181,216,.34);
  background:linear-gradient(125deg,color-mix(in srgb,var(--surface) 94%,#0ba4c8 6%),color-mix(in srgb,var(--surface) 94%,#00b388 6%));
  box-shadow:0 20px 54px rgba(4,30,48,.18),inset 0 1px 0 rgba(255,255,255,.08);
  transition:transform .38s cubic-bezier(.22,1,.36,1),border-color .38s ease,box-shadow .38s ease;
}
html[data-product="enamed"] .enx-revalida-inner::before {
  content:"";
  position:absolute;
  z-index:-1;
  inset:-18px 8%;
  border-radius:50%;
  background:radial-gradient(ellipse,rgba(46,211,190,.28),rgba(47,128,237,.13) 42%,transparent 72%);
  filter:blur(28px);
  opacity:0;
  transform:scale(.78);
  transition:opacity .4s ease,transform .55s cubic-bezier(.22,1,.36,1);
  pointer-events:none;
}
html[data-product="enamed"] .enx-revalida-inner:hover {
  border-color:rgba(84,229,198,.62);
  box-shadow:0 30px 74px rgba(0,179,136,.18),0 0 0 1px rgba(57,196,222,.12),inset 0 1px 0 rgba(255,255,255,.12);
  transform:translateY(-5px);
}
html[data-product="enamed"] .enx-revalida-inner:hover::before { opacity:1; transform:scale(1); }
html[data-product="enamed"] .enx-revalida-icon {
  box-shadow:0 0 0 7px rgba(0,179,136,.07),inset 0 0 0 5px rgba(255,255,255,.12),0 13px 30px rgba(0,179,136,.18);
  transition:transform .35s ease,box-shadow .35s ease;
}
html[data-product="enamed"] .enx-revalida-inner:hover .enx-revalida-icon {
  box-shadow:0 0 0 9px rgba(0,179,136,.11),inset 0 0 0 5px rgba(255,255,255,.16),0 17px 36px rgba(0,179,136,.26);
  transform:rotate(-5deg) scale(1.06);
}
html[data-product="enamed"] .enx-revalida-inner > a {
  position:relative;
  min-height:50px;
  padding:0 21px;
  overflow:hidden;
  border:0;
  border-radius:14px;
  color:#fff;
  background:linear-gradient(100deg,#2f80ed,#13a9bd 52%,#00b388);
  box-shadow:0 14px 30px rgba(0,151,178,.24);
  font-size:12px;
  transition:transform .3s ease,box-shadow .3s ease;
}
html[data-product="enamed"] .enx-revalida-inner > a::before {
  content:"";
  position:absolute;
  inset:-50% auto -50% -42%;
  width:34%;
  background:rgba(255,255,255,.45);
  transform:skewX(-18deg);
  transition:left .65s cubic-bezier(.22,1,.36,1);
}
html[data-product="enamed"] .enx-revalida-inner > a:hover {
  box-shadow:0 19px 38px rgba(0,179,136,.34),0 0 24px rgba(53,212,191,.2);
  transform:translateY(-3px);
}
html[data-product="enamed"] .enx-revalida-inner > a:hover::before { left:120%; }
html[data-product="enamed"] .enx-revalida-inner > a span { position:relative; transition:transform .25s ease; }
html[data-product="enamed"] .enx-revalida-inner > a:hover span { transform:translateX(4px); }

/* Trilha luminosa fora do box das telas */
html[data-product="enamed"] .enx-question-flow {
  position:relative;
  width:min(100%,930px);
  margin:0 auto 25px;
  padding:8px 0;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:11px;
  color:#7998a8;
  font-size:14px;
  font-weight:800;
}
html[data-product="enamed"] .enx-question-flow span {
  position:relative;
  min-height:47px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(190,224,239,.15);
  border-radius:15px;
  outline:0;
  color:#a9c0cc;
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  cursor:default;
  transition:color .3s ease,border-color .3s ease,background .3s ease,box-shadow .3s ease,transform .3s cubic-bezier(.22,1,.36,1);
}
html[data-product="enamed"] .enx-question-flow span::before {
  content:"";
  width:7px;
  height:7px;
  margin-right:9px;
  border-radius:50%;
  background:#5f7e8e;
  box-shadow:0 0 0 4px rgba(95,126,142,.09);
  transition:background .3s ease,box-shadow .3s ease;
}
html[data-product="enamed"] .enx-question-flow span.is-active,
html[data-product="enamed"] .enx-question-flow span.is-lit,
html[data-product="enamed"] .enx-question-flow span:hover,
html[data-product="enamed"] .enx-question-flow span:focus-visible {
  color:#fff;
  border-color:rgba(102,239,205,.68);
  background:linear-gradient(135deg,rgba(47,128,237,.48),rgba(0,179,136,.4));
  box-shadow:0 0 0 1px rgba(110,237,207,.12),0 0 32px rgba(0,179,136,.3),inset 0 1px 0 rgba(255,255,255,.16);
  transform:translateY(-4px);
}
html[data-product="enamed"] .enx-question-flow span.is-lit::before,
html[data-product="enamed"] .enx-question-flow span:hover::before,
html[data-product="enamed"] .enx-question-flow span:focus-visible::before {
  background:#76f0cc;
  box-shadow:0 0 0 5px rgba(88,228,193,.14),0 0 17px rgba(88,228,193,.95);
}
html[data-product="enamed"] .enx-question-flow i {
  color:#577887;
  font-size:18px;
  font-style:normal;
  transition:color .3s ease,text-shadow .3s ease,transform .3s ease;
}
html[data-product="enamed"] .enx-question-flow i.is-lit {
  color:#66e8c3;
  text-shadow:0 0 14px rgba(76,226,190,.9);
  transform:translateX(2px);
}
html[data-product="enamed"] .enx-question-experience { padding:20px; }
html[data-product="enamed"] .enx-screen-tabs { margin:0 0 17px; gap:12px; }
html[data-product="enamed"] .enx-screen-tabs button {
  position:relative;
  min-height:72px;
  padding:12px 17px;
  overflow:hidden;
  border-radius:18px;
  border-color:rgba(203,233,245,.18);
  background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
  font-size:13px;
  transition:transform .32s cubic-bezier(.22,1,.36,1),border-color .32s ease,box-shadow .32s ease,background .32s ease;
}
html[data-product="enamed"] .enx-screen-tabs button::after {
  content:"";
  position:absolute;
  inset:-70% auto -70% -36%;
  width:25%;
  background:rgba(255,255,255,.35);
  transform:skewX(-18deg);
  transition:left .7s cubic-bezier(.22,1,.36,1);
}
html[data-product="enamed"] .enx-screen-tabs button > span {
  width:38px;
  height:38px;
  flex-basis:38px;
  border:1px solid rgba(88,229,194,.19);
  border-radius:12px;
  font-size:11px;
  transition:transform .3s ease,box-shadow .3s ease;
}
html[data-product="enamed"] .enx-screen-tabs button:hover {
  border-color:rgba(94,222,194,.42);
  box-shadow:0 14px 32px rgba(2,28,43,.24),0 0 22px rgba(0,179,136,.12);
  transform:translateY(-5px);
}
html[data-product="enamed"] .enx-screen-tabs button:hover::after { left:120%; }
html[data-product="enamed"] .enx-screen-tabs button:hover > span { transform:rotate(-5deg) scale(1.06); }
html[data-product="enamed"] .enx-screen-tabs button.is-active {
  border-color:rgba(103,239,205,.72);
  background:linear-gradient(115deg,rgba(47,128,237,.75),rgba(0,179,136,.72));
  box-shadow:0 18px 42px rgba(0,151,178,.28),0 0 34px rgba(72,224,188,.2),inset 0 1px 0 rgba(255,255,255,.18);
  transform:translateY(-3px);
}
html[data-product="enamed"] .enx-screen-tabs button.is-active > span {
  color:#063a41;
  background:#91f1d5;
  box-shadow:0 0 20px rgba(107,235,204,.5);
}

/* Cinco áreas permanentemente abertas */
html[data-product="enamed"] .enx-content-grid {
  max-width:1180px;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:17px;
}
html[data-product="enamed"] .enx-content-item {
  position:relative;
  isolation:isolate;
  padding:24px;
  grid-column:span 2;
  overflow:hidden;
  border-radius:24px;
  border-color:color-mix(in srgb,var(--blue) 18%,var(--border));
  background:radial-gradient(circle at 100% 0%,color-mix(in srgb,var(--green) 10%,transparent),transparent 38%),linear-gradient(155deg,var(--surface),var(--surface-soft));
  box-shadow:0 18px 46px rgba(8,41,66,.08),inset 0 1px 0 rgba(255,255,255,.06);
  transition:transform .4s cubic-bezier(.22,1,.36,1),border-color .35s ease,box-shadow .35s ease;
}
html[data-product="enamed"] .enx-content-item:nth-child(4),
html[data-product="enamed"] .enx-content-item:nth-child(5) { grid-column:span 3; }
html[data-product="enamed"] .enx-content-item::before {
  content:"";
  position:absolute;
  z-index:-1;
  right:-70px;
  bottom:-95px;
  width:210px;
  height:210px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(0,179,136,.2),rgba(47,128,237,.08) 42%,transparent 70%);
  opacity:.35;
  transform:scale(.72);
  transition:opacity .45s ease,transform .55s cubic-bezier(.22,1,.36,1);
}
html[data-product="enamed"] .enx-content-item::after {
  content:"";
  position:absolute;
  inset:auto 24px 0;
  height:3px;
  border-radius:999px 999px 0 0;
  background:linear-gradient(90deg,var(--blue),var(--green));
  transform:scaleX(.28);
  transform-origin:left;
  opacity:.55;
  transition:transform .45s cubic-bezier(.22,1,.36,1),opacity .35s ease;
}
html[data-product="enamed"] .enx-content-item:hover {
  border-color:color-mix(in srgb,var(--green) 55%,var(--border));
  box-shadow:0 28px 62px rgba(8,41,66,.14),0 0 30px color-mix(in srgb,var(--green) 9%,transparent);
  transform:translateY(-8px);
}
html[data-product="enamed"] .enx-content-item:hover::before { opacity:1; transform:scale(1); }
html[data-product="enamed"] .enx-content-item:hover::after { opacity:1; transform:scaleX(1); }
html[data-product="enamed"] .enx-content-item > .enx-content-head {
  padding:0;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:15px;
}
html[data-product="enamed"] .enx-content-head > i {
  align-self:start;
  color:color-mix(in srgb,var(--blue) 62%,var(--muted));
  font-size:28px;
  font-weight:300;
  font-style:normal;
  letter-spacing:-.08em;
  opacity:.3;
  transition:color .3s ease,opacity .3s ease,transform .3s ease;
}
html[data-product="enamed"] .enx-content-item:hover .enx-content-head > i {
  color:var(--green);
  opacity:.75;
  transform:translateY(-3px);
}
html[data-product="enamed"] .enx-content-head h3 {
  margin:5px 0 0;
  color:var(--ink);
  font-size:19px;
  line-height:1.15;
  letter-spacing:-.025em;
}
html[data-product="enamed"] .enx-content-item > ul {
  margin:22px 0 0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  list-style:none;
}
html[data-product="enamed"] .enx-content-item > ul li {
  padding:8px 10px;
  border:1px solid color-mix(in srgb,var(--green) 15%,var(--border));
  border-radius:10px;
  color:var(--muted);
  background:color-mix(in srgb,var(--surface) 78%,var(--surface-soft));
  font-size:11px;
  line-height:1.25;
  transition:color .25s ease,border-color .25s ease,background .25s ease,transform .25s ease;
}
html[data-product="enamed"] .enx-content-item > ul li:hover {
  color:var(--ink);
  border-color:color-mix(in srgb,var(--green) 42%,var(--border));
  background:color-mix(in srgb,var(--green) 8%,var(--surface));
  transform:translateY(-2px);
}

/* Oferta horizontal no padrão premium dos planos */
html[data-product="enamed"] .enx-pricing {
  background:radial-gradient(circle at 87% 18%,rgba(0,179,136,.08),transparent 28%),var(--surface-soft);
}
html[data-product="enamed"] .enx-price-card {
  position:relative;
  max-width:1180px;
  min-height:410px;
  padding:36px;
  grid-template-columns:minmax(330px,.76fr) minmax(0,1.24fr);
  gap:38px;
  align-items:stretch;
  border:1px solid rgba(24,183,214,.72);
  border-radius:27px;
  color:#f6fbff;
  background:radial-gradient(circle at 88% 18%,rgba(0,179,136,.2),transparent 34%),linear-gradient(116deg,#061b2a 0%,#082b3e 52%,#073d40 100%);
  box-shadow:0 30px 76px rgba(3,28,43,.25),inset 0 1px 0 rgba(255,255,255,.05);
}
html[data-product="enamed"] .enx-price-card::before {
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(110deg,transparent 32%,rgba(255,255,255,.055) 48%,transparent 64%);
  transform:translateX(-80%);
  transition:transform 1s cubic-bezier(.22,1,.36,1);
}
html[data-product="enamed"] .enx-price-card:hover::before { transform:translateX(80%); }
html[data-product="enamed"] .enx-price-main { position:relative; z-index:1; display:flex; flex-direction:column; align-items:flex-start; }
html[data-product="enamed"] .enx-price-badge {
  padding:7px 12px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(90deg,#2f80ed,#00b388);
  box-shadow:0 9px 24px rgba(0,151,178,.22);
  font-size:10px;
  font-weight:900;
  letter-spacing:.05em;
}
html[data-product="enamed"] .enx-price-main > h3 {
  margin:16px 0 0;
  color:#fff;
  font-size:40px;
  font-weight:500;
  line-height:1.04;
  letter-spacing:-.045em;
}
html[data-product="enamed"] .enx-price-main > p {
  max-width:390px;
  margin:13px 0 0;
  color:#bdd2dd;
  font-size:13px;
  line-height:1.55;
}
html[data-product="enamed"] .enx-access-period {
  width:100%;
  margin-top:22px;
  padding:4px;
  border:1px solid rgba(112,200,225,.25);
  border-radius:13px;
  background:rgba(3,23,37,.34);
}
html[data-product="enamed"] .enx-access-period span {
  min-height:39px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  color:#fff;
  background:linear-gradient(90deg,#2f80ed,#00b388);
  box-shadow:0 8px 20px rgba(0,151,178,.22);
  font-size:13px;
  font-weight:850;
}
html[data-product="enamed"] .enx-price-value {
  margin-top:14px;
  color:#fff;
  font-size:31px;
  line-height:1.05;
  letter-spacing:-.04em;
}
html[data-product="enamed"] .enx-price-total { margin-top:6px; color:#9fb9c6; font-size:10px; }
html[data-product="enamed"] .enx-price-discount {
  margin-top:15px;
  padding:7px 12px;
  border:1px solid rgba(70,232,190,.58);
  border-radius:999px;
  color:#5de5bf;
  background:rgba(0,179,136,.08);
  box-shadow:0 0 22px rgba(0,179,136,.09);
  font-size:15px;
  letter-spacing:.055em;
}
html[data-product="enamed"] .enx-price-benefits {
  position:relative;
  z-index:1;
  padding:2px 0 0;
  display:flex;
  flex-direction:column;
}
html[data-product="enamed"] .enx-price-benefits h4 {
  margin:0;
  color:#fff;
  font-size:20px;
  line-height:1.25;
  letter-spacing:-.025em;
}
html[data-product="enamed"] .enx-price-benefits ul {
  margin:23px 0 0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:15px 28px;
  list-style:none;
}
html[data-product="enamed"] .enx-price-benefits li {
  position:relative;
  padding-left:23px;
  color:#e3eef3;
  font-size:12px;
  line-height:1.45;
}
html[data-product="enamed"] .enx-price-benefits li::before {
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:16px;
  height:16px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,#24aee2,#00b388);
  box-shadow:0 0 14px rgba(36,187,194,.28);
  font-size:9px;
  font-weight:950;
}
html[data-product="enamed"] .enx-price-benefits > p {
  max-width:700px;
  margin:24px 0 0;
  color:#b8ced9;
  font-size:12px;
  line-height:1.6;
}
html[data-product="enamed"] .enx-price-benefits > a {
  width:min(100%,360px);
  min-height:54px;
  margin:28px 0 0 auto;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-radius:14px;
  color:#fff;
  background:linear-gradient(90deg,#2f80ed,#13a9bd 54%,#00b388);
  box-shadow:0 16px 34px rgba(0,151,178,.28);
  font-size:13px;
  font-weight:850;
  transition:transform .3s ease,box-shadow .3s ease;
}
html[data-product="enamed"] .enx-price-benefits > a:hover {
  box-shadow:0 21px 42px rgba(0,179,136,.34),0 0 26px rgba(50,202,188,.16);
  transform:translateY(-4px);
}
html[data-product="enamed"] .enx-price-benefits > a i { font-size:20px; font-style:normal; transition:transform .25s ease; }
html[data-product="enamed"] .enx-price-benefits > a:hover i { transform:translateX(5px); }

@media (max-width:980px) {
  html[data-product="enamed"] .enx-content-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  html[data-product="enamed"] .enx-content-item,
  html[data-product="enamed"] .enx-content-item:nth-child(4),
  html[data-product="enamed"] .enx-content-item:nth-child(5) { grid-column:auto; }
  html[data-product="enamed"] .enx-content-item:last-child { grid-column:1/-1; }
  html[data-product="enamed"] .enx-price-card { grid-template-columns:1fr; }
  html[data-product="enamed"] .enx-price-main > p { max-width:680px; }
  html[data-product="enamed"] .enx-access-period { max-width:430px; }
  html[data-product="enamed"] .enx-price-benefits > a { margin-left:0; }
}
@media (max-width:680px) {
  html[data-product="enamed"] .enx-revalida-strip { padding-bottom:8px; }
  html[data-product="enamed"] .enx-revalida-inner { overflow:hidden; }
  html[data-product="enamed"] .enx-question-flow { gap:7px; font-size:11px; }
  html[data-product="enamed"] .enx-question-flow span { min-height:40px; padding:0 10px; font-size:11px; }
  html[data-product="enamed"] .enx-question-flow span::before { width:5px; height:5px; margin-right:6px; }
  html[data-product="enamed"] .enx-question-flow i { font-size:13px; }
  html[data-product="enamed"] .enx-screen-tabs button { min-height:62px; }
  html[data-product="enamed"] .enx-content-grid { grid-template-columns:1fr; }
  html[data-product="enamed"] .enx-content-item,
  html[data-product="enamed"] .enx-content-item:last-child { grid-column:auto; min-height:0; padding:21px; }
  html[data-product="enamed"] .enx-content-head h3 { font-size:17px; }
  html[data-product="enamed"] .enx-price-card { min-height:0; padding:27px 22px; gap:32px; }
  html[data-product="enamed"] .enx-price-main > h3 { font-size:34px; }
  html[data-product="enamed"] .enx-price-value { font-size:27px; }
  html[data-product="enamed"] .enx-price-benefits ul { grid-template-columns:1fr; gap:13px; }
  html[data-product="enamed"] .enx-price-benefits > a { width:100%; }
}
@media (prefers-reduced-motion:reduce) {
  html[data-product="enamed"] .enx-revalida-inner,
  html[data-product="enamed"] .enx-revalida-inner::before,
  html[data-product="enamed"] .enx-revalida-inner > a::before,
  html[data-product="enamed"] .enx-question-flow span,
  html[data-product="enamed"] .enx-screen-tabs button,
  html[data-product="enamed"] .enx-screen-tabs button::after,
  html[data-product="enamed"] .enx-content-item,
  html[data-product="enamed"] .enx-content-item::before,
  html[data-product="enamed"] .enx-content-item::after,
  html[data-product="enamed"] .enx-price-card::before { transition:none!important; }
}

/* ============================================================
 * Página: Práticas Médicas Simuladas — complementos
 * ============================================================ */
html[data-page="praticas-medicas-simuladas"] .pm-hero-offer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: stretch;
  gap: 9px;
  margin-top: 27px;
}
html[data-page="praticas-medicas-simuladas"] {
  overflow-x: hidden;
}
html[data-page="praticas-medicas-simuladas"] .pm-hero-offer > div,
html[data-page="praticas-medicas-simuladas"] .pm-hero-offer > b {
  min-height: 70px;
  padding: 13px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}
html[data-page="praticas-medicas-simuladas"] .pm-hero-offer span {
  color: #9fbdca;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .pm-hero-offer strong {
  margin-top: 5px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}
html[data-page="praticas-medicas-simuladas"] .pm-hero-offer > b {
  min-width: 116px;
  color: #9bef78;
  font-size: 12px;
  text-align: center;
}
html[data-page="praticas-medicas-simuladas"] .pm-formation-note {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #bcd2dc;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}
html[data-page="praticas-medicas-simuladas"] .pm-formation-note span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #91ec72;
  background: rgba(126, 217, 87, 0.14);
}
html[data-page="praticas-medicas-simuladas"] .pm-thinking-grid,
html[data-page="praticas-medicas-simuladas"] .pm-audience-grid {
  grid-template-columns: repeat(3, 1fr);
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card {
  min-height: 0;
  padding-top: 34px;
}
html[data-page="praticas-medicas-simuladas"] .pm-step-label {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(47, 128, 237, 0.22);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.06em;
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card ul,
html[data-page="praticas-medicas-simuladas"] .pm-price-card ul {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card li,
html[data-page="praticas-medicas-simuladas"] .pm-price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card li::before,
html[data-page="praticas-medicas-simuladas"] .pm-price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}
html[data-page="praticas-medicas-simuladas"] .pm-method-flow {
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}
html[data-page="praticas-medicas-simuladas"] .pm-method-flow .ri-method-track,
html[data-page="praticas-medicas-simuladas"] .pm-method-flow .ri-method-fill {
  left: 10%;
  right: 10%;
}
html[data-page="praticas-medicas-simuladas"] .pm-method-flow .ri-method-fill {
  right: auto;
}
html[data-page="praticas-medicas-simuladas"] .pm-method-flow .ri-method-step:focus-visible {
  outline: 3px solid rgba(47, 128, 237, 0.35);
  outline-offset: 5px;
  border-radius: 18px;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence {
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 179, 136, 0.09), transparent 35%),
    var(--surface-soft);
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-statement {
  margin-top: 30px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(0, 179, 136, 0.2);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(0, 179, 136, 0.08);
  line-height: 1.55;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-statement span {
  color: var(--green);
  font-size: 24px;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-visual {
  position: relative;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-visual > img {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  border-radius: 19px;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-glow {
  position: absolute;
  inset: 10% -5% -8% 30%;
  border-radius: 50%;
  background: rgba(0, 179, 136, 0.25);
  filter: blur(55px);
  animation: revisamed-inteligente-riAmbient 6s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-note {
  position: absolute;
  z-index: 3;
  left: -26px;
  bottom: 25px;
  max-width: 245px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: #fff;
  background: rgba(5, 30, 45, 0.88);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-note span,
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-note strong {
  display: block;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-note span {
  color: #8ee7c9;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-note strong {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.4;
}
html[data-page="praticas-medicas-simuladas"] .pm-practice-grid {
  grid-template-columns: repeat(4, 1fr);
}
html[data-page="praticas-medicas-simuladas"] .pm-practice-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
html[data-page="praticas-medicas-simuladas"] .pm-practice-card h3 {
  max-width: 240px;
  margin-top: 30px;
  line-height: 1.35;
}
html[data-page="praticas-medicas-simuladas"] .pm-upgrade {
  padding-top: 0;
  background: var(--surface);
}
html[data-page="praticas-medicas-simuladas"] .pm-upgrade-card {
  min-height: 250px;
  padding: 38px 42px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(135deg, var(--surface), var(--surface-soft));
  box-shadow: 0 24px 60px rgba(8, 41, 66, 0.11);
}
html[data-page="praticas-medicas-simuladas"] .pm-upgrade-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 15px 35px rgba(0, 179, 136, 0.22);
}
html[data-page="praticas-medicas-simuladas"] .pm-upgrade-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
html[data-page="praticas-medicas-simuladas"] .pm-upgrade-card h2 {
  margin: 15px 0 8px;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}
html[data-page="praticas-medicas-simuladas"] .pm-upgrade-card p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
html[data-page="praticas-medicas-simuladas"] .pm-upgrade-card .ri-primary {
  white-space: nowrap;
}
html[data-page="praticas-medicas-simuladas"] .pm-pricing {
  background: var(--surface-soft);
}
html[data-page="praticas-medicas-simuladas"] .pm-price-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-card {
  position: relative;
  min-height: 570px;
  padding: 37px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 22px 58px rgba(8, 41, 66, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(8, 41, 66, 0.17);
}
html[data-page="praticas-medicas-simuladas"] .pm-price-featured {
  border-color: rgba(0, 179, 136, 0.4);
  box-shadow: 0 26px 70px rgba(0, 179, 136, 0.16);
}
html[data-page="praticas-medicas-simuladas"] .pm-price-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-kicker {
  color: #008c72;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-card h3 {
  margin: 13px 0 23px;
  color: var(--ink);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.055em;
}
html[data-page="praticas-medicas-simuladas"] .pm-installment,
html[data-page="praticas-medicas-simuladas"] .pm-total,
html[data-page="praticas-medicas-simuladas"] .pm-cash {
  margin: 0;
}
html[data-page="praticas-medicas-simuladas"] .pm-installment {
  color: var(--muted);
  font-size: 15px;
}
html[data-page="praticas-medicas-simuladas"] .pm-installment strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -0.04em;
}
html[data-page="praticas-medicas-simuladas"] .pm-total {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}
html[data-page="praticas-medicas-simuladas"] .pm-cash {
  width: max-content;
  margin-top: 15px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #008c72;
  background: rgba(0, 179, 136, 0.09);
  font-size: 11px;
  font-weight: 900;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-card ul {
  margin: 28px 0;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-card .ri-primary {
  width: 100%;
  margin-top: auto;
}
html[data-page="praticas-medicas-simuladas"][data-theme="dark"] .pm-upgrade-card,
html[data-page="praticas-medicas-simuladas"][data-theme="dark"] .pm-price-card {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
@media (max-width: 1080px) {
  html[data-page="praticas-medicas-simuladas"] .pm-method-flow {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-method-flow .ri-method-track,
  html[data-page="praticas-medicas-simuladas"] .pm-method-flow .ri-method-fill {
    display: none;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  html[data-page="praticas-medicas-simuladas"] .pm-upgrade-card {
    grid-template-columns: 72px 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-upgrade-card .ri-primary {
    grid-column: 2;
    justify-self: start;
  }
}
@media (max-width: 760px) {
  
  
  html[data-page="praticas-medicas-simuladas"] .pm-hero-offer {
    grid-template-columns: 1fr 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-hero-offer > b {
    grid-column: 1 / -1;
    min-height: 46px;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-thinking-grid,
  html[data-page="praticas-medicas-simuladas"] .pm-audience-grid,
  html[data-page="praticas-medicas-simuladas"] .pm-method-flow,
  html[data-page="praticas-medicas-simuladas"] .pm-price-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-group-card,
  html[data-page="praticas-medicas-simuladas"] .pm-price-card {
    min-height: 0;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-intelligence-note {
    left: 22px;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-upgrade-card {
    padding: 30px;
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-upgrade-card .ri-primary {
    grid-column: auto;
    width: 100%;
  }
}
@media (max-width: 520px) {
  html[data-page="praticas-medicas-simuladas"] .pm-hero-offer,
  html[data-page="praticas-medicas-simuladas"] .pm-practice-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-hero-offer > b {
    grid-column: auto;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-practice-card {
    min-height: 175px;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-price-card {
    padding: 29px 23px;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-price-badge {
    position: static;
    width: max-content;
    margin-bottom: 13px;
  }
}

/* Refinamento visual solicitado: tipografia e componentes no padrão R1/R3. */
html[data-page="praticas-medicas-simuladas"] .ri-hero h1 {
  color: #fff !important;
  font-size: 42px !important;
  font-weight: 400 !important;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero h1 em {
  color: #fff !important;
  background: none !important;
  font-weight: 400 !important;
  -webkit-text-fill-color: #fff;
}
html[data-page="praticas-medicas-simuladas"]
  .pm-app-page
  main
  > section:not(.brand-strip)
  h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  padding-bottom: 17px;
  color: var(--ink);
  font-size: 26px !important;
  font-weight: 500 !important;
  line-height: 1.16;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"]
  .pm-app-page
  main
  > section:not(.brand-strip)
  h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(120px, 38%, 205px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
html[data-page="praticas-medicas-simuladas"] .ri-section-head h2 {
  margin: 18px auto 15px;
  text-align: center;
}
html[data-page="praticas-medicas-simuladas"] .ri-section-head h2::after {
  left: 50% !important;
  transform: translateX(-50%) !important;
}
html[data-page="praticas-medicas-simuladas"] .ri-screens .ri-section-head h2,
html[data-page="praticas-medicas-simuladas"] .ri-final-card h2 {
  color: #fff;
}
html[data-page="praticas-medicas-simuladas"] .pm-upgrade-card h2,
html[data-page="praticas-medicas-simuladas"] .ri-planner-copy h2,
html[data-page="praticas-medicas-simuladas"] .ri-final-card h2 {
  margin: 16px 0 14px;
  text-align: left;
}
html[data-page="praticas-medicas-simuladas"] .pm-upgrade-card h2::after,
html[data-page="praticas-medicas-simuladas"] .ri-planner-copy h2::after,
html[data-page="praticas-medicas-simuladas"] .ri-final-card h2::after {
  left: 0 !important;
  transform: none !important;
}

html[data-page="praticas-medicas-simuladas"] .pm-group-card,
html[data-page="praticas-medicas-simuladas"] .pm-practice-card {
  --pm-accent: #2f80ed;
  --pm-accent-2: #00b388;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 32px 30px 30px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--pm-accent) 13%, transparent), transparent 36%),
    linear-gradient(160deg, var(--surface) 0%, var(--surface-soft) 100%);
  box-shadow: 0 18px 50px rgba(8, 41, 66, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card:nth-child(2),
html[data-page="praticas-medicas-simuladas"] .pm-practice-card:nth-child(3n + 2) {
  --pm-accent: #00b388;
  --pm-accent-2: #54d891;
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card:nth-child(3),
html[data-page="praticas-medicas-simuladas"] .pm-practice-card:nth-child(3n) {
  --pm-accent: #f28a2e;
  --pm-accent-2: #00b388;
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card::before,
html[data-page="praticas-medicas-simuladas"] .pm-practice-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px auto 22px 0;
  width: 4px;
  height: auto;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(var(--pm-accent), var(--pm-accent-2));
  opacity: 1;
  transform: scaleY(0.38);
  transform-origin: center;
  transition: transform 0.35s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card::after,
html[data-page="praticas-medicas-simuladas"] .pm-practice-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  width: 100%;
  height: 4px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--pm-accent), var(--pm-accent-2), #72d85b);
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card:hover,
html[data-page="praticas-medicas-simuladas"] .pm-practice-card:hover {
  border-color: color-mix(in srgb, var(--pm-accent-2) 50%, var(--border));
  box-shadow: 0 30px 70px rgba(8, 41, 66, 0.16);
  transform: translateY(-9px);
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card:hover::before,
html[data-page="praticas-medicas-simuladas"] .pm-practice-card:hover::before {
  transform: scaleY(1);
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card:hover::after,
html[data-page="praticas-medicas-simuladas"] .pm-practice-card:hover::after {
  transform: scaleX(1);
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card .ri-feature-icon,
html[data-page="praticas-medicas-simuladas"] .pm-practice-card .ri-feature-icon {
  position: relative;
  width: 66px;
  height: 66px;
  border: 1px solid color-mix(in srgb, var(--pm-accent) 52%, rgba(255, 255, 255, 0.42));
  border-radius: 21px;
  color: color-mix(in srgb, var(--pm-accent) 82%, #fff);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.28), transparent 31%),
    color-mix(in srgb, var(--pm-accent) 25%, var(--surface));
  box-shadow:
    0 16px 34px color-mix(in srgb, var(--pm-accent) 20%, transparent),
    inset 0 0 0 6px rgba(255, 255, 255, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card .ri-feature-icon::after,
html[data-page="praticas-medicas-simuladas"] .pm-practice-card .ri-feature-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: var(--pm-accent-2);
  box-shadow: 0 0 12px var(--pm-accent-2);
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card .ri-feature-icon svg,
html[data-page="praticas-medicas-simuladas"] .pm-practice-card .ri-feature-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.8;
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card:hover .ri-feature-icon,
html[data-page="praticas-medicas-simuladas"] .pm-practice-card:hover .ri-feature-icon {
  box-shadow:
    0 20px 42px color-mix(in srgb, var(--pm-accent-2) 27%, transparent),
    inset 0 0 0 6px rgba(255, 255, 255, 0.16);
  transform: translateY(-3px) rotate(-3deg) scale(1.05);
}
html[data-page="praticas-medicas-simuladas"] .pm-step-label,
html[data-page="praticas-medicas-simuladas"] .pm-card-index {
  position: absolute;
  top: 31px;
  right: 28px;
  width: auto;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card h3,
html[data-page="praticas-medicas-simuladas"] .pm-practice-card h3 {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.25;
}
html[data-page="praticas-medicas-simuladas"] .pm-group-card ul {
  margin-top: 18px;
}
html[data-page="praticas-medicas-simuladas"] .pm-practice-card {
  min-height: 245px;
  justify-content: flex-start;
}
html[data-page="praticas-medicas-simuladas"] .pm-practice-card:nth-child(2) { transition-delay: 0.04s; }
html[data-page="praticas-medicas-simuladas"] .pm-practice-card:nth-child(3) { transition-delay: 0.08s; }
html[data-page="praticas-medicas-simuladas"] .pm-practice-card:nth-child(4) { transition-delay: 0.12s; }
html[data-page="praticas-medicas-simuladas"] .pm-practice-card:nth-child(5) { transition-delay: 0.04s; }
html[data-page="praticas-medicas-simuladas"] .pm-practice-card:nth-child(6) { transition-delay: 0.08s; }
html[data-page="praticas-medicas-simuladas"] .pm-practice-card:nth-child(7) { transition-delay: 0.12s; }
html[data-page="praticas-medicas-simuladas"] .pm-practice-card:nth-child(8) { transition-delay: 0.16s; }

html[data-page="praticas-medicas-simuladas"] .ri-screen-tabs {
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-tab {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  overflow: hidden;
  filter: none;
  backdrop-filter: none;
  border-radius: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
html[data-page="praticas-medicas-simuladas"] .ri-screen-tab:hover,
html[data-page="praticas-medicas-simuladas"] .ri-screen-tab.active {
  box-shadow: 0 14px 32px rgba(0, 151, 178, 0.24);
}
html[data-page="praticas-medicas-simuladas"] .ri-primary,
html[data-page="praticas-medicas-simuladas"] .ri-secondary {
  position: relative;
  overflow: hidden;
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.015em;
}
html[data-page="praticas-medicas-simuladas"] .ri-primary {
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 17px 38px rgba(0, 151, 178, 0.3);
}
html[data-page="praticas-medicas-simuladas"] .ri-primary::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -38%;
  width: 28%;
  background: rgba(255, 255, 255, 0.42);
  transform: skewX(-18deg);
  animation: pm-button-shine 5.2s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .ri-primary:hover {
  box-shadow: 0 22px 48px rgba(0, 179, 136, 0.38);
  transform: translateY(-3px);
}
html[data-page="praticas-medicas-simuladas"] .pm-upgrade-card {
  min-height: 270px;
  padding: 52px 50px;
  box-sizing: border-box;
}
html[data-page="praticas-medicas-simuladas"] .pm-upgrade-card .ri-kicker {
  margin-bottom: 3px;
}
@keyframes pm-button-shine {
  0%, 66%, 100% { left: -38%; }
  82% { left: 128%; }
}
@media (max-width: 760px) {
  html[data-page="praticas-medicas-simuladas"] .ri-screen-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html[data-page="praticas-medicas-simuladas"] .ri-actions .ri-primary,
  html[data-page="praticas-medicas-simuladas"] .ri-actions .ri-secondary,
  html[data-page="praticas-medicas-simuladas"] .pm-upgrade-card .ri-primary {
    width: 100%;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-upgrade-card {
    padding: 38px 28px;
  }
}
@media (max-width: 520px) {
  html[data-page="praticas-medicas-simuladas"] .pm-group-card,
  html[data-page="praticas-medicas-simuladas"] .pm-practice-card {
    padding: 27px 23px 25px;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-step-label,
  html[data-page="praticas-medicas-simuladas"] .pm-card-index {
    top: 25px;
    right: 20px;
    max-width: 47%;
    white-space: normal;
    line-height: 1.25;
    text-align: right;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-practice-card {
    min-height: 220px;
  }
}

/* Tecnologia em destaque + boxes da formação com acabamento R1/R3. */
html[data-page="praticas-medicas-simuladas"] .pm-intelligence .ri-planner-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(42px, 5vw, 74px);
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence .ri-planner-copy {
  min-width: 0;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence .ri-planner-copy h2 {
  width: 100%;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-statement {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-statement::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -30%;
  width: 24%;
  height: 300%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: rotate(18deg);
  animation: pm-intelligence-shine 5.5s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-statement:hover {
  border-color: rgba(0, 179, 136, 0.46);
  box-shadow: 0 16px 34px rgba(0, 179, 136, 0.12);
  transform: translateX(6px);
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-points {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-points span {
  min-height: 36px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  font-size: 11px;
  font-weight: 750;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-points span:hover {
  color: var(--ink);
  border-color: rgba(0, 179, 136, 0.4);
  transform: translateY(-3px);
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-points i,
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-live i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(0, 179, 136, 0.11), 0 0 14px rgba(0, 179, 136, 0.75);
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-visual {
  isolation: isolate;
  width: 100%;
  padding: 16px;
  border-color: color-mix(in srgb, var(--blue) 25%, var(--border));
  box-shadow: 0 28px 70px rgba(8, 41, 66, 0.18), 0 0 0 1px rgba(0, 179, 136, 0.06) inset;
  transform: perspective(1100px) rotateY(-1.5deg);
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.2, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-visual::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 7%;
  right: 7%;
  height: 2px;
  border-radius: 999px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, #2f80ed, #00b388, transparent);
  box-shadow: 0 0 22px rgba(0, 179, 136, 0.65);
  animation: pm-intelligence-scan 5s ease-in-out infinite;
  pointer-events: none;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-visual:hover {
  border-color: rgba(0, 179, 136, 0.46);
  box-shadow: 0 36px 88px rgba(8, 41, 66, 0.26), 0 0 42px rgba(0, 179, 136, 0.1);
  transform: perspective(1100px) rotateY(0) translateY(-8px) scale(1.015);
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-visual > img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.45s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-visual:hover > img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.015);
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-live {
  position: absolute;
  z-index: 4;
  top: 30px;
  right: 30px;
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #eaf9f5;
  background: rgba(5, 30, 45, 0.78);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-live i {
  animation: pm-live-pulse 2s ease-in-out infinite;
}
html[data-page="praticas-medicas-simuladas"] .pm-intelligence-note {
  left: -34px;
  bottom: 30px;
  max-width: 270px;
  padding: 20px 22px;
  animation: pm-note-float 4.6s ease-in-out infinite;
}

html[data-page="praticas-medicas-simuladas"] .pm-audience-grid {
  gap: 22px;
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card {
  --pm-audience-accent: #2f80ed;
  --pm-audience-accent-2: #00b388;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 305px;
  padding: 32px 30px 29px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--pm-audience-accent) 14%, transparent), transparent 38%),
    linear-gradient(155deg, var(--surface), var(--surface-soft));
  box-shadow: 0 20px 48px rgba(8, 41, 66, 0.09);
  transition: transform 0.38s cubic-bezier(0.2, 0.75, 0.2, 1), border-color 0.35s ease, box-shadow 0.38s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card:nth-child(2) {
  --pm-audience-accent: #00b388;
  --pm-audience-accent-2: #5ce1c1;
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card:nth-child(3) {
  --pm-audience-accent: #ff8a34;
  --pm-audience-accent-2: #ffc166;
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 31%;
  width: 4px;
  height: 34%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--pm-audience-accent), var(--pm-audience-accent-2));
  box-shadow: 0 0 20px color-mix(in srgb, var(--pm-audience-accent) 50%, transparent);
  transition: height 0.35s ease, top 0.35s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -25%;
  bottom: -45%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--pm-audience-accent) 16%, transparent);
  filter: blur(2px);
  transition: transform 0.55s ease, opacity 0.4s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card:hover {
  border-color: color-mix(in srgb, var(--pm-audience-accent) 45%, var(--border));
  box-shadow: 0 30px 70px rgba(8, 41, 66, 0.17), 0 0 32px color-mix(in srgb, var(--pm-audience-accent) 9%, transparent);
  transform: translateY(-10px);
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card:hover::before {
  top: 22%;
  height: 54%;
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card:hover::after {
  opacity: 0.9;
  transform: translate(-35px, -28px) scale(1.2);
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-index {
  position: absolute;
  top: 29px;
  right: 27px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--pm-audience-accent) 25%, var(--border));
  border-radius: 999px;
  color: color-mix(in srgb, var(--pm-audience-accent) 75%, var(--ink));
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card .ri-audience-icon {
  position: relative;
  width: 68px;
  height: 68px;
  border: 1px solid color-mix(in srgb, var(--pm-audience-accent) 42%, rgba(255, 255, 255, 0.3));
  border-radius: 22px;
  color: color-mix(in srgb, var(--pm-audience-accent) 78%, #fff);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.25), transparent 34%),
    color-mix(in srgb, var(--pm-audience-accent) 20%, var(--surface));
  box-shadow: 0 15px 34px color-mix(in srgb, var(--pm-audience-accent) 20%, transparent), inset 0 0 0 7px rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.2, 0.75, 0.2, 1), box-shadow 0.4s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card .ri-audience-icon::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pm-audience-accent-2);
  box-shadow: 0 0 13px var(--pm-audience-accent-2);
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card:hover .ri-audience-icon {
  box-shadow: 0 20px 42px color-mix(in srgb, var(--pm-audience-accent) 30%, transparent), inset 0 0 0 7px rgba(255, 255, 255, 0.08);
  transform: translateY(-3px) rotate(-4deg) scale(1.07);
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card .ri-audience-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.65;
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card h3 {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 780;
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card p {
  font-size: 13px;
  line-height: 1.72;
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card strong {
  margin-top: auto;
  padding-top: 22px;
  color: color-mix(in srgb, var(--pm-audience-accent) 80%, var(--ink));
  font-size: 11px;
  font-weight: 850;
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card strong::after {
  content: "  →";
  display: inline-block;
  transition: transform 0.25s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-audience-card:hover strong::after {
  transform: translateX(5px);
}

html[data-page="praticas-medicas-simuladas"] .pm-upgrade {
  padding-top: 100px !important;
}

@keyframes pm-intelligence-shine {
  0%, 68%, 100% { left: -30%; }
  84% { left: 120%; }
}
@keyframes pm-intelligence-scan {
  0%, 16%, 100% { top: 16px; opacity: 0; }
  24% { opacity: 0.75; }
  62% { top: calc(100% - 18px); opacity: 0.25; }
  68% { opacity: 0; }
}
@keyframes pm-live-pulse {
  0%, 100% { transform: scale(0.86); opacity: 0.72; }
  50% { transform: scale(1.12); opacity: 1; }
}
@keyframes pm-note-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (max-width: 1080px) {
  html[data-page="praticas-medicas-simuladas"] .pm-intelligence .ri-planner-grid {
    grid-template-columns: 1fr;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-intelligence-visual {
    width: min(820px, 100%);
    margin: 0 auto;
    transform: none;
  }
}
@media (max-width: 760px) {
  html[data-page="praticas-medicas-simuladas"] .pm-intelligence-visual {
    padding: 9px;
    border-radius: 21px;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-intelligence-live {
    top: 18px;
    right: 18px;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-intelligence-note {
    left: 18px;
    bottom: 18px;
    max-width: min(250px, calc(100% - 36px));
  }
  html[data-page="praticas-medicas-simuladas"] .pm-audience-card {
    min-height: 285px;
  }
}
@media (max-width: 420px) {
  html[data-page="praticas-medicas-simuladas"] .pm-intelligence-live {
    display: none;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-intelligence-note {
    padding: 15px 17px;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-audience-card {
    padding: 27px 23px 25px;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-audience-index {
    top: 26px;
    right: 21px;
  }
}

/* Planos no mesmo sistema visual da página Preços e Planos. */
html[data-page="praticas-medicas-simuladas"] .pm-price-grid {
  max-width: 1040px;
  gap: 22px;
  align-items: stretch;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 650px;
  padding: 30px;
  border: 1px solid #14a9c7;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(47, 128, 237, 0.06), transparent 27%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, #fff), var(--surface));
  box-shadow: 0 18px 44px rgba(8, 41, 66, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -80%;
  left: -45%;
  width: 32%;
  height: 260%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(18deg);
  transition: left 0.75s ease, opacity 0.25s ease;
  pointer-events: none;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-card:hover {
  border-color: #14a9c7;
  box-shadow: 0 30px 68px rgba(8, 41, 66, 0.17), 0 0 34px rgba(20, 169, 199, 0.08);
  transform: translateY(-8px);
}
html[data-page="praticas-medicas-simuladas"] .pm-price-card:hover::before {
  left: 125%;
  opacity: 1;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-featured {
  border: 2px solid color-mix(in srgb, var(--green) 58%, var(--blue) 42%);
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 179, 136, 0.13), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 94%, #effff9), var(--surface));
  box-shadow: 0 24px 58px rgba(0, 151, 178, 0.16);
}
html[data-page="praticas-medicas-simuladas"] .pm-price-featured:hover {
  box-shadow: 0 34px 78px rgba(0, 151, 178, 0.23), 0 0 38px rgba(0, 179, 136, 0.1);
}
html[data-page="praticas-medicas-simuladas"] .pm-price-topline {
  min-height: 27px;
  display: flex;
  align-items: center;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-topline span {
  min-height: 25px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 9%, transparent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-featured .pm-price-topline span {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 7px 18px rgba(0, 151, 178, 0.18);
}
html[data-page="praticas-medicas-simuladas"] .pm-price-badge {
  top: 27px;
  right: 28px;
  padding: 7px 11px;
  box-shadow: 0 8px 20px rgba(0, 151, 178, 0.18);
}
html[data-page="praticas-medicas-simuladas"] .pm-price-card h3 {
  margin: 18px 0 0;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-summary {
  min-height: 50px;
  margin: 13px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-duration {
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface-soft);
}
html[data-page="praticas-medicas-simuladas"] .pm-price-duration span {
  min-height: 40px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 8px 18px rgba(0, 151, 178, 0.18);
  font-size: 14px;
  font-weight: 820;
}
html[data-page="praticas-medicas-simuladas"] .pm-installment {
  margin-top: 23px;
  color: var(--muted);
  font-size: 11px;
}
html[data-page="praticas-medicas-simuladas"] .pm-installment strong {
  margin-top: 5px;
  font-size: 25px;
  font-weight: 820;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
html[data-page="praticas-medicas-simuladas"] .pm-total {
  margin-top: 7px;
  font-size: 11px;
}
html[data-page="praticas-medicas-simuladas"] .pm-cash {
  margin-top: 13px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--green) 34%, var(--border));
  color: color-mix(in srgb, var(--green) 78%, var(--ink));
  background: color-mix(in srgb, var(--green) 9%, transparent);
  font-size: 14px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-card ul {
  margin: 22px 0 20px;
  gap: 10px;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-card li {
  padding-left: 25px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.45;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-card li::before {
  top: 0;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 5px 12px rgba(0, 151, 178, 0.17);
  font-size: 10px;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-closing {
  margin: auto 0 18px;
  padding: 14px 15px;
  border: 1px solid color-mix(in srgb, var(--blue) 16%, var(--border));
  border-radius: 15px;
  background: color-mix(in srgb, var(--surface-soft) 78%, transparent);
}
html[data-page="praticas-medicas-simuladas"] .pm-price-closing strong,
html[data-page="praticas-medicas-simuladas"] .pm-price-closing span {
  display: block;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-closing strong {
  color: var(--ink);
  font-size: 12px;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-closing span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-card .pm-price-cta {
  min-height: 52px;
  margin-top: 0;
  padding: 0 18px;
  justify-content: space-between;
  border-radius: 13px;
  font-size: 14px;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-cta span {
  font-size: 19px;
  transition: transform 0.25s ease;
}
html[data-page="praticas-medicas-simuladas"] .pm-price-cta:hover span {
  transform: translateX(5px);
}
@media (max-width: 760px) {
  html[data-page="praticas-medicas-simuladas"] .pm-price-card {
    min-height: 0;
    padding: 27px 24px;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-price-summary {
    min-height: 0;
  }
}
@media (max-width: 520px) {
  html[data-page="praticas-medicas-simuladas"] .pm-price-badge {
    position: static;
    width: max-content;
    margin-bottom: 14px;
  }
  html[data-page="praticas-medicas-simuladas"] .pm-price-card h3 {
    font-size: 28px;
  }
}

/* ================================================================
   Cursos de Extensão — página editorial
   ================================================================ */
html[data-page="cursos-de-extensao"] {
  --blue: #2f80ed;
  --blue-2: #195fc3;
  --blue-deep: #082942;
  --blue-darker: #051a2a;
  --green: #00b388;
  --green-2: #2bd4a8;
  --ink: #102939;
  --muted: #667085;
  --surface: #ffffff;
  --surface-soft: #f5f9fc;
  --surface-blue: #edf7ff;
  --border: rgba(16, 41, 57, 0.12);
  --header: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 70px rgba(8, 41, 66, 0.14);
  --max: 1240px;
  scroll-behavior: smooth;
  background: #071f2f;
  color-scheme: light;
}
html[data-page="cursos-de-extensao"][data-theme="dark"] {
  --ink: #f6fbff;
  --muted: #a7bac8;
  --surface: #071b2a;
  --surface-soft: #0b2335;
  --surface-blue: #0d2a40;
  --border: rgba(236, 247, 255, 0.12);
  --header: rgba(6, 24, 37, 0.92);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}
html[data-page="cursos-de-extensao"] body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}
html[data-page="cursos-de-extensao"] .cex-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 150px 0 92px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 84% 28%, rgba(0, 179, 136, 0.25), transparent 31%),
    radial-gradient(circle at 17% 22%, rgba(47, 128, 237, 0.21), transparent 29%),
    linear-gradient(135deg, #061d2d 0%, #082f45 52%, #06454b 100%);
}
html[data-page="cursos-de-extensao"] .cex-hero::before,
html[data-page="cursos-de-extensao"] .cex-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(112, 230, 204, 0.13);
  border-radius: 50%;
  pointer-events: none;
}
html[data-page="cursos-de-extensao"] .cex-hero::before { width: 560px; height: 560px; right: -180px; top: 65px; }
html[data-page="cursos-de-extensao"] .cex-hero::after { width: 330px; height: 330px; left: -160px; bottom: -100px; }
html[data-page="cursos-de-extensao"] .cex-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  gap: clamp(48px, 6vw, 82px);
  align-items: center;
}
html[data-page="cursos-de-extensao"] .cex-kicker {
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(0, 179, 136, 0.26);
  border-radius: 999px;
  color: #00b388;
  background: rgba(0, 179, 136, 0.07);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
html[data-page="cursos-de-extensao"] .cex-hero .cex-kicker { color: #8ee7c9; background: rgba(5, 30, 45, 0.42); }
html[data-page="cursos-de-extensao"] .cex-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67e6ba;
  box-shadow: 0 0 0 5px rgba(103, 230, 186, 0.1), 0 0 16px rgba(103, 230, 186, 0.72);
  animation: cex-pulse 2.2s ease-in-out infinite;
}
html[data-page="cursos-de-extensao"] .cex-hero h1 {
  max-width: 630px;
  margin: 24px 0 0;
  color: #fff !important;
  font-size: 42px !important;
  font-weight: 400 !important;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html[data-page="cursos-de-extensao"] .cex-hero-copy > p {
  max-width: 590px;
  margin: 25px 0 0;
  color: #bed2dc;
  font-size: 15px;
  line-height: 1.75;
}
html[data-page="cursos-de-extensao"] .cex-hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
html[data-page="cursos-de-extensao"] .cex-button {
  position: relative;
  overflow: hidden;
  min-height: 56px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  color: #fff;
  font-size: 13px;
  font-weight: 820;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
html[data-page="cursos-de-extensao"] .cex-button-primary {
  border-color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 16px 34px rgba(0, 151, 178, 0.25);
}
html[data-page="cursos-de-extensao"] .cex-button-secondary { background: rgba(255, 255, 255, 0.07); backdrop-filter: blur(8px); }
html[data-page="cursos-de-extensao"] .cex-button:hover { transform: translateY(-4px); border-color: rgba(103, 230, 186, 0.45); box-shadow: 0 22px 45px rgba(0, 151, 178, 0.28); }
html[data-page="cursos-de-extensao"] .cex-button span { font-size: 18px; transition: transform 0.25s ease; }
html[data-page="cursos-de-extensao"] .cex-button:hover span { transform: translateX(5px); }
html[data-page="cursos-de-extensao"] .cex-hero-proof { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 18px; color: #a9c8d5; font-size: 11px; font-weight: 720; }
html[data-page="cursos-de-extensao"] .cex-hero-proof span::first-letter { color: #67e6ba; }
html[data-page="cursos-de-extensao"] .cex-hero-visual { position: relative; min-height: 470px; perspective: 1200px; }
html[data-page="cursos-de-extensao"] .cex-hero-orbit { position: absolute; inset: 8% 5%; border: 1px solid rgba(103, 230, 186, 0.19); border-radius: 50%; animation: cex-orbit 11s linear infinite; }
html[data-page="cursos-de-extensao"] .cex-hero-orbit::before { content:""; position:absolute; width:11px; height:11px; top:12%; left:15%; border-radius:50%; background:#67e6ba; box-shadow:0 0 20px #67e6ba; }
html[data-page="cursos-de-extensao"] .cex-hero-mosaic { position: absolute; inset: 25px 0 20px 30px; }
html[data-page="cursos-de-extensao"] .cex-hero-mosaic img { position:absolute; width:72%; aspect-ratio:16/10; object-fit:cover; border:6px solid rgba(255,255,255,.08); border-radius:25px; box-shadow:0 30px 70px rgba(0,0,0,.32); transition:transform .45s ease, filter .45s ease; }
html[data-page="cursos-de-extensao"] .cex-hero-mosaic img:nth-child(1) { right:0; top:0; z-index:3; }
html[data-page="cursos-de-extensao"] .cex-hero-mosaic img:nth-child(2) { left:0; top:24%; z-index:2; transform:rotate(-5deg) scale(.88); filter:saturate(.78); }
html[data-page="cursos-de-extensao"] .cex-hero-mosaic img:nth-child(3) { right:4%; bottom:0; z-index:1; transform:rotate(5deg) scale(.82); filter:saturate(.72); }
html[data-page="cursos-de-extensao"] .cex-hero-visual:hover .cex-hero-mosaic img:nth-child(1) { transform:translateY(-8px) scale(1.02); }
html[data-page="cursos-de-extensao"] .cex-hero-visual:hover .cex-hero-mosaic img:nth-child(2) { transform:translate(-8px,-3px) rotate(-7deg) scale(.9); filter:saturate(1); }
html[data-page="cursos-de-extensao"] .cex-hero-note { position:absolute; z-index:5; left:2px; bottom:26px; width:250px; padding:18px 20px; border:1px solid rgba(255,255,255,.16); border-radius:18px; background:rgba(5,30,45,.88); box-shadow:0 20px 48px rgba(0,0,0,.28); backdrop-filter:blur(12px); animation:cex-float 4.5s ease-in-out infinite; }
html[data-page="cursos-de-extensao"] .cex-hero-note small { display:block; color:#67e6ba; font-size:9px; font-weight:900; letter-spacing:.13em; }
html[data-page="cursos-de-extensao"] .cex-hero-note strong { display:block; margin-top:7px; color:#fff; font-size:14px; line-height:1.45; }

html[data-page="cursos-de-extensao"] .cex-section { padding: 110px 0; border-top:1px solid color-mix(in srgb, var(--green) 13%, var(--border)); }
html[data-page="cursos-de-extensao"] .cex-section:nth-of-type(even) { background: var(--surface-soft); }
html[data-page="cursos-de-extensao"] .cex-section-head { margin-bottom:45px; text-align:center; }
html[data-page="cursos-de-extensao"] .cex-section-head .cex-kicker { margin:0 auto; }
html[data-page="cursos-de-extensao"] .cex-section h2,
html[data-page="cursos-de-extensao"] .cex-faq-intro h2 {
  position:relative;
  width:max-content;
  max-width:100%;
  margin:18px auto 0;
  padding-bottom:17px;
  color:var(--ink);
  font-size:26px !important;
  font-weight:500 !important;
  line-height:1.16;
  letter-spacing:-.035em;
  text-transform:uppercase;
}
html[data-page="cursos-de-extensao"] .cex-section h2::after,
html[data-page="cursos-de-extensao"] .cex-faq-intro h2::after { content:""; position:absolute; left:50%; bottom:0; width:clamp(120px,38%,195px); height:4px; border-radius:999px; background:linear-gradient(90deg,var(--blue),var(--green)); transform:translateX(-50%); }
html[data-page="cursos-de-extensao"] .cex-section-head > p { max-width:720px; margin:20px auto 0; color:var(--muted); font-size:14px; line-height:1.7; }

html[data-page="cursos-de-extensao"] .cex-course-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
html[data-page="cursos-de-extensao"] .cex-course-card { --cex-accent:#2f80ed; position:relative; isolation:isolate; overflow:hidden; display:flex; flex-direction:column; border:1px solid var(--border); border-radius:28px; background:linear-gradient(160deg,var(--surface),var(--surface-soft)); box-shadow:0 22px 58px rgba(8,41,66,.1); transition:transform .4s cubic-bezier(.2,.75,.2,1),box-shadow .4s ease,border-color .4s ease; }
html[data-page="cursos-de-extensao"] .cex-course-card:nth-child(2), html[data-page="cursos-de-extensao"] .cex-course-card:nth-child(5) { --cex-accent:#00b388; }
html[data-page="cursos-de-extensao"] .cex-course-card:nth-child(3), html[data-page="cursos-de-extensao"] .cex-course-card:nth-child(6) { --cex-accent:#ff8a34; }
html[data-page="cursos-de-extensao"] .cex-course-card:hover { border-color:color-mix(in srgb,var(--cex-accent) 48%,var(--border)); box-shadow:0 34px 76px rgba(8,41,66,.18),0 0 35px color-mix(in srgb,var(--cex-accent) 9%,transparent); transform:translateY(-10px); }
html[data-page="cursos-de-extensao"] .cex-course-thumb { position:relative; overflow:hidden; aspect-ratio:16/10; background:#071f2f; }
html[data-page="cursos-de-extensao"] .cex-course-thumb::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 48%,rgba(5,30,45,.78) 100%); pointer-events:none; }
html[data-page="cursos-de-extensao"] .cex-course-thumb img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .65s cubic-bezier(.2,.75,.2,1),filter .45s ease; }
html[data-page="cursos-de-extensao"] .cex-course-card:hover .cex-course-thumb img { transform:scale(1.075); filter:saturate(1.1) contrast(1.03); }
html[data-page="cursos-de-extensao"] .cex-course-thumb span { position:absolute; z-index:2; left:19px; bottom:17px; padding:7px 10px; border:1px solid rgba(255,255,255,.17); border-radius:999px; color:#fff; background:rgba(5,30,45,.7); backdrop-filter:blur(10px); font-size:8px; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
html[data-page="cursos-de-extensao"] .cex-course-body { flex:1; padding:25px 25px 24px; display:flex; flex-direction:column; }
html[data-page="cursos-de-extensao"] .cex-course-body h3 { margin:0; color:var(--ink); font-size:20px; line-height:1.22; letter-spacing:-.025em; }
html[data-page="cursos-de-extensao"] .cex-course-body p { margin:13px 0 22px; color:var(--muted); font-size:13px; line-height:1.68; }
html[data-page="cursos-de-extensao"] .cex-course-body a { min-height:48px; margin-top:auto; padding:0 15px; display:flex; align-items:center; justify-content:space-between; border:1px solid color-mix(in srgb,var(--cex-accent) 28%,var(--border)); border-radius:13px; color:color-mix(in srgb,var(--cex-accent) 76%,var(--ink)); background:color-mix(in srgb,var(--cex-accent) 8%,transparent); font-size:12px; font-weight:850; transition:color .25s ease,background .25s ease,transform .25s ease; }
html[data-page="cursos-de-extensao"] .cex-course-body a:hover { color:#fff; background:linear-gradient(90deg,var(--blue),var(--green)); transform:translateY(-2px); }
html[data-page="cursos-de-extensao"] .cex-course-body a span { font-size:18px; transition:transform .25s ease; }
html[data-page="cursos-de-extensao"] .cex-course-body a:hover span { transform:translateX(5px); }

html[data-page="cursos-de-extensao"] .cex-also-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:17px; }
html[data-page="cursos-de-extensao"] .cex-also-card { min-height:155px; padding:25px; display:grid; grid-template-columns:58px 1fr auto; gap:18px; align-items:center; border:1px solid var(--border); border-radius:23px; color:inherit; background:linear-gradient(150deg,var(--surface),var(--surface-soft)); transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease; }
html[data-page="cursos-de-extensao"] .cex-also-card:hover { border-color:rgba(0,179,136,.38); box-shadow:0 22px 52px rgba(8,41,66,.12); transform:translateY(-7px); }
html[data-page="cursos-de-extensao"] .cex-also-card > span { width:58px; height:58px; display:grid; place-items:center; border-radius:19px; color:#fff; background:linear-gradient(135deg,var(--blue),var(--green)); box-shadow:0 14px 28px rgba(0,151,178,.2); font-size:13px; font-weight:900; }
html[data-page="cursos-de-extensao"] .cex-also-card small { color:var(--green); font-size:8px; font-weight:900; letter-spacing:.1em; }
html[data-page="cursos-de-extensao"] .cex-also-card h3 { margin:6px 0 0; color:var(--ink); font-size:18px; }
html[data-page="cursos-de-extensao"] .cex-also-card p { margin:7px 0 0; color:var(--muted); font-size:12px; line-height:1.55; }
html[data-page="cursos-de-extensao"] .cex-also-card > b { color:var(--blue); font-size:22px; transition:transform .25s ease; }
html[data-page="cursos-de-extensao"] .cex-also-card:hover > b { transform:translateX(6px); }
html[data-page="cursos-de-extensao"] .cex-numbers { border-top:1px solid rgba(0,179,136,.16); border-bottom:1px solid rgba(0,179,136,.16); }
html[data-page="cursos-de-extensao"] .cex-numbers { padding:52px 0; color:#fff; background:linear-gradient(105deg,#062238,#073f4c); }
html[data-page="cursos-de-extensao"] .cex-numbers .numbers-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); }
html[data-page="cursos-de-extensao"] .cex-numbers article { min-height:118px; padding:18px 28px; display:flex; align-items:center; justify-content:center; gap:18px; border-right:1px solid rgba(255,255,255,.12); }
html[data-page="cursos-de-extensao"] .cex-numbers article:last-child { border-right:0; }
html[data-page="cursos-de-extensao"] .cex-numbers strong { min-width:92px; color:#fff; font-size:40px; font-weight:500; line-height:1; letter-spacing:-.05em; text-align:right; }
html[data-page="cursos-de-extensao"] .cex-numbers span { color:#aec5d1; font-size:11px; font-weight:750; line-height:1.45; text-transform:uppercase; letter-spacing:.04em; }

html[data-page="cursos-de-extensao"] .cex-testimonial-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:21px; }
html[data-page="cursos-de-extensao"] .cex-testimonial { min-height:280px; padding:27px; display:flex; flex-direction:column; border:1px solid var(--border); border-radius:25px; background:linear-gradient(155deg,var(--surface),var(--surface-soft)); box-shadow:0 20px 48px rgba(8,41,66,.08); transition:transform .35s ease,box-shadow .35s ease; }
html[data-page="cursos-de-extensao"] .cex-testimonial:hover { transform:translateY(-8px); box-shadow:0 30px 64px rgba(8,41,66,.15); }
html[data-page="cursos-de-extensao"] .cex-testimonial-top { display:grid; grid-template-columns:58px 1fr auto; gap:13px; align-items:center; }
html[data-page="cursos-de-extensao"] .cex-testimonial-top img { width:58px; height:58px; object-fit:cover; border:3px solid rgba(0,179,136,.24); border-radius:19px; }
html[data-page="cursos-de-extensao"] .cex-testimonial-top strong, html[data-page="cursos-de-extensao"] .cex-testimonial-top span { display:block; }
html[data-page="cursos-de-extensao"] .cex-testimonial-top strong { color:var(--ink); font-size:14px; }
html[data-page="cursos-de-extensao"] .cex-testimonial-top span { margin-top:5px; color:var(--muted); font-size:10px; }
html[data-page="cursos-de-extensao"] .cex-testimonial-top b { color:rgba(0,179,136,.3); font-family:Georgia,serif; font-size:45px; line-height:1; }
html[data-page="cursos-de-extensao"] .cex-testimonial > p { margin:22px 0; color:var(--muted); font-size:13px; line-height:1.72; }
html[data-page="cursos-de-extensao"] .cex-stars { margin-top:auto; color:#ffc166; letter-spacing:.12em; font-size:13px; }

html[data-page="cursos-de-extensao"] .cex-teacher-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
html[data-page="cursos-de-extensao"] .cex-teacher-card { overflow:hidden; border:1px solid var(--border); border-radius:25px; background:var(--surface); box-shadow:0 18px 45px rgba(8,41,66,.08); transition:transform .35s ease,box-shadow .35s ease; }
html[data-page="cursos-de-extensao"] .cex-teacher-card:hover { transform:translateY(-8px); box-shadow:0 28px 62px rgba(8,41,66,.15); }
html[data-page="cursos-de-extensao"] .cex-teacher-card > div { position:relative; overflow:hidden; height:230px; background:linear-gradient(145deg,rgba(47,128,237,.12),rgba(0,179,136,.1)); }
html[data-page="cursos-de-extensao"] .cex-teacher-card img { width:100%; height:100%; object-fit:contain; object-position:bottom center; transition:transform .45s ease; }
html[data-page="cursos-de-extensao"] .cex-teacher-card:hover img { transform:scale(1.045); }
html[data-page="cursos-de-extensao"] .cex-teacher-card > div span { position:absolute; right:15px; top:15px; width:32px; height:32px; display:grid; place-items:center; border-radius:11px; color:#fff; background:linear-gradient(135deg,var(--blue),var(--green)); font-size:9px; font-weight:900; }
html[data-page="cursos-de-extensao"] .cex-teacher-card h3 { margin:20px 21px 0; color:var(--ink); font-size:17px; }
html[data-page="cursos-de-extensao"] .cex-teacher-card p { margin:9px 21px 22px; color:var(--muted); font-size:12px; line-height:1.55; }

html[data-page="cursos-de-extensao"] .cex-faq-grid { display:grid; grid-template-columns:minmax(300px,.7fr) minmax(0,1.3fr); gap:62px; align-items:start; }
html[data-page="cursos-de-extensao"] .cex-faq-intro h2 { margin:18px 0 0; }
html[data-page="cursos-de-extensao"] .cex-faq-intro h2::after { left:0; transform:none; }
html[data-page="cursos-de-extensao"] .cex-faq-intro h3 { margin:27px 0 0; color:var(--ink); font-size:29px; line-height:1.15; letter-spacing:-.035em; }
html[data-page="cursos-de-extensao"] .cex-faq-intro p { margin:18px 0 24px; color:var(--muted); font-size:13px; line-height:1.7; }
html[data-page="cursos-de-extensao"] .cex-faq .cex-button { width:max-content; max-width:100%; }
html[data-page="cursos-de-extensao"] .faq-list { padding:15px; border:1px solid var(--border); border-radius:25px; background:var(--surface); box-shadow:0 22px 58px rgba(8,41,66,.09); }
html[data-page="cursos-de-extensao"] .faq-list article { border-bottom:1px solid var(--border); }
html[data-page="cursos-de-extensao"] .faq-list article:last-child { border-bottom:0; }
html[data-page="cursos-de-extensao"] .faq-list button { width:100%; min-height:72px; padding:13px 14px; display:grid; grid-template-columns:36px 1fr 40px; gap:13px; align-items:center; border:0; color:var(--ink); background:transparent; text-align:left; cursor:pointer; }
html[data-page="cursos-de-extensao"] .faq-list button > span { width:31px; height:31px; display:grid; place-items:center; border-radius:10px; color:var(--blue); background:rgba(47,128,237,.09); font-size:9px; font-weight:900; }
html[data-page="cursos-de-extensao"] .faq-list button strong { font-size:13px; }
html[data-page="cursos-de-extensao"] .faq-list button i { width:36px; height:36px; display:grid; place-items:center; border:1px solid var(--border); border-radius:12px; color:var(--green); transition:transform .25s ease; }
html[data-page="cursos-de-extensao"] .faq-list article.active button i, html[data-page="cursos-de-extensao"] .faq-list article.open button i, html[data-page="cursos-de-extensao"] .faq-list button[aria-expanded="true"] i { transform:rotate(45deg); }
html[data-page="cursos-de-extensao"] .faq-answer { max-height:0; overflow:hidden; opacity:0; transition:max-height .35s ease,opacity .3s ease; }
html[data-page="cursos-de-extensao"] .faq-list article.active .faq-answer, html[data-page="cursos-de-extensao"] .faq-list article.open .faq-answer { max-height:200px; opacity:1; }
html[data-page="cursos-de-extensao"] .faq-answer p { margin:0; padding:0 68px 22px 63px; color:var(--muted); font-size:12px; line-height:1.68; }

html[data-page="cursos-de-extensao"] .cex-ecosystem-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:17px; }
html[data-page="cursos-de-extensao"] .cex-ecosystem-card { min-height:235px; padding:27px 23px; display:flex; flex-direction:column; border:1px solid var(--border); border-radius:24px; color:inherit; background:linear-gradient(155deg,var(--surface),var(--surface-soft)); transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease; }
html[data-page="cursos-de-extensao"] .cex-ecosystem-card:hover { border-color:rgba(0,179,136,.38); box-shadow:0 26px 58px rgba(8,41,66,.13); transform:translateY(-8px); }
html[data-page="cursos-de-extensao"] .cex-ecosystem-card img { width:150px; height:45px; object-fit:contain; object-position:left center; filter:var(--brand-filter,none); }
html[data-page="cursos-de-extensao"] .cex-ecosystem-card p { margin:25px 0; color:var(--muted); font-size:12px; line-height:1.62; }
html[data-page="cursos-de-extensao"] .cex-ecosystem-card span { margin-top:auto; color:var(--green); font-size:11px; font-weight:850; }
html[data-page="cursos-de-extensao"][data-theme="dark"] .cex-ecosystem-card img { filter:brightness(0) invert(1); }

@keyframes cex-pulse { 0%,100%{transform:scale(.88);opacity:.75} 50%{transform:scale(1.12);opacity:1} }
@keyframes cex-orbit { to{transform:rotate(360deg)} }
@keyframes cex-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@media (max-width:1080px) {
  html[data-page="cursos-de-extensao"] .cex-hero-grid { grid-template-columns:1fr; }
  html[data-page="cursos-de-extensao"] .cex-hero-copy { max-width:760px; }
  html[data-page="cursos-de-extensao"] .cex-hero-visual { width:min(760px,100%); margin:0 auto; }
  html[data-page="cursos-de-extensao"] .cex-course-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  html[data-page="cursos-de-extensao"] .cex-teacher-grid, html[data-page="cursos-de-extensao"] .cex-ecosystem-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:760px) {
  html[data-page="cursos-de-extensao"] .cex-hero { min-height:0; padding:125px 0 75px; }
  html[data-page="cursos-de-extensao"] .cex-hero h1 { font-size:42px !important; }
  html[data-page="cursos-de-extensao"] .cex-hero-actions { display:grid; }
  html[data-page="cursos-de-extensao"] .cex-button { width:100%; }
  html[data-page="cursos-de-extensao"] .cex-hero-visual { min-height:390px; }
  html[data-page="cursos-de-extensao"] .cex-section { padding:82px 0; }
  html[data-page="cursos-de-extensao"] .cex-course-grid, html[data-page="cursos-de-extensao"] .cex-also-grid, html[data-page="cursos-de-extensao"] .cex-testimonial-grid, html[data-page="cursos-de-extensao"] .cex-faq-grid { grid-template-columns:1fr; }
  html[data-page="cursos-de-extensao"] .cex-faq-grid { gap:37px; }
  html[data-page="cursos-de-extensao"] .cex-testimonial { min-height:0; }
  html[data-page="cursos-de-extensao"] .cex-numbers .numbers-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  html[data-page="cursos-de-extensao"] .cex-numbers article:nth-child(2) { border-right:0; }
  html[data-page="cursos-de-extensao"] .cex-numbers article:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.12); }
}
@media (max-width:520px) {
  html[data-page="cursos-de-extensao"] .cex-hero h1 { font-size:42px !important; }
  html[data-page="cursos-de-extensao"] .cex-hero-copy > p { font-size:14px; }
  html[data-page="cursos-de-extensao"] .cex-hero-proof { display:grid; gap:9px; }
  html[data-page="cursos-de-extensao"] .cex-hero-visual { min-height:320px; }
  html[data-page="cursos-de-extensao"] .cex-hero-mosaic { inset:20px 0 10px 5px; }
  html[data-page="cursos-de-extensao"] .cex-hero-mosaic img { width:78%; border-width:4px; border-radius:18px; }
  html[data-page="cursos-de-extensao"] .cex-hero-note { width:215px; left:3px; bottom:8px; padding:14px 16px; }
  html[data-page="cursos-de-extensao"] .cex-section h2, html[data-page="cursos-de-extensao"] .cex-faq-intro h2 { font-size:26px !important; }
  html[data-page="cursos-de-extensao"] .cex-course-grid { grid-template-columns:1fr; }
  html[data-page="cursos-de-extensao"] .cex-course-body { padding:22px 21px; }
  html[data-page="cursos-de-extensao"] .cex-also-card { grid-template-columns:48px 1fr auto; padding:20px; }
  html[data-page="cursos-de-extensao"] .cex-also-card > span { width:48px; height:48px; border-radius:16px; }
  html[data-page="cursos-de-extensao"] .cex-teacher-grid, html[data-page="cursos-de-extensao"] .cex-ecosystem-grid { grid-template-columns:1fr; }
  html[data-page="cursos-de-extensao"] .cex-numbers article { padding:17px 11px; gap:10px; }
  html[data-page="cursos-de-extensao"] .cex-numbers strong { min-width:72px; font-size:32px; }
  html[data-page="cursos-de-extensao"] .cex-teacher-card > div { height:260px; }
  html[data-page="cursos-de-extensao"] .faq-list { padding:8px; }
  html[data-page="cursos-de-extensao"] .faq-list button { grid-template-columns:32px 1fr 36px; gap:9px; padding-inline:8px; }
  html[data-page="cursos-de-extensao"] .faq-answer p { padding:0 45px 20px 48px; }
}
@media (prefers-reduced-motion:reduce) {
  html[data-page="cursos-de-extensao"] *, html[data-page="cursos-de-extensao"] *::before, html[data-page="cursos-de-extensao"] *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; }
}

/* Estrutura global da página interna de Extensão. */
html[data-page="cursos-de-extensao"] *, html[data-page="cursos-de-extensao"] *::before, html[data-page="cursos-de-extensao"] *::after { box-sizing:border-box; }
html[data-page="cursos-de-extensao"] a { color:inherit; text-decoration:none; }
html[data-page="cursos-de-extensao"] img { max-width:100%; }
html[data-page="cursos-de-extensao"] button { color:inherit; font:inherit; }
html[data-page="cursos-de-extensao"] .section-shell { width:min(1240px,calc(100% - 48px)); margin-inline:auto; }


























html[data-page="cursos-de-extensao"] .brand-strip { padding:30px 0; color:#102939; background:#fff; border-block:1px solid #dfe8ee; }
html[data-page="cursos-de-extensao"] .brand-strip-inner { display:grid; grid-template-columns:minmax(0,1.08fr) 1px minmax(0,1fr); gap:28px; align-items:center; }
html[data-page="cursos-de-extensao"] .brand-strip-divider { width:1px; height:94px; background:#d7e1e8; }
html[data-page="cursos-de-extensao"] .brand-group h2 { margin:0 0 15px; color:#49668f; font-size:14px !important; font-weight:900; letter-spacing:.08em; text-align:center; }
html[data-page="cursos-de-extensao"] .brand-logos { display:grid; gap:10px; }
html[data-page="cursos-de-extensao"] .institutions-logos { grid-template-columns:repeat(5,minmax(0,1fr)); }
html[data-page="cursos-de-extensao"] .developed-logos { grid-template-columns:repeat(4,minmax(0,1fr)); }
html[data-page="cursos-de-extensao"] .brand-logo-card { height:72px; padding:11px; display:flex; align-items:center; justify-content:center; border:1px solid #d8e5ed; border-radius:13px; background:#fff; box-shadow:0 6px 16px rgba(8,41,66,.05); }
html[data-page="cursos-de-extensao"] .brand-logo-card img { max-width:100%; max-height:48px; object-fit:contain; }
html[data-page="cursos-de-extensao"] footer { color:#fff; background:#061b2a; }
html[data-page="cursos-de-extensao"] .footer-main { padding:74px 0 58px; display:grid; grid-template-columns:300px 1fr; gap:70px; }
html[data-page="cursos-de-extensao"] .footer-brand img { width:235px; filter:brightness(0) invert(1); opacity:.94; }
html[data-page="cursos-de-extensao"] .footer-brand > p { margin:25px 0; color:#9fb4c2; font-size:16px; line-height:1.75; }
html[data-page="cursos-de-extensao"] .socials { display:flex; gap:9px; }
html[data-page="cursos-de-extensao"] .socials a { width:40px; height:40px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.12); border-radius:11px; color:#a7bdca; }
html[data-page="cursos-de-extensao"] .footer-links { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:30px; }
html[data-page="cursos-de-extensao"] .footer-links > div { display:flex; flex-direction:column; align-items:flex-start; gap:11px; }
html[data-page="cursos-de-extensao"] .footer-links h3 { margin:0 0 18px; color:#fff; font-size:16px; }
html[data-page="cursos-de-extensao"] .footer-links a, html[data-page="cursos-de-extensao"] .footer-links span { color:#9db2bf; font-size:14px; line-height:1.55; }
html[data-page="cursos-de-extensao"] .footer-links a:hover { color:#fff; }
html[data-page="cursos-de-extensao"] .footer-links small { margin-top:7px; color:#7892a1; font-size:12px; line-height:1.55; }
html[data-page="cursos-de-extensao"] .footer-bottom { border-top:1px solid rgba(255,255,255,.08); }
html[data-page="cursos-de-extensao"] .footer-bottom > div { min-height:74px; display:flex; align-items:center; justify-content:space-between; gap:25px; color:#7894a3; font-size:12px; }
html[data-page="cursos-de-extensao"] .floating-contact { position:fixed; z-index:80; right:23px; bottom:23px; min-height:50px; padding:0 18px; display:flex; align-items:center; gap:9px; border-radius:16px; color:#fff; background:linear-gradient(135deg,#00b388,#008e70); box-shadow:0 15px 35px rgba(0,179,136,.3); font-size:12px; font-weight:800; transition:.25s; }
html[data-page="cursos-de-extensao"] .floating-contact:hover { transform:translateY(-3px); }

/* Alinhamento editorial dos heróis com a marca do cabeçalho. */
html[data-page="curso-r1"] .r1e-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
  margin-left: -67px;
}
html[data-page="r3"] .r3x-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
  margin-left: -67px;
}
html[data-product="enamed"] .enx-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
  margin-left: -67px;
}
html[data-page="revalida"] .hero-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
  margin-left: -67px;
}
html[data-page="praticas-medicas-simuladas"] .ri-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
  margin-left: -67px;
}
html[data-page="ciclo-basico"] .cbx-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
  margin-left: -67px;
}
@media (max-width: 1120px) {
  html[data-page="curso-r1"] .r1e-hero-copy,
  html[data-page="r3"] .r3x-hero-copy,
  html[data-product="enamed"] .enx-hero-copy,
  html[data-page="revalida"] .hero-copy,
  html[data-page="praticas-medicas-simuladas"] .ri-hero-copy,
  html[data-page="ciclo-basico"] .cbx-hero-copy {
    margin-left: 0;
  }
}
@media(max-width:1100px) {
  
  
  html[data-page="cursos-de-extensao"] .footer-main { grid-template-columns:250px 1fr; gap:42px; }
}
@media(max-width:920px) {
  
  
  
  
  
  
  
  
  
  
  
  
  
  html[data-page="cursos-de-extensao"] .brand-strip-inner, html[data-page="cursos-de-extensao"] .footer-main { grid-template-columns:1fr; }
  html[data-page="cursos-de-extensao"] .brand-strip-divider { width:100%; height:1px; }
  html[data-page="cursos-de-extensao"] .footer-links { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media(max-width:640px) {
  html[data-page="cursos-de-extensao"] .section-shell { width:calc(100% - 28px); }
  
  
  html[data-page="cursos-de-extensao"] .institutions-logos { grid-template-columns:repeat(2,minmax(0,1fr)); }
  html[data-page="cursos-de-extensao"] .institutions-logos .brand-logo-card:last-child { grid-column:1/-1; width:calc(50% - 5px); justify-self:center; }
  html[data-page="cursos-de-extensao"] .developed-logos { grid-template-columns:repeat(2,minmax(0,1fr)); }
  html[data-page="cursos-de-extensao"] .footer-links { grid-template-columns:1fr; }
  html[data-page="cursos-de-extensao"] .footer-bottom > div { padding-block:20px; flex-direction:column; align-items:flex-start; }
  html[data-page="cursos-de-extensao"] .floating-contact { width:52px; padding:0; justify-content:center; border-radius:50%; }
  html[data-page="cursos-de-extensao"] .floating-contact span { display:none; }
}

/* ============================================================
   Ajustes finais da Home — 01/09/2026
   ============================================================ */
@media (min-width: 1121px) {
  html[data-page="index"] .hero-slide .hero-copy {
    margin-left: -67px;
    margin-right: auto;
  }
}

html[data-page="index"] .platform-frame .platform-viewport {
  border-radius: 18px;
}

html[data-page="index"] .testimonial-card > p,
html[data-page="index"] .testimonial-card.has-face > p {
  display: -webkit-box;
  max-height: calc(4 * 1.65em);
  overflow: hidden;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

html[data-page="index"] .media-video-copy small {
  font-size: 12px;
}

/* Mantém as três artes completas em monitores desktop mais estreitos.
   Em 1920px ou telas amplas, o preenchimento original permanece intacto. */
@media (min-width: 901px) and (max-width: 1700px) {
  html[data-page="index"] .hero-slide {
    background-color: #061d2f;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }

}

@media (min-width: 901px) {
  html[data-page="index"] .hero-desempenho {
    background-position: right center;
    background-size: 1920px 700px;
  }
}
