/* =========================================================
   Sonrisa Clara · Clínica dental · Providencia
   Minimalismo clínico escandinavo · celeste higiénico
   ========================================================= */

:root {
  --bg: #FBFDFE;
  --surface: #EEF6FB;
  --fg: #0F2A3A;
  --muted: #5A7080;
  --accent: #0E84B8;        /* vivo: rellenos, bordes, fondos */
  --accent-ink: #0B6E99;    /* oscuro: texto chico sobre surface */
  --line: #D8E7F0;

  --white: #FFFFFF;
  --shadow-soft: 0 18px 50px -28px rgba(15, 60, 90, 0.30);
  --shadow-card: 0 26px 70px -34px rgba(13, 90, 130, 0.42);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 30px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --maxw: 1180px;
  --bar-h: 34px;

  --font: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-h) + 78px); }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-top: var(--bar-h);
}

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

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

::selection { background: rgba(14, 132, 184, 0.18); color: var(--fg); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

h1, h2, h3 { line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }

.section {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 5vw, 3rem);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 1.1rem;
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(14, 132, 184, 0.14);
}
.eyebrow--light { color: #BFE6F7; }
.eyebrow--light .eyebrow__dot { background: #BFE6F7; box-shadow: 0 0 0 4px rgba(191, 230, 247, 0.18); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              background 0.3s var(--ease-soft), color 0.3s var(--ease-soft);
  will-change: transform;
}
.btn--solid {
  background: var(--accent-ink);
  color: var(--white);
  box-shadow: 0 14px 30px -14px rgba(14, 132, 184, 0.65);
}
.btn--solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -14px rgba(14, 132, 184, 0.75);
  background: #095A80;
}
.btn--ghost {
  background: var(--white);
  color: var(--accent-ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}
.btn--full { width: 100%; }
.btn--wa {
  background: #25D366;
  color: #06351A;
  box-shadow: 0 16px 34px -14px rgba(37, 211, 102, 0.6);
}
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(37, 211, 102, 0.7); }

/* ---------- Reveal (FOUC-safe: hidden only when JS on) ---------- */
.js-on .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.js-on .reveal.is-in { opacity: 1; transform: none; }

/* ========================================================
   DEMO bar (Digital Bee)
   ======================================================== */
.db-bar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--bar-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: linear-gradient(90deg, #095A80, #0B6E99);
  color: #F2FBFF;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0 1rem;
  text-align: center;
  transition: background 0.3s var(--ease-soft);
}
.db-bar strong { font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.db-bar:hover { background: linear-gradient(90deg, #095a80, #0B6E99); }
.db-bar__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #8FE3C0;
  box-shadow: 0 0 0 4px rgba(143, 227, 192, 0.25);
  flex: none;
}

/* ========================================================
   Nav
   ======================================================== */
.nav {
  position: sticky;
  top: var(--bar-h);
  z-index: 900;
  background: rgba(251, 253, 254, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft),
              background 0.3s var(--ease-soft);
}
.nav.is-stuck {
  border-color: var(--line);
  box-shadow: 0 8px 30px -22px rgba(15, 60, 90, 0.4);
}
.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  height: 70px;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand__mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.brand__name {
  font-size: 1.18rem; font-weight: 800; letter-spacing: -0.02em; color: var(--fg);
}
.nav__links { display: flex; align-items: center; gap: 0.4rem; }
.nav__links > a {
  font-size: 0.94rem; font-weight: 600; color: var(--muted);
  padding: 0.55rem 0.9rem; border-radius: 999px;
  transition: color 0.25s var(--ease-soft), background 0.25s var(--ease-soft);
}
.nav__links > a:hover { color: var(--fg); background: var(--surface); }
.nav__cta {
  background: var(--accent-ink) !important;
  color: var(--white) !important;
  box-shadow: 0 12px 24px -14px rgba(14, 132, 184, 0.6);
}
.nav__cta:hover { background: #095A80 !important; }

/* ========================================================
   Hero
   ======================================================== */
.hero {
  position: relative;
  min-height: calc(100svh - var(--bar-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero__mesh {
  position: absolute; inset: -20% -10% auto -10%;
  height: 130%;
  background:
    radial-gradient(58% 60% at 78% 18%, rgba(14, 132, 184, 0.16), transparent 70%),
    radial-gradient(50% 55% at 12% 78%, rgba(143, 215, 240, 0.30), transparent 72%),
    radial-gradient(60% 70% at 50% 0%, rgba(238, 246, 251, 0.9), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14, 132, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 132, 184, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 30%, transparent 80%);
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 30%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 4rem clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  margin-bottom: 1.4rem;
  color: var(--fg);
}
.hero__title em {
  font-style: normal;
  color: var(--accent-ink);
  position: relative;
}
.hero__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--muted);
  max-width: 33rem;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }
.hero__facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(1rem, 3vw, 2.4rem);
}
.hero__facts li {
  font-size: 0.98rem; font-weight: 700; color: var(--fg);
  display: flex; flex-direction: column;
  border-left: 2px solid var(--line);
  padding-left: 0.85rem;
}
.hero__facts span {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-ink); margin-bottom: 0.15rem;
}

/* Hero visual card */
.hero__visual { position: relative; display: grid; place-items: center; }
.card-trust {
  position: relative;
  width: min(100%, 360px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem 1.9rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.card-trust__shine {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(238, 246, 251, 0.9), transparent 55%);
  pointer-events: none;
}
.card-trust__tooth {
  position: relative;
  width: 84px; height: auto;
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 14px 24px rgba(14, 132, 184, 0.28));
}
.card-trust__body { position: relative; }
.card-trust__k {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-ink); margin-bottom: 0.3rem;
}
.card-trust__big {
  font-size: 1.45rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--fg); margin-bottom: 1.1rem;
}
.card-trust__list { list-style: none; display: grid; gap: 0.7rem; }
.card-trust__list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.95rem; font-weight: 600; color: var(--fg);
}
.dot {
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  background: var(--surface);
  position: relative;
}
.dot--ok::after {
  content: "";
  width: 8px; height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg) translate(0.5px, -1px);
}
.hero__drop {
  position: absolute; border-radius: 50% 50% 50% 0;
  background: linear-gradient(150deg, #BFE6F7, var(--accent));
  opacity: 0.85; z-index: -1;
  filter: blur(0.5px);
}
.hero__drop--a {
  width: 56px; height: 56px; top: -14px; right: 4%;
  transform: rotate(45deg);
  box-shadow: 0 12px 26px -10px rgba(14, 132, 184, 0.5);
}
.hero__drop--b {
  width: 34px; height: 34px; bottom: 6%; left: -2%;
  transform: rotate(45deg);
  opacity: 0.6;
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  width: 26px; height: 42px; border-radius: 14px;
  border: 2px solid var(--line);
  z-index: 3;
  display: grid; place-items: start center;
  padding-top: 7px;
}
.hero__scroll span {
  width: 4px; height: 8px; border-radius: 4px; background: var(--accent);
  animation: scrolldot 1.7s var(--ease) infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 70% { opacity: 1; } 100% { opacity: 0; transform: translateY(11px); } }

/* ========================================================
   About
   ======================================================== */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__panel {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid; place-items: center;
  box-shadow: var(--shadow-soft);
}
.about__panel-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 30% 20%, rgba(14, 132, 184, 0.16), transparent 70%),
    radial-gradient(55% 50% at 80% 85%, rgba(143, 215, 240, 0.4), transparent 72%);
}
.about__panel::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14, 132, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 132, 184, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 80%);
  mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 80%);
}
.about__smile { position: relative; width: 56%; }
.about__badge {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}
.about__badge-num {
  display: block; font-size: 1.7rem; font-weight: 800; color: var(--accent-ink);
  line-height: 1;
}
.about__badge-txt { display: block; font-size: 0.82rem; color: var(--muted); max-width: 11rem; margin-top: 0.2rem; }

.about__text h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 1.3rem;
  max-width: 22ch;
}
.about__text p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  max-width: 40rem;
}
.about__points { list-style: none; display: grid; gap: 0.75rem; margin-top: 1.6rem; }
.about__points li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 1rem; font-weight: 600; color: var(--fg);
}

/* ========================================================
   Services
   ======================================================== */
.services { background: linear-gradient(180deg, var(--bg), var(--surface) 60%, var(--bg)); border-radius: 0; }
.services__head { max-width: 44rem; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.services__head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--fg);
  margin-bottom: 1.1rem;
  max-width: 20ch;
}
.services__intro { color: var(--muted); font-size: 1.08rem; }

.services__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.svc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease-soft);
  position: relative;
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #8FD7F0);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.svc:hover::before { transform: scaleX(1); }
.svc__icon {
  display: grid; place-items: center;
  width: 58px; height: 58px;
  border-radius: 17px;
  background: var(--surface);
  border: 1px solid var(--line);
  margin-bottom: 1.2rem;
  transition: background 0.4s var(--ease-soft);
}
.svc__icon svg { width: 38px; height: 38px; }
.svc:hover .svc__icon { background: #E2F1FA; }
.svc h3 { font-size: 1.28rem; color: var(--fg); margin-bottom: 0.55rem; font-weight: 800; }
.svc p { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.1rem; }
.svc__price {
  font-size: 0.92rem !important; font-weight: 800;
  color: var(--accent-ink) !important;
  margin-bottom: 0 !important;
  display: inline-flex; align-items: center;
  padding: 0.35rem 0.8rem; border-radius: 999px;
  background: var(--surface);
}

.services__note {
  margin-top: 1.8rem;
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-soft);
}
.services__note-icon {
  flex: none; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface);
}
.services__note p { color: var(--muted); font-size: 1rem; }
.services__note strong { color: var(--fg); font-weight: 800; }

/* ========================================================
   Trust (dark celeste band)
   ======================================================== */
.trust {
  position: relative;
  max-width: none;
  margin-inline: 0;
  background: linear-gradient(155deg, #0A4F70 0%, #0A6286 55%, #095A80 100%);
  color: #EAF7FD;
  overflow: hidden;
  border-radius: 0;
}
.trust > * { position: relative; z-index: 2; max-width: var(--maxw); margin-inline: auto; }
.trust__mesh {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(40% 50% at 85% 12%, rgba(255, 255, 255, 0.16), transparent 70%),
    radial-gradient(45% 55% at 10% 90%, rgba(143, 215, 240, 0.22), transparent 72%);
}
.trust::after {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent 85%);
  mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent 85%);
}
.trust__head { max-width: 40rem; margin-bottom: clamp(2.4rem, 5vw, 3.4rem); }
.trust__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: #FFFFFF; max-width: 20ch; }
.trust__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: clamp(2.4rem, 5vw, 3.4rem);
}
.trust__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.7rem 1.4rem;
  backdrop-filter: blur(6px);
  transition: transform 0.5s var(--ease), background 0.4s var(--ease-soft);
}
.trust__card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.14); }
.trust__num {
  display: block; font-size: clamp(2.4rem, 4vw, 3.1rem); font-weight: 800;
  letter-spacing: -0.03em; color: #FFFFFF; line-height: 1;
}
.trust__label { font-size: 0.96rem; color: #CBEAF7; margin-top: 0.5rem; }

.trust__quote {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.4);
  max-width: 52rem;
}
.trust__quote blockquote {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.trust__quote figcaption { display: flex; align-items: center; gap: 0.9rem; }
.trust__avatar {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--accent-ink);
  color: #FFFFFF; font-weight: 800; font-size: 1rem;
}
.trust__quote figcaption strong { display: block; color: var(--fg); font-weight: 800; font-size: 1.02rem; }
.trust__quote figcaption em { display: block; font-style: normal; color: var(--muted); font-size: 0.9rem; }

/* ========================================================
   Visit
   ======================================================== */
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.visit__info h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem); color: var(--fg);
  margin-bottom: 1.1rem; max-width: 16ch;
}
.visit__lede { color: var(--muted); font-size: 1.06rem; margin-bottom: 1.8rem; max-width: 34rem; }
.visit__list { list-style: none; display: grid; gap: 1.1rem; margin-bottom: 2rem; }
.visit__list li { display: flex; align-items: center; gap: 0.95rem; }
.visit__ic {
  flex: none; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--surface); border: 1px solid var(--line);
}
.visit__ic svg { width: 24px; height: 24px; }
.visit__list strong { display: block; color: var(--fg); font-weight: 700; font-size: 1.02rem; }
.visit__list em { display: block; font-style: normal; color: var(--muted); font-size: 0.92rem; }

.visit__map {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.visit__map-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 30% 30%, rgba(14, 132, 184, 0.12), transparent 70%),
    radial-gradient(50% 50% at 75% 80%, rgba(143, 215, 240, 0.3), transparent 72%);
}
.visit__map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14, 132, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 132, 184, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}
.visit__map-line { position: absolute; background: rgba(14, 132, 184, 0.28); }
.visit__map-line--x { left: 0; right: 0; top: 58%; height: 8px; transform: rotate(-4deg); }
.visit__map-line--y { top: 0; bottom: 0; left: 40%; width: 6px; transform: rotate(3deg); }
.visit__pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -68%);
  width: 40px; filter: drop-shadow(0 12px 18px rgba(14, 132, 184, 0.4));
  animation: pinfloat 3s var(--ease) infinite;
}
@keyframes pinfloat { 0%, 100% { transform: translate(-50%, -68%); } 50% { transform: translate(-50%, -76%); } }
.visit__map-tag {
  position: absolute; left: 50%; bottom: 1.1rem;
  transform: translateX(-50%);
  background: var(--white); color: var(--accent-ink);
  font-size: 0.82rem; font-weight: 700;
  padding: 0.45rem 0.95rem; border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

/* ========================================================
   Book / contact
   ======================================================== */
.book {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.book__copy { position: sticky; top: calc(var(--bar-h) + 90px); }
.book__copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); color: var(--fg); margin-bottom: 1.1rem; max-width: 14ch; }
.book__copy p { color: var(--muted); font-size: 1.06rem; max-width: 30rem; }
.book__perks { list-style: none; display: grid; gap: 0.75rem; margin-top: 1.6rem; }
.book__perks li { display: flex; align-items: center; gap: 0.7rem; font-size: 1rem; font-weight: 600; color: var(--fg); }

.book__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 1.1rem;
}
.field { display: grid; gap: 0.45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { font-size: 0.88rem; font-weight: 700; color: var(--fg); }
.field__opt { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.25s var(--ease-soft), box-shadow 0.25s var(--ease-soft), background 0.25s var(--ease-soft);
}
.field input::placeholder, .field textarea::placeholder { color: #6E8694; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(14, 132, 184, 0.14);
}
.field textarea { resize: vertical; min-height: 90px; }
.field select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230B6E99' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem;
}
.book__status {
  font-size: 0.96rem; font-weight: 700; color: #0B6E99;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.book__status::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%; flex: none;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/14px no-repeat;
}
.book__legal { font-size: 0.8rem; color: var(--muted); text-align: center; }

/* ========================================================
   Digital Bee CTA
   ======================================================== */
.db-cta {
  position: relative;
  background: linear-gradient(160deg, #095A80, #0B6E99);
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}
.db-cta__mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 60% at 80% 10%, rgba(255, 255, 255, 0.18), transparent 70%),
    radial-gradient(50% 60% at 15% 100%, rgba(143, 215, 240, 0.25), transparent 72%);
}
.db-cta__inner {
  position: relative; z-index: 2;
  max-width: 44rem;
  margin-inline: auto;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
}
.db-cta__kicker {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: #D6EFFB; margin-bottom: 1rem;
}
.db-cta__title { font-size: clamp(2rem, 4.5vw, 3rem); color: #FFFFFF; margin-bottom: 1rem; }
.db-cta__text { font-size: 1.1rem; color: #DCF1FB; margin-bottom: 2rem; }

/* ========================================================
   Footer
   ======================================================== */
.footer {
  background: var(--fg);
  color: #C4D6E0;
}
.footer__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 3rem) 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.brand--footer .brand__mark { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.14); }
.brand--footer .brand__name { color: #FFFFFF; }
.footer__brand p { margin-top: 1rem; font-size: 0.96rem; color: #93AEBC; line-height: 1.7; }
.footer__nav { display: grid; gap: 0.7rem; align-content: start; }
.footer__nav a { font-size: 0.96rem; color: #C4D6E0; width: fit-content; transition: color 0.25s var(--ease-soft); }
.footer__nav a:hover { color: #8FD7F0; }
.footer__meta { display: grid; gap: 0.55rem; align-content: start; }
.footer__meta p { font-size: 0.96rem; color: #93AEBC; }
.footer__meta a { color: #C4D6E0; transition: color 0.25s var(--ease-soft); }
.footer__meta a:hover { color: #8FD7F0; }
.footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.85rem; color: #7E97A5;
}
.footer__base a { color: #8FD7F0; font-weight: 700; }
.footer__base a:hover { text-decoration: underline; }

/* ========================================================
   WhatsApp float
   ======================================================== */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 950;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: grid; place-items: center;
  box-shadow: 0 16px 34px -10px rgba(37, 211, 102, 0.65);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.wa-float::after {
  content: "";
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.6s var(--ease) infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.7; } 70% { transform: scale(1.5); opacity: 0; } 100% { opacity: 0; } }
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 22px 44px -10px rgba(37, 211, 102, 0.75); }

/* ========================================================
   Responsive
   ======================================================== */
@media (max-width: 980px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links > a:not(.nav__cta) { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 2.5rem; }
  .hero__visual { order: -1; max-width: 380px; margin-inline: auto; width: 100%; }
  .hero__facts { grid-template-columns: 1fr; gap: 0.9rem; }
  .about { grid-template-columns: 1fr; }
  .about__panel { aspect-ratio: 16 / 11; max-width: 480px; }
  .visit { grid-template-columns: 1fr; }
  .book { grid-template-columns: 1fr; }
  .book__copy { position: static; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__base { justify-content: center; text-align: center; }
}

@media (max-width: 520px) {
  .services__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2.1rem, 9vw, 3rem); }
  .db-bar { font-size: 0.72rem; }
}

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