:root {
  --green: #00A859;
  --green-dark: #007f45;
  --ink: #172532;
  --muted: #64717f;
  --line: #e4ebee;
  --soft: #f5f8f7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 37, 50, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228,235,238,.85);
}
.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 22px;
}
.brand img { width: 160px; }
.header-meta {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 168, 89, .24);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--green-dark); box-shadow: 0 16px 32px rgba(0, 168, 89, .30); }
.btn-small { min-height: 42px; padding: 10px 16px; font-size: 14px; }
.btn.secondary { background: var(--ink); box-shadow: none; }
.link-cta { color: var(--green-dark); font-weight: 800; text-decoration: none; }

.hero {
  padding: 76px 0 58px;
  background: linear-gradient(120deg, #ffffff 0%, #f5fbf8 58%, #eef8f3 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .82fr;
  align-items: center;
  gap: 52px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { max-width: 760px; font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 21px; }
.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: #3e4c58;
  font-size: 20px;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 32px; }
.hero-media {
  margin: 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.trust-list span, .highlights span, .services article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  padding: 13px 15px;
  color: #344350;
  font-weight: 700;
}
.trust-list span::before, .highlights span::before, .procedures li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--green);
}

.section { padding: 86px 0; }
.soft { background: var(--soft); }
.split, .feature-grid, .surgery-grid, .location-card, .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.lead-copy p, .feature-grid p, .surgery-grid p, .location-card p, .footer p {
  margin: 0 0 16px;
  color: var(--muted);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.services article { min-height: 96px; display: flex; align-items: center; }
.center-cta { margin-top: 36px; text-align: center; }

.feature-image, .surgery-image { margin: 0; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.feature-image { aspect-ratio: 4 / 5; }
.feature-image img, .surgery-image img, .gallery img { width: 100%; height: 100%; object-fit: cover; }
.vaccine-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.panel ul, .procedures ul { margin: 18px 0 0; padding: 0; list-style: none; }
.panel li { padding: 8px 0; color: var(--muted); border-bottom: 1px solid var(--line); }
.panel li:last-child { border-bottom: 0; }

.surgery { background: #102536; color: var(--white); }
.surgery .eyebrow, .surgery h2 { color: var(--white); }
.surgery p { color: #d4dee4; }
.surgery-image { aspect-ratio: 1.15 / 1; }
.highlights {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.highlights span { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: var(--white); }
.procedures {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.06);
}
.procedures ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 18px;
}
.procedures li { color: #dce5ea; }

.section-head { max-width: 760px; margin-bottom: 30px; }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gallery img {
  aspect-ratio: 1 / 1.18;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(23, 37, 50, .08);
}
.location-card {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  align-items: center;
}
.location-actions { display: grid; gap: 14px; justify-items: start; }

.footer {
  padding: 44px 0 96px;
  background: #0d1b25;
  color: var(--white);
}
.footer-grid { grid-template-columns: 1.2fr 1fr 1fr .9fr; gap: 28px; }
.footer img { width: 130px; margin-bottom: 12px; }
.footer a { color: var(--white); }
.footer-actions { display: grid; gap: 14px; align-content: start; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.social-link:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.08); }
.social-link svg { margin-right: 8px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(0, 168, 89, .35);
}

@media (max-width: 900px) {
  .container { width: min(100% - 28px, 1120px); }
  .header-inner { grid-template-columns: 142px auto; min-height: 68px; }
  .brand img { width: 138px; }
  .header-meta { display: none; }
  .header-inner .btn { justify-self: end; }
  .hero { padding: 44px 0 38px; }
  .hero-grid, .split, .feature-grid, .surgery-grid, .location-card, .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; }
  h1 { font-size: clamp(38px, 12vw, 54px); }
  .hero-text { font-size: 18px; }
  .trust-list, .card-grid, .highlights, .procedures ul, .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 62px 0; }
  .feature-grid { gap: 28px; }
  .feature-image { order: 2; }
  .location-card { padding: 28px; }
}

@media (max-width: 560px) {
  .btn { width: 100%; min-height: 48px; padding: 12px 16px; }
  .header-inner .btn { width: auto; }
  .hero-actions { align-items: stretch; }
  .trust-list, .card-grid, .vaccine-grid, .highlights, .procedures ul { grid-template-columns: 1fr; }
  .gallery { gap: 10px; }
  .gallery img { border-radius: 14px; }
  .footer-socials { display: grid; }
  .footer { padding-bottom: 110px; }
  .floating-whatsapp { right: 14px; bottom: 14px; min-width: 104px; min-height: 48px; }
}
