:root {
  --navy-950: #00132e;
  --navy-900: #061a36;
  --navy-800: #0e2848;
  --navy-700: #17395f;
  --gold: #fdcf1e;
  --gold-strong: #f4b900;
  --gold-hover: #ffe15d;
  --gold-rgb: 253, 207, 30;
  --navy-950-rgb: 0, 19, 46;
  --navy-800-rgb: 14, 40, 72;
  --ink-rgb: 247, 249, 252;
  --hero-orbit: #fdcf1e;
  --hero-orbit-rgb: 253, 207, 30;
  --accent-contrast: #00132e;
  --ink: #f7f9fc;
  --muted: #9aabc1;
  --line: rgba(255, 255, 255, .1);
  --surface: rgba(14, 40, 72, .72);
  --shadow: 0 24px 70px rgba(0, 8, 22, .36);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% -10%, rgba(30, 73, 121, .48), transparent 32rem),
    var(--navy-950);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.inline-form { display: inline-flex; margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 19, 46, .82);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 300px; height: auto; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-link { color: #c5d0df; font-weight: 600; transition: color .2s ease; }
.nav-link:hover { color: var(--gold); }
.contact-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px;
  border: 1px solid rgba(253, 207, 30, .35); border-radius: 999px;
  flex: 0 0 auto; color: var(--gold); background: rgba(253, 207, 30, .06);
  font-weight: 800; white-space: nowrap;
}
.contact-pill svg { width: 18px; stroke-width: 2; }
.nav-login {
  border: 0; padding: 7px 0; color: #aebed2; background: none;
  font-size: 13px; font-weight: 700; border-bottom: 1px solid transparent;
}
.nav-login:hover { color: #fff; border-color: var(--gold); }
.admin-badge {
  padding: 6px 10px; border-radius: 8px; color: var(--gold);
  background: rgba(253, 207, 30, .1); font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em;
}
.admin-floating-button {
  position: fixed; z-index: 90; right: 20px; bottom: 20px; display: inline-flex;
  align-items: center; gap: 9px; min-height: 48px; padding: 11px 16px;
  border: 1px solid rgba(253,207,30,.5); border-radius: 999px; color: #00132e;
  background: var(--gold); box-shadow: 0 14px 38px rgba(0,0,0,.35);
  font-size: 12px; font-weight: 800;
}
.admin-floating-button i { font-size: 18px; }
.visitor-whatsapp-button {
  position: fixed; z-index: 95; right: 22px; bottom: 22px; display: grid; width: 68px; height: 68px;
  place-items: center; border: 2px solid rgba(255,255,255,.75); border-radius: 50%;
  background: #20b95a; box-shadow: 0 12px 34px rgba(5,125,55,.42);
  animation: visitor-whatsapp-pulse 1.65s ease-in-out infinite;
  transition: transform .2s ease, background .2s ease;
}
.visitor-whatsapp-button:hover { background: #169b49; transform: scale(1.06); }
.visitor-whatsapp-button img { width: 48px; height: 48px; object-fit: contain; }
@keyframes visitor-whatsapp-pulse {
  0%, 100% { box-shadow: 0 12px 34px rgba(5,125,55,.42), 0 0 0 0 rgba(32,185,90,.48); }
  50% { box-shadow: 0 12px 34px rgba(5,125,55,.5), 0 0 0 13px rgba(32,185,90,0); }
}

.hero { position: relative; overflow: hidden; padding: 86px 0 96px; border-bottom: 1px solid var(--line); }
.hero::after {
  content: ""; position: absolute; width: 640px; height: 640px; right: -240px; top: -170px;
  border-radius: 50%; background: rgba(253, 207, 30, .08); filter: blur(100px); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; color: var(--gold);
  font-size: 12px; line-height: 1; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow i { width: 23px; height: 1px; background: currentColor; box-shadow: 8px 0 0 -0.2px currentColor; }
.hero h1, .detail-heading h1, .login-card h1, .not-found h1 {
  margin: 22px 0 24px; max-width: 760px; font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(46px, 5.6vw, 78px); line-height: 1.02; letter-spacing: -.035em;
}
.hero h1 em { color: var(--gold); font-weight: inherit; }
.hero-copy > p { max-width: 680px; color: #b6c4d5; font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center;
  padding: 12px 22px; border: 1px solid transparent; border-radius: 12px;
  font-weight: 800; line-height: 1.2; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: #00132e; background: var(--gold); box-shadow: 0 12px 30px rgba(253, 207, 30, .14); }
.button--primary:hover { background: #ffe15d; box-shadow: 0 16px 36px rgba(253, 207, 30, .22); }
.button--whatsapp {
  min-height: 68px; justify-content: flex-start; gap: 13px; padding: 10px 18px;
  border-color: rgba(255,255,255,.2); color: #fff; background: #20b95a;
  box-shadow: 0 14px 34px rgba(32,185,90,.22);
}
.button--whatsapp:hover { background: #169b49; box-shadow: 0 18px 38px rgba(32,185,90,.3); }
.button-whatsapp-icon {
  flex: 0 0 auto; width: 46px; height: 46px; padding: 4px; border-radius: 14px;
  background: rgba(255,255,255,.12);
}
.button--whatsapp span { line-height: 1.2; text-align: left; }
.button--ghost { border-color: var(--line); color: #d8e2ee; background: rgba(255,255,255,.025); }
.button--ghost:hover { border-color: rgba(253,207,30,.35); }
.button--dark { color: var(--gold); background: var(--navy-950); }
.button--full { width: 100%; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 26px; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line);
  color: #8397b0; font-size: 12px;
}
.trust-row span { display: flex; align-items: baseline; gap: 6px; }
.trust-row b { color: #fff; font-size: 16px; }
.hero-visual {
  position: relative; min-height: 450px; display: grid; place-items: center;
  background: radial-gradient(circle, rgba(14, 40, 72, .8), transparent 66%);
}
.hero-visual > img { position: relative; z-index: 2; width: min(390px, 84%); filter: drop-shadow(0 28px 38px rgba(0,0,0,.45)); }
.hero-orbit { position: absolute; border: 1px solid rgba(253, 207, 30, .13); border-radius: 50%; }
.hero-orbit--one { width: 420px; height: 420px; animation: orbit 18s linear infinite; }
.hero-orbit--one::after {
  content: ""; position: absolute; width: 9px; height: 9px; top: 40px; left: 72px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 22px var(--gold);
}
.hero-orbit--two { width: 520px; height: 520px; border-style: dashed; opacity: .45; animation: orbit 30s linear reverse infinite; }
@keyframes orbit { to { transform: rotate(360deg); } }
.hero-note {
  position: absolute; z-index: 3; right: 0; bottom: 45px; display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border: 1px solid var(--line); border-radius: 12px;
  background: rgba(0, 19, 46, .88); box-shadow: var(--shadow); color: #cbd6e3; font-size: 12px; font-weight: 700;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #36d684; box-shadow: 0 0 0 6px rgba(54,214,132,.1); }

.search-section { padding: 92px 0 110px; background: linear-gradient(180deg, rgba(14,40,72,.16), transparent 20%); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 34px; }
.section-heading h2, .support-card h2, .content-block h2 {
  margin: 14px 0 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(32px, 4vw, 48px); line-height: 1.15;
}
.section-heading > p { max-width: 390px; margin: 0; color: var(--muted); }
.filters {
  display: grid; grid-template-columns: minmax(240px, 1.7fr) repeat(3, minmax(145px, 1fr)) auto auto;
  gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius-md);
  background: rgba(6, 26, 54, .72); box-shadow: 0 20px 60px rgba(0,0,0,.16);
}
.filters label { position: relative; display: block; }
.filters input, .filters select {
  width: 100%; height: 48px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
  outline: 0; color: #dce5f0; background: #081d3a; transition: border-color .2s, box-shadow .2s;
}
.filters input { padding: 0 14px 0 44px; }
.filters select { padding: 0 34px 0 13px; }
.filters input:focus, .filters select:focus { border-color: rgba(253,207,30,.55); box-shadow: 0 0 0 3px rgba(253,207,30,.08); }
.filters input::placeholder { color: #73869e; }
.search-control svg { position: absolute; left: 15px; top: 14px; z-index: 2; width: 20px; color: #8498b0; }
.filter-submit {
  min-width: 94px; border: 0; border-radius: 10px; color: var(--navy-950); background: var(--gold); font-weight: 800;
}
.clear-filters { align-self: center; padding: 0 8px; color: #9eb0c5; font-size: 12px; font-weight: 700; }
.results-meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 25px 2px 20px; color: #8092aa; font-size: 12px; }
.results-meta__summary { display: flex; justify-content: space-between; gap: 18px; flex: 1; }
.results-meta strong { color: #c7d3e2; }
.state-share-button {
  display: inline-flex; min-height: 42px; align-items: center; justify-content: center; gap: 9px; padding: 10px 15px;
  border: 1px solid rgba(53,208,107,.34); border-radius: 10px; color: #fff; background: #168b45;
  box-shadow: 0 10px 24px rgba(19,133,64,.2); font-size: 11px; font-weight: 800; white-space: nowrap;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.state-share-button:hover { background: #1ba552; box-shadow: 0 14px 30px rgba(19,133,64,.3); transform: translateY(-1px); }
.state-share-button img { width: 28px; height: 28px; }
.clinic-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.clinic-card {
  display: block; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: rgba(8, 29, 58, .78);
  box-shadow: 0 14px 40px rgba(0, 7, 20, .15); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.clinic-card:hover { transform: translateY(-5px); border-color: rgba(253,207,30,.28); box-shadow: 0 25px 55px rgba(0,7,20,.32); }
.clinic-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.card-image { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: #061832; }
.card-image > img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.clinic-card:hover .card-image > img { transform: scale(1.04); }
.card-image::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,13,31,.7)); pointer-events: none; }
.image-fallback { display: grid; width: 100%; height: 100%; place-items: center; background: radial-gradient(circle, #17395f, #061832); }
.image-fallback img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.card-image img.is-fallback { object-fit: cover; }
.photo-count, .card-class {
  position: absolute; z-index: 2; top: 13px; display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 9px; border: 1px solid rgba(255,255,255,.13); border-radius: 8px;
  color: #fff; background: rgba(0, 19, 46, .75); backdrop-filter: blur(8px); font-size: 10px; font-weight: 800;
}
.photo-count { right: 13px; }
.photo-count svg { width: 14px; }
.card-class { left: 13px; color: var(--gold); }
.card-body { padding: 20px; }
.card-location { display: flex; gap: 7px; align-items: center; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.card-location svg { width: 14px; flex: 0 0 auto; }
.card-body h3 { margin: 10px 0 8px; font-size: 18px; line-height: 1.35; }
.clinic-card:hover .card-body h3, .clinic-card:focus-visible .card-body h3 { color: var(--gold); }
.card-body > p { min-height: 66px; margin: 0; color: #90a1b6; font-size: 12px; line-height: 1.55; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; min-height: 25px; margin-top: 14px; }
.card-tags span, .detail-tags span { padding: 5px 8px; border-radius: 6px; color: #aab9ca; background: rgba(255,255,255,.045); font-size: 9px; font-weight: 700; }
.card-footer { display: flex; justify-content: space-between; align-items: end; margin-top: 18px; padding-top: 17px; border-top: 1px solid var(--line); }
.card-footer div { display: grid; }
.card-footer small { color: #7488a1; font-size: 9px; }
.card-footer strong { color: var(--gold); font-size: 18px; }
.card-footer strong small { margin-left: 3px; color: #95a7bb; font-size: 9px; font-weight: 500; }
.card-arrow { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); }
.card-arrow svg { width: 17px; }
.clinic-card:hover .card-arrow, .clinic-card:focus-visible .card-arrow { color: var(--navy-950); background: var(--gold); }
.pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 7px; margin-top: 42px; }
.pagination a { display: grid; min-width: 38px; min-height: 38px; padding: 0 10px; place-items: center; border: 1px solid var(--line); border-radius: 9px; color: #9badc2; font-size: 12px; font-weight: 800; }
.pagination a:hover, .pagination a.active { color: var(--navy-950); border-color: var(--gold); background: var(--gold); }
.empty-state { display: grid; justify-items: center; padding: 80px 25px; border: 1px dashed rgba(255,255,255,.14); border-radius: var(--radius-lg); text-align: center; }
.empty-state img { width: 86px; opacity: .75; }
.empty-state h3 { margin: 20px 0 5px; font-size: 24px; }
.empty-state p { margin: 0 0 22px; color: var(--muted); }

.support-cta { padding: 0 0 100px; }
.support-card {
  display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 48px 52px;
  border-radius: var(--radius-lg); color: var(--navy-950);
  background: linear-gradient(120deg, var(--gold), #ffe873); box-shadow: 0 24px 80px rgba(253,207,30,.12);
}
.eyebrow--dark { color: #4a3a00; }
.support-card h2 { margin-top: 10px; }
.support-card p { margin: 8px 0 0; color: #51481f; }

.detail-hero { padding: 42px 0 64px; border-bottom: 1px solid var(--line); }
.breadcrumb { display: flex; gap: 9px; overflow: hidden; color: #72869f; font-size: 11px; white-space: nowrap; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:last-child { overflow: hidden; text-overflow: ellipsis; color: #a9b8ca; }
.detail-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin: 38px 0 34px; }
.detail-heading h1 { margin: 14px 0 12px; max-width: 850px; font-size: clamp(38px, 5vw, 62px); }
.detail-stars { margin: -4px 0 10px; color: var(--gold); font-size: 19px; letter-spacing: .14em; }
.detail-location { display: flex; align-items: center; gap: 8px; margin: 0; color: #a2b2c6; }
.detail-location svg { width: 18px; color: var(--gold); }
.detail-price { min-width: 230px; padding: 20px; border-left: 2px solid var(--gold); background: linear-gradient(90deg, rgba(253,207,30,.07), transparent); }
.detail-price small, .detail-price span { display: block; color: #8093aa; font-size: 10px; }
.detail-price strong { display: block; color: var(--gold); font-size: 26px; }
.gallery { display: grid; grid-template-columns: minmax(0, 1fr) 142px; gap: 12px; height: min(62vw, 670px); max-height: 670px; }
.gallery-main {
  position: relative; min-height: 480px; padding: 0; overflow: hidden; border: 1px solid var(--line);
  border-radius: 22px; background: #06172f;
}
.gallery-main > img {
  width: 100%; height: 100%; object-fit: cover; user-select: none; -webkit-user-drag: none;
  transform: translateX(var(--swipe-offset, 0)); transition: transform .22s ease;
}
.gallery-main.is-swiping > img { transition: none; }
.gallery-main::after { content: ""; position: absolute; inset: 65% 0 0; background: linear-gradient(transparent, rgba(0,12,28,.74)); }
.gallery-swipe-hint { display: none; }
.gallery-expand, .gallery-counter {
  position: absolute; z-index: 2; bottom: 18px; display: flex; align-items: center; gap: 8px;
  padding: 8px 11px; border: 1px solid rgba(255,255,255,.14); border-radius: 9px;
  color: #fff; background: rgba(0,19,46,.78); backdrop-filter: blur(8px); font-size: 10px; font-weight: 700;
}
.gallery-expand { left: 18px; }
.gallery-expand svg { width: 16px; }
.gallery-counter { right: 18px; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 9px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
.gallery-thumbs button { flex: 0 0 94px; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 11px; background: #06172f; opacity: .58; }
.gallery-thumbs button.active { border-color: var(--gold); opacity: 1; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery-empty { display: grid; min-height: 400px; place-content: center; justify-items: center; border: 1px solid var(--line); border-radius: 22px; background: #06172f; }
.gallery-empty img { width: 190px; opacity: .65; }
.gallery-empty p { color: var(--muted); }
.gallery-empty--visual { position: relative; display: block; min-height: 520px; overflow: hidden; }
.gallery-empty--visual::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(0,19,46,.9)); }
.gallery-empty--visual img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; opacity: 1; }
.gallery-empty--visual p {
  position: absolute; z-index: 2; right: 22px; bottom: 18px; left: 22px; margin: 0;
  padding: 10px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px;
  color: #fff; background: rgba(0,19,46,.78); backdrop-filter: blur(8px); text-align: center;
}
.gallery-main img.is-fallback, .lightbox img.is-fallback { object-fit: contain; background: var(--navy-950); }

.detail-content { padding: 74px 0 110px; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: start; gap: 32px; }
.detail-main { display: grid; gap: 20px; }
.content-block { padding: 36px; border: 1px solid var(--line); border-radius: 22px; background: rgba(8,29,58,.62); }
.section-kicker { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.content-block h2 { margin: 7px 0 18px; font-size: clamp(28px, 3vw, 38px); }
.content-block > p { color: #9badc1; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.benefit-grid div { display: grid; grid-template-columns: 30px 1fr; column-gap: 10px; padding: 16px; border-radius: 12px; background: rgba(255,255,255,.035); }
.benefit-grid span { grid-row: 1/3; display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--gold); font-weight: 900; }
.benefit-grid b { font-size: 12px; }
.benefit-grid small { color: #8295ad; font-size: 10px; }
.info-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--line); }
.info-list div { display: grid; padding: 18px; background: #081d3a; }
.info-list span { color: #7388a1; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.info-list strong { margin-top: 3px; font-size: 13px; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.detail-tags span { padding: 8px 11px; color: #d5dfeb; background: rgba(253,207,30,.07); border: 1px solid rgba(253,207,30,.13); }
.fine-print { margin-bottom: 0; font-size: 11px; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; cursor: pointer; list-style: none; font-weight: 700; font-size: 13px; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--gold); font-size: 20px; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -4px 0 20px; color: #91a4ba; font-size: 12px; white-space: pre-line; }
.accordion details .faq-contact-copy { white-space: normal; }
.faq-contact-link { color: var(--gold); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.faq-contact-link:hover { color: #ffe873; }
.contact-card {
  position: sticky; top: 105px; padding: 28px; border: 1px solid rgba(253,207,30,.22); border-radius: 22px;
  background: linear-gradient(145deg, rgba(14,40,72,.95), rgba(4,23,48,.98)); box-shadow: var(--shadow);
}
.contact-card--mobile { display: none; }
.contact-icon {
  display: grid; width: 144px; height: 144px; overflow: hidden; place-items: center;
  margin: 0 auto; background: transparent;
}
.contact-icon img { width: 120px; height: 120px; object-fit: contain; }
.contact-card > span:not(.contact-icon) { display: block; margin-top: 20px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-card h3 { margin: 5px 0 10px; font-family: "Playfair Display", Georgia, serif; font-size: 27px; line-height: 1.2; }
.contact-phone-link {
  color: inherit; text-decoration: underline; text-decoration-color: rgba(253,207,30,.58);
  text-decoration-thickness: 1px; text-underline-offset: 5px;
}
.contact-phone-link:hover { color: var(--gold); }
.altcha-unlock { display: grid; gap: 10px; width: 100%; margin: 12px 0; }
.altcha-unlock altcha-widget { width: 100%; --altcha-border-radius: 10px; }
.altcha-status { margin: 0 !important; color: #8fa3ba !important; font-size: 12px !important; text-align: center; }
.contact-card p { color: #a2b3c6; font-size: 12px; }
.contact-card > small { display: block; margin-top: 12px; color: #73879f; font-size: 9px; text-align: center; }
.contact-card .admin-warning { color: #d3aead; }
.contact-card ul { margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.contact-card li { margin-top: 8px; color: #9aadc2; font-size: 11px; }
.contact-card li span { margin-right: 7px; color: var(--gold); }

.lightbox { width: min(94vw, 1400px); height: min(92vh, 900px); padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(0,13,31,.98); }
.lightbox::backdrop { background: rgba(0,7,18,.88); backdrop-filter: blur(8px); }
.lightbox > img { width: 100%; height: 100%; object-fit: contain; }
.lightbox-close, .lightbox-nav {
  position: absolute; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%; color: #fff; background: rgba(0,19,46,.75); backdrop-filter: blur(10px);
}
.lightbox-close { top: 16px; right: 16px; width: 42px; height: 42px; font-size: 25px; }
.lightbox-nav { top: 50%; width: 48px; height: 48px; padding: 0; transform: translateY(-50%); }
.lightbox-nav svg { width: 24px; height: 24px; }
.lightbox-nav--prev { left: 16px; }
.lightbox-nav--next { right: 16px; }
.lightbox-count { position: absolute; left: 50%; bottom: 16px; padding: 7px 12px; border-radius: 999px; color: #fff; background: rgba(0,19,46,.8); transform: translateX(-50%); font-size: 11px; }

.contact-actions { display: grid; gap: 9px; margin-top: 10px; }
.contact-actions .button { display: flex; align-items: center; justify-content: center; gap: 9px; }
.contact-card .contact-action { gap: 12px; }
.contact-card .contact-action > i { flex: 0 0 auto; margin-right: 2px; font-size: 20px; }
.whatsapp-button-logo { flex: 0 0 auto; width: 32px; height: 32px; object-fit: contain; }
.contact-action--whatsapp { min-height: 58px; }
.button--outline { border: 1px solid rgba(253,207,30,.3); color: #f7d967; background: rgba(14,40,72,.62); }
.button--outline:hover { border-color: var(--gold); color: #00132e; background: var(--gold); }
.contact-details { display: grid; gap: 8px; margin: 18px 0 0; text-align: left; }
.contact-details div { padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: rgba(14,40,72,.5); }
.contact-details dt { color: #758aa4; font-size: 10px; text-transform: uppercase; }
.contact-details dd { margin: 3px 0 0; color: #fff; font-size: 13px; overflow-wrap: anywhere; }
.private-share-link { margin-top: 18px; text-align: left; }
.private-share-button { margin-bottom: 12px; }
.private-share-link label { display: block; margin-bottom: 6px; color: #8fa2b8; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.private-share-link div { display: flex; }
.private-share-link input { min-width: 0; flex: 1; padding: 10px; border: 1px solid var(--line); border-radius: 9px 0 0 9px; color: #d9e2ed; background: #061832; font-size: 11px; }
.private-share-link > div > button { width: 44px; border: 0; border-radius: 0 9px 9px 0; color: #00132e; background: var(--gold); cursor: pointer; }
.clinic-map > p { margin-top: -8px; color: #8094ab; }
.clinic-map__frame {
  aspect-ratio: 16 / 9; min-height: 320px; overflow: hidden; margin-top: 18px;
  border: 1px solid rgba(253,207,30,.2); border-radius: 16px; background: #061832;
}
.clinic-map__frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.sticky-contact-bar { display: none; }

.login-section { position: relative; display: grid; min-height: calc(100vh - 82px); place-items: center; padding: 70px 20px; overflow: hidden; }
.login-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(253,207,30,.08); filter: blur(100px); }
.login-card { position: relative; z-index: 1; width: min(100%, 450px); padding: 38px; border: 1px solid var(--line); border-radius: 26px; background: rgba(6,26,54,.9); box-shadow: var(--shadow); text-align: center; }
.login-card > img { width: 150px; margin: 0 auto 20px; }
.login-card h1 { margin: 13px 0 9px; font-size: 38px; }
.login-card > p { margin: 0 auto 25px; color: var(--muted); font-size: 12px; }
.login-card form { display: grid; gap: 15px; text-align: left; }
.login-card label span { display: block; margin-bottom: 6px; color: #abbaca; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.login-card input { width: 100%; height: 49px; padding: 0 14px; outline: 0; border: 1px solid var(--line); border-radius: 10px; color: #fff; background: #061832; }
.login-card input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(253,207,30,.08); }
.login-card form + a { display: inline-block; margin-top: 22px; color: #879ab2; font-size: 11px; }
.login-error { margin-bottom: 17px; padding: 10px; border: 1px solid rgba(255,102,102,.3); border-radius: 9px; color: #ffb1b1; background: rgba(255,80,80,.08); font-size: 11px; }

.not-found { display: grid; min-height: 65vh; place-content: center; justify-items: center; padding: 80px 20px; text-align: center; }
.not-found img { width: 100px; }
.not-found > span { margin-top: 20px; color: var(--gold); font-weight: 800; }
.not-found h1 { margin: 8px 0; font-size: 48px; }
.not-found p { margin: 0 0 24px; color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); background: #000f25; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding: 60px 0 45px; }
.footer-logo { width: 240px; }
.footer-grid p { max-width: 470px; color: #8093aa; font-size: 12px; }
.footer-grid > div:last-child { display: grid; align-content: center; justify-items: end; }
.footer-label { color: #73879f; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-phone { color: var(--gold); font-size: 27px; font-weight: 800; }
.footer-grid small { color: #647890; }
.footer-admin { margin-top: 12px; color: #8498b0; font-size: 10px; font-weight: 700; }
.footer-admin--mobile { display: none; }
.footer-admin button { padding: 0; border: 0; color: inherit; background: none; font: inherit; cursor: pointer; }
.footer-admin:hover, .footer-admin button:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding: 20px 0; border-top: 1px solid var(--line); color: #5d7087; font-size: 9px; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr .75fr; gap: 25px; }
  .hero-orbit--two { width: 420px; height: 420px; }
  .hero-orbit--one { width: 340px; height: 340px; }
  .filters { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .filters label:nth-of-type(4) { grid-column: auto; }
  .clinic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 82px; }
  .brand img { width: 230px; }
  .nav-link--desktop, .nav-login, .admin-badge { display: none; }
  .contact-pill { padding: 9px 12px; }
  .contact-pill span { font-size: 11px; }
  .hero { padding: 62px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 2; }
  .hero h1 { font-size: clamp(44px, 12vw, 66px); }
  .hero-visual { min-height: 350px; }
  .hero-visual > img { width: 310px; }
  .hero-orbit--one { width: 300px; height: 300px; }
  .hero-orbit--two { width: 380px; height: 380px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 12px; }
  .filters { grid-template-columns: 1fr 1fr; }
  .search-control { grid-column: 1/-1; }
  .filter-submit { min-height: 48px; }
  .support-card { align-items: start; flex-direction: column; padding: 36px; }
  .detail-heading { align-items: start; flex-direction: column; }
  .detail-price { width: 100%; }
  .gallery { grid-template-columns: 1fr; max-height: none; }
  .gallery { height: auto; }
  .gallery-main { min-height: 430px; }
  .gallery-main { touch-action: pan-y; }
  .gallery-swipe-hint {
    position: absolute; z-index: 2; top: 14px; left: 50%; display: flex; align-items: center; gap: 7px;
    padding: 8px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
    color: #fff; background: rgba(0,19,46,.78); backdrop-filter: blur(8px);
    font-size: 11px; font-weight: 700; white-space: nowrap; pointer-events: none;
    transform: translateX(-50%); transition: opacity .2s, visibility .2s;
  }
  .gallery-swipe-hint svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
  .gallery.has-swiped .gallery-swipe-hint { visibility: hidden; opacity: 0; }
  .gallery-thumbs { flex-direction: row; overflow-x: auto; }
  .gallery-thumbs button { flex: 0 0 105px; height: 72px; }
  .detail-layout { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  .contact-card--mobile { display: block; margin-top: 24px; }
  .contact-card--desktop { display: none; }
  body:has(.sticky-contact-bar) { padding-bottom: 78px; }
  body:has(.sticky-contact-bar) .admin-floating-button { bottom: 88px; }
  body:has(.sticky-contact-bar) .visitor-whatsapp-button { bottom: 92px; }
  .sticky-contact-bar {
    position: fixed; z-index: 50; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr auto;
    gap: 8px; padding: 10px max(12px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    border-top: 1px solid rgba(253,207,30,.25); background: rgba(0,19,46,.97); box-shadow: 0 -12px 35px rgba(0,0,0,.35); backdrop-filter: blur(16px);
  }
  .sticky-contact-bar a, .sticky-contact-bar button { min-height: 52px; border-radius: 12px; font: 800 12px Manrope,sans-serif; cursor: pointer; }
  .sticky-contact-bar__primary { display: flex; align-items: center; justify-content: center; gap: 10px; color: #00132e; background: var(--gold); }
  .sticky-contact-bar__primary .whatsapp-button-logo { width: 30px; height: 30px; }
  .sticky-contact-bar__share { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 0 15px; border: 1px solid rgba(253,207,30,.4); color: var(--gold); background: #0e2848; }
}

@media (max-width: 560px) {
  .nav-wrap { min-height: 0; flex-wrap: wrap; justify-content: center; gap: 6px; padding: 10px 0; }
  .brand { flex: 0 0 100%; display: flex; justify-content: center; }
  .site-header .brand img { width: 220px; }
  .contact-pill svg { display: none; }
  .contact-pill span { font-size: 12px; }
  .nav-actions { gap: 8px; }
  .admin-floating-button { right: 12px; bottom: 12px; min-width: 48px; justify-content: center; padding: 11px; }
  .admin-floating-button span { display: none; }
  .visitor-whatsapp-button { right: 14px; bottom: 14px; width: 62px; height: 62px; }
  .visitor-whatsapp-button img { width: 44px; height: 44px; }
  .hero { padding-top: 52px; }
  .hero h1 { font-size: 43px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-visual { min-height: 310px; }
  .hero-note { right: 50%; bottom: 8px; width: max-content; transform: translateX(50%); }
  .search-section { padding: 70px 0; }
  .filters { grid-template-columns: 1fr; }
  .search-control { grid-column: auto; }
  .clinic-grid { grid-template-columns: 1fr; }
  .results-meta { align-items: stretch; flex-direction: column; gap: 12px; }
  .results-meta__summary { width: 100%; }
  .state-share-button { width: 100%; }
  .support-card { padding: 30px 24px; }
  .detail-hero { padding-top: 28px; }
  .breadcrumb { font-size: 14px; line-height: 1.5; }
  .detail-heading h1 { font-size: 39px; }
  .detail-location { font-size: 16px; line-height: 1.5; }
  .detail-location svg { width: 20px; }
  .detail-price { padding: 22px 20px; }
  .detail-price small, .detail-price span { font-size: 14px; line-height: 1.55; }
  .detail-price strong { font-size: 32px; line-height: 1.35; }
  .gallery, .gallery-main, .gallery-thumbs { min-width: 0; max-width: 100%; }
  .gallery-main { width: 100%; min-height: 0; aspect-ratio: 4/3; }
  .gallery-expand { font-size: 0; }
  .gallery-expand svg { width: 18px; }
  .gallery-counter { font-size: 13px; }
  .detail-content { padding: 48px 0 75px; }
  .content-block { padding: 25px 20px; }
  .section-kicker { font-size: 12px; }
  .content-block > p { font-size: 16px; line-height: 1.75; }
  .benefit-grid, .info-list { grid-template-columns: 1fr; }
  .benefit-grid b { font-size: 15px; }
  .benefit-grid small { font-size: 14px; line-height: 1.55; }
  .info-list span { font-size: 12px; }
  .info-list strong { font-size: 16px; }
  .detail-tags span { font-size: 13px; }
  .fine-print { font-size: 14px; }
  .accordion summary { font-size: 15px; line-height: 1.55; }
  .accordion details p { font-size: 15px; line-height: 1.75; }
  .clinic-map__frame { min-height: 280px; aspect-ratio: 4 / 3; }
  .contact-card > span:not(.contact-icon) { font-size: 12px; }
  .contact-card p { font-size: 15px; line-height: 1.75; }
  .contact-card > small { font-size: 12px; line-height: 1.6; }
  .contact-card li { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { text-align: center; }
  .footer-logo { margin-right: auto; margin-left: auto; }
  .footer-grid p { margin-right: auto; margin-left: auto; }
  .footer-grid p { font-size: 14px; }
  .footer-label { font-size: 11px; }
  .footer-grid small, .footer-admin { font-size: 12px; }
  .footer-admin--mobile { display: inline-flex; }
  .footer-grid > div:last-child { justify-items: center; }
  .footer-bottom { align-items: center; flex-direction: column; font-size: 11px; text-align: center; }
  .login-card { padding: 30px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Paleta dinâmica do link público do captador. */
body{background:radial-gradient(circle at 15% -10%,rgba(var(--navy-800-rgb),.48),transparent 32rem),var(--navy-950)}
.site-header{background:rgba(var(--navy-950-rgb),.82)}
.contact-pill{border-color:rgba(var(--gold-rgb),.35);background:rgba(var(--gold-rgb),.06)}
.admin-badge{background:rgba(var(--gold-rgb),.1)}
.admin-floating-button,.button--primary,.filter-submit,.pagination a:hover,.pagination a.active,.clinic-card:hover .card-arrow,.clinic-card:focus-visible .card-arrow,.private-share-link>div>button,.sticky-contact-bar__primary{color:var(--accent-contrast)}
.button--primary:hover{background:var(--gold-hover);box-shadow:0 16px 36px rgba(var(--gold-rgb),.22)}
.hero::after{background:rgba(var(--hero-orbit-rgb),.08)}
.hero-visual{background:radial-gradient(circle,rgba(var(--navy-800-rgb),.8),transparent 66%)}
.hero-orbit{border-color:rgba(var(--hero-orbit-rgb),.32)}
.hero-orbit--one::after{background:var(--hero-orbit);box-shadow:0 0 22px var(--hero-orbit)}
.filters{background:rgba(var(--navy-950-rgb),.72)}
.filters input,.filters select,.info-list div,.private-share-link input,.clinic-map__frame{background:var(--navy-900)}
.filters input:focus,.filters select:focus{border-color:rgba(var(--gold-rgb),.55);box-shadow:0 0 0 3px rgba(var(--gold-rgb),.08)}
.clinic-card,.content-block{background:rgba(var(--navy-800-rgb),.62)}
.clinic-card:hover{border-color:rgba(var(--gold-rgb),.28)}
.support-card{color:var(--accent-contrast);background:linear-gradient(120deg,var(--gold),var(--gold-hover));box-shadow:0 24px 80px rgba(var(--gold-rgb),.12)}
.button--dark{color:var(--gold);background:var(--navy-950)}
.detail-price{background:linear-gradient(90deg,rgba(var(--gold-rgb),.07),transparent)}
.detail-tags span{background:rgba(var(--gold-rgb),.07);border-color:rgba(var(--gold-rgb),.13)}
.contact-card{border-color:rgba(var(--gold-rgb),.22);background:linear-gradient(145deg,rgba(var(--navy-800-rgb),.95),rgba(var(--navy-950-rgb),.98))}
.site-footer{background:var(--navy-950)}
.sticky-contact-bar{border-color:rgba(var(--gold-rgb),.25);background:rgba(var(--navy-950-rgb),.97)}

/* Contraste semântico para temas claros e escuros. */
.theme-no-hero-gradient .hero::after{display:none}
.theme-no-hero-gradient .hero-visual{background:none}
.nav-link,.nav-login,.hero-copy>p,.button--ghost,.trust-row,.section-heading>p,.clear-filters,.results-meta,.pagination a,.breadcrumb,.detail-location,.detail-price small,.detail-price span,.gallery-empty p,.fine-print,.clinic-map>p,.login-card>p,.login-card label span,.login-card form+a,.footer-grid p,.footer-label,.footer-grid small,.footer-admin,.footer-bottom{color:var(--secondary-text)}
.nav-login:hover{color:var(--gold);border-color:var(--gold)}
.breadcrumb span:last-child{color:var(--secondary-text)}
.filters input::placeholder,.search-control svg{color:var(--secondary-text)}
.trust-row b,.filters input,.filters select,.results-meta strong{color:var(--ink)}
.hero-note,.clinic-card,.content-block,.info-list div,.contact-card,.contact-details div{color:var(--surface-text)}
.card-body>p,.card-tags span,.card-footer small,.card-footer strong small,.content-block>p,.benefit-grid small,.info-list span,.detail-tags span,.accordion details p,.contact-card p,.contact-card>small,.contact-card li,.contact-details dt,.private-share-link label{color:var(--surface-muted)}
.altcha-status{color:var(--surface-muted)!important}
.clinic-card,.content-block{background:var(--navy-800)}
.hero-note,.contact-card{background:var(--navy-800)}
.card-tags span,.benefit-grid div,.contact-details div{background:var(--navy-700)}
.info-list div,.private-share-link input{color:var(--surface-text);background:var(--navy-700)}
.filters input,.filters select,.empty-state,.gallery-main,.gallery-empty,.content-block,.info-list,.contact-details div,.private-share-link input,.clinic-map__frame{border-color:var(--theme-border)}
.support-card .eyebrow--dark,.support-card p{color:var(--accent-contrast)}
.card-location,.card-footer strong,.contact-card>span:not(.contact-icon),.contact-card li span{color:var(--surface-accent)}
.card-class{color:var(--accent-contrast);border-color:var(--gold);background:var(--gold)}
