:root {
  --brand: #2bafd0;
  --brand-dark: #0e7797;
  --brand-soft: #eaf9fd;
  --navy: #0d2f46;
  --text: #1c3342;
  --muted: #607785;
  --line: #dcecf1;
  --white: #ffffff;
  --surface: #f7fbfc;
  --shadow: 0 24px 70px rgba(13, 75, 99, 0.14);
  --shadow-soft: 0 14px 35px rgba(25, 82, 104, 0.1);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
svg { fill: currentColor; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 1000;
  background: var(--navy);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 30px rgba(23, 69, 86, .09);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); }
.brand img { width: 58px; height: 58px; object-fit: contain; filter: drop-shadow(0 8px 15px rgba(34, 169, 205, .18)); }
.brand strong { display: block; font-size: 1.18rem; letter-spacing: .02em; line-height: 1.05; }
.brand small { display: block; color: var(--brand-dark); font-size: .76rem; text-transform: uppercase; letter-spacing: .18em; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: .94rem; font-weight: 700; color: #355365; }
.main-nav > a:not(.nav-cta) { position: relative; padding: 28px 0; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--brand); transition: right .2s ease; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { color: white; background: var(--navy); padding: 12px 18px; border-radius: 999px; transition: transform .2s ease, background .2s ease; }
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-2px); }
.nav-toggle { display: none; border: 0; background: transparent; width: 46px; height: 46px; padding: 10px; border-radius: 12px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px auto; transition: .2s ease; }

.hero {
  position: relative;
  min-height: 840px;
  display: grid;
  align-items: center;
  padding: 130px 0 100px;
  overflow: hidden;
  background: linear-gradient(125deg, #f7fdff 0%, #eaf9fd 54%, #d6f4fa 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(43, 175, 208, .18);
  left: -250px;
  top: 120px;
  box-shadow: 0 0 0 70px rgba(43, 175, 208, .05), 0 0 0 140px rgba(43, 175, 208, .035);
}
.hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  height: 100%;
  background: linear-gradient(90deg, rgba(231,249,253,.98) 0%, rgba(231,249,253,.42) 30%, rgba(10,55,73,.12) 100%), url("assets/img/hero-consultorio.webp") center / cover no-repeat;
  clip-path: ellipse(76% 80% at 80% 48%);
  opacity: .8;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .72fr; gap: 90px; align-items: center; }
.hero-copy { max-width: 690px; }
.eyebrow { margin: 0 0 15px; color: var(--brand-dark); font-size: .78rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-light { color: #bdeef7; }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(3.15rem, 6.1vw, 5.6rem); line-height: .97; letter-spacing: -.06em; color: var(--navy); }
.hero-lead { max-width: 650px; margin: 28px 0 0; font-size: 1.13rem; color: #4a6879; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 22px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; border: 1px solid transparent; }
.btn:hover { transform: translateY(-3px); }
.btn svg { width: 21px; height: 21px; }
.btn-primary { color: white; background: var(--brand-dark); box-shadow: 0 14px 35px rgba(14, 119, 151, .28); }
.btn-primary:hover { background: var(--navy); box-shadow: 0 18px 40px rgba(13, 47, 70, .25); }
.btn-secondary { color: var(--navy); border-color: rgba(13,47,70,.18); background: rgba(255,255,255,.72); }
.btn-secondary:hover { background: white; box-shadow: var(--shadow-soft); }
.btn-light { color: var(--brand-dark); background: white; box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.hero-points { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; padding: 0; margin: 30px 0 0; font-size: .88rem; font-weight: 750; color: #496676; }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points span { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #d7f3f9; color: var(--brand-dark); }
.hero-card { position: relative; justify-self: end; width: min(100%, 370px); padding: 30px; border-radius: 38px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.75); backdrop-filter: blur(12px); }
.hero-logo { width: 220px; margin: 0 auto; filter: drop-shadow(0 18px 32px rgba(40, 165, 198, .25)); }
.hero-card-body { text-align: center; padding-top: 18px; }
.hero-card-body p { margin: 0; color: var(--muted); font-size: .9rem; }
.hero-card-body a { display: block; margin: 4px 0 7px; color: var(--navy); font-size: 1.45rem; font-weight: 900; }
.hero-card-body span { display: block; color: #607785; font-size: .84rem; }
.hero-card-badge { position: absolute; right: -28px; bottom: 30px; background: var(--navy); color: white; padding: 10px 15px; border-radius: 14px; font-size: .78rem; font-weight: 900; letter-spacing: .05em; box-shadow: 0 12px 30px rgba(13,47,70,.28); }
.hero-wave { position: absolute; left: -5%; bottom: -75px; width: 110%; height: 160px; background: white; border-radius: 50% 50% 0 0 / 100% 100% 0 0; }

.trust-strip { position: relative; z-index: 4; margin-top: -24px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: white; border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; }
.trust-grid article { display: flex; gap: 16px; align-items: flex-start; padding: 28px 30px; }
.trust-grid article + article { border-left: 1px solid var(--line); }
.trust-icon { flex: 0 0 44px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: var(--brand-soft); color: var(--brand-dark); font-weight: 900; }
.trust-grid strong { display: block; color: var(--navy); }
.trust-grid small { display: block; margin-top: 4px; color: var(--muted); line-height: 1.45; }

.section-heading { display: grid; grid-template-columns: 1fr .55fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.section-heading h2, .clinic-copy h2, .diagnosis-copy h2, .faq-intro h2, .contact-info h2 { margin: 0; color: var(--navy); font-size: clamp(2.2rem, 4.3vw, 3.55rem); line-height: 1.05; letter-spacing: -.045em; }
.section-heading > p { margin: 0; color: var(--muted); }
.services { background: white; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { min-height: 330px; display: flex; flex-direction: column; align-items: flex-start; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 10px 30px rgba(17, 74, 94, .045); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); border-color: #bfe6ef; }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; color: var(--brand-dark); background: var(--brand-soft); }
.service-icon svg { width: 27px; height: 27px; }
.service-card h3 { margin: 26px 0 10px; color: var(--navy); font-size: 1.3rem; }
.service-card p { margin: 0; color: var(--muted); }
.service-card > a:not(.btn) { margin-top: auto; padding-top: 28px; color: var(--brand-dark); font-weight: 850; }
.service-card > a span { transition: margin .2s ease; }
.service-card > a:hover span { margin-left: 5px; }
.service-card-featured { color: white; background: linear-gradient(145deg, #35bad8, #0d7899); border-color: transparent; }
.service-card-featured h3, .service-card-featured p { color: white; }
.service-card-featured .mini-label { text-transform: uppercase; letter-spacing: .13em; font-size: .73rem; font-weight: 900; color: #d5f7ff; }
.service-card-featured .btn { margin-top: auto; }

.clinic { background: var(--surface); }
.clinic-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 90px; align-items: center; }
.clinic-media { position: relative; }
.clinic-media > img { width: 100%; height: 620px; object-fit: cover; border-radius: 38px; box-shadow: var(--shadow); }
.clinic-media::before { content: ""; position: absolute; inset: -18px auto auto -18px; width: 160px; height: 160px; border: 2px solid rgba(43,175,208,.35); border-radius: 34px; z-index: -1; }
.clinic-stamp { position: absolute; right: -35px; bottom: 38px; width: 190px; padding: 20px; border-radius: 20px; background: white; box-shadow: var(--shadow-soft); }
.clinic-stamp strong { display: block; color: var(--brand-dark); font-size: 1.35rem; }
.clinic-stamp span { color: var(--muted); font-size: .82rem; }
.clinic-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.03rem; margin: 24px 0 0; }
.feature-list { display: grid; gap: 20px; margin: 34px 0; }
.feature-list > div { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; }
.feature-list span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: #dff6fb; color: var(--brand-dark); font-weight: 900; }
.feature-list p { margin: 0; color: var(--muted); }
.feature-list strong { display: block; color: var(--navy); margin-bottom: 2px; }
.text-link { color: var(--brand-dark); font-weight: 900; }

.diagnosis-band { background: var(--navy); color: white; overflow: hidden; }
.diagnosis-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 70px; align-items: center; }
.diagnosis-copy h2 { color: white; }
.diagnosis-copy > p:not(.eyebrow) { color: #bfd4df; max-width: 590px; margin: 22px 0 30px; }
.diagnosis-image { position: relative; }
.diagnosis-image::before { content: ""; position: absolute; inset: -26px -26px auto auto; width: 130px; height: 130px; border-radius: 50%; background: var(--brand); opacity: .22; }
.diagnosis-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 34px; position: relative; box-shadow: 0 28px 60px rgba(0,0,0,.32); }

.gallery { background: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 18px; }
.gallery-item { position: relative; padding: 0; border: 0; border-radius: 22px; overflow: hidden; background: #dfeff3; text-align: left; box-shadow: 0 10px 26px rgba(18, 70, 90, .09); }
.gallery-item::after { content: "↗"; position: absolute; right: 16px; top: 16px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--navy); font-size: 1.05rem; transform: scale(.88); opacity: 0; transition: .2s ease; }
.gallery-item:hover::after { transform: scale(1); opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item span { position: absolute; inset: auto 0 0; padding: 38px 18px 17px; color: white; font-size: .83rem; background: linear-gradient(transparent, rgba(4,32,45,.82)); }
.gallery-item span strong { display: block; font-size: 1rem; }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-note { margin: 22px 0 0; color: var(--muted); font-size: .85rem; text-align: right; }

.faq { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: .78fr 1fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); margin: 22px 0 28px; }
.accordion { border-top: 1px solid #d4e6eb; }
.accordion-item { border-bottom: 1px solid #d4e6eb; }
.accordion-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 0; border: 0; background: transparent; color: var(--navy); text-align: left; font-weight: 850; font-size: 1.05rem; }
.accordion-item button span { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--brand-dark); transition: transform .2s ease; box-shadow: 0 6px 20px rgba(19, 80, 101, .08); }
.accordion-item.open button span { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.accordion-panel > p { overflow: hidden; margin: 0; color: var(--muted); }
.accordion-item.open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.open .accordion-panel > p { padding: 0 46px 24px 0; }

.contact { background: white; }
.contact-grid { display: grid; grid-template-columns: .78fr 1fr; gap: 70px; align-items: stretch; }
.contact-lead { color: var(--muted); max-width: 570px; margin: 22px 0 30px; }
.contact-cards { display: grid; gap: 12px; }
.contact-cards > a { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 15px; padding: 16px; border: 1px solid var(--line); border-radius: 17px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.contact-cards > a:hover { transform: translateX(5px); border-color: #bde5ee; box-shadow: 0 12px 24px rgba(19,75,96,.07); }
.contact-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--brand-soft); color: var(--brand-dark); font-weight: 950; }
.contact-cards small { display: block; color: var(--muted); }
.contact-cards strong { color: var(--navy); }
.contact-cards b { color: var(--brand-dark); }
.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a { padding: 9px 14px; border-radius: 999px; background: var(--brand-soft); color: var(--brand-dark); font-size: .83rem; font-weight: 850; }
.map-card { min-height: 580px; display: grid; grid-template-rows: 1fr auto; overflow: hidden; border-radius: 32px; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.map-card iframe { width: 100%; min-height: 500px; height: 100%; border: 0; filter: saturate(.75) contrast(1.02); }
.map-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; background: white; }
.map-footer strong { display: block; color: var(--navy); }
.map-footer span { color: var(--muted); font-size: .84rem; }
.map-footer a { color: var(--brand-dark); font-weight: 900; white-space: nowrap; }

.final-cta { padding: 24px 0 92px; background: white; }
.final-cta-inner { display: grid; grid-template-columns: 95px 1fr auto; gap: 28px; align-items: center; padding: 38px 42px; border-radius: 30px; color: white; background: linear-gradient(120deg, var(--brand-dark), #29b1d3); box-shadow: 0 24px 60px rgba(23, 133, 166, .25); overflow: hidden; position: relative; }
.final-cta-inner::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 50px solid rgba(255,255,255,.08); right: 130px; top: -130px; }
.final-cta-inner img { width: 92px; position: relative; z-index: 2; filter: drop-shadow(0 12px 20px rgba(0,0,0,.18)); }
.final-cta-inner p { margin: 0; color: #d4f7ff; font-size: .85rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 850; }
.final-cta-inner h2 { margin: 4px 0 0; color: white; font-size: clamp(1.7rem, 3.1vw, 2.8rem); line-height: 1.08; }
.final-cta-inner .btn { position: relative; z-index: 2; }

.site-footer { padding: 72px 0 22px; background: #082436; color: #c5d6df; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .8fr 1.1fr; gap: 50px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-brand img { width: 95px; }
.footer-brand p, .footer-grid p { margin: 0; color: #9fb6c3; font-size: .88rem; }
.footer-grid strong { color: white; margin-bottom: 6px; }
.footer-grid a { color: #b8cbd5; font-size: .9rem; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: #86a2b1; font-size: .8rem; }

.floating-whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 80; display: inline-flex; align-items: center; gap: 10px; padding: 13px 18px; border-radius: 999px; background: #25d366; color: white; box-shadow: 0 16px 35px rgba(18,117,58,.3); font-weight: 900; transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-4px); }
.floating-whatsapp svg { width: 24px; height: 24px; }

.lightbox { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 30px; background: rgba(3, 23, 32, .92); backdrop-filter: blur(10px); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(92vw, 980px); max-height: 82vh; border-radius: 20px; box-shadow: 0 28px 90px rgba(0,0,0,.5); }
.lightbox p { margin: 14px 0 0; color: white; text-align: center; }
.lightbox-close { position: fixed; right: 24px; top: 18px; width: 48px; height: 48px; border: 0; border-radius: 50%; background: white; color: var(--navy); font-size: 2rem; line-height: 1; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 1040px) {
  .main-nav { gap: 17px; font-size: .87rem; }
  .hero-grid { grid-template-columns: 1fr .62fr; gap: 45px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .clinic-grid, .diagnosis-grid, .faq-grid, .contact-grid { gap: 50px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1.2fr .7fr .8fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; max-width: 640px; }
}

@media (max-width: 840px) {
  :root { --container: min(100% - 28px, 680px); }
  .section { padding: 78px 0; }
  .site-header { background: rgba(255,255,255,.95); backdrop-filter: blur(14px); box-shadow: 0 8px 30px rgba(23, 69, 86, .07); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 48px; height: 48px; }
  .nav-toggle { display: block; }
  .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); }
  .main-nav { position: absolute; left: 14px; right: 14px; top: 72px; display: grid; gap: 0; padding: 10px; background: white; border-radius: 18px; box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .2s ease; }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav > a:not(.nav-cta) { padding: 12px 14px; border-radius: 10px; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .main-nav > a:not(.nav-cta):hover { background: var(--brand-soft); }
  .nav-cta { margin-top: 7px; text-align: center; }
  .hero { min-height: auto; padding: 120px 0 105px; }
  .hero-bg { width: 100%; height: 46%; top: auto; bottom: 0; clip-path: ellipse(90% 60% at 72% 100%); opacity: .28; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 650px; }
  .hero h1 { font-size: clamp(3rem, 11vw, 5rem); }
  .hero-card { justify-self: start; width: 330px; margin-top: 16px; }
  .trust-strip { margin-top: -16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article + article { border-left: 0; border-top: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .clinic-grid, .diagnosis-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .clinic-media { max-width: 560px; }
  .clinic-copy { max-width: 680px; }
  .diagnosis-image { order: -1; }
  .diagnosis-image img { height: 430px; }
  .faq-intro { position: static; }
  .map-card { min-height: 500px; }
  .final-cta-inner { grid-template-columns: 80px 1fr; }
  .final-cta-inner .btn { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 620px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 105px; }
  .hero h1 { letter-spacing: -.05em; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-points { display: grid; gap: 10px; }
  .hero-card { width: calc(100% - 18px); padding: 24px; }
  .hero-card-badge { right: -12px; bottom: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .clinic-media > img { height: 500px; }
  .clinic-stamp { right: -8px; bottom: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; gap: 12px; }
  .gallery-tall { grid-row: span 2; }
  .gallery-wide { grid-column: span 2; }
  .gallery-note { text-align: left; }
  .diagnosis-image img { height: 360px; }
  .contact-cards > a { grid-template-columns: 42px 1fr auto; }
  .contact-icon { width: 42px; height: 42px; }
  .map-footer { align-items: flex-start; flex-direction: column; }
  .final-cta-inner { grid-template-columns: 1fr; padding: 30px 24px; }
  .final-cta-inner img { width: 74px; }
  .final-cta-inner .btn { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; height: 54px; padding: 0; justify-content: center; }
  .floating-whatsapp span { display: none; }
  .lightbox { padding: 16px; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-tall, .gallery-wide { grid-column: auto; grid-row: auto; }
  .clinic-media > img { height: 440px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
}
