/* ============================================================
   MAOC CERRAJEROS — Hoja de estilos principal
   Mobile-first · Sin frameworks
   ============================================================ */

/* ---------------------------------------------------------------
   1. VARIABLES CSS
   --------------------------------------------------------------- */
:root {
  --c-primary:       #0a2540;
  --c-primary-light: #1a3f6f;
  --c-accent:        #e85d04;
  --c-accent-dark:   #c44b00;
  --c-gold:          #d4a017;
  --c-bg:            #f8f9fb;
  --c-white:         #ffffff;
  --c-text:          #1f2937;
  --c-muted:         #6b7280;
  --c-border:        #e5e7eb;
  --c-success:       #059669;
  --c-error:         #dc2626;
  --c-hero-bg:       #0a2540;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 2px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.15);

  --font:      -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;

  --max-w: 1200px;
  --header-h: 100px;
  --sticky-h: 64px;
}

/* ---------------------------------------------------------------
   2. RESET & BASE
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  padding-bottom: var(--sticky-h); /* espacio para sticky CTA */
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--c-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-accent-dark); }
a:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; border-radius: 2px; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  color: var(--c-primary);
  font-weight: 700;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

address { font-style: normal; }

/* ---------------------------------------------------------------
   3. LAYOUT
   --------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 768px)  { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.section { padding-block: 3.5rem; }
.section--alt { background: var(--c-white); }
.section__header { text-align: center; margin-bottom: 2.5rem; }
.section__header p { color: var(--c-muted); max-width: 600px; margin-inline: auto; margin-top: .5rem; }

/* ---------------------------------------------------------------
   4. BOTONES
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, transform .1s, box-shadow .2s;
  text-decoration: none;
  line-height: 1;
}
.btn:active { transform: scale(.98); }

.btn--primary {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
}
.btn--primary:hover {
  background: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
  color: var(--c-white);
  box-shadow: 0 4px 16px rgba(232,93,4,.35);
}

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

.btn--lg { padding: .9rem 2rem; font-size: 1.1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---------------------------------------------------------------
   5. CABECERA
   --------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-primary);
  height: var(--header-h);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1rem;
}

.logo { flex-shrink: 0; }
.logo img { height: 75px; width: auto; max-width: 200px; }

.header-phone {
  display: none;
  align-items: center;
  gap: .4rem;
  color: var(--c-gold);
  font-weight: 700;
  font-size: 1rem;
  margin-left: auto;
  transition: color .2s;
}
.header-phone:hover { color: var(--c-white); }
.header-phone svg { flex-shrink: 0; }

/* ---------------------------------------------------------------
   6. NAVEGACIÓN + HAMBURGUESA
   --------------------------------------------------------------- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.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;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--c-primary);
  display: none;
  z-index: 999;
  box-shadow: 0 8px 16px rgba(0,0,0,.3);
}
.main-nav.is-open { display: block; }
.main-nav ul { padding: .5rem 0 1rem; }
.main-nav li { }
.main-nav a {
  display: block;
  padding: .75rem 1.25rem;
  color: var(--c-white);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s, color .2s;
}
.main-nav a:hover { background: var(--c-primary-light); color: var(--c-gold); }
.main-nav .nav-cta {
  margin: .75rem 1.25rem 0;
  background: var(--c-accent);
  border-radius: var(--radius);
  text-align: center;
  border-bottom: none;
}
.main-nav .nav-cta:hover { background: var(--c-accent-dark); }

/* ---------------------------------------------------------------
   7. BREADCRUMBS
   --------------------------------------------------------------- */
.breadcrumbs {
  background: var(--c-primary);
  border-top: 1px solid rgba(255,255,255,.08);
}
.breadcrumbs .container { padding-block: .5rem; }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  align-items: center;
  list-style: none;
  font-size: .82rem;
}
.breadcrumbs li { color: rgba(255,255,255,.55); }
.breadcrumbs li + li::before { content: '/'; margin-right: .25rem; opacity: .4; }
.breadcrumbs a { color: rgba(255,255,255,.75); }
.breadcrumbs a:hover { color: var(--c-white); }
.breadcrumbs li:last-child span { color: var(--c-gold); }

/* ---------------------------------------------------------------
   8. HERO
   --------------------------------------------------------------- */
.hero {
  background: var(--c-hero-bg);
  color: var(--c-white);
  padding-block: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,93,4,.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(232,93,4,.2);
  border: 1px solid rgba(232,93,4,.4);
  color: #ffb285;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem .75rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}

.hero h1 { color: var(--c-white); margin-bottom: 1rem; }

.hero__intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.hero__bullets {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: rgba(255,255,255,.88);
  font-size: .97rem;
}
.hero__bullets li::before {
  content: '✓';
  color: var(--c-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05em;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.hero__badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  max-width: 320px;
}
.hero__badge-title {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}
.hero__badge-phone {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: .02em;
}
.hero__badge-phone a { color: inherit; }
.hero__badge-phone a:hover { color: var(--c-white); }
.hero__badge-note { font-size: .84rem; color: rgba(255,255,255,.65); }

/* ---------------------------------------------------------------
   9. SERVICIOS
   --------------------------------------------------------------- */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--c-accent);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity .2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,93,4,.25);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  display: block;
  line-height: 1;
}
.service-card h3 { margin-bottom: .4rem; font-size: 1.1rem; }
.service-card p { color: var(--c-muted); font-size: .93rem; margin: 0; }

/* ---------------------------------------------------------------
   10. POR QUÉ ELEGIRNOS
   --------------------------------------------------------------- */
.trust-grid {
  display: grid;
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}

.trust-item__icon {
  width: 44px;
  height: 44px;
  background: var(--c-primary);
  color: var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.trust-item__text h4 { margin-bottom: .25rem; font-size: 1rem; }
.trust-item__text p { color: var(--c-muted); font-size: .9rem; margin: 0; }

/* ---------------------------------------------------------------
   11. ZONAS DE SERVICIO
   --------------------------------------------------------------- */
.zones-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.zone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  font-weight: 600;
  color: var(--c-primary);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  gap: .5rem;
}
.zone-card:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
  transform: translateY(-2px);
}
.zone-card__icon { font-size: 1.75rem; }
.zone-card__name { font-size: 1rem; }
.zone-card__note { font-size: .78rem; color: var(--c-muted); font-weight: 400; }
.zone-card:hover .zone-card__note { color: rgba(255,255,255,.7); }

/* ---------------------------------------------------------------
   12. FAQ
   --------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .97rem;
  font-weight: 600;
  color: var(--c-primary);
  transition: background .2s;
}
.faq-question:hover { background: var(--c-bg); }
.faq-question[aria-expanded="true"] { background: var(--c-primary); color: var(--c-white); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: transform .3s;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  padding: 1rem 1.25rem;
  font-size: .94rem;
  color: var(--c-muted);
  border-top: 1px solid var(--c-border);
}
.faq-answer[hidden] { display: none; }

/* ---------------------------------------------------------------
   13. FORMULARIO DE CONTACTO
   --------------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-info { }
.contact-info h3 { margin-bottom: 1rem; }
.contact-info address p {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .75rem;
  color: var(--c-muted);
}
.contact-info address p svg { flex-shrink: 0; margin-top: .15em; }
.contact-info address a { color: var(--c-primary); font-weight: 600; }
.contact-info address a:hover { color: var(--c-accent); }

.contact-cta-box {
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}
.contact-cta-box p { color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.contact-cta-box .phone-big {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-gold);
  display: block;
  margin-bottom: .75rem;
}

.contact-form { }

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--c-primary);
}
.form-group .req { color: var(--c-accent); }
.form-control {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--c-primary-light);
  box-shadow: 0 0 0 3px rgba(26,63,111,.12);
}
textarea.form-control { resize: vertical; min-height: 130px; }

/* Honeypot */
.hp-field { display: none !important; }

.form-legal {
  font-size: .8rem;
  color: var(--c-muted);
  margin-top: .5rem;
}
.form-legal a { color: var(--c-muted); text-decoration: underline; }

.form-alert {
  padding: .9rem 1rem;
  border-radius: var(--radius);
  font-size: .93rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.form-alert--success { background: #ecfdf5; color: var(--c-success); border: 1px solid #6ee7b7; }
.form-alert--error   { background: #fef2f2; color: var(--c-error);   border: 1px solid #fca5a5; }

/* ---------------------------------------------------------------
   14. CTA INTERMEDIO (BANDA)
   --------------------------------------------------------------- */
.cta-band {
  background: var(--c-accent);
  color: var(--c-white);
  text-align: center;
  padding-block: 2.5rem;
}
.cta-band h2 { color: var(--c-white); margin-bottom: .5rem; }
.cta-band p  { color: rgba(255,255,255,.88); margin-bottom: 1.25rem; }
.cta-band .btn--outline { border-color: var(--c-white); }
.cta-band .phone-display {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: .75rem;
}

/* ---------------------------------------------------------------
   15. STICKY CTA MÓVIL
   --------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  height: var(--sticky-h);
}

.sticky-cta__call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-white);
  text-decoration: none;
  background: var(--c-accent);
  transition: filter .2s;
}
.sticky-cta__call:hover { filter: brightness(1.1); color: var(--c-white); }

/* ---------------------------------------------------------------
   16. FOOTER
   --------------------------------------------------------------- */
.site-footer {
  background: var(--c-primary);
  color: var(--c-white);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-col h3 {
  color: var(--c-gold);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-col ul a:hover { color: var(--c-white); }
.footer-col ul li:not(:has(a)) { color: rgba(255,255,255,.7); font-size: .9rem; }

.footer-nap address p {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  margin-bottom: .5rem;
}
.footer-nap address svg { flex-shrink: 0; margin-top: .15em; opacity: .7; }
.footer-nap address a { color: rgba(255,255,255,.85); font-weight: 600; }
.footer-nap address a:hover { color: var(--c-white); }

.footer-logo { margin-bottom: .75rem; filter: brightness(0) invert(1); opacity: .9; }
.footer-tagline { color: var(--c-gold); font-size: .87rem; margin-bottom: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.25rem;
  margin-top: 2rem;
}
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); margin: 0; }

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-trust span { font-size: .78rem; color: rgba(255,255,255,.55); }

/* ---------------------------------------------------------------
   17. PÁGINAS LEGALES
   --------------------------------------------------------------- */
.legal-page { padding-block: 3rem; }
.legal-page h1 { margin-bottom: 1.5rem; }
.legal-page h2 { margin-top: 2rem; margin-bottom: .75rem; font-size: 1.2rem; }
.legal-page h3 { margin-top: 1.5rem; margin-bottom: .5rem; font-size: 1.05rem; }
.legal-page p, .legal-page li { color: var(--c-muted); line-height: 1.7; }
.legal-page ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page ul li { margin-bottom: .3rem; }

/* ---------------------------------------------------------------
   18. PÁGINA 404
   --------------------------------------------------------------- */
.page-404 {
  text-align: center;
  padding-block: 5rem 4rem;
}
.page-404__code {
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 900;
  color: var(--c-border);
  line-height: 1;
  margin-bottom: .5rem;
}
.page-404 h1 { margin-bottom: .75rem; }
.page-404 p  { color: var(--c-muted); margin-bottom: 1.5rem; max-width: 460px; margin-inline: auto; }

/* ---------------------------------------------------------------
   19. UTILIDADES
   --------------------------------------------------------------- */
.text-center { text-align: center; }
.text-accent  { color: var(--c-accent); }
.text-gold    { color: var(--c-gold); }
.text-muted   { color: var(--c-muted); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.d-none { display: none; }

/* Lead / intro text */
.lead {
  font-size: 1.1rem;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 700px;
}

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  color: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.highlight-box h3 { color: var(--c-gold); margin-bottom: .5rem; }
.highlight-box p  { color: rgba(255,255,255,.85); margin: 0; }

/* ---------------------------------------------------------------
   20. RESPONSIVE — TABLET (≥768px)
   --------------------------------------------------------------- */
@media (min-width: 768px) {
  /* Servicios */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Trust */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  /* Zonas */
  .zones-grid { grid-template-columns: repeat(3, 1fr); }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr auto; align-items: start; }
  .hero__badge { margin-top: .5rem; }

  /* Contacto */
  .contact-grid { grid-template-columns: 1fr 1.4fr; }

  /* Footer */
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------------------------------------------------------
   21. RESPONSIVE — DESKTOP (≥1024px)
   --------------------------------------------------------------- */
@media (min-width: 1024px) {
  /* Cabecera */
  :root { --header-h: 170px; }
  .nav-toggle { display: none; }
  .header-phone { display: flex; }
  .logo img { height: 150px; max-width: none; }

  .main-nav {
    position: static;
    display: flex !important;
    background: none;
    box-shadow: none;
    margin-left: auto;
  }
  .main-nav ul {
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: 0;
  }
  .main-nav a {
    padding: .5rem .85rem;
    border-radius: var(--radius);
    border-bottom: none;
    font-size: .93rem;
  }
  .main-nav a:hover { background: rgba(255,255,255,.1); color: var(--c-white); }
  .main-nav .nav-cta {
    margin: 0;
    padding: .5rem 1rem;
  }

  /* Servicios */
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  /* Trust */
  .trust-grid { grid-template-columns: repeat(3, 1fr); }

  /* Zonas */
  .zones-grid { grid-template-columns: repeat(5, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  /* Sticky CTA: ocultar en escritorio */
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* ---------------------------------------------------------------
   22. IMPRESIÓN
   --------------------------------------------------------------- */
@media print {
  .site-header,
  .sticky-cta,
  .main-nav,
  .nav-toggle { display: none !important; }
  body { padding: 0; }
  a[href^="tel"] { text-decoration: none; }
}
