/* =========================================================
   Mudanzas Servilandaeta — estilos principales
   ========================================================= */

:root {
  --color-navy: #0f2852;
  --color-navy-dark: #081627;
  --color-navy-light: #1c3e73;
  --color-red: #c41e26;
  --color-red-dark: #a5171e;
  --color-yellow: #f7b500;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f6fa;
  --color-text: #1b2430;
  --color-text-light: #556074;
  --color-border: #e2e6ee;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(8, 22, 39, 0.06);
  --shadow-md: 0 8px 28px rgba(8, 22, 39, 0.10);

  --container-width: 1180px;
  --header-height: 78px;

  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --transition-fast: 0.18s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
body, h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--color-navy); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.2vw, 2.85rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); margin-bottom: 0.5rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Focus visibility (accesibilidad) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-navy);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }

.btn-primary {
  background: var(--color-red);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-red-dark); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.btn-outline:hover { background: var(--color-navy); color: #fff; }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-call {
  background: var(--color-navy);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-sm);
}
.btn-call:hover { background: var(--color-navy-light); box-shadow: var(--shadow-md); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover { background: #1fb257; box-shadow: var(--shadow-md); }

/* ---------- Cabecera ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}
.header-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.logo-link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}
.logo-img { height: 52px; width: auto; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: 18px 0 0;
  font-size: 0.88rem;
  color: var(--color-text-light);
}
.breadcrumbs a { color: var(--color-text-light); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumbs a:hover { color: var(--color-red); }
.breadcrumbs span[aria-current="page"] { color: var(--color-navy); font-weight: 600; }

/* ---------- Chips de zonas (página de inicio) ---------- */
.zonas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.zonas-chips a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-border);
  color: var(--color-navy);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.zonas-chips a:hover { background: var(--color-navy); border-color: var(--color-navy); color: #fff; }

.menu-toggle {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  height: 2.5px;
  width: 24px;
  margin: 0 auto;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Menú lateral (drawer) ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 22, 39, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  z-index: 250;
}
.nav-overlay.is-open { opacity: 1; pointer-events: auto; }

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateX(-100%);
  transition: transform var(--transition-fast);
  z-index: 260;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.is-open { transform: translateX(0); }

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.nav-drawer-title { font-weight: 700; color: var(--color-navy); font-size: 1.05rem; }
.nav-drawer-close {
  background: transparent;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--color-navy);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.nav-drawer-close:hover { color: var(--color-red); }

.nav-drawer ul { display: flex; flex-direction: column; padding: 8px 0; }
.nav-drawer a {
  display: block;
  padding: 14px 22px;
  font-weight: 600;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.nav-drawer a:hover { background: var(--color-bg-alt); color: var(--color-red); }
.nav-drawer a[aria-current="page"] { color: var(--color-red); background: var(--color-bg-alt); }

.nav-drawer-footer {
  margin-top: auto;
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--color-border);
}
.nav-drawer-footer .btn { width: 100%; color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, #fff 100%);
  padding: 56px 0 64px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: center;
}
.hero-overlay { display: none; }
.hero-lead {
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--color-text-light);
  max-width: 54ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ---------- Secciones genéricas ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-lead {
  color: var(--color-text-light);
  max-width: 68ch;
  margin-bottom: 36px;
  font-size: 1.05rem;
}
.section-note {
  margin-top: 12px;
  color: var(--color-text-light);
}
.section-note a { color: var(--color-red); font-weight: 600; }

/* ---------- Tarjetas de servicios ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-img { aspect-ratio: 4 / 3; object-fit: cover; }
.card h3, .card p { padding-left: 20px; padding-right: 20px; }
.card h3 { margin-top: 18px; }
.card p { color: var(--color-text-light); padding-bottom: 20px; }

/* ---------- Tarjetas de contacto ---------- */
.contact-card { padding: 28px 24px; text-align: left; }
.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.contact-card h2 { margin-top: 0; }
.contact-card p { padding: 0; }
.contact-card .btn { padding-left: 18px; padding-right: 18px; }

.contact-map {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}

/* ---------- Cómo funciona ---------- */
.como-funciona-text { max-width: 980px; }
.steps-list { margin-top: 28px; display: flex; flex-direction: column; gap: 22px; }
.steps-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px 32px;
}
.steps-list li { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.steps-list p { color: var(--color-text-light); }

/* ---------- Formulario ---------- */
.quote-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px;
  max-width: 900px;
}
.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.form-progress-step {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
  color: var(--color-text-light);
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 3px solid var(--color-border);
}
.form-progress-step.is-active {
  background: #fff;
  color: var(--color-navy);
  border-bottom-color: var(--color-red);
}

.quote-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 8px;
}
.quote-form legend {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 1.15rem;
  padding: 0;
  margin-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px;
}

.form-row { margin-bottom: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.form-row-2.form-row, .form-row-3.form-row { margin-bottom: 18px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-weight: 600; font-size: 0.92rem; color: var(--color-navy); }
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="date"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--transition-fast);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-navy);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-hint { font-size: 0.85rem; color: var(--color-text-light); margin-top: -8px; margin-bottom: 18px; }

.form-row-checks { align-items: center; }
.form-field-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.form-field-check input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--color-red);
  flex-shrink: 0;
}
.form-field-check label { font-weight: 500; color: var(--color-text); }
.form-field-check a { color: var(--color-red); font-weight: 600; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.form-nav .btn-next,
.form-nav .btn:only-child { margin-left: auto; }

.form-msg {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
}
.form-msg.is-success { background: #e5f7ec; color: #1c7a41; border: 1px solid #b7e7c8; }
.form-msg.is-error { background: #fdecec; color: var(--color-red-dark); border: 1px solid #f6c2c2; }

/* Progressive enhancement: JS activa el modo "paso a paso" */
.quote-form.js-stepped .form-step { display: none; }
.quote-form.js-stepped .form-step.is-active { display: block; }
.quote-form:not(.js-stepped) .form-progress { display: none; }
.quote-form:not(.js-stepped) .form-nav .btn-prev,
.quote-form:not(.js-stepped) .form-nav .btn-next { display: none; }

/* ---------- Zonas de servicio ---------- */
.zonas-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.zonas-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); position: sticky; top: calc(var(--header-height) + 20px); }
.zonas-list { display: flex; flex-direction: column; gap: 22px; }
.zona-item p { color: var(--color-text-light); }
.zona-item a { color: var(--color-red); font-weight: 600; display: inline-block; margin-top: 6px; }
.zonas-nacional {
  margin-top: 44px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.zonas-nacional p { color: var(--color-text-light); margin-top: 8px; }

/* ---------- Ventajas ---------- */
.ventajas-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.ventajas-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.ventajas-list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.ventajas-list li {
  padding-left: 28px;
  position: relative;
  color: var(--color-text-light);
}
.ventajas-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--color-yellow);
}
.ventajas-list strong { color: var(--color-navy); }

/* ---------- Reseñas ---------- */
.resenas-grid { grid-template-columns: repeat(3, 1fr); }
.resena-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.resena-quote {
  font-size: 2.6rem;
  color: var(--color-yellow);
  font-family: Georgia, serif;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.resena-card p { color: var(--color-text-light); }
.resena-card a { color: var(--color-red); font-weight: 600; }

.resenas-stars-hero {
  color: var(--color-yellow);
  font-size: 2rem;
  letter-spacing: 6px;
  margin-top: 14px;
}

/* ---------- Caja "Déjanos tu reseña" ---------- */
.review-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px 32px;
}
.google-icon { margin-bottom: 14px; }
.review-form { text-align: left; margin-top: 8px; }
.review-form .form-nav { justify-content: center; border-top: none; padding-top: 4px; margin-top: 10px; }
.review-form .form-nav .btn { width: 100%; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-navy);
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.4rem;
  color: var(--color-red);
  transition: transform var(--transition-fast);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--color-text-light); padding-bottom: 18px; }

/* ---------- CTA final ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--color-navy-dark), var(--color-navy));
  color: #fff;
  padding: 68px 0;
  text-align: center;
}
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255,255,255,0.85); margin-top: 12px; font-size: 1.08rem; }
.cta-final-inner { display: flex; flex-direction: column; align-items: center; }
.cta-final .hero-actions { justify-content: center; margin-top: 26px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.82);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.footer-brand span { display: block; font-size: 0.8rem; color: var(--color-yellow); font-weight: 700; letter-spacing: 1.5px; }
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col p { margin-bottom: 8px; font-size: 0.95rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; }
.footer-col a:hover { color: var(--color-yellow); }
.footer-bottom { padding: 20px 0; font-size: 0.85rem; text-align: center; }

.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  cursor: default;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-navy-dark);
  color: #fff;
  padding: 18px 20px;
  z-index: 300;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.2);
}
.cookie-banner-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.9rem; color: rgba(255,255,255,0.85); max-width: 70ch; }
.cookie-banner a { color: var(--color-yellow); font-weight: 600; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner-actions .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.cookie-banner-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

/* ---------- Botón flotante de WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  z-index: 220;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), bottom var(--transition-fast);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.32); background: #1fb257; }
.whatsapp-float.is-raised { bottom: 132px; }

@media (max-width: 760px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .whatsapp-float.is-raised { bottom: 168px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .steps-list-grid { grid-template-columns: 1fr; }
  .ventajas-inner { grid-template-columns: 1fr; }
  .ventajas-media { order: -1; }
  .zonas-layout { grid-template-columns: 1fr; }
  .zonas-img { position: static; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .resenas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --header-height: 64px; }
  .logo-img { height: 42px; }

  /* Hero a pantalla completa con imagen de fondo y texto superpuesto */
  .hero {
    min-height: 92svh;
    display: flex;
    align-items: flex-end;
    padding: 0 0 44px;
  }
  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    order: 0;
  }
  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8,22,39,0.10) 0%, rgba(8,22,39,0.45) 45%, rgba(8,22,39,0.94) 100%);
  }
  .hero-inner {
    display: block;
    width: 100%;
  }
  .hero-text {
    position: relative;
    z-index: 3;
  }
  .hero-text h1 { color: #fff; }
  .hero-lead { color: rgba(255, 255, 255, 0.88); }

  .cards-grid { grid-template-columns: 1fr; }
  .resenas-grid { grid-template-columns: 1fr; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .quote-form { padding: 22px 18px; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
