:root {
  --ink: #092331;
  --muted: #5f7480;
  --paper: #f7fbfb;
  --white: #ffffff;
  --blue: #0b5f88;
  --blue-deep: #07344f;
  --cyan: #35c6d4;
  --mint: #9df0d4;
  --coral: #ef6f57;
  --orange: #f2923d;
  --whatsapp: #1dbb2d;
  --whatsapp-dark: #159d25;
  --line: rgba(9, 35, 49, 0.14);
  --shadow: 0 24px 80px rgba(9, 35, 49, 0.18);
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 14px;
  clip: auto;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
  color: var(--white);
}

.utility-bar {
  position: relative;
  z-index: 20;
  color: #fff;
  background: #074b91;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 0.76rem;
  font-weight: 700;
}

.utility-bar-inner {
  width: min(1620px, calc(100% - 128px));
  min-height: 44px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.utility-hours { display: grid; gap: 2px; }
.utility-hours span { display: inline-flex; align-items: center; gap: 6px; }
.utility-hours svg { width: 15px; height: 15px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.utility-socials { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.utility-socials a { display: grid; width: 19px; height: 19px; place-items: center; color: #fff; background: transparent; text-decoration: none; font-weight: 800; opacity: .94; transition: opacity 160ms ease, transform 160ms ease; }
.utility-socials a:hover, .utility-socials a:focus-visible { opacity: 1; transform: translateY(-1px); }
.utility-socials svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 251, 251, 0.92);
  box-shadow: 0 10px 40px rgba(9, 35, 49, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.site-header.is-scrolled .nav-shell,
.site-header.is-open .nav-shell {
  border-bottom-color: var(--line);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 250px;
  height: 54px;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 180ms ease;
}

.logo-normal {
  opacity: 0;
}

.site-header.is-scrolled .logo-white,
.site-header.is-open .logo-white {
  opacity: 0;
}

.site-header.is-scrolled .logo-normal,
.site-header.is-open .logo-normal {
  opacity: 1;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 0.91rem;
}

.primary-menu a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.primary-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 84dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(53, 198, 212, 0.34), transparent 28%),
    linear-gradient(135deg, #06283e 0%, #0b4f72 42%, #0a2537 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-canvas,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 26, 40, 0.98), rgba(5, 26, 40, 0.74) 45%, rgba(5, 26, 40, 0.34)),
    linear-gradient(0deg, rgba(5, 26, 40, 0.48), rgba(5, 26, 40, 0.06) 42%);
}

.grid-tile {
  position: absolute;
  width: 280px;
  height: 280px;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(135deg, #000, transparent 70%);
}

.tile-a {
  left: 0;
  bottom: 0;
}

.tile-b {
  top: 0;
  right: 0;
  transform: rotate(180deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 44px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero h1,
.split-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 16px 36px rgba(239, 111, 87, 0.28);
}

.button-whatsapp {
  gap: 10px;
  min-width: 224px;
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 18px 38px rgba(29, 187, 45, 0.28);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: var(--whatsapp-dark);
}

.button-whatsapp svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.button-dark {
  color: var(--white);
  background: var(--blue-deep);
}

.button-white {
  color: var(--blue-deep);
  background: var(--white);
}

.split-section {
  position: relative;
  overflow: hidden;
}

.split-section.light {
  background: var(--white);
}

.split-section.deep {
  color: var(--white);
  background: var(--blue-deep);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  min-height: 720px;
}

.split-grid.reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
}

.split-copy {
  align-self: center;
  width: min(680px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.split-copy.alt {
  color: rgba(255, 255, 255, 0.82);
}

.split-copy h2 {
  color: var(--blue);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

.split-copy.alt h2 {
  color: var(--white);
}

.lead {
  color: var(--blue-deep);
  font-size: 1.18rem;
  font-weight: 700;
}

.split-copy.alt .lead {
  color: var(--mint);
}

.split-copy p:not(.section-kicker) {
  color: var(--muted);
}

.split-copy.alt p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.media-panel {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(53, 198, 212, 0.14), rgba(239, 111, 87, 0.12)),
    radial-gradient(circle at 62% 38%, rgba(53, 198, 212, 0.2), transparent 32%),
    #eef8f8;
}

.media-panel.dark {
  background:
    radial-gradient(circle at 50% 42%, rgba(157, 240, 212, 0.24), transparent 32%),
    linear-gradient(135deg, #05293f, #0b5f88);
}

.media-panel::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(11, 95, 136, 0.24);
  border-radius: var(--radius);
  background-image:
    linear-gradient(rgba(11, 95, 136, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 95, 136, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  z-index: -1;
}

.media-panel.dark::before {
  border-color: rgba(255, 255, 255, 0.18);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
}

.molecule-field {
  position: relative;
  width: min(72%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(11, 95, 136, 0.18);
  animation: slow-spin 18s linear infinite;
}

.molecule-field span {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 42px rgba(53, 198, 212, 0.65);
}

.molecule-field span:nth-child(1) { top: 15%; left: 22%; }
.molecule-field span:nth-child(2) { top: 28%; right: 14%; background: var(--coral); }
.molecule-field span:nth-child(3) { right: 32%; bottom: 12%; background: var(--mint); }
.molecule-field span:nth-child(4) { bottom: 30%; left: 13%; }
.molecule-field span:nth-child(5) { top: 48%; left: 48%; background: var(--orange); }

.media-card,
.signal-card {
  position: absolute;
  right: 52px;
  bottom: 52px;
  width: min(260px, calc(100% - 104px));
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.media-card p,
.media-card span,
.signal-card span {
  margin: 0;
  color: var(--muted);
}

.media-card strong,
.signal-card strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--blue-deep);
}

.strand {
  position: relative;
  width: min(70%, 420px);
  height: 520px;
}

.strand::before,
.strand::after {
  content: "";
  position: absolute;
  inset: 0 44%;
  border-radius: 999px;
  background: linear-gradient(var(--mint), var(--cyan), var(--coral));
  filter: drop-shadow(0 0 28px rgba(53, 198, 212, 0.35));
}

.strand::before {
  transform: skewX(-16deg);
}

.strand::after {
  transform: skewX(16deg);
}

.strand i {
  position: absolute;
  left: 28%;
  right: 28%;
  height: 3px;
  background: rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  transform: rotate(var(--angle, 0deg));
  animation: pulse-line 2.8s ease-in-out infinite;
}

.strand i:nth-child(1) { top: 12%; --angle: 18deg; }
.strand i:nth-child(2) { top: 25%; --angle: -15deg; animation-delay: 120ms; }
.strand i:nth-child(3) { top: 38%; --angle: 16deg; animation-delay: 240ms; }
.strand i:nth-child(4) { top: 51%; --angle: -18deg; animation-delay: 360ms; }
.strand i:nth-child(5) { top: 64%; --angle: 14deg; animation-delay: 480ms; }
.strand i:nth-child(6) { top: 77%; --angle: -16deg; animation-delay: 600ms; }
.strand i:nth-child(7) { top: 90%; --angle: 15deg; animation-delay: 720ms; }

.signal-card {
  left: 52px;
  right: auto;
}

.site-footer {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 44px;
  padding: 0;
  color: #17233d;
  background:
    radial-gradient(circle at 80% 18%, rgba(37, 99, 235, 0.1), transparent 28%),
    radial-gradient(circle at 10% 68%, rgba(164, 210, 232, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
  border: 0;
  border-radius: 0;
  box-shadow: 0 30px 90px rgba(20, 43, 82, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    radial-gradient(circle, rgba(37, 99, 235, 0.1) 1.2px, transparent 1.7px);
  background-size: 180px 180px, 58px 58px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%, transparent 100%);
  opacity: 0.42;
}

.footer-container {
  position: relative;
  z-index: 1;
  width: min(100% - 112px, 1760px);
  margin: 0 auto;
}

.footer-top {
  position: relative;
  padding: 130px 0 118px;
}

.footer-top .footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.95fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.footer-brand-box {
  max-width: 340px;
}

.footer-brand {
  width: 320px;
  height: 76px;
  margin-bottom: 34px;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-box p {
  margin: 0;
  color: #334568;
  font-size: 1.18rem;
  line-height: 1.65;
  font-weight: 600;
}

.footer-col {
  min-height: 248px;
  padding-left: 44px;
  border-left: 1px solid rgba(37, 99, 235, 0.14);
}

.footer-col h3,
.footer-newsletter h3 {
  margin: 0 0 34px;
  color: #0b4ca4;
  font-family: Poppins, Manrope, sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-col ul {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #17233d;
  font-size: 1.06rem;
  font-weight: 700;
}

.footer-col svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  padding: 6px;
  color: #075dcb;
  fill: currentColor;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 999px;
}

.footer-exams ul {
  gap: 13px;
}

.footer-exams li {
  font-size: 0.98rem;
  line-height: 1.25;
}

.footer-exams svg {
  width: 24px;
  height: 24px;
  padding: 5px;
}

.footer-newsletter {
  min-width: 0;
}

.footer-newsletter h3 {
  margin-bottom: 28px;
  color: #0b4ca4;
}

.footer-newsletter form {
  display: grid;
  gap: 12px;
}

.footer-newsletter input {
  width: 100%;
  min-height: 70px;
  padding: 0 24px;
  color: #17233d;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(20, 43, 82, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.footer-newsletter input::placeholder {
  color: #7b8ba4;
}

.footer-newsletter input:focus {
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: 0 20px 54px rgba(37, 99, 235, 0.14), 0 0 0 4px rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
}

.footer-newsletter button {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 28px;
  color: #fff;
  background: linear-gradient(135deg, #1761d8, #064aab);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.32);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-newsletter button:hover,
.footer-newsletter button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 52px rgba(37, 99, 235, 0.38);
}

.footer-newsletter button svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 50px 0;
  color: #fff;
  background:
    radial-gradient(circle at 88% 66%, rgba(164, 210, 232, 0.26), transparent 26%),
    linear-gradient(135deg, #075dcb 0%, #053f96 58%, #07357d 100%);
}

.footer-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 1.3px, transparent 1.8px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 34px 34px, 180px 180px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 35%, transparent 68%, #000 100%);
  opacity: 0.48;
}

.footer-bottom .footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.footer-copyright {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 740px;
}

.footer-copyright > svg {
  grid-row: span 2;
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 0.7;
}

.footer-copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  line-height: 1.55;
  font-weight: 600;
}

.footer-copyright a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.footer-copyright a:hover,
.footer-copyright a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-whatsapp {
  display: none;
  align-items: center;
  gap: 18px;
  color: #17233d;
}

.footer-whatsapp p {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0 24px;
  color: #17233d;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(3, 32, 80, 0.16);
  font-size: 0.94rem;
  font-weight: 600;
}

.footer-whatsapp strong {
  margin-left: 4px;
  color: #064aab;
  font-weight: 900;
}

.footer-whatsapp > svg {
  width: 72px;
  height: 72px;
  padding: 18px;
  color: #fff;
  fill: currentColor;
  background: linear-gradient(135deg, #24d94b, #12b232);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(24, 180, 62, 0.36), 0 0 0 18px rgba(31, 202, 70, 0.14);
}

.whatsapp-cta-section {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0;
  background: #fff;
}

.whatsapp-cta-card {
  position: relative;
  width: 100%;
  min-height: 400px;
  margin: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 0 7vw;
  color: #fff;
  background:
    radial-gradient(circle at 22% 60%, rgba(79, 169, 239, 0.22), transparent 30%),
    radial-gradient(circle at 72% 12%, rgba(72, 143, 245, 0.22), transparent 28%),
    linear-gradient(135deg, #064b92 0%, #064889 46%, #073f7b 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.whatsapp-cta-card::before,
.whatsapp-cta-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.whatsapp-cta-card::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 9, 12, 0.86) 0 64px, transparent 64px),
    linear-gradient(125deg, transparent 0 14%, rgba(255, 255, 255, 0.06) 14.2% 30%, transparent 30.2%),
    linear-gradient(145deg, transparent 0 44%, rgba(255, 255, 255, 0.04) 44.2% 56%, transparent 56.2%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 7px);
  opacity: 1;
}

.whatsapp-cta-card::after {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  background:
    linear-gradient(180deg, transparent, rgba(4, 46, 96, 0.44)),
    radial-gradient(ellipse at 52% 100%, rgba(46, 128, 218, 0.28), transparent 58%);
  opacity: 0.92;
}

.whatsapp-phone-wrap,
.whatsapp-cta-copy,
.whatsapp-benefits {
  position: relative;
  z-index: 1;
}

.whatsapp-phone-wrap {
  min-height: 360px;
  height: 400px;
  display: grid;
  place-items: start center;
  align-self: stretch;
}

.phone-mockup {
  position: relative;
  width: 365px;
  height: 530px;
  padding: 13px;
  background: linear-gradient(145deg, #121821, #333b48 48%, #05070a);
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 46px;
  box-shadow: 0 34px 80px rgba(15, 40, 90, 0.24);
  transform: translateY(-18px) rotate(0.5deg);
}

.phone-mockup::before,
.phone-mockup::after {
  content: "";
  position: absolute;
  left: -7px;
  width: 4px;
  border-radius: 999px;
  background: #1f2630;
}

.phone-mockup::before {
  top: 112px;
  height: 42px;
}

.phone-mockup::after {
  top: 174px;
  height: 72px;
}

.phone-speaker {
  position: absolute;
  top: 15px;
  left: 50%;
  z-index: 3;
  width: 116px;
  height: 28px;
  border-radius: 0 0 18px 18px;
  background: #07090d;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  background: #e9dfd2;
  border-radius: 34px;
}

.phone-status {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px 0 34px;
  color: #fff;
  background: #075e54;
  font-size: 0.8rem;
  font-weight: 800;
}

.wa-header {
  height: 64px;
  display: grid;
  grid-template-columns: 24px 42px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 0 12px;
  color: #fff;
  background: linear-gradient(135deg, #087467, #075e54);
}

.wa-back {
  font-size: 2rem;
  line-height: 1;
}

.wa-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border-radius: 999px;
}

.wa-avatar img {
  width: 95%;
  height: 95%;
  object-fit: contain;
}

.wa-title {
  display: grid;
  font-weight: 900;
  line-height: 1;
}

.wa-title small {
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.wa-actions {
  display: flex;
  gap: 14px;
}

.wa-actions svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.wa-chat {
  min-height: calc(100% - 102px);
  padding: 28px 18px;
  background:
    linear-gradient(rgba(239, 230, 218, 0.88), rgba(239, 230, 218, 0.88)),
    radial-gradient(circle, rgba(7, 94, 84, 0.08) 1px, transparent 1.7px);
  background-size: auto, 18px 18px;
}

.bubble {
  position: relative;
  width: fit-content;
  max-width: 92%;
  margin: 0 0 10px;
  padding: 10px 12px;
  color: #111827;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  line-height: 1.25;
}

.bubble small {
  margin-left: 10px;
  color: #59606c;
  font-size: 0.68rem;
}

.bubble.sent {
  margin-left: auto;
  background: #d9fdd3;
}

.bubble.received {
  background: #fff;
}

.whatsapp-cta-copy {
  max-width: 720px;
  align-self: center;
  justify-self: center;
  margin-top: 42px;
  text-align: center;
}

.whatsapp-cta-copy h2 {
  margin: 0;
  color: #fff;
  font-family: Poppins, Manrope, system-ui, sans-serif;
  font-size: clamp(2rem, 2.45vw, 2.95rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

.whatsapp-cta-copy h2 span {
  color: #fff;
}

.whatsapp-cta-copy .section-dots {
  display: none;
}

.whatsapp-units {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  margin: 16px 0 26px;
}

.whatsapp-units span {
  min-height: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 1.08rem;
  font-weight: 800;
}

.whatsapp-units svg,
.whatsapp-cta-button svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-units svg {
  width: 34px;
  height: 34px;
  color: #fff;
}

.whatsapp-cta-button {
  width: fit-content;
  min-width: 232px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  background: linear-gradient(135deg, #24d94b, #12b232);
  border-radius: 9px;
  box-shadow: 0 24px 58px rgba(24, 180, 62, 0.28);
  font-size: 1.08rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-cta-button:hover,
.whatsapp-cta-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 30px 68px rgba(24, 180, 62, 0.34);
}

.whatsapp-benefits {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  padding: 32px 84px;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(220, 232, 247, 0.92);
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -18px 60px rgba(20, 43, 82, 0.08);
  backdrop-filter: blur(18px);
}

.whatsapp-benefits div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 28px;
  border-left: 1px solid rgba(37, 99, 235, 0.14);
}

.whatsapp-benefits div:first-child {
  border-left: 0;
}

.whatsapp-benefits span {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #1761d8;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(164, 210, 232, 0.2));
  border-radius: 18px;
}

.whatsapp-benefits svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.whatsapp-benefits strong {
  color: #17233d;
  font-size: 1.03rem;
  line-height: 1.25;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 58px, 0) scale(0.985);
  filter: blur(14px);
  transition:
    opacity 880ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 880ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    filter 880ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.fade-left {
  transform: translate3d(64px, 0, 0) scale(0.985);
}

.reveal.from-left {
  transform: translate3d(-64px, 0, 0) scale(0.985);
}

.reveal.from-right {
  transform: translate3d(64px, 0, 0) scale(0.985);
}

.zoom-in {
  transform: scale(0.93);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  filter: blur(0);
}

.reveal.is-visible.reveal-settled {
  will-change: auto;
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-line {
  0%, 100% {
    opacity: 0.36;
    transform: rotate(var(--angle)) scaleX(0.82);
  }
  50% {
    opacity: 1;
    transform: rotate(var(--angle)) scaleX(1.08);
  }
}

body {
  background: #FFFFFF;
  background-image: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  color: #17233d;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
  position: absolute;
  top: 14px;
  color: #17233d;
  background: transparent;
  box-shadow: none;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: #17233d;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-shell {
  width: min(1620px, calc(100% - 128px));
  min-height: 108px;
  border-bottom: 0;
  gap: 28px;
}

.site-header.is-scrolled .nav-shell,
.site-header.is-open .nav-shell {
  border-bottom-color: transparent;
}

.brand {
  width: 334px;
  height: 70px;
  flex: 0 0 auto;
}

.site-header .logo-white {
  opacity: 0;
}

.site-header .logo-normal {
  opacity: 1;
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(20, 43, 82, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  margin: 2px auto;
  background: #17233d;
}

.primary-menu {
  gap: 10px;
  margin-inline: auto;
}

.primary-menu a {
  min-height: 54px;
  padding: 0 28px;
  color: #111827;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(20, 43, 82, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  font-size: 0.92rem;
  font-weight: 700;
}

.primary-menu a::after {
  display: none;
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
  color: #fff;
  background: #2563eb;
  border-color: rgba(37, 99, 235, 0.92);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.nav-location {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 150px;
  color: #17233d;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
}

.nav-location svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  fill: #2563eb;
}

.nav-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(20, 43, 82, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-icon:hover,
.nav-icon:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(20, 43, 82, 0.2);
}

.nav-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.nav-icon.dark {
  color: #fff;
  background: #101010;
}

.nav-icon.blue {
  color: #fff;
  background: #2563eb;
}

.nav-results {
  min-width: 242px;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 28px;
  color: #fff;
  background: linear-gradient(135deg, #22b72d, #16a823);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(22, 168, 35, 0.26);
  font-family: Poppins, Manrope, system-ui, sans-serif;
  font-size: 1.08rem;
  line-height: 1.08;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-results svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: currentColor;
}

.nav-results:hover,
.nav-results:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #29c837, #13a520);
  box-shadow: 0 24px 50px rgba(22, 168, 35, 0.34);
}

.hero {
  height: calc(100dvh - 28px);
  min-height: 720px;
  margin: 14px;
  color: #17233d;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border-radius: 38px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 35px rgba(15, 40, 90, 0.06);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(120deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    radial-gradient(circle, rgba(37, 99, 235, 0.04) 1px, transparent 1.4px);
  background-size: 180px 180px, 82px 82px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 80%, transparent 100%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-bg-detail {
  position: absolute;
  pointer-events: none;
  transform: translate3d(0, var(--scroll-y, 0px), 0);
  transition: transform 80ms linear;
}

.hero-bg-detail.hex-a,
.hero-bg-detail.hex-b {
  width: 180px;
  height: 156px;
  border: 1px solid rgba(37, 99, 235, 0.09);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
}

.hero-bg-detail.hex-a {
  top: 18%;
  right: 33%;
}

.hero-bg-detail.hex-b {
  right: 22%;
  bottom: 18%;
  transform: translate3d(0, var(--scroll-y, 0px), 0) scale(1.4);
}

.hero-bg-detail.circle-a {
  width: 220px;
  height: 220px;
  right: 42%;
  bottom: 1%;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.05);
  filter: blur(80px);
  opacity: 0.6;
}

.hero-inner {
  position: static;
  width: min(1620px, calc(100% - 128px));
  height: 100%;
  min-height: 0;
  padding: 90px 0 38px;
  margin: 0 auto;
}

.premium-hero-grid {
  display: block;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 28px;
  width: min(840px, 49%);
}

.hero h1,
.split-copy h2 {
  font-family: Poppins, Manrope, system-ui, sans-serif;
}

.hero h1 {
  max-width: 840px;
  color: #17233d;
  font-size: clamp(4.2rem, 4.8vw, 5.12rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 span {
  color: #2563eb;
  text-shadow: 0 18px 36px rgba(37, 99, 235, 0.2);
}

.hero-copy {
  max-width: 560px;
  margin: 34px 0 0;
  color: #33415c;
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  line-height: 1.28;
  font-weight: 400;
}

.hero-actions {
  margin-top: 30px;
}

.convenios-marquee {
  width: min(510px, 100%);
  margin-top: 24px;
}

.convenios-marquee > p {
  margin: 0 0 10px;
  color: #5b6f8f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.convenios-window {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(205, 220, 243, 0.78);
  background: rgba(255, 255, 255, 0.76);
}

.convenios-track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 10px;
  animation: convenios-scroll 24s linear infinite;
}

.convenio-logo {
  display: grid;
  flex: 0 0 118px;
  height: 52px;
  place-items: center;
  padding: 8px 12px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(25, 69, 125, 0.08);
}

.convenio-logo img {
  display: block;
  max-width: 100%;
  max-height: 34px;
  object-fit: contain;
}

.convenio-voce-mais {
  gap: 1px;
  color: #1d5fad;
  font-family: Poppins, Manrope, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
}

.convenio-voce-mais strong {
  color: #25aa4b;
  font-weight: 800;
}

@keyframes convenios-scroll {
  to { transform: translateX(calc(-50% - 5px)); }
}

.button-whatsapp {
  min-width: 286px;
  min-height: 66px;
  gap: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #20c943, #13aa2e);
  box-shadow: 0 20px 44px rgba(24, 180, 62, 0.3);
  font-size: 1.1rem;
  animation: whatsapp-button-pulse 2.2s ease-in-out infinite;
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: linear-gradient(135deg, #24d94b, #11a42b);
  animation-play-state: paused;
}

.button-whatsapp svg {
  width: 22px;
  height: 22px;
  color: currentColor;
  filter: none;
  animation: none;
}

@keyframes whatsapp-button-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 44px rgba(24, 180, 62, 0.3);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.025);
    box-shadow: 0 24px 54px rgba(24, 180, 62, 0.42);
  }
}

.stats-card {
  width: min(760px, 100%);
  min-height: 176px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding: 16px 22px 16px 16px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #EDF3FF;
  box-shadow: 0 20px 50px rgba(15, 40, 90, 0.06);
}

.stats-media {
  position: relative;
  height: 152px;
  overflow: hidden;
  border-radius: 20px;
}

.stats-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-media button {
  position: absolute;
  inset: 0;
  width: 56px;
  height: 56px;
  margin: auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: #2563eb;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.24);
}

.stats-media svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 28px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.video-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 42, 0.72);
  backdrop-filter: blur(18px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  transform: translateY(18px) scale(0.98);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-modal.is-open .video-modal-dialog {
  transform: translateY(0) scale(1);
}

.video-modal-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #061a38;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.38);
}

.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #17233d;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

.video-modal-close svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.stats-content {
  position: relative;
  min-width: 0;
}

.stats-content p {
  margin: 0 0 24px;
  color: #17233d;
  font-weight: 700;
}

.stats-dots {
  position: absolute;
  top: 6px;
  right: 10px;
  display: flex;
  gap: 5px;
}

.stats-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d7ddea;
}

.stats-dots span:first-child {
  width: 30px;
  background: #2563eb;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-list div {
  min-width: 0;
  padding-inline: 28px;
  border-left: 1px solid #dbe3f0;
}

.stats-list div:first-child {
  padding-left: 0;
  border-left: 0;
}

.stats-list strong {
  display: block;
  color: #2563eb;
  font-family: Poppins, Manrope, sans-serif;
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1;
}

.stats-list span {
  display: block;
  margin-top: 6px;
  color: #111827;
  font-weight: 600;
  line-height: 1.18;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  width: 100%;
  height: 100%;
  isolation: isolate;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.hero-visual.reveal,
.hero-visual.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.hero-slide {
  position: absolute;
  top: -5%;
  right: -4%;
  bottom: auto;
  left: -8%;
  width: 114%;
  height: 112%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  filter: none;
  transform: scale(1.01);
  transition: opacity 900ms ease, transform 1200ms ease;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 11%, #000 90%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 11%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 11%, #000 90%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 11%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-ultrasound {
  object-position: center center;
}

.white-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 31%, rgba(255, 255, 255, 0.78) 45%, rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 28%);
  pointer-events: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.96) 5%, rgba(255, 255, 255, 0.28) 17%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0.94) 4%, rgba(255, 255, 255, 0.22) 15%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0.82) 6%, rgba(255, 255, 255, 0.18) 20%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 87% 19%, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0) 21%);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 28px;
  color: #111827;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #EDF3FF;
  box-shadow: 0 20px 50px rgba(15, 40, 90, 0.06);
  font-weight: 800;
  font-size: 1.02rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
  animation: floating-sway 4.8s ease-in-out infinite;
  transform-origin: center center;
}

.floating-card:hover {
  animation-play-state: paused;
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 40, 90, 0.08);
}

.floating-card svg {
  width: 30px;
  height: 30px;
  fill: #2563eb;
}

.float-one {
  top: 31%;
  left: 54%;
  animation-delay: 0s;
}

.float-two {
  top: 50%;
  left: 44%;
  animation-delay: 0.9s;
}

.float-three {
  right: 9%;
  bottom: 26%;
  animation-delay: 1.7s;
}

@keyframes floating-sway {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(4px, -5px, 0) rotate(0.8deg);
  }
  50% {
    transform: translate3d(0, -9px, 0) rotate(0deg);
  }
  75% {
    transform: translate3d(-4px, -4px, 0) rotate(-0.8deg);
  }
}

.units-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 96px;
  color: #17233d;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}

.units-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    radial-gradient(circle, rgba(37, 99, 235, 0.05) 1px, transparent 1.4px);
  background-size: 220px 220px, 86px 86px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 58%, #000 100%);
  opacity: 0.4;
}

.units-bg {
  position: absolute;
  pointer-events: none;
  transform: translate3d(0, var(--scroll-y, 0px), 0);
  transition: transform 80ms linear;
}

.units-bg.hex-large,
.units-bg.hex-small {
  border: 1px solid rgba(37, 99, 235, 0.12);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
}

.units-bg.hex-large {
  right: -78px;
  bottom: 32px;
  width: 252px;
  height: 220px;
  background: rgba(37, 99, 235, 0.04);
}

.units-bg.hex-small {
  left: -42px;
  bottom: 44px;
  width: 132px;
  height: 116px;
  background: rgba(164, 210, 232, 0.16);
}

.units-bg.glow-one {
  right: 9%;
  top: 38%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2563eb;
  filter: blur(8px);
  opacity: 0.12;
}

.units-bg.dot-field {
  right: 5%;
  bottom: 76px;
  width: 164px;
  height: 116px;
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.08) 1.2px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.25;
}

.units-inner {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 128px));
  margin: 0 auto;
}

.units-head {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: center;
}

.units-copy h2 {
  margin: 0;
  color: #082044;
  font-family: Poppins, Manrope, system-ui, sans-serif;
  font-size: clamp(3.5rem, 5.1vw, 5.8rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.units-copy h2 span {
  color: #1761d8;
  text-shadow: 0 16px 34px rgba(37, 99, 235, 0.16);
}

.units-copy p {
  max-width: 590px;
  margin: 28px 0 0;
  color: #4b5c78;
  font-size: clamp(1.12rem, 1.45vw, 1.36rem);
  line-height: 1.42;
  font-weight: 500;
}

.units-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: #7a879d;
  font-weight: 600;
}

.units-link strong {
  color: #1761d8;
}

.units-link svg {
  width: 84px;
  height: 28px;
  margin-left: 22px;
  fill: none;
  stroke: #7daeff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.units-link:hover svg,
.units-link:focus-visible svg {
  transform: translateX(8px);
}

.units-note {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 126px;
  padding: 24px 34px 24px 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #EDF3FF;
  box-shadow: 0 20px 50px rgba(15, 40, 90, 0.06);
}

.units-note-icon,
.unit-pin,
.unit-info-icon {
  display: grid;
  place-items: center;
  color: #1761d8;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.13), rgba(164, 210, 232, 0.22));
  border: 1px solid rgba(37, 99, 235, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.units-note-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.units-note-icon svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.units-note p {
  margin: 0;
  color: #2f405d;
  font-size: clamp(1.08rem, 1.3vw, 1.3rem);
  line-height: 1.44;
}

.units-note strong {
  color: #10213f;
  font-weight: 800;
}

.units-video-card {
  position: relative;
  width: 100%;
  margin: 0;
  isolation: isolate;
}

.units-video-card::before {
  content: "";
  position: absolute;
  inset: 10% -10% -12% 12%;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #075dcb, #063f93);
  border-radius: 30px;
  opacity: 0.96;
  transform: rotate(0.6deg);
  box-shadow: 0 30px 86px rgba(5, 63, 147, 0.18);
}

.units-video-card button {
  position: relative;
  width: 100%;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 48px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(205, 222, 245, 0.84);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(20, 43, 82, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
  cursor: pointer;
  transform: rotate(0.25deg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.units-video-card button:hover,
.units-video-card button:focus-visible {
  transform: translateY(-4px) rotate(0.25deg);
  box-shadow: 0 34px 92px rgba(20, 43, 82, 0.17), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.units-video-card button::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(37, 99, 235, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 250, 255, 0.46));
}

.units-video-card img {
  position: relative;
  width: min(340px, 70%);
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(20, 43, 82, 0.08));
}

.units-video-card span {
  position: absolute;
  inset: 0;
  width: 82px;
  height: 82px;
  margin: auto;
  display: grid;
  place-items: center;
  color: rgba(37, 99, 235, 0.88);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(20, 43, 82, 0.18);
  backdrop-filter: blur(14px);
}

.units-video-card svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
  transform: translateX(3px);
}

.unit-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 70px;
}

.unit-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  min-height: 454px;
  padding: 34px 38px 32px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #EDF3FF;
  box-shadow: 0 20px 50px rgba(15, 40, 90, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.unit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 40, 90, 0.08);
}

.unit-title-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid #dbe6f6;
}

.unit-pin {
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  border-radius: 18px;
}

.unit-pin svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.unit-title-row p {
  margin: 0;
  color: #0f1f3a;
  font-size: 1.26rem;
  line-height: 1.2;
  font-weight: 800;
}

.unit-title-row h3 {
  margin: 4px 0 0;
  color: #1761d8;
  font-family: Poppins, Manrope, sans-serif;
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.unit-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  padding: 32px 0 28px;
}

.unit-info {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: flex-start;
  min-width: 0;
}

.unit-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.unit-info-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.unit-info strong {
  display: block;
  margin: 4px 0 16px;
  color: #1761d8;
  font-size: 1.06rem;
  font-weight: 800;
}

.unit-info p {
  margin: 0;
  color: #17233d;
  font-size: 1.02rem;
  line-height: 1.48;
  font-weight: 500;
}

.unit-info b {
  font-weight: 800;
}

.unit-info hr {
  width: 100%;
  height: 1px;
  margin: 14px 0;
  border: 0;
  background: #e2ebf8;
}

.unit-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: auto;
}

.unit-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  font-size: 1.14rem;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.unit-button svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.unit-button.whatsapp {
  background: linear-gradient(135deg, #23d34c, #13ae31);
  box-shadow: 0 18px 42px rgba(24, 180, 62, 0.28);
}

.unit-button.route {
  background: linear-gradient(135deg, #1973f3, #075bd1);
}

.unit-button:hover,
.unit-button:focus-visible {
  transform: translateY(-3px);
  filter: saturate(1.08);
}

.experience-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0 112px;
  color: #17233d;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}

.experience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    radial-gradient(circle, rgba(37, 99, 235, 0.04) 1px, transparent 1.4px);
  background-size: 210px 210px, 90px 90px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 54%, #000 100%);
  opacity: 0.4;
}

.experience-bg {
  position: absolute;
  pointer-events: none;
  transform: translate3d(0, var(--scroll-y, 0px), 0);
  transition: transform 80ms linear;
}

.experience-bg.hex-top,
.experience-bg.hex-bottom {
  border: 1px solid rgba(37, 99, 235, 0.12);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
}

.experience-bg.hex-top {
  top: 70px;
  right: 4%;
  width: 160px;
  height: 140px;
  background: rgba(37, 99, 235, 0.04);
}

.experience-bg.hex-bottom {
  right: -54px;
  bottom: 78px;
  width: 230px;
  height: 200px;
  background: rgba(37, 99, 235, 0.06);
}

.experience-bg.glow-left,
.experience-bg.glow-right {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2563eb;
  filter: blur(8px);
  opacity: 0.12;
}

.experience-bg.glow-left {
  top: 15%;
  left: 4%;
}

.experience-bg.glow-right {
  right: 19%;
  bottom: 12%;
}

.experience-inner {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 128px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(460px, 0.96fr) minmax(480px, 1fr);
  gap: 92px;
  align-items: center;
}

.experience-media {
  position: relative;
  min-height: 760px;
}

.experience-photo {
  overflow: hidden;
  background: #f4f7fb;
  border: 6px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(15, 40, 90, 0.06);
}

.experience-photo video,
.experience-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-photo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 88%;
  height: 650px;
  border-radius: 28px;
}

.main-photo video {
  object-position: 72% center;
}

.inset-photo {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 54%;
  height: 250px;
  border-radius: 28px;
}

.inset-photo img {
  object-position: right center;
}

.experience-badge {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: -4px;
  width: 250px;
  min-height: 216px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 48px 32px;
  color: #fff;
  border-radius: 28px;
  background: linear-gradient(145deg, #0642a0 0%, #062a70 100%);
  border: 4px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 50px rgba(7, 50, 132, 0.14);
}

.experience-badge span {
  position: absolute;
  top: -34px;
  left: 34px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: #0d5ed8;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 22px 46px rgba(19, 80, 180, 0.18);
}

.experience-badge svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.experience-badge strong {
  display: block;
  font-family: Poppins, Manrope, sans-serif;
  font-size: clamp(2.4rem, 3.4vw, 3.55rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.experience-badge p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.32rem;
  line-height: 1.28;
  font-weight: 500;
}

.experience-copy h2 {
  max-width: 720px;
  margin: 0;
  color: #14223d;
  font-family: Poppins, Manrope, system-ui, sans-serif;
  font-size: clamp(3.1rem, 4vw, 4.85rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.experience-copy h2 span {
  color: #1761d8;
  text-shadow: 0 18px 34px rgba(37, 99, 235, 0.16);
}

.section-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 34px 0 30px;
}

.section-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #c5d9fb;
}

.section-dots span:first-child {
  width: 56px;
  background: #1761d8;
}

.experience-copy > p {
  max-width: 700px;
  margin: 0;
  color: #53627b;
  font-size: clamp(1.1rem, 1.34vw, 1.34rem);
  line-height: 1.52;
  font-weight: 500;
}

.experience-list {
  display: grid;
  gap: 18px;
  margin: 40px 0 38px;
  padding: 0;
  list-style: none;
}

.experience-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #17233d;
  font-size: clamp(1.05rem, 1.3vw, 1.26rem);
  font-weight: 800;
}

.experience-list span {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(164, 210, 232, 0.2));
}

.experience-list svg {
  width: 36px;
  height: 36px;
  fill: #1761d8;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.15);
}

.experience-cta {
  width: fit-content;
  min-width: 270px;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 30px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #1973f3, #075bd1);
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.28);
  font-size: 1.18rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.experience-cta svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.experience-cta:hover,
.experience-cta:focus-visible {
  transform: translateY(-3px);
  filter: saturate(1.08);
  box-shadow: 0 28px 56px rgba(37, 99, 235, 0.32);
}

.reports-banner {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #06417d;
  isolation: isolate;
}

.reports-banner img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.04);
}

.reports-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(3, 54, 105, 0.96) 0%, rgba(4, 73, 137, 0.88) 46%, rgba(4, 62, 122, 0.94) 100%);
}

.reports-banner::before,
.reports-banner::after {
  content: "";
  position: absolute;
  inset: auto 0;
  z-index: -1;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.reports-banner::before {
  top: 0;
}

.reports-banner::after {
  bottom: 0;
}

.reports-banner-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transform: translate3d(0, var(--scroll-y, 0px), 0);
  background-image:
    linear-gradient(120deg, rgba(164, 210, 232, 0.16) 1px, transparent 1px),
    radial-gradient(circle, rgba(164, 210, 232, 0.2) 1.3px, transparent 1.6px);
  background-size: 150px 150px, 82px 82px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 58%, transparent 100%);
  opacity: 0.46;
}

.reports-banner-inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.reports-banner h2 {
  margin: 0;
  color: #fff;
  font-family: Poppins, Manrope, system-ui, sans-serif;
  font-size: clamp(2.4rem, 3.4vw, 4.25rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 18px 54px rgba(0, 18, 50, 0.38);
}

.exams-section {
  position: relative;
  overflow: hidden;
  padding: 94px 0 110px;
  color: #17233d;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}

.exams-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.04) 1px, transparent 1.3px);
  background-size: 76px 76px;
  opacity: 0.32;
}

.exams-bg {
  position: absolute;
  pointer-events: none;
  transform: translate3d(0, var(--scroll-y, 0px), 0);
}

.exams-bg.glow-a,
.exams-bg.glow-b {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.06;
}

.exams-bg.glow-a {
  left: -60px;
  top: 20px;
  background: #a4d2e8;
}

.exams-bg.glow-b {
  right: -70px;
  bottom: 18px;
  background: #2563eb;
}

.exams-inner {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 128px));
  margin: 0 auto;
}

.exams-head {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 34px;
}

.exams-kicker {
  margin: 0 0 6px;
  color: #6d7d96;
  font-size: 0.86rem;
  font-weight: 800;
}

.exams-head h2 {
  margin: 0;
  color: #061a38;
  font-family: Poppins, Manrope, system-ui, sans-serif;
  font-size: clamp(3.2rem, 5vw, 5.65rem);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
}

.exams-head h2 span {
  color: #1761d8;
}

.exams-head-copy {
  justify-self: end;
  max-width: 560px;
  color: #53627b;
  text-align: right;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 600;
}

.exams-head-copy p {
  margin: 0 0 12px;
}

.exams-head-copy a {
  color: #1761d8;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.exam-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.exam-card {
  position: relative;
  min-height: 318px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 34px 24px 26px;
  color: #0f1f3a;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #EDF3FF;
  box-shadow: 0 20px 50px rgba(15, 40, 90, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.exam-card:hover,
.exam-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 40, 90, 0.08);
}

.exam-card.is-active,
.exam-card:hover,
.exam-card:focus-within {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #2877ff 0%, #075bd1 100%);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.24);
}

.exam-number {
  position: absolute;
  top: 18px;
  left: 22px;
  color: rgba(37, 99, 235, 0.12);
  font-family: Poppins, Manrope, sans-serif;
  font-size: 3.3rem;
  line-height: 1;
  font-weight: 700;
}

.exam-card.is-active .exam-number,
.exam-card:hover .exam-number,
.exam-card:focus-within .exam-number {
  color: rgba(255, 255, 255, 0.18);
}

.exam-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-top: 58px;
  color: #1761d8;
}

.exam-icon svg {
  width: 58px;
  height: 58px;
  fill: currentColor;
}

.exam-card.is-active .exam-icon,
.exam-card:hover .exam-icon,
.exam-card:focus-within .exam-icon {
  color: #fff;
}

.exam-card h3 {
  position: relative;
  z-index: 1;
  margin: 20px 0 10px;
  color: inherit;
  font-family: Poppins, Manrope, sans-serif;
  font-size: 1.24rem;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.exam-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(15, 31, 58, 0.74);
  font-size: 0.94rem;
  line-height: 1.48;
  font-weight: 500;
}

.exam-card.is-active p,
.exam-card:hover p,
.exam-card:focus-within p {
  color: rgba(255, 255, 255, 0.82);
}

.exam-card > a {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #1761d8;
  font-size: 0.86rem;
  font-weight: 800;
}

.exam-card.is-active > a,
.exam-card:hover > a,
.exam-card:focus-within > a {
  color: #fff;
}

.exam-card > a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 180ms ease;
}

.exam-card > a:hover svg,
.exam-card > a:focus-visible svg {
  transform: translateX(5px);
}

.exam-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.62;
}

.exam-bubbles i {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.52), rgba(164, 210, 232, 0.08) 64%);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.12);
}

.exam-bubbles i:nth-child(1) {
  width: 96px;
  height: 96px;
  right: -22px;
  bottom: 30px;
}

.exam-bubbles i:nth-child(2) {
  width: 58px;
  height: 58px;
  left: 22px;
  bottom: 68px;
}

.exam-bubbles i:nth-child(3) {
  width: 36px;
  height: 36px;
  right: 58px;
  top: 60px;
}

.exam-bubbles i:nth-child(4) {
  width: 118px;
  height: 118px;
  left: 58px;
  bottom: -64px;
}

.exam-image-card {
  position: relative;
  grid-column: span 2;
  min-height: 318px;
  overflow: hidden;
  border-radius: 18px;
  background: #0b4f8f;
  border: 1px solid #EDF3FF;
  box-shadow: 0 20px 50px rgba(15, 40, 90, 0.06);
}

.exam-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.05);
  filter: saturate(1.12) contrast(1.04);
}

.exam-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 54% 43%, rgba(255, 255, 255, 0.72), transparent 13%),
    linear-gradient(90deg, rgba(4, 42, 88, 0.84), rgba(4, 42, 88, 0.26) 58%, rgba(4, 42, 88, 0.08)),
    linear-gradient(0deg, rgba(4, 42, 88, 0.62), transparent 55%);
}

.exam-image-card div {
  position: absolute;
  z-index: 1;
  left: 30px;
  bottom: 28px;
  width: min(360px, calc(100% - 60px));
  color: #fff;
}

.exam-image-card span {
  display: block;
  margin-bottom: 8px;
  color: #a4d2e8;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.exam-image-card strong {
  display: block;
  font-family: Poppins, Manrope, sans-serif;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 720px;
  overflow: hidden;
  color: #081a34;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}

.why-image {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #f4f7fb;
}

.why-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(234, 247, 253, 0) 0%, rgba(234, 247, 253, 0.18) 76%, #eaf7fd 100%),
    linear-gradient(0deg, rgba(234, 247, 253, 0.08), rgba(255, 255, 255, 0.1));
  pointer-events: none;
}

.why-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) contrast(1.02) brightness(1.04);
}

.why-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px min(7vw, 128px);
}

.why-content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.04) 1px, transparent 1.3px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, transparent 100%);
  opacity: 0.3;
}

.why-kicker {
  position: relative;
  margin: 0 0 30px;
  color: #075dbd;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: capitalize;
}

.why-content h2 {
  position: relative;
  max-width: 720px;
  margin: 0;
  color: #061a38;
  font-family: Poppins, Manrope, system-ui, sans-serif;
  font-size: clamp(2.7rem, 3.2vw, 4.25rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.why-content > p:not(.why-kicker) {
  position: relative;
  max-width: 760px;
  margin: 34px 0 0;
  color: #16233a;
  font-size: clamp(1.06rem, 1.22vw, 1.26rem);
  line-height: 1.54;
  font-weight: 500;
}

.why-metrics {
  position: relative;
  display: grid;
  gap: 28px;
  margin-top: 62px;
}

.why-metric div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  color: #061a38;
  font-size: 1.06rem;
}

.why-metric strong {
  font-weight: 800;
}

.why-metric span {
  font-weight: 700;
}

.why-metric i {
  position: relative;
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.why-metric i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, #075dbd, #0b66d8);
  box-shadow: 0 8px 20px rgba(7, 93, 189, 0.22);
  transform-origin: left center;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  color: #17233d;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    radial-gradient(circle, rgba(37, 99, 235, 0.04) 1px, transparent 1.3px);
  background-size: 190px 190px, 86px 86px;
  opacity: 0.28;
}

.testimonials-bg {
  position: absolute;
  pointer-events: none;
  transform: translate3d(0, var(--scroll-y, 0px), 0);
}

.testimonials-bg.glow-a,
.testimonials-bg.glow-b {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.05;
}

.testimonials-bg.glow-a {
  left: -70px;
  bottom: 20px;
  background: #a4d2e8;
}

.testimonials-bg.glow-b {
  right: -80px;
  top: 50px;
  background: #2563eb;
}

.testimonials-inner {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 128px));
  margin: 0 auto;
}

.testimonials-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.testimonials-kicker {
  margin: 0 0 14px;
  color: #1761d8;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonials-head h2 {
  margin: 0;
  color: #061a38;
  font-family: Poppins, Manrope, system-ui, sans-serif;
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.testimonials-head p:not(.testimonials-kicker) {
  margin: 22px auto 0;
  max-width: 680px;
  color: #53627b;
  font-size: 1.12rem;
  line-height: 1.5;
  font-weight: 500;
}

.testimonial-marquee {
  position: relative;
  width: 100%;
  padding: 12px 0 56px;
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 24px;
  align-items: stretch;
  will-change: transform;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  position: relative;
  flex: 0 0 clamp(320px, 28vw, 440px);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #EDF3FF;
  box-shadow: 0 20px 50px rgba(15, 40, 90, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 40, 90, 0.08);
}

.testimonial-card.featured {
  color: #fff;
  background: linear-gradient(145deg, #1761d8 0%, #0d4faa 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 30px;
}

.testimonial-stars span {
  width: 18px;
  height: 18px;
  background: #1761d8;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.testimonial-card.featured .testimonial-stars span {
  background: #fff;
}

.testimonial-card blockquote {
  margin: 0;
  color: #17233d;
  font-family: Poppins, Manrope, sans-serif;
  font-size: clamp(1.28rem, 1.8vw, 1.75rem);
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
}

.testimonial-card.featured blockquote {
  color: #fff;
}

.testimonial-author {
  margin-top: 32px;
  padding-top: 0;
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.testimonial-author strong {
  color: #061a38;
  font-weight: 800;
}

.testimonial-author span {
  margin-top: 4px;
  color: #70819a;
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-card.featured .testimonial-author strong,
.testimonial-card.featured .testimonial-author span {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1500px) {
  .nav-shell {
    width: min(1500px, calc(100% - 48px));
  }

  .brand {
    width: 270px;
    height: 58px;
  }

  .primary-menu {
    gap: 8px;
  }

  .primary-menu a {
    min-height: 50px;
    padding-inline: 18px;
    font-size: 0.86rem;
  }

  .nav-meta {
    gap: 10px;
  }

  .nav-location {
    min-width: 132px;
    font-size: 0.86rem;
  }

  .nav-icon,
  .menu-toggle {
    width: 50px;
    height: 50px;
  }

  .nav-results {
    min-width: 210px;
    min-height: 62px;
    gap: 14px;
    padding-inline: 22px;
    font-size: 0.98rem;
  }

  .stats-card {
    grid-template-columns: 230px 1fr;
    gap: 18px;
    padding-right: 16px;
  }

  .stats-list div {
    padding-inline: 12px;
  }

  .stats-list strong {
    font-size: 2.35rem;
  }

  .stats-list span {
    font-size: 0.86rem;
  }
}

@media (max-width: 1320px) {
  .nav-shell,
  .hero-inner {
    width: min(100% - 56px, 1620px);
  }

  .brand {
    width: 270px;
    height: 58px;
  }

  .primary-menu a {
    padding-inline: 20px;
  }

  .nav-location {
    display: none;
  }

  .nav-results {
    min-width: 190px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 4.9vw, 4.45rem);
  }

  .hero-inner {
    min-height: calc(100dvh - 28px);
    padding-top: 126px;
    padding-bottom: 18px;
  }

  .hero-copy {
    max-width: 510px;
    font-size: 1.08rem;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .button-whatsapp {
    min-height: 58px;
  }

  .stats-card {
    min-height: 148px;
    grid-template-columns: 190px 1fr;
    gap: 18px;
    padding: 12px 16px 12px 12px;
  }

  .stats-media {
    height: 124px;
    border-radius: 18px;
  }

  .stats-content p {
    margin-bottom: 16px;
  }

  .stats-list div {
    padding-inline: 18px;
  }

  .stats-list strong {
    font-size: 2.15rem;
  }

  .stats-list span {
    font-size: 0.88rem;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-slide {
    width: 100%;
    height: 100%;
    right: auto;
    object-fit: cover;
  }

  .floating-card {
    min-height: 52px;
    padding-inline: 22px;
    font-size: 0.92rem;
  }

  .floating-card svg {
    width: 26px;
    height: 26px;
  }

  .units-section {
    padding-top: 92px;
  }

  .units-inner {
    width: min(100% - 56px, 1400px);
  }

  .units-head {
    gap: 44px;
    grid-template-columns: minmax(360px, 0.9fr) minmax(380px, 1fr);
  }

  .unit-card {
    padding: 28px;
  }

  .unit-info-grid {
    gap: 22px;
  }

  .experience-inner {
    width: min(100% - 56px, 1400px);
    gap: 58px;
    grid-template-columns: minmax(400px, 0.9fr) minmax(430px, 1fr);
  }

  .experience-media {
    min-height: 650px;
  }

  .main-photo {
    height: 560px;
  }

  .inset-photo {
    height: 210px;
  }

  .experience-badge {
    width: 220px;
    min-height: 188px;
    padding: 38px 36px 28px;
  }

  .reports-banner {
    min-height: 320px;
  }

  .exams-inner {
    width: min(100% - 56px, 1400px);
  }

  .exam-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exam-image-card {
    grid-column: span 2;
  }

  .why-content {
    padding-inline: 56px;
  }

  .testimonials-inner {
    width: min(100% - 56px, 1400px);
  }
}

@media (max-width: 1080px) {
  .site-header {
    top: 8px;
  }

  .nav-shell {
    width: 100%;
    padding-inline: 20px;
    min-height: 92px;
    gap: 12px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .floating-card {
    display: none;
  }

  .primary-menu {
    position: fixed;
    inset: 94px 20px auto;
    display: grid;
    padding: 14px;
    border-radius: 26px;
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .primary-menu.is-open {
    transform: translateY(0);
  }

  .premium-hero-grid {
    display: block;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 136px;
    padding-bottom: 28px;
  }

  .hero-content {
    padding-top: 0;
    width: min(760px, 64%);
  }

  .hero h1,
  .hero-copy {
    max-width: 760px;
  }

  .stats-card {
    margin-top: 46px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-slide {
    right: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    bottom: auto;
  }

  .units-head,
  .unit-cards {
    grid-template-columns: 1fr;
  }

  .units-copy h2 {
    max-width: 720px;
  }

  .units-note {
    max-width: 720px;
  }

  .units-video-card {
    width: 100%;
  }

  .unit-card {
    min-height: auto;
  }

  .experience-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .experience-media {
    min-height: 690px;
    max-width: 720px;
  }

  .experience-copy h2,
  .experience-copy > p {
    max-width: 780px;
  }

  .reports-banner {
    min-height: 290px;
  }

  .why-section {
    grid-template-columns: 1fr;
  }

  .why-image {
    min-height: 520px;
  }

  .why-content {
    padding: 72px 40px 86px;
  }

  .testimonial-marquee {
    overflow-x: hidden;
  }

  .testimonial-card {
    flex-basis: min(390px, 82vw);
    min-height: 280px;
  }

  .exams-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .exams-head-copy {
    justify-self: start;
    text-align: left;
  }
}

/* Cabeçalho institucional */
.utility-bar { background: linear-gradient(100deg, #083a73, #062750); }
.utility-bar-inner { width: min(1880px, calc(100% - 128px)); min-height: 46px; }
.utility-hours { display: flex; gap: 30px; }
.utility-hours span + span { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.27); }
.site-header { position: sticky; top: 0; z-index: 110; margin: 0; padding: 0 0 14px; color: #10254a; background: #f8fbff; }
.site-header.is-scrolled {
  position: fixed !important;
  inset: 0 0 auto !important;
  z-index: 300;
  background: rgba(248, 251, 255, .97) !important;
  box-shadow: 0 10px 28px rgba(13, 39, 78, .12) !important;
  backdrop-filter: blur(16px);
}
.nav-shell { width: min(2020px, calc(100% - 80px)); min-height: 164px; padding: 0 72px; border: 0; border-radius: 0 0 28px 28px; background: #fff; box-shadow: 0 14px 34px rgba(19,51,91,.08); }
.brand { width: 390px; height: 92px; }
.primary-menu { gap: 4px; }
.primary-menu a { min-height: 58px; padding: 0 24px; color: #12254a; border: 0; border-radius: 0; background: transparent; font-size: 1.02rem; }
.primary-menu a:hover,.primary-menu a:focus-visible { color: #1556b8; background: transparent; box-shadow: none; }
.primary-menu a::after { display:block; bottom:4px; height:3px; background:#1556b8; }
.nav-location { padding-left: 24px; border-left: 1px solid #d9e1ed; font-size: .94rem; }
.nav-location svg { width: 42px; height: 42px; padding: 10px; margin:0; color:#1556b8; border-radius: 13px; background:#f6f9ff; box-shadow:0 0 0 1px #e4ebf5; }
.nav-results { min-width: 290px; min-height: 68px; border-radius: 14px; background: linear-gradient(135deg,#10b83f,#07942c); box-shadow: 0 14px 24px rgba(7,148,44,.22); font-size: 1rem; }
.nav-results:hover { background: linear-gradient(135deg,#12c847,#078429); }

.site-header .primary-menu a { background: transparent !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; color: #12254a !important; }
.site-header .primary-menu a:hover, .site-header .primary-menu a:focus-visible { background: transparent !important; color: #1556b8 !important; }
.site-header .primary-menu a::after { display: block !important; }
.site-header .primary-menu a[href="#top"] { color: #1556b8 !important; }
.site-header .primary-menu a[href="#top"]::after { transform: scaleX(1) !important; }
.site-header .nav-location span { white-space: nowrap; }
.site-header .nav-location b { padding-inline: 7px; color: #90a0b8; font-weight: 500; }
.site-header .utility-socials a { background: transparent; }

@media (min-width: 721px) and (max-width: 1080px) {
  .hero {
    height: auto;
    min-height: 0;
    display: block;
  }

  .hero-inner {
    height: auto;
    min-height: 0;
    padding-top: 18px;
  }
}

@media (max-width: 720px) {
  .utility-bar { display: none; }

  body {
    background: #FFFFFF;
  }

  .hero {
    margin: 0;
    height: auto;
    border-radius: 0;
    min-height: auto;
    display: block;
    overflow: hidden;
  }

  .site-header {
    top: 0;
  }

  .hero-visual {
    display: none;
  }

  .brand {
    width: 218px;
    height: 48px;
  }

  .nav-shell {
    width: calc(100% - 28px);
    min-height: 88px;
    padding: 0 20px;
    border-radius: 0 0 24px 24px;
  }

  .primary-menu {
    display: none;
  }

  .primary-menu.is-open {
    display: grid;
  }

  .primary-menu,
  .primary-menu.is-open {
    position: fixed;
    inset: 96px 14px auto;
    z-index: 130;
    gap: 0;
    padding: 8px 18px;
    border: 1px solid #e6edf8;
    border-radius: 20px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 42px rgba(13, 39, 78, .16);
    backdrop-filter: blur(16px);
    transform: none;
  }

  .primary-menu a,
  .site-header .primary-menu a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 4px;
    color: #102854 !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid #edf1f7 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 1rem;
    font-weight: 700;
  }

  .primary-menu a:last-child { border-bottom: 0 !important; }
  .primary-menu a:hover,
  .primary-menu a:focus-visible { color: #1761d8 !important; transform: none; }
  .primary-menu a::after { display: none !important; }

  .menu-toggle {
    position: relative;
    display: grid;
    place-items: center;
    background: #f7faff;
    border: 1px solid #e3ebf7;
    box-shadow: 0 8px 20px rgba(13, 39, 78, .1);
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    width: 20px;
    height: 2px;
    margin: 0;
    background: #102854;
  }

  .menu-toggle span:first-child { transform: translateY(-4px); }
  .menu-toggle span:nth-child(2) { transform: translateY(4px); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }

  .nav-meta {
    display: none;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    margin-left: auto;
  }

  .hero-inner {
    width: calc(100% - 28px);
    height: auto;
    min-width: 0;
    padding-top: 14px;
    padding-bottom: 40px;
  }

  .hero-content {
    width: 100%;
    min-width: 0;
    padding-bottom: 48px;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.8rem, 12vw, 3.8rem);
    line-height: 1.1;
    text-align: center;
  }

  .hero-copy {
    font-size: 1.05rem;
    text-align: center;
    max-width: 100%;
    margin-inline: auto;
  }

  .button-whatsapp {
    width: 100%;
    min-width: 0;
  }

  .stats-card {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 24px;
  }

  .stats-media {
    height: 180px;
  }

  .stats-list {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .stats-list div {
    padding: 0;
    border-left: 0;
  }

  .hero-visual {
    min-height: 0;
    margin-top: 0;
  }

  .hero-slide {
    right: auto;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    bottom: auto;
  }

  .floating-card {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 0.86rem;
  }

  .floating-card svg {
    width: 24px;
    height: 24px;
  }

  .float-one {
    top: 12%;
    left: 2%;
  }

  .float-two {
    top: 40%;
    left: 0;
  }

  .float-three {
    right: 0;
    bottom: 14%;
  }

  .units-section {
    padding: 72px 0 64px;
  }

  .units-inner {
    width: calc(100% - 28px);
  }

  .units-copy h2 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .units-copy p {
    font-size: 1rem;
  }

  .units-link {
    flex-wrap: wrap;
  }

  .units-link svg {
    width: 64px;
    margin-left: 8px;
  }

  .units-note {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
  }

  .units-video-card {
    width: 100%;
  }

  .units-video-card::before {
    inset: 12% -4% -8% 8%;
    border-radius: 24px;
  }

  .units-video-card button {
    min-height: 250px;
    padding: 32px;
    border-radius: 24px;
  }

  .units-video-card img {
    width: min(260px, 72%);
  }

  .units-video-card span {
    width: 68px;
    height: 68px;
  }

  .units-video-card svg {
    width: 34px;
    height: 34px;
  }

  .unit-cards {
    margin-top: 44px;
    gap: 22px;
  }

  .unit-card {
    padding: 22px;
    border-radius: 24px;
  }

  .unit-title-row {
    gap: 16px;
    padding-bottom: 22px;
  }

  .unit-pin {
    width: 64px;
    height: 64px;
  }

  .unit-pin svg {
    width: 36px;
    height: 36px;
  }

  .unit-title-row p {
    font-size: 1rem;
  }

  .unit-title-row h3 {
    font-size: 1.65rem;
  }

  .unit-info-grid,
  .unit-actions {
    grid-template-columns: 1fr;
  }

  .unit-info-grid {
    padding: 24px 0;
  }

  .unit-button {
    min-height: 56px;
    font-size: 1.02rem;
  }

  .experience-section {
    padding: 72px 0 70px;
  }

  .experience-inner {
    width: calc(100% - 28px);
    gap: 44px;
  }

  .experience-media {
    min-height: 560px;
  }

  .main-photo {
    width: 100%;
    height: 430px;
    border-radius: 24px;
  }

  .inset-photo {
    width: 68%;
    height: 150px;
    border-width: 5px;
    border-radius: 22px;
  }

  .experience-badge {
    right: 14px;
    bottom: 0;
    width: min(220px, 68%);
    min-height: 168px;
    padding: 34px 28px 24px;
    border-radius: 24px;
  }

  .experience-badge span {
    top: -28px;
    left: 26px;
    width: 62px;
    height: 62px;
  }

  .experience-badge svg {
    width: 34px;
    height: 34px;
  }

  .experience-badge strong {
    font-size: 2.15rem;
  }

  .experience-badge p {
    font-size: 1.05rem;
  }

  .experience-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.15rem);
  }

  .section-dots {
    margin: 24px 0;
  }

  .experience-copy > p {
    font-size: 1rem;
  }

  .experience-list {
    margin: 30px 0 32px;
  }

  .experience-list li {
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
  }

  .experience-list span {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .experience-list svg {
    width: 30px;
    height: 30px;
  }

  .experience-cta {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 1.05rem;
  }

  .reports-banner {
    min-height: 260px;
  }

  .reports-banner img {
    object-position: 70% center;
  }

  .reports-banner-inner {
    width: calc(100% - 28px);
  }

  .reports-banner h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .exams-section {
    padding: 70px 0 76px;
  }

  .exams-inner {
    width: calc(100% - 28px);
  }

  .exams-head h2 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  .exam-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .exam-card {
    min-height: 282px;
    padding: 28px 22px 22px;
    border-radius: 18px;
  }

  .exam-image-card {
    grid-column: span 1;
    min-height: 260px;
  }

  .why-section {
    min-height: auto;
  }

  .why-image {
    min-height: 430px;
  }

  .why-image img {
    object-position: 48% center;
  }

  .why-content {
    padding: 58px 24px 68px;
  }

  .why-kicker {
    margin-bottom: 20px;
    font-size: 0.88rem;
  }

  .why-content h2 {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }

  .why-content > p:not(.why-kicker) {
    margin-top: 24px;
    font-size: 1rem;
  }

  .why-metrics {
    margin-top: 38px;
    gap: 24px;
  }

  .testimonials-section {
    padding: 72px 0 78px;
  }

  .testimonials-inner {
    width: calc(100% - 28px);
  }

  .testimonials-head {
    margin-bottom: 34px;
    text-align: left;
  }

  .testimonials-head h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .testimonials-head p:not(.testimonials-kicker) {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 24px;
    border-radius: 24px;
    min-height: 260px;
  }

  .exam-icon {
    margin-top: 46px;
  }
}

.whatsapp-cta-section {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.whatsapp-cta-card {
  position: relative;
  width: 100%;
  min-height: 900px;
  margin: 0;
  overflow: hidden;
  display: block;
  padding: 112px max(6vw, 28px) 64px;
  color: #13203a;
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.08), transparent 12%),
    radial-gradient(circle at 77% 30%, rgba(164, 210, 232, 0.18), transparent 18%),
    radial-gradient(circle at 50% 84%, rgba(37, 99, 235, 0.1), transparent 22%),
    linear-gradient(135deg, #fff 0%, #f8fbff 52%, #fff 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.whatsapp-cta-card::before,
.whatsapp-cta-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.whatsapp-cta-card::before {
  inset: 0;
  background:
    linear-gradient(30deg, transparent 0 24px, rgba(37, 99, 235, 0.08) 25px 26px, transparent 27px 72px),
    linear-gradient(150deg, transparent 0 24px, rgba(37, 99, 235, 0.08) 25px 26px, transparent 27px 72px),
    radial-gradient(circle, rgba(37, 99, 235, 0.12) 0 4px, transparent 5px);
  background-size: 132px 114px, 132px 114px, 132px 114px;
  background-position: -42px 14px, -42px 14px, -42px 14px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 30%, transparent 70%, #000 100%);
  opacity: 0.42;
}

.whatsapp-cta-card::after {
  left: -6vw;
  right: -6vw;
  bottom: 146px;
  height: 220px;
  background:
    repeating-radial-gradient(ellipse at center, rgba(37, 99, 235, 0.2) 0 1px, transparent 1px 8px);
  opacity: 0.32;
  transform: rotate(-2deg);
  mask-image: linear-gradient(90deg, #000 0%, transparent 48%, #000 100%);
}

.whatsapp-cta-copy,
.whatsapp-benefits {
  position: relative;
  z-index: 1;
}

.whatsapp-cta-copy {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.whatsapp-kicker {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 34px;
  color: #1261d8;
  background: rgba(236, 245, 255, 0.86);
  border: 1px solid rgba(205, 224, 249, 0.84);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(20, 43, 82, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.whatsapp-kicker svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-cta-copy h2 {
  max-width: 970px;
  margin: 28px auto 0;
  color: #11213e;
  font-family: Poppins, Manrope, system-ui, sans-serif;
  font-size: clamp(3.8rem, 5.7vw, 6.45rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: 0;
}

.whatsapp-cta-copy h2 span {
  color: #1761d8;
}

.whatsapp-cta-copy > p:not(.whatsapp-safe-note) {
  max-width: 720px;
  margin: 26px auto 0;
  color: #526489;
  font-size: clamp(1.24rem, 1.7vw, 1.85rem);
  line-height: 1.35;
  font-weight: 500;
}

.whatsapp-units {
  width: min(100%, 1080px);
  margin: 48px auto 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.whatsapp-unit-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 30px 34px;
  color: #14213d;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(200, 219, 244, 0.9);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(20, 43, 82, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-unit-card:hover,
.whatsapp-unit-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 30px 84px rgba(20, 43, 82, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.whatsapp-unit-card .unit-pin {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: #1261d8;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(164, 210, 232, 0.22));
  border-radius: 999px;
}

.whatsapp-unit-card .unit-pin svg {
  width: 48px;
  height: 48px;
  color: #1261d8;
  fill: currentColor;
}

.whatsapp-unit-card .unit-copy {
  display: grid;
  justify-items: start;
  gap: 4px;
  color: #536487;
  font-size: 1.54rem;
  line-height: 1.1;
  font-weight: 500;
}

.whatsapp-unit-card .unit-copy strong {
  color: #10203c;
  font-size: 1.78rem;
  font-weight: 800;
}

.whatsapp-unit-card .unit-arrow {
  width: 40px;
  height: 40px;
  color: #1261d8;
  fill: currentColor;
}

.whatsapp-cta-button {
  min-width: 610px;
  min-height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #fff;
  background: linear-gradient(135deg, #22d34b 0%, #08ae31 100%);
  border-radius: 999px;
  box-shadow: 0 28px 72px rgba(24, 180, 62, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.28) inset;
  font-size: 1.75rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-cta-button svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.whatsapp-cta-button:hover,
.whatsapp-cta-button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 34px 84px rgba(24, 180, 62, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.34) inset;
}

.whatsapp-safe-note {
  margin: 28px auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #607097;
  font-size: 1.12rem;
  font-weight: 500;
}

.whatsapp-safe-note svg {
  width: 25px;
  height: 25px;
  color: #1761d8;
  fill: currentColor;
}

.whatsapp-benefits {
  width: min(100% - 96px, 1600px);
  min-height: 178px;
  margin: 62px auto 0;
  padding: 34px 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(218, 230, 247, 0.92);
  border-radius: 30px;
  box-shadow: 0 28px 90px rgba(20, 43, 82, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.whatsapp-benefits div {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 22px;
  padding: 0 34px;
  border-left: 1px solid rgba(37, 99, 235, 0.16);
}

.whatsapp-benefits div:first-child {
  border-left: 0;
}

.whatsapp-benefits span {
  grid-row: span 2;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #1761d8;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(164, 210, 232, 0.18));
  border-radius: 20px;
}

.whatsapp-benefits svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.whatsapp-benefits strong {
  color: #1a315f;
  font-size: 1.18rem;
  line-height: 1.18;
  font-weight: 800;
}

.whatsapp-benefits small {
  color: #637294;
  font-size: 0.98rem;
  line-height: 1.32;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .whatsapp-cta-card {
    min-height: auto;
    padding: 86px 28px 48px;
  }

  .whatsapp-cta-copy h2 {
    font-size: clamp(3rem, 7vw, 5.2rem);
  }

  .whatsapp-units {
    gap: 24px;
  }

  .whatsapp-unit-card {
    padding: 26px;
  }

  .whatsapp-benefits {
    width: min(100% - 48px, 1180px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .whatsapp-benefits div:nth-child(odd) {
    border-left: 0;
  }

  .footer-container {
    width: min(100% - 64px, 1760px);
  }

  .footer-top {
    padding: 88px 0 84px;
  }

  .footer-top .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 46px;
  }

  .footer-col {
    padding-left: 0;
    border-left: 0;
  }

  .footer-newsletter {
    max-width: 460px;
  }
}

@media (max-width: 820px) {
  .video-modal {
    padding: 18px;
  }

  .video-modal-frame {
    border-radius: 18px;
  }

  .video-modal-close {
    top: -14px;
    right: -8px;
    width: 46px;
    height: 46px;
  }

  .whatsapp-cta-card {
    padding: 72px 18px 38px;
  }

  .whatsapp-kicker {
    min-height: 46px;
    padding: 0 20px;
    font-size: 0.86rem;
  }

  .whatsapp-kicker svg {
    width: 23px;
    height: 23px;
  }

  .whatsapp-cta-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .whatsapp-cta-copy > p:not(.whatsapp-safe-note) {
    font-size: 1.05rem;
  }

  .whatsapp-units {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 34px auto 26px;
  }

  .whatsapp-unit-card {
    min-height: 118px;
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
  }

  .whatsapp-unit-card .unit-pin {
    width: 68px;
    height: 68px;
  }

  .whatsapp-unit-card .unit-pin svg {
    width: 38px;
    height: 38px;
    color: #1261d8;
  }

  .whatsapp-unit-card .unit-copy {
    font-size: 1.1rem;
  }

  .whatsapp-unit-card .unit-copy strong {
    font-size: 1.38rem;
  }

  .whatsapp-unit-card .unit-arrow {
    width: 32px;
    height: 32px;
  }

  .whatsapp-cta-button {
    width: 100%;
    min-width: 0;
    min-height: 72px;
    gap: 14px;
    font-size: 1.2rem;
  }

  .whatsapp-cta-button svg {
    width: 30px;
    height: 30px;
  }

  .whatsapp-safe-note {
    align-items: flex-start;
    font-size: 0.94rem;
  }

  .whatsapp-benefits {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 42px;
    padding: 14px 22px;
    border-radius: 24px;
  }

  .whatsapp-benefits div,
  .whatsapp-benefits div:nth-child(odd) {
    min-height: 98px;
    padding: 16px 0;
    border-left: 0;
    border-top: 1px solid rgba(37, 99, 235, 0.14);
  }

  .whatsapp-benefits div:first-child {
    border-top: 0;
  }

  .whatsapp-benefits span {
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }

  .whatsapp-benefits svg {
    width: 30px;
    height: 30px;
  }

  .footer-container {
    width: calc(100% - 36px);
  }

  .footer-top {
    padding: 64px 0 58px;
  }

  .footer-top .footer-container {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    width: min(300px, 100%);
    height: 68px;
    margin-bottom: 24px;
  }

  .footer-brand-box,
  .footer-newsletter {
    max-width: none;
  }

  .footer-brand-box p {
    font-size: 1.02rem;
  }

  .footer-col {
    min-height: auto;
  }

  .footer-col h3,
  .footer-newsletter h3 {
    margin-bottom: 22px;
  }

  .footer-col ul {
    gap: 16px;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    min-height: 62px;
    border-radius: 14px;
  }

  .footer-bottom {
    padding: 38px 0 34px;
  }

  .footer-bottom .footer-container {
    display: grid;
    gap: 28px;
  }

  .footer-copyright {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
  }

  .footer-copyright > svg {
    width: 54px;
    height: 54px;
  }

  .footer-whatsapp {
    display: flex;
    justify-self: start;
  }

  .footer-whatsapp p {
    min-height: 50px;
    padding: 0 16px;
    font-size: 0.82rem;
  }

  .footer-whatsapp > svg {
    width: 58px;
    height: 58px;
    padding: 14px;
    box-shadow: 0 16px 36px rgba(24, 180, 62, 0.34), 0 0 0 12px rgba(31, 202, 70, 0.12);
  }
}

.fixed-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2a3344;
  filter: drop-shadow(0 18px 32px rgba(2, 33, 76, 0.18));
}

.fixed-whatsapp span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(8, 34, 70, 0.14);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.fixed-whatsapp strong {
  margin-left: 4px;
  color: #17233d;
  font-weight: 900;
}

.fixed-whatsapp i {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #24d94b, #12b232);
  box-shadow: 0 18px 42px rgba(24, 180, 62, 0.34);
  animation: fixed-whatsapp-pulse 1.75s ease-in-out infinite;
}

.fixed-whatsapp i::before,
.fixed-whatsapp i::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(31, 202, 70, 0.34);
  animation: fixed-whatsapp-ring 1.75s ease-out infinite;
}

.fixed-whatsapp i::after {
  animation-delay: 0.55s;
}

.fixed-whatsapp svg {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.fixed-whatsapp:hover i,
.fixed-whatsapp:focus-visible i {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.04);
}

@keyframes fixed-whatsapp-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 18px 42px rgba(24, 180, 62, 0.34);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 22px 58px rgba(24, 180, 62, 0.52);
  }
}

@keyframes fixed-whatsapp-ring {
  0% {
    opacity: 0.8;
    transform: scale(0.86);
  }
  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

@media (max-width: 720px) {
  .fixed-whatsapp {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .fixed-whatsapp span {
    max-width: calc(100vw - 104px);
    min-height: 38px;
    padding: 0 12px;
    overflow: hidden;
    font-size: 0.74rem;
    text-overflow: ellipsis;
  }

  .fixed-whatsapp i {
    width: 58px;
    height: 58px;
  }

  .fixed-whatsapp svg {
    width: 32px;
    height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fixed-whatsapp i,
  .fixed-whatsapp i::before,
  .fixed-whatsapp i::after {
    animation: none !important;
  }
}

/* Mantém todas as chamadas de WhatsApp visíveis com um convite sutil ao clique. */
.button-whatsapp,
.unit-button.whatsapp,
.experience-cta,
.whatsapp-unit-card,
.whatsapp-cta-button,
.footer-whatsapp {
  animation: whatsapp-gentle-blink 2.6s ease-in-out infinite;
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible,
.unit-button.whatsapp:hover,
.unit-button.whatsapp:focus-visible,
.experience-cta:hover,
.experience-cta:focus-visible,
.whatsapp-unit-card:hover,
.whatsapp-unit-card:focus-visible,
.whatsapp-cta-button:hover,
.whatsapp-cta-button:focus-visible,
.footer-whatsapp:hover,
.footer-whatsapp:focus-visible {
  animation-play-state: paused;
  opacity: 1;
}

@keyframes whatsapp-gentle-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.86;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button-whatsapp,
  .unit-button.whatsapp,
  .experience-cta,
  .whatsapp-unit-card,
  .whatsapp-cta-button,
  .footer-whatsapp {
    animation: none !important;
  }
}
