/* ============================================================
   MUDANZAS VALLECAS — portesromero.com
   Colores: azul profundo + naranja acento + verde WhatsApp
   Tipografía: Montserrat (títulos) + Open Sans (texto)
   ============================================================ */

:root {
  --blue: #1a3a6e;
  --blue-mid: #2a55a4;
  --blue-dark: #14294d;
  --blue-footer: #0f1f3d;
  --orange: #e8842d;
  --orange-dark: #d0701d;
  --orange-light: #f5a854;
  --green: #1daa55;
  --green-dark: #178f47;
  --gray-bg: #f4f5f8;
  --border: #dfe3ea;
  --text: #1b2540;
  --muted: #5a6379;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Montserrat", Arial, sans-serif; font-weight: 800; line-height: 1.15; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.icon { width: 1em; height: 1em; fill: currentColor; vertical-align: -0.125em; flex-shrink: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--blue); color: #fff;
  padding: 0.5rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 0.8rem 1.5rem; border-radius: 8px; border: 0; cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-outline-blue { background: transparent; color: var(--blue); border: 1px solid var(--blue); }
.btn-outline-blue:hover { background: var(--gray-bg); }

/* ---------- Barra superior ---------- */
.topbar { background: var(--blue-dark); color: rgba(255,255,255,0.75); font-size: 0.85rem; padding: 0.45rem 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar-links { display: flex; gap: 1.5rem; align-items: center; }
.topbar a:hover { color: #fff; }
.topbar-phone { color: var(--orange-light) !important; font-weight: 700; display: inline-flex; align-items: center; gap: 0.4rem; }
@media (max-width: 720px) { .topbar-inner span, .topbar-links a[href^="mailto"] { display: none; } .topbar-inner { justify-content: center; } }

/* ---------- Navegación ---------- */
.navbar { background: var(--blue); position: sticky; top: 0; z-index: 50; transition: box-shadow 0.2s; }
.navbar.scrolled { box-shadow: 0 6px 20px rgba(20, 41, 77, 0.35); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { width: 40px; height: 40px; border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: "Montserrat", sans-serif; font-weight: 800; color: #fff; font-size: 1rem; }
.brand-text em { font-style: normal; font-family: "Montserrat", sans-serif; font-weight: 600; color: var(--orange-light); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; }
.nav-links { display: flex; gap: 0.25rem; }
.nav-links a {
  color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600;
  padding: 0.5rem 0.9rem; border-radius: 6px; transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.2); }
.nav-cta { display: flex; gap: 0.6rem; }
.menu-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: 0.5rem; border-radius: 6px; }
.menu-toggle:hover { background: rgba(255,255,255,0.1); }
.menu-toggle .icon { width: 24px; height: 24px; }

.mobile-menu { display: none; background: var(--blue-dark); border-top: 1px solid rgba(255,255,255,0.1); padding: 1rem 1.25rem 1.25rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.95rem; padding: 0.75rem 0.9rem; border-radius: 6px; }
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(255,255,255,0.15); color: #fff; }
.mobile-menu .mobile-cta { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid rgba(255,255,255,0.1); }

@media (max-width: 1000px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
}

/* ---------- Banda urgencia ---------- */
.urgency { background: var(--orange); color: #fff; padding: 0.6rem 0; }
.urgency-inner { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.urgency-inner span { font-size: 0.9rem; font-weight: 600; }
.urgency-inner a {
  font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 0.85rem;
  background: rgba(255,255,255,0.2); padding: 0.3rem 0.9rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.urgency-inner a:hover { background: rgba(255,255,255,0.3); }
@media (max-width: 640px) { .urgency-inner { justify-content: center; text-align: center; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15, 31, 61, 0.93) 0%, rgba(20, 41, 77, 0.82) 45%, rgba(26, 58, 110, 0.45) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 4.5rem 0; max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; color: #fff; font-size: 0.8rem; font-weight: 600;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  padding: 0.4rem 0.9rem; border-radius: 999px; margin-bottom: 1.5rem;
}
.hero-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--orange-light); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.hero-trust .icon { color: var(--orange-light); }

/* Hero interior (páginas secundarias) */
.page-hero { background: var(--blue); color: #fff; padding: 3.5rem 0 4rem; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .kicker { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.page-hero .kicker::before { content: ""; width: 32px; height: 4px; border-radius: 999px; background: var(--orange); }
.page-hero .kicker span { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 640px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.page-hero-grid .media img { border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.35); width: 100%; height: 320px; object-fit: cover; }
@media (max-width: 900px) { .page-hero-grid { grid-template-columns: 1fr; } }

/* Divisor diagonal */
.divider { display: block; width: 100%; height: 56px; }

/* ---------- Secciones ---------- */
.section { padding: 4.5rem 0; }
.section-gray { background: var(--gray-bg); }
.section-blue { background: var(--blue); color: #fff; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.kicker { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.kicker::before { content: ""; width: 32px; height: 4px; border-radius: 999px; background: var(--orange); }
.kicker span { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--blue-mid); }
.section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; color: var(--text); }
.section-blue h2 { color: #fff; }
.section-head p { color: var(--muted); font-size: 0.95rem; max-width: 380px; }
.section-center { text-align: center; }
.section-center .section-sub { color: var(--muted); max-width: 600px; margin: 0.75rem auto 0; }

/* ---------- Tarjetas de servicios ---------- */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1000px) { .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; position: relative; overflow: hidden; display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26, 58, 110, 0.15); border-color: var(--blue-mid); }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius); background: var(--gray-bg);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  color: var(--blue-mid);
}
.card-icon .icon { width: 30px; height: 30px; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.9rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; color: var(--blue-mid); font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 0.9rem; }

/* ---------- Dos columnas ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.two-col .media { position: relative; }
.two-col .media img { border-radius: 16px; width: 100%; height: 380px; object-fit: cover; box-shadow: 0 20px 50px rgba(26, 58, 110, 0.18); }
.media-float {
  position: absolute; bottom: -1.5rem; right: -0.5rem; background: var(--blue); color: #fff;
  border-radius: var(--radius); padding: 1rem 1.25rem; max-width: 190px; box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
.media-float.left { right: auto; left: -0.5rem; background: var(--orange); }
.media-float strong { display: block; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--orange-light); }
.media-float.left strong { color: #fff; }
.media-float span { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.two-col .body > p { color: var(--muted); margin: 1rem 0 1.75rem; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature { display: flex; gap: 0.8rem; align-items: flex-start; }
.feature-icon {
  width: 38px; height: 38px; border-radius: 8px; background: var(--gray-bg); color: var(--blue-mid);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature strong { display: block; font-family: "Montserrat", sans-serif; font-size: 0.9rem; font-weight: 700; }
.feature span { font-size: 0.8rem; color: var(--muted); }

.check-list { margin: 1.25rem 0 1.75rem; display: grid; gap: 0.65rem; }
.check-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; }
.check-list .icon { color: var(--blue-mid); width: 18px; height: 18px; }

.actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.75rem; }

/* ---------- Banda de cifras ---------- */
.stats { background: var(--blue); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat strong { display: block; font-family: "Montserrat", sans-serif; font-weight: 900; font-size: 2.4rem; color: var(--orange-light); }
.stat span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ---------- Bloques servicio detallado ---------- */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.service-detail + .service-detail { margin-top: 5rem; }
@media (max-width: 900px) { .service-detail { grid-template-columns: 1fr; } .service-detail .media { order: -1; } }
.service-detail.reverse .media { order: 2; }
@media (max-width: 900px) { .service-detail.reverse .media { order: -1; } }
.service-detail .media img { border-radius: 16px; width: 100%; height: 320px; object-fit: cover; box-shadow: 0 15px 40px rgba(26, 58, 110, 0.15); }
.service-detail h2 { font-size: 1.9rem; margin-bottom: 0.75rem; }
.service-detail .body > p { color: var(--muted); }

/* ---------- Vehículos ---------- */
.vehicles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .vehicles { grid-template-columns: 1fr; } }
.vehicle { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; background: #fff; transition: transform 0.2s, box-shadow 0.2s; }
.vehicle:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26, 58, 110, 0.15); }
.vehicle.featured { background: var(--blue); color: #fff; border-color: var(--blue-mid); }
.vehicle .tag { display: inline-block; background: var(--orange); color: #fff; font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.72rem; padding: 0.25rem 0.8rem; border-radius: 999px; margin-bottom: 0.75rem; }
.vehicle h3 { font-size: 1.3rem; }
.vehicle .capacity { font-family: "Montserrat", sans-serif; font-weight: 900; font-size: 1.7rem; color: var(--blue-mid); margin: 0.25rem 0; }
.vehicle.featured .capacity { color: var(--orange-light); }
.vehicle .ideal { font-size: 0.88rem; color: var(--muted); margin-bottom: 1rem; }
.vehicle.featured .ideal { color: rgba(255,255,255,0.75); }
.vehicle ul { display: grid; gap: 0.55rem; margin-bottom: 1.5rem; }
.vehicle li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; }
.vehicle li .icon { color: var(--blue-mid); width: 16px; height: 16px; }
.vehicle.featured li .icon { color: var(--orange-light); }
.vehicle .btn { width: 100%; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 1rem; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.15rem 1.4rem; }
.faq summary { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--blue-mid); font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); font-size: 0.92rem; margin-top: 0.6rem; }

/* ---------- Zonas ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.chips span {
  background: var(--gray-bg); border: 1px solid var(--border); color: var(--blue);
  font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 0.88rem;
  padding: 0.5rem 1.1rem; border-radius: 999px;
}

/* ---------- Valores ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1000px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .values { grid-template-columns: 1fr; } }
.value-icon { width: 48px; height: 48px; border-radius: var(--radius); background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.value-icon .icon { width: 24px; height: 24px; }

/* ---------- CTA final ---------- */
.cta { text-align: center; }
.cta h2 { margin-bottom: 0.75rem; }
.cta p { color: var(--muted); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.section-blue.cta p, .section-blue .cta p { color: rgba(255,255,255,0.75); }
.cta .actions { justify-content: center; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.15rem;
  background: var(--gray-bg); border-radius: var(--radius); margin-bottom: 1rem;
  transition: background 0.15s;
}
a.contact-item:hover { background: #e9ecf2; }
.contact-item .ci-icon {
  width: 40px; height: 40px; border-radius: 8px; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item .ci-icon.orange { background: var(--orange); }
.contact-item strong { display: block; font-family: "Montserrat", sans-serif; font-size: 0.9rem; }
.contact-item span { font-size: 0.9rem; color: var(--muted); word-break: break-word; }
.contact-item .phone-big { color: var(--blue); font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 1rem; }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 2rem; box-shadow: 0 4px 16px rgba(26, 58, 110, 0.06); }
.form-card h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.4rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.7rem 1rem; border: 1px solid var(--border); border-radius: 8px;
  font-family: "Open Sans", sans-serif; font-size: 0.92rem; color: var(--text); background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(42, 85, 164, 0.15);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }
.form-note a { color: var(--blue-mid); }
.form-ok { text-align: center; padding: 2.5rem 1rem; }
.form-ok .icon { width: 52px; height: 52px; color: var(--green); margin-bottom: 1rem; }
.form-ok h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.form-ok p { color: var(--muted); }

.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(26, 58, 110, 0.1); height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
footer { background: var(--blue-footer); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 2.5rem; padding: 3.5rem 0; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 1rem 0 1.25rem; }
footer h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 1.1rem; }
footer h4:not(:first-child) { margin-top: 1.75rem; }
.footer-grid ul { display: grid; gap: 0.55rem; }
.footer-grid ul a, .footer-grid ul li { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-grid ul a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 0.7rem; align-items: flex-start; }
.footer-contact .icon { color: var(--orange); margin-top: 0.25rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.1rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.78rem; }

/* ---------- CTA flotante ---------- */
.floating-cta { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40; display: flex; flex-direction: column; gap: 0.75rem; }
.floating-cta a {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.25); transition: transform 0.2s;
}
.floating-cta a:hover { transform: scale(1.1); }
.floating-cta .fc-wa { background: var(--green); }
.floating-cta .fc-tel { background: var(--orange); }
.floating-cta .icon { width: 26px; height: 26px; }

.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; }
.mobile-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 0; color: #fff; font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.9rem;
}
.mobile-bar .mb-wa { background: var(--green); }
.mobile-bar .mb-tel { background: var(--orange); }

@media (max-width: 768px) {
  .floating-cta { display: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 56px; }
}

/* ---------- 404 ---------- */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; background: var(--gray-bg); padding: 4rem 1.25rem; }
.error-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 3rem 2rem; max-width: 520px; text-align: center; }
.error-card .icon { width: 48px; height: 48px; color: var(--orange); margin-bottom: 1rem; }
.error-card h1 { font-size: 3rem; }
.error-card h2 { font-size: 1.3rem; margin: 0.25rem 0 1rem; }
.error-card p { color: var(--muted); margin-bottom: 2rem; }

/* ---------- Animaciones ---------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { animation: fadeUp 0.55s cubic-bezier(0.23, 1, 0.32, 1) both; }
  .fade-up.d1 { animation-delay: 0.08s; }
  .fade-up.d2 { animation-delay: 0.16s; }
  .fade-up.d3 { animation-delay: 0.24s; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
