:root {
  --azul-900: #07365c;
  --azul-800: #0b4777;
  --azul-700: #125a91;
  --azul-600: #1a679c;
  --rojo-700: #d90816;
  --rojo-600: #e5212d;
  --tinta: #153a5b;
  --texto: #31536f;
  --muted: #6e8498;
  --blanco: #ffffff;
  --fondo: #f7f9fc;
  --fondo-2: #eef4f9;
  --linea: #dbe6ef;
  --sombra: 0 22px 60px rgba(7, 54, 92, .14);
  --sombra-suave: 0 14px 36px rgba(7, 54, 92, .10);
  --radio-xl: 30px;
  --radio-lg: 22px;
  --radio-md: 16px;
  --container: 1160px;
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(229,33,45,.55); outline-offset: 4px; }

.container { width: min(var(--container), calc(100% - 42px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--azul-900);
  color: white;
  padding: .75rem 1rem;
  border-radius: 999px;
  box-shadow: var(--sombra);
}
.skip-link:focus { transform: translateY(0); }
.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(219,230,239,.82);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(7,54,92,.08); background: rgba(255,255,255,.98); }
.nav-wrapper {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 242px;
  min-width: 188px;
}
.brand img { width: 100%; height: auto; object-fit: contain; }
.brand-fallback {
  display: none;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--azul-900);
  font-weight: 900;
  line-height: 1;
}
.brand-fallback .mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rojo-700);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.brand-fallback small { display: block; font-size: .66rem; letter-spacing: .18em; font-weight: 700; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  position: relative;
  color: var(--azul-900);
  font-size: .96rem;
  font-weight: 850;
  letter-spacing: .01em;
  padding: 12px 18px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.main-nav a:hover { background: var(--fondo-2); transform: translateY(-1px); }
.main-nav a.active { color: var(--rojo-700); background: rgba(217,8,22,.08); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 3px;
  border-radius: 999px;
  background: var(--rojo-700);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--fondo-2);
}
.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--azul-900);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero, .page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--azul-900);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
}
.home-hero {
  background-image:
    radial-gradient(circle at 72% 35%, rgba(255,255,255,.34), transparent 25%),
    linear-gradient(90deg, rgba(217,8,22,.76) 0%, rgba(217,8,22,.49) 37%, rgba(7,54,92,.38) 100%),
    image-set(url("./assets/hero-home.webp") type("image/webp"), url("./assets/hero-home.jpg") type("image/jpeg"));
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.18));
  z-index: -1;
}
.hero-content { max-width: 720px; color: var(--blanco); padding: 88px 0; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .16em;
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 50px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  opacity: .85;
}
h1, h2, h3 { margin: 0; color: var(--azul-900); line-height: 1.06; letter-spacing: -.035em; }
h1 { color: white; font-size: clamp(2.55rem, 6vw, 5.7rem); font-weight: 950; }
.hero-content p {
  max-width: 650px;
  margin: 24px 0 30px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.94);
}
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: .85rem 1.22rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 900;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sombra-suave); }
.btn-primary { color: white; background: var(--azul-800); }
.btn-primary:hover { background: var(--azul-900); }
.btn-red { color: white; background: var(--rojo-700); }
.btn-red:hover { background: #bb0712; }
.btn-light { color: var(--azul-900); background: white; }
.btn-outline { color: white; border-color: rgba(255,255,255,.72); background: rgba(255,255,255,.08); }
.btn-outline:hover { background: rgba(255,255,255,.18); }
.btn-small { min-height: 40px; padding: .68rem 1.05rem; font-size: .9rem; }

.hero-panel {
  position: absolute;
  right: max(22px, calc((100vw - var(--container)) / 2));
  bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(540px, 48vw);
  z-index: 3;
}
.hero-metric {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.14);
  color: white;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(0,0,0,.10);
}
.hero-metric strong { display: block; font-size: 1.25rem; line-height: 1.1; }
.hero-metric span { display: block; margin-top: 5px; font-size: .82rem; color: rgba(255,255,255,.88); }

.section { padding: 92px 0; }
.section-sm { padding: 62px 0; }
.section-soft { background: var(--fondo); }
.section-blue { background: linear-gradient(135deg, var(--azul-900), var(--azul-700)); color: white; }
.section-blue h2, .section-blue h3, .section-blue p { color: white; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 42px;
}
.section-title { text-align: center; max-width: 780px; margin: 0 auto 42px; }
.section-title.left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--rojo-700);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .76rem;
  font-weight: 950;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}
.section-title h2, .section-head h2 { font-size: clamp(2rem, 4vw, 3.45rem); font-weight: 950; }
.section-title p, .section-head p { margin: 16px 0 0; color: var(--muted); font-size: 1.08rem; }
.intro-card {
  position: relative;
  margin-top: -44px;
  z-index: 10;
  border-radius: var(--radio-xl);
  background: white;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--sombra);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: center;
}
.intro-card p { margin: 0; color: var(--tinta); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.trust-list { display: grid; gap: 12px; }
.trust-item { display: flex; align-items: start; gap: 10px; color: var(--tinta); font-weight: 750; }
.trust-item svg { flex: 0 0 22px; color: var(--rojo-700); margin-top: 2px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.service-card {
  overflow: hidden;
  border-radius: var(--radio-xl);
  background: white;
  border: 1px solid rgba(219,230,239,.85);
  box-shadow: var(--sombra-suave);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sombra); border-color: rgba(217,8,22,.18); }
.service-media { position: relative; min-height: 260px; overflow: hidden; background: var(--fondo-2); }
.service-media img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-media img { transform: scale(1.05); }
.service-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255,255,255,.94);
  color: var(--azul-900);
  padding: .55rem .78rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(0,0,0,.14);
}
.service-body { padding: 28px; }
.service-body h3 { font-size: clamp(1.55rem, 2.7vw, 2.25rem); font-weight: 950; }
.service-body p { margin: 14px 0 22px; color: var(--muted); }
.service-list { display: grid; gap: 8px; margin: 0 0 24px; padding: 0; list-style: none; }
.service-list li { display: flex; gap: 9px; align-items: start; color: var(--tinta); }
.service-list li::before { content: ""; width: 8px; height: 8px; flex: 0 0 8px; margin-top: .55em; border-radius: 50%; background: var(--rojo-700); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: pasos;
}
.process-card {
  position: relative;
  background: white;
  border: 1px solid rgba(219,230,239,.85);
  border-radius: var(--radio-lg);
  padding: 28px 22px;
  box-shadow: 0 12px 30px rgba(7,54,92,.07);
}
.process-card::before {
  counter-increment: pasos;
  content: "0" counter(pasos);
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 15px;
  background: rgba(217,8,22,.10);
  color: var(--rojo-700);
  font-weight: 950;
}
.process-card h3 { font-size: 1.08rem; font-weight: 950; letter-spacing: -.02em; }
.process-card p { margin: 10px 0 0; color: var(--muted); font-size: .98rem; }

.personalized {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background-color: var(--azul-900);
  background-image:
    linear-gradient(90deg, rgba(7,54,92,.86), rgba(7,54,92,.38)),
    image-set(url("./assets/personalized.webp") type("image/webp"), url("./assets/personalized.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
}
.personalized .line { width: min(480px, 78vw); height: 2px; margin: 0 auto 18px; background: rgba(255,255,255,.72); }
.personalized h2 { color: white; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 450; letter-spacing: -.06em; }
.personalized strong { font-weight: 950; }

.contact-form {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 7px; color: var(--azul-900); font-size: .9rem; font-weight: 800; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--linea);
  background: #f4f7fa;
  color: var(--azul-900);
  border-radius: 14px;
  padding: 14px 15px;
  outline: none;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 142px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--azul-900) 50%), linear-gradient(135deg, var(--azul-900) 50%, transparent 50%); background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px); background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.field input::placeholder, .field textarea::placeholder { color: #66849e; opacity: .95; }
.field input:focus, .field textarea:focus, .field select:focus {
  background: white;
  border-color: rgba(18,90,145,.48);
  box-shadow: 0 0 0 4px rgba(18,90,145,.12);
}
.honeypot { display: none !important; }
.form-actions { display: flex; justify-content: center; padding-top: 4px; }
.form-note { min-height: 24px; margin: 0; text-align: center; color: var(--azul-900); font-weight: 800; }
.form-note.error { color: var(--rojo-700); }
.form-note.success { color: #0f7a43; }

.page-hero {
  min-height: 300px;
  display: grid;
  align-items: end;
  padding: 78px 0 62px;
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 5rem); }
.page-hero p { max-width: 660px; margin: 16px 0 0; color: rgba(255,255,255,.92); font-size: 1.12rem; }
.about-hero {
  background-image:
    linear-gradient(90deg, rgba(217,8,22,.76), rgba(217,8,22,.46) 42%, rgba(7,54,92,.24)),
    image-set(url("./assets/about-hero.webp") type("image/webp"), url("./assets/about-hero.jpg") type("image/jpeg"));
  background-position: center 48%;
}
.contact-hero {
  background-image:
    linear-gradient(90deg, rgba(217,8,22,.68), rgba(217,8,22,.38) 45%, rgba(7,54,92,.20)),
    image-set(url("./assets/contact-hero.webp") type("image/webp"), url("./assets/contact-hero.jpg") type("image/jpeg"));
  background-position: center 44%;
}

.about-logo { padding: 66px 0; display: flex; justify-content: center; }
.about-logo img { width: min(520px, 82vw); height: auto; }
.about-copy { max-width: 940px; margin: 0 auto; text-align: center; }
.about-copy p { margin: 0 0 22px; font-size: clamp(1.04rem, 1.6vw, 1.22rem); }
.mv-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mv-stack { display: grid; gap: 24px; }
.mv-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: white;
  border: 1px solid rgba(219,230,239,.85);
  border-radius: var(--radio-lg);
  box-shadow: var(--sombra-suave);
}
.mv-card .icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: rgba(18,90,145,.10);
  color: var(--azul-800);
  display: grid;
  place-items: center;
}
.mv-card.vision .icon { background: rgba(217,8,22,.10); color: var(--rojo-700); }
.mv-card .icon svg { width: 44px; height: 44px; }
.mv-card h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 950; }
.mv-card.vision h2 { color: var(--rojo-700); }
.mv-card p { margin: 8px 0 0; color: var(--muted); }
.round-combo { display: grid; gap: 22px; justify-items: center; }
.round-image {
  position: relative;
  width: min(380px, 84vw);
  aspect-ratio: 1;
  padding: 13px;
  border-radius: 50%;
  background: conic-gradient(from 18deg, var(--azul-800), var(--azul-800) 66%, transparent 66% 79%, var(--rojo-700) 79% 100%);
  box-shadow: var(--sombra);
}
.round-image.red { background: conic-gradient(from 18deg, var(--rojo-700), var(--rojo-700) 64%, transparent 64% 78%, var(--azul-800) 78% 100%); }
.round-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.values-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.value-card {
  background: white;
  border: 1px solid rgba(219,230,239,.85);
  border-radius: 20px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(7,54,92,.07);
}
.value-card h3 { font-size: 1rem; font-weight: 950; letter-spacing: -.02em; }
.value-card p { margin: 10px 0 0; font-size: .93rem; color: var(--muted); line-height: 1.45; }

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid rgba(219,230,239,.85);
  border-radius: var(--radio-lg);
  padding: 30px;
  display: grid;
  place-items: center;
  text-align: center;
  background: white;
  box-shadow: var(--sombra-suave);
}
.info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--rojo-700), var(--azul-700));
}
.info-card svg { width: 70px; height: 70px; color: var(--rojo-700); margin: 0 auto 16px; }
.info-card p { margin: 0; color: var(--tinta); font-size: 1.08rem; line-height: 1.35; }
.info-card a:hover { color: var(--rojo-700); text-decoration: underline; }
.map-wrap { overflow: hidden; border-radius: var(--radio-xl); border: 1px solid var(--linea); box-shadow: var(--sombra); background: var(--fondo); }
.map-wrap iframe, .map-wrap img { width: 100%; height: 430px; border: 0; object-fit: cover; }
.map-note { margin: 12px 0 0; color: var(--muted); text-align: center; font-size: .95rem; }

.resources-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.resource-card, .faq-item {
  border: 1px solid rgba(219,230,239,.85);
  border-radius: var(--radio-lg);
  background: white;
  padding: 28px;
  box-shadow: var(--sombra-suave);
}
.resource-card h3 { font-size: 1.35rem; font-weight: 950; }
.resource-card p { margin: 12px 0 20px; color: var(--muted); }
.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 14px; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--azul-900);
  text-align: left;
  font-weight: 950;
}
.faq-question .symbol { width: 34px; height: 34px; border-radius: 50%; flex: 0 0 34px; display: grid; place-items: center; background: var(--fondo-2); color: var(--rojo-700); }
.faq-answer { display: none; margin: 14px 0 0; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.cta-section { background: linear-gradient(135deg, var(--azul-900), var(--azul-700)); color: white; text-align: center; }
.cta-section h2 { color: white; font-size: clamp(2.1rem, 4vw, 3.5rem); font-weight: 950; }
.cta-section p { max-width: 720px; margin: 16px auto 28px; color: rgba(255,255,255,.88); }

.site-footer {
  color: white;
  background: linear-gradient(135deg, #07365c, #125a91);
  padding: 72px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .9fr; gap: 46px; align-items: start; }
.footer-brand img { width: 245px; height: auto; margin-bottom: 18px; }
.footer-brand .brand-fallback { color: white; margin-bottom: 18px; }
.footer-brand p { max-width: 300px; margin: 0; color: rgba(255,255,255,.88); font-size: 1.06rem; }
.footer-title { color: white; font-weight: 950; margin-bottom: 14px; letter-spacing: -.01em; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.88); }
.footer-links a:hover { color: white; text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.76);
  font-size: .9rem;
}
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: white;
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
  transition: transform .18s ease;
}
.whatsapp:hover { transform: translateY(-3px); }
.whatsapp svg { width: 30px; height: 30px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1050px) {
  .hero-panel { position: static; width: min(var(--container), calc(100% - 42px)); margin: -110px auto 42px; grid-template-columns: repeat(3, 1fr); }
  .process-grid, .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head, .intro-card, .mv-layout { grid-template-columns: 1fr; }
  .round-combo { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
}

@media (max-width: 860px) {
  :root { --header-h: 76px; }
  .brand { width: 208px; }
  .nav-toggle { display: inline-block; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: grid;
    align-items: start;
    gap: 6px;
    padding: 20px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--linea);
    box-shadow: var(--sombra);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  body.nav-open .main-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { width: 100%; padding: 14px 16px; }
  .hero { min-height: 620px; }
  .hero-content { padding: 70px 0 145px; }
  .services-grid, .contact-info, .resources-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand { width: 182px; }
  .hero { min-height: 600px; }
  h1 { letter-spacing: -.055em; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-panel { grid-template-columns: 1fr; margin-top: -98px; width: min(100% - 28px, var(--container)); }
  .section { padding: 68px 0; }
  .section-sm { padding: 46px 0; }
  .intro-card { margin-top: -32px; }
  .process-grid, .values-grid, .round-combo { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mv-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .map-wrap iframe, .map-wrap img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .whatsapp { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}
