/* ================================================================
   V10 · VÉRTEBRA PREMIUM
   Medical intelligence, editorial clarity and restrained motion.
   This layer deliberately keeps the approved content and behavior.
   ================================================================ */

:root {
  --color-bg: #f7f9fc;
  --color-surface: #eef3fa;
  --color-surface-strong: #dce7f7;
  --color-ink: #07162f;
  --color-ink-soft: #4d5d75;
  --color-cobalt: #2f6bff;
  --color-cobalt-deep: #1747c8;
  --color-cobalt-light: #9fc5ff;
  --color-signal: #ff6b4a;
  --color-success: #158a67;
  --color-on-cobalt: #f7faff;
  --color-line: #cbd7e8;
  --font-sans: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  --text-display: clamp(3.25rem, 6.7vw, 6.85rem);
  --text-h2: clamp(2.35rem, 4.8vw, 5rem);
  --text-h3: clamp(1.35rem, 2vw, 1.78rem);
  --text-body: 1.025rem;
  --space-section: clamp(6.25rem, 11vw, 11rem);
  --radius-sm: .8rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.25rem;
  --container: 86rem;
  --shadow-sm: 0 1px 2px rgb(7 22 47 / .05), 0 12px 36px rgb(7 22 47 / .07);
  --shadow-lg: 0 26px 90px rgb(7 22 47 / .18);
}

@supports (color: oklch(0% 0 0)) {
  :root {
    --color-bg: oklch(.982 .008 250);
    --color-surface: oklch(.96 .014 250);
    --color-surface-strong: oklch(.92 .03 250);
    --color-ink: oklch(.205 .065 258);
    --color-ink-soft: oklch(.46 .035 255);
    --color-cobalt: oklch(.59 .235 259);
    --color-cobalt-deep: oklch(.49 .22 260);
    --color-cobalt-light: oklch(.81 .095 254);
    --color-signal: oklch(.7 .19 36);
    --color-line: oklch(.87 .03 252);
  }
}

html { scroll-padding-top: 8rem; }
html[lang="pt-BR"],
html[lang="pt-BR"] body { overflow-x: clip; }
body {
  background:
    radial-gradient(circle at 12% 8%, rgb(47 107 255 / .05), transparent 28rem),
    var(--color-bg);
  letter-spacing: -.006em;
}

::selection { background: var(--color-cobalt); color: #fff; }
.container { width: min(calc(100% - clamp(2rem, 5vw, 5rem)), var(--container)); }
.scroll-progress {
  position: fixed;
  z-index: 100;
  inset: 0 auto auto 0;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--color-cobalt), var(--color-cobalt-light), var(--color-signal));
  box-shadow: 0 0 16px rgb(47 107 255 / .72);
  pointer-events: none;
}

/* ---------- top utility + navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}
.site-header.scrolled {
  background: rgb(247 249 252 / .88);
  box-shadow: 0 10px 34px rgb(7 22 47 / .1), inset 0 -1px rgb(7 22 47 / .08);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}
.utility-bar {
  min-height: 2.15rem;
  display: flex;
  align-items: center;
  color: rgb(247 250 255 / .68);
  background: transparent;
  border-bottom: 1px solid rgb(255 255 255 / .08);
  font-size: .71rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-header.scrolled .utility-bar { background: rgb(7 22 47 / .96); }
.utility-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.utility-label { display: inline-flex; align-items: center; gap: .65rem; }
.utility-label::before {
  content: "";
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--color-cobalt-light);
  box-shadow: 0 0 0 .26rem rgb(159 197 255 / .12), 0 0 18px rgb(159 197 255 / .75);
}
.language-switcher { display: inline-flex; align-items: center; gap: .15rem; }
.language-switcher a {
  min-width: 2.25rem;
  min-height: 1.55rem;
  display: inline-grid;
  place-items: center;
  padding: .2rem .5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgb(247 250 255 / .58);
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.language-switcher a:hover { color: #fff; background: rgb(255 255 255 / .07); }
.language-switcher a[aria-current="page"] {
  color: #fff;
  background: rgb(47 107 255 / .22);
  border-color: rgb(159 197 255 / .42);
}
.header-inner { min-height: 5rem; }
.wordmark { gap: .76rem; font-size: 1.18rem; font-weight: 750; letter-spacing: -.04em; }
.wordmark-mark { width: 1.55rem; gap: 2.5px; transform: rotate(-8deg); }
.wordmark-mark i {
  height: 3px;
  background: var(--color-cobalt);
  box-shadow: none;
}
.site-footer .wordmark-mark i { background: var(--color-cobalt-light); }
.site-header:not(.scrolled) .wordmark { color: #fff; }
.site-header:not(.scrolled) .wordmark strong { color: var(--color-cobalt-light); }
.site-header:not(.scrolled) .wordmark-mark i { background: var(--color-cobalt-light); }
.desktop-nav {
  gap: .1rem;
  padding: .28rem;
  border: 1px solid rgb(7 22 47 / .09);
  border-radius: 999px;
  background: rgb(255 255 255 / .62);
  box-shadow: 0 5px 24px rgb(7 22 47 / .04);
}
.site-header:not(.scrolled) .desktop-nav {
  border-color: rgb(255 255 255 / .16);
  background: rgb(7 22 47 / .18);
  box-shadow: none;
  backdrop-filter: blur(14px);
}
.site-header:not(.scrolled) .desktop-nav a { color: rgb(247 250 255 / .78); }
.site-header:not(.scrolled) .desktop-nav a:hover,
.site-header:not(.scrolled) .desktop-nav a[aria-current="location"] { color: #fff; background: rgb(255 255 255 / .11); box-shadow: none; }
.desktop-nav a {
  min-height: 2.35rem;
  padding: 0 .88rem;
  border-radius: 999px;
  color: var(--color-ink-soft);
  font-size: .78rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease;
}
.desktop-nav a:hover { color: var(--color-ink); background: var(--color-surface); text-decoration: none; }
.desktop-nav a[aria-current="location"] { color: var(--color-ink); background: #fff; box-shadow: 0 5px 16px rgb(7 22 47 / .08); }
.header-cta {
  min-height: 2.85rem;
  padding: .72rem 1.15rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--color-cobalt);
  box-shadow: 0 10px 28px rgb(47 107 255 / .22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--color-cobalt-deep); box-shadow: 0 14px 34px rgb(47 107 255 / .32); }
.menu-button { border-radius: 50%; background: var(--color-surface); }
.site-header:not(.scrolled) .menu-button { color: #fff; background: rgb(255 255 255 / .1); }

/* ---------- shared buttons ---------- */
.button {
  min-height: 3.65rem;
  padding: .92rem 1.55rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  letter-spacing: -.012em;
  box-shadow: none;
}
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgb(255 255 255 / .25), transparent 70%);
  transform: translateX(-140%);
  transition: transform 600ms var(--ease-out);
}
.button:hover::after { transform: translateX(140%); }
.button-primary { background: var(--color-cobalt); box-shadow: 0 16px 40px rgb(47 107 255 / .24); }
.button-primary:hover { background: #1747c8; box-shadow: 0 20px 48px rgb(47 107 255 / .32); }
.button-outline { color: var(--color-ink); box-shadow: inset 0 0 0 1px rgb(7 22 47 / .2); }
.button-outline:hover { background: var(--color-ink); color: #fff; box-shadow: inset 0 0 0 1px var(--color-ink); }
.text-link {
  border-bottom: 0;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgb(47 107 255 / .48);
  text-underline-offset: .42rem;
}
.door-note a {
  text-decoration-thickness: 1px;
  text-decoration-color: rgb(47 107 255 / .42);
  text-underline-offset: .26em;
}

/* ---------- immersive hero ---------- */
.hero {
  --hero-bg-y: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 7.15rem 0 0;
  color: #f7faff;
  background: #07162f;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -4;
  inset: -12% -4% -12% 34%;
  background: url("fluxo-vertebral-v10.jpg") left center / cover no-repeat;
  transform: translate3d(0, calc(var(--hero-bg-y) * 1px), 0) scale(1.08) scaleX(-1);
  transform-origin: center;
  will-change: transform;
  opacity: .76;
  filter: grayscale(.58) saturate(.58) brightness(1.16) contrast(1.08);
}
.hero-video {
  position: absolute;
  z-index: -3;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  background: transparent;
  transition: opacity 900ms ease;
}
.hero-video.is-playing { opacity: 1; }
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgb(7 22 47 / .12);
}
.hero-video-player,
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  border: 0;
  transform: translate(-50%, -50%);
}
.hero-video iframe {
  filter: saturate(.78) contrast(1.05) brightness(.82);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, #07162f 0%, rgb(7 22 47 / .97) 34%, rgb(7 22 47 / .67) 63%, rgb(7 22 47 / .2) 100%),
    linear-gradient(0deg, #07162f 0%, transparent 25%),
    radial-gradient(circle at 82% 28%, rgb(239 243 250 / .17), transparent 31%);
}
.hero-flow { z-index: -1; opacity: .7; mix-blend-mode: screen; }
.hero-grid { flex: 1 1 auto; grid-template-columns: minmax(0, 1.05fr) minmax(25rem, .78fr); gap: clamp(3rem, 7vw, 8rem); padding-block: clamp(2rem, 5.6vh, 4.5rem); }
.hero-copy { position: relative; z-index: 2; }
.hero-context {
  width: fit-content;
  margin-bottom: 1.5rem;
  padding: .55rem .82rem;
  border: 1px solid rgb(159 197 255 / .3);
  border-radius: 999px;
  color: var(--color-cobalt-light);
  background: rgb(47 107 255 / .1);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.hero h1 {
  max-width: 11.6ch;
  color: #f7faff;
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: 1.035;
  text-wrap: balance;
}
.hero h1 em {
  color: transparent;
  background: linear-gradient(110deg, #fff 0%, var(--color-cobalt-light) 48%, #74f0d0 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-lead { max-width: 52ch; margin-top: 2rem; color: rgb(235 242 255 / .72); font-size: clamp(1.08rem, 1.5vw, 1.3rem); }
.hero-assurance { color: rgb(235 242 255 / .68); }
.hero-assurance svg { color: #74f0d0; }
.hero .button-outline { color: #fff; box-shadow: inset 0 0 0 1px rgb(255 255 255 / .28); backdrop-filter: blur(10px); }
.hero .button-outline:hover { background: #fff; color: var(--color-ink); }
.panel-demo { perspective: 1200px; }
.panel-card {
  border: 1px solid rgb(159 197 255 / .2);
  border-radius: 1.6rem;
  color: var(--color-ink);
  background: rgb(247 250 255 / .64);
  box-shadow: 0 35px 110px rgb(0 6 24 / .52), 0 0 0 8px rgb(255 255 255 / .035);
  backdrop-filter: blur(9px) saturate(122%);
  -webkit-backdrop-filter: blur(9px) saturate(122%);
  transform: rotateY(-4deg) rotateX(1.5deg);
  transform-origin: center;
}
.panel-top { padding: 1rem 1.2rem; color: #fff; background: linear-gradient(125deg, rgb(11 35 80 / .88), rgb(23 71 200 / .86)); }
.panel-stats, .panel-chart { background: rgb(247 250 255 / .18); }
.panel-live { color: #b8ffec; }
.panel-live i { background: #68efcb; box-shadow: 0 0 12px #68efcb; }
.panel-stat { padding: 1.15rem 1.2rem; border-color: rgb(7 22 47 / .09); }
.panel-stat small { color: #66768d; }
.panel-stat strong { font-size: clamp(1.55rem, 2.4vw, 2rem); }
.panel-stat em { color: #158a67; }
.panel-bars { gap: 5px; }
.panel-bars i { border-radius: 999px 999px 3px 3px; background: linear-gradient(180deg, #77a3ff, #2f6bff); }
.panel-bars i:nth-child(4n) { background: linear-gradient(180deg, #74f0d0, #169775); }
.panel-caption { color: rgb(235 242 255 / .62); }
.cobalt-band {
  height: clamp(.7rem, 1.2vw, 1rem);
  flex: 0 0 auto;
  margin-top: 0;
  background: linear-gradient(90deg, #07162f, var(--color-cobalt), #9fc5ff 70%, #74f0d0);
}
.cobalt-band span { display: none; }

/* ---------- logos ---------- */
.logo-strip { position: relative; padding: 2.2rem 0 2.6rem; border: 0; background: #fff; overflow: hidden; }
.logo-strip::before, .logo-strip::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  width: min(12vw, 10rem);
  pointer-events: none;
}
.logo-strip::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.logo-strip::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.logo-strip .container > p { color: #7b889d; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.logo-marquee { margin-top: 1.45rem; }
.loccitane-wordmark {
  display: grid;
  justify-items: center;
  gap: .14rem;
  color: currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .085em;
  line-height: .9;
  text-align: center;
}
.loccitane-wordmark small {
  font-family: var(--font-sans);
  font-size: .48rem;
  font-weight: 750;
  letter-spacing: .2em;
  line-height: 1;
}
.logo-set { gap: clamp(2.5rem, 4.5vw, 5rem); }
.logo-set .lg { opacity: .58; filter: grayscale(1); transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease; }
.logo-set .lg img { mix-blend-mode: multiply; }
.logo-set .lg:hover { opacity: .95; filter: none; transform: translateY(-2px); }

/* ---------- editorial section system ---------- */
.doors, .method, .cfm { background: var(--color-bg); }
.press {
  padding-bottom: clamp(2.5rem, 2.5vw, 4rem);
  background: linear-gradient(180deg, #eef3fa 0%, #f3f6fb 100%);
  border-bottom: 1px solid rgb(47 107 255 / .08);
}
.method { padding-top: clamp(3.5rem, 3vw, 5rem); }
.services, .budget, .faq { background: #eef3fa; }
.doors-heading p.context, .section-context {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--color-cobalt-deep);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.doors-heading p.context::before, .section-context::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: currentColor;
}
.doors-heading h2, .section-heading h2, .cases h2, .contact h2 {
  font-weight: 620;
  letter-spacing: -.055em;
  line-height: .98;
}
.doors-heading > p:last-child, .section-heading > p:last-of-type { color: var(--color-ink-soft); }

/* ---------- audience doors ---------- */
.doors { position: relative; overflow: hidden; }
.doors::before {
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  right: -18rem;
  top: 10rem;
  border: 1px solid rgb(47 107 255 / .12);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgb(47 107 255 / .025), 0 0 0 10rem rgb(47 107 255 / .018);
}
.doors-layout { gap: 1rem; }
.door-list { gap: .65rem; }
.door-tab {
  padding: 1.08rem 1.15rem;
  border-color: rgb(7 22 47 / .1);
  border-radius: 1rem;
  background: rgb(255 255 255 / .65);
  box-shadow: 0 1px 0 rgb(255 255 255 / .8) inset;
  transition: transform 240ms var(--ease-out), border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}
.door-tab:hover { transform: translateX(4px); border-color: rgb(47 107 255 / .4); }
.door-tab[aria-selected="true"] {
  color: #fff;
  border-color: rgb(159 197 255 / .24);
  background: linear-gradient(125deg, #07162f, #0d2d63);
  box-shadow: 0 18px 42px rgb(7 22 47 / .2), inset 0 1px rgb(255 255 255 / .1);
}
.door-tab[aria-selected="true"] .door-num { color: var(--color-cobalt-light); }
.door-tab[aria-selected="true"] small { color: rgb(235 242 255 / .66); }
.door-panel {
  border-color: rgb(7 22 47 / .09);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgb(47 107 255 / .1), transparent 22rem),
    #fff;
  box-shadow: var(--shadow-sm);
}
.door-situation { border-color: var(--color-signal); }
.door-block li svg { color: var(--color-cobalt); }
.door-visual {
  position: relative;
  isolation: isolate;
  min-width: 0;
  margin: 1.25rem 0 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgb(47 107 255 / .14);
  border-radius: 1.15rem;
  background: #dfe9f7;
  box-shadow: 0 18px 38px rgb(7 22 47 / .13);
}
.door-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgb(4 13 31 / .74) 100%),
    linear-gradient(135deg, rgb(47 107 255 / .12), transparent 48%);
}
.door-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 700ms var(--ease-out), filter 700ms ease;
}
.door-panel:not([hidden]) .door-visual img {
  animation: door-image-in 620ms var(--ease-out) both;
}
.door-visual figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 1rem .9rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #fff;
}
.door-visual figcaption span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgb(255 255 255 / .42);
  border-radius: 50%;
  background: rgb(7 22 47 / .28);
  backdrop-filter: blur(8px);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .08em;
}
.door-visual figcaption small {
  max-width: 18ch;
  font-size: .73rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .02em;
  text-wrap: balance;
}
.door-block:nth-child(2) {
  padding: 1.15rem 1.2rem;
  border: 1px solid rgb(47 107 255 / .12);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgb(231 239 255 / .82), rgb(245 248 255 / .68));
}
.door-block:nth-child(2) li svg { color: var(--color-signal); }
@keyframes door-image-in {
  from { opacity: .72; transform: scale(1.035); filter: saturate(.82); }
  to { opacity: 1; transform: scale(1); filter: saturate(1); }
}

/* ---------- services ---------- */
.services { position: relative; overflow: hidden; }
.services::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image: linear-gradient(rgb(47 107 255 / .055) 1px, transparent 1px), linear-gradient(90deg, rgb(47 107 255 / .055) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(90deg, transparent, #000 70%, transparent);
}
.services > .container { position: relative; z-index: 1; }
.service-list { border: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.service-list li {
  min-height: 10.5rem;
  grid-template-columns: 2.65rem 1fr;
  align-content: start;
  padding: 1.45rem;
  border: 1px solid rgb(7 22 47 / .09);
  border-radius: 1.25rem;
  background: rgb(255 255 255 / .72);
  box-shadow: 0 1px 0 #fff inset;
  transition: transform 240ms var(--ease-out), border-color 240ms ease, box-shadow 240ms ease;
}
.service-list li:hover { transform: translateY(-5px); border-color: rgb(47 107 255 / .28); box-shadow: 0 18px 45px rgb(7 22 47 / .08); }
.service-list .ic {
  width: 2.65rem;
  height: 2.65rem;
  padding: .7rem;
  border-radius: .9rem;
  color: var(--color-cobalt);
  background: rgb(47 107 255 / .09);
}
.service-list .service-ai {
  grid-column: 1 / -1;
  grid-template-columns: 2.65rem minmax(0, 1fr) minmax(9rem, .46fr);
  min-height: 14rem;
  align-items: stretch;
  padding: 0 0 0 1.6rem;
  overflow: hidden;
  color: #fff;
  border-color: rgb(159 197 255 / .2);
  background:
    radial-gradient(circle at 72% 0%, rgb(47 107 255 / .26), transparent 20rem),
    linear-gradient(125deg, #07162f, #0d2d63);
  box-shadow: 0 22px 48px rgb(7 22 47 / .2), inset 0 1px rgb(255 255 255 / .08);
}
.service-list .service-ai:hover {
  border-color: rgb(159 197 255 / .4);
  box-shadow: 0 28px 58px rgb(7 22 47 / .26), inset 0 1px rgb(255 255 255 / .1);
}
.service-ai > .ic {
  align-self: start;
  margin-top: 1.65rem;
  color: #fff;
  background: rgb(47 107 255 / .35);
  box-shadow: inset 0 0 0 1px rgb(159 197 255 / .2);
}
.service-ai > div {
  align-self: center;
  padding: 1.55rem 1rem 1.55rem 0;
}
.service-ai .service-trend {
  width: fit-content;
  display: block;
  margin-bottom: .72rem;
  padding: .32rem .62rem;
  border: 1px solid rgb(159 197 255 / .28);
  border-radius: 999px;
  color: var(--color-cobalt-light);
  background: rgb(47 107 255 / .12);
  font-size: .65rem;
  font-weight: 780;
  line-height: 1;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.service-ai strong {
  display: block;
  max-width: 23ch;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.service-list .service-ai p {
  max-width: 56ch;
  margin-top: .72rem;
  color: rgb(235 242 255 / .76);
  font-size: clamp(.86rem, 1vw, .96rem);
  line-height: 1.5;
}
.service-ai-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.service-ai-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #0b2857 0%, transparent 32%), linear-gradient(180deg, transparent 60%, rgb(4 13 31 / .3));
}
.service-ai-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 44%;
  transition: transform 700ms var(--ease-out), filter 700ms ease;
}
.service-ai:hover .service-ai-visual img { transform: scale(1.035); filter: saturate(1.08); }

/* ---------- authority image band ---------- */
.photo-band { color: #fff; background: #07162f; }
.photo-band figure { overflow: visible; }
.photo-band figure::after { display: none; }
.photo-band img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.photo-band figcaption { position: static; z-index: auto; }
.photo-band blockquote p { font-weight: 620; letter-spacing: -.055em; }
.photo-band blockquote em { color: var(--color-cobalt-light); }
.photo-band blockquote .authority-proof-line { display: inline-block; white-space: nowrap; }
.photo-band-note { color: rgb(235 242 255 / .7); }

/* ---------- legendas editoriais ---------- */
.panel-caption,
.photo-band figcaption,
.portal-caption {
  align-items: flex-start;
  gap: .55rem;
  max-width: 66ch;
  margin-top: clamp(.9rem, 1.4vw, 1.15rem);
  padding-inline: .2rem;
  color: rgb(235 242 255 / .58);
  font-size: clamp(.72rem, .76vw, .82rem);
  line-height: 1.55;
  letter-spacing: .006em;
}
.panel-caption span,
.photo-band figcaption span,
.portal-caption span {
  width: .34rem;
  height: .34rem;
  margin-top: .52em;
  background: var(--color-signal);
  box-shadow: none;
}
html[lang="pt-BR"] .panel-caption { margin-top: clamp(1.2rem, 1.8vw, 1.4rem); }
.portal-caption { color: rgb(77 93 117 / .78); }
.press-clip figcaption {
  padding: 1rem 1.1rem 1.1rem;
  color: rgb(77 93 117 / .84);
  font-size: .76rem;
  line-height: 1.55;
}

/* ---------- cases ---------- */
.cases {
  background:
    radial-gradient(circle at 82% 18%, rgb(47 107 255 / .35), transparent 32rem),
    linear-gradient(155deg, #0b2350, #07162f 68%);
}
.cases .case-row {
  border-radius: 1.6rem;
  background: rgb(255 255 255 / .065);
  border-color: rgb(159 197 255 / .15);
  box-shadow: inset 0 1px rgb(255 255 255 / .06), 0 24px 80px rgb(0 6 24 / .18);
  backdrop-filter: blur(12px);
  transition: transform 280ms var(--ease-out), border-color 280ms ease, background 280ms ease;
}
.cases .case-row:hover { transform: translateY(-5px); border-color: rgb(159 197 255 / .32); background: rgb(255 255 255 / .09); }
html[lang="pt-BR"] .case-tag,
html[lang="pt-BR"] .case-proof-label,
html[lang="pt-BR"] .case-logo-label {
  color: #8eb9ff;
  font-size: .68rem;
  font-weight: 780;
  letter-spacing: .09em;
  line-height: 1.4;
  text-transform: uppercase;
}
html[lang="pt-BR"] .case-figures div { border-color: #74f0d0; }
html[lang="pt-BR"] .case-figures strong {
  color: #fff;
  font-size: clamp(1.72rem, 2.15vw, 2.1rem);
  font-weight: 720;
  letter-spacing: -.045em;
  line-height: 1.04;
  text-transform: none;
  text-wrap: balance;
}
html[lang="pt-BR"] .case-figures small {
  max-width: 28ch;
  margin-top: .42rem;
  font-size: .76rem;
  line-height: 1.42;
  text-transform: none;
}
.case-logos span { background: rgb(255 255 255 / .94); border-radius: .65rem; }
html[lang="pt-BR"] .cases .case-row h3 {
  font-weight: 660;
  letter-spacing: -.035em;
  text-wrap: balance;
}
html[lang="pt-BR"] .cases .case-content > p:not(.case-tag):not(.case-logo-label) {
  color: rgb(235 242 255 / .84);
  font-size: clamp(.93rem, 1.15vw, 1.02rem);
  line-height: 1.62;
}
html[lang="pt-BR"] .case-logo-label {
  margin: 1.35rem 0 .65rem;
  color: rgb(190 211 246 / .8);
}
html[lang="pt-BR"] .case-logo-label + .case-logos { margin-top: 0; }
html[lang="pt-BR"] .case-logos-smpct span {
  min-width: 5.5rem;
  min-height: 2.7rem;
  justify-content: center;
  padding: .55rem .8rem;
}
html[lang="pt-BR"] .case-logos-smpct img { height: 1.35rem; }
html[lang="pt-BR"] .case-logos-smpct .logo-bayer { height: 1.75rem; }
/* ---------- press, method, budget, CFM ---------- */
.press-clip, .browser-frame, .budget-aside {
  border-radius: var(--radius-lg);
  border-color: rgb(7 22 47 / .1);
  box-shadow: var(--shadow-sm);
}
.press-clip { background: #fff; }

/* ---------- cases com prova visual compacta ---------- */
.case-row-visual { align-items: center; }
.case-services {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.case-services li {
  padding: .42rem .7rem;
  border: 1px solid rgb(159 197 255 / .28);
  border-radius: 999px;
  color: #eaf2ff;
  background: rgb(255 255 255 / .06);
  font-size: .76rem;
  font-weight: 700;
}
.case-proof {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 2.2vw, 1.45rem);
  border: 1px solid rgb(159 197 255 / .2);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgb(255 255 255 / .09), rgb(255 255 255 / .035));
  box-shadow: inset 0 1px rgb(255 255 255 / .07);
}
.case-proof-metrics { justify-content: center; }
.case-proof-metrics .case-proof-label { margin: 0 0 1.25rem; }
.case-proof .case-figures { gap: 1.5rem; }
.case-brand-mark {
  min-height: 8.75rem;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  overflow: hidden;
  border-radius: 1rem;
}
.case-brand-mark img { display: block; width: auto; max-width: min(100%, 14rem); max-height: 6.5rem; object-fit: contain; }
.case-brand-mark-light { background: #fff; }
.case-brand-mark-light img { max-height: 4.25rem; }
.case-brand-mark-ame {
  min-height: 12rem;
  padding: .65rem;
  background: linear-gradient(150deg, #15356c, #0d2857 68%, #071d43);
}
.case-brand-mark-ame img { width: min(100%, 11.5rem); max-height: 11.5rem; }
.case-proof-label {
  margin: .85rem 0 0;
  color: rgb(190 211 246 / .86);
}
.case-proof-brand .case-figures { margin-top: 1.35rem; }
.case-proof-ame .case-services { margin-top: 1rem; }
.case-outcome {
  max-width: 30ch;
  margin-top: .85rem;
  color: rgb(235 242 255 / .88);
  font-size: .84rem;
  line-height: 1.52;
}

.cases-carousel { margin-top: clamp(2.5rem, 5vw, 4.5rem); }
.cases-carousel .carousel-controls { margin-bottom: 1rem; }
.cases-carousel .carousel-status { color: rgb(235 242 255 / .66); }
.cases-carousel .carousel-button {
  color: #fff;
  border-color: rgb(159 197 255 / .24);
  background: rgb(255 255 255 / .07);
  box-shadow: none;
}
.cases-carousel .carousel-button:hover { background: rgb(47 107 255 / .5); }
.cases .case-rows.carousel-track {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 0;
  border-radius: var(--radius-lg);
  overflow-y: hidden;
  transition: height 360ms var(--ease-out);
}
.cases .case-row.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  min-height: clamp(29rem, 35vw, 33rem);
  grid-template-columns: 1fr;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.cases .case-row.carousel-slide > :first-child { order: 0; }
.cases .case-row.carousel-slide > :last-child { order: 1; }
.cases-carousel .case-row:hover { transform: none; }

@media (min-width: 57.5rem) {
  html[lang="pt-BR"] .cases .case-row.carousel-slide {
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, .65fr);
    gap: clamp(2rem, 4vw, 4.5rem);
  }
  html[lang="pt-BR"] .cases .case-row.carousel-slide > :first-child { order: 0; }
  html[lang="pt-BR"] .cases .case-row.carousel-slide > :last-child { order: 1; }
}

/* ---------- carrosséis editoriais: imprensa e depoimentos ---------- */
.press .section-heading { max-width: 55rem; }
.press .section-heading h2 { max-width: 16ch; }
.press-carousel { margin-top: clamp(2.2rem, 5vw, 4rem); }
.evidence-carousel { min-width: 0; }
.carousel-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.carousel-controls > div { display: flex; gap: .55rem; }
.carousel-status {
  min-width: 3.5rem;
  color: var(--color-ink-soft);
  font-size: .78rem;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}
.carousel-button {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid rgb(7 22 47 / .13);
  border-radius: 50%;
  color: var(--color-cobalt-deep);
  background: rgb(255 255 255 / .82);
  cursor: pointer;
  box-shadow: 0 8px 22px rgb(7 22 47 / .06);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.carousel-button:hover { color: #fff; background: var(--color-cobalt-deep); transform: translateY(-2px); }
.carousel-prev .ic { transform: rotate(180deg); }
.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: var(--radius-lg);
  cursor: grab;
  touch-action: pan-x pan-y;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track:focus-visible { outline: 3px solid rgb(47 107 255 / .28); outline-offset: 4px; }
.carousel-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}
.carousel-track.is-dragging * { pointer-events: none; }
.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.media-card {
  overflow: hidden;
  border: 1px solid rgb(7 22 47 / .1);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.media-card > a {
  display: grid;
  grid-template-columns: minmax(18rem, .92fr) minmax(0, 1.08fr);
  color: inherit;
  text-decoration: none;
}
.media-visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 3 / 2;
  align-self: center;
  overflow: hidden;
  background: #dbe3ef;
}
.media-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.media-visual-folha img { object-position: center 28%; }
.media-visual-liv img { object-position: center 24%; }
.media-card:hover .media-visual img { transform: scale(1.025); }
.media-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(1.6rem, 4vw, 3.5rem);
}
.media-kicker {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: var(--color-ink-soft);
  font-size: .72rem;
  font-weight: 700;
}
.media-kicker img { width: auto; max-width: 8.5rem; height: 1.35rem; object-fit: contain; filter: grayscale(1); }
.media-kicker-text { text-transform: uppercase; letter-spacing: .09em; }
.media-copy h3 {
  max-width: 24ch;
  margin-top: 1.15rem;
  color: var(--color-ink);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.04;
}
.media-copy p { max-width: 43ch; margin-top: 1.15rem; color: var(--color-ink-soft); line-height: 1.56; }
.media-copy > strong {
  margin-top: 1.45rem;
  color: var(--color-cobalt-deep);
  font-size: .9rem;
  text-decoration: underline;
  text-decoration-color: rgb(47 107 255 / .32);
  text-underline-offset: .34rem;
}

.testimonials {
  padding: var(--space-section) 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgb(47 107 255 / .24), transparent 28rem),
    #07162f;
}
.testimonials .section-context { color: var(--color-cobalt-light); }
.testimonials .section-heading { max-width: 58rem; }
.testimonials .section-heading h2 { max-width: 16ch; color: #fff; }
.testimonials .section-heading > p:last-of-type { color: rgb(235 242 255 / .66); }
.testimonial-loop {
  container-type: inline-size;
  --testimonial-card-width: calc((100cqw - 2rem) / 3);
  margin-top: clamp(2.2rem, 5vw, 4rem);
}
.testimonial-loop-controls {
  display: flex;
  justify-content: flex-end;
  gap: .55rem;
  margin-bottom: .85rem;
}
.testimonial-loop-controls .carousel-button {
  color: #fff;
  border-color: rgb(159 197 255 / .24);
  background: rgb(255 255 255 / .07);
  box-shadow: none;
}
.testimonial-loop-controls .carousel-button:hover { background: rgb(47 107 255 / .5); }
.testimonial-loop-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
}
.testimonial-loop-viewport::-webkit-scrollbar { display: none; }
.testimonial-loop-viewport:focus-visible { outline: 3px solid rgb(159 197 255 / .38); outline-offset: 4px; }
.testimonial-loop-viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.testimonial-loop-viewport.is-dragging * { pointer-events: none; }
.testimonial-loop-track { display: flex; width: max-content; }
.testimonial-loop-set {
  display: grid;
  grid-template-columns: repeat(5, var(--testimonial-card-width));
  gap: 1rem;
  padding-right: 1rem;
}
.testimonial-card {
  min-height: 18rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: clamp(1.25rem, 2.3vw, 1.75rem);
  border: 1px solid rgb(159 197 255 / .16);
  border-radius: 1.35rem;
  background: rgb(255 255 255 / .065);
  box-shadow: inset 0 1px rgb(255 255 255 / .07), 0 18px 52px rgb(0 6 24 / .18);
  backdrop-filter: blur(14px);
}
.testimonial-draft {
  justify-self: start;
  padding: .42rem .68rem;
  border: 1px solid rgb(255 177 111 / .32);
  border-radius: 999px;
  color: #ffd4b1;
  background: rgb(255 106 61 / .08);
  font-size: .56rem;
  font-weight: 750;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.testimonial-card blockquote {
  max-width: 28ch;
  align-self: center;
  margin: 1.25rem 0;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  font-weight: 520;
  letter-spacing: -.018em;
  line-height: 1.4;
}
.testimonial-card figcaption { display: flex; flex-direction: column; gap: .2rem; }
.testimonial-card figcaption strong { font-size: .88rem; }
.testimonial-card figcaption span { color: rgb(235 242 255 / .62); font-size: .74rem; }

/* Depoimentos definitivos multilíngues */
html[lang] .testimonial-loop-set {
  grid-template-columns: repeat(8, var(--testimonial-card-width));
}
html[lang] .testimonial-card {
  min-height: 29rem;
  grid-template-rows: 1fr auto;
  gap: 1.35rem;
}
html[lang] .testimonial-card blockquote {
  max-width: 31ch;
  align-self: start;
  margin: 0;
  font-size: clamp(1rem, 1.32vw, 1.18rem);
  line-height: 1.48;
}
html[lang] .testimonial-person {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  align-items: center;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(159 197 255 / .14);
}
html[lang] .testimonial-person > img {
  width: 3.25rem;
  height: 3.25rem;
  border: 2px solid rgb(159 197 255 / .32);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgb(0 6 24 / .3);
}
html[lang] .testimonial-person-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
html[lang] .testimonial-person-copy strong {
  color: #fff;
  font-size: .86rem;
  line-height: 1.25;
}
html[lang] .testimonial-person-copy small {
  display: block;
  color: rgb(235 242 255 / .62);
  font-size: .68rem;
  line-height: 1.38;
}
.method-steps::before { left: 1.62rem; background: linear-gradient(var(--color-cobalt), var(--color-cobalt-light)); }
.step-icon {
  border: 0;
  color: var(--color-cobalt);
  background: #fff;
  box-shadow: 0 0 0 1px rgb(47 107 255 / .2), 0 10px 28px rgb(47 107 255 / .12);
}
.budget-aside { background: #fff; }
.browser-frame { border: 0; background: #fff; box-shadow: 0 30px 80px rgb(7 22 47 / .16); }
.browser-bar { background: #dce7f7; }
.browser-dots i:nth-child(1) { background: #ff6b4a; }
.browser-dots i:nth-child(2) { background: #f6bc52; }
.browser-dots i:nth-child(3) { background: #37c993; }
.cfm-col { padding: 1.25rem; border: 1px solid rgb(7 22 47 / .1); border-top: 3px solid var(--color-cobalt); border-radius: 0 0 1.2rem 1.2rem; background: #fff; }

/* ---------- manifesto ---------- */
.manifesto { background: #07162f; }
.manifesto::before { opacity: .72; background-position: left center; }
.manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(7 22 47 / .18), #07162f 72%);
}
.manifesto > .container { z-index: 2; }
.manifesto blockquote p { margin-left: auto; max-width: 12ch; font-weight: 620; letter-spacing: -.06em; text-align: right; }
.manifesto-sub { margin-left: auto; text-align: right; color: rgb(235 242 255 / .72); }
.numbers-dark { position: relative; }
.numbers-dark div { padding: 1.2rem; border-radius: 1.1rem; background: rgb(255 255 255 / .055); backdrop-filter: blur(10px); }
.numbers-dark div strong { color: #9fc5ff; }

/* ---------- FAQ ---------- */
.faq details {
  border-color: rgb(7 22 47 / .09);
  border-radius: 1rem;
  background: rgb(255 255 255 / .72);
  margin-bottom: .65rem;
  padding: 0 1.2rem;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.faq details:hover { transform: translateX(3px); background: #fff; box-shadow: 0 12px 30px rgb(7 22 47 / .06); }
.faq details[open] { background: #fff; box-shadow: var(--shadow-sm); }
.faq-scope {
  max-width: 72rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin: -.2rem 0 1.4rem;
  padding: 0;
  list-style: none;
}
.faq-scope li {
  padding: .95rem 1rem;
  border: 1px solid rgb(47 107 255 / .12);
  border-radius: .85rem;
  background: #f5f8ff;
}
.faq-scope li:last-child { grid-column: 1 / -1; }
.faq-scope strong { display: block; margin-bottom: .3rem; color: var(--color-ink); font-size: .88rem; }
.faq-scope span { display: block; color: var(--color-ink-soft); font-size: .88rem; line-height: 1.5; }

/* ---------- conversion section ---------- */
.contact {
  color: #fff;
  background:
    radial-gradient(circle at 15% 18%, rgb(47 107 255 / .32), transparent 28rem),
    #07162f;
}
.contact-copy > p:first-child { color: var(--color-cobalt-light); letter-spacing: .12em; text-transform: uppercase; }
.contact-copy > p, .contact-list { color: rgb(235 242 255 / .72); }
.contact-list svg { color: #74f0d0; }
.direct-whatsapp { color: #fff; border-color: rgb(159 197 255 / .42); border-radius: 999px; }
.diagnostic-form {
  border: 1px solid rgb(159 197 255 / .16);
  border-radius: var(--radius-lg);
  background: rgb(247 250 255 / .96);
  box-shadow: 0 35px 100px rgb(0 6 24 / .38);
  backdrop-filter: blur(22px);
}
.diagnostic-form input, .diagnostic-form select {
  min-height: 3.45rem;
  border-color: rgb(7 22 47 / .14);
  border-radius: .85rem;
  background: #f7f9fc;
}
.diagnostic-form input:focus, .diagnostic-form select:focus { border-color: var(--color-cobalt); box-shadow: 0 0 0 4px rgb(47 107 255 / .1); }
.service-choices {
  min-width: 0;
  padding: 0;
  border: 0;
}
.service-choices legend {
  margin-bottom: .25rem;
  color: var(--color-ink);
  font-weight: 650;
}
.service-choices .field-help {
  margin-bottom: .8rem;
  color: var(--color-ink-soft);
  font-size: .78rem;
}
.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .58rem;
}
.service-choices .service-choice {
  min-width: 0;
  min-height: 3.45rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 0;
  padding: .72rem .78rem;
  border: 1px solid rgb(7 22 47 / .12);
  border-radius: .85rem;
  color: var(--color-ink-soft);
  background: #f7f9fc;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.diagnostic-form .service-choice input {
  width: 1.08rem;
  height: 1.08rem;
  min-height: 0;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  accent-color: var(--color-cobalt-deep);
  box-shadow: none;
}
.service-choice span {
  min-width: 0;
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.3;
}
.service-choice:hover {
  color: var(--color-ink);
  border-color: rgb(47 107 255 / .35);
  background: #fff;
}
.service-choice:has(input:checked) {
  color: var(--color-cobalt-deep);
  border-color: rgb(47 107 255 / .42);
  background: #eaf1ff;
  box-shadow: inset 0 0 0 1px rgb(47 107 255 / .08);
}
.service-choice:has(input:focus-visible) {
  border-color: var(--color-cobalt);
  box-shadow: 0 0 0 4px rgb(47 107 255 / .1);
}

/* ---------- footer ---------- */
.site-footer { padding-top: clamp(4rem, 8vw, 7rem); background: #040d1f; }
.site-footer .wordmark { color: #fff; }
.footer-grid { gap: clamp(2.5rem, 6vw, 6rem); }
.site-footer h3 { color: var(--color-cobalt-light); font-size: .73rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a { transition: color 160ms ease; }
.site-footer a:hover { color: #fff; }
.footer-instagram { display: inline-flex; align-items: center; gap: .48rem; }
.footer-instagram-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-portal { border-radius: 999px; border-color: rgb(159 197 255 / .24); background: rgb(47 107 255 / .08); }

/* ---------- floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: max(1.25rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  width: 3.75rem;
  height: 3.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 28px rgb(7 22 47 / .24), 0 0 0 1px rgb(255 255 255 / .22) inset;
  transition: transform 180ms var(--ease-out), background-color 180ms ease, box-shadow 180ms ease;
}
.whatsapp-float img { width: 2rem; height: 2rem; }
.whatsapp-float:hover {
  background: #1fbd5a;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 15px 34px rgb(7 22 47 / .3), 0 0 0 1px rgb(255 255 255 / .28) inset;
}
.whatsapp-float:active { transform: translateY(0) scale(.97); }
.whatsapp-float:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }

/* ---------- responsive ---------- */
@media (min-width: 57.5rem) {
  .doors-layout { grid-template-columns: minmax(18rem, .65fr) minmax(0, 1.35fr); }
  .door-list { max-height: calc(100svh - 7rem); overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgb(47 107 255 / .28) transparent; padding-right: .3rem; }
  .services-grid { grid-template-columns: minmax(20rem, .78fr) minmax(0, 1.22fr); }
  .method-grid { grid-template-columns: minmax(20rem, .82fr) minmax(0, 1.18fr); }
  .door-panel:has(> .door-visual):not([hidden]) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(12.5rem, .43fr);
    grid-auto-flow: row;
    align-content: start;
    column-gap: clamp(1.25rem, 2vw, 1.9rem);
  }
  .door-panel:has(> .door-visual) .door-panel-head,
  .door-panel:has(> .door-visual) .door-situation { grid-column: 1; }
  .door-panel:has(> .door-visual) .door-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
    min-height: 14rem;
    margin: 0;
    aspect-ratio: auto;
  }
  .door-panel:has(> .door-visual) .door-cols,
  .door-panel:has(> .door-visual) .door-note,
  .door-panel:has(> .door-visual) .door-actions { grid-column: 1 / -1; }

  html[lang="pt-BR"] .door-list { grid-auto-rows: 6.35rem; gap: .7rem; }
  html[lang="pt-BR"] .door-list > li { min-height: 0; }
  html[lang="pt-BR"] .door-tab {
    height: 100%;
    min-height: 6.35rem;
    gap: .8rem;
    padding: .78rem .9rem;
  }
  html[lang="pt-BR"] .door-tab > span:nth-child(2) { min-width: 0; }
  html[lang="pt-BR"] .door-tab strong {
    font-size: clamp(.93rem, 1.05vw, 1.04rem);
    line-height: 1.18;
  }
  html[lang="pt-BR"] .door-tab small {
    display: -webkit-box;
    overflow: hidden;
    margin-top: .28rem;
    font-size: clamp(.74rem, .82vw, .82rem);
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  html[lang="pt-BR"] .door-tab .door-ico { width: 2.45rem; height: 2.45rem; }
  html[lang="pt-BR"] .door-panel:not([hidden]) {
    padding: clamp(1.8rem, 2.5vw, 2.4rem);
  }
  html[lang="pt-BR"] .door-panel h3 { font-size: clamp(1.7rem, 2.3vw, 2.35rem); }
  html[lang="pt-BR"] .door-situation {
    margin-top: .9rem;
    font-size: clamp(.94rem, 1.05vw, 1.04rem);
    line-height: 1.42;
  }
  html[lang="pt-BR"] .door-cols {
    grid-template-columns: minmax(0, 1.12fr) minmax(15rem, .88fr);
    gap: clamp(1.4rem, 2.4vw, 2.2rem);
    margin-top: 1.3rem;
  }
  html[lang="pt-BR"] .door-block ul { gap: .48rem; }
  html[lang="pt-BR"] .door-block li {
    font-size: clamp(.84rem, .92vw, .94rem);
    line-height: 1.35;
  }
  html[lang="pt-BR"] .door-note { margin-top: 1.05rem; }
  html[lang="pt-BR"] .door-actions {
    margin-top: 1.35rem;
  }
}

@media (max-width: 76rem) {
  .desktop-nav a { padding-inline: .64rem; font-size: .73rem; }
  .header-cta { padding-inline: .9rem; font-size: .78rem; }
}

@media (min-width: 57.5rem) and (max-width: 82rem) {
  html[lang="pt-BR"] .services-grid {
    grid-template-columns: 1fr;
    gap: clamp(3rem, 6vw, 4.5rem);
  }
  html[lang="pt-BR"] .services .section-heading { max-width: 68rem; }
  html[lang="pt-BR"] .services .section-heading h2 { max-width: 19ch; }
  html[lang="pt-BR"] .services .section-heading > p:last-of-type { max-width: 72ch; }
  html[lang="pt-BR"] .services-note { max-width: 68ch; }
  html[lang="pt-BR"] .service-list {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1rem;
  }
  html[lang="pt-BR"] .service-list li { min-height: 0; }
}

@media (min-width: 57.5rem) and (max-width: 72rem) {
  html[lang="pt-BR"] .doors-layout {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  html[lang="pt-BR"] .door-list {
    position: static;
    max-height: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 5.75rem;
    overflow: visible;
    padding-right: 0;
  }
  html[lang="pt-BR"] .door-tab { min-height: 5.75rem; }
}

@media (min-width: 72.0625rem) {
  html[lang="pt-BR"] .door-panel:not([hidden]) { min-height: 37rem; }
}

@media (max-width: 66rem) {
  .desktop-nav { display: none; }
  .header-cta { display: inline-flex; margin-left: auto; }
  .menu-button { display: grid; }
  .hero-grid { grid-template-columns: 1fr .82fr; gap: 2rem; }
}

@media (max-width: 57.4375rem) {
  html { scroll-padding-top: 6.8rem; }
  .hero { min-height: 100svh; padding-top: 7.15rem; }
  .hero::before { inset: 0; background-size: auto 52%; background-position: left bottom; opacity: .32; }
  .hero::after { background: linear-gradient(90deg, #07162f, rgb(7 22 47 / .72)), linear-gradient(0deg, #07162f 15%, transparent 60%); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 12.5ch; line-height: 1.06; }
  .panel-demo { width: min(100%, 38rem); }
  .panel-card { transform: none; }
  .service-list { grid-template-columns: 1fr; }
  .service-list li { min-height: 0; }
  .door-panel { border-radius: 1.35rem; }
  .door-list li { padding: .35rem; border: 1px solid transparent; border-radius: 1.55rem; }
  .door-list li:has(> .door-panel:not([hidden])) { margin-bottom: 1rem; padding: .5rem; border-color: rgb(47 107 255 / .2); background: #e7efff; }
  .door-list li > .door-panel { margin-top: .45rem; margin-bottom: .65rem; border-color: rgb(47 107 255 / .18); background: #f5f8ff; box-shadow: 0 18px 38px rgb(7 22 47 / .11); }
  .door-list li > .door-panel .door-actions { padding-top: 1.15rem; border-top: 1px solid rgb(47 107 255 / .13); }
  .door-visual { max-height: 21rem; }
  #painel-clinicas .door-visual img { object-position: center 58%; }
  .media-card > a { min-height: 0; grid-template-columns: 1fr; }
  .media-visual { min-height: auto; }
  .media-copy { min-height: 22rem; }
  .cases .case-row.carousel-slide { min-height: auto; }
  .case-proof { min-height: 0; }
  .testimonial-loop { --testimonial-card-width: calc((100cqw - 1rem) / 2); }
  .manifesto blockquote p, .manifesto-sub { margin-left: 0; text-align: left; }
  .manifesto::before { background-size: auto 52%; background-position: left bottom; background-repeat: no-repeat; opacity: .34; }
}

@media (max-width: 42rem) {
  :root { --text-display: clamp(2.65rem, 12.8vw, 3.65rem); --text-h2: clamp(2.15rem, 10.5vw, 3.2rem); }
  .utility-label { display: none; }
  .utility-inner { justify-content: flex-end; }
  .utility-bar { min-height: 2rem; }
  .header-inner { min-height: 4.4rem; }
  .header-cta { display: none; }
  .mobile-nav { inset: 6.4rem 0 0; padding: 1.2rem; color: #fff; background: rgb(7 22 47 / .98); }
  .mobile-nav a:not(.button) { border-color: rgb(255 255 255 / .12); }
  .mobile-nav .button { display: inline-flex; }
  .hero { padding-top: 6.4rem; }
  .hero-grid { gap: 2rem; padding-block: 1rem 2.25rem; }
  .hero-copy { min-height: calc(100svh - 8.4rem); }
  .hero-context { margin-bottom: .9rem; font-size: .64rem; }
  .hero h1 { max-width: 13.25ch; font-size: clamp(2.55rem, 11.5vw, 3.2rem); letter-spacing: -.045em; line-height: 1.065; }
  .hero-lead { margin-top: 1.2rem; font-size: .98rem; line-height: 1.46; }
  .hero-actions { margin-top: 1.35rem; align-items: stretch; gap: .72rem; }
  .hero-actions .button { width: 100%; min-height: 3.35rem; padding: .78rem 1.2rem; }
  .hero-assurance { margin-top: .95rem; display: grid; gap: .2rem; font-size: .72rem; line-height: 1.35; }
  .panel-stats { grid-template-columns: 1fr 1fr; }
  .panel-stat { padding: .9rem; }
  .panel-top { align-items: flex-start; }
  .panel-live { font-size: .7rem; }
  .logo-strip { padding-block: 1.65rem; }
  .doors, .services, .photo-band, .cases, .press, .testimonials, .method, .budget, .cfm, .manifesto, .faq, .contact { padding-block: clamp(4.8rem, 18vw, 7rem); }
  .press { padding-bottom: 3rem; }
  .method { padding-top: 3.5rem; }
  .service-list li { grid-template-columns: 2.3rem 1fr; padding: 1.15rem; }
  .service-list .ic { width: 2.3rem; height: 2.3rem; padding: .6rem; }
  .service-list .service-ai {
    grid-template-columns: 2.3rem 1fr;
    padding: 1.15rem;
  }
  .service-ai > .ic { margin-top: 0; }
  .service-ai > div { padding: 0; }
  .service-ai-visual {
    grid-column: 1 / -1;
    height: 12.5rem;
    margin: .45rem -1.15rem -1.15rem;
  }
  .service-ai-visual::after { background: linear-gradient(180deg, #0b2857 0%, transparent 24%, rgb(4 13 31 / .22)); }
  .service-choice-grid { grid-template-columns: 1fr; }
  .service-choice { min-height: 3.25rem; }
  .cases .case-row { border-radius: 1.25rem; }
  .carousel-controls { justify-content: space-between; }
  .media-copy { min-height: 0; padding: 1.45rem; }
  .media-copy h3 { font-size: clamp(1.55rem, 7.2vw, 2.15rem); }
  .testimonial-loop { --testimonial-card-width: 100cqw; }
  .testimonial-loop-controls { margin-bottom: .65rem; }
  .testimonial-loop-controls .carousel-button { width: 2.5rem; height: 2.5rem; }
  .testimonial-loop-viewport {
    -webkit-mask-image: none;
    mask-image: none;
    transition: height 280ms var(--ease-out);
  }
  .testimonial-loop-track,
  .testimonial-loop-set { align-items: start; }
  .testimonial-card { min-height: 0; padding: 1.2rem; }
  html[lang] .testimonial-card { min-height: 0; gap: 1.1rem; border-radius: 1.1rem; }
  html[lang] .testimonial-card blockquote { max-width: none; font-size: .94rem; line-height: 1.46; }
  html[lang] .testimonial-person { grid-template-columns: 2.85rem minmax(0, 1fr); gap: .75rem; padding-top: .85rem; }
  html[lang] .testimonial-person > img { width: 2.85rem; height: 2.85rem; }
  html[lang] .testimonial-person-copy strong { font-size: .8rem; }
  html[lang] .testimonial-person-copy small { font-size: .64rem; }
  .testimonial-draft { max-width: 100%; font-size: .61rem; }
  .faq-scope { grid-template-columns: 1fr; }
  .faq-scope li:last-child { grid-column: auto; }
  .numbers-dark div { padding: 1rem; }
}

@media (min-width: 57.5rem) and (max-height: 62rem) {
  .hero-grid { padding-block: 1.35rem 1.65rem; }
  .hero-context { margin-bottom: .8rem; padding-block: .42rem; font-size: .68rem; }
  .hero h1 { max-width: 13ch; font-size: clamp(3.25rem, 5vw, 4rem); line-height: 1.02; }
  .hero-lead { margin-top: 1rem; font-size: 1.02rem; line-height: 1.42; }
  .hero-actions { margin-top: 1.2rem; }
  .hero-assurance { margin-top: .85rem; font-size: .74rem; }
  .panel-stat { padding-block: .82rem; }
  .panel-stat strong { font-size: 1.48rem; }
  .panel-chart { padding-block: .75rem .9rem; }
  .panel-bars { height: 3.6rem; }
  .panel-caption { margin-top: .7rem; font-size: .7rem; }
  html[lang="en"] .hero h1,
  html[lang="es"] .hero h1 { max-width: 15ch; font-size: clamp(3.35rem, 5vw, 4rem); }
  html[lang="es"] .hero h1 { font-size: 3.7rem; }
  html[lang="en"] .hero-lead,
  html[lang="es"] .hero-lead { max-width: 58ch; font-size: .96rem; }
  html[lang="en"] .hero-actions,
  html[lang="es"] .hero-actions { gap: .75rem; }
  html[lang="en"] .hero-actions .button,
  html[lang="es"] .hero-actions .button { min-height: 3.2rem; padding: .75rem 1.08rem; font-size: .88rem; }
  html[lang="en"] .hero-assurance,
  html[lang="es"] .hero-assurance { gap: .3rem .9rem; font-size: .68rem; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .button::after { display: none; }
  .panel-card { transform: none; }
  .hero::before { transform: scale(1.08) scaleX(-1); }
  .door-panel:not([hidden]) .door-visual img { animation: none; }
  .service-ai:hover .service-ai-visual img { transform: none; filter: none; }
  .door-tab:hover, .service-list li:hover, .cases .case-row:hover, .faq details:hover { transform: none; }
  .testimonial-loop-track { transform: none; }
  .testimonial-loop-viewport { transition: none; }
}
