:root {
  --blue-900: #053e89;
  --blue-700: #075fbf;
  --blue-500: #0b7ed8;
  --blue-100: #e8f3fb;
  --ink: #102033;
  --muted: #56677c;
  --line: #d7e3ef;
  --surface: #ffffff;
  --soft: #f4f8fb;
  --shadow: 0 16px 36px rgba(15, 57, 99, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 10px clamp(24px, 6vw, 120px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(215, 227, 239, 0.9);
  box-shadow: 0 8px 28px rgba(16, 32, 51, 0.06);
  backdrop-filter: blur(12px);
}

.site-header button {
  font: inherit;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: min(190px, 24vw);
  height: auto;
  display: block;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 42px;
  padding: 0;
  background: var(--blue-700);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.main-nav {
  min-height: 48px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #1f3653;
  font-size: 15px;
  background: #f4f8fb;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.main-nav a,
.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  color: inherit;
  font: inherit;
  background: transparent;
  border: 0;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-button:hover,
.nav-button:focus-visible {
  color: var(--blue-700);
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 57, 99, 0.1);
}

.main-nav svg,
.nav-button svg,
.header-cta svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
}

.header-cta,
.portal-form button,
.contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 9px;
  padding: 0 24px;
  color: #fff;
  font-weight: 700;
  background: var(--blue-700);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.results-menu {
  position: relative;
  justify-self: end;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-form {
  display: grid;
  gap: 14px;
}

.portal-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 700;
}

.portal-form h2 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.portal-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.portal-form input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.24);
}

.results-panel {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  z-index: 30;
  width: min(320px, calc(100vw - 36px));
  padding: 24px;
  text-align: left;
  background: rgba(5, 62, 137, 0.94);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 18px 36px rgba(6, 27, 50, 0.32);
  backdrop-filter: blur(10px);
  transform-origin: top right;
  animation: panelDrop 0.18s ease-out;
}

.results-panel[hidden] {
  display: none;
}

.results-panel .portal-form button {
  width: 100%;
  margin-top: 4px;
  color: var(--blue-700);
  background: #fff;
}

.results-menu:has(.results-panel:not([hidden])) .header-cta {
  border-radius: 8px 8px 0 0;
}

@keyframes panelDrop {
  from {
    opacity: 0;
    transform: translateY(-6px) scaleY(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

.results-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.results-close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-screen {
  min-height: calc(100svh - 92px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
}

.hero {
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 72px 18px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 62, 137, 0.92), rgba(11, 126, 216, 0.82)),
    url("assets/hero-laboratorio.png") center / cover;
}

.hero-content {
  max-width: 920px;
  text-shadow: 0 2px 14px rgba(0, 28, 64, 0.34);
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.02;
}

.hero p:not(.eyebrow) {
  margin: 22px auto 0;
  max-width: 720px;
  color: #fff;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.35;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 32px;
  padding: 0 34px;
  color: var(--blue-700);
  font-weight: 800;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(6, 27, 50, 0.2);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 230px));
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 12px clamp(18px, 6vw, 128px);
  color: #fff;
  text-align: center;
  background: var(--blue-900);
}

.seal-card {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(6, 27, 50, 0.14);
}

.seal-logo {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 42px;
  height: auto;
  object-fit: contain;
}

.metrics article {
  display: grid;
  grid-template-columns: auto minmax(0, auto);
  grid-template-areas:
    "icon value"
    "icon label";
  justify-content: center;
  align-items: center;
  column-gap: 12px;
  row-gap: 2px;
  min-height: 90px;
  padding: 12px 10px;
  text-align: left;
  background: #fff;
}

.metric-icon {
  grid-area: icon;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 8px;
}

.metric-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.metrics strong {
  grid-area: value;
  color: var(--blue-700);
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1;
}

.metrics article > span:not(.metric-icon) {
  grid-area: label;
  color: var(--muted);
  font-size: 12px;
}

.metrics .metric-icon {
  color: var(--blue-700);
}

.section {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 6vw, 128px);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  background: var(--soft);
}

.features article,
.exam-grid article {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--blue-700);
  font-weight: 800;
  background: var(--blue-100);
  border-radius: 8px;
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0 0 18px;
  color: var(--blue-700);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

h3 {
  margin: 0 0 14px;
  font-size: 19px;
}

p {
  color: #20324a;
  font-size: 16px;
  line-height: 1.65;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.home-collection {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.home-collection {
  background: #fff;
}

.collection-copy {
  max-width: 760px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #20324a;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--blue-700);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  color: #fff;
  font-weight: 800;
  background: var(--blue-700);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.service-panel {
  display: grid;
  gap: 14px;
  padding: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-500));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-panel strong {
  margin-bottom: 6px;
  font-size: 28px;
}

.service-panel span {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.units {
  background: var(--soft);
}

.kids-care {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 6vw, 128px);
  background:
    linear-gradient(135deg, rgba(255, 247, 214, 0.92), rgba(232, 243, 251, 0.94)),
    linear-gradient(90deg, #fff3a6, #dff7ff);
}

.kids-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.kids-copy {
  max-width: 760px;
}

.kids-copy .eyebrow {
  color: #e05a24;
}

.kids-copy h2 {
  color: #075fbf;
}

.kids-copy p {
  max-width: 760px;
}

.kids-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.section-cta.secondary {
  color: var(--blue-700);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 57, 99, 0.12);
}

.kids-visual {
  position: relative;
  min-height: 300px;
  padding: 32px;
  color: #fff;
  background: linear-gradient(135deg, #0b7ed8, #084b9f);
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.kids-visual::before,
.kids-visual::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  transform: rotate(-10deg);
}

.kids-visual::before {
  right: -24px;
  top: 28px;
  width: 150px;
  height: 78px;
  background: #ffd447;
}

.kids-visual::after {
  left: -18px;
  bottom: 26px;
  width: 120px;
  height: 66px;
  background: #ff7a59;
}

.kids-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 20px;
  color: #075fbf;
  font-size: 26px;
  font-weight: 900;
  background: #fff;
  border-radius: 8px;
}

.kids-smile {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 36px;
  font-size: clamp(72px, 9vw, 118px);
  font-weight: 900;
  line-height: 0.9;
}

.kids-note {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 26px;
  padding: 12px 16px;
  color: #102033;
  font-weight: 800;
  background: #fff3a6;
  border-radius: 8px;
}

.kids-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.kids-grid article {
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(7, 95, 191, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(15, 57, 99, 0.1);
}

.kids-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 900;
  background: #ff7a59;
  border-radius: 8px;
}

.kids-grid article:nth-child(2) span {
  background: #0b7ed8;
}

.kids-grid article:nth-child(3) span {
  background: #18a64a;
}

.kids-checkup-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px 26px;
  background: #fff;
  border-left: 8px solid #ffd447;
  border-radius: 8px;
}

.kids-checkup-line strong {
  color: var(--blue-700);
  font-size: 22px;
}

.kids-checkup-line p {
  margin: 0;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.units-grid article {
  min-height: 210px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.units-grid strong {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 24px;
  background: var(--blue-700);
  border-radius: 8px;
}

.about-copy {
  max-width: 740px;
}

.about-panel {
  display: grid;
  gap: 14px;
  padding: 36px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-500));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-panel strong {
  font-size: 28px;
}

.exams {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.exam-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.exam-grid article {
  box-shadow: none;
}

.exam-grid p {
  margin-bottom: 0;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  justify-items: center;
  padding: 72px clamp(18px, 6vw, 128px);
  color: #fff;
  text-align: center;
  background: var(--blue-700);
}

.contact-band h2,
.contact-band p,
.contact-band .eyebrow {
  color: #fff;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-actions a {
  color: var(--blue-700);
  background: #fff;
}

.contact-actions a + a {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: 50px clamp(18px, 6vw, 128px) 30px;
  color: #c8d6e7;
  background: #101a28;
}

.site-footer img {
  width: 132px;
  height: auto;
  margin-right: 0;
  vertical-align: middle;
  border-radius: 8px;
}

.site-footer strong {
  color: #fff;
  font-size: 22px;
}

.site-footer p,
.site-footer address {
  color: #c8d6e7;
  font-style: normal;
}

.footer-brand span {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 290px;
  margin: 0;
}

.footer-links,
.footer-contact,
.footer-hours {
  display: grid;
  gap: 12px;
}

.footer-links strong,
.footer-contact strong,
.footer-hours strong {
  margin-bottom: 10px;
  color: #fff;
}

.footer-links a,
.footer-contact span,
.footer-hours span,
.footer-bottom a {
  color: #c8d6e7;
  font-size: 14px;
}

.footer-hours span {
  display: grid;
  gap: 3px;
}

.footer-hours b {
  color: #fff;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(200, 214, 231, 0.18);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #18a64a;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(6, 27, 50, 0.24);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 27, 50, 0.58);
}

.modal[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(980px, 100%);
  max-height: min(82svh, 820px);
  overflow-y: auto;
  padding: clamp(28px, 5vw, 46px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(6, 27, 50, 0.36);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--blue-700);
  background: var(--blue-100);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.modal-close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.modal-intro {
  margin-top: 0;
}

.checkups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.checkups-grid article {
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkups-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #20324a;
  line-height: 1.45;
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 14px;
    min-height: auto;
    padding: 12px 18px;
  }

  .brand img {
    width: min(176px, 34vw);
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: start;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    display: none;
    justify-content: flex-start;
    width: 100%;
    gap: 4px;
    overflow-x: auto;
    border-radius: 8px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .nav-button {
    flex: 0 0 auto;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  .results-menu {
    justify-self: end;
  }

  .about,
  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .features,
  .exam-grid,
  .units-grid,
  .checkups-grid,
  .kids-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-strip,
  .home-collection,
  .kids-hero {
    grid-template-columns: 1fr;
  }

  .brand-strip {
    gap: 10px;
  }

  .seal-logo {
    max-width: 230px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .contact-band,
  .contact-actions {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .hero-screen {
    min-height: calc(100svh - 154px);
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 151px;
  }

  .brand img {
    width: min(174px, 56vw);
    height: auto;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    column-gap: 14px;
    padding: 10px 14px 12px;
  }

  .menu-toggle {
    justify-self: center;
  }

  .main-nav a,
  .nav-button {
    padding: 0 12px;
  }

  .results-menu {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .header-cta {
    width: 100%;
  }

  .results-panel {
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    width: auto;
    max-height: calc(100svh - 190px);
    overflow-y: auto;
    padding: 20px;
    border-radius: 0 0 8px 8px;
  }

  .hero-screen {
    min-height: calc(100svh - 186px);
  }

  .brand-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 10px 12px;
  }

  .seal-card {
    min-height: 50px;
    padding: 7px 8px;
  }

  .seal-logo {
    width: 100%;
    max-width: 104px;
    max-height: 34px;
  }

  .features,
  .exam-grid,
  .units-grid,
  .checkups-grid,
  .kids-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics article:last-child {
    grid-column: 1 / -1;
    width: min(50%, 196px);
    justify-self: center;
  }

  .metrics article {
    justify-content: start;
    padding: 14px 18px;
  }

  .metrics strong {
    font-size: 24px;
  }

  .metrics article > span:not(.metric-icon) {
    font-size: 11px;
    line-height: 1.15;
  }

  .hero {
    padding: 48px 18px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 50px);
  }

  .hero p:not(.eyebrow) {
    font-size: clamp(17px, 5vw, 21px);
  }

  .hero .eyebrow {
    font-size: 12px;
  }

  .section {
    padding: 58px 18px;
  }

  .kids-care {
    padding: 58px 18px;
  }

  .kids-visual {
    min-height: 250px;
    padding: 26px;
  }

  .kids-actions {
    display: grid;
  }

  .kids-checkup-line {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .features article,
  .exam-grid article {
    padding: 26px;
  }

  .contact-actions a,
  .portal-form button,
  .hero-whatsapp,
  .section-cta {
    width: 100%;
  }

  .site-footer {
    gap: 20px;
  }

  .copyright {
    white-space: normal;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}
