/* =================================================================
   Cerrajero Beato Diego — Hoja de estilos
   Mobile first · Accesible · Core Web Vitals
   ================================================================= */

:root {
  /* Paleta de marca */
  --color-primary: #0B2E4A;
  --color-primary-700: #092438;
  --color-secondary: #D8A928;
  --color-secondary-600: #c2961c;
  --color-bg-soft: #EAF2F7;
  --color-text: #1F2933;
  --color-muted: #51606e;
  --color-white: #FFFFFF;
  --color-offwhite: #F8FAFC;
  --color-border: #D8E2EA;
  --color-whatsapp: #25D366;
  --color-whatsapp-600: #1ebe57;

  /* Tipografía */
  --font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Estructura */
  --maxw: 1140px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(11, 46, 74, .06);
  --shadow: 0 6px 24px rgba(11, 46, 74, .08);
  --shadow-hover: 0 12px 30px rgba(11, 46, 74, .12);

  --gutter: clamp(1.1rem, 4vw, 1.5rem);
  --section-y: clamp(3rem, 8vw, 5.5rem);
}

/* ---------- Reset ligero ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  /* espacio para barra móvil fija */
  padding-bottom: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.85rem, 5.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.6vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.35rem); }
p  { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; }

/* ---------- Accesibilidad ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 999;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { padding-block: var(--section-y); }
.section--soft { background: var(--color-bg-soft); }
.section--offwhite { background: var(--color-offwhite); }

.section-head { max-width: 60ch; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.1875rem; color: var(--color-muted); }

.icon { width: 1.25em; height: 1.25em; flex: none; fill: currentColor; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.1;
  text-decoration: none;
  padding: .9rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, transform .12s ease, box-shadow .18s ease;
  min-height: 52px;
}
.btn:active { transform: translateY(1px); }
.btn .icon { width: 1.2rem; height: 1.2rem; }

.btn--phone { background: var(--color-primary); color: #fff; }
.btn--phone:hover { background: var(--color-primary-700); }

.btn--wa { background: var(--color-whatsapp); color: #06351a; }
.btn--wa:hover { background: var(--color-whatsapp-600); }

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn--outline:hover { border-color: var(--color-primary); background: var(--color-offwhite); }

.btn--gold { background: var(--color-secondary); color: var(--color-primary-700); }
.btn--gold:hover { background: var(--color-secondary-600); }

.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
}
.site-header__logo { display: flex; align-items: center; }
.site-header__logo img { width: auto; height: 44px; }

.site-nav { display: flex; align-items: center; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
  margin: 0; padding: 0;
}
.site-nav__link {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  text-decoration: none;
  padding: .55rem .8rem;
  border-radius: 8px;
}
.site-nav__link:hover { background: var(--color-bg-soft); color: var(--color-primary); }
.site-nav__link.is-active { color: var(--color-primary); }
.site-nav__link.is-active::after {
  content: ""; display: block; height: 2px; margin-top: 3px;
  background: var(--color-secondary); border-radius: 2px;
}

.site-header__cta { display: flex; align-items: center; }
.site-header__cta .btn { padding: .65rem 1.05rem; min-height: 46px; font-size: 1rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: 10px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block; width: 22px; height: 2px;
  background: var(--color-primary); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--color-bg-soft), var(--color-white)); }
.hero__inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.25rem, 6vw, 4rem);
  align-items: center;
}
.hero__title { margin-bottom: .5rem; }
.hero__text { font-size: 1.15rem; color: var(--color-muted); max-width: 52ch; }
.hero__cta { margin: 1.5rem 0 1rem; }
.hero__badges {
  display: flex; flex-wrap: wrap; gap: .5rem 1.25rem;
  list-style: none; padding: 0; margin: 0;
  color: var(--color-primary); font-weight: 500; font-size: .98rem;
}
.hero__badges li { display: flex; align-items: center; gap: .45rem; }
.hero__badges svg { width: 1.1rem; height: 1.1rem; color: var(--color-secondary); flex: none; }
.hero__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Bloque media + texto ---------- */
.media-text { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.media-text__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.media-text__media img { width: 100%; height: 100%; object-fit: cover; }

/* listas de ventajas */
.checklist { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .75rem; }
.checklist li { display: flex; align-items: flex-start; gap: .7rem; }
.checklist svg { width: 1.4rem; height: 1.4rem; flex: none; margin-top: .1rem; color: var(--color-secondary); }
.checklist b { color: var(--color-primary); font-family: var(--font-head); }

/* ---------- Grids de tarjetas ---------- */
.grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}

/* Tarjeta de servicio (altura igual via flex) */
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
a.card { text-decoration: none; color: inherit; }
a.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: #c3d3df; }
.card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--color-bg-soft);
  border-radius: 12px;
  margin-bottom: 1.1rem;
}
.card__icon img { width: 34px; height: 34px; }
.card__title { font-size: 1.2rem; margin-bottom: .4rem; }
.card__text { color: var(--color-muted); margin: 0; font-size: 1rem; }
.card__more {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex; align-items: center; gap: .35rem;
}
.card__more::after { content: "→"; transition: transform .15s ease; }
a.card:hover .card__more::after { transform: translateX(3px); }

/* ---------- Pasos (cómo trabajamos) ---------- */
.steps { counter-reset: step; }
.step { position: relative; }
.step__num {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--color-primary); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--color-muted); margin: 0; }

/* ---------- Mapa ---------- */
.map-embed {
  border: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
@media (min-width: 860px) { .map-embed { aspect-ratio: 21 / 9; } }

/* ---------- Zonas ---------- */
.zona-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.zona-card__media { aspect-ratio: 5 / 3; background: var(--color-bg-soft); }
.zona-card__media img { width: 100%; height: 100%; object-fit: cover; }
.zona-card__body { padding: 1.1rem 1.25rem 1.3rem; }
.zona-card__body h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.zona-card__body p { color: var(--color-muted); font-size: .97rem; margin: 0; }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 0; list-style: none; }
.chips li {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: .55rem 1.1rem;
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; max-width: 820px; }
.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.08rem;
  color: var(--color-primary);
  padding: 1.1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__q::after {
  content: "+"; font-size: 1.5rem; color: var(--color-secondary); line-height: 1;
  transition: transform .2s ease;
}
.faq__item[open] .faq__q::after,
.faq__q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq__a { padding: 0 1.25rem 1.2rem; color: var(--color-muted); margin: 0; }

/* details fallback */
details.faq__item summary { list-style: none; }
details.faq__item summary::-webkit-details-marker { display: none; }

/* ---------- CTA final ---------- */
.cta-final {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(216,169,40,.18), transparent 55%),
    var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
}
.cta-final h2 { color: #fff; }
.cta-final p { color: #d6e2ec; max-width: 56ch; margin-inline: auto; }
.cta-final .btn-row { justify-content: center; margin-top: 1.75rem; }
.cta-final .btn--outline { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-final .btn--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ---------- Bloque "review" / Google ---------- */
.trust-google {
  text-align: center;
  max-width: 720px; margin-inline: auto;
}
.stars { color: var(--color-secondary); font-size: 1.6rem; letter-spacing: .15rem; }

/* ---------- Breadcrumbs ---------- */
.breadcrumb { font-size: .92rem; color: var(--color-muted); padding-top: 1.25rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.breadcrumb li::after { content: "›"; margin-left: .4rem; color: var(--color-border); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--color-muted); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Formulario ---------- */
.form { display: grid; gap: 1.1rem; max-width: 640px; }
.form__field { display: grid; gap: .35rem; }
.form__field label { font-family: var(--font-head); font-weight: 600; color: var(--color-primary); font-size: .98rem; }
.form__field .req { color: var(--color-secondary-600); }
.form input,
.form textarea {
  font: inherit;
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: .8rem .9rem;
  width: 100%;
}
.form input:focus,
.form textarea:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 0 3px rgba(11,46,74,.12); }
.form textarea { min-height: 130px; resize: vertical; }
.form__check { display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; color: var(--color-muted); }
.form__check input { width: auto; margin-top: .25rem; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__note { font-size: .9rem; color: var(--color-muted); }

.alert {
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 1.25rem;
  border: 1.5px solid;
}
.alert--error { background: #fdecec; border-color: #e9a3a3; color: #8a1f1f; }
.alert--ok { background: #e7f7ed; border-color: #9fd9b4; color: #145a2d; }

.contact-data { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.contact-data li { display: flex; gap: .8rem; align-items: flex-start; }
.contact-data svg { width: 1.5rem; height: 1.5rem; color: var(--color-secondary); flex: none; margin-top: .15rem; }
.contact-data b { display: block; color: var(--color-primary); font-family: var(--font-head); }
.contact-data a { color: var(--color-text); }

/* ---------- Placeholder de imagen ---------- */
.image-placeholder {
  background:
    repeating-linear-gradient(45deg, var(--color-bg-soft), var(--color-bg-soft) 14px, #e2edf3 14px, #e2edf3 28px);
  border: 1px dashed #b9cdda;
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
}
.image-placeholder::after {
  content: "Imagen";
  color: #8aa3b4; font-family: var(--font-head); font-weight: 600; font-size: .9rem;
}

/* ---------- Cabecera de página de servicio ---------- */
.svc-hero { background: linear-gradient(180deg, var(--color-bg-soft), var(--color-white)); }
.svc-hero__icon {
  width: 74px; height: 74px;
  display: grid; place-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}
.svc-hero__icon img { width: 46px; height: 46px; }
.svc-hero h1 { margin-bottom: .5rem; }
.svc-hero .lead { max-width: 60ch; }
.svc-hero .btn-row { margin-top: 1.5rem; }

/* ---------- Página simple (gracias / 404 / legal) ---------- */
.page-simple { padding-block: clamp(3rem, 8vw, 6rem); }
.page-simple .container { max-width: 760px; }
.page-narrow { max-width: 760px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: .4rem; }
.prose .table-wrap { overflow-x: auto; margin: 1.25rem 0; -webkit-overflow-scrolling: touch; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  min-width: 540px;
}
.prose caption { text-align: left; color: var(--color-muted); font-size: .9rem; margin-bottom: .5rem; }
.prose th, .prose td { text-align: left; padding: .7rem .8rem; border: 1px solid var(--color-border); vertical-align: top; }
.prose thead th { background: var(--color-bg-soft); color: var(--color-primary); font-family: var(--font-head); }
.prose tbody th { font-weight: 600; color: var(--color-primary); background: var(--color-offwhite); white-space: nowrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-primary); color: #cfe0ec; margin-top: var(--section-y); }
.site-footer a { color: #e7eef5; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__grid {
  display: grid; gap: 2rem;
  padding-block: clamp(2.5rem, 6vw, 3.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer__brand img { height: 58px; width: auto; margin-bottom: 1rem; }
.nap { font-style: normal; line-height: 1.8; }
.nap strong { color: #fff; font-family: var(--font-head); }
.site-footer__maps { display: inline-block; margin-top: .9rem; font-weight: 600; }
.site-footer__title { color: #fff; font-size: 1.05rem; margin-bottom: .9rem; }
.site-footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer__list--zonas { grid-template-columns: 1fr 1fr; gap: .55rem 1rem; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); }
.site-footer__bottom-inner {
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  justify-content: space-between; align-items: center;
  padding-block: 1.1rem; font-size: .9rem;
}
.site-footer__legal-links { display: flex; flex-wrap: wrap; gap: 1.1rem; margin: 0; }
.site-footer__copy { margin: 0; color: #9fb6c8; }

/* ---------- Mapa con consentimiento ---------- */
.map-consent {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  overflow: hidden;
}
@media (min-width: 860px) { .map-consent { aspect-ratio: 21 / 9; } }
.map-consent[data-loaded] { box-shadow: var(--shadow); padding: 0; border: 0; }
.map-consent__inner { text-align: center; max-width: 42ch; padding: 1.5rem; color: var(--color-muted); }
.map-consent__icon { width: 2.2rem; height: 2.2rem; color: var(--color-primary); margin-bottom: .5rem; }
.map-consent__inner p { margin: 0 0 1rem; }
.map-consent__inner .btn { min-height: 46px; padding: .7rem 1.2rem; }
.map-consent__note { font-size: .88rem; margin: 1rem 0 0 !important; }
.map-embed { width: 100%; height: 100%; }

/* ---------- Banner de cookies ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 28px rgba(11,46,74,.16);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 1rem var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  justify-content: space-between;
}
.cookie-banner__text { margin: 0; font-size: .95rem; color: var(--color-text); flex: 1 1 320px; }
.cookie-banner__actions { display: flex; gap: .75rem; flex: 0 0 auto; }
.cookie-banner__actions .btn { min-height: 46px; padding: .65rem 1.3rem; }
@media (max-width: 879px) {
  /* situar el banner por encima de la barra fija de llamada */
  .cookie-banner { bottom: 70px; }
  .cookie-banner__actions { flex: 1 1 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}

/* ---------- Barra móvil fija ---------- */
.cta-mobile { display: none; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; }
  .media-text { grid-template-columns: 1fr 1fr; }
  .media-text--reverse .media-text__media { order: 2; }
}

/* --- Navegación móvil --- */
@media (max-width: 879px) {
  .nav-toggle { display: flex; }
  .site-header__cta { display: none; }
  .site-nav__list {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    padding: .5rem var(--gutter) 1rem;
    transform: translateY(-130%);
    transition: transform .25s ease;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .site-nav__list.is-open { transform: translateY(0); }
  .site-nav__link {
    display: block;
    padding: .95rem .5rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.1rem;
  }
  .site-nav__link.is-active::after { display: none; }

  /* Barra inferior fija */
  body { padding-bottom: 70px; }
  .cta-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 16px rgba(11,46,74,.1);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .cta-mobile__btn {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    min-height: 60px;
    font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
    text-decoration: none;
  }
  .cta-mobile__btn .icon { width: 1.3rem; height: 1.3rem; }
  .cta-mobile__btn--call { background: var(--color-primary); color: #fff; }
  .cta-mobile__btn--wa { background: var(--color-whatsapp); color: #06351a; }
}

@media (max-width: 420px) {
  .btn-row .btn { width: 100%; }
}
