:root {
  --brand: #087f99;
  --brand-dark: #076b80;
  --brand-gradient: linear-gradient(135deg, #087f99 0%, #0a7690 100%);
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --panel: #ffffff;
  --icon-bg: rgba(8, 127, 153, 0.14);
  --section-y: clamp(76px, 8vw, 112px);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(26, 184, 216, 0.07), transparent 28rem),
    radial-gradient(circle at 88% 26%, rgba(37, 202, 235, 0.08), transparent 24rem),
    #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button {
  cursor: pointer;
}

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

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

button,
a {
  touch-action: manipulation;
}

h1,
h2,
h3,
p,
span,
strong {
  overflow-wrap: anywhere;
}

main,
section,
.container,
.hero-grid > *,
.about-grid > *,
.hospitals-layout > * {
  min-width: 0;
}

:focus-visible {
  outline: 3px solid rgba(17, 152, 180, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

img {
  display: block;
  max-width: 100%;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

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

  .btn-primary {
    animation: none;
  }

  .operator-track {
    animation: none;
  }
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1120px, calc(100% - 40px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  line-height: 0;
}

.logo img {
  width: clamp(150px, 16vw, 210px);
  height: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 550;
}

.desktop-nav a,
.desktop-nav button,
.mobile-nav a,
.mobile-nav button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}

.desktop-nav .active,
.desktop-nav a:hover,
.desktop-nav button:hover {
  color: var(--ink);
}

.dropdown {
  position: relative;
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  width: calc(100% + 36px);
  height: 18px;
}

.dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-chevron {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  transition: transform 180ms ease;
}

.dropdown:hover > button .dropdown-chevron,
.dropdown:focus-within > button .dropdown-chevron,
.dropdown.open > button .dropdown-chevron,
.mobile-plans-toggle[aria-expanded="true"] .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  z-index: 2;
  top: calc(100% + 14px);
  left: 50%;
  width: 212px;
  transform: translateX(-50%);
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, visibility 160ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 11px 14px;
  text-align: left;
  border-radius: 10px;
  color: #374151;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  color: var(--brand);
  background: #f8fafc;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: #f1f5f9;
  color: var(--ink);
}

.icon-btn svg {
  width: 23px;
  height: 23px;
}

.mobile-nav {
  display: none;
}

.mobile-plans {
  display: grid;
}

.mobile-plan-items {
  display: grid;
  gap: 2px;
  margin: 2px 0 6px;
  padding: 6px;
  border-radius: 12px;
  background: #f8fafc;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: 15px;
  font-weight: 650;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn .wa-icon {
  flex: 0 0 auto;
}

.arrow-icon,
.wa-icon {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.arrow-icon {
  width: 17px;
  height: 17px;
  transform: translateY(0.5px);
  stroke: currentColor;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 12px 26px rgba(26, 184, 216, 0.22);
  animation: cta-pulse 2.8s ease-in-out infinite;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  animation-play-state: paused;
  box-shadow: 0 14px 30px rgba(26, 184, 216, 0.32);
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow:
      0 12px 26px rgba(26, 184, 216, 0.2),
      0 0 0 0 rgba(26, 184, 216, 0);
  }

  50% {
    box-shadow:
      0 14px 30px rgba(26, 184, 216, 0.3),
      0 0 0 7px rgba(26, 184, 216, 0.08);
  }
}

.btn-outline {
  color: #076b80;
  border-color: rgba(26, 184, 216, 0.24);
  background: rgba(26, 184, 216, 0.15);
  box-shadow: 0 5px 16px rgba(26, 184, 216, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: #065b6d;
  border-color: rgba(26, 184, 216, 0.34);
  background: rgba(26, 184, 216, 0.21);
  box-shadow: 0 8px 20px rgba(26, 184, 216, 0.09);
}

.btn-light {
  color: #334155;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.btn-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}

.compact {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 14px;
}

.hero {
  padding: clamp(64px, 8vw, 112px) 0 clamp(76px, 9vw, 126px);
  background: #fff;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 84px);
  align-items: center;
}

.availability {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 15px;
  color: #1a1a2e;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 26, 46, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 13px;
}

.availability span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4ade80;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero p {
  max-width: 500px;
  color: #4a5568;
  font-size: 16px;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.metric-card {
  position: absolute;
  left: -24px;
  bottom: -22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.metric-card .metric-icon {
  display: flex;
}

.metric-icon {
  flex: 0 0 auto;
}

.metric-card strong {
  font-size: 16px;
}

.operator-strip {
  padding: 44px 0;
  overflow: hidden;
  background: #fff;
}

.operator-strip p,
.partner-title {
  margin-bottom: 26px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.operator-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  animation: marquee 40s linear infinite;
}

.operator-track > .operator-logo {
  display: flex;
  width: 172px;
  height: 76px;
  flex: 0 0 172px;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.operator-logo img {
  display: block;
  width: auto;
  max-width: 128px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  image-rendering: auto;
}

.operator-logo.brand-bradesco img,
.operator-logo.brand-medsenior img,
.operator-logo.brand-santa-helena img {
  max-width: 142px;
  max-height: 40px;
}

.operator-logo.brand-sami img {
  max-width: 42px;
  max-height: 42px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.stats {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.band {
  padding: var(--section-y) 0;
}

.band.slim {
  padding: clamp(52px, 6vw, 72px) 0;
  border-bottom: 1px solid #f1f5f9;
}

.white {
  background: #fff;
}

.soft {
  background: linear-gradient(180deg, #f8fafc 0%, #eef7fa 100%);
}

.pale {
  background: #f8fafc;
}

.soft-gray {
  background: #f8fafc;
}

.section-heading {
  max-width: 620px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.section-heading.center,
.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.final-cta h2,
.split-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p,
.split-heading p,
.final-cta p {
  color: #4a5568;
  line-height: 1.7;
}

.steps-grid {
  --step-circle: 76px;
  --step-border: 8px;
  --step-circle-center: calc((var(--step-circle) + (var(--step-border) * 2)) / 2);
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 46px;
  padding-top: var(--step-circle-center);
}

.steps-grid::before {
  content: none;
}

.step {
  position: relative;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc((var(--step-circle-center) + 18px)) 28px 34px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.74);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.step strong {
  position: absolute;
  top: calc(-1 * var(--step-circle-center));
  left: 50%;
  width: var(--step-circle);
  height: var(--step-circle);
  display: grid;
  place-items: center;
  transform: translate(-50%, 0);
  margin-bottom: 0;
  border: var(--step-border) solid #f8fafc;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 8px 26px rgba(26, 184, 216, 0.24);
  font-size: 22px;
}

.step h3 {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}

.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.plan-grid,
.feature-grid,
.testimonial-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card,
.feature-card,
.testimonial {
  min-height: 246px;
  padding: 28px 26px;
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  text-align: left;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.plan-card,
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.plan-card:hover,
.feature-card:hover,
.testimonial:hover,
.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 12px 34px rgba(31, 165, 201, 0.12);
}

.plan-card.featured {
  border-color: rgba(26, 184, 216, 0.42);
  background: linear-gradient(180deg, rgba(240, 251, 254, 0.92) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.mini-icon,
.metric-icon,
.hero-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: var(--icon-bg);
  line-height: 0;
  overflow: hidden;
}

.mini-icon,
.metric-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 16px;
}

.metric-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  border-radius: 999px;
}

.mini-icon svg,
.metric-icon svg,
.hero-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
}

.hero-icon svg {
  width: 30px;
  height: 30px;
}

.inline-icon,
.contact-icon,
.check-icon {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.inline-icon,
.contact-icon {
  width: 18px;
  height: 18px;
  color: var(--brand);
}

.inline-icon svg,
.contact-icon svg {
  width: 15px;
  height: 15px;
  display: block;
  stroke: currentColor;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.check-icon:not(.light) {
  background: rgba(255, 255, 255, 0.18);
}

.check-icon svg {
  width: 13px;
  height: 13px;
  display: block;
  stroke: currentColor;
  stroke-width: 3;
}

[data-icon="mail"] { --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Zm8 8.2L4.7 7H4v.4l8 6.8 8-6.8V7h-.7L12 13.2Z'/%3E%3C/svg%3E"); }
[data-icon="phone"] { --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 2.8 9 2.2a2 2 0 0 1 2.27 1.1l1.1 2.45a2 2 0 0 1-.45 2.26l-1.18 1.18a12.4 12.4 0 0 0 4.07 4.07l1.18-1.18a2 2 0 0 1 2.26-.45l2.45 1.1a2 2 0 0 1 1.1 2.27l-.6 2.4a3 3 0 0 1-3.25 2.25C9.82 18.8 3.2 12.18 2.35 4.05A3 3 0 0 1 4.6.8l2 .2Z'/%3E%3C/svg%3E"); }

[data-icon="heart"] { --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s-7.2-4.45-9.6-8.7C.55 9.02 2.32 5 6.1 5c2.1 0 3.45 1.15 3.9 2.05C10.45 6.15 11.8 5 13.9 5c3.78 0 5.55 4.02 3.7 7.3C19.2 16.55 12 21 12 21z'/%3E%3C/svg%3E"); }
[data-icon="users"] { --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm0 2c-4.4 0-7 2.1-7 4.4V19c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.6C16 15.1 13.4 13 9 13Zm8.5-1.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm.2 1.5c-.8 0-1.55.08-2.22.24 1.58.94 2.52 2.36 2.52 4.16V19c0 .35-.06.69-.17 1H21c.55 0 1-.45 1-1v-1.2c0-2-1.8-4.8-4.3-4.8Z'/%3E%3C/svg%3E"); }
[data-icon="briefcase"] { --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 4a3 3 0 0 0-3 3v1H4a2 2 0 0 0-2 2v3h20v-3a2 2 0 0 0-2-2h-2V7a3 3 0 0 0-3-3H9Zm7 4H8V7a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v1ZM2 15v3a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3h-8v1a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-1H2Z'/%3E%3C/svg%3E"); }
[data-icon="smile"] { --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22a10 10 0 1 0 0-20 10 10 0 0 0 0 20ZM8 9.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm5 0a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm-5.1 4.25a1 1 0 0 1 1.36.38C9.8 15.08 10.78 16 12 16s2.2-.92 2.74-1.87a1 1 0 1 1 1.74.98C15.6 16.66 14.08 18 12 18s-3.6-1.34-4.48-2.89a1 1 0 0 1 .38-1.36Z'/%3E%3C/svg%3E"); }
[data-icon="shield"] { --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5.4V11c0 5.05 3.42 9.75 8 11 4.58-1.25 8-5.95 8-11V5.4L12 2Zm4.7 7.7-5.5 5.5a1 1 0 0 1-1.4 0l-2.5-2.5a1 1 0 1 1 1.4-1.4l1.8 1.79 4.8-4.79a1 1 0 1 1 1.4 1.4Z'/%3E%3C/svg%3E"); }
[data-icon="chart"] { --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 19h16a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1V4a1 1 0 1 1 2 0v15Zm3-2a1 1 0 0 1-1-1v-5a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1Zm5 0a1 1 0 0 1-1-1V7a1 1 0 1 1 2 0v9a1 1 0 0 1-1 1Zm5 0a1 1 0 0 1-1-1v-3a1 1 0 1 1 2 0v3a1 1 0 0 1-1 1Z'/%3E%3C/svg%3E"); }
[data-icon="file"] { --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2h8l4 4v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm7 1.8V7h3.2L13 3.8ZM8 11a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2H8Zm0 4a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2H8Z'/%3E%3C/svg%3E"); }
[data-icon="pin"] { --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22s7-6.05 7-12a7 7 0 1 0-14 0c0 5.95 7 12 7 12Zm0-9a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z'/%3E%3C/svg%3E"); }
[data-icon="money"] { --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6Zm3 2a2 2 0 0 1-1 1.73v4.54A2 2 0 0 1 6 16h12a2 2 0 0 1 1-1.73V9.73A2 2 0 0 1 18 8H6Zm6 7a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E"); }
[data-icon="star"] { --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 2 2.8 6.1 6.7.78-4.95 4.55 1.32 6.57L12 16.66 6.13 20l1.32-6.57L2.5 8.88l6.7-.78L12 2Z'/%3E%3C/svg%3E"); }

.plan-card h3,
.feature-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
}

.plan-card p,
.feature-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.plan-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.plan-card > span:last-child {
  margin-top: auto;
}

.hospitals-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 48px;
  align-items: start;
}

.hospital-list {
  display: grid;
  gap: 16px;
}

.hospital-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04);
}

.hospital-card img {
  width: 128px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
}

.hospital-card:nth-child(2) img {
  object-position: 56% 48%;
}

.hospital-card b {
  display: inline-block;
  margin-bottom: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(26, 184, 216, 0.12);
  color: var(--ink);
  font-size: 12px;
}

.hospital-card span {
  display: block;
  margin-bottom: 4px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hospital-card h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.hospital-card p {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.network-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.network-callout p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.about {
  padding: var(--section-y) 0;
  color: #fff;
  background: var(--brand-gradient);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.portrait-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.portrait-grid figure {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 18px;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.2));
}

.portrait-grid figure:nth-child(2) {
  margin-top: 42px;
}

.portrait-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.52), transparent);
}

.portrait-grid span,
.portrait-grid strong {
  display: block;
}

.portrait-grid span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.about h2 {
  max-width: 580px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.18;
}

.about p,
.about li {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.about ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.about li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 306px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.testimonial > svg,
.testimonial > i {
  color: rgba(26, 184, 216, 0.42);
}

.testimonial > i {
  font-size: 42px;
  font-family: Georgia, serif;
  font-style: normal;
  line-height: 0.8;
}

.testimonial p {
  flex: 1;
  color: #1a1a2e;
  line-height: 1.75;
}

.testimonial > div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.testimonial span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
}

.testimonial small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.split-heading > div {
  max-width: 650px;
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mentor-grid article {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-width: 0;
  padding: 8px 0;
}

.mentor-grid .mentor-icon {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(8, 127, 153, 0.16);
  border-radius: 12px;
  background: rgba(8, 127, 153, 0.1);
  color: var(--brand);
  line-height: 0;
}

.mentor-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  stroke: currentColor;
}

.mentor-grid h3 {
  margin: 1px 0 6px;
  font-size: 16px;
  line-height: 1.35;
}

.mentor-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.final-cta {
  padding: clamp(82px, 9vw, 118px) 0;
  background: linear-gradient(160deg, #f0fafb 0%, #fff 100%);
}

.final-cta .container {
  max-width: 680px;
}

.center-row {
  justify-content: center;
}

.product-hero {
  padding: clamp(64px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 20%, rgba(8, 127, 153, 0.1), transparent 24rem),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}

.product-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
}

.product-hero-copy > p {
  max-width: 650px;
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

.product-hero-copy > small {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.product-trust-icon {
  width: 22px;
  height: 22px;
  display: grid;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
}

.product-trust-icon svg {
  width: 13px;
  height: 13px;
  stroke-width: 3;
}

.product-visual {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(8, 127, 153, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.product-visual-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 18px;
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 14px 30px rgba(8, 127, 153, 0.22);
}

.product-visual-icon svg {
  width: 31px;
  height: 31px;
}

.product-visual > strong {
  display: block;
  margin-bottom: 8px;
  font-size: 23px;
}

.product-visual > p {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.65;
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.product-highlights span {
  min-width: 0;
}

.product-highlights b,
.product-highlights small {
  display: block;
}

.product-highlights b {
  margin-bottom: 5px;
  color: var(--brand-dark);
  font-size: 18px;
}

.product-highlights small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.page-hero {
  padding: clamp(74px, 8vw, 104px) 24px clamp(82px, 9vw, 116px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(26, 184, 216, 0.11), transparent 26rem),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  text-align: center;
}

.plan-switcher {
  position: sticky;
  top: 78px;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.plan-switcher .container {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
  overflow-x: auto;
}

.plan-switcher a {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.plan-switcher a.active {
  border-color: rgba(26, 184, 216, 0.35);
  color: var(--brand-dark);
  background: rgba(26, 184, 216, 0.12);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 auto 22px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 790px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  border-radius: 18px;
}

.hero-icon.gradient {
  color: #fff;
  background: var(--brand-gradient);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.partner-grid span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #94a3b8;
  font-weight: 850;
  text-align: center;
  line-height: 1.25;
}

.feature-grid {
  margin-bottom: clamp(58px, 7vw, 82px);
}

.product-benefits .feature-grid {
  margin-bottom: 0;
}

.feature-card {
  text-align: center;
  background: rgba(248, 250, 252, 0.76);
}

.product-benefits .feature-card {
  align-items: flex-start;
  min-height: 260px;
  text-align: left;
}

.product-benefits .feature-card .mini-icon {
  margin-bottom: 28px;
}

.product-benefits .feature-card p {
  margin-bottom: 0;
}

.product-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.product-process-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 4px 34px;
}

.product-process-grid article + article {
  border-left: 1px solid rgba(148, 163, 184, 0.28);
}

.product-process-grid span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--brand-gradient);
  font-weight: 800;
}

.product-process-grid h3 {
  margin: 2px 0 8px;
  font-size: 18px;
}

.product-process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-conversion {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.product-form-intro {
  position: sticky;
  top: 170px;
  padding-top: 18px;
}

.product-form-intro h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.15;
}

.product-form-intro > p {
  color: var(--muted);
  line-height: 1.7;
}

.product-form-intro ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.product-form-intro li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 14px;
  font-weight: 650;
}

.check-icon.solid {
  background: rgba(8, 127, 153, 0.14);
  color: var(--brand-dark);
}

.product-conversion .lead-form {
  max-width: none;
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-grid details {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
}

.faq-grid summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-grid summary svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: var(--brand);
  transition: transform 180ms ease;
}

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

.faq-grid details p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lead-form {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lead-form h2 {
  margin-bottom: 8px;
  font-size: 30px;
  text-align: center;
}

.lead-form > p {
  margin-bottom: 28px;
  color: var(--muted);
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: #374151;
  font-size: 14px;
  font-weight: 650;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #dbe3ed;
  border-radius: 12px;
  outline: 0;
  background: #f8fafc;
  padding: 13px 14px;
  color: var(--ink);
  font-size: 16px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 184, 216, 0.15);
}

.lead-form .btn {
  width: 100%;
  margin-top: 12px;
  border-radius: 12px;
}

.dental-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(56px, 7vw, 82px);
  padding: 40px;
  border-radius: 28px;
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 20px 45px rgba(26, 184, 216, 0.22);
}

.dental-callout p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dental-callout h2 {
  margin-bottom: 14px;
}

.dental-callout span {
  display: block;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}

.dental-callout ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.dental-callout li {
  display: flex;
  gap: 8px;
  align-items: start;
}

.dental-callout > div:last-child {
  display: grid;
  gap: 12px;
  min-width: 245px;
}

.post-card {
  min-height: 470px;
  border: 0;
  background: #fff;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card-link {
  display: block;
}

.post-card-link > div {
  position: relative;
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 18px;
}

.post-card-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.post-card:hover img {
  transform: scale(1.05);
}

.post-card-link span,
.post-category {
  display: inline-flex;
  color: #fff;
  background: var(--brand-gradient);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.post-card-link span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
}

.post-card-link h2 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.24;
}

.post-card-link p {
  color: var(--muted);
  line-height: 1.7;
}

.post-card-link > b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 750;
}

.article-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.back-link {
  margin-bottom: 28px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.post-category {
  padding: 8px 13px;
  margin-bottom: 20px;
}

.article-page h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.article-excerpt {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.article-page > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 34px 0;
  border-radius: 22px;
}

.article-body {
  color: #334155;
  font-size: 18px;
  line-height: 1.85;
}

.article-body section + section {
  margin-top: 34px;
}

.article-body h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.3;
}

.article-body .btn {
  margin-top: 22px;
}

.footer {
  padding: 60px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 34px;
}

.footer p,
.footer button,
.footer a:not(.btn):not(.logo) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.footer-contact-link {
  width: fit-content;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-contact-link:hover {
  color: var(--brand-dark);
}

.contact-line span {
  margin-top: 2px;
}

.footer h4 {
  margin: 0 0 14px;
  font-size: 14px;
}

.footer button,
.footer a[data-go] {
  display: block;
  padding: 0 0 9px;
  border: 0;
  background: transparent;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #94a3b8;
  font-size: 13px;
}

.footer-legal {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.footer-legal p {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.65;
}

.footer-legal strong {
  color: #475569;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.36);
}

.whatsapp-float .wa-icon {
  width: 29px;
  height: 29px;
  margin: 0;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions .compact {
    display: none;
  }

  .icon-btn {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    top: 78px;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 2px;
    width: 100%;
    height: calc(100dvh - 78px);
    margin: 0;
    padding: 12px max(20px, calc((100% - 1120px) / 2)) max(18px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    border-bottom: 0;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  body.menu-open {
    overflow: hidden;
  }

  .mobile-nav a,
  .mobile-nav button {
    min-height: 48px;
    padding: 13px 14px;
    border-radius: 12px;
    color: var(--muted);
    text-align: left;
    font-weight: 650;
  }

  .mobile-nav button:hover,
  .mobile-nav button:focus-visible,
  .mobile-nav button.active {
    color: var(--ink);
    background: #f1f5f9;
  }

  .mobile-plans-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-plan-items a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 14px 11px 18px;
    padding-left: 18px;
    color: #475569;
    font-size: 14px;
  }

  .mobile-nav a.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    margin-top: 12px;
    padding: 13px 18px;
    border: 1.5px solid transparent;
    color: #fff;
    background-color: var(--brand);
    background-image: var(--brand-gradient);
    box-shadow: 0 10px 24px rgba(8, 127, 153, 0.22);
    text-align: center;
    opacity: 1;
  }

  .mobile-nav a.btn.btn-primary:hover,
  .mobile-nav a.btn.btn-primary:focus-visible {
    color: #fff;
    background-color: var(--brand-dark);
    background-image: var(--brand-gradient);
  }

  .hero-grid,
  .hospitals-layout,
  .about-grid,
  .product-hero-grid,
  .product-conversion {
    grid-template-columns: 1fr;
  }

  .product-hero-grid {
    gap: 42px;
  }

  .product-visual {
    max-width: 620px;
  }

  .product-form-intro {
    position: static;
    max-width: 680px;
    padding-top: 0;
  }

  .product-process-grid {
    gap: 18px;
  }

  .product-process-grid article {
    grid-template-columns: 46px 1fr;
    padding: 0 18px;
  }

  .product-process-grid span {
    width: 46px;
    height: 46px;
  }

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

  .steps-grid {
    --step-circle: 48px;
    --step-border: 4px;
    --step-circle-center: calc((var(--step-circle) + (var(--step-border) * 2)) / 2);
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 0;
  }

  .steps-grid::before {
    display: none;
  }

  .step {
    min-height: auto;
    justify-content: center;
    padding: 24px 24px 24px 88px;
    border-radius: 14px;
  }

  .step strong {
    left: 0;
    top: 50%;
    width: var(--step-circle);
    height: var(--step-circle);
    transform: translate(0, -50%);
    border-width: var(--step-border);
    font-size: 15px;
    z-index: 1;
  }

  .step h3,
  .step p {
    text-align: left;
  }

  .plan-grid,
  .feature-grid,
  .testimonial-grid,
  .blog-grid,
  .mentor-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-heading,
  .dental-callout,
  .network-callout {
    align-items: stretch;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .container,
  .header-inner,
  .article-page {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    height: 66px;
  }

  .mobile-nav {
    top: 66px;
    height: calc(100dvh - 66px);
    padding: 10px 14px max(16px, env(safe-area-inset-bottom));
  }

  .plan-switcher {
    top: 66px;
  }

  .plan-switcher .container {
    justify-content: flex-start;
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    scrollbar-width: none;
  }

  .plan-switcher .container::-webkit-scrollbar {
    display: none;
  }

  .plan-switcher a {
    font-size: 13px;
    min-height: 44px;
    padding: 8px 13px;
  }

  .logo img {
    width: clamp(136px, 42vw, 154px);
  }

  .hero {
    padding: 38px 0 68px;
  }

  .product-hero {
    padding: 46px 0 54px;
  }

  .product-hero-copy h1 {
    margin-bottom: 16px;
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .product-hero-copy > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .product-hero-copy > small {
    align-items: flex-start;
    line-height: 1.5;
  }

  .product-visual {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .product-visual-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 15px;
  }

  .product-visual > strong {
    font-size: 20px;
  }

  .product-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-highlights span {
    display: grid;
    grid-template-columns: minmax(86px, auto) 1fr;
    align-items: center;
    gap: 10px;
  }

  .product-highlights b {
    font-size: 16px;
  }

  .product-highlights small {
    font-size: 12px;
  }

  .hero-grid {
    gap: 38px;
  }

  .availability {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 10px 12px;
    border-radius: 12px;
    line-height: 1.4;
  }

  .availability span {
    margin-top: 5px;
    flex: 0 0 auto;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 9vw, 2.5rem);
    line-height: 1.08;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-image-wrap > img {
    aspect-ratio: 16 / 12;
    border-radius: 20px;
  }

  .metric-card {
    left: 12px;
    right: 12px;
    bottom: -28px;
    padding: 13px 14px;
    border-radius: 14px;
  }

  .metric-card strong {
    font-size: 15px;
  }

  .cta-row,
  .center-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 13px 18px;
  }

  .btn .arrow-icon,
  .btn .wa-icon {
    margin-top: 0;
  }

  .steps-grid,
  .plan-grid,
  .feature-grid,
  .testimonial-grid,
  .blog-grid,
  .mentor-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .product-process-grid {
    gap: 0;
  }

  .product-process-grid article {
    padding: 22px 0;
  }

  .product-process-grid article + article {
    border-top: 1px solid rgba(148, 163, 184, 0.28);
    border-left: 0;
  }

  .steps-grid {
    --step-circle: 58px;
    --step-border: 6px;
    gap: 46px;
    padding-top: 32px;
  }

  .stats {
    padding: 36px 0;
  }

  .stats-grid,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }

  .partner-grid span {
    min-height: 72px;
    padding: 14px 10px;
    border-radius: 12px;
    font-size: 13px;
  }

  .stats strong {
    font-size: 28px;
  }

  .operator-strip {
    padding: 36px 0;
  }

  .operator-strip p {
    padding: 0 20px;
    line-height: 1.5;
  }

  .operator-track {
    gap: 10px;
  }

  .operator-track > .operator-logo {
    width: 150px;
    height: 68px;
    flex-basis: 150px;
    padding: 16px 18px;
  }

  .operator-logo img {
    max-width: 112px;
    max-height: 30px;
  }

  .operator-logo.brand-bradesco img,
  .operator-logo.brand-medsenior img,
  .operator-logo.brand-santa-helena img {
    max-width: 126px;
    max-height: 36px;
  }

  .operator-logo.brand-sami img {
    max-width: 38px;
    max-height: 38px;
  }

  .step {
    min-height: 184px;
    justify-content: flex-start;
    padding: 54px 24px 26px;
    border-radius: 16px;
  }

  .step strong {
    top: 0;
    left: 50%;
    width: var(--step-circle);
    height: var(--step-circle);
    transform: translate(-50%, -50%);
    border-width: var(--step-border);
    font-size: 18px;
  }

  .step h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
  }

  .step p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
  }

  .mini-icon,
  .metric-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .plan-card,
  .feature-card,
  .testimonial {
    min-height: auto;
    padding: 24px 20px;
  }

  .product-benefits .feature-card {
    min-height: auto;
  }

  .product-conversion {
    gap: 34px;
  }

  .product-form-intro ul {
    margin-top: 22px;
  }

  .faq-grid summary {
    min-height: 58px;
    padding: 16px;
  }

  .faq-grid details p {
    padding: 0 16px 18px;
  }

  .mentor-grid {
    gap: 22px;
  }

  .mentor-grid article {
    gap: 14px;
    padding: 0;
  }

  .mentor-grid .mentor-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 13px;
  }

  .band {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .final-cta h2,
  .split-heading h2 {
    font-size: 1.7rem;
  }

  .section-heading p,
  .split-heading p,
  .final-cta p {
    line-height: 1.65;
  }

  .page-hero {
    padding: 48px 16px 58px;
  }

  .page-hero h1 {
    margin-bottom: 18px;
    font-size: 2rem;
    line-height: 1.12;
  }

  .page-hero p,
  .article-excerpt {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
  }

  .hospital-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px 12px 18px;
  }

  .hospital-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hospital-card > div {
    padding: 0 6px;
  }

  .network-callout {
    padding: 22px 18px;
  }

  .portrait-grid {
    gap: 12px;
  }

  .portrait-grid figure:nth-child(2) {
    margin-top: 24px;
  }

  .about-grid {
    gap: 44px;
  }

  .about {
    padding: 64px 0;
  }

  .about li {
    align-items: flex-start;
  }

  .lead-form,
  .dental-callout {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .dental-callout > div:last-child {
    min-width: 0;
    width: 100%;
  }

  .lead-form h2 {
    font-size: 25px;
  }

  .lead-form label {
    margin-bottom: 16px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    min-height: 50px;
  }

  .post-card {
    min-height: auto;
    padding-bottom: 12px;
  }

  .post-card-link > div {
    margin-bottom: 18px;
    border-radius: 14px;
  }

  .post-card-link h2 {
    font-size: 20px;
  }

  .article-page {
    padding: 48px 0 72px;
  }

  .article-page h1 {
    font-size: 2rem;
  }

  .article-page > img {
    margin: 26px 0;
    border-radius: 16px;
  }

  .article-body {
    font-size: 17px;
    line-height: 1.75;
  }

  .article-body h2 {
    font-size: 22px;
  }

  .footer {
    padding-top: 48px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-grid > div {
    min-width: 0;
  }

  .footer .logo img {
    width: 168px;
  }

  .footer-legal {
    padding: 20px 0;
  }

  .footer button,
  .footer a[data-go] {
    min-height: 44px;
    padding: 8px 0;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 370px) {
  .container,
  .header-inner,
  .article-page {
    width: min(100% - 24px, 1120px);
  }

  .hero h1,
  .product-hero-copy h1,
  .page-hero h1,
  .article-page h1 {
    font-size: 1.85rem;
  }

  .stats-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .product-visual {
    padding: 22px 16px;
  }

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

  .portrait-grid figure:nth-child(2) {
    margin-top: 0;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #475569;
    --line: #cbd5e1;
  }

  .btn-outline,
  .plan-card,
  .feature-card,
  .testimonial,
  .hospital-card,
  .lead-form {
    border-width: 2px;
  }
}
