:root {
  --blue-900: #10233f;
  --blue-800: #16345e;
  --blue-700: #1d4f8f;
  --blue-600: #2563eb;
  --blue-100: #eef4ff;
  --blue-50: #f8fbff;
  --text: #1d2939;
  --muted: #5b6676;
  --line: #d9e2f1;
  --white: #ffffff;
  --success: #0f766e;
  --shadow: 0 18px 50px rgba(16, 35, 63, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
  --topbar-height: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.topbar {
  background: linear-gradient(90deg, var(--blue-900), var(--blue-700));
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
}
.topbar-inner {
  display: flex;
  justify-content: center;
}
.topbar-text-desktop,
.topbar-text-mobile {
  font-weight: 600;
  line-height: 1.35;
}
.topbar-text-mobile { display: none; }
.hero-title-mobile,
.hero-lead-mobile { display: none; }
.header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(217,226,241,.8);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .02em; }
.brand img { width: 132px; height: auto; object-fit: contain; flex-shrink: 0; }
.brand span { font-size: 20px; color: var(--blue-900); }
.nav-cta-desktop { display: flex; }
.nav-menu { display: none; align-items: center; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-toggle,
.nav-close {
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--blue-900);
  cursor: pointer;
}
.nav-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(16,35,63,.12);
  background: rgba(255,255,255,.72);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span + span { margin-top: 4px; }
.nav-menu-header,
.nav-backdrop { display: none; }
.nav-menu-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.82);
}
.nav-menu-brand {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 62%;
}
.nav-menu-brand img {
  width: 148px;
  height: auto;
}
.nav-menu-header-media {
  position: absolute;
  top: 0;
  right: -3%;
  bottom: 0;
  left: 34%;
  overflow: hidden;
  border-radius: 0;
  z-index: 0;
}
.nav-menu-header-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 1;
  transform: scale(1.08);
}
.nav-menu-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-menu-footer {
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(16,35,63,.1);
  flex-shrink: 0;
}
.nav-menu-footer .btn {
  width: 100%;
  min-width: 0;
}
.nav-menu-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 2px;
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-900);
  border-bottom: 1px solid rgba(16,35,63,.14);
}
.nav-menu-link:first-child {
  border-top: 1px solid rgba(16,35,63,.14);
}
.nav-menu-link-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
}
.nav-menu-link-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-menu-link span:last-child {
  flex: 1;
}
.nav-close {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--blue-50);
}
.nav-close span {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.nav-close span:first-child { transform: rotate(45deg); }
.nav-close span:last-child { transform: rotate(-45deg); }
.menu-open { overflow: hidden; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 22px; border-radius: 999px; border: 0; cursor: pointer;
  font-weight: 700; font-size: 15px; transition: .25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); color: #fff;
  box-shadow: 0 14px 30px rgba(37,99,235,.22);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--blue-900);
}
.btn-block { width: 100%; }
.btn-secondary {
  background: #fff; color: var(--blue-900); border: 1px solid var(--line);
}
.hero {
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(249,251,255,.97) 0%, rgba(243,247,255,.9) 42%, rgba(243,247,255,.3) 100%),
    url("../img/hero/hero-03.png");
  background-position: center, right center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  padding: 72px 0 52px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center;
}
.hero-mobile-media { display: none; }
.hero-mobile-divider { display: none; }
.eyebrow-mobile { display: none; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,.08); color: var(--blue-700); border: 1px solid rgba(37,99,235,.12);
  padding: 10px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; margin-bottom: 18px;
}
h1 {
  margin: 0 0 16px; font-size: clamp(34px, 5vw, 58px); line-height: 1.05;
  color: var(--blue-900); letter-spacing: -.03em;
}
.hero p.lead {
  margin: 2rem 0; font-size: 18px; color: var(--muted); max-width: 64ch;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: fit-content;
  margin: 18px auto 0;
  color: #abb8ce;
  text-decoration: none;
  transition: transform .22s ease, opacity .22s ease;
  z-index: 5;
}
.hero-scroll-indicator-floating {
  display: none;
}
.hero-scroll-indicator:hover {
  transform: translateY(2px);
  opacity: .84;
}
.hero-scroll-indicator-icon {
  position: relative;
  width: 24px;
  height: 30px;
}
.hero-scroll-indicator-icon span {
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
  animation: heroScrollArrow 1.8s ease-in-out infinite;
  will-change: transform, opacity;
}
.hero-scroll-indicator-icon span:first-child {
  top: 2px;
}
.hero-scroll-indicator-icon span:last-child {
  top: 10px;
  animation-delay: .18s;
}

.is-scrolling .hero-scroll-indicator-icon span,
.is-scrolling .section-inline-cta-arrows span {
  animation-play-state: paused;
}
@keyframes heroScrollArrow {
  0% {
    opacity: 0;
    transform: translate(-50%, -4px) rotate(45deg);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 8px) rotate(45deg);
  }
}
.hero-points {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin: 0 0 28px;
}
.hero-point {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px; font-size: 15px;
  box-shadow: 0 10px 24px rgba(16,35,63,.05);
}
.hero-card {
  background: #fff; border: 1px solid #e5edf9; border-radius: 28px; padding: 28px; box-shadow: var(--shadow);
}
.hero-card h3 { margin: 0 0 10px; font-size: 24px; color: var(--blue-900); }
.hero-card p { margin: 0 0 18px; color: var(--muted); }
.mini-list { display: grid; gap: 10px; margin: 18px 0 22px; }
.mini-list div {
  display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text);
  padding-bottom: 10px; border-bottom: 1px dashed var(--line);
}
.mini-list div:last-child { border-bottom: 0; padding-bottom: 0; }
.objective-strip {
  position: relative;
  padding: 0 0 22px;
  z-index: 1;
}
.objective-strip::before {
  content: "";
  position: absolute;
  inset: 18px 0 18px;
  background: linear-gradient(90deg, var(--blue-900), var(--blue-700));
  pointer-events: none;
}
.objective-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  background: var(--blue-50);
  pointer-events: none;
}
.objective-strip > .container {
  position: relative;
  z-index: 1;
}
.objective-card {
  position: relative;
  margin: -18px 0 -18px;
  padding: 34px 36px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(16,35,63,.98), rgba(22,52,94,.96)),
    radial-gradient(circle at top right, rgba(232,181,116,.12), transparent 32%);
  box-shadow: 0 24px 54px rgba(16,35,63,.18);
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) 1.35fr;
  gap: 24px;
  overflow: hidden;
  contain: layout paint;
}
.objective-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/simbolo_cardio_nutro.svg") right -40px center / 280px no-repeat;
  opacity: .05;
  pointer-events: none;
}
.objective-copy {
  position: relative;
  z-index: 1;
  max-width: 440px;
}
.objective-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3.4vw, 38px);
  color: #fff;
}
.objective-copy p {
  margin: 0;
  font-size: 17px;
  color: rgba(255,255,255,.74);
}
.objective-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.objective-point {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.objective-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(232,181,116,.08);
  border: 1px solid rgba(232,181,116,.28);
  color: #e8b574;
}
.objective-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.objective-point h3 {
  margin: 2px 0 6px;
  color: #fff;
  font-size: 18px;
}
.objective-point p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.5;
}
.objective-card-light {
  border: 1px solid rgba(29,79,143,.1);
  border-bottom-color: transparent;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,255,.98)),
    radial-gradient(circle at top right, rgba(37,99,235,.08), transparent 34%);
  box-shadow: 0 22px 46px rgba(16,35,63,.08);
}
.objective-card-light::after {
  background: rgba(29,79,143,.045);
  mask: url("../img/simbolo_cardio_nutro.svg") right -40px center / 280px no-repeat;
  -webkit-mask: url("../img/simbolo_cardio_nutro.svg") right -40px center / 280px no-repeat;
  opacity: 1;
}

@media (min-width: 1025px) {
  .objective-card {
    box-shadow: 0 16px 32px rgba(16,35,63,.08);
  }

  .objective-card::after,
  .objective-card-light::after {
    display: none;
  }

  .objective-point,
  .objective-card-light .objective-point {
    backdrop-filter: none;
    background: rgba(255,255,255,.92);
  }
}
.objective-card-light .objective-copy h2 {
  color: var(--blue-900);
}
.objective-card-light .objective-copy p {
  color: var(--muted);
}
.objective-card-light .objective-point {
  background: rgba(238,244,255,.62);
  border: 1px solid rgba(29,79,143,.1);
  backdrop-filter: blur(8px);
}
.objective-card-light .objective-icon {
  background: rgba(37,99,235,.08);
  border-color: rgba(37,99,235,.14);
  color: var(--blue-700);
}
.objective-card-light .objective-point h3 {
  color: var(--blue-900);
}
.objective-card-light .objective-point p {
  color: var(--muted);
}
.section { padding: 82px 0; }
.section.alt { background: var(--blue-50); }
.section-head { max-width: 720px; margin-bottom: 34px; }
.kicker {
  margin-bottom: 10px; display: inline-block; color: var(--blue-700); font-weight: 800; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase;
}
h2 {
  margin: 0 0 14px; font-size: clamp(28px, 4vw, 42px); color: var(--blue-900); line-height: 1.1;
  letter-spacing: -.025em;
}
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.section-metodo {
  position: relative;
  overflow: hidden;
}
.section-metodo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/simbolo_cardio_nutro.svg") right -4% center / min(64vw, 920px) no-repeat;
  opacity: .035;
  pointer-events: none;
}
.section-metodo > .container {
  position: relative;
  z-index: 1;
}
.section-faq {
  position: relative;
  overflow: hidden;
}
.section-faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/simbolo_cardio_nutro.svg") right -4% center / min(64vw, 920px) no-repeat;
  opacity: .035;
  pointer-events: none;
}
.section-faq > .container {
  position: relative;
  z-index: 1;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 10px 24px rgba(16,35,63,.05);
}
.card h3 { margin: 0 0 10px; font-size: 21px; color: var(--blue-900); }
.card p { margin: 0; color: var(--muted); }
.icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(16,35,63,.10)); color: var(--blue-700);
  font-size: 24px; margin-bottom: 16px;
}
.icon-photo {
  width: 76px;
  height: 76px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(29,79,143,.08);
  background: #eaf2ff;
  box-shadow: 0 10px 22px rgba(16,35,63,.08);
}
.icon-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#diferenciais .card {
  padding: 0;
  overflow: hidden;
}
#diferenciais .icon-photo {
  width: 100%;
  height: 190px;
  margin: 0 0 20px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
#diferenciais .card h3,
#diferenciais .card p {
  padding-left: 24px;
  padding-right: 24px;
}
#diferenciais .card p {
  padding-bottom: 24px;
}
.steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
  position: relative;
  --step-connector-offset: 57px;
}
.steps::before {
  content: "";
  position: absolute;
  top: var(--step-connector-offset);
  bottom: var(--step-connector-offset);
  left: var(--step-connector-offset);
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(29,79,143,.18), rgba(29,79,143,.42), rgba(29,79,143,.18));
  z-index: 0;
}
.step {
  display: grid; grid-template-columns: 70px 1fr; gap: 18px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 22px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  z-index: 1;
}
.step:hover {
  transform: translateY(-2px);
  border-color: rgba(29,79,143,.2);
  box-shadow: 0 18px 32px rgba(16,35,63,.08);
}
.step-num {
  width: 70px; height: 70px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); color: #fff; font-size: 28px; font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease;
}
.step:hover .step-num {
  transform: scale(1.04);
  box-shadow: 0 14px 24px rgba(29,79,143,.22);
}
.step h3 {
  margin-top: 0;
}
.trust-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
}
.trust-band {
  color: #fff;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) 1.2fr;
  gap: 30px;
  align-items: center;
}
.trust-photo {
  position: relative;
  padding: 6px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,214,153,.88));
  box-shadow: 0 22px 50px rgba(8, 20, 38, .28);
  transform: translate(-10px, -10px);
}
.trust-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,.75);
  box-shadow:
    0 0 0 2px rgba(255,214,153,.45),
    0 18px 34px rgba(8, 20, 38, .22);
}
.trust-photo-mobile {
  display: none;
}
.trust-copy {
  max-width: 760px;
  display: flex;
  flex-direction: column;
}
.trust-band h3 { margin: 0 0 8px; font-size: 30px; }
.trust-band p { margin: 0; color: #c7d6ea; }
.kicker-on-dark {
  color: rgba(255,255,255,.78);
}
.trust-doctors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}
.trust-doctors > * {
  position: relative;
  z-index: 1;
}
.trust-cta {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}
.trust-cta .btn {
  width: 100%;
  max-width: 560px;
  min-height: 64px;
  font-size: 16px;
  box-shadow: 0 18px 34px rgba(8, 20, 38, .18);
}
.testimonials-carousel {
  position: relative;
}
.testimonials { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.testimonials-bullets {
  display: none;
}
.testimonials-bullet {
  appearance: none;
  border: 0;
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(29, 79, 143, 0.22);
  cursor: pointer;
  transition: transform .22s ease, background-color .22s ease, width .22s ease;
}
.testimonials-bullet.is-active {
  width: 28px;
  background: var(--blue-700);
}
.testimonials-bullet:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}
.quote {
  position: relative;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 18px;
  padding-left: 18px;
}
.quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -6px;
  color: var(--blue-700);
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
}
.author { font-size: 14px; color: var(--muted); font-weight: 700; }
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.testimonial-card-clone {
  display: none;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(29,79,143,.08);
  box-shadow: 0 10px 22px rgba(16,35,63,.08);
  flex-shrink: 0;
}
.author-meta {
  display: grid;
  gap: 2px;
}
.author {
  font-size: 15px;
  color: var(--blue-900);
  font-weight: 800;
}
.author-role {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.faq { display: grid; gap: 14px; }
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background-color .22s ease;
}
details:hover {
  border-color: rgba(29,79,143,.22);
  box-shadow: 0 14px 28px rgba(16,35,63,.06);
  transform: translateY(-1px);
}
summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--blue-900);
  display: grid;
  grid-template-columns: 52px 1fr 16px;
  align-items: center;
  column-gap: 18px;
  transition: color .22s ease;
}
summary:hover {
  color: var(--blue-700);
}
summary::-webkit-details-marker { display: none; }
summary::before {
  content: "?";
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(29,79,143,.18);
  transition: transform .22s ease, box-shadow .22s ease;
}
summary::after {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .22s ease, color .22s ease;
  margin-right: 4px;
}
details[open] {
  border-color: rgba(29,79,143,.24);
  box-shadow: 0 18px 34px rgba(16,35,63,.08);
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
details:hover summary::before,
details[open] summary::before {
  transform: scale(1.04);
  box-shadow: 0 16px 28px rgba(29,79,143,.22);
}
details[open] summary::after {
  transform: rotate(-135deg) translateY(-1px);
}
details p {
  color: var(--muted);
  margin: 14px 0 0 70px;
}
.faq-cta {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #f7faff, #eef4ff),
    radial-gradient(circle at top left, rgba(37,99,235,.08), transparent 40%);
  border: 1px solid rgba(29,79,143,.1);
  color: var(--blue-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 18px 34px rgba(16,35,63,.08);
}
.faq-cta h3 {
  margin: 0 0 6px;
  font-size: 24px;
  color: var(--blue-900);
}
.faq-cta p {
  margin: 0;
  color: var(--muted);
}
.faq-cta .btn {
  flex-shrink: 0;
  min-width: 230px;
  box-shadow: 0 14px 26px rgba(37,99,235,.14);
}
.section-inline-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(29,79,143,.12);
}
.section-inline-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.section-inline-cta-link {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: transform .22s ease, opacity .22s ease;
}
.section-inline-cta-link:hover {
  transform: translateY(2px);
  opacity: .84;
}
.section-inline-cta-arrows {
  position: relative;
  width: 24px;
  height: 24px;
}
.section-inline-cta-arrows span {
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
  animation: heroScrollArrow 1.8s ease-in-out infinite;
}
.section-inline-cta-arrows span:first-child {
  top: 0;
}
.section-inline-cta-arrows span:last-child {
  top: 8px;
  animation-delay: .18s;
}
#dores.section {
  padding-bottom: 48px;
}
.cta-panel {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 0;
  align-items: stretch;
}
.section-head-compact {
  max-width: 760px;
  margin-bottom: 28px;
}
.cta-copy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(16,35,63,.08);
  contain: layout paint;
}
.cta-copy p { color: var(--muted); }
.cta-copy-soft {
  background:
    linear-gradient(90deg, rgba(244,248,255,.36) 0%, rgba(244,248,255,.14) 38%, rgba(244,248,255,.04) 100%),
    radial-gradient(circle at top left, rgba(37,99,235,.08), transparent 34%),
    url("../img/cardio-girl-02.png");
  background-position: center, top left, 52% center;
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
  border-right: 0;
  border-radius: 28px 0 0 28px;
}
.cta-copy-visual {
  min-height: 100%;
  min-height: 560px;
  padding: 0;
  contain: paint;
}
.cta-cardio-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  contain: paint;
  transform: translateZ(0);
  will-change: transform, opacity;
}
.cta-cardio-overlay .cardio-monitor {
  position: absolute;
  inset: 0;
}
.cta-cardio-overlay .cardio-monitor__screen {
  height: 100%;
  contain: paint;
  transform: translateZ(0);
}

@media (min-width: 1025px) {
  .cta-copy-visual {
    min-height: 520px;
  }

  .cta-cardio-overlay .cardio-monitor-light {
    opacity: .66;
  }

  .cta-cardio-overlay .cardio-monitor__grid {
    mask-image: none;
    -webkit-mask-image: none;
    opacity: .26;
  }

  .cta-cardio-overlay .cardio-monitor__scan {
    width: 14%;
    filter: none;
    opacity: .18;
  }

  .cta-cardio-overlay .cardio-monitor__wave {
    opacity: .36;
  }

  .cta-cardio-overlay .cardio-monitor__line {
    filter: none;
    opacity: .82;
  }
}
.cta-copy-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 28%);
  z-index: -1;
}
/* .cta-copy-soft::after {
  content: "";
  position: absolute;
  inset: 18px 18px 18px auto;
  width: 1px;
  background: linear-gradient(180deg, rgba(29,79,143,.08), rgba(29,79,143,.18), rgba(29,79,143,.08));
  z-index: 1;
} */
.cta-copy-soft .kicker,
.cta-copy-soft h2,
.cta-copy-soft p,
.cta-copy-soft .mini-list {
  position: relative;
  z-index: 2;
}
.cta-copy-soft .mini-list {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(255,255,255,.42);
  backdrop-filter: blur(6px);
}
.cta-copy-soft .mini-list div {
  border-bottom-color: rgba(29,79,143,.18);
}
.form-mobile-header {
  display: none;
}
.form-mobile-intro {
  display: none;
}
.doctor-card {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(238,244,255,.9);
  border: 1px solid rgba(29,79,143,.12);
}
.doctor-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.2;
  color: var(--blue-900);
}
.doctor-card p {
  margin: 0 0 6px;
  color: var(--text);
  font-weight: 700;
}
.doctor-card span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}
.doctor-card-dark {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 14px 28px rgba(191,219,254,.08);
  backdrop-filter: blur(8px);
}
.doctor-card-dark h3 {
  color: #fff;
}
.doctor-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.doctor-card-brand {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  margin-top: -6px;
  border-radius: 999px;
  border: 1px solid rgba(255,221,170,.62);
  background: rgba(255,221,170,.08);
}
.doctor-card-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 17px;
  height: 19px;
  margin: auto;
  background: #ffddaa;
  mask: url("../img/simbolo_cardio_nutro.svg") center / contain no-repeat;
  -webkit-mask: url("../img/simbolo_cardio_nutro.svg") center / contain no-repeat;
  transform: translateY(-1px);
}
.doctor-card-head h3 {
  margin: 0;
  padding-top: 0;
}
.doctor-card-dark .doctor-card-role {
  color: #e7c68f;
  margin: 0 0 12px 48px;
  font-size: 15px;
  font-weight: 600;
}
.doctor-card-dark .doctor-card-reg {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  color: rgba(223,231,242,.86);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.doctor-card-dark .doctor-card-reg::before {
  content: "";
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 3.5 18.5 6v5.37c0 4.02-2.74 7.72-6.5 8.92-3.76-1.2-6.5-4.9-6.5-8.92V6L12 3.5Z' stroke='%23ffddaa' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M9.6 12.1 11.3 13.8 14.7 10.4' stroke='%23ffddaa' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
form {
  padding: 34px;
  background: linear-gradient(180deg, #f7faff, #eef4ff);
  border: 1px solid var(--line);
  border-left: 1px solid rgba(29,79,143,.08);
  border-radius: 0 28px 28px 0;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 14px; }
label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 700; color: var(--blue-900); }
input, select, textarea {
  width: 100%; min-height: 52px; border-radius: 14px; border: 1px solid #cdd8eb;
  padding: 0 14px; font: inherit; color: var(--text); background: #fff;
}
select {
  appearance: none;
  padding-right: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231D4F8F' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}
textarea { min-height: 112px; padding-top: 14px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 12px; }
.footer {
  background: var(--blue-900); color: rgba(255,255,255,.88); padding: 36px 0;
}
.footer-grid {
  display: grid; grid-template-columns: .78fr 1.22fr; gap: 20px; align-items: center;
}
.footer-grid > :first-child { max-width: 360px; }
.footer small { color: rgba(255,255,255,.72); }
.footer-brand { color: #fff; margin-bottom: 12px; }
.footer-brand img { width: 148px; }
.footer-brand span { color: #fff; }
.footer-contact {
  display: grid;
  gap: 14px;
  width: min(100%, 420px);
  justify-self: end;
  text-align: left;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.footer-contact-item div {
  display: grid;
  gap: 2px;
}
.footer-contact-item strong {
  color: #fff;
  font-size: 14px;
}
.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255,255,255,.78);
}
.footer-contact-item a:hover {
  opacity: .86;
}
.footer-contact-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(191,219,254,.92);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-divider {
  height: 1px;
  width: 100%;
  margin: 26px 0 18px;
  background: rgba(255,255,255,.14);
}
.footer-divider-top {
  margin: 0 0 28px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  text-align: center;
}
.footer-bottom a {
  color: rgba(255,255,255,.72);
}
.footer-bottom a:hover {
  opacity: .86;
}
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(29,79,143,.88); color: #fff; box-shadow: 0 18px 34px rgba(29,79,143,.26);
}
.whatsapp-float img {
  width: 40px;
  height: 40px;
  display: block;
}
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badge {
  padding: 10px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 13px; font-weight: 700; color: var(--blue-900);
}
@media (min-width: 1025px) {
  .step {
    align-items: center;
  }
  .step h3 {
    margin-bottom: 6px;
  }
}
@media (min-width: 1025px) {
  .hero-scroll-indicator-inline {
    display: none;
  }
  .hero-scroll-indicator-floating {
    display: flex;
    position: absolute;
    left: 50%;
    bottom: 24px;
    width: auto;
    margin: 0;
    transform: translateX(-50%);
    z-index: 5;
  }
  .hero-scroll-indicator-floating:hover {
    transform: translateX(-50%) translateY(2px);
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .hero {
    background-position: center, 72% center;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) and (max-height: 820px) {
  .hero {
    padding: 52px 0 34px;
  }
  .hero-grid {
    gap: 28px;
  }
  .eyebrow {
    margin-bottom: 14px;
    padding: 9px 13px;
  }
  h1 {
    font-size: clamp(40px, 3.3vw, 48px);
    margin-bottom: 12px;
  }
  .hero p.lead {
    margin: 0 0 24px;
    font-size: 17px;
    max-width: 56ch;
  }
  .hero-actions .btn {
    min-height: 48px;
    padding: 0 20px;
  }
  .hero-scroll-indicator-floating {
    bottom: 14px;
  }
  .section {
    padding: 68px 0;
  }
  .section-head {
    margin-bottom: 28px;
  }
  .section-head p {
    font-size: 17px;
  }
  .objective-strip {
    padding-bottom: 14px;
  }
  .objective-card {
    padding: 28px 30px;
    gap: 20px;
  }
  .objective-copy h2 {
    font-size: clamp(24px, 2.8vw, 34px);
  }
  .objective-copy p {
    font-size: 16px;
  }
  .objective-point {
    padding: 16px;
    gap: 12px;
  }
  .objective-icon {
    width: 52px;
    height: 52px;
  }
  .trust-band {
    gap: 24px;
  }
  .trust-photo img {
    max-height: 360px;
  }
  .trust-band h3 {
    font-size: 28px;
  }
  .trust-doctors {
    gap: 16px;
  }
  .trust-cta {
    margin-top: 22px;
  }
  .trust-cta .btn {
    min-height: 58px;
  }
  .faq-cta {
    padding: 20px 22px;
  }
  .faq-cta h3 {
    font-size: 22px;
  }
  .cta-copy,
  form {
    padding: 28px;
  }
  .cta-copy-visual {
    min-height: 440px;
  }
  #agendamento.section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-head-compact {
    margin-bottom: 22px;
  }
  .field {
    margin-bottom: 10px;
  }
  label {
    margin-bottom: 6px;
    font-size: 13px;
  }
  input,
  select,
  textarea {
    min-height: 46px;
  }
  textarea {
    min-height: 96px;
  }
  form .btn {
    min-height: 48px;
  }
}
@media (max-width: 1024px) {
  .hero-scroll-indicator,
  .hero-scroll-indicator-inline,
  .hero-scroll-indicator-floating {
    display: none;
  }
  .hero-grid, .grid-3, .grid-4, .testimonials, .cta-panel, .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps {
    --step-connector-offset: 47px;
    gap: 14px;
  }
  .step {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
  }
  .step-num {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    font-size: 24px;
  }
  .step h3 {
    margin-bottom: 6px;
    font-size: 19px;
  }
  .step p {
    font-size: 15px;
    line-height: 1.55;
  }
  .objective-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .objective-copy {
    max-width: none;
  }
  .hero {
    background: #fff;
    padding-top: 0;
    overflow: hidden;
  }
  .hero-grid {
    gap: 0;
  }
  .hero-mobile-media {
    position: relative;
    display: block;
    z-index: 1;
    min-height: 420px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-image: url("../img/hero/hero-04-mob.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .hero-mobile-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(248,251,255,.96) 0%, rgba(246,249,255,.84) 18%, rgba(241,246,253,.52) 38%, rgba(241,246,253,.14) 58%, rgba(241,246,253,0) 78%),
      linear-gradient(180deg, rgba(248,251,255,.08) 0%, rgba(248,251,255,0) 42%);
    pointer-events: none;
  }
  .hero-mobile-divider {
    position: relative;
    display: block;
    z-index: 3;
    width: 100vw;
    height: 104px;
    margin: -94px calc(50% - 50vw) -24px;
    overflow: visible;
    pointer-events: none;
  }
  .hero-mobile-divider svg {
    position: absolute;
    top: -12px;
    left: 0;
    display: block;
    width: 100%;
    height: 136px;
  }
  .hero-mobile-divider path {
    fill: #fff;
  }
  .hero-copy {
    position: relative;
    z-index: 4;
    max-width: none;
    margin-top: 0;
    padding: 0 24px 0;
    border-radius: 0 0 28px 28px;
    background: #fff;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    overflow: hidden;
  }
  .hero-copy > * {
    position: relative;
    z-index: 1;
  }
  .hero-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    pointer-events: none;
    z-index: 0;
  }
  .eyebrow-desktop,
  .hero-title-desktop,
  .hero-lead-desktop { display: none; }
  .eyebrow-mobile,
  .hero-title-mobile,
  .hero-lead-mobile { display: inline; }
  .eyebrow {
    margin-bottom: 18px;
  }
  h1 {
    font-size: 42px;
    line-height: 1.06;
    margin-bottom: 18px;
  }
  .hero p.lead {
    margin: 0 0 28px;
    max-width: 30ch;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-scroll-indicator {
    margin: 18px auto 0;
  }
  .trust-band {
    grid-template-columns: 1fr;
  }
  .trust-photo-desktop {
    display: none;
  }
  .trust-photo-mobile {
    display: block;
    max-width: 420px;
    margin-top: 22px;
  }
  .trust-photo {
    max-width: 420px;
    transform: translateY(-6px);
  }
  .trust-doctors {
    grid-template-columns: 1fr 1fr;
  }
  .trust-cta {
    align-self: auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .trust-band {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
  }
  .trust-photo-desktop {
    display: none;
  }
  .trust-photo-mobile {
    display: block;
    width: 100%;
    max-width: none;
    margin: 32px auto 0;
  }
  .trust-photo {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 10;
    transform: none;
    margin: 0 auto;
    overflow: hidden;
  }
  .trust-photo img {
    max-height: none;
  }
  .trust-copy {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    align-items: stretch;
    text-align: left;
  }
  .trust-copy p + p {
    margin-top: 12px;
  }
  .trust-copy > .trust-photo-mobile {
    margin-top: 32px;
  }
  .trust-doctors {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: none;
    margin-top: 18px;
  }
  .trust-cta {
    margin-top: 32px;
    width: 100%;
    max-width: none;
  }
  .trust-cta .btn {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .hero {
    background: #fff;
    padding-top: 0;
    overflow: hidden;
  }
  .hero-grid {
    gap: 0;
  }
  .hero-mobile-media {
    position: relative;
    display: block;
    z-index: 1;
    min-height: 356px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-image:
      url("../img/hero/hero-04-mob.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .hero-mobile-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(248,251,255,.96) 0%, rgba(246,249,255,.86) 18%, rgba(241,246,253,.56) 38%, rgba(241,246,253,.18) 58%, rgba(241,246,253,0) 78%),
      linear-gradient(180deg, rgba(248,251,255,.08) 0%, rgba(248,251,255,0) 42%);
    pointer-events: none;
  }
  .hero-mobile-divider {
    position: relative;
    display: block;
    z-index: 3;
    width: 100vw;
    height: 92px;
    margin: -84px calc(50% - 50vw) -20px;
    overflow: visible;
    pointer-events: none;
  }
  .hero-mobile-divider svg {
    position: absolute;
    top: -10px;
    left: 0;
    display: block;
    width: 100%;
    height: 124px;
  }
  .hero-mobile-divider path {
    fill: #fff;
  }
  .eyebrow {
    font-size: 12px;
    padding: 9px 12px;
    margin-bottom: 16px;
  }
  .eyebrow-desktop { display: none; }
  .eyebrow-mobile { display: inline; }
  h1 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 14px;
  }
  .hero-copy {
    position: relative;
    z-index: 4;
    margin-top: 0;
    padding: 0 12px 0;
    border-radius: 0 0 28px 28px;
    background: #fff;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    overflow: hidden;
  }
  .hero-copy > * {
    position: relative;
    z-index: 1;
  }
  .hero-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    pointer-events: none;
    z-index: 0;
  }
  .hero p.lead {
    margin: 0 0 24px;
    color: #4b5768;
    max-width: 26ch;
  }
  .hero-scroll-indicator {
    margin: 16px auto 0;
  }
  .hero-title-desktop,
  .hero-lead-desktop { display: none; }
  .hero-title-mobile,
  .hero-lead-mobile { display: inline; }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .topbar {
    font-size: 13px;
    padding: 10px 0;
  }
  .topbar-inner {
    padding: 0 10px;
  }
  .topbar-text-desktop { display: none; }
  .topbar-text-mobile {
    display: inline;
    font-weight: 700;
    letter-spacing: .01em;
  }
  .nav {
    align-items: center;
    padding: 12px 0;
  }
  .nav-cta-desktop { display: none; }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    flex-shrink: 0;
  }
  .nav-menu {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    bottom: 0;
    width: 100vw;
    height: calc(100dvh - var(--topbar-height));
    padding: 20px 24px calc(24px + env(safe-area-inset-bottom, 0));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
    background: #fff;
    box-shadow: 24px 0 48px rgba(16,35,63,.12);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition: transform .28s ease, opacity .28s ease, visibility .28s ease;
    z-index: 80;
  }
  .nav-menu.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-menu-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden;
    padding: 18px 18px 20px;
    border-radius: 24px;
    background: #214f8d;
    box-shadow: 0 16px 32px rgba(16,35,63,.16);
    flex-shrink: 0;
  }
  .nav-menu-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #102441 0%, #214f8d 34%, rgba(33,79,141,.88) 48%, rgba(33,79,141,.54) 64%, rgba(33,79,141,.2) 82%, rgba(33,79,141,.04) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .nav-close { display: inline-flex; }
  .nav-backdrop {
    display: block;
    position: fixed;
    top: var(--topbar-height);
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(16,35,63,.38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
    z-index: 50;
  }
  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .hero { padding: 0 0 56px; }
  .section { padding: 56px 0; }
  .hero-grid, .grid-3, .grid-4, .testimonials, .cta-panel, .footer-grid { grid-template-columns: 1fr; }
  .steps {
    --step-connector-offset: 39px;
    gap: 12px;
  }
  .step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    overflow: hidden;
    align-items: start;
  }
  .step-num {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 18px;
    box-shadow: none;
    align-self: start;
  }
  .step h3 {
    margin-bottom: 5px;
    font-size: 18px;
  }
  .step p {
    font-size: 14px;
    line-height: 1.5;
  }
  #diferenciais .card {
    display: grid;
    grid-template-columns: 136px minmax(0, 1fr);
    align-items: stretch;
  }
  #diferenciais .icon-photo {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 100%;
    height: 100%;
    min-height: 136px;
    margin: 0;
  }
  #diferenciais .card h3,
  #diferenciais .card p {
    padding-left: 16px;
    padding-right: 16px;
  }
  #diferenciais .card h3 {
    grid-column: 2;
    padding-top: 16px;
    margin-bottom: 8px;
    font-size: 18px;
  }
  #diferenciais .card p {
    grid-column: 2;
    padding-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
  }
  .testimonials-carousel {
    overflow: hidden;
  }
  .testimonials {
    display: flex;
    gap: 0;
    transition: transform .45s ease;
    will-change: transform;
  }
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .testimonial-card-clone {
    display: flex;
  }
  .testimonials-bullets {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  .hero-points { grid-template-columns: 1fr; }
  .trust-band { grid-template-columns: 1fr; }
  .trust-photo-desktop {
    display: none;
  }
  .trust-photo-mobile {
    display: block;
    max-width: none;
    margin-top: 20px;
  }
  .trust-photo {
    max-width: none;
    transform: none;
  }
  .trust-doctors { grid-template-columns: 1fr; }
  .trust-cta .btn {
    max-width: none;
  }
  .section-metodo {
    overflow: hidden;
  }
  .section-metodo::after {
    background-size: 420px;
    background-position: right -110px top 40px;
    opacity: .03;
  }
  .section-faq::after {
    background-size: 420px;
    background-position: right -110px top 40px;
    opacity: .03;
  }
  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-cta .btn {
    width: 100%;
    min-width: 0;
  }
  .section-inline-cta {
    flex-direction: column;
    align-items: center;
  }
  summary {
    grid-template-columns: 42px 1fr 14px;
    column-gap: 14px;
  }
  summary::before {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  details p {
    margin-left: 56px;
  }
  .objective-strip {
    padding-bottom: 8px;
  }
  .objective-strip::before {
    inset: 6px 0 6px;
  }
  .objective-strip::after {
    height: 6px;
  }
  .objective-card {
    margin: -6px 0 -6px;
    padding: 24px;
    grid-template-columns: 1fr;
  }
  .objective-card::after {
    background-size: 220px;
    background-position: right -68px top 26px;
  }
  .objective-copy {
    max-width: none;
  }
  .objective-points {
    grid-template-columns: 1fr;
  }
  .cta-panel {
    gap: 20px;
  }
  .section-head-compact {
    margin-bottom: 22px;
  }
  #agendamento .section-head-compact {
    display: none;
  }
  .cta-copy-visual {
    display: none;
  }
  .cta-copy-soft,
  form {
    border-radius: 28px;
    border-left: 1px solid var(--line);
  }
  form {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
  }
  .form-mobile-header {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 128px;
    margin: -24px -24px 24px;
    padding: 20px 20px 22px;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
    background: #214f8d;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
  }
  .form-mobile-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #102441 0%, #214f8d 34%, rgba(33,79,141,.88) 48%, rgba(33,79,141,.54) 64%, rgba(33,79,141,.2) 82%, rgba(33,79,141,.04) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .form-mobile-brand {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 62%;
  }
  .form-mobile-brand img {
    width: 148px;
    height: auto;
  }
  .form-mobile-brand span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: rgba(255,255,255,.82);
  }
  .form-mobile-intro {
    display: block;
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
  }
  .form-mobile-header-media {
    position: absolute;
    top: 0;
    right: -3%;
    bottom: 0;
    left: 34%;
    overflow: hidden;
    z-index: 0;
  }
  .form-mobile-header-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 1;
    transform: scale(1.08);
  }
  .footer-contact,
  .footer-bottom {
    text-align: left;
    justify-content: flex-start;
  }
  .footer .container {
    width: min(calc(100% - 64px), var(--max));
  }
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
  .footer-contact {
    width: 100%;
    justify-self: stretch;
  }
  h1 { font-size: 38px; }
  .cta-copy, form, .hero-card { padding: 24px; }
}

@media (min-width: 486px) and (max-width: 768px) {
  .form-mobile-brand span {
    font-size: 18px;
  }
}
