:root {
  --void: #08080a;
  --graphite: #111014;
  --paper: #f5f1e9;
  --paper-bright: #fbf8f2;
  --ink: #171411;
  --muted: #716b64;
  --white: #f8f3ee;
  --pink: #ff4f91;
  --pink-soft: #ff91b9;
  --pink-pale: #f8cad9;
  --accent-rgb: 255,79,145;
  --green: #25d366;
  --line-dark: rgba(255, 255, 255, .12);
  --line-light: rgba(23, 20, 17, .12);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: "Figtree", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
button, a { color: inherit; font: inherit; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--pink); color: var(--ink); }

.dark { background: var(--void); color: var(--white); }
.light { background: var(--paper); color: var(--ink); }
.section-shell { width: min(1240px, calc(100% - 72px)); margin-inline: auto; }
.page-progress { position: fixed; z-index: 200; inset: 0 0 auto; height: 2px; background: rgba(255,255,255,.04); }
.page-progress span { display: block; width: 0; height: 100%; background: var(--pink); box-shadow: 0 0 12px var(--pink); }

.nav {
  position: fixed;
  z-index: 100;
  inset: 2px 0 auto;
  height: 86px;
  padding: 0 4.5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  background: linear-gradient(180deg, rgba(8,8,10,.92), rgba(8,8,10,.62));
  backdrop-filter: blur(18px);
  transition: height .35s var(--ease), background .3s ease;
}
.nav.compact { height: 68px; background: rgba(8,8,10,.92); }
.wordmark { justify-self: start; display: grid; justify-items: start; gap: 6px; color: var(--ink); line-height: 1; }
.wordmark-line { display: inline-flex; align-items: baseline; font-size: 27px; letter-spacing: -.075em; }
.wordmark-line b { font-weight: 700; }
.wordmark em { position: relative; font-family: "Instrument Serif",serif; font-size: 1.13em; font-weight: 400; color: currentColor; }
.wordmark em::after { content: ""; position: absolute; left: 7%; right: -5%; bottom: -4px; height: 2px; background: currentColor; transform: skewX(-22deg); }
.wordmark small { color: var(--muted); font-size: 6.5px; font-style: normal; font-weight: 700; line-height: 1; letter-spacing: .13em; text-transform: uppercase; }
.logo-lockup { width: 154px; display: block; }
.logo-lockup img { width: 100%; height: auto; display: block; }
.nav.compact .logo-lockup { width: 138px; }
.nav-links { display: flex; gap: 34px; color: rgba(248,243,238,.62); font-size: 12px; font-weight: 600; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--pink-soft); }
.nav > .button { justify-self: end; }
.nav-toggle { display: none; justify-self: end; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; color: inherit; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; top: 68px; left: 0; right: 0; z-index: 99; display: none; flex-direction: column; padding: 10px 5vw 22px; background: color-mix(in srgb, var(--paper) 96%, transparent); backdrop-filter: blur(22px) saturate(1.1); border-bottom: 1px solid rgba(23,20,17,.10); box-shadow: 0 26px 50px rgba(8,8,10,.14); }
.mobile-menu a { padding: 15px 2px; font-size: 18px; font-weight: 600; color: var(--ink); border-bottom: 1px solid rgba(23,20,17,.10); }
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu-cta { color: var(--pink); font-weight: 800; }
.whatsapp-float { position: fixed; z-index: 90; right: 20px; bottom: 20px; width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #25D366; box-shadow: 0 10px 26px rgba(8,8,10,.24); transition: transform .2s var(--ease); }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
@media (max-width: 1060px) { .whatsapp-float { width: 50px; height: 50px; right: 14px; bottom: 14px; } .whatsapp-float svg { width: 24px; height: 24px; } }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .28s var(--ease), box-shadow .28s ease;
}
.button:hover { transform: translateY(-3px); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 12px; }
.button-pink { color: #18060d; background: var(--pink); box-shadow: 0 14px 35px rgba(var(--accent-rgb),.16); }
.button-pink:hover { box-shadow: 0 18px 50px rgba(var(--accent-rgb),.28); }
.button-dark { color: var(--white); background: var(--ink); }

.eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(23,20,17,.56);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--pink); }
.eyebrow-light { color: var(--pink-soft); }
.display {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(58px, 6.7vw, 100px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.035em;
}
.display em { color: var(--pink); font-weight: 400; }
.section-description { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.72; }
.dark .section-description { color: rgba(248,243,238,.55); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
  isolation: isolate;
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: .035;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.55) .6px, transparent .6px);
  background-size: 7px 7px;
  mix-blend-mode: screen;
}
.hero-copy {
  position: relative;
  z-index: 10;
  align-self: center;
  padding: 115px 2vw 130px 5vw;
}
.hero h1 {
  max-width: 720px;
  margin: 27px 0 29px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(66px, 6.2vw, 102px);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.04em;
}
.hero h1 em { color: var(--pink-soft); font-weight: 400; }
.hero-description { max-width: 590px; margin: 0; color: rgba(248,243,238,.65); font-size: 18px; line-height: 1.65; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 26px; }
.text-action { display: inline-flex; align-items: center; gap: 12px; padding: 14px 0; color: rgba(248,243,238,.74); font-size: 14px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.25); }
.text-action b { color: var(--pink); }

.hero-art {
  --tilt-x: 0px;
  --tilt-y: 0px;
  position: relative;
  z-index: 1;
  min-height: 100%;
  overflow: hidden;
}
.hero-picture {
  --tilt-x: 0px;
  --tilt-y: 0px;
  position: relative;
  z-index: 1;
  display: block;
  min-height: 100%;
  overflow: hidden;
}
.hero-picture img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transform: translate(var(--tilt-x), var(--tilt-y));
  transition: transform .35s var(--ease);
}
.hero-art img {
  width: 112%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  transform: translate(var(--tilt-x), var(--tilt-y)) scale(1.075);
  filter: saturate(.93) contrast(1.05);
  transition: transform 1.2s var(--ease);
}
.hero-art-wash { position: absolute; inset: 0; background: linear-gradient(90deg, var(--void) 0%, rgba(8,8,10,.4) 16%, transparent 44%), linear-gradient(0deg, rgba(8,8,10,.55), transparent 35%); }
.signal { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.64); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.signal i { width: 8px; height: 8px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; box-shadow: 0 0 0 5px rgba(var(--accent-rgb),.09), 0 0 18px var(--pink); animation: signal 2.8s ease-in-out infinite; }
.signal-one { left: 19%; top: 34%; }
.signal-two { left: 48%; top: 22%; }
.signal-three { right: 9%; top: 53%; }
.signal-four { left: 38%; bottom: 18%; }
.signal-two i { animation-delay: -.7s; }.signal-three i { animation-delay: -1.4s; }.signal-four i { animation-delay: -2.1s; }
@keyframes signal { 50% { background: var(--pink); border-color: var(--pink); transform: scale(1.35); } }

.hero-path {
  position: absolute;
  z-index: 12;
  left: 5vw;
  right: 5vw;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}
.hero-path span { position: relative; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.30); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.hero-path i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.hero-path span.active { color: var(--pink-soft); }
.hero-path::after { content: ""; position: absolute; top: -1px; left: 0; width: 20%; height: 1px; background: var(--pink); box-shadow: 0 0 10px var(--pink); animation: path 10s var(--ease) infinite; }
@keyframes path { 0%, 10% { left: 0; } 25% { left: 20%; } 45% { left: 40%; } 65% { left: 60%; } 85%, 100% { left: 80%; } }

.manifesto { padding: 150px 0 170px; }
.manifesto-grid { display: grid; grid-template-columns: 250px 1fr; gap: 70px; padding-top: 25px; border-top: 1px solid var(--line-light); }
.manifesto-copy .display { max-width: 980px; }
.manifesto-copy .section-description { max-width: 620px; margin: 47px 0 0 auto; font-size: 18px; }

.system { padding: 140px 0 160px; }
.section-header { display: grid; grid-template-columns: 1fr 320px; gap: 70px; align-items: end; padding-top: 24px; margin-bottom: 74px; border-top: 1px solid var(--line-dark); }
.section-header .eyebrow { margin-bottom: 21px; }
.section-header .display { max-width: 890px; font-size: clamp(58px, 6vw, 88px); }
.section-header-light { border-color: var(--line-light); }

.feature-explorer { border: 1px solid var(--line-dark); border-radius: 28px; overflow: hidden; background: var(--graphite); }
.feature-tabs { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--line-dark); }
.feature-tab {
  min-height: 96px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  border: 0;
  border-right: 1px solid var(--line-dark);
  color: rgba(255,255,255,.38);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.feature-tab:last-child { border-right: 0; }
.feature-tab span { align-self: start; font-size: 9px; }
.feature-tab b { font-size: 12px; font-weight: 600; }
.feature-tab i { color: transparent; font-style: normal; }
.feature-tab:hover { color: rgba(255,255,255,.72); background: rgba(255,255,255,.025); }
.feature-tab.active { color: var(--white); background: rgba(var(--accent-rgb),.08); box-shadow: inset 0 -2px var(--pink); }
.feature-tab.active span, .feature-tab.active i { color: var(--pink); }

.feature-stage { min-height: 620px; display: grid; grid-template-columns: 40% 60%; }
.feature-copy-panel { padding: 64px 58px; display: flex; flex-direction: column; border-right: 1px solid var(--line-dark); }
.feature-index { color: var(--pink); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.feature-copy-panel > p:not(.feature-description) { margin: 50px 0 13px; color: var(--pink-soft); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.feature-copy-panel h3 { margin: 0; max-width: 440px; font-family: "Instrument Serif", serif; font-size: clamp(46px, 4.4vw, 68px); font-weight: 400; line-height: .95; }
.feature-rule { width: 100%; height: 1px; margin: 34px 0 27px; background: var(--line-dark); }
.feature-description { margin: 0; max-width: 440px; color: rgba(255,255,255,.54); font-size: 14px; line-height: 1.7; }
.feature-outcome { margin-top: auto; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.78); font-size: 11px; font-weight: 600; }
.feature-outcome i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: var(--void); background: var(--pink); font-style: normal; }
.feature-visual-panel { min-width: 0; padding: 54px; display: grid; place-items: center; background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb),.10), transparent 48%), #0b0a0d; }
.visual { position: relative; width: min(100%, 680px); min-height: 430px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; overflow: hidden; background: rgba(19,18,22,.90); box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.visual::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(rgba(255,255,255,.5) .5px, transparent .5px); background-size: 16px 16px; pointer-events: none; }
.visual-top { position: relative; z-index: 2; height: 60px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line-dark); color: rgba(255,255,255,.74); font-size: 11px; }
.visual-top span { display: flex; align-items: center; gap: 8px; }.visual-top small { color: rgba(255,255,255,.35); }.visual-top b { color: #84a5ff; }.online { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.chat-thread { position: relative; z-index: 2; padding: 34px; }
.message { width: 72%; padding: 15px 17px; border-radius: 14px; color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); font-size: 11px; line-height: 1.55; opacity: 0; animation: messageIn .7s var(--ease) forwards; }
.message small { display: block; margin-top: 7px; color: rgba(255,255,255,.35); font-size: 8px; text-align: right; }
.message.outgoing { margin: 76px 0 0 auto; background: rgba(37,211,102,.14); animation-delay: 1.25s; }
.intent-chip { position: absolute; top: 122px; left: 50%; transform: translateX(-50%); padding: 10px 13px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(var(--accent-rgb),.3); border-radius: 12px; background: rgba(var(--accent-rgb),.09); color: var(--pink-soft); font-size: 9px; opacity: 0; animation: chipIn .6s .7s var(--ease) forwards; }
.intent-chip b { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; background: var(--pink); color: var(--void); }.intent-chip small { color: rgba(255,255,255,.4); }
@keyframes messageIn { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(12px); } }
@keyframes chipIn { to { opacity: 1; transform: translate(-50%, 0); } from { opacity: 0; transform: translate(-50%, 10px); } }

.calendar-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; padding: 26px; }
.calendar-day { padding: 13px 8px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; }
.calendar-day > b { display: block; margin-bottom: 15px; color: rgba(255,255,255,.4); font-size: 8px; text-align: center; }
.calendar-day > i { min-height: 38px; margin-top: 7px; display: block; border-radius: 7px; background: rgba(255,255,255,.05); }
.calendar-day > i.busy { background: rgba(255,255,255,.09); }
.calendar-day > i.selected { position: relative; background: var(--pink); box-shadow: 0 0 0 0 rgba(255,79,145,.25); animation: booked 2s ease infinite; }
.calendar-day > i.selected span { position: absolute; inset: 0; display: grid; place-items: center; color: var(--void); font-style: normal; font-size: 7px; font-weight: 700; text-align: center; }
@keyframes booked { 50% { box-shadow: 0 0 0 6px rgba(255,79,145,.10); } }
.status-toast { position: absolute; z-index: 3; right: 24px; bottom: 21px; padding: 11px 14px; display: flex; gap: 10px; align-items: center; border-radius: 12px; background: #f4efe9; color: var(--ink); box-shadow: 0 16px 40px rgba(0,0,0,.3); animation: toast .7s 1s var(--ease) both; }
.status-toast > i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-style: normal; font-weight: 700; }.status-toast b,.status-toast small { display: block; font-size: 8px; }.status-toast small { margin-top: 3px; color: var(--muted); }
@keyframes toast { from { opacity: 0; transform: translateY(12px); } }

.visual-confirmation { padding: 85px 35px 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; overflow: visible; }
.confirmation-line { position: absolute; top: 150px; left: 18%; right: 18%; height: 1px; background: rgba(255,255,255,.16); }
.confirmation-line::after { content: ""; display: block; width: 33%; height: 1px; background: var(--pink); animation: confirmLine 3s var(--ease) infinite; }
@keyframes confirmLine { 0% { transform: translateX(0); } 50%,100% { transform: translateX(200%); } }
.confirmation-node { position: relative; z-index: 2; text-align: center; }
.confirmation-node i { width: 64px; height: 64px; margin: 30px auto 18px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: #131216; color: rgba(255,255,255,.55); font-style: normal; font-size: 11px; }
.confirmation-node.done i { color: var(--void); background: var(--green); border-color: var(--green); }.confirmation-node.current i { color: var(--void); background: var(--pink); border-color: var(--pink); box-shadow: 0 0 30px rgba(255,79,145,.25); }
.confirmation-node b { display: block; font-size: 11px; }.confirmation-node span { display: block; margin-top: 7px; color: rgba(255,255,255,.38); font-size: 8px; }
.confirmation-result { position: absolute; right: 24px; bottom: 22px; display: flex; align-items: baseline; gap: 10px; }.confirmation-result strong { color: var(--pink-soft); font-family: "Instrument Serif",serif; font-size: 48px; font-weight: 400; }.confirmation-result span { color: rgba(255,255,255,.4); font-size: 8px; }

.visual-attribution { position: relative; display: grid; place-items: center; }
.visual-attribution .attribution-path { position: relative; z-index: 2; width: 90%; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 8px; }
.visual-attribution .attribution-path > article { min-height: 132px; padding: 16px 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.04); text-align: center; }
.visual-attribution .attribution-arrow { color: rgba(255,255,255,.25); font-style: normal; }.visual-attribution .attribution-path article > i { width: 38px; height: 38px; margin-bottom: 10px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,.09); font-style: normal; font-size: 10px; }.visual-attribution .attribution-path b { font-size: 9px; }.visual-attribution .attribution-path span { margin-top: 5px; color: rgba(255,255,255,.4); font-size: 7px; }.visual-attribution .attribution-path .revenue { border-color: rgba(255,79,145,.4); background: rgba(255,79,145,.08); }.visual-attribution .attribution-path .revenue i { background: var(--pink); color: var(--void); }
.roi-card { position: absolute; z-index: 3; right: 25px; bottom: 20px; padding: 12px 16px; display: grid; grid-template-columns: auto auto; gap: 2px 15px; align-items: center; border-radius: 12px; color: var(--ink); background: var(--pink-pale); }.roi-card span { grid-column: 1 / -1; font-size: 7px; text-transform: uppercase; }.roi-card strong { font-family: "Instrument Serif",serif; font-size: 34px; font-weight: 400; }.roi-card i { color: #8c3a59; font-size: 8px; font-style: normal; }

.segment-grid { position: relative; z-index: 2; padding: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.segment-grid > div { min-height: 170px; padding: 22px 15px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.04); }.segment-grid i { display: block; color: var(--pink-soft); font-family: "Instrument Serif",serif; font-size: 44px; font-style: normal; }.segment-grid b,.segment-grid span { display: block; }.segment-grid b { margin-top: 20px; font-size: 9px; }.segment-grid span { margin-top: 5px; color: rgba(255,255,255,.35); font-size: 7px; }
.reactivation-action { position: absolute; z-index: 3; left: 28px; right: 28px; bottom: 23px; display: flex; align-items: center; justify-content: space-between; }.reactivation-action > span { color: rgba(255,255,255,.5); font-size: 8px; }.reactivation-action > span b { color: var(--pink); }.reactivation-action button { padding: 11px 14px; border: 0; border-radius: 999px; background: var(--pink); color: var(--void); font-size: 8px; font-weight: 700; }.reactivation-action button i { margin-left: 7px; font-style: normal; }

.proof { display: grid; grid-template-columns: 52% 48%; min-height: 850px; }
.proof-image { position: relative; min-height: 700px; overflow: hidden; }
.proof-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.proof-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,16,14,.45), transparent 45%); }
.proof-image-label { position: absolute; z-index: 2; left: 38px; bottom: 35px; padding: 10px 14px; display: flex; align-items: center; gap: 9px; border-radius: 999px; color: white; background: rgba(12,10,9,.42); backdrop-filter: blur(10px); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.proof-image-label i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(37,211,102,.15); }
.proof-content { padding: 100px clamp(45px, 6vw, 105px); display: flex; flex-direction: column; justify-content: center; background: var(--paper-bright); }
.proof-content .display { margin-top: 26px; font-size: clamp(54px, 5.5vw, 82px); }
.proof-content blockquote { margin: 50px 0 45px; padding-left: 22px; border-left: 2px solid var(--pink); color: var(--muted); font-family: "Instrument Serif",serif; font-size: 24px; line-height: 1.25; }
.metrics { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.metric { min-height: 145px; padding: 20px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.metric strong { display: block; color: var(--pink); font-family: "Instrument Serif",serif; font-size: 48px; font-weight: 400; }.metric span { display: block; max-width: 150px; margin-top: 6px; color: var(--muted); font-size: 9px; line-height: 1.5; }

.capabilities { padding: 145px 0 160px; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.capability { position: relative; min-height: 280px; padding: 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); transition: background .3s ease, transform .4s var(--ease); }
.capability:hover { z-index: 2; transform: translateY(-6px); background: var(--paper-bright); box-shadow: 0 24px 60px rgba(23,20,17,.10); }
.capability > span { color: var(--muted); font-size: 9px; }.capability > i { position: absolute; right: 28px; top: 26px; color: var(--pink); font-style: normal; }.capability h3 { margin: 90px 0 12px; font-family: "Instrument Serif",serif; font-size: 34px; font-weight: 400; }.capability p { margin: 0; max-width: 290px; color: var(--muted); font-size: 12px; line-height: 1.65; }

.implementation { padding: 145px 0 150px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px; }
.step { padding-top: 24px; border-top: 1px solid var(--line-dark); }.step > span { display: block; color: var(--pink); font-family: "Instrument Serif",serif; font-size: 54px; }.step h3 { margin: 50px 0 12px; font-size: 16px; }.step p { margin: 0; max-width: 330px; color: rgba(255,255,255,.45); font-size: 12px; line-height: 1.65; }

.closing { position: relative; min-height: 780px; display: grid; place-items: center; overflow: hidden; text-align: center; }
.closing-copy { position: relative; z-index: 2; }.closing .eyebrow { width: max-content; margin: 0 auto 28px; }.closing .display { font-size: clamp(70px, 9vw, 130px); }.closing-copy > p:not(.eyebrow) { max-width: 560px; margin: 32px auto; color: var(--muted); font-size: 16px; line-height: 1.7; }
.closing-orbit { position: absolute; width: 600px; height: 600px; border: 1px solid rgba(255,79,145,.14); border-radius: 50%; }.closing-orbit::before,.closing-orbit::after { content: ""; position: absolute; inset: 60px; border: 1px solid rgba(23,20,17,.07); border-radius: 50%; }.closing-orbit::after { inset: 140px; }.closing-orbit i { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 9px rgba(255,79,145,.10); }.closing-orbit i:nth-child(1) { left: 48px; top: 155px; }.closing-orbit i:nth-child(2) { right: 25px; bottom: 210px; }.closing-orbit i:nth-child(3) { left: 50%; bottom: -5px; }

footer { padding: clamp(56px, 7vw, 84px) 5vw clamp(28px, 3.5vw, 40px); color: rgba(255,255,255,.6); background: var(--void); font-size: 14px; }
.footer-top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: clamp(34px, 5vw, 76px); align-items: start; max-width: 1180px; margin: 0 auto; }
.footer-brand .wordmark { display: inline-block; width: 172px; }
.footer-brand p { margin: 20px 0 0; max-width: 300px; color: rgba(255,255,255,.5); line-height: 1.55; }
.footer-nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.footer-col { display: grid; gap: 13px; align-content: start; }
.footer-col h4 { margin: 0 0 3px; color: var(--white); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; max-width: 1180px; margin: clamp(42px, 5vw, 62px) auto 0; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.42); }
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s ease; }
.footer-legal a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s ease, transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .nav { grid-template-columns: 1fr auto auto; gap: 14px; }.nav-links { display: none; }.nav-toggle { display: flex; }.mobile-menu:not([hidden]) { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }.hero-copy { min-height: 720px; padding-right: 8vw; }.hero-art { min-height: 680px; }.hero-art-wash { background: linear-gradient(0deg,var(--void),transparent 35%); }.hero-path { top: 680px; bottom: auto; }
  .manifesto-grid { grid-template-columns: 1fr; }.manifesto-copy .section-description { margin-left: 0; }
  .section-header { grid-template-columns: 1fr; }
  .feature-tabs { grid-template-columns: repeat(5, minmax(155px, 1fr)); overflow-x: auto; }.feature-stage { grid-template-columns: 1fr; }.feature-copy-panel { min-height: 480px; border-right: 0; border-bottom: 1px solid var(--line-dark); }.feature-visual-panel { min-height: 560px; }
  .proof { grid-template-columns: 1fr; }.proof-image { min-height: 680px; }.capability-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 680px) {
  .section-shell { width: min(100% - 30px, 560px); }
  .nav { height: 68px; padding: 0 16px; }.nav > .button { min-height: 38px; padding: 0 14px; }.nav > .button span { display: none; }
  .hero-copy { min-height: 670px; padding: 120px 18px 95px; }.hero h1 { font-size: clamp(58px, 17vw, 78px); }.hero-description { font-size: 15px; }.hero-actions { align-items: flex-start; flex-direction: column; }.hero-art { min-height: 520px; }.hero-art img { width: 140%; object-position: 60% center; }.signal span { display: none; }.hero-path { top: 665px; left: 18px; right: 18px; grid-template-columns: repeat(5,auto); gap: 8px; }.hero-path span { font-size: 0; }.hero-path i { width: 7px; height: 7px; }
  .manifesto,.system,.capabilities,.implementation { padding: 90px 0; }.display { font-size: clamp(50px, 15vw, 70px); }.manifesto-grid { gap: 45px; }.manifesto-copy .section-description { margin-top: 32px; font-size: 15px; }
  .section-header { gap: 30px; margin-bottom: 45px; }.section-header .display { font-size: clamp(50px, 14vw, 68px); }
  .feature-tab { min-height: 78px; }.feature-stage { min-height: auto; }.feature-copy-panel { min-height: 520px; padding: 42px 25px; }.feature-copy-panel h3 { font-size: 48px; }.feature-visual-panel { min-height: 480px; padding: 18px; }.visual { min-height: 400px; }.chat-thread { padding: 24px 18px; }.calendar-grid { padding: 20px 10px; gap: 3px; }.calendar-day { padding: 10px 3px; }.visual-confirmation { padding: 65px 13px 25px; gap: 5px; }.confirmation-node i { width: 52px; height: 52px; }.visual-attribution .attribution-path { grid-template-columns: repeat(4,1fr); gap: 4px; }.visual-attribution .attribution-arrow { display: none; }.visual-attribution .attribution-path > article { min-height: 125px; padding-inline: 3px; }.segment-grid { padding: 18px 10px; gap: 4px; }.segment-grid > div { padding: 16px 8px; }.segment-grid i { font-size: 34px; }
  .proof-image { min-height: 520px; }.proof-content { padding: 75px 22px; }.proof-content blockquote { font-size: 21px; }.metric { padding: 15px; }.metric strong { font-size: 41px; }
  .capability-grid { grid-template-columns: 1fr; }.capability { min-height: 240px; }.capability h3 { margin-top: 70px; }
  .steps { grid-template-columns: 1fr; }.step { min-height: 260px; }
  .closing { min-height: 680px; }.closing .display { font-size: clamp(62px, 18vw, 84px); }.closing-orbit { width: 480px; height: 480px; }
  footer { padding: 56px 20px 30px; }.footer-top { grid-template-columns: 1fr; gap: 36px; }.footer-nav { grid-template-columns: 1fr 1fr; gap: 26px 20px; }.footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Dirección A + C: humanidad premium + campaña editorial radical */
.direction-ac {
  --chartreuse: #dfff42;
  --paper: #f8f8f6;
  --paper-bright: #ffffff;
  background: var(--paper);
}
html[data-theme="cobalt"] .direction-ac { --pink:#3347ff; --pink-soft:#6877ff; --pink-pale:#cfd4ff; --accent-rgb:51,71,255; --chartreuse:#dfff42; }
html[data-theme="mineral"] .direction-ac { --pink:#16705e; --pink-soft:#4f9a85; --pink-pale:#cfe4dc; --accent-rgb:22,112,94; --chartreuse:#f1c75b; }
html[data-theme="violet"] .direction-ac { --pink:#6c43ff; --pink-soft:#9b7dff; --pink-pale:#ded3ff; --accent-rgb:108,67,255; --chartreuse:#ffce55; }
html[data-theme="sky"] .direction-ac { --pink:#38b6ff; --pink-soft:#76ceff; --pink-pale:#d8f2ff; --accent-rgb:56,182,255; --chartreuse:#ffe45c; }
html[data-theme="slate"] .direction-ac { --pink:#008dd6; --pink-soft:#54b7e8; --pink-pale:#d5eef9; --accent-rgb:0,141,214; --chartreuse:#f2cf52; }
html[data-type="contemporary"] .direction-ac .wordmark em { font-family:"Optima",sans-serif; font-size:1.01em; font-style:italic; font-weight:500; letter-spacing:-.045em; }
html[data-type="contemporary"] .direction-ac .hero h1,
html[data-type="contemporary"] .direction-ac .display { font-family:"Avenir Next Condensed","Avenir Next",sans-serif; font-weight:700; line-height:.84; letter-spacing:-.065em; }
html[data-type="contemporary"] .direction-ac .hero h1 em,
html[data-type="contemporary"] .direction-ac .display em { font-family:"Optima",sans-serif; font-style:italic; font-weight:400; letter-spacing:-.045em; }
html[data-logo="accent"] .direction-ac .wordmark-line b { color:var(--pink); }
.direction-ac .nav {
  color: var(--ink);
  border-color: rgba(23,20,17,.12);
  background: var(--paper);
}
.direction-ac .nav.compact { background: var(--paper); }
.direction-ac .nav-links { color: rgba(23,20,17,.56); }
.direction-ac .nav-links a:hover { color: var(--ink); }

.direction-ac .editorial-hero {
  grid-template-columns: 51% 49%;
  color: var(--ink);
  background:
    radial-gradient(circle at 23% 80%, rgba(var(--accent-rgb),.12), transparent 28%),
    var(--paper-bright);
}
.direction-ac .hero-noise {
  opacity: .11;
  background-image: radial-gradient(rgba(23,20,17,.42) .55px, transparent .55px);
  mix-blend-mode: multiply;
}
.direction-ac .hero-copy { padding-left: 4.5vw; padding-right: 1vw; }
.direction-ac .hero .eyebrow { color: var(--ink); }
.direction-ac .hero h1 {
  position: relative;
  z-index: 4;
  max-width: 790px;
  font-size: clamp(68px, 6.6vw, 104px);
  line-height: .86;
  letter-spacing: -.055em;
}
.direction-ac .hero h1 em {
  display: block;
  color: var(--pink);
  text-shadow: 2px 2px 0 var(--paper-bright), 3px 3px 0 var(--ink);
}
.direction-ac .hero-description { max-width: 620px; color: #5b554f; }
.direction-ac .text-action { color: var(--ink); border-color: rgba(23,20,17,.25); }
.direction-ac .hero-art { margin: 106px 22px 75px 0; min-height: auto; overflow: visible; }
.direction-ac .hero-art::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -16px 30px 22px -30px;
  background: var(--pink);
  clip-path: polygon(5% 0, 100% 4%, 94% 100%, 0 93%);
  transform: rotate(-1.5deg);
}
.direction-ac .hero-art::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: 150px;
  height: 68px;
  right: -15px;
  top: 7%;
  background: var(--chartreuse);
  clip-path: polygon(4% 12%, 100% 0, 93% 91%, 0 100%);
  transform: rotate(5deg);
  mix-blend-mode: multiply;
}
.direction-ac .hero-art img {
  width: 100%;
  height: 100%;
  object-position: 54% center;
  clip-path: polygon(3% 0, 100% 3%, 96% 98%, 0 92%);
  transform: translate(var(--tilt-x), var(--tilt-y)) scale(1.035);
  filter: saturate(.78) contrast(1.04) sepia(.06);
}
.direction-ac .hero-art-wash {
  clip-path: polygon(3% 0, 100% 3%, 96% 98%, 0 92%);
  background: linear-gradient(90deg, rgba(23,20,17,.16), transparent 35%), linear-gradient(0deg, rgba(23,20,17,.30), transparent 35%);
}
.editorial-sticker {
  position: absolute;
  z-index: 7;
  left: -66px;
  top: 17%;
  width: 136px;
  height: 136px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: var(--paper-bright);
  background: var(--pink);
  box-shadow: 0 18px 45px rgba(23,20,17,.18);
  transform: rotate(-8deg);
  animation: editorialFloat 5s ease-in-out infinite;
}
.editorial-sticker b { font-family: "Instrument Serif",serif; font-size: 36px; font-style: italic; font-weight: 400; line-height: .8; }
.editorial-sticker span { margin-top: 8px; font-size: 7px; font-weight: 700; line-height: 1.25; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.photo-caption { position: absolute; z-index: 6; right: 42px; bottom: 40px; color: white; font-family: "Instrument Serif",serif; font-size: 22px; line-height: 1.05; text-align: right; text-shadow: 0 3px 16px rgba(0,0,0,.35); }
@keyframes editorialFloat { 50% { transform: translateY(-10px) rotate(-3deg); } }
.direction-ac .signal { padding: 6px 9px; color: var(--ink); background: rgba(255,250,242,.88); backdrop-filter: blur(8px); }
.direction-ac .signal i { border-color: var(--pink); background: var(--pink); }
.direction-ac .signal-one { left: 13%; top: 38%; }.direction-ac .signal-two { left: 52%; top: 26%; }.direction-ac .signal-three { right: 1%; top: 55%; }.direction-ac .signal-four { left: 36%; bottom: 15%; }
.direction-ac .hero-path { border-color: rgba(23,20,17,.18); }
.direction-ac .hero-path span { color: rgba(23,20,17,.34); }
.direction-ac .hero-path span.active { color: var(--ink); }

.direction-ac .manifesto { padding-bottom: 130px; }
.direction-ac .manifesto-grid { grid-template-columns: 220px 1fr; }
.manifesto-art {
  position: relative;
  grid-column: 1 / -1;
  height: 570px;
  margin-top: 80px;
  overflow: hidden;
  background: var(--pink-pale);
  clip-path: polygon(0 4%, 100% 0, 98% 94%, 3% 100%);
}
.manifesto-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.9) contrast(1.03); transform: scale(1.015); transition: transform 1.3s var(--ease); }
.manifesto-art:hover img { transform: scale(1.055) rotate(.4deg); }
.manifesto-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(246,240,230,.08), transparent 50%), linear-gradient(0deg, rgba(23,20,17,.25), transparent 45%); }
.collage-index,.collage-note { position: absolute; z-index: 3; }
.collage-index { left: 35px; top: 45px; padding: 9px 12px; color: var(--ink); background: var(--chartreuse); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.collage-note { right: 45px; bottom: 55px; color: white; font-family: "Instrument Serif",serif; font-size: 42px; line-height: .9; text-align: right; text-shadow: 0 3px 16px rgba(0,0,0,.28); }

.direction-ac .proof { grid-template-columns: 48% 52%; }
.direction-ac .proof-image img { filter: saturate(.88) contrast(1.04); }
.direction-ac .proof-image-label { color: var(--ink); background: var(--chartreuse); }
.direction-ac .proof-image-label i { background: var(--pink); box-shadow: 0 0 0 5px rgba(255,79,145,.15); }
.direction-ac .capability:hover { background: var(--chartreuse); }
.direction-ac .capability:hover > i { color: var(--ink); }
.direction-ac .closing-orbit i:nth-child(2) { background: var(--chartreuse); box-shadow: 0 0 0 9px rgba(223,255,66,.18); }

@media (max-width: 1060px) {
  .direction-ac .editorial-hero { grid-template-columns: 1fr; }
  .direction-ac .hero-art { margin: 0 30px 85px; min-height: 680px; }
  .direction-ac .hero-path { top: 680px; }
  .direction-ac .proof { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .direction-ac .hero-copy { min-height: 690px; padding-left: 18px; padding-right: 18px; }
  .direction-ac .hero h1 { font-size: clamp(62px, 19vw, 83px); }
  .direction-ac .hero-art { min-height: 500px; margin: 0 15px 70px; }
  .direction-ac .hero-path { top: 683px; }
  .editorial-sticker { left: -5px; top: -40px; width: 105px; height: 105px; }
  .photo-caption { right: 25px; bottom: 32px; font-size: 18px; }
  .direction-ac .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-art { height: 430px; margin-top: 45px; }
  .collage-index { left: 18px; top: 30px; }.collage-note { right: 22px; bottom: 40px; font-size: 31px; }
}

/* WhatsApp gate: pide nombre y teléfono antes de abrir el chat (captura lead + atribución) */
.wa-gate { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(8, 8, 10, .62); backdrop-filter: blur(6px); }
.wa-gate[hidden] { display: none; }
.wa-gate-card { position: relative; width: min(100%, 430px); background: var(--paper-bright); color: var(--ink); border-radius: 24px; padding: 34px 30px 26px; box-shadow: 0 30px 90px rgba(0, 0, 0, .45); }
.wa-gate-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(23, 20, 17, .06); color: var(--muted); transition: background .2s ease; }
.wa-gate-close:hover { background: rgba(23, 20, 17, .14); }
.wa-gate-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: rgba(37, 211, 102, .13); margin-bottom: 14px; }
.wa-gate-icon svg { width: 26px; height: 26px; fill: var(--green); }
.wa-gate-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 6px; }
.wa-gate-copy { color: var(--muted); font-size: 14px; line-height: 1.55; margin-bottom: 18px; }
.wa-gate-field { display: grid; gap: 7px; }
.wa-gate-field + .wa-gate-field { margin-top: 14px; }
.wa-gate-field label { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.wa-gate-field input { width: 100%; min-height: 52px; padding: 0 16px; border-radius: 14px; border: 1px solid var(--line-light); background: #fff; color: var(--ink); font: inherit; font-size: 15px; }
.wa-gate-field input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(37, 211, 102, .18); }
.wa-gate-error { margin-top: 12px; font-size: 13px; color: #b3261e; }
.wa-gate-submit { width: 100%; margin-top: 18px; color: #fff; background: var(--green); box-shadow: 0 14px 35px rgba(37, 211, 102, .22); }
.wa-gate-submit:hover { box-shadow: 0 18px 50px rgba(37, 211, 102, .32); }
.wa-gate-legal { margin-top: 12px; text-align: center; font-size: 11px; color: var(--muted); }
.wa-gate-success { text-align: center; padding: 14px 0 6px; }
.wa-gate-success h4 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.wa-gate-success p { color: var(--muted); font-size: 13px; }
.wa-gate-success a { color: var(--ink); text-decoration: underline; }
@media (max-width: 520px) { .wa-gate { padding: 12px; align-items: flex-end; } .wa-gate-card { padding: 28px 22px 22px; border-radius: 22px 22px 16px 16px; } }

/* Vista previa local: clínicas que confían en Dentipilot */
.client-trust-preview {
  --client-tinta: #8f877e;
  padding: 0 4.5vw;
  color: var(--ink);
  background: var(--paper-bright);
}
.client-trust-shell {
  max-width: 1460px;
  margin: 0 auto;
  padding: 32px 0 36px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.client-trust-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.client-trust-heading h2 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.client-trust-heading p {
  color: var(--muted);
  font-size: 11px;
}
.client-trust-marquee {
  overflow: hidden;
  outline: none;
}
.client-trust-marquee:focus-visible {
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .2);
}
.client-trust-track {
  display: flex;
  width: max-content;
  animation: clientTrustMarquee 30s linear infinite;
  will-change: transform;
}
.client-wordmarks {
  display: flex;
  flex: none;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  color: var(--client-tinta);
}
.client-wordmark {
  display: block;
  flex: 0 0 min(calc(20.2222vw - 18.67px), 306px);
  min-width: 0;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1;
  letter-spacing: -.035em;
  text-align: center;
  white-space: nowrap;
}
.client-wordmark small {
  display: block;
  margin-top: 5px;
  color: currentColor;
  opacity: .72;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.client-wordmark-bold {
  font-weight: 900;
}
.client-wordmark-serif {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(22px, 1.8vw, 30px);
  font-style: italic;
}
.client-wordmark-wide {
  font-weight: 650;
  letter-spacing: .08em;
}

/* Logos reales. El archivo se usa como recorte y el gris se pinta por debajo,
   así todos quedan del mismo tono sin importar el color original. Cada logo
   ajusta su propia altura: igualarla al milímetro descuadra el peso visual,
   porque un logo compacto se ve más grande que uno alargado a la misma altura. */
.client-logo {
  height: 54px;
  background-color: currentColor;
  -webkit-mask: var(--logo) no-repeat center / auto var(--logo-alto, 30px);
  mask: var(--logo) no-repeat center / auto var(--logo-alto, 30px);
}
/* Los logos horizontales pesan visualmente más que los apilados a igual altura,
   por eso cada uno lleva la suya en vez de compartir una sola medida. */
.client-logo-central-dent {
  --logo: url("assets/clinicas/central-dent.png");
  --logo-alto: 38px;
}
.client-logo-clinica-lingual {
  --logo: url("assets/clinicas/clinica-lingual.png");
  --logo-alto: 48px;
}
.client-logo-crd-osorno {
  --logo: url("assets/clinicas/crd-osorno.png");
  --logo-alto: 42px;
}
.client-logo-vitta {
  --logo: url("assets/clinicas/vitta.png");
  --logo-alto: 46px;
}
.client-logo-df {
  display: flex;
  height: 54px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.client-logo-df-tooth {
  display: block;
  width: 34px;
  height: 38px;
  background-color: currentColor;
  -webkit-mask: url("assets/clinicas/df-tooth.png") no-repeat center / contain;
  mask: url("assets/clinicas/df-tooth.png") no-repeat center / contain;
}
.client-logo-df-text {
  display: block;
  margin-top: 1px;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: lowercase;
}
.client-trust-marquee:hover .client-trust-track,
.client-trust-marquee:focus .client-trust-track {
  animation-play-state: paused;
}
@keyframes clientTrustMarquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1060px) {
  .client-wordmarks {
    gap: 20px;
    padding-right: 20px;
  }
  .client-wordmark {
    flex-basis: calc(26vw - 14.29px);
  }
}
@media (max-width: 680px) {
  .client-trust-preview {
    padding: 0 18px;
  }
  .client-trust-shell {
    padding: 28px 0 30px;
  }
  .client-trust-heading {
    display: block;
    margin-bottom: 24px;
  }
  .client-trust-heading h2 {
    max-width: 260px;
    line-height: 1.35;
  }
  .client-trust-heading p {
    margin-top: 7px;
  }
  .client-wordmarks {
    gap: 16px;
    padding-right: 16px;
  }
  .client-wordmark {
    flex-basis: calc(40vw - 24px);
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-trust-marquee {
    overflow: visible;
  }
  .client-trust-track {
    display: block;
    width: 100%;
    animation: none;
    transform: none;
  }
  .client-wordmarks {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    gap: 24px;
    padding: 0;
  }
  .client-wordmarks[aria-hidden="true"] {
    display: none;
  }
  .client-wordmark {
    width: auto;
    flex-basis: auto;
  }
}

@media (max-width: 680px) and (prefers-reduced-motion: reduce) {
  .client-wordmarks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .client-wordmark:last-child {
    grid-column: 1 / -1;
  }
}
