:root {
  --cor-azul-profundo: #26325a;
  --cor-azul: #579ed9;
  --cor-laranja: #d67c1c;
  --cor-branco: #ffffff;
  --cor-fundo: #f7fbff;
  --cor-fundo-azul: #eef7ff;
  --cor-texto: #26325a;
  --cor-texto-suave: #5d6b82;
  --cor-borda: #d8e8f5;
  --cor-verde: #27ae60;
  --mapear-azul-escuro: #182b5f;
  --mapear-azul: #5a9be7;
  --mapear-laranja: #e58219;
  --mapear-laranja-claro: #e5a33a;
  --mapear-verde: #1fa84f;
  --mapear-borda: #e3ecf7;
  --mapear-texto-suave: #5d6d8c;
  --mapear-max: 1520px;
  --mapear-header-height: 104px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--cor-branco);
  color: var(--mapear-azul-escuro);
  font-family: "Montserrat", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body.mapear-menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2 {
  margin: 0;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(229, 130, 25, 0.48);
  outline-offset: 5px;
}

.mapear-skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--mapear-azul-escuro);
  color: var(--cor-branco);
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.mapear-skip-link:focus {
  transform: translateY(0);
}

.mapear-header {
  position: relative;
  z-index: 20;
  width: 100%;
  height: var(--mapear-header-height);
  border-bottom: 1px solid #e5edf7;
  background: var(--cor-branco);
  transition: box-shadow 0.2s ease;
}

.mapear-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(28, 55, 107, 0.08);
}

.mapear-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 80px, var(--mapear-max));
  height: var(--mapear-header-height);
  margin: 0 auto;
  gap: 28px;
}

.mapear-header__logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.mapear-header__logo img {
  width: clamp(118px, 8.2vw, 145px);
  height: clamp(78px, 5.4vw, 92px);
  object-fit: contain;
  object-position: left center;
}

.mapear-header__nav {
  flex: 1 1 auto;
  min-width: 0;
}

.mapear-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.35vw, 34px);
}

.mapear-header__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  color: var(--mapear-azul-escuro);
  font-size: clamp(13px, 0.88vw, 17px);
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.mapear-header__nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: var(--mapear-azul);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mapear-header__nav-link:hover,
.mapear-header__nav-link--active {
  color: #0f67c8;
}

.mapear-header__nav-link:hover::after,
.mapear-header__nav-link--active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.mapear-header__actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.mapear-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 10px;
  min-width: clamp(142px, 9.4vw, 178px);
  height: clamp(56px, 3.65vw, 64px);
  padding: 0 20px;
  border-radius: 14px;
  background: var(--mapear-laranja);
  color: var(--cor-branco);
  box-shadow: 0 14px 28px rgba(229, 130, 25, 0.22);
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mapear-header__cta--secondary {
  min-width: clamp(150px, 10vw, 190px);
  background: var(--mapear-verde);
  color: var(--cor-branco);
  border: 2px solid var(--mapear-verde);
  box-shadow: 0 10px 22px rgba(31, 168, 79, 0.2);
}

.mapear-header__cta--secondary:hover {
  border-color: color-mix(in srgb, var(--mapear-verde) 88%, #000);
  background: color-mix(in srgb, var(--mapear-verde) 88%, #000);
  color: var(--cor-branco);
}

.mapear-header__cta svg,
.mapear-hero__button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.mapear-header__toggle {
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 6px;
  border: 1px solid #cfe1f4;
  border-radius: 12px;
  background: var(--cor-branco);
  color: var(--mapear-azul-escuro);
  cursor: pointer;
}

.mapear-header__toggle span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mapear-header.is-open .mapear-header__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mapear-header.is-open .mapear-header__toggle span:nth-child(2) {
  opacity: 0;
}

.mapear-header.is-open .mapear-header__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mapear-main {
  background: var(--cor-branco);
}

.mapear-entry-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(234, 244, 254, 0.94) 0 230px, transparent 231px),
    radial-gradient(circle at 4% 74%, rgba(238, 247, 255, 0.92) 0 170px, transparent 171px),
    linear-gradient(120deg, #ffffff 0%, #ffffff 42%, #f3f9ff 100%);
}

.mapear-entry-hero__wash {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.mapear-entry-hero__wash--left {
  top: 34%;
  left: -110px;
  width: 260px;
  height: 360px;
  border-radius: 0 190px 190px 0;
  background: rgba(238, 247, 255, 0.86);
}

.mapear-entry-hero__wash--right {
  right: -180px;
  bottom: 0;
  width: clamp(440px, 39vw, 680px);
  height: clamp(360px, 35vw, 560px);
  border-radius: 52% 0 0 0;
  background: rgba(221, 236, 251, 0.7);
}

.mapear-entry-hero__container,
.mapear-entry-benefits {
  width: min(100% - 80px, var(--mapear-max));
  margin: 0 auto;
}

.mapear-entry-hero__container {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
  min-height: clamp(560px, calc(100vh - var(--mapear-header-height)), 720px);
  padding-top: clamp(14px, 2.2vw, 28px);
}

.mapear-entry-hero__copy {
  position: relative;
  z-index: 5;
  max-width: 680px;
  padding-left: clamp(0px, 3vw, 52px);
}

.mapear-entry-hero__title {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(44px, 4.7vw, 74px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.mapear-entry-hero__title-line {
  display: block;
  white-space: nowrap;
}

.mapear-entry-hero__youth {
  position: relative;
  display: inline-block;
}

.mapear-entry-hero__youth-rays {
  position: absolute;
  top: -0.20em;
  right: -0.1em;
  display: block;
  width: 0.46em;
  height: 0.46em;
  transform: rotate(34deg);
  transform-origin: 50% 100%;
  pointer-events: none;
}

.mapear-entry-hero__youth-rays::before,
.mapear-entry-hero__youth-rays::after,
.mapear-entry-hero__youth-rays i {
  content: "";
  position: absolute;
  top: 0.06em;
  width: 0.055em;
  height: 0.32em;
  border-radius: 999px;
  background: var(--mapear-laranja-claro);
  transform-origin: 50% 100%;
}

.mapear-entry-hero__youth-rays::before {
  left: 0.03em;
  top: 0.14em;
  transform: rotate(-50deg);
}

.mapear-entry-hero__youth-rays i {
  left: 0.19em;
  transform: rotate(-8deg);
}

.mapear-entry-hero__youth-rays::after {
  right: 0.04em;
  top: 0.11em;
  transform: rotate(42deg);
}

.mapear-entry-hero__title strong {
  position: relative;
  display: inline-block;
  color: #0f7ee6;
  font-weight: inherit;
}

.mapear-entry-hero__title strong::after {
  content: "";
  position: absolute;
  right: -0.02em;
  bottom: -0.18em;
  left: -0.02em;
  height: 0.26em;
  border-bottom: 0.075em solid var(--mapear-verde);
  border-radius: 0 0 52% 52%;
  transform: rotate(-1.5deg);
}

.mapear-entry-hero__lead {
  max-width: 650px;
  margin: clamp(28px, 3vw, 38px) 0 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 800;
  line-height: 1.24;
}

.mapear-entry-hero__lead span {
  display: inline-block;
  color: var(--mapear-verde);
}

.mapear-entry-hero__lead strong {
  color: #0f7ee6;
  font-weight: inherit;
}

.mapear-entry-hero__description {
  max-width: 590px;
  margin: 24px 0 0;
  color: #34476f;
  font-size: clamp(16px, 1.07vw, 19px);
  font-weight: 500;
  line-height: 1.64;
}

.mapear-entry-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.mapear-entry-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  border-radius: 14px;
  padding: 0 24px;
  font-size: clamp(13px, 0.92vw, 16px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mapear-entry-hero__button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.mapear-entry-hero__button--primary {
  min-width: clamp(230px, 16vw, 300px);
  background: var(--mapear-azul-escuro);
  color: var(--cor-branco);
  box-shadow: 0 18px 34px rgba(24, 43, 95, 0.26);
}

.mapear-entry-hero__button--secondary {
  min-width: clamp(160px, 11vw, 205px);
  border: 2px solid #7de696;
  background: var(--mapear-verde);
  color: var(--cor-branco);
  box-shadow: 0 18px 34px rgba(31, 168, 79, 0.24);
}

.mapear-entry-hero__visual {
  position: static;
  min-height: clamp(600px, 44vw, 760px);
}

.mapear-entry-hero__image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: clamp(155px, 12vw, 190px);
  z-index: 1;
  width: min(82vw, 1240px);
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.mapear-entry-hero__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.86) 20%, rgba(255, 255, 255, 0.52) 34%, rgba(255, 255, 255, 0.08) 46%, transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 16%);
  pointer-events: none;
}

.mapear-entry-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  filter: brightness(1.06) saturate(1.02);
}

.hero-image-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image-slider__item {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.6s ease-in-out;
}

.hero-image-slider__item.is-active {
  opacity: 1;
}

.mapear-entry-hero__before-showcase {
  position: relative;
  z-index: 9;
  width: min(100%, calc(clamp(230px, 16vw, 300px) + 16px + clamp(160px, 11vw, 205px)));
  margin-top: clamp(6px, 1vw, 14px);
  margin-left: 0;
}

.mapear-entry-hero__before-card {
  position: relative;
  z-index: 2;
  width: clamp(230px, 18vw, 300px);
  margin: 0 0 0 auto;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.94);
  border-radius: 17px;
  background: #182b5f;
  box-shadow: 0 18px 42px rgba(28, 55, 107, 0.25);
}

.before-image-slider {
  position: relative;
  width: 100%;
  height: clamp(124px, 9.6vw, 156px);
  overflow: hidden;
}

.mapear-entry-hero__before-card .before-image-slider__item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) brightness(1.16) contrast(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.6s ease-in-out;
}

.mapear-entry-hero__before-card .before-image-slider__item.is-active {
  opacity: 1;
}

.mapear-entry-hero__before-card figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(180deg, rgba(5, 20, 45, 0.03) 0%, rgba(5, 20, 45, 0.46) 100%);
  color: var(--cor-branco);
}

.mapear-entry-hero__before-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 31px;
  height: 31px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(24, 43, 95, 0.82);
  color: var(--cor-branco);
}

.mapear-entry-hero__before-icon circle,
.mapear-entry-hero__before-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.mapear-entry-hero__before-card strong {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.mapear-entry-hero__before-card span {
  max-width: 190px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.mapear-entry-hero__study-card,
.mapear-entry-hero__notes {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(207, 228, 250, 0.9);
  border-radius: 16px;
  background: transparent;
  box-shadow: 0 16px 36px rgba(28, 55, 107, 0.11);
  backdrop-filter: blur(6px);
}

.mapear-entry-hero__study-card {
  padding: 14px 16px;
  color: var(--mapear-azul-escuro);
}

.mapear-entry-hero__study-card strong {
  display: block;
  margin-bottom: 9px;
  color: #07599e;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.mapear-entry-hero__study-card--map {
  top: 28px;
  left: 8%;
  width: 230px;
  min-height: 150px;
}

.mapear-entry-hero__study-card--map span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 5px auto 8px;
  border: 3px solid #5a9be7;
  border-radius: 999px;
  color: var(--mapear-azul-escuro);
  font-size: 16px;
  font-weight: 800;
}

.mapear-entry-hero__study-card--map em {
  display: inline-flex;
  margin: 4px 3px 0 0;
  padding: 5px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--mapear-verde);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.mapear-entry-hero__study-card--routine {
  top: 40px;
  right: 0;
  width: 205px;
}

.mapear-entry-hero__study-card--routine span {
  display: block;
  position: relative;
  margin-top: 8px;
  padding-left: 24px;
  font-size: 13px;
  font-weight: 700;
}

.mapear-entry-hero__study-card--routine span::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 2px solid var(--mapear-laranja);
  border-radius: 4px;
}

.mapear-entry-hero__study-card--routine span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--mapear-verde);
  border-left: 2px solid var(--mapear-verde);
  transform: rotate(-45deg);
}

.mapear-entry-hero__study-card--evolution {
  right: 28px;
  bottom: 114px;
  width: 180px;
}

.mapear-entry-hero__study-card--evolution i {
  display: block;
  width: 112px;
  height: 58px;
  margin-top: 8px;
  background:
    linear-gradient(140deg, transparent 48%, var(--mapear-verde) 50%, transparent 52%),
    linear-gradient(90deg, #f24865 0 16%, #f9a51a 16% 34%, #24b96b 34% 54%, #0f7ee6 54% 78%, #7b61ff 78% 100%);
  clip-path: polygon(0 72%, 18% 58%, 34% 64%, 52% 39%, 68% 46%, 100% 12%, 100% 100%, 0 100%);
}

.mapear-entry-hero__notes {
  right: 0;
  bottom: 20px;
  display: flex;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.75);
}

.mapear-entry-hero__notes span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 11px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.mapear-entry-hero__notes span:nth-child(1) {
  background: #ffe1ef;
  color: #b01756;
}

.mapear-entry-hero__notes span:nth-child(2) {
  background: #fff0b8;
  color: #9b6510;
}

.mapear-entry-hero__notes span:nth-child(3) {
  background: #dff7ec;
  color: #167a3a;
}

.mapear-entry-hero__arrow {
  position: absolute;
  left: 11%;
  bottom: 24%;
  z-index: 4;
  width: 220px;
  height: 110px;
  overflow: visible;
}

.mapear-entry-hero__arrow path {
  fill: none;
  stroke: #0f7ee6;
  stroke-dasharray: 7 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.mapear-entry-hero__rocket {
  position: absolute;
  top: 88px;
  right: 22%;
  z-index: 6;
  width: clamp(60px, 4.8vw, 88px);
  transform: rotate(16deg);
  filter: drop-shadow(0 10px 18px rgba(28, 55, 107, 0.13));
}

.mapear-entry-benefits {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
  margin-top: 0;
  padding: 12px 0 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mapear-entry-benefits__item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 112px;
  padding: 12px clamp(28px, 3vw, 54px);
}

.mapear-entry-benefits__item + .mapear-entry-benefits__item {
  border-left: 1px solid rgba(196, 209, 226, 0.78);
}

.mapear-entry-benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  box-shadow: 0 18px 32px rgba(28, 55, 107, 0.16);
}

.mapear-entry-benefits__icon--green {
  background: linear-gradient(145deg, #24c45b 0%, #10943d 100%);
}

.mapear-entry-benefits__icon--blue {
  background: linear-gradient(145deg, #1f92ff 0%, #0b64d8 100%);
}

.mapear-entry-benefits__icon--orange {
  background: linear-gradient(145deg, #ffad26 0%, #f37c0f 100%);
}

.mapear-entry-benefits__icon img {
  width: 54px;
  height: 54px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.mapear-entry-benefits h2 {
  margin: 0 0 8px;
  color: var(--mapear-azul-escuro);
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 800;
  line-height: 1.18;
}

.mapear-entry-benefits p {
  margin: 0;
  color: #34476f;
  font-size: clamp(14px, 0.94vw, 16px);
  font-weight: 500;
  line-height: 1.42;
}

.mapear-hero--shifted {
  border-top: 1px solid #e5edf7;
}

@media (max-width: 1399px) {
  .mapear-entry-hero__container,
  .mapear-entry-benefits {
    width: min(100% - 56px, var(--mapear-max));
  }

  .mapear-entry-hero__container {
    grid-template-columns: minmax(390px, 0.85fr) minmax(520px, 1.15fr);
    gap: 26px;
  }

  .mapear-entry-hero__title {
    font-size: clamp(40px, 4.45vw, 64px);
  }

  .mapear-entry-hero__lead {
    font-size: clamp(22px, 2vw, 30px);
  }

  .mapear-entry-hero__study-card--map {
    left: 2%;
  }

  .mapear-entry-benefits__item {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
    padding: 12px 28px;
  }
}

@media (max-width: 1100px) {
  .mapear-entry-hero {
    padding-top: 18px;
  }

  .mapear-entry-hero__container,
  .mapear-entry-benefits {
    width: min(100% - 40px, var(--mapear-max));
  }

  .mapear-entry-hero__container {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 34px;
  }

  .mapear-entry-hero__copy {
    max-width: 720px;
    padding-left: 0;
  }

  .mapear-entry-hero__before-showcase {
    width: min(100%, 520px);
    margin-left: 0;
  }

  .mapear-entry-hero__visual {
    position: relative;
    min-height: 590px;
  }

  .mapear-entry-hero__image-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    width: min(82%, 640px);
    height: 540px;
    min-height: 520px;
    border-radius: 28px;
    box-shadow: 0 28px 60px rgba(28, 55, 107, 0.12);
    pointer-events: auto;
  }

  .mapear-entry-hero__image-wrap::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.24) 34%, transparent 62%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, transparent 36%);
  }

  .mapear-entry-hero__study-card--map {
    left: 0;
  }

  .mapear-entry-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mapear-entry-benefits__item + .mapear-entry-benefits__item {
    border-left: 1px solid rgba(196, 209, 226, 0.78);
  }
}

@media (max-width: 767px) {
  .mapear-entry-hero {
    padding-top: 22px;
  }

  .mapear-entry-hero__container,
  .mapear-entry-benefits {
    width: min(100% - 28px, var(--mapear-max));
  }

  .mapear-entry-hero__title {
    max-width: 100%;
    font-size: clamp(29px, 7.8vw, 34px);
    overflow-wrap: break-word;
  }

  .mapear-entry-hero__title strong {
    display: inline-block;
    width: max-content;
    max-width: 100%;
  }

  .mapear-entry-hero__lead {
    max-width: 100%;
    font-size: clamp(20px, 5.6vw, 24px);
    overflow-wrap: break-word;
  }

  .mapear-entry-hero__description {
    font-size: 15px;
    overflow-wrap: break-word;
  }

  .mapear-entry-hero__actions,
  .mapear-entry-hero__button {
    width: 100%;
  }

  .mapear-entry-hero__visual {
    min-height: 520px;
  }

  .mapear-entry-hero__image-wrap {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 430px;
    min-height: 0;
    margin: 0 auto;
    border-radius: 26px;
  }

  .mapear-entry-hero__image {
    object-position: 58% center;
  }

  .mapear-entry-hero__before-showcase {
    width: min(100%, 330px);
    margin-top: 22px;
    margin-left: 0;
  }

  .mapear-entry-hero__before-card {
    width: min(100%, 300px);
  }

  .mapear-entry-hero__study-card,
  .mapear-entry-hero__notes,
  .mapear-entry-hero__arrow {
    display: none;
  }

  .mapear-entry-hero__rocket {
    top: 12px;
    right: 14px;
    width: 62px;
  }

  .mapear-entry-benefits__item {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 22px 18px;
  }

  .mapear-entry-benefits {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }

  .mapear-entry-benefits__item + .mapear-entry-benefits__item {
    border-top: 1px solid rgba(196, 209, 226, 0.78);
    border-left: 0;
  }

  .mapear-entry-benefits__icon {
    width: 58px;
    height: 58px;
  }

  .mapear-entry-benefits__icon img {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 360px) {
  .mapear-entry-hero__title {
    font-size: clamp(28px, 8vw, 30px);
  }

  .mapear-entry-hero__lead {
    font-size: 19px;
  }

  .mapear-entry-hero__button {
    gap: 10px;
    padding: 0 16px;
    font-size: 12px;
  }
}

.mapear-hero {
  position: relative;
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  padding: 8px 0 54px;
  background:
    radial-gradient(circle at 5% 61%, rgba(238, 247, 255, 0.96) 0 142px, transparent 143px),
    radial-gradient(circle at 73% 34%, rgba(232, 246, 255, 0.96) 0 250px, transparent 251px),
    radial-gradient(circle at 100% 65%, rgba(221, 236, 251, 0.9) 0 190px, transparent 191px),
    linear-gradient(180deg, #ffffff 0%, #ffffff 73%, #eaf4fe 100%);
}

.mapear-hero::before,
.mapear-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mapear-hero::before {
  top: 116px;
  right: 20.5%;
  z-index: 0;
  width: 460px;
  height: 390px;
  border-radius: 56% 44% 53% 47%;
  background: rgba(234, 244, 254, 0.72);
}

.mapear-hero::after {
  right: -110px;
  bottom: -120px;
  z-index: 0;
  width: clamp(300px, 34vw, 620px);
  height: clamp(250px, 30vw, 520px);
  border-radius: 54% 46% 0 0;
  background: rgba(221, 236, 251, 0.68);
}

.mapear-hero__container,
.mapear-hero__bottom-wrap {
  width: min(100% - 80px, var(--mapear-max));
  margin: 0 auto;
}

.mapear-hero__container {
  position: relative;
  z-index: 4;
  isolation: isolate;
  display: grid;
  grid-template-columns: 43% 57%;
  column-gap: 24px;
  align-items: start;
}

.mapear-hero__left {
  position: relative;
  z-index: 7;
  isolation: isolate;
  max-width: 650px;
  margin-top: 10px;
  padding-left: 64px;
  min-width: 0;
}

.mapear-hero__title,
.mapear-hero__lead,
.mapear-hero__description,
.mapear-hero__actions {
  position: relative;
  z-index: 7;
}

.mapear-hero__title {
  color: var(--mapear-azul-escuro);
  font-size: clamp(38px, 2.65vw, 46px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.mapear-hero__title-line {
  display: block;
  white-space: nowrap;
}

.mapear-hero__title-highlight-blue {
  color: var(--mapear-azul);
}

.mapear-hero__title-highlight-green {
  position: relative;
  display: inline-block;
  color: var(--mapear-verde);
}

.mapear-hero__title-highlight-green::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 0.02em;
  left: 2px;
  height: 6px;
  border-radius: 999px;
  background: var(--mapear-laranja-claro);
}

.mapear-hero__lead {
  max-width: 600px;
  margin-top: 24px;
  color: var(--mapear-azul);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.42;
}

.mapear-hero__lead-emphasis {
  display: inline-block;
  color: var(--mapear-verde);
  border-bottom: 4px solid var(--mapear-laranja-claro);
  padding-bottom: 0.02em;
  white-space: nowrap;
}

.mapear-hero__description {
  max-width: 570px;
  margin-top: 18px;
  margin-bottom: 28px;
  color: var(--mapear-texto-suave);
  font-size: clamp(17px, 1.04vw, 19px);
  font-weight: 500;
  line-height: 1.65;
}

.mapear-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.mapear-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mapear-hero__button-primary {
  width: clamp(225px, 16.6vw, 300px);
  height: clamp(52px, 3.6vw, 60px);
  background: var(--mapear-azul-escuro);
  color: var(--cor-branco);
  box-shadow: 0 18px 34px rgba(25, 93, 229, 0.25);
  font-size: clamp(13px, 0.92vw, 16px);
}

.mapear-hero__button-secondary {
  width: clamp(150px, 10.5vw, 190px);
  height: clamp(52px, 3.4vw, 58px);
  border: 2px solid #77e893;
  background: var(--mapear-verde);
  color: var(--cor-branco);
  box-shadow: 0 18px 34px rgba(25, 229, 154, 0.25);
  font-size: clamp(13px, 0.92vw, 16px);
}

.mapear-hero__right {
  position: relative;
  z-index: 4;
  min-width: 0;
}

.mapear-hero__visual {
  position: relative;
  width: 100%;
  height: 405px;
  margin-top: 0;
}

.mapear-hero__blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.mapear-hero__blob-main {
  top: 30px;
  left: 5%;
  width: 68%;
  height: 430px;
  border-radius: 48% 52% 54% 46%;
  background: rgba(234, 244, 254, 0.92);
}

.mapear-hero__blob-soft {
  right: -4%;
  bottom: 48px;
  width: 46%;
  height: 245px;
  border-radius: 130px 0 0 0;
  background: rgba(221, 236, 251, 0.84);
  transform: none;
}

.mapear-hero__road {
  position: absolute;
  top: 8px;
  left: 48%;
  z-index: 1;
  display: block;
  width: 138%;
  height: 112%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 1;
  pointer-events: none;
}

.mapear-hero__photo-frame {
  --mapear-photo-gap: clamp(10px, 1.1vw, 16px);
  --mapear-photo-drop: clamp(18px, 2vw, 30px);
  position: absolute;
  top: -8px;
  left: clamp(86px, 7.4vw, 122px);
  z-index: 3;
  isolation: isolate;
  width: clamp(390px, 31.7vw, 510px);
  height: clamp(320px, 25.8vw, 410px);
  margin: 0;
  border-radius: 42% 58% 47% 53% / 34% 42% 58% 66%;
  pointer-events: none;
}

.mapear-hero__photo-frame::before,
.mapear-hero__photo-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mapear-hero__photo-frame::before {
  inset: -18px -22px -20px -18px;
  z-index: -1;
  border-radius: 46% 54% 50% 50% / 38% 44% 56% 62%;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.88), transparent 42%),
    linear-gradient(145deg, rgba(238, 247, 255, 0.96), rgba(221, 236, 251, 0.74));
  box-shadow: 0 22px 54px rgba(28, 55, 107, 0.12);
}

.mapear-hero__photo-frame::after {
  inset: -4px -6px;
  z-index: 4;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(238, 247, 255, 0.22), rgba(90, 155, 231, 0.1));
}

.mapear-hero__photo-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(238, 247, 255, 0.82));
}

.mapear-hero__student-panel {
  position: absolute;
  z-index: 1;
  width: calc((100% - var(--mapear-photo-gap)) / 2 + 10px);
  height: calc(100% - var(--mapear-photo-drop));
  border: 5px solid rgba(255, 255, 255, 0.74);
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(238, 247, 255, 0.82);
  box-shadow: 0 18px 44px rgba(28, 55, 107, 0.14);
}

.mapear-hero__student-panel--left {
  top: var(--mapear-photo-drop);
  left: 0;
  border-radius: 38% 16% 18% 42% / 34% 18% 44% 56%;
  background-image: url("../img/transicao_desmotivado.png");
  background-position: center center;
  clip-path: polygon(0 1%, 90% 0, 97% 10%, 91% 21%, 99% 34%, 92% 48%, 98% 61%, 90% 73%, 96% 86%, 91% 100%, 0 99%);
  filter: grayscale(1) brightness(0.72) contrast(0.96) saturate(0.8);
}

.mapear-hero__student-panel--right {
  top: 0;
  right: 0;
  border-radius: 16% 42% 44% 14% / 18% 38% 58% 36%;
  background-image: url("../img/transicao_feliz.png");
  background-position: center center;
  clip-path: polygon(9% 0, 100% 1%, 100% 99%, 7% 100%, 1% 86%, 9% 73%, 2% 61%, 10% 49%, 3% 36%, 11% 24%, 4% 12%);
  filter: brightness(1.04) saturate(1.02);
}

.mapear-hero__photo-break {
  position: absolute;
  top: clamp(10px, 1.8vw, 22px);
  left: 50%;
  z-index: 5;
  display: block;
  width: clamp(26px, 2.4vw, 38px);
  height: calc(100% - var(--mapear-photo-drop) - 4px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 255, 0.76));
  clip-path: polygon(44% 0, 60% 8%, 46% 17%, 63% 28%, 48% 39%, 61% 50%, 45% 62%, 58% 74%, 42% 86%, 52% 100%, 34% 100%, 43% 86%, 31% 75%, 43% 62%, 30% 51%, 43% 39%, 29% 27%, 42% 14%, 32% 5%);
  filter: drop-shadow(0 8px 10px rgba(28, 55, 107, 0.16));
  opacity: 0.96;
  transform: translateX(-50%) rotate(3deg);
  pointer-events: none;
}

.mapear-hero__photo-break::before,
.mapear-hero__photo-break::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mapear-hero__photo-break::before {
  top: 18%;
  left: 50%;
  height: 62%;
  border-left: 3px dashed rgba(15, 103, 200, 0.72);
  transform: translateX(-50%) rotate(12deg);
  transform-origin: top center;
}

.mapear-hero__photo-break::after {
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border: 3px solid rgba(15, 103, 200, 0.7);
  border-radius: 999px;
  background: var(--cor-branco);
  transform: translate(-50%, -50%);
}

.mapear-hero__rocket {
  position: absolute;
  top: clamp(10px, 1.8vw, 10px);
  right: clamp(200px, 8.4vw, -50px);
  z-index: 9;
  display: block;
  width: clamp(74px, 4.5vw, 92px);
  transform: rotate(14deg);
  pointer-events: none;
}

.mapear-hero__path {
  position: absolute;
  top: 118px;
  left: -72px;
  z-index: 2;
  width: clamp(1080px, 82vw, 1400px);
  height: 380px;
  overflow: visible;
  pointer-events: none;
}

.mapear-hero__rocket-trail {
  fill: none;
  stroke: rgba(15, 103, 200, 0.62);
  stroke-dasharray: 4 10;
  stroke-linecap: round;
  stroke-width: 2.5;
}

.mapear-hero__trail-marker {
  fill: var(--cor-branco);
  stroke: rgba(15, 103, 200, 0.64);
  stroke-width: 3;
}

.mapear-hero__trail-marker--solid {
  fill: rgba(15, 103, 200, 0.95);
}

@media (min-width: 1400px) and (max-width: 1520px) {
  .mapear-hero__rocket {
    top: -10px;
    right: clamp(130px, 9.4vw, 158px);
  }
}

.mapear-hero__benefits-right {
  position: absolute;
  top: clamp(50px, 3.8vw, 68px);
  right: 10px;
  z-index: 8;
  isolation: isolate;
  display: flex;
  width: clamp(175px, 11.1vw, 189px);
  flex-direction: column;
  gap: clamp(32px, 2.1vw, 38px);
}

.mapear-hero__benefit-right {
  display: grid;
  grid-template-columns: clamp(57px, 3.64vw, 63px) minmax(0, 1fr);
  column-gap: 13px;
  align-items: center;
}

.mapear-hero__benefit-right--compact {
  margin-top: -2px;
}

.mapear-hero__benefit-icon-circle,
.mapear-hero__bottom-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cor-branco);
  box-shadow: 0 16px 34px rgba(28, 55, 107, 0.1);
}

.mapear-hero__benefit-icon-circle {
  width: clamp(57px, 3.64vw, 63px);
  height: clamp(57px, 3.64vw, 63px);
}

.mapear-hero__benefit-right--compact .mapear-hero__benefit-icon-circle {
  width: clamp(50px, 3.29vw, 57px);
  height: clamp(50px, 3.29vw, 57px);
  justify-self: center;
}

.mapear-icon-placeholder {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.mapear-icon-img {
  display: block;
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.mapear-hero__bottom-icon-circle .mapear-icon-img {
  width: 82%;
  height: 82%;
}

.mapear-hero__benefit-right--compact .mapear-icon-placeholder {
  width: 40px;
  height: 40px;
}

.mapear-hero__benefit-icon-circle--green,
.mapear-hero__bottom-icon-circle--green {
  color: var(--mapear-verde);
}

.mapear-hero__benefit-icon-circle--orange,
.mapear-hero__bottom-icon-circle--orange {
  color: var(--mapear-laranja);
}

.mapear-hero__benefit-icon-circle--blue,
.mapear-hero__bottom-icon-circle--blue {
  color: var(--mapear-azul);
}

.mapear-hero__benefit-text {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.mapear-hero__benefit-text strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mapear-azul-escuro);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 800;
  line-height: 1.12;
}

.mapear-hero__benefit-text small {
  display: block;
  color: var(--mapear-texto-suave);
  font-size: clamp(10px, 0.69vw, 12px);
  font-weight: 700;
  line-height: 1.35;
}

.mapear-hero__bottom-wrap {
  position: relative;
  z-index: 6;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--mapear-borda);
  border-radius: 28px;
  background: var(--cor-branco);
  box-shadow: 0 22px 50px rgba(28, 55, 107, 0.1);
}

.mapear-hero__bottom-heading {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 28px 26px;
  color: var(--mapear-azul-escuro);
  text-align: center;
  font-size: clamp(28px, 2.2vw, 42px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.mapear-hero__bottom-heading span {
  position: relative;
  display: inline-block;
  color: #0f7ee6;
}

.mapear-hero__bottom-heading span::after {
  content: "";
  position: absolute;
  right: -0.05em;
  bottom: -0.18em;
  left: -0.05em;
  height: 0.28em;
  border-bottom: 0.08em solid var(--mapear-laranja-claro);
  border-radius: 0 0 54% 54%;
  transform: rotate(-1.5deg);
  pointer-events: none;
}

.mapear-hero__bottom-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: 146px;
  overflow: hidden;
  border-top: 1px solid var(--mapear-borda);
}

.mapear-hero__bottom-card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  min-width: 0;
  padding: 24px 22px;
}

.mapear-hero__bottom-card + .mapear-hero__bottom-card {
  border-left: 1px solid var(--mapear-borda);
}

.mapear-hero__bottom-icon-circle {
  width: 64px;
  height: 64px;
  box-shadow: 0 10px 28px rgba(28, 55, 107, 0.08);
}

.mapear-hero__bottom-icon-circle .mapear-icon-placeholder {
  width: 40px;
  height: 40px;
}

.mapear-hero__bottom-title {
  margin-bottom: 8px;
  color: var(--mapear-azul-escuro);
  font-size: clamp(18px, 1.14vw, 20px);
  font-weight: 800;
  line-height: 1.25;
}

.mapear-hero__bottom-description {
  color: var(--mapear-texto-suave);
  font-size: clamp(15px, 0.92vw, 16px);
  font-weight: 600;
  line-height: 1.45;
}

.mapear-decor {
  position: absolute;
  display: block;
  pointer-events: none;
}

.mapear-decor--blob-left {
  bottom: 162px;
  left: 0;
  z-index: 0;
  width: 210px;
  height: 310px;
  border-radius: 0 170px 170px 0;
  background: rgba(238, 247, 255, 0.92);
}

.mapear-decor--blob-right {
  right: -40px;
  bottom: 118px;
  z-index: 0;
  width: 260px;
  height: 250px;
  border-radius: 150px 0 0 150px;
  background: rgba(221, 236, 251, 0.75);
}

.mapear-decor--star {
  z-index: 3;
  width: 18px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.mapear-decor--star-blue {
  color: var(--mapear-azul);
}

.mapear-decor--star-green {
  color: var(--mapear-verde);
}

.mapear-decor--star-orange {
  color: var(--mapear-laranja);
}

.mapear-decor--star-a {
  top: 236px;
  left: 43%;
}

.mapear-decor--star-b {
  top: 268px;
  left: 40.5%;
  width: 14px;
  height: 14px;
}

.mapear-decor--star-c {
  top: 310px;
  right: 2.9%;
  width: 14px;
  height: 14px;
}

.mapear-decor--star-d {
  bottom: 270px;
  right: 4.4%;
  width: 15px;
  height: 15px;
}

.mapear-clarity-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 64px 0 72px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 45%, #f7fbff 100%);
}

.mapear-clarity-section__container {
  width: min(100% - 80px, var(--mapear-max));
  margin: 0 auto;
}

.mapear-clarity-block + .mapear-clarity-block {
  margin-top: 40px;
}

.mapear-clarity-heading {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.mapear-clarity-heading__title {
  color: #101f4f;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
}

.mapear-clarity-heading__highlight {
  font-weight: 900;
}

.mapear-clarity-block--negative .mapear-clarity-heading__highlight {
  color: #d92d2d;
}

.mapear-clarity-block--positive .mapear-clarity-heading__highlight {
  color: #149a55;
}

.mapear-clarity-heading__subtitle {
  margin-top: 10px;
  color: #6a7288;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.mapear-clarity-card {
  display: grid;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid #e8eef7;
  border-radius: 28px;
  background: var(--cor-branco);
  box-shadow: 0 18px 42px rgba(28, 55, 107, 0.08);
}

.mapear-clarity-card--negative {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mapear-clarity-card--positive {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.mapear-clarity-item {
  display: flex;
  position: relative;
  min-width: 0;
  padding: 34px 24px 30px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mapear-clarity-card--positive .mapear-clarity-item {
  padding-right: 18px;
  padding-left: 18px;
}

.mapear-clarity-item + .mapear-clarity-item {
  border-left: 1px solid #e8ecf3;
}

.mapear-clarity-item__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 18px;
  border-radius: 999px;
}

.mapear-clarity-block--negative .mapear-clarity-item__icon-wrap {
  background: rgba(217, 45, 45, 0.1);
}

.mapear-clarity-block--positive .mapear-clarity-item__icon-wrap {
  background: rgba(20, 154, 85, 0.12);
}

.mapear-clarity-item__icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.mapear-clarity-item__badge {
  display: none;
}

.mapear-clarity-item__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0 0 12px;
  color: #101f4f;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.mapear-clarity-card--positive .mapear-clarity-item__title {
  min-height: 58px;
  font-size: 18px;
  line-height: 1.18;
}

.mapear-clarity-item__divider {
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
}

.mapear-clarity-block--negative .mapear-clarity-item__divider {
  background: #d92d2d;
}

.mapear-clarity-block--positive .mapear-clarity-item__divider {
  background: #149a55;
}

.mapear-clarity-item__description {
  max-width: 210px;
  margin: 0 auto;
  color: #354260;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.45;
}

.mapear-clarity-card--positive .mapear-clarity-item__description {
  max-width: 190px;
  font-size: 14.5px;
}

@media (max-width: 1399px) {
  .mapear-clarity-section__container {
    width: min(100% - 56px, var(--mapear-max));
  }

  .mapear-clarity-section {
    padding: 66px 0 78px;
  }

  .mapear-clarity-heading__title {
    font-size: 36px;
  }

  .mapear-clarity-heading__subtitle {
    font-size: 18px;
  }

  .mapear-clarity-card {
    min-height: 300px;
  }

  .mapear-clarity-item {
    padding: 30px 18px 28px;
  }

  .mapear-clarity-card--positive .mapear-clarity-item {
    padding-right: 14px;
    padding-left: 14px;
  }

  .mapear-clarity-item__icon-wrap {
    width: 92px;
    height: 92px;
  }

  .mapear-clarity-item__icon {
    width: 62px;
    height: 62px;
  }

  .mapear-clarity-item__title {
    font-size: 17px;
  }

  .mapear-clarity-card--positive .mapear-clarity-item__title {
    font-size: 16px;
  }

  .mapear-clarity-item__description {
    font-size: 14px;
  }

  .mapear-clarity-card--positive .mapear-clarity-item__description {
    font-size: 13px;
  }
}

@media (max-width: 1199px) {
  .mapear-clarity-section {
    padding: 64px 0 72px;
  }

  .mapear-clarity-section__container {
    width: min(100% - 40px, var(--mapear-max));
  }

  .mapear-clarity-card,
  .mapear-clarity-card--negative,
  .mapear-clarity-card--positive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 0;
    overflow: visible;
    gap: 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .mapear-clarity-item,
  .mapear-clarity-card--positive .mapear-clarity-item {
    min-height: 285px;
    padding: 28px 22px 26px;
    border: 1px solid #e8eef7;
    border-radius: 22px;
    background: var(--cor-branco);
    box-shadow: 0 14px 34px rgba(28, 55, 107, 0.07);
  }

  .mapear-clarity-item + .mapear-clarity-item {
    border-left: 1px solid #e8eef7;
  }
}

@media (max-width: 900px) {
  .mapear-clarity-card,
  .mapear-clarity-card--negative,
  .mapear-clarity-card--positive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mapear-clarity-section {
    padding: 52px 0 60px;
  }

  .mapear-clarity-section__container {
    width: min(100% - 28px, var(--mapear-max));
  }

  .mapear-clarity-block + .mapear-clarity-block {
    margin-top: 34px;
  }

  .mapear-clarity-heading {
    margin-bottom: 22px;
  }

  .mapear-clarity-heading__title {
    font-size: clamp(30px, 8vw, 36px);
  }

  .mapear-clarity-heading__subtitle {
    font-size: 15px;
  }

  .mapear-clarity-card,
  .mapear-clarity-card--negative,
  .mapear-clarity-card--positive {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid #e8eef7;
    border-radius: 24px;
    background: var(--cor-branco);
    box-shadow: 0 16px 34px rgba(28, 55, 107, 0.08);
  }

  .mapear-clarity-item,
  .mapear-clarity-card--positive .mapear-clarity-item {
    min-height: 0;
    padding: 28px 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .mapear-clarity-item + .mapear-clarity-item {
    border-top: 1px solid #e8ecf3;
    border-left: 0;
  }

  .mapear-clarity-item__icon-wrap {
    width: 84px;
    height: 84px;
    margin-bottom: 16px;
  }

  .mapear-clarity-item__icon {
    width: 58px;
    height: 58px;
  }

  .mapear-clarity-item__title,
  .mapear-clarity-card--positive .mapear-clarity-item__title {
    min-height: 0;
    font-size: 18px;
  }

  .mapear-clarity-item__description,
  .mapear-clarity-card--positive .mapear-clarity-item__description {
    max-width: 280px;
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .mapear-clarity-heading__title {
    font-size: 29px;
  }

  .mapear-clarity-item,
  .mapear-clarity-card--positive .mapear-clarity-item {
    padding: 26px 18px;
  }

  .mapear-clarity-item__icon-wrap {
    width: 78px;
    height: 78px;
  }

  .mapear-clarity-item__icon {
    width: 52px;
    height: 52px;
  }

  .mapear-clarity-item__description,
  .mapear-clarity-card--positive .mapear-clarity-item__description {
    font-size: 14px;
  }
}

.mapear-clarity-card--positive .mapear-clarity-item {
  --clarity-accent: #0f7ee6;
  --clarity-soft: #eaf5ff;
  position: relative;
  background: var(--clarity-soft);
  box-shadow:
    inset 0 0 0 2px var(--clarity-accent),
    0 16px 34px rgba(28, 55, 107, 0.08);
}

.mapear-clarity-card--positive .mapear-clarity-item:nth-child(2),
.mapear-clarity-card--positive .mapear-clarity-item:nth-child(5) {
  --clarity-accent: #1faa4f;
  --clarity-soft: #eaf8ef;
}

.mapear-clarity-card--positive .mapear-clarity-item:nth-child(3),
.mapear-clarity-card--positive .mapear-clarity-item:nth-child(6) {
  --clarity-accent: #f28a1c;
  --clarity-soft: #fff3e3;
}

.mapear-clarity-card--positive .mapear-clarity-item + .mapear-clarity-item {
  border-left-color: var(--clarity-accent);
}

.mapear-clarity-card--positive .mapear-clarity-item__icon-wrap {
  background: var(--clarity-accent);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--clarity-accent) 30%, transparent);
}

.mapear-clarity-card--positive .mapear-clarity-item__icon {
  filter: brightness(0) invert(1);
}

.mapear-clarity-card--positive .mapear-clarity-item__divider {
  background: var(--clarity-accent);
}

@media (max-width: 1279px) {
  .mapear-clarity-card--positive .mapear-clarity-item {
    border: 2px solid var(--clarity-accent);
    box-shadow: 0 16px 34px rgba(28, 55, 107, 0.08);
  }
}

@media (max-width: 767px) {
  .mapear-clarity-card--positive {
    gap: 14px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .mapear-clarity-card--positive .mapear-clarity-item {
    border: 2px solid var(--clarity-accent);
    border-radius: 22px;
  }

  .mapear-clarity-card--positive .mapear-clarity-item + .mapear-clarity-item {
    border-top: 2px solid var(--clarity-accent);
    border-left: 2px solid var(--clarity-accent);
  }
}

.mapear-segmentos {
  position: relative;
  padding: 52px 0 64px;
  background: var(--cor-branco);
}

.mapear-segmentos__container {
  width: min(100% - 80px, var(--mapear-max));
  margin: 0 auto;
}

.mapear-segmentos__cards {
  --mapear-segmentos-gap: 32px;

  display: grid;
  grid-template-columns: minmax(420px, 1fr) 120px minmax(420px, 1fr);
  column-gap: var(--mapear-segmentos-gap);
  align-items: center;
}

.mapear-segmentos__card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  column-gap: 20px;
  align-items: start;
  min-height: 184px;
  padding: 28px 28px 26px;
  border-radius: 20px;
}

.mapear-segmentos__card--familias {
  border: 1px solid #d9e9f9;
  background: #f4f9ff;
}

.mapear-segmentos__card--empresas {
  border: 1px solid #dcefe0;
  background: #f5fbf6;
}

.mapear-segmentos__icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border: 1px solid #e6eef8;
  border-radius: 999px;
  background: var(--cor-branco);
  box-shadow: 0 6px 18px rgba(28, 55, 107, 0.06);
}

.mapear-segmentos__card--empresas .mapear-segmentos__icon-circle {
  border-color: #e8f1ea;
}

.mapear-segmentos__icon {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #2f7de1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.mapear-segmentos__icon-img {
  width: 68.2px;
  height: 68.2px;
  object-fit: contain;
}

.mapear-segmentos__content {
  min-width: 0;
}

.mapear-segmentos__title {
  margin-bottom: 10px;
  font-size: clamp(20px, 1.35vw, 24px);
  font-weight: 800;
  line-height: 1.2;
}

.mapear-segmentos__card--familias .mapear-segmentos__title {
  color: #226fd4;
}

.mapear-segmentos__card--empresas .mapear-segmentos__title {
  color: #19a24f;
}

.mapear-segmentos__description {
  max-width: 390px;
  color: #445677;
  font-size: clamp(15px, 0.94vw, 16px);
  font-weight: 600;
  line-height: 1.6;
}

.mapear-segmentos__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 204px;
  height: 44px;
  margin-top: 20px;
  padding: 0 20px;
  border-radius: 11px;
  color: var(--cor-branco);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mapear-segmentos__button--familias {
  background: #1f63d7;
  box-shadow: 0 10px 20px rgba(31, 99, 215, 0.18);
}

.mapear-segmentos__button--empresas {
  min-width: 214px;
  background: #18a04b;
  box-shadow: 0 10px 20px rgba(24, 160, 75, 0.18);
}

.mapear-segmentos__button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.mapear-segmentos__connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 186px;
}

.mapear-segmentos__path {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: calc(100% + (var(--mapear-segmentos-gap) * 2) + 14px);
  max-width: none;
  transform: translate(-50%, -38%);
  overflow: visible;
}

.mapear-segmentos__path path {
  fill: none;
  stroke: #63a7f2;
  stroke-dasharray: 5 8;
  stroke-linecap: round;
  stroke-width: 2.8;
  opacity: 0.95;
}

.mapear-segmentos__path circle {
  fill: var(--cor-branco);
  stroke: #2480e8;
  stroke-width: 4;
}

.mapear-segmentos__pin {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 74px;
  height: 96px;
  filter: drop-shadow(0 12px 20px rgba(36, 128, 232, 0.18));
  transform: translate(16px, 5px);
}

.mapear-segmentos__pin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mapear-faq {
  width: 100%;
  padding: 68px 0 72px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.mapear-faq__container {
  width: min(100% - 80px, 1320px);
  margin: 0 auto;
}

.mapear-faq__header {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.mapear-faq__title {
  margin-bottom: 10px;
  color: #10235b;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
}

.mapear-faq__subtitle {
  max-width: 860px;
  margin: 0 auto;
  color: #6a7288;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.mapear-faq__list {
  display: flex;
  max-width: 1120px;
  margin: 0 auto;
  flex-direction: column;
  gap: 18px;
}

.mapear-faq__item {
  overflow: hidden;
  border: 1px solid #e5ecf7;
  border-radius: 22px;
  background: var(--cor-branco);
  box-shadow: 0 12px 28px rgba(28, 55, 107, 0.06);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.mapear-faq__item:hover,
.mapear-faq__item--open {
  border-color: #d7e6f7;
  box-shadow: 0 16px 34px rgba(28, 55, 107, 0.09);
}

.mapear-faq__question {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  padding: 24px 28px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: #10235b;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.mapear-faq__question:focus-visible {
  outline: 3px solid rgba(229, 130, 25, 0.34);
  outline-offset: -6px;
}

.mapear-faq__question-text {
  color: #10235b;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
}

.mapear-faq__question-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #eef5ff;
  color: #1b4e9b;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.mapear-faq__item--open .mapear-faq__question-icon {
  background: #e8f8f0;
  color: #149a55;
  transform: rotate(180deg);
}

.mapear-faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.32s ease, opacity 0.24s ease;
}

.mapear-faq__item--open .mapear-faq__answer {
  opacity: 1;
}

.mapear-faq__answer-content {
  margin: 0 28px;
  padding: 20px 0 28px;
  border-top: 1px solid #edf2f9;
  color: #40516f;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.mapear-faq__answer-content p {
  margin: 0;
}

.mapear-faq__answer-content p + p {
  margin-top: 14px;
}

@media (max-width: 1399px) {
  .mapear-faq {
    padding: 76px 0 80px;
  }

  .mapear-faq__container {
    width: min(100% - 56px, 1320px);
  }

  .mapear-faq__title {
    font-size: 40px;
  }

  .mapear-faq__subtitle {
    font-size: 18px;
  }
}

@media (max-width: 1023px) {
  .mapear-faq {
    padding: 68px 0 72px;
  }

  .mapear-faq__container {
    width: min(100% - 40px, 1320px);
  }

  .mapear-faq__header {
    margin-bottom: 34px;
  }

  .mapear-faq__title {
    font-size: 38px;
  }

  .mapear-faq__question {
    padding: 22px 24px;
  }

  .mapear-faq__question-text {
    font-size: 19px;
  }

  .mapear-faq__question-icon {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .mapear-faq__answer-content {
    margin: 0 24px;
    padding: 18px 0 26px;
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .mapear-faq {
    padding: 58px 0 64px;
  }

  .mapear-faq__container {
    width: min(100% - 28px, 1320px);
  }

  .mapear-faq__header {
    margin-bottom: 28px;
  }

  .mapear-faq__title {
    font-size: clamp(32px, 8.5vw, 38px);
  }

  .mapear-faq__subtitle {
    font-size: 16px;
  }

  .mapear-faq__list {
    gap: 14px;
  }

  .mapear-faq__item {
    border-radius: 18px;
  }

  .mapear-faq__question {
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }

  .mapear-faq__question-text {
    font-size: 18px;
  }

  .mapear-faq__question-icon {
    width: 34px;
    height: 34px;
    margin-top: 1px;
    font-size: 20px;
  }

  .mapear-faq__answer-content {
    margin: 0 20px;
    padding: 16px 0 22px;
    font-size: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 420px) {
  .mapear-faq__container {
    width: min(100% - 24px, 1320px);
  }

  .mapear-faq__title {
    font-size: 30px;
  }

  .mapear-faq__subtitle {
    font-size: 15px;
  }

  .mapear-faq__question {
    padding: 18px 16px;
  }

  .mapear-faq__question-text {
    font-size: 17px;
  }

  .mapear-faq__question-icon {
    width: 32px;
    height: 32px;
    font-size: 19px;
  }

  .mapear-faq__answer-content {
    margin: 0 16px;
    font-size: 15px;
  }
}

.mapear-how {
  padding: 8px 0 48px;
  background: var(--cor-branco);
}

.mapear-results {
  padding: 0 0 76px;
  background: var(--cor-branco);
}

.mapear-how__container,
.mapear-results__container {
  width: min(100% - 80px, var(--mapear-max));
  margin: 0 auto;
}

.mapear-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 34px;
  text-align: center;
}

.mapear-section-heading--results {
  margin-bottom: 24px;
}

.mapear-section-heading__line {
  width: clamp(90px, 7vw, 130px);
  height: 1px;
  background: #bbd8f4;
}

.mapear-section-heading__title {
  flex: 0 1 auto;
  color: #1c376b;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.mapear-how__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.mapear-how__connector {
  position: absolute;
  top: 42px;
  right: 8.5%;
  left: 8.5%;
  z-index: 0;
  width: 83%;
  height: 80px;
  overflow: visible;
  pointer-events: none;
}

.mapear-how__connector path {
  fill: none;
  stroke: #8fc4f5;
  stroke-dasharray: 5 8;
  stroke-linecap: round;
  stroke-width: 2.6;
  opacity: 0.9;
}

.mapear-how__connector circle {
  fill: var(--cor-branco);
  stroke: #8fc4f5;
  stroke-width: 3;
}

.mapear-how__step {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: center;
}

.mapear-how__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 12px;
  border: 1px solid #e5eef8;
  border-radius: 999px;
  background: var(--cor-branco);
  box-shadow: 0 10px 24px rgba(28, 55, 107, 0.08);
  color: #246fd4;
}

.mapear-how__icon {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.mapear-how__step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 7px;
}

.mapear-how__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #0f67c8;
  color: var(--cor-branco);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.mapear-how__step-title {
  color: #1c376b;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.mapear-how__step-description {
  max-width: 168px;
  margin: 0 auto;
  color: #526684;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.mapear-results__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  width: min(100%, 1260px);
  min-height: 190px;
  margin: 0 auto;
  padding: 26px 26px 22px 32px;
  overflow: hidden;
  border: 1px solid #e3ecf7;
  border-radius: 26px;
  background: var(--cor-branco);
  box-shadow: 0 18px 46px rgba(28, 55, 107, 0.1);
}

.mapear-results__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.mapear-results__metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.mapear-results__metric {
  min-width: 0;
  text-align: center;
}

.mapear-results__metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 6px;
  color: currentColor;
}

.mapear-results__metric-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.mapear-results__metric-value {
  display: block;
  margin-bottom: 6px;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.1;
}

.mapear-results__metric-description {
  max-width: 140px;
  margin: 0 auto;
  color: #526684;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.mapear-results__metric--green {
  color: #18a04b;
}

.mapear-results__metric--blue {
  color: #2f7de1;
}

.mapear-results__metric--orange {
  color: #f28a1c;
}

.mapear-results__metric--relations .mapear-results__metric-value {
  font-size: 14px;
  line-height: 1.18;
}

.mapear-results__note {
  margin-top: 18px;
  color: #6d7d96;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.mapear-results__image-wrap {
  position: relative;
  z-index: 1;
  width: 320px;
  height: 205px;
  margin: 0 0 0 20px;
  overflow: hidden;
  border-radius: 90px 24px 24px 90px;
}

.mapear-results__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.mapear-results__decor {
  position: absolute;
  z-index: 2;
  display: block;
  width: 14px;
  height: 14px;
  color: #f28a1c;
  pointer-events: none;
}

.mapear-results__decor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.mapear-results__decor--one {
  top: 22px;
  right: 28px;
}

.mapear-results__decor--two {
  right: 50px;
  bottom: 22px;
  width: 11px;
  height: 11px;
}

.mapear-about {
  padding: 64px 0 0;
  background: var(--cor-branco);
}

.mapear-about__container {
  display: grid;
  grid-template-columns: 470px minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  width: min(100% - 80px, 1440px);
  margin: 0 auto;
  padding: 48px 40px 42px;
  border-radius: 24px;
  background: #f8fbff;
}

.mapear-about__photo-wrap {
  margin: 0;
}

.mapear-about__photo {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 14px 34px rgba(28, 55, 107, 0.1);
}

.mapear-about__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 278px;
  gap: 30px;
  align-items: center;
  min-width: 0;
}

.mapear-about__content {
  min-width: 0;
}

.mapear-about__title {
  margin: 0 0 16px;
  color: #1c376b;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.18;
}

.mapear-about__subtitle {
  margin: 0 0 18px;
  color: #1c376b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.mapear-about__text,
.mapear-about__highlight {
  max-width: 700px;
  margin: 0 0 12px;
  color: #40516f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}

.mapear-about__highlight {
  color: #1c376b;
  font-weight: 800;
}

.mapear-about__signature {
  display: block;
  margin-top: 12px;
  color: #355b8c;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 40px;
  line-height: 1;
}

.mapear-about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border-radius: 18px;
  background: var(--cor-branco);
  box-shadow: 0 12px 30px rgba(28, 55, 107, 0.08);
}

.mapear-about__feature {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.mapear-about__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #246fd4;
}

.mapear-about__feature-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.mapear-about__feature-text {
  margin: 0;
  color: #1c376b;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.mapear-final-cta {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background: linear-gradient(90deg, #073e78 0%, #064f91 100%);
}

.mapear-final-cta__path {
  position: absolute;
  right: 0;
  bottom: -18px;
  z-index: 0;
  width: min(52vw, 680px);
  height: 104px;
  opacity: 0.58;
  pointer-events: none;
}

.mapear-final-cta__path path {
  fill: none;
  stroke: rgba(90, 155, 231, 0.55);
  stroke-dasharray: 6 10;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.mapear-final-cta__path circle {
  fill: #07599e;
  stroke: rgba(173, 213, 255, 0.8);
  stroke-width: 3;
}

.mapear-final-cta__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(560px, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(100% - 80px, var(--mapear-max));
  min-height: 104px;
  margin: 0 auto;
  padding: 20px 132px 20px 40px;
}

.mapear-final-cta__title {
  margin: 0;
  color: var(--cor-branco);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.15;
}

.mapear-final-cta__subtitle {
  margin: 2px 0 0;
  color: #bfd8f5;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.mapear-final-cta__actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.mapear-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  border-radius: 12px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mapear-final-cta__button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.mapear-final-cta__button--primary {
  min-width: 258px;
  border: 0;
  background: #f28a1c;
  color: var(--cor-branco);
  box-shadow: 0 10px 20px rgba(242, 138, 28, 0.22);
}

.mapear-final-cta__button--secondary {
  min-width: 220px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--cor-branco);
}

.mapear-final-cta__rocket {
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: 1;
  display: block;
  justify-self: end;
  width: 68px;
  transform: translateY(-50%) rotate(23deg);
  pointer-events: none;
}

.mapear-footer {
  background: #052d58;
  color: var(--cor-branco);
}

.mapear-footer__container {
  display: grid;
  grid-template-columns: 1.15fr 1.2fr 0.9fr 0.8fr 0.58fr;
  gap: 0;
  align-items: start;
  width: min(100% - 80px, var(--mapear-max));
  margin: 0 auto;
  padding: 30px 0 20px;
}

.mapear-footer__brand {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.mapear-footer__logo {
  width: 138px;
  height: auto;
  margin-bottom: 0;
  object-fit: contain;
}

.mapear-footer__description {
  max-width: 330px;
  margin: 0;
  color: #c7d8ef;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.mapear-footer__nav,
.mapear-footer__language,
.mapear-footer__contact,
.mapear-footer__social {
  min-height: 124px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 38px;
}

.mapear-footer__nav-title {
  margin: 0 0 12px;
  color: var(--cor-branco);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.mapear-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
}

.mapear-footer__language-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mapear-footer__language-list a,
.mapear-footer__language-current {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: #c7d8ef;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  text-decoration: none;
}

.mapear-footer__language-list a {
  transition: color 0.2s ease;
}

.mapear-footer__language-list a:hover,
.mapear-footer__language-list a:focus-visible {
  color: var(--cor-branco);
}

.mapear-footer__language-list a:focus-visible {
  outline: 2px solid #8fc4f5;
  outline-offset: 3px;
  border-radius: 3px;
}

.mapear-footer__language-current {
  color: var(--cor-branco);
  font-weight: 800;
}

.mapear-footer__language-current svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #8fc4f5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mapear-footer__language-current .mapear-footer__language-check {
  width: 15px;
  height: 15px;
  stroke: #a8df93;
}

.mapear-footer__links a,
.mapear-footer__contact-item,
.mapear-footer__legal a {
  color: #c7d8ef;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  transition: color 0.2s ease;
}

.mapear-footer__links a:hover,
.mapear-footer__contact-item:hover,
.mapear-footer__legal a:hover {
  color: var(--cor-branco);
}

.mapear-footer__contact {
  margin: 0;
  font-style: normal;
}

.mapear-footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  line-height: 1.5;
}

.mapear-footer__contact-item svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #8fc4f5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mapear-footer__social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mapear-footer__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  color: var(--cor-branco);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.mapear-footer__social-links a:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.mapear-footer__social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mapear-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 80px, var(--mapear-max));
  margin: 0 auto;
  padding: 15px 0 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 20px;
}

.mapear-footer__bottom p {
  margin: 0;
  color: #b7cae4;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.mapear-footer__legal {
  display: flex;
  gap: 18px;
  align-items: center;
}

.mapear-footer__legal a + a {
  position: relative;
}

.mapear-footer__legal a + a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -9px;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
}

@media (max-width: 1399px) {
  .mapear-header__container,
  .mapear-hero__container,
  .mapear-hero__bottom-wrap,
  .mapear-segmentos__container,
  .mapear-how__container,
  .mapear-results__container,
  .mapear-about__container,
  .mapear-final-cta__container,
  .mapear-footer__container,
  .mapear-footer__bottom {
    width: min(100% - 56px, var(--mapear-max));
  }

  .mapear-header__container {
    gap: 20px;
  }

  .mapear-header__nav-list {
    gap: clamp(11px, 1vw, 14px);
  }

  .mapear-header__actions {
    gap: 8px;
  }

  .mapear-header__cta {
    min-width: 132px;
    padding: 0 14px;
    font-size: 14px;
  }

  .mapear-header__cta--secondary {
    min-width: 144px;
  }

  .mapear-hero__title {
    font-size: clamp(32px, 2.55vw, 36px);
  }

  .mapear-hero__lead {
    font-size: 18px;
  }

  .mapear-hero__bottom-wrap {
    margin-top: 24px;
  }

  .mapear-hero__left {
    margin-top: 8px;
  }

  .mapear-hero__description {
    font-size: 15px;
  }

  .mapear-hero__button-primary {
    width: 225px;
    height: 52px;
    font-size: 12px;
  }

  .mapear-hero__button-secondary {
    width: 150px;
    height: 52px;
    font-size: 12px;
  }

  .mapear-hero__path {
    top: 112px;
    left: -64px;
    width: clamp(1000px, 86vw, 1180px);
    height: 360px;
  }

  .mapear-hero__visual {
    height: 370px;
  }

  .mapear-hero__road {
    top: 0;
    left: 48%;
    width: 140%;
    height: 116%;
    object-fit: contain;
    object-position: right bottom;
  }

  .mapear-hero__photo-frame {
    top: -14px;
    left: 70px;
    width: clamp(360px, 33vw, 455px);
    height: clamp(315px, 28vw, 372px);
  }

  .mapear-hero__rocket {
    top: -8px;
    right: clamp(128px, 10.5vw, 160px);
    left: auto;
    width: 74px;
  }

  .mapear-hero__benefits-right {
    top: 48px;
    right: 0;
    width: 153px;
    gap: 25px;
  }

  .mapear-hero__benefit-right {
    grid-template-columns: 49px minmax(0, 1fr);
    column-gap: 8px;
  }

  .mapear-hero__benefit-icon-circle {
    width: 44px;
    height: 44px;
  }

  .mapear-hero__benefit-text strong {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .mapear-hero__benefit-text small {
    font-size: 9px;
  }

  .mapear-hero__bottom-cards {
    min-height: 132px;
  }

  .mapear-hero__bottom-card {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 14px;
    padding: 20px 18px;
  }

  .mapear-hero__bottom-icon-circle {
    width: 54px;
    height: 54px;
  }

  .mapear-hero__bottom-title {
    font-size: 14px;
  }

  .mapear-hero__bottom-description {
    font-size: 11px;
  }

  .mapear-segmentos__cards {
    --mapear-segmentos-gap: 24px;

    grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
    column-gap: var(--mapear-segmentos-gap);
  }

  .mapear-segmentos__card {
    grid-template-columns: 76px minmax(0, 1fr);
    column-gap: 16px;
    padding: 24px;
  }

  .mapear-segmentos__icon-circle {
    width: 72px;
    height: 72px;
  }

  .mapear-segmentos__icon {
    width: 36px;
    height: 36px;
  }

  .mapear-segmentos__icon-img {
    width: 59.4px;
    height: 59.4px;
  }

  .mapear-segmentos__description {
    font-size: 13px;
  }

  .mapear-segmentos__button {
    min-width: 188px;
    height: 42px;
    font-size: 12px;
  }

  .mapear-segmentos__button--empresas {
    min-width: 196px;
  }

  .mapear-segmentos__pin {
    width: 66px;
    height: 86px;
    transform: translate(16px, 1px);
  }

  .mapear-how__steps {
    gap: 24px;
  }

  .mapear-how__step-icon {
    width: 82px;
    height: 82px;
  }

  .mapear-how__icon {
    width: 40px;
    height: 40px;
  }

  .mapear-how__step-description {
    max-width: 150px;
    font-size: 11px;
  }

  .mapear-results__card {
    grid-template-columns: minmax(0, 1fr) 300px;
    width: min(100%, 1200px);
    padding: 24px 22px 20px 28px;
  }

  .mapear-results__metrics {
    gap: 12px;
  }

  .mapear-results__metric-value {
    font-size: 24px;
  }

  .mapear-results__metric-description {
    font-size: 11px;
  }

  .mapear-results__image-wrap {
    width: 292px;
    height: 190px;
  }

  .mapear-about__container {
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 40px;
    padding: 42px 34px 38px;
  }

  .mapear-about__photo {
    height: 306px;
  }

  .mapear-about__body {
    grid-template-columns: minmax(0, 1fr) 252px;
    gap: 24px;
  }

  .mapear-about__title {
    font-size: 28px;
  }

  .mapear-about__text,
  .mapear-about__highlight {
    font-size: 15px;
  }

  .mapear-about__feature-text {
    font-size: 14px;
  }

  .mapear-final-cta__container {
    grid-template-columns: minmax(560px, 1fr) auto;
    gap: 22px;
    padding: 18px 106px 18px 28px;
  }

  .mapear-final-cta__title {
    font-size: 24px;
  }

  .mapear-final-cta__subtitle {
    font-size: 21px;
  }

  .mapear-final-cta__button {
    height: 54px;
    padding-inline: 20px;
    font-size: 14px;
  }

  .mapear-final-cta__button--primary {
    min-width: 245px;
  }

  .mapear-final-cta__button--secondary {
    min-width: 210px;
  }

  .mapear-final-cta__rocket {
    right: 22px;
    width: 62px;
  }

  .mapear-footer__container {
    gap: 0;
  }

  .mapear-footer__nav,
  .mapear-footer__language,
  .mapear-footer__contact,
  .mapear-footer__social {
    padding-left: 30px;
  }
}

@media (max-width: 1279px) {
  .mapear-header__nav-list {
    gap: 18px;
  }

  .mapear-header__cta {
    min-width: 128px;
    padding: 0 12px;
  }

  .mapear-header__cta--secondary {
    min-width: 140px;
  }

  .mapear-hero {
    min-height: 0;
    padding-top: 34px;
  }

  .mapear-hero__container {
    grid-template-columns: 42% 58%;
    column-gap: 18px;
  }

  .mapear-hero__left {
    margin-top: 32px;
    padding-left: 0;
  }

  .mapear-hero__title {
    font-size: clamp(36px, 3.65vw, 42px);
  }

  .mapear-hero__title-line {
    white-space: normal;
  }

  .mapear-hero__description {
    margin-top: 16px;
    margin-bottom: 30px;
    font-size: 15px;
  }

  .mapear-hero__lead {
    margin-top: 22px;
    font-size: 18px;
  }

  .mapear-hero__actions {
    gap: 16px;
  }

  .mapear-hero__button-primary {
    width: 230px;
    height: 58px;
    font-size: 13px;
  }

  .mapear-hero__button-secondary {
    width: 160px;
    height: 56px;
    font-size: 13px;
  }

  .mapear-hero__path {
    display: none;
  }

  .mapear-hero__road {
    display: none;
  }

  .mapear-hero__visual {
    height: auto;
  }

  .mapear-hero__photo-frame {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 500px);
    height: clamp(315px, 31vw, 390px);
    margin-left: auto;
  }

  .mapear-hero__rocket {
    top: clamp(-28px, -2vw, -18px);
    right: clamp(72px, 7.2vw, 98px);
    left: auto;
    width: 76px;
  }

  .mapear-hero__benefits-right {
    position: relative;
    top: auto;
    right: auto;
    display: grid;
    width: min(100%, 360px);
    margin: 16px 0 0 auto;
    gap: 10px;
  }

  .mapear-hero__benefit-right {
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 12px;
  }

  .mapear-hero__benefit-icon-circle,
  .mapear-hero__benefit-right--compact .mapear-hero__benefit-icon-circle {
    width: 64px;
    height: 64px;
  }

  .mapear-icon-placeholder,
  .mapear-hero__benefit-right--compact .mapear-icon-placeholder {
    width: 34px;
    height: 34px;
  }

  .mapear-hero__benefit-text strong {
    margin-bottom: 7px;
    font-size: 14px;
  }

  .mapear-hero__benefit-text small {
    font-size: 12px;
  }

  .mapear-hero__bottom-wrap {
    margin-top: 20px;
  }

  .mapear-segmentos {
    padding: 44px 0 58px;
  }

  .mapear-segmentos__cards {
    --mapear-segmentos-gap: 18px;

    grid-template-columns: minmax(0, 1fr) 82px minmax(0, 1fr);
    column-gap: var(--mapear-segmentos-gap);
  }

  .mapear-segmentos__card {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 176px;
    padding: 22px;
  }

  .mapear-segmentos__icon-circle {
    width: 62px;
    height: 62px;
  }

  .mapear-segmentos__icon {
    width: 32px;
    height: 32px;
  }

  .mapear-segmentos__icon-img {
    width: 52.8px;
    height: 52.8px;
  }

  .mapear-segmentos__title {
    font-size: 18px;
  }

  .mapear-segmentos__description {
    font-size: 12px;
  }

  .mapear-segmentos__button {
    min-width: 172px;
    height: 40px;
    padding: 0 16px;
    font-size: 11px;
  }

  .mapear-segmentos__button--empresas {
    min-width: 180px;
  }

  .mapear-segmentos__connector {
    min-height: 176px;
  }

  .mapear-segmentos__pin {
    width: 58px;
    height: 76px;
    transform: translate(16px, 1px);
  }

  .mapear-how {
    padding-bottom: 42px;
  }

  .mapear-how__steps {
    gap: 16px;
  }

  .mapear-how__connector {
    right: 7%;
    left: 7%;
    width: 86%;
  }

  .mapear-how__step-icon {
    width: 72px;
    height: 72px;
  }

  .mapear-how__icon {
    width: 36px;
    height: 36px;
  }

  .mapear-how__step-label {
    gap: 5px;
  }

  .mapear-how__step-title {
    font-size: 13px;
  }

  .mapear-how__step-number {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .mapear-how__step-description {
    max-width: 130px;
    font-size: 10px;
  }

  .mapear-results__card {
    grid-template-columns: minmax(0, 1fr) 270px;
    min-height: 176px;
  }

  .mapear-results__metric-icon,
  .mapear-results__metric-icon svg {
    width: 34px;
    height: 34px;
  }

  .mapear-results__metric-value {
    font-size: 21px;
  }

  .mapear-results__metric--relations .mapear-results__metric-value {
    font-size: 12px;
  }

  .mapear-results__metric-description {
    font-size: 10px;
  }

  .mapear-results__image-wrap {
    width: 260px;
    height: 176px;
  }

  .mapear-about__container {
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 30px;
    padding: 36px 28px;
  }

  .mapear-about__photo {
    height: 288px;
  }

  .mapear-about__body {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mapear-about__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 20px;
  }

  .mapear-about__feature {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .mapear-about__feature-icon,
  .mapear-about__feature-icon svg {
    width: 32px;
    height: 32px;
  }

  .mapear-final-cta__container {
    grid-template-columns: minmax(430px, 1fr) auto;
    min-height: 96px;
    gap: 18px;
    padding-right: 84px;
  }

  .mapear-final-cta__title {
    font-size: 24px;
  }

  .mapear-final-cta__subtitle {
    font-size: 20px;
  }

  .mapear-final-cta__actions {
    gap: 12px;
  }

  .mapear-final-cta__button--primary {
    min-width: 218px;
  }

  .mapear-final-cta__button--secondary {
    min-width: 188px;
  }

  .mapear-final-cta__rocket {
    right: 18px;
    width: 50px;
  }

  .mapear-footer__container {
    grid-template-columns: 1.1fr 1.1fr 0.9fr 0.8fr 0.58fr;
    gap: 0;
  }

  .mapear-footer__brand {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
  }

  .mapear-footer__logo {
    width: 120px;
  }

  .mapear-footer__description {
    font-size: 13px;
  }

  .mapear-footer__nav,
  .mapear-footer__language,
  .mapear-footer__contact,
  .mapear-footer__social {
    padding-left: 24px;
  }

  .mapear-footer__links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1339px) {
  .mapear-header__actions,
  .mapear-header__cta {
    display: none;
  }

  .mapear-header__toggle {
    display: inline-flex;
  }

  .mapear-header__nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 18px;
    background: var(--cor-branco);
    box-shadow: none;
    transition: max-height 0.25s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .mapear-header.is-open .mapear-header__nav {
    max-height: calc(100vh - var(--mapear-header-height) - 24px);
    overflow-y: auto;
    border-color: var(--mapear-borda);
    box-shadow: 0 18px 44px rgba(28, 55, 107, 0.15);
  }

  .mapear-header__nav-list {
    display: block;
    padding: 10px;
  }

  .mapear-header__nav-link {
    display: flex;
    min-height: 48px;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 15px;
  }

  .mapear-header__nav-link::after {
    display: none;
  }

  .mapear-header__nav-link:hover,
  .mapear-header__nav-link--active {
    background: var(--cor-fundo-azul);
  }
}

@media (max-width: 1100px) {
  :root {
    --mapear-header-height: 82px;
  }

  .mapear-header__container,
  .mapear-hero__container,
  .mapear-hero__bottom-wrap,
  .mapear-segmentos__container,
  .mapear-how__container,
  .mapear-results__container,
  .mapear-about__container,
  .mapear-final-cta__container,
  .mapear-footer__container,
  .mapear-footer__bottom {
    width: min(100% - 40px, var(--mapear-max));
  }

  .mapear-header__logo img {
    width: 94px;
  }

  .mapear-header__actions,
  .mapear-header__cta {
    display: none;
  }

  .mapear-header__toggle {
    display: inline-flex;
  }

  .mapear-header__nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 18px;
    background: var(--cor-branco);
    box-shadow: none;
    transition: max-height 0.25s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .mapear-header.is-open .mapear-header__nav {
    max-height: calc(100vh - var(--mapear-header-height) - 24px);
    overflow-y: auto;
    border-color: var(--mapear-borda);
    box-shadow: 0 18px 44px rgba(28, 55, 107, 0.15);
  }

  .mapear-header__nav-list {
    display: block;
    padding: 10px;
  }

  .mapear-header__nav-link {
    display: flex;
    min-height: 48px;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 15px;
  }

  .mapear-header__nav-link::after {
    display: none;
  }

  .mapear-header__nav-link:hover,
  .mapear-header__nav-link--active {
    background: var(--cor-fundo-azul);
  }

  .mapear-hero {
    padding: 40px 0 72px;
  }

  .mapear-hero__container {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .mapear-hero__left {
    max-width: 700px;
    margin-top: 0;
    padding-left: 0;
  }

  .mapear-hero__title {
    font-size: clamp(40px, 6.2vw, 52px);
  }

  .mapear-hero__description {
    max-width: 640px;
    font-size: 17px;
  }

  .mapear-hero__lead {
    max-width: 640px;
    font-size: 21px;
  }

  .mapear-hero__visual {
    height: auto;
  }

  .mapear-hero__photo-frame {
    width: min(100%, 560px);
    height: clamp(330px, 48vw, 430px);
    margin-inline: auto;
  }

  .mapear-hero__rocket {
    top: 4px;
    right: calc(50% - 280px + 22px);
    left: auto;
  }

  .mapear-hero__benefits-right {
    width: min(100%, 360px);
  }

  .mapear-hero__bottom-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mapear-hero__bottom-card:nth-child(odd) {
    border-left: 0;
  }

  .mapear-hero__bottom-card:nth-child(n + 3) {
    border-top: 1px solid var(--mapear-borda);
  }

  .mapear-segmentos__cards {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .mapear-segmentos__card {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .mapear-segmentos__connector {
    min-height: 72px;
  }

  .mapear-segmentos__path {
    width: 136px;
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .mapear-segmentos__pin {
    width: 56px;
    height: 72px;
    transform: translate(-2px, 5px);
  }

  .mapear-section-heading {
    gap: 14px;
  }

  .mapear-section-heading__line {
    width: min(90px, 18vw);
  }

  .mapear-how__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .mapear-how__connector {
    display: none;
  }

  .mapear-how__step {
    padding: 18px 14px;
    border: 1px solid #e5eef8;
    border-radius: 18px;
    background: var(--cor-branco);
    box-shadow: 0 10px 24px rgba(28, 55, 107, 0.06);
  }

  .mapear-how__step-description {
    max-width: 190px;
    font-size: 12px;
  }

  .mapear-results__card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 24px 24px;
  }

  .mapear-results__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .mapear-results__metric--relations {
    grid-column: 1 / -1;
  }

  .mapear-results__metric-description {
    max-width: 220px;
    font-size: 12px;
  }

  .mapear-results__metric-value {
    font-size: 24px;
  }

  .mapear-results__image-wrap {
    width: min(100%, 520px);
    height: 245px;
    margin: 0 auto;
    border-radius: 70px 22px 22px 70px;
  }

  .mapear-about {
    padding-top: 52px;
  }

  .mapear-about__container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px;
  }

  .mapear-about__photo {
    width: min(100%, 560px);
    height: 330px;
  }

  .mapear-about__body {
    grid-template-columns: 1fr;
  }

  .mapear-about__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mapear-final-cta__container {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: 0;
    padding: 24px 92px 24px 28px;
  }

  .mapear-final-cta__actions {
    flex-wrap: wrap;
  }

  .mapear-final-cta__rocket {
    position: absolute;
    right: 22px;
    bottom: 10px;
    top: auto;
    width: 58px;
    opacity: 0.75;
    transform: rotate(23deg);
  }

  .mapear-footer__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 34px;
    padding-top: 30px;
  }

  .mapear-footer__brand {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .mapear-footer__logo {
    width: 132px;
  }

  .mapear-footer__nav,
  .mapear-footer__language,
  .mapear-footer__contact,
  .mapear-footer__social {
    min-height: 0;
    border-left: 0;
    padding-left: 0;
  }

  .mapear-footer__bottom {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .mapear-header__container,
  .mapear-hero__container,
  .mapear-hero__bottom-wrap,
  .mapear-segmentos__container,
  .mapear-how__container,
  .mapear-results__container,
  .mapear-about__container,
  .mapear-final-cta__container,
  .mapear-footer__container,
  .mapear-footer__bottom {
    width: min(100% - 28px, var(--mapear-max));
  }

  .mapear-hero {
    padding: 34px 0 56px;
  }

  .mapear-hero__title {
    font-size: clamp(36px, 10vw, 42px);
  }

  .mapear-hero__title-line {
    display: inline;
    white-space: normal;
  }

  .mapear-hero__title-line::after {
    content: " ";
  }

  .mapear-hero__title-line:nth-child(2)::after,
  .mapear-hero__title-line:nth-child(3)::after {
    content: "\A";
    white-space: pre;
  }

  .mapear-hero__description {
    margin-top: 16px;
    font-size: 15px;
  }

  .mapear-hero__lead {
    margin-top: 20px;
    font-size: 17px;
  }

  .mapear-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mapear-hero__button-primary,
  .mapear-hero__button-secondary {
    width: 100%;
    height: 58px;
  }

  .mapear-hero__visual {
    height: auto;
    padding-bottom: 0;
  }

  .mapear-hero__blob-main {
    top: 20px;
    left: 5%;
    width: 90%;
    height: 300px;
  }

  .mapear-hero__blob-soft {
    right: -18%;
    bottom: 140px;
    width: 70%;
  }

  .mapear-hero__photo-frame {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 460px);
    height: clamp(270px, 74vw, 360px);
    margin: 0 auto;
  }

  .mapear-hero__rocket {
    top: 10px;
    right: clamp(12px, 4vw, 28px);
    left: auto;
    width: 64px;
  }

  .mapear-hero__benefits-right {
    position: relative;
    top: auto;
    right: auto;
    display: grid;
    width: min(100%, 320px);
    margin: 18px auto 0;
    gap: 12px;
  }

  .mapear-hero__benefit-right {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 12px;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .mapear-hero__benefit-right:nth-child(2) {
    margin-left: auto;
  }

  .mapear-hero__benefit-right:nth-child(3) {
    margin-left: auto;
  }

  .mapear-hero__benefit-icon-circle,
  .mapear-hero__benefit-right--compact .mapear-hero__benefit-icon-circle {
    width: 58px;
    height: 58px;
  }

  .mapear-hero__benefit-text strong {
    font-size: 14px;
  }

  .mapear-hero__benefit-text small {
    font-size: 12px;
  }

  .mapear-hero__bottom-wrap {
    margin-top: 28px;
  }

  .mapear-hero__bottom-cards {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .mapear-hero__bottom-card,
  .mapear-hero__bottom-card:nth-child(odd) {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 24px 20px;
    border-left: 0;
  }

  .mapear-hero__bottom-card + .mapear-hero__bottom-card {
    border-top: 1px solid var(--mapear-borda);
  }

  .mapear-segmentos {
    padding: 42px 0 54px;
  }

  .mapear-segmentos__card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px;
  }

  .mapear-segmentos__icon-circle {
    width: 74px;
    height: 74px;
    margin-bottom: 16px;
  }

  .mapear-segmentos__icon-img {
    width: 61.6px;
    height: 61.6px;
  }

  .mapear-segmentos__title {
    font-size: 22px;
  }

  .mapear-segmentos__description {
    max-width: none;
    font-size: 14px;
  }

  .mapear-segmentos__button,
  .mapear-segmentos__button--empresas {
    width: 100%;
    min-width: 0;
    height: 44px;
    font-size: 13px;
  }

  .mapear-how {
    padding: 0 0 40px;
  }

  .mapear-results {
    padding-bottom: 58px;
  }

  .mapear-section-heading {
    gap: 10px;
    margin-bottom: 24px;
  }

  .mapear-section-heading__line {
    width: 46px;
  }

  .mapear-section-heading__title {
    font-size: 16px;
  }

  .mapear-how__steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mapear-how__step {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    grid-template-areas:
      "icon label"
      "icon text";
    gap: 4px 14px;
    align-items: center;
    padding: 16px;
    text-align: left;
  }

  .mapear-how__step-icon {
    grid-area: icon;
    width: 66px;
    height: 66px;
    margin: 0;
  }

  .mapear-how__icon {
    width: 32px;
    height: 32px;
  }

  .mapear-how__step-label {
    grid-area: label;
    justify-content: flex-start;
    margin: 0;
  }

  .mapear-how__step-description {
    grid-area: text;
    max-width: none;
    margin: 0;
    font-size: 12px;
  }

  .mapear-results__card {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .mapear-results__metrics {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mapear-results__metric-description {
    max-width: 260px;
  }

  .mapear-results__image-wrap {
    height: 220px;
    border-radius: 42px 18px 18px 42px;
  }

  .mapear-about {
    padding-top: 44px;
  }

  .mapear-about__container {
    padding: 24px;
    border-radius: 22px;
  }

  .mapear-about__photo {
    height: 300px;
    border-radius: 18px;
  }

  .mapear-about__title {
    font-size: 24px;
  }

  .mapear-about__subtitle,
  .mapear-about__text,
  .mapear-about__highlight {
    font-size: 14px;
  }

  .mapear-about__signature {
    font-size: 36px;
  }

  .mapear-about__features {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .mapear-final-cta__path {
    width: 820px;
    opacity: 0.45;
  }

  .mapear-final-cta__container {
    justify-items: stretch;
    min-height: 0;
    padding: 26px 0 30px;
    text-align: center;
  }

  .mapear-final-cta__title {
    font-size: 24px;
  }

  .mapear-final-cta__subtitle {
    font-size: 19px;
  }

  .mapear-final-cta__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .mapear-final-cta__button,
  .mapear-final-cta__button--primary,
  .mapear-final-cta__button--secondary {
    width: 100%;
    min-width: 0;
  }

  .mapear-final-cta__rocket {
    right: 8px;
    bottom: 2px;
    width: 58px;
    opacity: 0.45;
    transform: rotate(23deg);
  }

  .mapear-footer__container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 30px;
    padding-bottom: 18px;
  }

  .mapear-footer__links {
    grid-template-columns: 1fr;
  }

  .mapear-footer__language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
  }

  .mapear-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mapear-footer__legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .mapear-header__logo img {
    width: 82px;
  }

  .mapear-header__container {
    position: relative;
    gap: 10px;
  }

  .mapear-header__toggle {
    width: 46px;
    height: 46px;
    margin-left: auto;
  }

  .mapear-hero__bottom-card {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 22px 16px;
  }

  .mapear-hero__bottom-icon-circle {
    width: 54px;
    height: 54px;
  }

  .mapear-hero__bottom-title {
    font-size: 15px;
  }

  .mapear-hero__bottom-description {
    font-size: 12px;
    line-height: 1.45;
  }
}

.mapear-programa {
  background: #f7fbff;
}

.mapear-programa .mapear-main {
  background:
    radial-gradient(circle at 7% 16%, rgba(232, 246, 255, 0.82) 0 190px, transparent 191px),
    radial-gradient(circle at 92% 18%, rgba(221, 236, 251, 0.76) 0 220px, transparent 221px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.programa-page {
  color: var(--mapear-azul-escuro);
}

.programa-page * {
  min-width: 0;
}

.programa-page p,
.programa-page h1,
.programa-page h2,
.programa-page h3,
.programa-page a {
  overflow-wrap: break-word;
}

.programa-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  padding: 8px 0 54px;
  background:
    radial-gradient(circle at 5% 61%, rgba(238, 247, 255, 0.96) 0 142px, transparent 143px),
    radial-gradient(circle at 73% 34%, rgba(232, 246, 255, 0.96) 0 250px, transparent 251px),
    radial-gradient(circle at 100% 65%, rgba(221, 236, 251, 0.9) 0 190px, transparent 191px),
    linear-gradient(180deg, #ffffff 0%, #ffffff 73%, #eaf4fe 100%);
}

.programa-hero::before,
.programa-hero::after,
.programa-decor {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.programa-hero::before {
  top: 48px;
  right: 9%;
  width: clamp(280px, 32vw, 560px);
  height: clamp(280px, 32vw, 560px);
  border-radius: 56% 44% 60% 40%;
  background: rgba(232, 246, 255, 0.72);
}

.programa-hero::after {
  right: -110px;
  bottom: -120px;
  width: clamp(300px, 34vw, 620px);
  height: clamp(250px, 30vw, 520px);
  border-radius: 54% 46% 0 0;
  background: rgba(221, 236, 251, 0.68);
}

.programa-decor--one {
  left: -80px;
  bottom: 10px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(234, 244, 254, 0.82);
}

.programa-decor--two {
  top: 140px;
  left: 50%;
  width: 14px;
  height: 14px;
  color: var(--mapear-laranja);
  background: currentColor;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.programa-hero__container,
.programa-section {
  width: min(100% - 80px, var(--mapear-max));
  margin: 0 auto;
}

.programa-hero__container {
  position: relative;
  z-index: 4;
  isolation: isolate;
  display: grid;
  grid-template-columns: 43% 57%;
  column-gap: 24px;
  align-items: start;
}

.programa-hero__content {
  position: relative;
  z-index: 7;
  isolation: isolate;
  max-width: 650px;
  margin-top: 10px;
  padding-left: 64px;
  min-width: 0;
  padding-top: 0;
}

.programa-hero__path {
  position: absolute;
  top: 118px;
  left: -72px;
  z-index: 2;
  width: clamp(1080px, 82vw, 1400px);
  height: 380px;
  overflow: visible;
  pointer-events: none;
}

.programa-hero__rocket {
  position: absolute;
  top: clamp(10px, 1.8vw, 10px);
  right: clamp(200px, 8.4vw, -50px);
  z-index: 9;
  display: block;
  width: clamp(74px, 4.5vw, 92px);
  transform: rotate(14deg);
  pointer-events: none;
}

@media (min-width: 1400px) and (max-width: 1520px) {
  .programa-hero__rocket {
    top: -10px;
    right: clamp(130px, 9.4vw, 158px);
  }
}

.programa-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  color: var(--mapear-azul);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.programa-hero__title {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(52px, 4.9vw, 82px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.programa-definition-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  width: 100%;
  max-width: 720px;
  margin-top: clamp(28px, 3vw, 44px);
  padding: clamp(22px, 2.4vw, 34px);
  border: 2px solid #cfe4fa;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(28, 55, 107, 0.08);
}

.programa-definition-card p {
  margin: 0;
  color: var(--mapear-texto-suave);
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 600;
  line-height: 1.65;
}

.programa-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(28, 55, 107, 0.1);
}

.programa-icon img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.programa-definition-card__icon {
  width: 76px;
  height: 76px;
  background: #f3fbff;
}

.programa-hero__visual {
  position: relative;
  width: 100%;
  height: 405px;
  min-height: 0;
  margin-top: 0;
}

.programa-hero__road {
  position: absolute;
  top: 8px;
  left: 48%;
  z-index: 1;
  display: block;
  width: 138%;
  height: 112%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 1;
  pointer-events: none;
}

.programa-hero__image-shell {
  position: absolute;
  top: -8px;
  left: clamp(86px, 7.4vw, 122px);
  z-index: 4;
  width: clamp(390px, 31.7vw, 510px);
  height: clamp(320px, 25.8vw, 410px);
  overflow: hidden;
  border: 16px solid rgba(236, 247, 255, 0.94);
  border-radius: 44% 56% 48% 52% / 38% 42% 58% 62%;
  background: #eaf4fe;
  box-shadow: 0 28px 68px rgba(28, 55, 107, 0.13);
}

.programa-hero__image-shell--student-girl,
.programa-hero__image-shell--student-boy {
  display: flex;
  align-items: center;
  justify-content: center;
}

.programa-hero__image-shell::before {
  content: "";
  position: absolute;
  inset: -26px;
  z-index: 1;
  border: 2px solid rgba(204, 230, 251, 0.82);
  border-radius: inherit;
  pointer-events: none;
}

.programa-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  filter: brightness(1.04) saturate(0.98);
}

.programa-hero__image-shell--student-girl .programa-hero__image {
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.programa-hero__image-shell--student-boy .programa-hero__image {
  flex: 0 0 auto;
  width: 130%;
  height: 130%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateY(-42px);
}

.programa-hero__orbit {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 5.2vw, 92px);
  height: clamp(72px, 5.2vw, 92px);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(28, 55, 107, 0.11);
}

.programa-hero__orbit img {
  width: 52%;
  height: 52%;
  object-fit: contain;
}

.programa-hero__orbit--green {
  top: 9%;
  right: 5%;
}

.programa-hero__orbit--orange {
  top: 44%;
  right: 0;
}

.programa-hero__orbit--blue {
  right: 9%;
  bottom: 10%;
}

.programa-section {
  padding: clamp(34px, 4vw, 60px) 0;
}

.programa-section--lift {
  margin-top: -4px;
  padding-top: 0;
}

.programa-wide-card,
.programa-panel,
.programa-final-cta {
  border: 1px solid #dbeafa;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 52px rgba(28, 55, 107, 0.08);
}

.programa-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 146px;
  overflow: hidden;
}

.programa-feature {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  min-width: 0;
  padding: 24px 22px;
}

.programa-feature + .programa-feature {
  border-left: 1px solid #dbeafa;
}

.programa-benefits .programa-icon {
  width: 64px;
  height: 64px;
  box-shadow: 0 18px 36px rgba(28, 55, 107, 0.08);
}

.programa-benefits .programa-icon img {
  width: 78%;
  height: 78%;
}

.programa-benefits .programa-feature:nth-child(1) .programa-icon {
  background: rgba(31, 168, 79, 0.14);
}

.programa-benefits .programa-feature:nth-child(2) .programa-icon {
  background: rgba(229, 130, 25, 0.15);
}

.programa-benefits .programa-feature:nth-child(3) .programa-icon {
  background: rgba(90, 155, 231, 0.15);
}

.programa-card-grid--three .programa-small-card .programa-icon {
  background: rgba(90, 155, 231, 0.15);
}

.programa-card-grid--three .programa-small-card .programa-icon img {
  width: 78%;
  height: 78%;
}

.programa-feature h2,
.programa-small-card h3,
.programa-mini-card h3,
.programa-process__item h3 {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-weight: 800;
  letter-spacing: 0;
}

.programa-feature h2 {
  font-size: clamp(18px, 1.14vw, 20px);
  line-height: 1.25;
}

.programa-feature p,
.programa-small-card p,
.programa-mini-card p,
.programa-process__item p {
  margin: 10px 0 0;
  color: var(--mapear-texto-suave);
  font-weight: 600;
  line-height: 1.58;
}

.programa-feature p {
  grid-column: 2;
  margin-top: 8px;
  font-size: clamp(15px, 0.92vw, 16px);
  line-height: 1.45;
}

.programa-panel {
  padding: clamp(34px, 4.4vw, 64px);
}

.programa-panel--compact {
  padding-inline: clamp(26px, 3vw, 44px);
}

.programa-section__header {
  max-width: 760px;
  margin: 0 auto clamp(28px, 3vw, 42px);
  text-align: center;
}

.programa-section__header h2 {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 800;
  line-height: 1.08;
}

.programa-card-grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.programa-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.programa-card-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.programa-small-card,
.programa-mini-card {
  min-width: 0;
  border: 1px solid #dbeafa;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(28, 55, 107, 0.06);
}

.programa-small-card {
  padding: clamp(24px, 2.5vw, 34px);
}

.programa-small-card h3 {
  margin-top: 18px;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.25;
}

.programa-small-card p {
  font-size: 15px;
}

.programa-mini-card {
  padding: 24px 18px;
  text-align: center;
}

.programa-card-grid--five .programa-mini-card:nth-child(1),
.programa-card-grid--five .programa-mini-card:nth-child(5) {
  border-color: #cfe4fa;
  background: #eef7ff;
}

.programa-card-grid--five .programa-mini-card:nth-child(2),
.programa-card-grid--five .programa-mini-card:nth-child(4) {
  border-color: #cfebda;
  background: #eefaf3;
}

.programa-card-grid--five .programa-mini-card:nth-child(3) {
  border-color: #f7dcc0;
  background: #fff4e8;
}

.programa-mini-card .programa-icon {
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
}

.programa-mini-card .programa-icon img {
  width: 54px;
  height: 54px;
}

.programa-mini-card h3 {
  font-size: 17px;
  line-height: 1.25;
}

.programa-mini-card p {
  font-size: 13px;
  line-height: 1.52;
}

.programa-process {
  overflow: hidden;
}

.programa-process__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 22px);
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
}

.programa-process__list::before {
  content: "";
  position: absolute;
  top: 72px;
  right: 9%;
  left: 9%;
  height: 3px;
  border-top: 3px dashed rgba(90, 155, 231, 0.62);
}

.programa-process__item {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: center;
}

.programa-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: var(--mapear-azul-escuro);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.programa-process__icon {
  position: relative;
  margin: 0 auto 16px;
  border: 4px solid #ffffff;
}

.programa-process__icon img {
  width: 64px;
  height: 64px;
}

.programa-process__item h3 {
  font-size: 18px;
}

.programa-process__item p {
  font-size: 13px;
  line-height: 1.5;
}

.programa-section--final {
  padding-bottom: clamp(56px, 6vw, 92px);
}

.programa-final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 30px) clamp(28px, 4vw, 64px);
  background: linear-gradient(135deg, #eaf6ff 0%, #f7fbff 100%);
}

.programa-final-cta::before,
.programa-final-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(84px, 7vw, 126px);
  height: clamp(40px, 3.6vw, 62px);
  background:
    radial-gradient(circle at 22% 62%, rgba(255, 255, 255, 0.82) 0 24%, transparent 25%),
    radial-gradient(circle at 46% 42%, rgba(255, 255, 255, 0.72) 0 32%, transparent 33%),
    radial-gradient(circle at 70% 63%, rgba(255, 255, 255, 0.78) 0 28%, transparent 29%);
  opacity: 0.74;
  pointer-events: none;
}

.programa-final-cta::before {
  top: clamp(20px, 2.5vw, 34px);
  left: clamp(28px, 4.5vw, 74px);
}

.programa-final-cta::after {
  bottom: clamp(16px, 2vw, 28px);
  left: clamp(76px, 8vw, 138px);
  width: clamp(66px, 5.2vw, 96px);
  height: clamp(32px, 2.8vw, 48px);
  opacity: 0.56;
}

.programa-final-cta__rocket {
  position: absolute;
  top: clamp(28px, 2.5vw, 40px);
  left: clamp(48px, 4.4vw, 76px);
  z-index: 2;
  width: clamp(92px, 6.4vw, 126px);
  opacity: 0.9;
  transform: rotate(16deg);
}

.programa-final-cta__content {
  position: relative;
  z-index: 1;
  padding-left: clamp(128px, 10vw, 168px);
}

.programa-final-cta h2 {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(30px, 2.8vw, 48px);
  font-weight: 800;
  line-height: 1.1;
}

.programa-final-cta p {
  margin: 10px 0 0;
  color: var(--mapear-texto-suave);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 700;
}

.programa-final-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.programa-final-cta .programa-button {
  min-height: 50px;
}

.programa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.programa-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.programa-button--primary {
  background: var(--mapear-laranja);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(229, 130, 25, 0.22);
}

.programa-button--secondary {
  border: 2px solid #77a9e8;
  background: #ffffff;
  color: var(--mapear-azul-escuro);
}

.programa-social-links a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 1399px) {
  .programa-hero__container,
  .programa-section {
    width: min(100% - 56px, var(--mapear-max));
  }

  .programa-hero__container {
    grid-template-columns: 43% 57%;
    column-gap: 24px;
  }

  .programa-hero__content {
    margin-top: 8px;
    padding-left: 64px;
    padding-top: 0;
  }

  .programa-hero__path {
    top: 112px;
    left: -64px;
    width: clamp(1000px, 86vw, 1180px);
    height: 360px;
  }

  .programa-hero__rocket {
    top: -8px;
    right: clamp(128px, 10.5vw, 160px);
    left: auto;
    width: 74px;
  }

  .programa-hero__visual {
    height: 370px;
  }

  .programa-hero__road {
    top: 0;
    left: 48%;
    width: 140%;
    height: 116%;
    object-fit: contain;
    object-position: right bottom;
  }

  .programa-hero__image-shell {
    top: -14px;
    left: 70px;
    width: clamp(360px, 33vw, 455px);
    height: clamp(315px, 28vw, 372px);
  }

  .programa-card-grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1279px) {
  .programa-hero {
    min-height: 0;
    padding-top: 34px;
  }

  .programa-hero__container {
    grid-template-columns: 42% 58%;
    column-gap: 18px;
  }

  .programa-hero__content {
    margin-top: 32px;
    padding-left: 0;
  }

  .programa-hero__path,
  .programa-hero__road {
    display: none;
  }

  .programa-hero__visual {
    height: auto;
  }

  .programa-hero__image-shell {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 500px);
    height: clamp(315px, 31vw, 390px);
    margin-left: auto;
    transform: none;
  }

  .programa-hero__rocket {
    top: clamp(-28px, -2vw, -18px);
    right: clamp(72px, 7.2vw, 98px);
    bottom: auto;
    left: auto;
    width: 76px;
  }
}

@media (max-width: 1100px) {
  .mapear-programa .mapear-header__container {
    width: min(100% - 40px, var(--mapear-max));
  }

  .mapear-programa .mapear-header__actions,
  .mapear-programa .mapear-header__cta {
    display: none;
  }

  .mapear-programa .mapear-header__toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .mapear-programa .mapear-header__nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 18px;
    background: var(--cor-branco);
    box-shadow: none;
  }

  .programa-hero__container,
  .programa-section {
    width: min(100% - 40px, var(--mapear-max));
  }

  .programa-hero {
    padding: 40px 0 72px;
  }

  .programa-hero__container {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .programa-hero__content {
    max-width: 700px;
    margin-top: 0;
    padding-left: 0;
  }

  .programa-hero__path {
    display: none;
  }

  .programa-hero__rocket {
    top: 4px;
    right: calc(50% - 280px + 22px);
    bottom: auto;
    left: auto;
    width: 76px;
  }

  .programa-hero__visual {
    height: auto;
    min-height: 0;
  }

  .programa-hero__road {
    display: none;
  }

  .programa-hero__image-shell {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 560px);
    height: clamp(330px, 48vw, 430px);
    margin-inline: auto;
    transform: none;
  }

  .programa-hero__image-shell--student-girl,
  .programa-hero__image-shell--student-boy {
    width: min(100%, 560px);
  }

  .programa-benefits,
  .programa-card-grid--three {
    grid-template-columns: 1fr;
  }

  .programa-feature + .programa-feature {
    border-top: 1px solid #dbeafa;
    border-left: 0;
  }

  .programa-card-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programa-process__list {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 0;
  }

  .programa-process__list::before {
    top: 0;
    bottom: 0;
    left: 34px;
    width: 3px;
    height: auto;
    border-top: 0;
    border-left: 3px dashed rgba(90, 155, 231, 0.62);
  }

  .programa-process__item {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 6px 18px;
    text-align: left;
  }

  .programa-process__number {
    grid-column: 1;
    grid-row: 1;
    margin: 0 auto;
  }

  .programa-process__icon {
    grid-column: 1;
    grid-row: 2 / span 2;
    margin: 0;
  }

  .programa-process__item h3,
  .programa-process__item p {
    grid-column: 2;
  }

  .programa-process__item p {
    margin-top: 2px;
  }

  .programa-final-cta {
    grid-template-columns: 1fr;
  }

  .programa-final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .mapear-programa .mapear-header__container {
    width: min(100% - 28px, var(--mapear-max));
  }

  .programa-hero__container,
  .programa-section {
    width: min(100% - 28px, var(--mapear-max));
  }

  .programa-hero {
    padding: 34px 0 56px;
  }

  .programa-hero__title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .programa-definition-card {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
    padding: 22px 20px;
  }

  .programa-definition-card p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.58;
  }

  .programa-hero__visual {
    height: auto;
    min-height: 0;
    padding-bottom: 0;
  }

  .programa-hero__road {
    display: none;
  }

  .programa-hero__image-shell {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 460px);
    height: clamp(270px, 74vw, 360px);
    margin: 0 auto;
    border-width: 10px;
    transform: none;
  }

  .programa-hero__image-shell--student-girl,
  .programa-hero__image-shell--student-boy {
    width: min(100%, 460px);
  }

  .programa-hero__image-shell--student-girl .programa-hero__image {
    width: 82%;
    height: 82%;
  }

  .programa-hero__image-shell--student-boy .programa-hero__image {
    width: 106%;
    height: 106%;
    transform: translateY(-18px);
  }

  .programa-hero__rocket {
    top: 10px;
    right: clamp(12px, 4vw, 28px);
    bottom: auto;
    left: auto;
    width: 64px;
  }

  .programa-hero__orbit {
    width: 62px;
    height: 62px;
  }

  .programa-hero__orbit--green {
    top: 5%;
    right: 1%;
  }

  .programa-hero__orbit--orange {
    top: 42%;
    right: -4px;
  }

  .programa-hero__orbit--blue {
    right: 4%;
    bottom: 8%;
  }

  .programa-feature {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 18px;
  }

  .programa-feature p {
    grid-column: auto;
    margin-top: 0;
  }

  .programa-feature .programa-icon,
  .programa-small-card .programa-icon {
    width: 62px;
    height: 62px;
  }

  .programa-feature .programa-icon img,
  .programa-small-card .programa-icon img {
    width: 78%;
    height: 78%;
  }

  .programa-panel {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .programa-card-grid--five {
    grid-template-columns: 1fr;
  }

  .programa-mini-card,
  .programa-small-card {
    padding: 22px 16px;
    text-align: left;
  }

  .programa-mini-card .programa-icon {
    margin-right: 0;
    margin-left: 0;
  }

  .programa-process__item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .programa-final-cta {
    padding: 24px 18px;
  }

  .programa-final-cta::before {
    top: 18px;
    left: 12px;
  }

  .programa-final-cta::after {
    bottom: 18px;
    left: 56px;
  }

  .programa-final-cta__rocket {
    top: 24px;
    left: 18px;
    width: 80px;
  }

  .programa-final-cta__content {
    padding-left: 96px;
  }

  .programa-final-cta__actions,
  .programa-button {
    width: 100%;
  }

  .programa-final-cta__actions {
    align-items: stretch;
  }
}

@media (max-width: 420px) {
  .programa-hero__title {
    font-size: 39px;
  }

  .programa-definition-card p,
  .programa-feature p,
  .programa-small-card p {
    font-size: 14px;
  }

  .programa-final-cta__rocket {
    opacity: 0.38;
  }

  .programa-final-cta__content {
    padding-left: 0;
  }
}


/* Page-specific namespaces for Familia and Empresa */
.mapear-familia {
  background: #f7fbff;
}

.mapear-familia .mapear-main {
  background:
    radial-gradient(circle at 7% 16%, rgba(232, 246, 255, 0.82) 0 190px, transparent 191px),
    radial-gradient(circle at 92% 18%, rgba(221, 236, 251, 0.76) 0 220px, transparent 221px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.familia-page {
  color: var(--mapear-azul-escuro);
}

.familia-page * {
  min-width: 0;
}

.familia-page p,
.familia-page h1,
.familia-page h2,
.familia-page h3,
.familia-page a {
  overflow-wrap: break-word;
}

.familia-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  padding: 8px 0 54px;
  background:
    radial-gradient(circle at 5% 61%, rgba(238, 247, 255, 0.96) 0 142px, transparent 143px),
    radial-gradient(circle at 73% 34%, rgba(232, 246, 255, 0.96) 0 250px, transparent 251px),
    radial-gradient(circle at 100% 65%, rgba(221, 236, 251, 0.9) 0 190px, transparent 191px),
    linear-gradient(180deg, #ffffff 0%, #ffffff 73%, #eaf4fe 100%);
}

.familia-hero::before,
.familia-hero::after,
.familia-decor {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.familia-hero::before {
  top: 48px;
  right: 9%;
  width: clamp(280px, 32vw, 560px);
  height: clamp(280px, 32vw, 560px);
  border-radius: 56% 44% 60% 40%;
  background: rgba(232, 246, 255, 0.72);
}

.familia-hero::after {
  right: -110px;
  bottom: -120px;
  width: clamp(300px, 34vw, 620px);
  height: clamp(250px, 30vw, 520px);
  border-radius: 54% 46% 0 0;
  background: rgba(221, 236, 251, 0.68);
}

.familia-decor--one {
  left: -80px;
  bottom: 10px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(234, 244, 254, 0.82);
}

.familia-decor--two {
  top: 140px;
  left: 50%;
  width: 14px;
  height: 14px;
  color: var(--mapear-laranja);
  background: currentColor;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.familia-hero__container,
.familia-section {
  width: min(100% - 80px, var(--mapear-max));
  margin: 0 auto;
}

.familia-hero__container {
  position: relative;
  z-index: 4;
  isolation: isolate;
  display: grid;
  grid-template-columns: 43% 57%;
  column-gap: 24px;
  align-items: start;
}

.familia-hero__content {
  position: relative;
  z-index: 7;
  isolation: isolate;
  max-width: 650px;
  margin-top: 10px;
  padding-left: 64px;
  min-width: 0;
  padding-top: 0;
}

.familia-hero__path {
  position: absolute;
  top: 118px;
  left: -72px;
  z-index: 2;
  width: clamp(1080px, 82vw, 1400px);
  height: 380px;
  overflow: visible;
  pointer-events: none;
}

.familia-hero__rocket {
  position: absolute;
  top: clamp(10px, 1.8vw, 10px);
  right: clamp(200px, 8.4vw, -50px);
  z-index: 9;
  display: block;
  width: clamp(74px, 4.5vw, 92px);
  transform: rotate(14deg);
  pointer-events: none;
}

@media (min-width: 1400px) and (max-width: 1520px) {
  .familia-hero__rocket {
    top: -10px;
    right: clamp(130px, 9.4vw, 158px);
  }
}

.familia-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  color: var(--mapear-azul);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.familia-hero__title {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(52px, 4.9vw, 82px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.familia-definition-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  width: 100%;
  max-width: 720px;
  margin-top: clamp(28px, 3vw, 44px);
  padding: clamp(22px, 2.4vw, 34px);
  border: 2px solid #cfe4fa;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(28, 55, 107, 0.08);
}

.familia-definition-card p {
  margin: 0;
  color: var(--mapear-texto-suave);
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 600;
  line-height: 1.65;
}

.familia-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(28, 55, 107, 0.1);
}

.familia-icon img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.familia-definition-card__icon {
  width: 76px;
  height: 76px;
  background: #f3fbff;
}

.familia-hero__visual {
  position: relative;
  width: 100%;
  height: 405px;
  min-height: 0;
  margin-top: 0;
}

.familia-hero__road {
  position: absolute;
  top: 8px;
  left: 48%;
  z-index: 1;
  display: block;
  width: 138%;
  height: 112%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 1;
  pointer-events: none;
}

.familia-hero__image-shell {
  position: absolute;
  top: -8px;
  left: clamp(86px, 7.4vw, 122px);
  z-index: 4;
  width: clamp(390px, 31.7vw, 510px);
  height: clamp(320px, 25.8vw, 410px);
  overflow: hidden;
  border: 16px solid rgba(236, 247, 255, 0.94);
  border-radius: 44% 56% 48% 52% / 38% 42% 58% 62%;
  background: #eaf4fe;
  box-shadow: 0 28px 68px rgba(28, 55, 107, 0.13);
}

.familia-hero__image-shell--student-girl,
.familia-hero__image-shell--student-boy {
  display: flex;
  align-items: center;
  justify-content: center;
}

.familia-hero__image-shell::before {
  content: "";
  position: absolute;
  inset: -26px;
  z-index: 1;
  border: 2px solid rgba(204, 230, 251, 0.82);
  border-radius: inherit;
  pointer-events: none;
}

.familia-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  filter: brightness(1.04) saturate(0.98);
}

.familia-hero__image-shell--student-girl .familia-hero__image {
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.familia-hero__image-shell--student-boy .familia-hero__image {
  flex: 0 0 auto;
  width: 130%;
  height: 130%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateY(-42px);
}

.familia-hero__orbit {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 5.2vw, 92px);
  height: clamp(72px, 5.2vw, 92px);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(28, 55, 107, 0.11);
}

.familia-hero__orbit img {
  width: 52%;
  height: 52%;
  object-fit: contain;
}

.familia-hero__orbit--green {
  top: 9%;
  right: 5%;
}

.familia-hero__orbit--orange {
  top: 44%;
  right: 0;
}

.familia-hero__orbit--blue {
  right: 9%;
  bottom: 10%;
}

.familia-section {
  padding: clamp(34px, 4.2vw, 68px) 0;
}

.familia-section--lift {
  margin-top: -4px;
  padding-top: 0;
}

.familia-wide-card,
.familia-panel,
.familia-final-cta {
  border: 1px solid #dbeafa;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 52px rgba(28, 55, 107, 0.08);
}

.familia-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 146px;
  overflow: hidden;
}

.familia-feature {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  min-width: 0;
  padding: 24px 22px;
}

.familia-feature + .familia-feature {
  border-left: 1px solid #dbeafa;
}

.familia-benefits .familia-icon {
  width: 64px;
  height: 64px;
  box-shadow: 0 18px 36px rgba(28, 55, 107, 0.08);
}

.familia-benefits .familia-icon img {
  width: 78%;
  height: 78%;
}

.familia-benefits .familia-feature:nth-child(1) .familia-icon {
  background: rgba(31, 168, 79, 0.14);
}

.familia-benefits .familia-feature:nth-child(2) .familia-icon {
  background: rgba(229, 130, 25, 0.15);
}

.familia-benefits .familia-feature:nth-child(3) .familia-icon {
  background: rgba(90, 155, 231, 0.15);
}

.familia-card-grid--three .familia-small-card .familia-icon {
  background: rgba(90, 155, 231, 0.15);
}

.familia-card-grid--three .familia-small-card .familia-icon img {
  width: 78%;
  height: 78%;
}

.familia-feature h2,
.familia-small-card h3,
.familia-mini-card h3,
.familia-process__item h3 {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-weight: 800;
  letter-spacing: 0;
}

.familia-feature h2 {
  font-size: clamp(18px, 1.14vw, 20px);
  line-height: 1.25;
}

.familia-feature p,
.familia-small-card p,
.familia-mini-card p,
.familia-process__item p {
  margin: 10px 0 0;
  color: var(--mapear-texto-suave);
  font-weight: 600;
  line-height: 1.58;
}

.familia-feature p {
  grid-column: 2;
  margin-top: 8px;
  font-size: clamp(15px, 0.92vw, 16px);
  line-height: 1.45;
}

.familia-panel {
  padding: clamp(34px, 4.4vw, 64px);
}

.familia-panel--compact {
  padding-inline: clamp(26px, 3vw, 44px);
}

.familia-section__header {
  max-width: 760px;
  margin: 0 auto clamp(28px, 3vw, 42px);
  text-align: center;
}

.familia-section__header h2 {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 800;
  line-height: 1.08;
}

.familia-card-grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.familia-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.familia-card-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.familia-small-card,
.familia-mini-card {
  min-width: 0;
  border: 1px solid #dbeafa;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(28, 55, 107, 0.06);
}

.familia-small-card {
  padding: clamp(24px, 2.5vw, 34px);
}

.familia-small-card h3 {
  margin-top: 18px;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.25;
}

.familia-small-card p {
  font-size: 15px;
}

.familia-mini-card {
  padding: 24px 18px;
  text-align: center;
}

.familia-card-grid--five .familia-mini-card:nth-child(1),
.familia-card-grid--five .familia-mini-card:nth-child(5) {
  border-color: #cfe4fa;
  background: #eef7ff;
}

.familia-card-grid--five .familia-mini-card:nth-child(2),
.familia-card-grid--five .familia-mini-card:nth-child(4) {
  border-color: #cfebda;
  background: #eefaf3;
}

.familia-card-grid--five .familia-mini-card:nth-child(3) {
  border-color: #f7dcc0;
  background: #fff4e8;
}

.familia-mini-card .familia-icon {
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
}

.familia-mini-card .familia-icon img {
  width: 54px;
  height: 54px;
}

.familia-mini-card h3 {
  font-size: 17px;
  line-height: 1.25;
}

.familia-mini-card p {
  font-size: 13px;
  line-height: 1.52;
}

.familia-process {
  overflow: hidden;
}

.familia-process__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 22px);
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
}

.familia-process__list::before {
  content: "";
  position: absolute;
  top: 72px;
  right: 9%;
  left: 9%;
  height: 3px;
  border-top: 3px dashed rgba(90, 155, 231, 0.62);
}

.familia-process__item {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: center;
}

.familia-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: var(--mapear-azul-escuro);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.familia-process__icon {
  position: relative;
  margin: 0 auto 16px;
  border: 4px solid #ffffff;
}

.familia-process__icon img {
  width: 64px;
  height: 64px;
}

.familia-process__item h3 {
  font-size: 18px;
}

.familia-process__item p {
  font-size: 13px;
  line-height: 1.5;
}

.familia-section--final {
  padding-bottom: clamp(56px, 6vw, 92px);
}

.familia-final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 30px) clamp(28px, 4vw, 64px);
  background: linear-gradient(135deg, #eaf6ff 0%, #f7fbff 100%);
}

.familia-final-cta::before,
.familia-final-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(84px, 7vw, 126px);
  height: clamp(40px, 3.6vw, 62px);
  background:
    radial-gradient(circle at 22% 62%, rgba(255, 255, 255, 0.82) 0 24%, transparent 25%),
    radial-gradient(circle at 46% 42%, rgba(255, 255, 255, 0.72) 0 32%, transparent 33%),
    radial-gradient(circle at 70% 63%, rgba(255, 255, 255, 0.78) 0 28%, transparent 29%);
  opacity: 0.74;
  pointer-events: none;
}

.familia-final-cta::before {
  top: clamp(20px, 2.5vw, 34px);
  left: clamp(28px, 4.5vw, 74px);
}

.familia-final-cta::after {
  bottom: clamp(16px, 2vw, 28px);
  left: clamp(76px, 8vw, 138px);
  width: clamp(66px, 5.2vw, 96px);
  height: clamp(32px, 2.8vw, 48px);
  opacity: 0.56;
}

.familia-final-cta__rocket {
  position: absolute;
  top: clamp(28px, 2.5vw, 40px);
  left: clamp(48px, 4.4vw, 76px);
  z-index: 2;
  width: clamp(92px, 6.4vw, 126px);
  opacity: 0.9;
  transform: rotate(16deg);
}

.familia-final-cta__content {
  position: relative;
  z-index: 1;
  padding-left: clamp(128px, 10vw, 168px);
}

.familia-final-cta h2 {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(30px, 2.8vw, 48px);
  font-weight: 800;
  line-height: 1.1;
}

.familia-final-cta p {
  margin: 10px 0 0;
  color: var(--mapear-texto-suave);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 700;
}

.familia-final-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.familia-final-cta .familia-button {
  min-height: 50px;
}

.familia-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.familia-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.familia-button--primary {
  background: var(--mapear-laranja);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(229, 130, 25, 0.22);
}

.familia-button--secondary {
  border: 2px solid #77a9e8;
  background: #ffffff;
  color: var(--mapear-azul-escuro);
}

.familia-social-links a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 1399px) {
  .familia-hero__container,
  .familia-section {
    width: min(100% - 56px, var(--mapear-max));
  }

  .familia-hero__container {
    grid-template-columns: 43% 57%;
    column-gap: 24px;
  }

  .familia-hero__content {
    margin-top: 8px;
    padding-left: 64px;
    padding-top: 0;
  }

  .familia-hero__path {
    top: 112px;
    left: -64px;
    width: clamp(1000px, 86vw, 1180px);
    height: 360px;
  }

  .familia-hero__rocket {
    top: -8px;
    right: clamp(128px, 10.5vw, 160px);
    left: auto;
    width: 74px;
  }

  .familia-hero__visual {
    height: 370px;
  }

  .familia-hero__road {
    top: 0;
    left: 48%;
    width: 140%;
    height: 116%;
    object-fit: contain;
    object-position: right bottom;
  }

  .familia-hero__image-shell {
    top: -14px;
    left: 70px;
    width: clamp(360px, 33vw, 455px);
    height: clamp(315px, 28vw, 372px);
  }

  .familia-card-grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1279px) {
  .familia-hero {
    min-height: 0;
    padding-top: 34px;
  }

  .familia-hero__container {
    grid-template-columns: 42% 58%;
    column-gap: 18px;
  }

  .familia-hero__content {
    margin-top: 32px;
    padding-left: 0;
  }

  .familia-hero__path,
  .familia-hero__road {
    display: none;
  }

  .familia-hero__visual {
    height: auto;
  }

  .familia-hero__image-shell {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 500px);
    height: clamp(315px, 31vw, 390px);
    margin-left: auto;
    transform: none;
  }

  .familia-hero__rocket {
    top: clamp(-28px, -2vw, -18px);
    right: clamp(72px, 7.2vw, 98px);
    bottom: auto;
    left: auto;
    width: 76px;
  }
}

@media (max-width: 1100px) {
  .mapear-familia .mapear-header__container {
    width: min(100% - 40px, var(--mapear-max));
  }

  .mapear-familia .mapear-header__actions,
  .mapear-familia .mapear-header__cta {
    display: none;
  }

  .mapear-familia .mapear-header__toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .mapear-familia .mapear-header__nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 18px;
    background: var(--cor-branco);
    box-shadow: none;
  }

  .familia-hero__container,
  .familia-section {
    width: min(100% - 40px, var(--mapear-max));
  }

  .familia-hero {
    padding: 40px 0 72px;
  }

  .familia-hero__container {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .familia-hero__content {
    max-width: 700px;
    margin-top: 0;
    padding-left: 0;
  }

  .familia-hero__path {
    display: none;
  }

  .familia-hero__rocket {
    top: 4px;
    right: calc(50% - 280px + 22px);
    bottom: auto;
    left: auto;
    width: 76px;
  }

  .familia-hero__visual {
    height: auto;
    min-height: 0;
  }

  .familia-hero__road {
    display: none;
  }

  .familia-hero__image-shell {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 560px);
    height: clamp(330px, 48vw, 430px);
    margin-inline: auto;
    transform: none;
  }

  .familia-hero__image-shell--student-girl,
  .familia-hero__image-shell--student-boy {
    width: min(100%, 560px);
  }

  .familia-benefits,
  .familia-card-grid--three {
    grid-template-columns: 1fr;
  }

  .familia-feature + .familia-feature {
    border-top: 1px solid #dbeafa;
    border-left: 0;
  }

  .familia-card-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .familia-process__list {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 0;
  }

  .familia-process__list::before {
    top: 0;
    bottom: 0;
    left: 34px;
    width: 3px;
    height: auto;
    border-top: 0;
    border-left: 3px dashed rgba(90, 155, 231, 0.62);
  }

  .familia-process__item {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 6px 18px;
    text-align: left;
  }

  .familia-process__number {
    grid-column: 1;
    grid-row: 1;
    margin: 0 auto;
  }

  .familia-process__icon {
    grid-column: 1;
    grid-row: 2 / span 2;
    margin: 0;
  }

  .familia-process__item h3,
  .familia-process__item p {
    grid-column: 2;
  }

  .familia-process__item p {
    margin-top: 2px;
  }

  .familia-final-cta {
    grid-template-columns: 1fr;
  }

  .familia-final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .mapear-familia .mapear-header__container {
    width: min(100% - 28px, var(--mapear-max));
  }

  .familia-hero__container,
  .familia-section {
    width: min(100% - 28px, var(--mapear-max));
  }

  .familia-hero {
    padding: 34px 0 56px;
  }

  .familia-hero__title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .familia-definition-card {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
    padding: 22px 20px;
  }

  .familia-definition-card p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.58;
  }

  .familia-hero__visual {
    height: auto;
    min-height: 0;
    padding-bottom: 0;
  }

  .familia-hero__road {
    display: none;
  }

  .familia-hero__image-shell {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 460px);
    height: clamp(270px, 74vw, 360px);
    margin: 0 auto;
    border-width: 10px;
    transform: none;
  }

  .familia-hero__image-shell--student-girl,
  .familia-hero__image-shell--student-boy {
    width: min(100%, 460px);
  }

  .familia-hero__image-shell--student-girl .familia-hero__image {
    width: 82%;
    height: 82%;
  }

  .familia-hero__image-shell--student-boy .familia-hero__image {
    width: 106%;
    height: 106%;
    transform: translateY(-18px);
  }

  .familia-hero__rocket {
    top: 10px;
    right: clamp(12px, 4vw, 28px);
    bottom: auto;
    left: auto;
    width: 64px;
  }

  .familia-hero__orbit {
    width: 62px;
    height: 62px;
  }

  .familia-hero__orbit--green {
    top: 5%;
    right: 1%;
  }

  .familia-hero__orbit--orange {
    top: 42%;
    right: -4px;
  }

  .familia-hero__orbit--blue {
    right: 4%;
    bottom: 8%;
  }

  .familia-feature {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 18px;
  }

  .familia-feature p {
    grid-column: auto;
    margin-top: 0;
  }

  .familia-feature .familia-icon,
  .familia-small-card .familia-icon {
    width: 62px;
    height: 62px;
  }

  .familia-feature .familia-icon img,
  .familia-small-card .familia-icon img {
    width: 78%;
    height: 78%;
  }

  .familia-panel {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .familia-card-grid--five {
    grid-template-columns: 1fr;
  }

  .familia-mini-card,
  .familia-small-card {
    padding: 22px 16px;
    text-align: left;
  }

  .familia-mini-card .familia-icon {
    margin-right: 0;
    margin-left: 0;
  }

  .familia-process__item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .familia-final-cta {
    padding: 24px 18px;
  }

  .familia-final-cta::before {
    top: 18px;
    left: 12px;
  }

  .familia-final-cta::after {
    bottom: 18px;
    left: 56px;
  }

  .familia-final-cta__rocket {
    top: 24px;
    left: 18px;
    width: 80px;
  }

  .familia-final-cta__content {
    padding-left: 96px;
  }

  .familia-final-cta__actions,
  .familia-button {
    width: 100%;
  }

  .familia-final-cta__actions {
    align-items: stretch;
  }
}

@media (max-width: 420px) {
  .familia-hero__title {
    font-size: 39px;
  }

  .familia-definition-card p,
  .familia-feature p,
  .familia-small-card p {
    font-size: 14px;
  }

  .familia-final-cta__rocket {
    opacity: 0.38;
  }

  .familia-final-cta__content {
    padding-left: 0;
  }
}

.familia-results {
  position: relative;
  z-index: 6;
  margin-top: -1px;
  padding: 0;
  background: #ffffff;
}

.familia-results__frame {
  position: relative;
  width: min(100% - 28px, var(--mapear-max));
  margin: 0 auto;
  padding: 34px 34px 20px;
  border: 2px solid #d9e7fb;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(28, 55, 107, 0.06);
}

.familia-results__frame h2 {
  position: absolute;
  top: -12px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0 18px;
  background: #ffffff;
  color: #0f67c8;
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.familia-results__frame h2::before,
.familia-results__frame h2::after {
  content: "";
  width: clamp(90px, 16vw, 220px);
  height: 2px;
  background: #d9e7fb;
}

.familia-results__items {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
}

.familia-results__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 62px;
  padding: 0 22px;
  border-left: 1px solid #d9e7fb;
}

.familia-results__item:first-child {
  border-left: 0;
}

.familia-results__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.familia-results__icon img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}



.familia-results__item p {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(12px, 0.8vw, 14px);
  font-weight: 700;
  line-height: 1.35;
}

.familia-impact {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.5vw, 34px) 0 clamp(16px, 2.2vw, 28px);
  background:
    radial-gradient(circle at 50% 52%, rgba(234, 244, 254, 0.5) 0 170px, transparent 171px),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.familia-sr-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.familia-impact__canvas {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) minmax(260px, 360px) minmax(270px, 1fr);
  grid-template-rows: repeat(2, minmax(160px, auto));
  gap: 26px clamp(16px, 2.5vw, 44px);
  align-items: center;
  width: min(100% - 80px, 1060px);
  min-height: 390px;
  margin: 0 auto;
}

.familia-impact__canvas::before,
.familia-impact__canvas::after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  z-index: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(90, 155, 231, 0.16) 22%, rgba(90, 155, 231, 0.16) 78%, transparent 100%);
  transform: translateX(-50%);
  pointer-events: none;
}

.familia-impact__canvas::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(90, 155, 231, 0.14) 28%, rgba(90, 155, 231, 0.14) 72%, transparent 100%);
  transform: translateY(-50%);
}

.familia-impact__group {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 18px;
  align-items: center;
  --impact-accent: #236de2;
}

.familia-impact__group--young,
.familia-impact__group--family {
  grid-template-columns: minmax(0, 1fr) 104px;
  text-align: left;
}

.familia-impact__group--studies,
.familia-impact__group--life {
  grid-template-columns: 104px minmax(0, 1fr);
  text-align: left;
}

.familia-impact__group--young {
  grid-column: 1;
  grid-row: 1;
}

.familia-impact__group--studies {
  grid-column: 3;
  grid-row: 1;
  --impact-accent: var(--mapear-laranja);
}

.familia-impact__group--family {
  grid-column: 1;
  grid-row: 2;
  --impact-accent: #1fa84f;
}

.familia-impact__group--life {
  grid-column: 3;
  grid-row: 2;
  --impact-accent: #236de2;
}

.familia-impact__copy h3 {
  position: relative;
  z-index: 3;
  margin: 0 0 20px;
  font-size: clamp(17px, 1.2vw, 22px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.familia-impact__copy h3 {
  color: var(--impact-accent);
}

.familia-impact__copy ul {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.familia-impact__copy li {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: var(--mapear-texto-suave);
  font-size: clamp(13px, 0.92vw, 16px);
  font-weight: 700;
  line-height: 1.35;
}

.familia-impact__copy li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--impact-accent);
  border-radius: 50%;
  background: radial-gradient(circle, var(--impact-accent) 0 2px, transparent 2.5px);
}

.familia-impact__bubble {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid rgba(35, 109, 226, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(28, 55, 107, 0.16);
}

.familia-impact__bubble::before {
  content: none;
}

.familia-impact__bubble--blue {
  border-color: rgba(35, 109, 226, 0.2);
}

.familia-impact__bubble--green {
  border-color: rgba(31, 168, 79, 0.22);
}

.familia-impact__bubble--orange {
  border-color: rgba(229, 130, 25, 0.24);
}

.familia-impact__bubble img {
  position: relative;
  z-index: 2;
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.familia-impact__connections {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.familia-impact__connection {
  fill: none;
  stroke: var(--mapear-azul-escuro);
  stroke-dasharray: 6 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  opacity: 0.72;
}

.familia-impact__group--family .familia-impact__bubble,
.familia-impact__group--life .familia-impact__bubble {
  transform: translateY(-42px);
}

.familia-impact__center {
  position: relative;
  z-index: 4;
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.familia-impact__center::before {
  content: "";
  position: absolute;
  width: min(30vw, 286px);
  height: min(30vw, 286px);
  min-width: 238px;
  min-height: 238px;
  border-radius: 50%;
  background: conic-gradient(from -90deg, #1fa84f 0deg 92deg, #236de2 92deg 180deg, var(--mapear-laranja) 180deg 268deg, #236de2 268deg 360deg);
  box-shadow: 0 14px 34px rgba(28, 55, 107, 0.1);
}

.familia-impact__center::after {
  content: "";
  position: absolute;
  width: min(28.6vw, 274px);
  height: min(28.6vw, 274px);
  min-width: 226px;
  min-height: 226px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #dbeafa, 0 14px 34px rgba(28, 55, 107, 0.08);
}

.familia-impact__dot {
  position: absolute;
  z-index: 4;
  width: 13px;
  height: 13px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #236de2;
  box-shadow: 0 0 0 1px rgba(28, 55, 107, 0.08);
  transform: translate(-50%, -50%);
}

.familia-impact__dot--top {
  top: calc(50% - min(15vw, 143px));
  left: 50%;
  background: #1fa84f;
}

.familia-impact__dot--young {
  top: calc(50% - min(7.5vw, 72px));
  left: calc(50% - min(13vw, 124px));
  background: #236de2;
}

.familia-impact__dot--studies {
  top: calc(50% - min(7.5vw, 72px));
  left: calc(50% + min(13vw, 124px));
  background: #1fa84f;
}

.familia-impact__dot--family {
  top: calc(50% + min(7.5vw, 72px));
  left: calc(50% - min(13vw, 124px));
  background: #1fa84f;
}

.familia-impact__dot--life {
  top: calc(50% + min(7.5vw, 72px));
  left: calc(50% + min(13vw, 124px));
  background: #236de2;
}

.familia-impact__dot--bottom {
  top: calc(50% + min(15vw, 143px));
  left: 50%;
  background: var(--mapear-laranja);
}

.familia-impact__logo-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(22vw, 214px);
  height: min(22vw, 214px);
  min-width: 186px;
  min-height: 186px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, rgba(238, 247, 255, 0.95), transparent 52%),
    #ffffff;
  text-align: center;
}

.familia-impact__logo-card img {
  display: block;
  width: min(12vw, 124px);
  max-width: 124px;
  object-fit: contain;
}

.familia-impact__logo-card p {
  margin: 6px 0 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 800;
  line-height: 1.2;
}

.familia-bottom-cta {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 13px 0;
  background: #075494;
  color: #ffffff;
}

.familia-bottom-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 150px;
  gap: 22px;
  align-items: center;
  width: min(100% - 80px, var(--mapear-max));
  min-height: 48px;
  margin: 0 auto;
}

.familia-bottom-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 800;
  line-height: 1;
}

.familia-bottom-cta p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 700;
}

.familia-bottom-cta__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.familia-bottom-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.familia-bottom-cta__button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.familia-bottom-cta__button--primary {
  background: #09246b;
}

.familia-bottom-cta__button--green {
  background: #20b45b;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.22);
}

.familia-bottom-cta__rocket {
  position: relative;
  z-index: 2;
  justify-self: start;
  width: 58px;
  transform: rotate(16deg);
}

.familia-bottom-cta__path {
  position: absolute;
  right: -6px;
  bottom: -8px;
  z-index: 0;
  width: 300px;
  height: 70px;
}

.familia-bottom-cta__path path,
.familia-bottom-cta__path circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-dasharray: 5 10;
  stroke-linecap: round;
  stroke-width: 2;
}

.familia-bottom-cta__path circle {
  stroke-dasharray: none;
}

@media (max-width: 1279px) {
  .familia-results__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 0;
  }

  .familia-results__item:nth-child(4) {
    border-left: 0;
  }

  .familia-impact__canvas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 24px 22px;
    width: min(100% - 40px, var(--mapear-max));
  }

  .familia-impact__canvas::before,
  .familia-impact__canvas::after,
  .familia-impact__group::after,
  .familia-impact__bubble::before,
  .familia-impact__connections {
    display: none;
  }

  .familia-impact__center,
  .familia-impact__group--young,
  .familia-impact__group--studies,
  .familia-impact__group--family,
  .familia-impact__group--life {
    grid-row: auto;
  }

  .familia-impact__center {
    grid-column: 1 / -1;
    order: -1;
    min-height: 270px;
  }

  .familia-impact__group--young,
  .familia-impact__group--family {
    grid-column: 1;
  }

  .familia-impact__group--studies,
  .familia-impact__group--life {
    grid-column: 2;
  }

  .familia-impact__group--family .familia-impact__bubble,
  .familia-impact__group--life .familia-impact__bubble {
    transform: none;
  }

  .familia-bottom-cta__content {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .familia-bottom-cta__actions {
    justify-content: center;
  }

  .familia-bottom-cta__rocket {
    position: absolute;
    right: 28px;
    bottom: 6px;
    opacity: 0.55;
  }
}

@media (max-width: 767px) {
  .familia-results__frame {
    width: min(100% - 24px, var(--mapear-max));
    padding: 36px 18px 18px;
  }

  .familia-results__frame h2 {
    white-space: normal;
  }

  .familia-results__frame h2::before,
  .familia-results__frame h2::after {
    display: none;
  }

  .familia-results__items {
    grid-template-columns: 1fr;
  }

  .familia-results__item,
  .familia-results__item:nth-child(4) {
    border-left: 0;
    border-top: 1px solid #d9e7fb;
    padding: 12px 0;
  }

  .familia-results__item:first-child {
    border-top: 0;
  }

  .familia-impact__canvas {
    grid-template-columns: 1fr;
    width: min(100% - 28px, var(--mapear-max));
  }

  .familia-impact__center,
  .familia-impact__group--young,
  .familia-impact__group--family,
  .familia-impact__group--studies,
  .familia-impact__group--life {
    grid-column: 1;
    grid-row: auto;
  }

  .familia-impact__group {
    gap: 14px;
    padding: 18px;
    border: 1px solid #dbeafa;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(28, 55, 107, 0.07);
  }

  .familia-impact__copy h3 {
    margin-bottom: 12px;
  }

  .familia-impact__group--young,
  .familia-impact__group--family,
  .familia-impact__group--studies,
  .familia-impact__group--life {
    grid-template-columns: 1fr;
  }

  .familia-impact__group--young .familia-impact__copy,
  .familia-impact__group--family .familia-impact__copy,
  .familia-impact__group--studies .familia-impact__copy,
  .familia-impact__group--life .familia-impact__copy {
    grid-column: 1;
    grid-row: 2;
  }

  .familia-impact__group--young .familia-impact__bubble,
  .familia-impact__group--family .familia-impact__bubble,
  .familia-impact__group--studies .familia-impact__bubble,
  .familia-impact__group--life .familia-impact__bubble {
    grid-column: 1;
    grid-row: 1;
    margin: 0 auto;
  }

  .familia-impact__copy li {
    overflow-wrap: anywhere;
  }

  .familia-impact__bubble {
    width: 66px;
    height: 66px;
  }

  .familia-impact__bubble img {
    width: 42px;
    height: 42px;
  }

  .familia-bottom-cta__content {
    width: min(100% - 28px, var(--mapear-max));
  }

  .familia-bottom-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .familia-bottom-cta__button {
    width: 100%;
  }
}


.mapear-empresa {
  background: #f7fbff;
}

.mapear-empresa .mapear-main {
  background:
    radial-gradient(circle at 7% 16%, rgba(232, 246, 255, 0.82) 0 190px, transparent 191px),
    radial-gradient(circle at 92% 18%, rgba(221, 236, 251, 0.76) 0 220px, transparent 221px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.empresa-page {
  color: var(--mapear-azul-escuro);
}

.empresa-page * {
  min-width: 0;
}

.empresa-page p,
.empresa-page h1,
.empresa-page h2,
.empresa-page h3,
.empresa-page a {
  overflow-wrap: break-word;
}

.empresa-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  padding: 8px 0 54px;
  background:
    radial-gradient(circle at 5% 61%, rgba(238, 247, 255, 0.96) 0 142px, transparent 143px),
    radial-gradient(circle at 73% 34%, rgba(232, 246, 255, 0.96) 0 250px, transparent 251px),
    radial-gradient(circle at 100% 65%, rgba(221, 236, 251, 0.9) 0 190px, transparent 191px),
    linear-gradient(180deg, #ffffff 0%, #ffffff 73%, #eaf4fe 100%);
}

.empresa-hero::before,
.empresa-hero::after,
.empresa-decor {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.empresa-hero::before {
  top: 48px;
  right: 9%;
  width: clamp(280px, 32vw, 560px);
  height: clamp(280px, 32vw, 560px);
  border-radius: 56% 44% 60% 40%;
  background: rgba(232, 246, 255, 0.72);
}

.empresa-hero::after {
  right: -110px;
  bottom: -120px;
  width: clamp(300px, 34vw, 620px);
  height: clamp(250px, 30vw, 520px);
  border-radius: 54% 46% 0 0;
  background: rgba(221, 236, 251, 0.68);
}

.empresa-decor--one {
  left: -80px;
  bottom: 10px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(234, 244, 254, 0.82);
}

.empresa-decor--two {
  top: 140px;
  left: 50%;
  width: 14px;
  height: 14px;
  color: var(--mapear-laranja);
  background: currentColor;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.empresa-hero__container,
.empresa-section {
  width: min(100% - 80px, var(--mapear-max));
  margin: 0 auto;
}

.empresa-hero__container {
  position: relative;
  z-index: 4;
  isolation: isolate;
  display: grid;
  grid-template-columns: 43% 57%;
  column-gap: 24px;
  align-items: start;
}

.empresa-hero__content {
  position: relative;
  z-index: 7;
  isolation: isolate;
  max-width: 650px;
  margin-top: 10px;
  padding-left: 64px;
  min-width: 0;
  padding-top: 0;
}

.empresa-hero__path {
  position: absolute;
  top: 118px;
  left: -72px;
  z-index: 2;
  width: clamp(1080px, 82vw, 1400px);
  height: 380px;
  overflow: visible;
  pointer-events: none;
}

.empresa-hero__rocket {
  position: absolute;
  top: clamp(10px, 1.8vw, 10px);
  right: clamp(200px, 8.4vw, -50px);
  z-index: 9;
  display: block;
  width: clamp(74px, 4.5vw, 92px);
  transform: rotate(14deg);
  pointer-events: none;
}

@media (min-width: 1400px) and (max-width: 1520px) {
  .empresa-hero__rocket {
    top: -10px;
    right: clamp(130px, 9.4vw, 158px);
  }
}

.empresa-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  color: var(--mapear-azul);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.empresa-hero__title {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(52px, 4.9vw, 82px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.empresa-definition-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  width: 100%;
  max-width: 720px;
  margin-top: clamp(28px, 3vw, 44px);
  padding: clamp(22px, 2.4vw, 34px);
  border: 2px solid #cfe4fa;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(28, 55, 107, 0.08);
}

.empresa-definition-card p {
  margin: 0;
  color: var(--mapear-texto-suave);
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 600;
  line-height: 1.65;
}

.empresa-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(28, 55, 107, 0.1);
}

.empresa-icon img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.empresa-definition-card__icon {
  width: 76px;
  height: 76px;
  background: #f3fbff;
}

.empresa-hero__visual {
  position: relative;
  width: 100%;
  height: 405px;
  min-height: 0;
  margin-top: 0;
}

.empresa-hero__road {
  position: absolute;
  top: 8px;
  left: 48%;
  z-index: 1;
  display: block;
  width: 138%;
  height: 112%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 1;
  pointer-events: none;
}

.empresa-hero__image-shell {
  position: absolute;
  top: -8px;
  left: clamp(86px, 7.4vw, 122px);
  z-index: 4;
  width: clamp(390px, 31.7vw, 510px);
  height: clamp(320px, 25.8vw, 410px);
  overflow: hidden;
  border: 16px solid rgba(236, 247, 255, 0.94);
  border-radius: 44% 56% 48% 52% / 38% 42% 58% 62%;
  background: #eaf4fe;
  box-shadow: 0 28px 68px rgba(28, 55, 107, 0.13);
}

.empresa-hero__image-shell--student-girl,
.empresa-hero__image-shell--student-boy {
  display: flex;
  align-items: center;
  justify-content: center;
}

.empresa-hero__image-shell::before {
  content: "";
  position: absolute;
  inset: -26px;
  z-index: 1;
  border: 2px solid rgba(204, 230, 251, 0.82);
  border-radius: inherit;
  pointer-events: none;
}

.empresa-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  filter: brightness(1.04) saturate(0.98);
}

.empresa-hero__image-shell--student-girl .empresa-hero__image {
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.empresa-hero__image-shell--student-boy .empresa-hero__image {
  flex: 0 0 auto;
  width: 130%;
  height: 130%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateY(-42px);
}

.empresa-hero__orbit {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 5.2vw, 92px);
  height: clamp(72px, 5.2vw, 92px);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(28, 55, 107, 0.11);
}

.empresa-hero__orbit img {
  width: 52%;
  height: 52%;
  object-fit: contain;
}

.empresa-hero__orbit--green {
  top: 9%;
  right: 5%;
}

.empresa-hero__orbit--orange {
  top: 44%;
  right: 0;
}

.empresa-hero__orbit--blue {
  right: 9%;
  bottom: 10%;
}

.empresa-section {
  padding: clamp(34px, 4.2vw, 68px) 0;
}

.empresa-section--lift {
  margin-top: -4px;
  padding-top: 0;
}

.empresa-wide-card,
.empresa-panel,
.empresa-final-cta {
  border: 1px solid #dbeafa;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 52px rgba(28, 55, 107, 0.08);
}

.empresa-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 146px;
  overflow: hidden;
}

.empresa-feature {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  min-width: 0;
  padding: 24px 22px;
}

.empresa-feature + .empresa-feature {
  border-left: 1px solid #dbeafa;
}

.empresa-benefits .empresa-icon {
  width: 64px;
  height: 64px;
  box-shadow: 0 18px 36px rgba(28, 55, 107, 0.08);
}

.empresa-benefits .empresa-icon img {
  width: 78%;
  height: 78%;
}

.empresa-benefits .empresa-feature:nth-child(1) .empresa-icon {
  background: rgba(31, 168, 79, 0.14);
}

.empresa-benefits .empresa-feature:nth-child(2) .empresa-icon {
  background: rgba(229, 130, 25, 0.15);
}

.empresa-benefits .empresa-feature:nth-child(3) .empresa-icon {
  background: rgba(90, 155, 231, 0.15);
}

.empresa-card-grid--three .empresa-small-card .empresa-icon {
  background: rgba(90, 155, 231, 0.15);
}

.empresa-card-grid--three .empresa-small-card .empresa-icon img {
  width: 78%;
  height: 78%;
}

.empresa-feature h2,
.empresa-small-card h3,
.empresa-mini-card h3,
.empresa-process__item h3 {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-weight: 800;
  letter-spacing: 0;
}

.empresa-feature h2 {
  font-size: clamp(18px, 1.14vw, 20px);
  line-height: 1.25;
}

.empresa-feature p,
.empresa-small-card p,
.empresa-mini-card p,
.empresa-process__item p {
  margin: 10px 0 0;
  color: var(--mapear-texto-suave);
  font-weight: 600;
  line-height: 1.58;
}

.empresa-feature p {
  grid-column: 2;
  margin-top: 8px;
  font-size: clamp(15px, 0.92vw, 16px);
  line-height: 1.45;
}

.empresa-panel {
  padding: clamp(34px, 4.4vw, 64px);
}

.empresa-panel--compact {
  padding-inline: clamp(26px, 3vw, 44px);
}

.empresa-section__header {
  max-width: 760px;
  margin: 0 auto clamp(28px, 3vw, 42px);
  text-align: center;
}

.empresa-section__header h2 {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 800;
  line-height: 1.08;
}

.empresa-card-grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.empresa-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.empresa-card-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.empresa-small-card,
.empresa-mini-card {
  min-width: 0;
  border: 1px solid #dbeafa;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(28, 55, 107, 0.06);
}

.empresa-small-card {
  padding: clamp(24px, 2.5vw, 34px);
}

.empresa-small-card h3 {
  margin-top: 18px;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.25;
}

.empresa-small-card p {
  font-size: 15px;
}

.empresa-mini-card {
  padding: 24px 18px;
  text-align: center;
}

.empresa-card-grid--five .empresa-mini-card:nth-child(1),
.empresa-card-grid--five .empresa-mini-card:nth-child(5) {
  border-color: #cfe4fa;
  background: #eef7ff;
}

.empresa-card-grid--five .empresa-mini-card:nth-child(2),
.empresa-card-grid--five .empresa-mini-card:nth-child(4) {
  border-color: #cfebda;
  background: #eefaf3;
}

.empresa-card-grid--five .empresa-mini-card:nth-child(3) {
  border-color: #f7dcc0;
  background: #fff4e8;
}

.empresa-mini-card .empresa-icon {
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
}

.empresa-mini-card .empresa-icon img {
  width: 54px;
  height: 54px;
}

.empresa-mini-card h3 {
  font-size: 17px;
  line-height: 1.25;
}

.empresa-mini-card p {
  font-size: 13px;
  line-height: 1.52;
}

.empresa-process {
  overflow: hidden;
}

.empresa-process__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 22px);
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
}

.empresa-process__list::before {
  content: "";
  position: absolute;
  top: 72px;
  right: 9%;
  left: 9%;
  height: 3px;
  border-top: 3px dashed rgba(90, 155, 231, 0.62);
}

.empresa-process__item {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: center;
}

.empresa-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: var(--mapear-azul-escuro);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.empresa-process__icon {
  position: relative;
  margin: 0 auto 16px;
  border: 4px solid #ffffff;
}

.empresa-process__icon img {
  width: 64px;
  height: 64px;
}

.empresa-process__item h3 {
  font-size: 18px;
}

.empresa-process__item p {
  font-size: 13px;
  line-height: 1.5;
}

.empresa-section--final {
  padding-bottom: clamp(56px, 6vw, 92px);
}

.empresa-final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 30px) clamp(28px, 4vw, 64px);
  background: linear-gradient(135deg, #eaf6ff 0%, #f7fbff 100%);
}

.empresa-final-cta::before,
.empresa-final-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(84px, 7vw, 126px);
  height: clamp(40px, 3.6vw, 62px);
  background:
    radial-gradient(circle at 22% 62%, rgba(255, 255, 255, 0.82) 0 24%, transparent 25%),
    radial-gradient(circle at 46% 42%, rgba(255, 255, 255, 0.72) 0 32%, transparent 33%),
    radial-gradient(circle at 70% 63%, rgba(255, 255, 255, 0.78) 0 28%, transparent 29%);
  opacity: 0.74;
  pointer-events: none;
}

.empresa-final-cta::before {
  top: clamp(20px, 2.5vw, 34px);
  left: clamp(28px, 4.5vw, 74px);
}

.empresa-final-cta::after {
  bottom: clamp(16px, 2vw, 28px);
  left: clamp(76px, 8vw, 138px);
  width: clamp(66px, 5.2vw, 96px);
  height: clamp(32px, 2.8vw, 48px);
  opacity: 0.56;
}

.empresa-final-cta__rocket {
  position: absolute;
  top: clamp(28px, 2.5vw, 40px);
  left: clamp(48px, 4.4vw, 76px);
  z-index: 2;
  width: clamp(92px, 6.4vw, 126px);
  opacity: 0.9;
  transform: rotate(16deg);
}

.empresa-final-cta__content {
  position: relative;
  z-index: 1;
  padding-left: clamp(128px, 10vw, 168px);
}

.empresa-final-cta h2 {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(30px, 2.8vw, 48px);
  font-weight: 800;
  line-height: 1.1;
}

.empresa-final-cta p {
  margin: 10px 0 0;
  color: var(--mapear-texto-suave);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 700;
}

.empresa-final-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.empresa-final-cta .empresa-button {
  min-height: 50px;
}

.empresa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.empresa-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.empresa-button--primary {
  background: var(--mapear-laranja);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(229, 130, 25, 0.22);
}

.empresa-button--secondary {
  border: 2px solid #77a9e8;
  background: #ffffff;
  color: var(--mapear-azul-escuro);
}

.empresa-social-links a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 1399px) {
  .empresa-hero__container,
  .empresa-section {
    width: min(100% - 56px, var(--mapear-max));
  }

  .empresa-hero__container {
    grid-template-columns: 43% 57%;
    column-gap: 24px;
  }

  .empresa-hero__content {
    margin-top: 8px;
    padding-left: 64px;
    padding-top: 0;
  }

  .empresa-hero__path {
    top: 112px;
    left: -64px;
    width: clamp(1000px, 86vw, 1180px);
    height: 360px;
  }

  .empresa-hero__rocket {
    top: -8px;
    right: clamp(128px, 10.5vw, 160px);
    left: auto;
    width: 74px;
  }

  .empresa-hero__visual {
    height: 370px;
  }

  .empresa-hero__road {
    top: 0;
    left: 48%;
    width: 140%;
    height: 116%;
    object-fit: contain;
    object-position: right bottom;
  }

  .empresa-hero__image-shell {
    top: -14px;
    left: 70px;
    width: clamp(360px, 33vw, 455px);
    height: clamp(315px, 28vw, 372px);
  }

  .empresa-card-grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1279px) {
  .empresa-hero {
    min-height: 0;
    padding-top: 34px;
  }

  .empresa-hero__container {
    grid-template-columns: 42% 58%;
    column-gap: 18px;
  }

  .empresa-hero__content {
    margin-top: 32px;
    padding-left: 0;
  }

  .empresa-hero__path,
  .empresa-hero__road {
    display: none;
  }

  .empresa-hero__visual {
    height: auto;
  }

  .empresa-hero__image-shell {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 500px);
    height: clamp(315px, 31vw, 390px);
    margin-left: auto;
    transform: none;
  }

  .empresa-hero__rocket {
    top: clamp(-28px, -2vw, -18px);
    right: clamp(72px, 7.2vw, 98px);
    bottom: auto;
    left: auto;
    width: 76px;
  }
}

@media (max-width: 1100px) {
  .mapear-empresa .mapear-header__container {
    width: min(100% - 40px, var(--mapear-max));
  }

  .mapear-empresa .mapear-header__actions,
  .mapear-empresa .mapear-header__cta {
    display: none;
  }

  .mapear-empresa .mapear-header__toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .mapear-empresa .mapear-header__nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 18px;
    background: var(--cor-branco);
    box-shadow: none;
  }

  .empresa-hero__container,
  .empresa-section {
    width: min(100% - 40px, var(--mapear-max));
  }

  .empresa-hero {
    padding: 40px 0 72px;
  }

  .empresa-hero__container {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .empresa-hero__content {
    max-width: 700px;
    margin-top: 0;
    padding-left: 0;
  }

  .empresa-hero__path {
    display: none;
  }

  .empresa-hero__rocket {
    top: 4px;
    right: calc(50% - 280px + 22px);
    bottom: auto;
    left: auto;
    width: 76px;
  }

  .empresa-hero__visual {
    height: auto;
    min-height: 0;
  }

  .empresa-hero__road {
    display: none;
  }

  .empresa-hero__image-shell {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 560px);
    height: clamp(330px, 48vw, 430px);
    margin-inline: auto;
    transform: none;
  }

  .empresa-hero__image-shell--student-girl,
  .empresa-hero__image-shell--student-boy {
    width: min(100%, 560px);
  }

  .empresa-benefits,
  .empresa-card-grid--three {
    grid-template-columns: 1fr;
  }

  .empresa-feature + .empresa-feature {
    border-top: 1px solid #dbeafa;
    border-left: 0;
  }

  .empresa-card-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .empresa-process__list {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 0;
  }

  .empresa-process__list::before {
    top: 0;
    bottom: 0;
    left: 34px;
    width: 3px;
    height: auto;
    border-top: 0;
    border-left: 3px dashed rgba(90, 155, 231, 0.62);
  }

  .empresa-process__item {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 6px 18px;
    text-align: left;
  }

  .empresa-process__number {
    grid-column: 1;
    grid-row: 1;
    margin: 0 auto;
  }

  .empresa-process__icon {
    grid-column: 1;
    grid-row: 2 / span 2;
    margin: 0;
  }

  .empresa-process__item h3,
  .empresa-process__item p {
    grid-column: 2;
  }

  .empresa-process__item p {
    margin-top: 2px;
  }

  .empresa-final-cta {
    grid-template-columns: 1fr;
  }

  .empresa-final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .mapear-empresa .mapear-header__container {
    width: min(100% - 28px, var(--mapear-max));
  }

  .empresa-hero__container,
  .empresa-section {
    width: min(100% - 28px, var(--mapear-max));
  }

  .empresa-hero {
    padding: 34px 0 56px;
  }

  .empresa-hero__title {
    font-size: clamp(42px, 13vw, 58px);
  }

  .empresa-definition-card {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
    padding: 22px 20px;
  }

  .empresa-definition-card p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.58;
  }

  .empresa-hero__visual {
    height: auto;
    min-height: 0;
    padding-bottom: 0;
  }

  .empresa-hero__road {
    display: none;
  }

  .empresa-hero__image-shell {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 460px);
    height: clamp(270px, 74vw, 360px);
    margin: 0 auto;
    border-width: 10px;
    transform: none;
  }

  .empresa-hero__image-shell--student-girl,
  .empresa-hero__image-shell--student-boy {
    width: min(100%, 460px);
  }

  .empresa-hero__image-shell--student-girl .empresa-hero__image {
    width: 82%;
    height: 82%;
  }

  .empresa-hero__image-shell--student-boy .empresa-hero__image {
    width: 106%;
    height: 106%;
    transform: translateY(-18px);
  }

  .empresa-hero__rocket {
    top: 10px;
    right: clamp(12px, 4vw, 28px);
    bottom: auto;
    left: auto;
    width: 64px;
  }

  .empresa-hero__orbit {
    width: 62px;
    height: 62px;
  }

  .empresa-hero__orbit--green {
    top: 5%;
    right: 1%;
  }

  .empresa-hero__orbit--orange {
    top: 42%;
    right: -4px;
  }

  .empresa-hero__orbit--blue {
    right: 4%;
    bottom: 8%;
  }

  .empresa-feature {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 18px;
  }

  .empresa-feature p {
    grid-column: auto;
    margin-top: 0;
  }

  .empresa-feature .empresa-icon,
  .empresa-small-card .empresa-icon {
    width: 62px;
    height: 62px;
  }

  .empresa-feature .empresa-icon img,
  .empresa-small-card .empresa-icon img {
    width: 78%;
    height: 78%;
  }

  .empresa-panel {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .empresa-card-grid--five {
    grid-template-columns: 1fr;
  }

  .empresa-mini-card,
  .empresa-small-card {
    padding: 22px 16px;
    text-align: left;
  }

  .empresa-mini-card .empresa-icon {
    margin-right: 0;
    margin-left: 0;
  }

  .empresa-process__item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .empresa-final-cta {
    padding: 24px 18px;
  }

  .empresa-final-cta::before {
    top: 18px;
    left: 12px;
  }

  .empresa-final-cta::after {
    bottom: 18px;
    left: 56px;
  }

  .empresa-final-cta__rocket {
    top: 24px;
    left: 18px;
    width: 80px;
  }

  .empresa-final-cta__content {
    padding-left: 96px;
  }

  .empresa-final-cta__actions,
  .empresa-button {
    width: 100%;
  }

  .empresa-final-cta__actions {
    align-items: stretch;
  }
}

@media (max-width: 420px) {
  .empresa-hero__title {
    font-size: 39px;
  }

  .empresa-definition-card p,
  .empresa-feature p,
  .empresa-small-card p {
    font-size: 14px;
  }

  .empresa-final-cta__rocket {
    opacity: 0.38;
  }

  .empresa-final-cta__content {
    padding-left: 0;
  }
}


.mapear-final-cta--programa .mapear-final-cta__container {
  grid-template-columns: 172px minmax(420px, 1fr) auto;
  column-gap: 24px;
  padding-right: 40px;
  padding-left: 0;
}

.mapear-final-cta__programa-visual {
  position: relative;
  width: 158px;
  height: 82px;
  justify-self: start;
  pointer-events: none;
}

.mapear-final-cta__cloud {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  filter: drop-shadow(0 10px 20px rgba(5, 45, 88, 0.1));
}

.mapear-final-cta__cloud::before,
.mapear-final-cta__cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.mapear-final-cta__cloud--large {
  top: 8px;
  left: 6px;
  width: 100px;
  height: 42px;
}

.mapear-final-cta__cloud--large::before {
  top: -18px;
  left: 22px;
  width: 42px;
  height: 42px;
}

.mapear-final-cta__cloud--large::after {
  top: -7px;
  right: 10px;
  width: 34px;
  height: 34px;
}

.mapear-final-cta__cloud--small {
  right: 10px;
  bottom: 12px;
  width: 74px;
  height: 32px;
  opacity: 0.68;
}

.mapear-final-cta__cloud--small::before {
  top: -14px;
  left: 13px;
  width: 32px;
  height: 32px;
}

.mapear-final-cta__cloud--small::after {
  top: -5px;
  right: 8px;
  width: 24px;
  height: 24px;
}

.mapear-final-cta__programa-rocket {
  position: absolute;
  top: 7px;
  left: 38px;
  z-index: 2;
  display: block;
  width: 96px;
  transform: rotate(18deg);
}

.mapear-final-cta--programa .mapear-final-cta__title {
  font-size: 28px;
}

.mapear-final-cta--programa .mapear-final-cta__subtitle {
  font-size: 20px;
}

@media (max-width: 1279px) {
  .mapear-final-cta--programa .mapear-final-cta__container {
    grid-template-columns: 136px minmax(360px, 1fr) auto;
    column-gap: 18px;
    padding-right: 26px;
  }

  .mapear-final-cta__programa-visual {
    width: 128px;
    height: 76px;
  }

  .mapear-final-cta__cloud--large {
    width: 84px;
    height: 36px;
  }

  .mapear-final-cta__cloud--small {
    right: 4px;
    bottom: 12px;
    width: 66px;
    height: 29px;
  }

  .mapear-final-cta__programa-rocket {
    top: 9px;
    left: 28px;
    width: 84px;
  }
}

@media (max-width: 1100px) {
  .mapear-final-cta--programa .mapear-final-cta__container {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px 20px;
    padding: 22px 28px;
    text-align: left;
  }

  .mapear-final-cta--programa .mapear-final-cta__actions {
    grid-column: 2;
    justify-content: flex-start;
  }

  .mapear-final-cta--programa .mapear-final-cta__title {
    font-size: 25px;
  }

  .mapear-final-cta--programa .mapear-final-cta__subtitle {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .mapear-final-cta--programa .mapear-final-cta__container {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 26px 0 30px;
    text-align: center;
  }

  .mapear-final-cta--programa .mapear-final-cta__actions {
    grid-column: auto;
    justify-content: center;
    width: 100%;
  }

  .mapear-final-cta__programa-visual {
    width: 126px;
    height: 72px;
  }

  .mapear-final-cta__programa-rocket {
    top: 7px;
    left: 28px;
    width: 84px;
  }
}

/* Shared modern hero for Programa and Familia pages */
.page-hero-modern {
  position: relative;
  isolation: isolate;
  min-height: clamp(640px, calc(100vh - var(--mapear-header-height)), 780px);
  overflow: hidden;
  padding: 0 0 clamp(52px, 6vw, 88px);
  border-bottom: 1px solid #e5edf7;
  background:
    radial-gradient(circle at 5% 74%, rgba(238, 247, 255, 0.94) 0 176px, transparent 177px),
    radial-gradient(circle at 78% 18%, rgba(234, 244, 254, 0.5) 0 230px, transparent 231px),
    linear-gradient(120deg, #ffffff 0%, #ffffff 46%, #f4f9ff 100%);
}

.page-hero-modern::before {
  content: "";
  position: absolute;
  top: 31%;
  left: clamp(500px, 45vw, 780px);
  z-index: 2;
  width: 14px;
  height: 14px;
  color: var(--mapear-laranja);
  background: currentColor;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  pointer-events: none;
}

.page-hero-modern__container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(560px, 0.98fr) minmax(320px, 1.02fr);
  align-items: start;
  width: min(100% - 80px, var(--mapear-max));
  min-height: inherit;
  margin: 0 auto;
  padding-top: clamp(14px, 2.2vw, 28px);
}

.page-hero-modern__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding-left: clamp(0px, 3vw, 52px);
}

.page-hero-modern__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  color: var(--mapear-verde);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.page-hero-modern__title {
  max-width: 760px;
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(44px, 4.25vw, 68px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.page-hero-modern__title-highlight {
  position: relative;
  display: inline-block;
  color: #0f7ee6;
}

.page-hero-modern__title-highlight::after {
  content: "";
  position: absolute;
  right: 0.02em;
  bottom: -0.16em;
  left: 0.02em;
  height: 0.24em;
  border-bottom: 0.07em solid var(--mapear-verde);
  border-radius: 0 0 52% 52%;
  transform: rotate(-1.2deg);
}

.page-hero-modern__subtitle {
  max-width: 670px;
  margin: clamp(24px, 2.5vw, 34px) 0 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(21px, 1.75vw, 29px);
  font-weight: 800;
  line-height: 1.3;
}

.page-hero-modern__subtitle strong {
  color: var(--mapear-verde);
  font-weight: inherit;
}

.page-hero-modern__description {
  max-width: 650px;
  margin: 22px 0 0;
  color: #34476f;
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 500;
  line-height: 1.62;
}

.page-hero-modern__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}

.page-hero-modern__media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 61%;
  overflow: hidden;
  pointer-events: none;
}

.page-hero-modern__media::before,
.page-hero-modern__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.page-hero-modern__media::before {
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 13%, rgba(255, 255, 255, 0.78) 28%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, transparent 30%, rgba(244, 249, 255, 0.06) 100%);
}

.page-hero-modern__media::after {
  top: auto;
  height: 24%;
  background: linear-gradient(0deg, rgba(244, 249, 255, 0.34) 0%, rgba(244, 249, 255, 0) 100%);
}

.page-hero-modern__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero-modern--programa .page-hero-modern__image {
  object-position: 56% center;
  transform: scale(1.12);
}

.page-hero-modern--familia .page-hero-modern__image {
  object-position: 58% center;
}

@media (max-width: 1279px) {
  .page-hero-modern {
    min-height: 620px;
    padding: 0 0 64px;
  }

  .page-hero-modern__container {
    grid-template-columns: minmax(500px, 0.98fr) minmax(260px, 1.02fr);
    width: min(100% - 56px, var(--mapear-max));
  }

  .page-hero-modern__content {
    padding-left: 0;
  }

  .page-hero-modern__media {
    width: 59%;
  }

  .page-hero-modern__media::before {
    background:
      linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 20%, rgba(255, 255, 255, 0.72) 38%, rgba(255, 255, 255, 0.08) 66%, rgba(255, 255, 255, 0) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, transparent 34%);
  }
}

@media (max-width: 1100px) {
  .page-hero-modern {
    padding-top: 18px;
  }
}

@media (max-width: 900px) {
  .page-hero-modern {
    min-height: 0;
    padding: 35px 0 48px;
  }

  .page-hero-modern::before {
    display: none;
  }

  .page-hero-modern__container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(100% - 40px, var(--mapear-max));
    min-height: 0;
    padding-top: 0;
  }

  .page-hero-modern__content {
    max-width: 760px;
  }

  .page-hero-modern__title {
    max-width: 720px;
    font-size: clamp(40px, 7vw, 58px);
  }

  .page-hero-modern__media {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: clamp(360px, 66vw, 540px);
    margin-top: 38px;
    border-radius: 28px;
    box-shadow: 0 24px 56px rgba(28, 55, 107, 0.13);
  }

  .page-hero-modern__media::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 24%);
  }

  .page-hero-modern__media::after {
    height: 20%;
    background: linear-gradient(0deg, rgba(238, 247, 255, 0.2) 0%, transparent 100%);
  }

  .page-hero-modern--programa .page-hero-modern__image {
    object-position: 58% center;
  }

  .page-hero-modern--familia .page-hero-modern__image {
    object-position: center center;
  }
}

@media (max-width: 767px) {
  .page-hero-modern {
    padding: 36px 0 38px;
    background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  }

  .page-hero-modern__container {
    width: min(100% - 28px, var(--mapear-max));
  }

  .page-hero-modern__eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .page-hero-modern__title {
    font-size: clamp(32px, 9.2vw, 42px);
    line-height: 1.04;
  }

  .page-hero-modern__subtitle {
    margin-top: 22px;
    font-size: clamp(19px, 5.5vw, 23px);
  }

  .page-hero-modern__description {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.58;
  }

  .page-hero-modern__actions,
  .page-hero-modern__actions .mapear-entry-hero__button {
    width: 100%;
  }

  .page-hero-modern__actions {
    gap: 12px;
    margin-top: 26px;
  }

  .page-hero-modern__media {
    height: clamp(280px, 78vw, 420px);
    margin-top: 30px;
    border-radius: 24px;
  }

  .page-hero-modern--programa .page-hero-modern__image {
    object-position: 62% center;
    transform: scale(1.2);
  }
}

/* Jornada Mapear - family pages */
.familias-jornada-mapear {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(48px, 4.5vw, 68px) 0 clamp(46px, 4.5vw, 64px);
  background:
    radial-gradient(circle at 5% 18%, rgba(234, 244, 254, 0.7) 0 112px, transparent 113px),
    radial-gradient(circle at 96% 82%, rgba(232, 250, 239, 0.58) 0 132px, transparent 133px),
    linear-gradient(180deg, #ffffff 0%, #f6faff 48%, #ffffff 100%);
}

.familias-jornada-mapear::before,
.familias-jornada-mapear::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 13px;
  height: 13px;
  background: currentColor;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  pointer-events: none;
}

.familias-jornada-mapear::before {
  top: 25%;
  left: 7%;
  color: var(--mapear-laranja);
}

.familias-jornada-mapear::after {
  right: 6%;
  bottom: 20%;
  color: var(--mapear-verde);
  transform: scale(0.76);
}

.familias-jornada-mapear__container {
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
}

.familias-jornada-mapear__header {
  max-width: 820px;
  margin: 0 auto clamp(32px, 3vw, 44px);
  text-align: center;
}

.familias-jornada-mapear__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--mapear-verde);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.familias-jornada-mapear__header h2 {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.familias-jornada-mapear__header h2 strong {
  position: relative;
  display: inline-block;
  color: var(--mapear-verde);
  font-weight: inherit;
}

.familias-jornada-mapear__header h2 strong::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.12em;
  left: 0;
  height: 0.18em;
  border-bottom: 0.065em solid var(--mapear-laranja);
  border-radius: 0 0 50% 50%;
  transform: rotate(-1.5deg);
}

.familias-jornada-mapear__subtitle {
  margin: 16px 0 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 700;
  line-height: 1.4;
}

.familias-jornada-mapear__support {
  max-width: 720px;
  margin: 10px auto 0;
  color: #51617f;
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 500;
  line-height: 1.65;
}

.familias-jornada-mapear__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
  align-items: stretch;
}

.familias-jornada-mapear__route {
  position: absolute;
  top: 0;
  right: 2%;
  left: 2%;
  z-index: 0;
  width: 96%;
  height: 42px;
  overflow: visible;
  pointer-events: none;
}

.familias-jornada-mapear__route path {
  fill: none;
  stroke: url("#familias-jornada-gradient");
  stroke-dasharray: 3 8;
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.familias-jornada-mapear__step {
  --journey-color: #5a9be7;
  --journey-soft: #edf6ff;
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.familias-jornada-mapear__step--green {
  --journey-color: #1fa84f;
  --journey-soft: #ecf9f0;
}

.familias-jornada-mapear__step--orange {
  --journey-color: #f08a18;
  --journey-soft: #fff4e7;
}

.familias-jornada-mapear__number {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--journey-color);
  color: #ffffff;
  box-shadow: 0 7px 17px rgba(28, 55, 107, 0.12);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.familias-jornada-mapear__icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 5.6vw, 84px);
  height: clamp(72px, 5.6vw, 84px);
  margin: 10px auto -12px;
  border: 1px solid color-mix(in srgb, var(--journey-color) 18%, white);
  border-radius: 50%;
  background: var(--journey-soft);
  box-shadow: 0 10px 24px rgba(28, 55, 107, 0.07);
}

.familias-jornada-mapear__icon img {
  display: block;
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.familias-jornada-mapear__step--blue .familias-jornada-mapear__icon img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(96%) saturate(2160%) hue-rotate(203deg) brightness(88%) contrast(102%);
}

.familias-jornada-mapear__step--green .familias-jornada-mapear__icon img {
  filter: brightness(0) saturate(100%) invert(30%) sepia(88%) saturate(1280%) hue-rotate(118deg) brightness(82%) contrast(101%);
}

.familias-jornada-mapear__step--orange .familias-jornada-mapear__icon img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(97%) saturate(1760%) hue-rotate(4deg) brightness(93%) contrast(104%);
}

.familias-jornada-mapear__card {
  flex: 1 1 auto;
  width: 100%;
  min-height: 184px;
  padding: 32px 14px 18px;
  border: 1px solid #e6edf6;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(28, 55, 107, 0.045);
}

.familias-jornada-mapear__card h3 {
  margin: 0;
  color: var(--journey-color);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
  line-height: 1.32;
}

.familias-jornada-mapear__card h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  margin: 10px auto 0;
  background: var(--journey-color);
}

.familias-jornada-mapear__card p {
  margin: 12px 0 0;
  color: #51617f;
  font-size: clamp(12px, 0.78vw, 13.5px);
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 1023px) {
  .familias-jornada-mapear__container {
    width: min(100% - 48px, 900px);
  }

  .familias-jornada-mapear__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .familias-jornada-mapear__route {
    display: none;
  }

  .familias-jornada-mapear__card {
    min-height: 154px;
  }
}

@media (max-width: 767px) {
  .familias-jornada-mapear {
    padding: 46px 0 52px;
  }

  .familias-jornada-mapear::before,
  .familias-jornada-mapear::after {
    display: none;
  }

  .familias-jornada-mapear__container {
    width: min(100% - 28px, var(--mapear-max));
  }

  .familias-jornada-mapear__header {
    margin-bottom: 32px;
  }

  .familias-jornada-mapear__eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .familias-jornada-mapear__header h2 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .familias-jornada-mapear__subtitle {
    margin-top: 15px;
    font-size: 16px;
  }

  .familias-jornada-mapear__support {
    font-size: 13px;
    line-height: 1.55;
  }

  .familias-jornada-mapear__steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .familias-jornada-mapear__steps::before {
    content: "";
    position: absolute;
    top: 19px;
    bottom: 19px;
    left: 19px;
    z-index: 0;
    border-left: 2px dashed #c8dcef;
  }

  .familias-jornada-mapear__step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
    align-items: start;
    text-align: left;
  }

  .familias-jornada-mapear__number {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    border-width: 3px;
  }

  .familias-jornada-mapear__icon {
    grid-column: 2;
    width: 64px;
    height: 64px;
    margin: 0 0 8px;
  }

  .familias-jornada-mapear__card {
    grid-column: 2;
    min-height: 0;
    padding: 18px 16px;
    border-radius: 15px;
  }

  .familias-jornada-mapear__card h3 {
    font-size: 16px;
  }

  .familias-jornada-mapear__card h3::after {
    margin-right: auto;
    margin-left: 0;
  }

  .familias-jornada-mapear__card p {
    font-size: 13px;
  }
}

/* Institutional partnership separator - family pages */
.familias-separador-parceria {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3vw, 38px) 0 clamp(30px, 3.5vw, 48px);
  background: #ffffff;
}

.familias-separador-parceria__container {
  width: min(100% - 64px, 820px);
  margin: 0 auto;
}

.familias-separador-parceria__box {
  display: grid;
  grid-template-columns: 76px 1px minmax(0, 1fr);
  gap: clamp(18px, 2vw, 26px);
  align-items: center;
  overflow: hidden;
  padding: 17px 24px;
  border: 1px solid rgba(190, 224, 208, 0.56);
  border-radius: 20px;
  background:
    radial-gradient(circle at 6% 50%, rgba(220, 244, 230, 0.62) 0 68px, transparent 69px),
    linear-gradient(110deg, #f2f9f5 0%, #f4faf7 50%, #f1f8f5 100%);
  box-shadow: 0 10px 28px rgba(28, 88, 66, 0.045);
}

.familias-separador-parceria__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border: 1px solid rgba(31, 168, 79, 0.14);
  border-radius: 50%;
  background: rgba(231, 247, 237, 0.92);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.42);
}

.familias-separador-parceria__icon::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 28px;
  height: 10px;
  background:
    linear-gradient(72deg, transparent 42%, var(--mapear-laranja) 44% 52%, transparent 54%) 0 4px / 8px 8px no-repeat,
    linear-gradient(90deg, transparent 43%, var(--mapear-laranja) 45% 55%, transparent 57%) 10px 0 / 8px 8px no-repeat,
    linear-gradient(108deg, transparent 42%, var(--mapear-laranja) 44% 52%, transparent 54%) 20px 4px / 8px 8px no-repeat;
  transform: translateX(-50%);
}

.familias-separador-parceria__icon img {
  display: block;
  width: 43px;
  height: 43px;
  object-fit: contain;
  filter: hue-rotate(82deg) saturate(0.92) brightness(0.88);
}

.familias-separador-parceria__divider {
  width: 1px;
  height: 62px;
  background: rgba(91, 162, 130, 0.46);
}

.familias-separador-parceria__content {
  max-width: 920px;
}

.familias-separador-parceria__content h2 {
  margin: 0;
  color: var(--mapear-azul-escuro);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.24;
}

.familias-separador-parceria__content h2 span {
  color: var(--mapear-verde);
}

.familias-separador-parceria__content p {
  max-width: 900px;
  margin: 7px 0 0;
  color: #435574;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .familias-separador-parceria__container {
    width: min(100% - 40px, 820px);
  }

  .familias-separador-parceria__box {
    grid-template-columns: 70px 1px minmax(0, 1fr);
    gap: 18px;
    padding: 16px 20px;
  }

  .familias-separador-parceria__icon {
    width: 60px;
    height: 60px;
  }

  .familias-separador-parceria__icon img {
    width: 40px;
    height: 40px;
  }

  .familias-separador-parceria__divider {
    height: 56px;
  }
}

@media (max-width: 767px) {
.familias-separador-parceria {
    padding: 26px 0 42px;
  }

  .familias-separador-parceria__container {
    width: min(100% - 28px, 1180px);
  }

  .familias-separador-parceria__box {
    grid-template-columns: 56px 1px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 16px;
    border-radius: 17px;
    background:
      radial-gradient(circle at 7% 50%, rgba(220, 244, 230, 0.7) 0 52px, transparent 53px),
      linear-gradient(110deg, #f2f9f5 0%, #f7fbf9 100%);
    text-align: left;
  }

  .familias-separador-parceria__icon {
    width: 52px;
    height: 52px;
  }

  .familias-separador-parceria__icon img {
    width: 35px;
    height: 35px;
  }

  .familias-separador-parceria__divider {
    width: 1px;
    height: 72px;
    margin: 0;
    background: rgba(91, 162, 130, 0.4);
  }

  .familias-separador-parceria__content {
    margin: 0;
  }

  .familias-separador-parceria__content h2 {
    font-size: clamp(16px, 4.6vw, 18px);
  }

  .familias-separador-parceria__content p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (max-width: 1339px) {
  .mapear-header {
    height: auto;
    min-height: var(--mapear-header-height);
  }

  .mapear-header__container {
    flex-wrap: wrap;
    height: auto;
    min-height: var(--mapear-header-height);
    padding: 10px 0 12px;
    row-gap: 10px;
  }

  .mapear-header__logo {
    order: 1;
  }

  .mapear-header__toggle {
    order: 2;
    margin-left: auto;
  }

  .mapear-header__actions,
  .mapear-programa .mapear-header__actions,
  .mapear-familia .mapear-header__actions,
  .mapear-empresa .mapear-header__actions {
    order: 3;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .mapear-header__cta,
  .mapear-programa .mapear-header__cta,
  .mapear-familia .mapear-header__cta,
  .mapear-empresa .mapear-header__cta {
    display: inline-flex;
    width: min(44vw, 190px);
    min-width: 0;
    height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }

  .mapear-header__nav {
    order: 4;
  }
}

@media (max-width: 480px) {
  .mapear-header__actions,
  .mapear-programa .mapear-header__actions,
  .mapear-familia .mapear-header__actions,
  .mapear-empresa .mapear-header__actions {
    flex-direction: column;
    gap: 8px;
  }

  .mapear-header__cta,
  .mapear-programa .mapear-header__cta,
  .mapear-familia .mapear-header__cta,
  .mapear-empresa .mapear-header__cta {
    width: min(100%, 240px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-image-slider__item,
  .before-image-slider__item {
    transition-duration: 1.6s !important;
    transition-timing-function: ease-in-out !important;
  }
}
