:root {
  --navy: #022953;
  --navy-deep: #061521;
  --navy-ink: #071d30;
  --blue: #17658f;
  --cyan: #83d4ee;
  --gold: #b27c12;
  --gold-dark: #966815;
  --gold-light: #fdec9c;
  --off-white: #f5f3ed;
  --paper: #fbfaf7;
  --mist: #e8eef3;
  --ink: #122435;
  --muted: #5f7080;
  --line: rgba(2, 41, 83, .13);
  --white-line: rgba(255, 255, 255, .13);
  --gold-gradient: linear-gradient(135deg, #966815 0%, #fdec9c 48%, #b27c12 100%);
  --shadow: 0 24px 70px rgba(6, 21, 33, .12);
  --shadow-strong: 0 34px 100px rgba(2, 41, 83, .24);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 40px;
  --shell: min(1240px, calc(100% - 40px));
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font: Inter, "Segoe UI", Arial, sans-serif;
  --font-display: "Inter Display", Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; }

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: clamp(88px, 10vw, 150px) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 12px 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition:
    background .35s var(--ease),
    border-color .35s var(--ease),
    backdrop-filter .35s var(--ease),
    box-shadow .35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, .9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(2, 41, 83, .07);
}

.nav {
  min-height: 84px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 190px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--ease);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(2, 41, 83, .17);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(2, 41, 83, .24);
}

.nav-cta img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 4px;
  transition: .25s var(--ease);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(920px, 100vh);
  padding: 124px 0 66px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(140deg, #fbfaf7 0%, #eef4f7 50%, #f7f4ec 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(2, 41, 83, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 41, 83, .045) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to right, #000 0%, rgba(0,0,0,.3) 55%, transparent 92%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.hero-glow-a {
  width: 460px;
  height: 460px;
  left: -230px;
  top: 20%;
  background: radial-gradient(circle, rgba(131, 212, 238, .3), transparent 67%);
}

.hero-glow-b {
  width: 540px;
  height: 540px;
  right: -180px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(253, 236, 156, .28), transparent 68%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(460px, .96fr);
  align-items: center;
  gap: clamp(32px, 4vw, 62px);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 0 5px rgba(178, 124, 18, .1);
}

.hero h1 {
  max-width: 680px;
  margin: 22px 0 22px;
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: clamp(48px, 5.45vw, 78px);
  font-weight: 700;
  line-height: .93;
  letter-spacing: -.065em;
}

.hero h1 span {
  display: block;
  color: var(--navy);
  background: linear-gradient(100deg, var(--navy) 0%, var(--blue) 58%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform .25s var(--ease),
    box-shadow .25s var(--ease),
    background .25s var(--ease),
    color .25s var(--ease);
}

.button img {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.button-arrow {
  width: 18px !important;
  height: 18px !important;
}

.button-gold {
  color: #10253a;
  background: var(--gold-gradient);
  box-shadow: 0 18px 34px rgba(178, 124, 18, .2);
}

.button-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(178, 124, 18, .3);
}

.button-ghost {
  color: var(--navy);
  border-color: rgba(2, 41, 83, .25);
  background: rgba(255, 255, 255, .52);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: #fff;
}

.hero-footnote {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
}

.hero-footnote span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-footnote span::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.hero-art {
  position: relative;
  width: min(100%, 610px);
  min-height: 590px;
  justify-self: end;
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 36px 10px 0 10px;
  border-radius: 45% 55% 48% 52% / 55% 43% 57% 45%;
  background:
    radial-gradient(circle at 50% 30%, rgba(57, 130, 165, .48), transparent 32%),
    linear-gradient(145deg, #061828 0%, #032a4c 55%, #07141f 100%);
  box-shadow: var(--shadow-strong);
  z-index: -2;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 70px 42px 28px 42px;
  border: 1px solid rgba(253, 236, 156, .2);
  border-radius: 42% 58% 51% 49% / 57% 40% 60% 43%;
  z-index: -1;
}

.hero-system {
  position: absolute;
  inset: 28px 0 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.system-lines path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2.2s .35s var(--ease) forwards;
}

.orbit-a {
  transform-origin: 360px 360px;
  animation: orbitSpin 24s linear infinite;
}

.nodes circle {
  animation: pulseNode 3s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 2px;
  min-width: 165px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  color: #fff;
  background: rgba(7, 21, 34, .68);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}

.floating-card:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(253, 236, 156, .58);
}

.card-kicker {
  color: rgba(255,255,255,.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

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

.card-a {
  left: -8px;
  top: 170px;
}

.card-a i {
  width: 72px;
  height: 2px;
  margin-top: 8px;
  background: var(--gold-gradient);
}

.card-b {
  right: -4px;
  bottom: 128px;
}

.card-c {
  left: 78px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: auto;
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 700;
}

.gold-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 0 5px rgba(253, 236, 156, .08);
}

.hero-marker {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(253, 236, 156, .08);
}

.marker-a { right: 55px; top: 135px; }
.marker-b { left: 44px; bottom: 210px; }

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .8);
  overflow: hidden;
}

.trust-track {
  min-height: 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-item {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 760;
}

.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }

.trust-item span {
  color: var(--gold-dark);
  font-size: 10px;
  letter-spacing: .12em;
}

/* Shared headings */
.section-heading,
.practical-head {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
}

.section-heading h2,
.integrated h2,
.practical h2,
.final-cta h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.section-heading p,
.practical-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

/* Treatments */
.treatments {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(131, 212, 238, .12), transparent 25%),
    var(--paper);
}

.treatment-system {
  position: relative;
  min-height: 790px;
  display: grid;
  place-items: center;
}

.system-core {
  position: relative;
  z-index: 4;
  width: 260px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(131, 212, 238, .35), transparent 28%),
    linear-gradient(145deg, #08233b, var(--navy));
  color: #fff;
  box-shadow: 0 30px 80px rgba(2, 41, 83, .3);
}

.core-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.core-content span {
  display: block;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}

.core-content strong {
  display: block;
  margin-top: 8px;
  font-size: 25px;
  line-height: 1.05;
}

.core-ring {
  position: absolute;
  inset: -28px;
  border: 1px solid rgba(2, 41, 83, .16);
  border-radius: 50%;
}

.core-ring-b {
  inset: -62px;
  border-style: dashed;
  animation: orbitSpin 28s linear infinite reverse;
}

.treatment-node {
  position: absolute;
  z-index: 4;
  width: 280px;
  min-height: 195px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(2, 41, 83, .09);
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    border-color .35s var(--ease);
}

.treatment-node:hover,
.treatment-node.is-active {
  transform: translateY(-9px);
  border-color: rgba(178, 124, 18, .48);
  box-shadow: 0 26px 66px rgba(2, 41, 83, .15);
}

.treatment-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--navy);
  background: linear-gradient(145deg, rgba(253, 236, 156, .8), rgba(178, 124, 18, .16));
}

.treatment-icon img {
  width: 31px;
  height: 31px;
}

.node-index {
  position: absolute;
  right: 22px;
  top: 22px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.treatment-node h3 {
  margin: 20px 0 6px;
  color: var(--navy);
  font-size: 21px;
}

.treatment-node p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.node-1 { left: 0; top: 50px; }
.node-2 { left: 0; top: 285px; }
.node-3 { left: 0; bottom: 40px; }
.node-4 { right: 0; top: 50px; }
.node-5 { right: 0; top: 285px; }
.node-6 { right: 0; bottom: 40px; }

.connection-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.connection-lines path {
  fill: none;
  stroke: rgba(2, 41, 83, .2);
  stroke-width: 1.4;
  stroke-dasharray: 4 8;
}

.treatment-system.in-view .connection-lines path {
  animation: connectionFlow 6s linear infinite;
}

/* Integrated */
.integrated {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 78% 36%, rgba(131, 212, 238, .16), transparent 25%),
    linear-gradient(145deg, #071521 0%, #04284a 62%, #05151f 100%);
  overflow: hidden;
}

.integrated::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 70% 50%, #000, transparent 65%);
}

.integrated-grid {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.section-label.light {
  color: var(--gold-light);
}

.integrated h2 {
  max-width: 630px;
}

.integrated-copy > p {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.67);
  font-size: 17px;
}

.integrated-actions {
  margin-top: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--gold-light);
  font-weight: 850;
  text-decoration: none;
}

.text-link-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(253, 236, 156, .35);
  border-radius: 50%;
  transition: transform .25s var(--ease), background .25s var(--ease);
}

.text-link-icon img {
  width: 17px;
  height: 17px;
}

.text-link:hover .text-link-icon {
  transform: translate(4px, -4px);
  background: rgba(253, 236, 156, .1);
}

.integration-diagram {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.diagram-center {
  position: relative;
  z-index: 4;
  width: 220px;
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 28%, rgba(253, 236, 156, .18), transparent 30%),
    rgba(8, 34, 57, .75);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 80px rgba(131, 212, 238, .13);
}

.diagram-center span {
  color: rgba(255,255,255,.56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.diagram-center strong {
  color: var(--gold-light);
  font-size: 28px;
}

.diagram-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}

.diagram-orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 112px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(253,236,156,.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 21, 31, .78);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.orbit-1 {
  width: 340px;
  height: 340px;
}

.orbit-1 span {
  left: 50%;
  top: -21px;
  transform: translateX(-50%);
  animation: badgeFloat 4.8s ease-in-out infinite;
}

.orbit-2 {
  width: 450px;
  height: 285px;
  transform: rotate(32deg);
}

.orbit-2 span {
  right: -22px;
  top: 50%;
  transform: translateY(-50%) rotate(-32deg);
  animation: badgeFloat 5.6s .4s ease-in-out infinite;
}

.orbit-3 {
  width: 390px;
  height: 470px;
  transform: rotate(-25deg);
}

.orbit-3 span {
  left: -18px;
  top: 55%;
  transform: translateY(-50%) rotate(25deg);
  animation: badgeFloat 6.2s .8s ease-in-out infinite;
}

.diagram-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 133, 177, .23), transparent 67%);
}

/* Practical */
.practical {
  background:
    radial-gradient(circle at 5% 10%, rgba(253, 236, 156, .18), transparent 25%),
    var(--off-white);
}

.practical-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr .88fr;
  grid-template-areas:
    "whatsapp hours location"
    "whatsapp social email";
  grid-template-rows: repeat(2, minmax(220px, auto));
  gap: 16px;
  align-items: stretch;
}

.info-module {
  position: relative;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  color: var(--ink);
  background: rgba(255,255,255,.75);
  text-decoration: none;
  overflow: hidden;
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    border-color .35s var(--ease);
}

a.info-module:hover {
  transform: translateY(-7px);
  border-color: rgba(178, 124, 18, .42);
  box-shadow: var(--shadow);
}

.module-large {
  grid-area: whatsapp;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background:
    radial-gradient(circle at 80% 12%, rgba(253, 236, 156, .24), transparent 24%),
    linear-gradient(145deg, #06213a, var(--navy));
  border-color: transparent;
}

.module-large::before {
  content: "";
  position: absolute;
  width: 320px;
  aspect-ratio: 1;
  right: -90px;
  top: -70px;
  border: 1px solid rgba(253, 236, 156, .3);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(253, 236, 156, .05),
    0 0 0 82px rgba(131, 212, 238, .04);
}

.module-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--navy);
  background: var(--gold-gradient);
}

.module-icon img {
  width: 27px;
  height: 27px;
}

.module-large .module-icon {
  margin-bottom: auto;
}

.module-label {
  display: block;
  margin-top: 28px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.module-large .module-label {
  color: var(--gold-light);
}

.info-module strong {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-size: clamp(21px, 2.2vw, 31px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.module-large strong {
  color: #fff;
  font-size: clamp(34px, 3.6vw, 52px);
  letter-spacing: -.04em;
}

.info-module p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.module-large p {
  color: rgba(255,255,255,.63);
  font-size: 16px;
}

.module-arrow {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  transition: transform .25s var(--ease), background .25s var(--ease);
}

.module-arrow img {
  width: 17px;
  height: 17px;
}

.module-large .module-arrow {
  border-color: rgba(255,255,255,.2);
  color: #fff;
}

a.info-module:hover .module-arrow {
  transform: translate(5px, -5px);
  background: rgba(253, 236, 156, .16);
}

.module-hours {
  grid-area: hours;
  background: #fff;
}
.module-location {
  grid-area: location;
  background: linear-gradient(145deg, #f7eec6, #fffaf0);
}
.module-social {
  grid-area: social;
  background: linear-gradient(145deg, #e2eff4, #f9fcfd);
}
.module-email {
  grid-area: email;
  background: #fff;
}

/* Final CTA */
.final-cta {
  padding-top: 40px;
  background: var(--off-white);
}

.cta-shell {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 70px;
  padding: clamp(55px, 7vw, 95px);
  border-radius: 44px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 30%, rgba(131, 212, 238, .14), transparent 27%),
    linear-gradient(145deg, #071521 0%, #032a4e 60%, #06131d 100%);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 78%);
}

.cta-copy {
  position: relative;
  z-index: 4;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 17px;
}

.button-large {
  margin-top: 34px;
  min-height: 60px;
  padding-inline: 28px;
}

.cta-symbol {
  position: relative;
  z-index: 4;
  min-height: 400px;
  display: grid;
  place-items: center;
}

.symbol-core {
  position: relative;
  z-index: 4;
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(253,236,156,.42);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 43px;
  font-weight: 850;
  background: rgba(7,21,33,.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 50px rgba(253,236,156,.08);
}

.symbol-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
}

.symbol-ring-a {
  width: 300px;
  height: 300px;
  animation: orbitSpin 20s linear infinite;
}

.symbol-ring-a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-gradient);
}

.symbol-ring-b {
  width: 400px;
  height: 250px;
  transform: rotate(35deg);
  border-style: dashed;
  animation: orbitFloat 9s ease-in-out infinite;
}

.cta-lines span {
  position: absolute;
  left: 0;
  width: 47%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,236,156,.28));
  transform-origin: left;
}

.cta-lines span:nth-child(1) { top: 24%; transform: rotate(8deg); }
.cta-lines span:nth-child(2) { top: 51%; transform: rotate(-5deg); }
.cta-lines span:nth-child(3) { bottom: 18%; transform: rotate(6deg); }

/* Footer */
.site-footer {
  padding: 80px 0 26px;
  color: rgba(255,255,255,.72);
  background: #050f17;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 70px;
}

.footer-brand img {
  width: 210px;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.footer-brand p {
  margin: 18px 0 0;
  max-width: 330px;
  color: rgba(255,255,255,.48);
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 13px;
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}

.footer-social a:hover {
  transform: translateY(-4px);
  border-color: rgba(253,236,156,.5);
}

.footer-social img {
  width: 20px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  margin-top: 66px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.33);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.mobile-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25D366;
  box-shadow: 0 16px 38px rgba(20, 120, 61, .32);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.mobile-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 48px rgba(20, 120, 61, .42);
}

.mobile-whatsapp img {
  width: 28px;
  height: 28px;
}

/* Reveal */
/* Conteúdo visível por padrão.
   As animações só escondem elementos quando o JavaScript confirmou suporte. */
[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .8s var(--ease),
    transform .8s var(--ease);
}

.js [data-reveal="scale"] {
  transform: scale(.94);
}

.js [data-reveal].is-visible,
.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

/* Animations */
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes pulseNode {
  50% { opacity: .45; transform: scale(.78); }
}

@keyframes orbitFloat {
  50% { translate: 0 -12px; }
}

@keyframes badgeFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes connectionFlow {
  to { stroke-dashoffset: -48; }
}

/* Tablet */
@media (max-width: 1080px) {
  :root { --shell: min(100% - 32px, 980px); }

  .nav {
    grid-template-columns: 190px 1fr auto;
  }

  .nav-links { gap: 20px; }

  .hero-layout {
    grid-template-columns: .95fr 1.05fr;
    gap: 30px;
  }

  .hero-art { min-height: 580px; }

  .floating-card {
    min-width: 145px;
    padding: 14px;
  }

  .treatment-node {
    width: 245px;
    min-height: 185px;
  }

  .integrated-grid {
    gap: 35px;
  }

  .practical-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "whatsapp whatsapp"
      "hours location"
      "social email";
    grid-template-rows: auto;
  }

  .module-large {
    min-height: 360px;
  }
}

/* Mobile */
@media (max-width: 780px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .section {
    padding: 80px 0;
  }

  .site-header {
    background: rgba(251,250,247,.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
  }

  .nav {
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 170px;
  }

  .menu-button {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 74px 14px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(251,250,247,.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: .25s var(--ease);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 112px 0 62px;
  }

  .hero-grid {
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-footnote {
    display: grid;
  }

  .hero-art {
    min-height: 470px;
    margin-top: 20px;
  }

  .hero-art::before {
    inset: 20px 0 0;
  }

  .hero-art::after {
    inset: 42px 18px 16px;
  }

  .hero-system {
    inset: 18px 0 0;
  }

  .floating-card {
    min-width: auto;
    font-size: 11px;
  }

  .card-a {
    left: 0;
    top: 120px;
  }

  .card-b {
    right: 0;
    bottom: 90px;
  }

  .card-c {
    left: 22px;
    bottom: 22px;
  }

  .marker-a { right: 25px; top: 90px; }
  .marker-b { left: 20px; bottom: 160px; }

  .trust-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .trust-track::-webkit-scrollbar { display: none; }

  .trust-item {
    flex: 0 0 82%;
    min-height: 76px;
    padding: 0 18px;
    scroll-snap-align: start;
  }

  .section-heading,
  .practical-head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 48px;
  }

  .section-heading h2,
  .integrated h2,
  .practical h2,
  .final-cta h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .treatment-system {
    min-height: auto;
    display: grid;
    gap: 14px;
    padding-top: 22px;
  }

  .system-core {
    width: 220px;
    margin: 0 auto 45px;
  }

  .treatment-node {
    position: relative;
    inset: auto !important;
    width: 100%;
    min-height: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
  }

  .treatment-icon {
    grid-row: 1 / span 3;
  }

  .treatment-node h3 {
    margin: 0 0 5px;
  }

  .node-index {
    right: 18px;
    top: 18px;
  }

  .connection-lines {
    display: none;
  }

  .integrated-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .integration-diagram {
    width: 100%;
    min-height: 430px;
    transform: none;
    margin: 0;
    overflow: visible;
  }

  .diagram-center {
    width: 172px;
  }

  .diagram-center strong {
    font-size: 23px;
  }

  .orbit-1 {
    width: 255px;
    height: 255px;
  }

  .orbit-2 {
    width: 320px;
    height: 205px;
  }

  .orbit-2 span {
    right: -5px;
  }

  .orbit-3 {
    width: 285px;
    height: 350px;
  }

  .orbit-3 span {
    left: -3px;
  }

  .diagram-orbit span {
    min-width: 94px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .practical {
    padding-bottom: 48px;
  }

  .practical-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "whatsapp"
      "hours"
      "location"
      "social"
      "email";
  }

  .module-large {
    min-height: 360px;
  }

  .final-cta {
    padding-top: 0;
  }

  .info-module {
    min-height: 0;
    padding: 24px;
  }

  .module-email {
    margin-bottom: 0;
  }

  .mobile-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .cta-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 52px 26px;
    border-radius: 28px;
  }

  .cta-symbol {
    min-height: 330px;
    margin: -20px -20px 0;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-whatsapp {
    display: grid;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 43px;
  }

  .hero-art {
    min-height: 420px;
  }

  .floating-card {
    padding: 11px 12px;
  }

  .floating-card strong {
    font-size: 13px;
  }

  .card-a { top: 108px; }
  .card-b { bottom: 76px; }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .js [data-reveal],
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ===============================================================
   V3 — Correções finais aprovadas para validação
   =============================================================== */

/* 1. Degradê exclusivamente azul */
.hero h1 span {
  background-image: linear-gradient(
    100deg,
    #022953 0%,
    #17658f 52%,
    #83d4ee 100%
  ) !important;
  background-color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* 2. Ícones WhatsApp contidos e proporcionais */
.nav-cta img,
.button img,
.mobile-whatsapp img,
.footer-social img,
.module-icon img {
  object-fit: contain;
  object-position: center;
}

.nav-cta img {
  width: 18px !important;
  height: 18px !important;
}

.button img {
  width: 19px !important;
  height: 19px !important;
}

.module-icon img {
  width: 25px !important;
  height: 25px !important;
}

.mobile-whatsapp img {
  width: 29px !important;
  height: 29px !important;
}

/* 3. Hero: equilíbrio entre texto e composição */
@media (min-width: 1101px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr) !important;
    gap: clamp(38px, 4.2vw, 66px) !important;
  }

  .hero-copy {
    align-self: center;
  }

  .hero-art {
    width: min(100%, 570px) !important;
    min-height: 560px !important;
    justify-self: end !important;
  }

  .hero h1 {
    max-width: 700px !important;
    font-size: clamp(50px, 5.15vw, 76px) !important;
  }
}

/* 4. A Clínica: composição centrada e estável */
.integrated-grid {
  grid-template-columns: minmax(0, .94fr) minmax(440px, 1.06fr) !important;
  gap: clamp(50px, 7vw, 105px) !important;
}

.integrated-copy {
  align-self: center;
}

.integration-diagram {
  width: min(100%, 550px) !important;
  min-height: 550px !important;
  aspect-ratio: 1 / 1 !important;
  justify-self: end !important;
  overflow: visible !important;
}

.diagram-center {
  left: auto !important;
  top: auto !important;
}

.diagram-orbit {
  transform-origin: center !important;
}

/* Somente os balões se movem; os anéis permanecem alinhados */
.orbit-1,
.orbit-2,
.orbit-3 {
  animation: none !important;
}

.orbit-1 span,
.orbit-2 span,
.orbit-3 span {
  will-change: translate;
}

/* 5. Informações Práticas: bento fechado em duas linhas */
.practical-grid {
  display: grid !important;
  grid-template-columns: minmax(320px, 1.12fr) minmax(210px, .88fr) minmax(210px, .88fr) !important;
  grid-template-rows: repeat(2, 226px) !important;
  grid-template-areas:
    "whatsapp hours location"
    "whatsapp social email" !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.info-module {
  min-width: 0 !important;
  min-height: 226px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

.module-large {
  grid-area: whatsapp !important;
  min-height: 468px !important;
}

.module-hours {
  grid-area: hours !important;
}

.module-location {
  grid-area: location !important;
}

.module-social {
  grid-area: social !important;
}

.module-email {
  grid-area: email !important;
  grid-column: auto !important;
  grid-row: auto !important;
}

.info-module:not(.module-large) .module-icon {
  margin-bottom: auto !important;
}

.module-email strong {
  font-size: clamp(18px, 1.55vw, 23px) !important;
  line-height: 1.12 !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}

/* 6. CTA final: corrige a composição mostrada desalinhada */
.cta-shell {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr) !important;
  min-height: 560px !important;
  align-items: center !important;
}

.cta-copy {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: center !important;
}

.cta-symbol {
  grid-column: 2 !important;
  grid-row: 1 !important;
  min-height: 390px !important;
  align-self: center !important;
}

/* Tablet */
@media (min-width: 781px) and (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr) !important;
    gap: 30px !important;
  }

  .hero-art {
    width: 100% !important;
    min-height: 520px !important;
  }

  .integrated-grid {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
  }

  .integration-diagram {
    width: min(100%, 520px) !important;
    min-height: 520px !important;
    justify-self: center !important;
  }

  .practical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: 340px 220px 220px !important;
    grid-template-areas:
      "whatsapp whatsapp"
      "hours location"
      "social email" !important;
  }

  .module-large {
    min-height: 340px !important;
  }

  .cta-shell {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 20px !important;
  }

  .cta-copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .cta-symbol {
    grid-column: 1 !important;
    grid-row: 2 !important;
    min-height: 300px !important;
  }
}

/* Mobile */
@media (max-width: 780px) {
  .integrated-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .integration-diagram {
    width: min(100%, 360px) !important;
    min-height: 390px !important;
    aspect-ratio: auto !important;
    justify-self: center !important;
    overflow: hidden !important;
  }

  .orbit-1 {
    width: 240px !important;
    height: 240px !important;
  }

  .orbit-2 {
    width: 305px !important;
    height: 196px !important;
  }

  .orbit-3 {
    width: 270px !important;
    height: 330px !important;
  }

  .orbit-2 span {
    right: 2px !important;
  }

  .orbit-3 span {
    left: 2px !important;
  }

  .practical {
    padding-bottom: 38px !important;
  }

  .practical-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    grid-template-areas:
      "whatsapp"
      "hours"
      "location"
      "social"
      "email" !important;
    gap: 14px !important;
  }

  .info-module,
  .module-large {
    min-height: 0 !important;
    height: auto !important;
  }

  .module-large {
    min-height: 330px !important;
  }

  .module-email {
    margin-bottom: 0 !important;
  }

  .final-cta {
    padding-top: 0 !important;
  }

  .cta-shell {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 8px !important;
  }

  .cta-copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .cta-symbol {
    grid-column: 1 !important;
    grid-row: 2 !important;
    min-height: 270px !important;
    margin: 0 !important;
  }
}


/* ===============================================================
   V5 — contraste, camadas e indicação de navegação
   =============================================================== */

/* A Clínica — círculo e seta dourados */
.text-link-icon {
  border-color: rgba(253, 236, 156, .78) !important;
  color: var(--gold-light) !important;
  background: rgba(178, 124, 18, .11) !important;
  box-shadow: inset 0 0 0 1px rgba(178, 124, 18, .08);
}

.text-link-icon img {
  width: 18px !important;
  height: 18px !important;
}

.text-link:hover .text-link-icon {
  background: rgba(178, 124, 18, .22) !important;
  border-color: var(--gold-light) !important;
}

/* Os balões precisam permanecer acima do círculo central */
.diagram-center {
  z-index: 3 !important;
}

.diagram-orbit {
  z-index: 5 !important;
  pointer-events: none;
}

.diagram-orbit span {
  z-index: 6 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

/* Faixa 01–04: indicação visual de conteúdo lateral */
.trust-strip {
  position: relative;
}

.trust-swipe-hint {
  display: none;
  align-items: center;
  gap: 9px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  pointer-events: none;
}

.trust-swipe-hint img {
  width: 34px;
  height: 16px;
  animation: swipeHint 1.45s ease-in-out infinite;
}

@keyframes swipeHint {
  0%, 100% {
    transform: translateX(0);
    opacity: .62;
  }
  50% {
    transform: translateX(7px);
    opacity: 1;
  }
}

/* Setas dos contatos com dourado e contraste */
.module-arrow {
  border-color: rgba(178, 124, 18, .5) !important;
  background: rgba(253, 236, 156, .16) !important;
  color: var(--gold-dark) !important;
}

.module-arrow img {
  width: 18px !important;
  height: 18px !important;
}

.module-large .module-arrow {
  border-color: rgba(253, 236, 156, .72) !important;
  background: rgba(178, 124, 18, .18) !important;
}

/* Símbolo oficial da marca no próximo passo */
.symbol-core {
  padding: 22px !important;
  overflow: hidden;
}

.symbol-core img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block;
}

/* O favicon já contém o símbolo e suas cores. */
.symbol-core {
  color: transparent !important;
  font-size: 0 !important;
}

/* Mobile */
@media (max-width: 780px) {
  .trust-strip {
    padding-bottom: 28px;
  }

  .trust-track {
    padding-right: 18vw;
  }

  .trust-strip::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 28px;
    width: 70px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.96));
    pointer-events: none;
  }

  .trust-swipe-hint {
    position: absolute;
    right: 18px;
    bottom: 7px;
    z-index: 3;
    display: inline-flex;
  }

  .trust-item:first-child {
    animation: trustItemNudge 2.2s .8s ease-in-out 1;
  }

  @keyframes trustItemNudge {
    0%, 100% { transform: translateX(0); }
    42% { transform: translateX(-14px); }
    68% { transform: translateX(4px); }
  }

  .diagram-orbit {
    z-index: 5 !important;
  }

  .diagram-orbit span {
    z-index: 6 !important;
  }

  .symbol-core {
    width: 158px !important;
    padding: 20px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-swipe-hint img,
  .trust-item:first-child {
    animation: none !important;
  }
}


/* ===============================================================
   V6 — última rodada de ajustes solicitados por Pablo
   =============================================================== */

/* Ícone oficial no núcleo de tratamentos */
.core-content {
  gap: 8px;
}

.core-brand-icon {
  width: 62px;
  height: 46px;
  object-fit: contain;
  display: block;
  margin: 0 auto 3px;
}

.core-content strong {
  margin-top: 0 !important;
}

/* Menor espaço entre CUIDADO e integrado */
.diagram-center {
  row-gap: 0 !important;
}

.diagram-center span {
  line-height: 1 !important;
  margin-bottom: 2px !important;
}

.diagram-center strong {
  line-height: 1 !important;
  margin-top: 0 !important;
}

/* Balões orbitais horizontais */
.diagram-orbit {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  transform: none !important;
  pointer-events: none;
}

.diagram-orbit::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1::before {
  width: 62%;
  height: 62%;
}

.orbit-2::before {
  width: 86%;
  height: 54%;
}

.orbit-3::before {
  width: 72%;
  height: 88%;
}

.diagram-orbit span {
  left: 0 !important;
  right: auto !important;
  top: 0 !important;
  transform: none !important;
  offset-anchor: 50% 50%;
  offset-rotate: 0deg !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
  will-change: offset-distance;
}

.orbit-1 span {
  offset-path: ellipse(31% 31% at 50% 50%);
  animation-name: orbitBadgePath !important;
  animation-duration: 15s !important;
  animation-delay: -1s !important;
}

.orbit-2 span {
  offset-path: ellipse(43% 27% at 50% 50%);
  animation-name: orbitBadgePath !important;
  animation-duration: 19s !important;
  animation-delay: -7s !important;
  animation-direction: reverse !important;
}

.orbit-3 span {
  offset-path: ellipse(36% 44% at 50% 50%);
  animation-name: orbitBadgePath !important;
  animation-duration: 23s !important;
  animation-delay: -14s !important;
}

@keyframes orbitBadgePath {
  from { offset-distance: 0%; }
  to { offset-distance: 100%; }
}

@supports not (offset-path: ellipse(30% 30% at 50% 50%)) {
  .diagram-orbit span {
    position: absolute;
    animation: badgeFloat 5s ease-in-out infinite !important;
  }

  .orbit-1 span {
    left: 50% !important;
    top: 7% !important;
    transform: translateX(-50%) !important;
  }

  .orbit-2 span {
    right: 3% !important;
    left: auto !important;
    top: 49% !important;
    transform: translateY(-50%) !important;
  }

  .orbit-3 span {
    left: 3% !important;
    top: 61% !important;
    transform: translateY(-50%) !important;
  }
}

/* Ícones dourados substituem a numeração */
.trust-icon {
  width: 31px;
  height: 31px;
  display: grid !important;
  place-items: center;
  flex: 0 0 31px;
}

.trust-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.trust-item {
  gap: 14px !important;
}

/* DESLIZE centralizado */
.trust-swipe-hint {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  justify-content: center;
  white-space: nowrap;
}

/* Todos os cards claros usam o mesmo amarelo */
.module-hours,
.module-location,
.module-social,
.module-email {
  background: linear-gradient(145deg, #f7eec6 0%, #fffaf0 100%) !important;
  border-color: rgba(178, 124, 18, .22) !important;
}

/* Setas escuras nos fundos claros */
.module-hours .module-arrow,
.module-location .module-arrow,
.module-social .module-arrow,
.module-email .module-arrow {
  border-color: rgba(2, 41, 83, .28) !important;
  background: rgba(255,255,255,.42) !important;
}

/* Card escuro mantém destaque dourado */
.module-large .module-arrow {
  border-color: rgba(253, 236, 156, .72) !important;
  background: rgba(178, 124, 18, .18) !important;
}

/* Logotipo completo no Próximo passo */
.symbol-core {
  width: 238px !important;
  height: 150px !important;
  aspect-ratio: auto !important;
  padding: 20px 25px !important;
  border-radius: 30px !important;
  background: rgba(7,21,33,.76) !important;
}

.symbol-core img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

@media (max-width: 780px) {
  .core-brand-icon {
    width: 54px;
    height: 40px;
  }

  .integration-diagram {
    overflow: visible !important;
  }

  .diagram-orbit span {
    min-width: 96px !important;
    min-height: 40px !important;
    padding: 0 13px !important;
    font-size: 11px !important;
  }

  .trust-swipe-hint {
    bottom: 7px !important;
  }

  .symbol-core {
    width: 216px !important;
    height: 136px !important;
    padding: 18px 22px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .diagram-orbit span {
    animation: none !important;
    offset-distance: 0% !important;
  }

  .orbit-1 span {
    left: 50% !important;
    top: 7% !important;
    transform: translateX(-50%) !important;
  }

  .orbit-2 span {
    right: 3% !important;
    left: auto !important;
    top: 49% !important;
    transform: translateY(-50%) !important;
  }

  .orbit-3 span {
    left: 3% !important;
    top: 61% !important;
    transform: translateY(-50%) !important;
  }
}


/* ===============================================================
   V7 — ajustes de logo solicitados por Pablo
   =============================================================== */

/* Próximo passo: logotipo completo sobre fundo branco */
.symbol-core {
  background: #ffffff !important;
  border: 1px solid rgba(178, 124, 18, 0.55) !important;
  box-shadow: 0 18px 40px rgba(2, 41, 83, 0.18) !important;
}

.symbol-core img {
  filter: none !important;
}

/* Sistema de tratamentos: ícone central totalmente branco */
.core-brand-icon {
  width: 72px !important;
  height: 54px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto 6px;
}

@media (max-width: 780px) {
  .core-brand-icon {
    width: 62px !important;
    height: 46px !important;
  }

  .symbol-core {
    background: #ffffff !important;
  }
}


/* ===============================================================
   V8 — animações desktop equivalentes ao mobile
   =============================================================== */

@media (min-width: 781px) and (prefers-reduced-motion: no-preference) {
  .hero-system {
    will-change: transform;
    transform-origin: center center;
  }

  /* No desktop, o movimento dos balões é calculado por JavaScript
     para evitar incompatibilidade do motion-path entre navegadores. */
  .desktop-orbit-js .diagram-orbit span {
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    offset-path: none !important;
    offset-distance: 0 !important;
    animation: none !important;
    transform:
      translate(-50%, -50%)
      translate3d(var(--orbit-x, 0px), var(--orbit-y, 0px), 0) !important;
    will-change: transform;
  }
}


/* ===============================================================
   V9 PÚBLICA — base visual restaurada da V8
   Somente espaçamento inferior e órbita desktop foram corrigidos.
   =============================================================== */

@media (min-width: 781px) {
  /* Dimensões e tipografia permanecem exatamente como na V8. */
  .treatment-node {
    width: 280px !important;
    min-height: 195px !important;
    height: auto !important;
    padding: 24px !important;
    overflow: visible !important;
  }

  .node-1,
  .node-4 {
    top: 50px !important;
    bottom: auto !important;
  }

  .node-2,
  .node-5 {
    top: 285px !important;
    bottom: auto !important;
  }

  /* Somente os dois cards inferiores sobem:
     285 + 195 + 40 = 520. */
  .node-3,
  .node-6 {
    top: 520px !important;
    bottom: auto !important;
  }

  .treatment-node p {
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
  }
}

@media (min-width: 781px) and (prefers-reduced-motion: no-preference) {
  /* Cada anel gira em torno do centro. O balão executa a rotação
     inversa e, portanto, permanece sempre horizontal. */
  .integration-diagram .diagram-orbit {
    inset: auto !important;
    left: 50% !important;
    top: 50% !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 5 !important;
  }

  .integration-diagram .diagram-orbit::before {
    display: none !important;
  }

  .integration-diagram .diagram-orbit span {
    offset-path: none !important;
    offset-distance: 0 !important;
    offset-rotate: 0deg !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
    z-index: 6 !important;
    will-change: transform;
  }

  .integration-diagram .orbit-1 {
    width: 340px !important;
    height: 340px !important;
    animation: desktopOrbitOne 15s linear infinite !important;
  }

  .integration-diagram .orbit-1 span {
    left: 50% !important;
    right: auto !important;
    top: -21px !important;
    animation: desktopCounterOne 15s linear infinite !important;
  }

  .integration-diagram .orbit-2 {
    width: 450px !important;
    height: 285px !important;
    animation: desktopOrbitTwo 19s linear infinite reverse !important;
  }

  .integration-diagram .orbit-2 span {
    left: auto !important;
    right: -22px !important;
    top: 50% !important;
    animation: desktopCounterTwo 19s linear infinite reverse !important;
  }

  .integration-diagram .orbit-3 {
    width: 390px !important;
    height: 470px !important;
    animation: desktopOrbitThree 23s linear infinite !important;
  }

  .integration-diagram .orbit-3 span {
    left: -18px !important;
    right: auto !important;
    top: 55% !important;
    animation: desktopCounterThree 23s linear infinite !important;
  }

  @keyframes desktopOrbitOne {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
  }

  @keyframes desktopCounterOne {
    from { transform: translateX(-50%) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(-360deg); }
  }

  @keyframes desktopOrbitTwo {
    from { transform: translate(-50%, -50%) rotate(32deg); }
    to   { transform: translate(-50%, -50%) rotate(392deg); }
  }

  @keyframes desktopCounterTwo {
    from { transform: translateY(-50%) rotate(-32deg); }
    to   { transform: translateY(-50%) rotate(-392deg); }
  }

  @keyframes desktopOrbitThree {
    from { transform: translate(-50%, -50%) rotate(-25deg); }
    to   { transform: translate(-50%, -50%) rotate(335deg); }
  }

  @keyframes desktopCounterThree {
    from { transform: translateY(-50%) rotate(25deg); }
    to   { transform: translateY(-50%) rotate(-335deg); }
  }
}


/* ===============================================================
   V10 PÚBLICA — correções finais desktop solicitadas por Pablo
   =============================================================== */

@media (min-width: 781px) {
  /* Aproxima apenas Restaurações de Cirurgias. Os demais cards
     permanecem exatamente nas posições da V9/V8. */
  .node-6 {
    top: 500px !important;
    bottom: auto !important;
  }

  /* A Clínica: composição desktop estática e legível.
     A animação orbital foi removida somente no desktop porque não
     apresentou consistência no navegador local do usuário. */
  .integration-diagram .diagram-orbit,
  .integration-diagram .diagram-orbit span {
    animation: none !important;
  }

  .integration-diagram .diagram-orbit {
    inset: 0 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    border: 0 !important;
    pointer-events: none !important;
    z-index: 5 !important;
  }

  .integration-diagram .diagram-orbit::before {
    display: block !important;
  }

  .integration-diagram .diagram-orbit span {
    offset-path: none !important;
    offset-distance: 0 !important;
    offset-rotate: 0deg !important;
    z-index: 6 !important;
    min-width: 118px !important;
    transform: none !important;
  }

  /* Prevenção: topo central */
  .integration-diagram .orbit-1 span {
    left: 50% !important;
    right: auto !important;
    top: 5% !important;
    transform: translateX(-50%) !important;
  }

  /* Função: lateral direita */
  .integration-diagram .orbit-2 span {
    left: auto !important;
    right: 1% !important;
    top: 51% !important;
    transform: translateY(-50%) !important;
  }

  /* Estética: lateral esquerda */
  .integration-diagram .orbit-3 span {
    left: 1% !important;
    right: auto !important;
    top: 62% !important;
    transform: translateY(-50%) !important;
  }
}

/* ===============================================================
   PATCH CONSOLIDADO — Clínica e Informações Práticas no desktop
   Base auditada preservada; mobile permanece sem alterações.
   =============================================================== */

@media (min-width: 781px) {
  /* Permite que linhas, centro e balões usem camadas independentes. */
  .integration-diagram {
    isolation: isolate !important;
  }

  .integration-diagram .diagram-glow {
    z-index: 0 !important;
  }

  .integration-diagram .diagram-orbit {
    z-index: auto !important;
  }

  .integration-diagram .diagram-orbit::before {
    z-index: 1 !important;
  }

  .integration-diagram .diagram-center {
    z-index: 2 !important;
  }

  .integration-diagram .diagram-orbit span {
    z-index: 3 !important;
    background: #05151f !important;
    border-color: rgba(253, 236, 156, .5) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22) !important;
  }

  /* Mantém os módulos e seus ícones quadrados sem alterar o mobile. */
  .practical-grid .info-module .module-icon {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    aspect-ratio: 1 / 1 !important;
    flex: 0 0 54px !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .practical-grid .info-module .module-icon img {
    width: 25px !important;
    height: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
    display: block !important;
    object-fit: contain !important;
  }

  .practical-grid .info-module:not(.module-large) strong {
    max-width: calc(100% - 6px) !important;
    font-size: clamp(18px, 1.45vw, 21px) !important;
    line-height: 1.12 !important;
    letter-spacing: -.02em !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .practical-grid .info-module.module-social strong,
  .practical-grid .info-module.module-email strong {
    font-size: clamp(17px, 1.32vw, 19px) !important;
    line-height: 1.12 !important;
  }

  .practical-grid .info-module p {
    max-width: 100% !important;
  }
}

/* Correção pontual: impede que o cartão 06 invada o cartão 05. */
@media (min-width: 781px) {
  .treatment-system .node-6 {
    top: 520px !important;
  }
}

/* Correção final isolada: contenção horizontal mobile e coluna direita
   com espaçamento estrutural, sem dependência de JavaScript. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

@media (min-width: 781px) {
  .treatment-column-right {
    position: absolute;
    z-index: 4;
    top: 50px;
    right: 0;
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .treatment-column-right .treatment-node {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
  }
}

@media (max-width: 780px) {
  .treatment-column-right {
    display: contents;
  }
}
