/* ============================================================
   MUDANZAS EXPRESS — Design System
   Font: Open Sans 800 (headings) / 500 (body)
============================================================ */

:root {
  --red: #FFFD12;
  --red-dark: #E0DE00;
  --dark: #020626;
  --bg1: #F8FAF9;
  --bg2: #F3F6F4;
  --bg3: #EEF2F6;
  --text: #0a0c0c;
  --muted: #545454;
  --white: #ffffff;
  --radius: 16px;
  --header-h: 94px;
  --top-h: 52px;
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  padding-top: 0;
}

h1, h2, h3, h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--dark);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.text-center { text-align: center; }

.highlight {
  color: var(--text);
  background: linear-gradient(180deg, transparent 62%, var(--red) 62%);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: none;
  color: var(--muted);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 26px; height: 2px; background: var(--red); flex-shrink: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.6rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem .9rem; font-size: .8rem; }
.btn-primary { background: var(--red); color: var(--dark); }
.btn-primary:hover { background: var(--dark); color: var(--red); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--red); color: var(--dark); }
.btn-outline { background: transparent; border-color: var(--dark); color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--bg2); }

/* ── Header: una sola franja clara, fija arriba ── */
#navbar {
  position: sticky; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.header-top { display: none; }
.header-contact, .header-coverage { display: none; }

.header-main {
  height: var(--header-h);
  background: var(--dark);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: var(--header-h); }
.nav-logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; margin-right: .5rem; }
.nav-logo img { height: 84px; width: auto; }
.logo-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.logo-text .logo-accent { color: var(--red); }
.footer-logo.logo-text { color: var(--white); }
.nav-links { display: flex; align-items: center; gap: .1rem; }
.nav-links a {
  font-weight: 700; font-size: .88rem; color: var(--white);
  padding: .6rem .9rem; border-radius: 0;
  border-bottom: 2px solid transparent;
  transition: all .15s;
}
.nav-links a:hover { border-bottom-color: var(--red); }
.nav-links a.active { color: var(--red); border-bottom-color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: .9rem; }
.nav-phone-link { font-weight: 700; color: var(--white); display:flex; align-items:center; gap:.4rem; }
.nav-wa-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(37,211,102,.12); color: #25D366;
  display: flex; align-items: center; justify-content: center;
}
.nav-wa-icon svg { width: 20px; height: 20px; }
.nav-phone-desktop { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background:none; border:none; }
.hamburger span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; }
#navbar .btn-dark { background: var(--red); color: var(--dark); }
#navbar .btn-dark:hover { background: var(--white); color: var(--dark); }

/* ── Mobile menu ── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .7rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 700; color: var(--dark); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0a1877 100%);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(228,173,19,.15);
  color: var(--red);
  font-weight: 700; font-size: .85rem;
  padding: .5rem 1.1rem; border-radius: 50px;
  margin-bottom: 1.2rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.hero h1 { font-size: 2.8rem; color: var(--white); margin-bottom: 1rem; }
.hero p.lead { color: #c7cbcb; font-size: 1.1rem; max-width: 480px; margin-bottom: 1.6rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-stats { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.hero-stat .number { font-size: 1.7rem; font-weight: 900; color: var(--red); }
.hero-stat .label { font-size: .8rem; color: #aab0b0; }

.hero-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
}
.hero-form-box h3 { font-size: 1.3rem; margin-bottom: .3rem; }
.hero-form-box p { color: var(--muted); font-size: .85rem; margin-bottom: 1.2rem; }

.form-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: .8rem; }
.form-group { display: flex; flex-direction: column; gap: .3rem; min-width: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .78rem; font-weight: 700; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid #e2e6e6;
  border-radius: 10px;
  padding: .65rem .8rem;
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  background: var(--bg1);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.form-group textarea { resize: vertical; min-height: 70px; }
.form-note { font-size: .75rem; color: var(--muted); margin: .8rem 0; }
.form-submit { width: 100%; justify-content: center; }
.form-success { display: none; text-align: center; padding: 1.5rem 0; }

/* ── Trust bar ── */
.trust-bar { background: var(--bg2); padding: 1.4rem 0; border-bottom: 1px solid #e2e6e6; }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 2.4rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .85rem; color: var(--dark); }
.trust-item svg { color: var(--red); width: 18px; height: 18px; }

/* ── Services ── */
.services-section { background: var(--white); }
.services-header { text-align: center; margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--bg1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all .25s ease;
  border: 1px solid #eceeee;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.08); background: var(--white); border-color: var(--red); }
.service-card .icon {
  width: 56px; height: 56px;
  background: rgba(228,173,19,.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.service-card p { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.service-card-link { color: var(--red); font-weight: 700; font-size: .85rem; display: flex; align-items: center; gap: .3rem; }

/* ── Why us ── */
.why-section { background: var(--bg2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.why-img { text-align: center; }
.why-img img { border-radius: var(--radius); box-shadow: 0 30px 60px rgba(0,0,0,.12); width: auto; height: auto; max-width: 100%; object-fit: contain; display: inline-block; }
.why-list { display: grid; gap: 1.1rem; margin-top: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item .check {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--red); color: var(--dark);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 900;
}
.why-item h4 { font-size: 1rem; margin-bottom: .2rem; }
.why-item p { color: var(--muted); font-size: .88rem; }

/* ── Coverage / Map ── */
.coverage-section { background: var(--white); }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.coverage-map { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.1); height: 420px; }
.coverage-map iframe { width: 100%; height: 100%; border: 0; }
.city-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.city-pill {
  background: var(--bg2); padding: .5rem 1rem; border-radius: 50px;
  font-size: .85rem; font-weight: 600; color: var(--dark);
  transition: all .2s;
}
.city-pill:hover { background: var(--red); color: var(--dark); }

/* ── FAQ ── */
.faq-section { background: var(--bg2); }
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 1rem; }
.faq-item { background: var(--white); border-radius: 14px; padding: 1.3rem 1.6rem; cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 1rem; line-height: 1.25; }
.faq-q svg { transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: var(--muted); font-size: .9rem; }
.faq-item.open .faq-a { max-height: 300px; padding-top: .9rem; }

/* ── Contact CTA section ── */
.contact-section { background: var(--bg2); color: var(--text); border-top: 1px solid #e2e6e6; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.contact-items { display: grid; gap: 1.2rem; margin: 1.5rem 0; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--dark); color: var(--red);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-item h4 { color: var(--dark); font-size: .95rem; margin-bottom: .15rem; }
.contact-item a, .contact-item p { color: var(--muted); font-size: .9rem; }
.contact-form-box { background: var(--white); border: 1px solid #e2e6e6; border-radius: var(--radius); padding: 1.8rem; color: var(--text); }

/* ── Footer ── */
footer { background: var(--dark); color: #9aa0a0; padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { font-size: .85rem; color: #9aa0a0; }
.footer-col a:hover { color: var(--red); }
.footer-logo { height: 90px; width: auto; margin-bottom: 1rem; }
.footer-logo.logo-text { font-size: 2rem; display: inline-block; margin-bottom: 1rem; }
.footer-bottom { border-top: 1px solid #1c1f1f; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8rem; }

/* ── Floating CTA ── */
.float-cta { position: fixed; right: 1.25rem; bottom: 2.5rem; z-index: 998; display: flex; flex-direction: column; gap: .6rem; }
.float-btn {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition: transform .2s;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 22px; height: 22px; }
.float-btn-wa { background: #25D366; color: var(--white); }
.float-btn-tel { background: var(--red); color: var(--dark); }

/* ── Inner page hero (servicios/ciudades) ── */
.page-hero { background: var(--bg1); padding: 3.5rem 0 2.5rem; color: var(--text); border-bottom: 3px solid var(--red); }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--dark); font-weight: 600; }
.breadcrumb a:hover { color: var(--red-dark); }
.page-hero h1 { color: var(--dark); font-size: 2.2rem; margin-bottom: .8rem; }
.page-hero p { color: var(--muted); max-width: 600px; }
.page-hero .btn-white { background: var(--dark); color: var(--white); }
.page-hero .btn-white:hover { background: var(--dark); }

/* ── Variante con foto de fondo (páginas de ciudades y distritos) ── */
.page-hero-photo {
  position: relative;
  background: linear-gradient(rgba(2,6,38,.82), rgba(2,6,38,.88)), url('../assets/equipo-collage.jpg');
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--red);
}
.page-hero-photo .breadcrumb { color: rgba(255,255,255,.7); }
.page-hero-photo .breadcrumb a { color: var(--white); }
.page-hero-photo .breadcrumb a:hover { color: var(--red); }
.page-hero-photo h1 { color: var(--white); }
.page-hero-photo p { color: rgba(255,255,255,.85); }
.page-hero-photo .btn-white { background: var(--red); color: var(--dark); }
.page-hero-photo .btn-white:hover { background: var(--white); color: var(--dark); }
.page-content { padding: 3.5rem 0; }
.page-content-grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: 3rem; }
.includes-list { display: grid; gap: .8rem; margin: 1.5rem 0; }
.includes-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; }
.includes-list li::before { content: "✓"; color: var(--red); font-weight: 900; flex-shrink: 0; }
.sidebar-card { background: var(--bg2); border-radius: var(--radius); padding: 1.6rem; position: sticky; top: 100px; }
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.related-links { display: grid; gap: .5rem; margin-top: .8rem; }
.related-links a { font-size: .85rem; font-weight: 600; color: var(--dark); padding: .5rem 0; border-bottom: 1px solid #e2e6e6; }
.related-links a:hover { color: var(--red); }

/* ════════ MOBILE ════════ */
@media (max-width: 968px) {
  .hero-grid, .why-grid, .coverage-grid, .contact-grid, .page-content-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-top { display: none; }
  .nav-inner { position: relative; justify-content: flex-end; }
  .nav-logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); margin-right: 0; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid, .form-grid-compact { grid-template-columns: 1fr; }
  .hero-btns .btn { flex: 1; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-wa-icon { display: none; }
  :root { --header-h: 70px; }
  .form-group input, .form-group select, .form-group textarea,
  .form-grid-compact .form-group input, .form-grid-compact .form-group select, .form-grid-compact .form-group textarea {
    font-size: 14px;
  }
  .btn { min-height: 44px; }
}

/* ════════════════════════════════════════════════════════
   Hero, tarjetas y secciones — identidad propia editorial
   negro/dorado, alto contraste, sin florituras
════════════════════════════════════════════════════════ */

/* ── Hero nuevo: sin foto, tipografía grande + hueco de imagen a rellenar ── */
.hero-new {
  background: var(--white);
  padding: 3.5rem 0 4.5rem;
  border-bottom: 1px solid #e2e6e6;
}
.hero-new-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-areas: "title photo" "btns photo" "copy photo";
  column-gap: 3.5rem;
  row-gap: 1.2rem;
  align-items: center;
}
.hero-title { grid-area: title; }
.hero-btns-top {
  grid-area: btns;
  display: flex;
  justify-content: center;
  gap: .7rem;
}
.hero-btns-top .btn {
  flex: 0 1 auto;
  border-radius: 999px;
  animation: btnFloatX 3.6s ease-in-out infinite;
}
@keyframes btnFloatX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-btns-top .btn { animation: none; }
}
.hero-photo-wrap { grid-area: photo; }
.hero-copy { grid-area: copy; }
.hero-new h1 {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.08;
  margin: .8rem 0 1.2rem;
  letter-spacing: -.02em;
  text-align: center;
}
.hero-new .lead { color: var(--muted); font-size: 1.15rem; max-width: 480px; margin-bottom: 2rem; line-height: 1.55; }
.hero-new .hero-btns { margin-bottom: 2.2rem; }
.hero-new .hero-btns-top { margin-bottom: 0; }
.hero-new-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem .8rem; }
.hero-new-trust .item { display: flex; align-items: flex-start; gap: .4rem; font-size: .85rem; font-weight: 700; color: var(--dark); line-height: 1.25; }
.hero-new-trust .item svg { color: var(--red); width: 18px; height: 18px; flex-shrink: 0; margin-top: .1rem; }

/* ── Hueco de imagen: el usuario sube su propia foto aquí ── */
.img-slot {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 2px dashed #d0d0d0;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg, #fafafa, #fafafa 12px, #f0f1f1 12px, #f0f1f1 24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.img-slot .img-slot-icon { font-size: 2.1rem; margin-bottom: .6rem; opacity: .55; }
.img-slot .img-slot-label { font-weight: 800; font-size: .85rem; color: var(--dark); margin-bottom: .3rem; }
.img-slot .img-slot-hint { font-size: .73rem; line-height: 1.4; max-width: 220px; color: var(--muted); }
.img-slot-wide { aspect-ratio: 16 / 9; }
.img-slot-square { aspect-ratio: 1 / 1; }

/* ── Foto de equipo en "Por qué nosotros" ── */
.quote-photo {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(3,8,51,.2);
}
.quote-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Insignia pequeña centrada entre hero y servicios, con flotación suave ── */
.mini-badge-wrap { display: flex; justify-content: center; padding: .5rem 0 2rem; }
.mini-badge {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(3,8,51,.18);
  animation: miniBadgeFloat 3.6s ease-in-out infinite;
}
@keyframes miniBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .mini-badge { animation: none; }
}

/* ── Foto del hero: mapa de ruta con furgoneta ── */
.hero-photo-wrap { position: relative; }
.hero-photo {
  display: block;
  aspect-ratio: 1670 / 942;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.25);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Lista de servicios numerada (sin tarjetas de icono) ── */
.service-list { border-top: 1px solid #e2e6e6; margin-top: 1.5rem; }
.service-row {
  display: grid; grid-template-columns: 56px 1fr auto;
  align-items: center; gap: 1.5rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid #e2e6e6;
  transition: padding-left .2s, background .2s;
}
.service-row:hover { padding-left: .7rem; background: var(--bg1); }
.service-row .num { font-size: 1.2rem; font-weight: 800; color: var(--red); }
.service-row h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.service-row p { color: var(--muted); font-size: .9rem; }
.service-row .arrow { font-size: 1.4rem; color: var(--dark); transition: transform .2s; }
.service-row:hover .arrow { transform: translateX(6px); color: var(--red); }

/* ── Proceso: línea horizontal con pasos ── */
.process-line { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem; position: relative; }
.process-line::before { content: ''; position: absolute; top: 22px; left: 8%; right: 8%; height: 2px; background: #e2e6e6; }
.process-step-v2 { position: relative; text-align: left; }
.process-step-v2 .num-badge {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem; margin-bottom: 1.2rem; position: relative; z-index: 1;
}
.process-step-v2 h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.process-step-v2 p { color: var(--muted); font-size: .88rem; line-height: 1.4; }

/* ── Franja de estadísticas ── */
.stat-inline-section { background: var(--dark); padding: 0; }
.stat-inline-bar { display: flex; flex-wrap: wrap; }
.stat-inline-item { flex: 1; min-width: 140px; padding: 2.4rem 1rem; text-align: center; border-left: 1px solid rgba(255,255,255,.15); }
.stat-inline-item:first-child { border-left: none; }
.stat-inline-item .number { font-size: 2.2rem; font-weight: 800; color: var(--red); line-height: 1; }
.stat-inline-item .label { font-size: .8rem; color: #c7cbcb; margin-top: .5rem; }

/* ── Bloque de cita / por qué elegirnos ── */
.quote-block { background: var(--bg2); padding: 4.5rem 0; }
.quote-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.5rem; align-items: center; }
.quote-text { font-size: 1.55rem; font-weight: 700; line-height: 1.4; color: var(--dark); margin-bottom: 1.5rem; }
.quote-list { display: grid; gap: 1rem; }
.quote-list li { display: flex; gap: .8rem; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.quote-list li::before { content: '—'; color: var(--red); font-weight: 800; flex-shrink: 0; }

@media (max-width: 968px) {
  .quote-grid { grid-template-columns: 1fr; }
  .quote-grid .img-slot,
  .quote-grid .quote-photo { order: -1; max-width: 320px; margin: 0 auto; }
  .service-row { grid-template-columns: 40px 1fr; }
  .service-row .arrow { display: none; }
  .process-line { grid-template-columns: 1fr; gap: 2rem; }
  .process-line::before { display: none; }
}

/* ── CTA: presupuesto, sección propia bajo el hero (sin solapar) ── */
.cta-banner {
  background: var(--bg2);
  border-bottom: 1px solid #e2e6e6;
  padding: 3.5rem 0;
}
.cta-banner-box {
  background: var(--white);
  border: 1px solid #e2e6e6;
  border-top: 3px solid var(--red);
  padding: 2.2rem;
}
.cta-banner-box h3 { font-size: 1.5rem; text-align: center; margin-bottom: .3rem; }
.cta-banner-box > p.sub { text-align: center; color: var(--muted); margin-bottom: 1.5rem; font-size: .95rem; }

/* ── CTA banner split: imagen izq + formulario compacto der ── */
.cta-banner-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.2rem;
  align-items: stretch;
  padding: 0;
  background: var(--white);
}
.cta-banner-img {
  position: relative;
  min-height: 260px; overflow: hidden;
  background: var(--dark);
}
.cta-banner-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-form-col { padding: 1.4rem 1.6rem 1.4rem 0; }
.cta-banner-form-col h3 { text-align: left; font-size: 1.3rem; margin-bottom: .15rem; }
.cta-banner-form-col > p.sub { text-align: left; margin-bottom: .7rem; font-size: .82rem; }
.form-grid-compact { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: .45rem; }
.form-grid-compact .form-group input,
.form-grid-compact .form-group select,
.form-grid-compact .form-group textarea { background: var(--bg1); font-family: 'Open Sans', sans-serif; width: 100%; min-width: 0; box-sizing: border-box; padding: .48rem .65rem; font-size: .82rem; }
.form-grid-compact textarea { resize: vertical; min-height: 44px; width: 100%; border: 1.5px solid #e2e6e6; border-radius: 8px; padding: .48rem .65rem; font-size: .82rem; }
.cta-banner-form-col .form-note { font-size: .68rem; margin: .5rem 0; }
.cta-banner-form-col .form-submit { padding: .6rem 1.4rem; font-size: .88rem; }

@media (max-width: 968px) {
  .cta-banner-split { grid-template-columns: 1fr; }
  .cta-banner-img { min-height: 200px; }
  .cta-banner-form-col { padding: 1.6rem; }
}

/* ── Formulario embebido en el hero (sustituye al párrafo de texto) ── */
.hero-new .hero-form-col {
  padding: 0;
  margin-bottom: 1.6rem;
}
.hero-new .hero-form-col h3 { text-align: center; font-family: 'Poppins', 'Open Sans', sans-serif; }
.hero-new .hero-form-col > p.sub { text-align: center; }

/* ── Services: 3 tarjetas planas, borde superior dorado ── */
.services-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.feature-card {
  background: var(--white);
  color: var(--text);
  border: 1px solid #e2e6e6;
  border-top: 3px solid var(--red);
  padding: 2.2rem;
  text-align: left;
  transition: border-color .2s;
}
.feature-card:hover { border-color: var(--red); }
.feature-card .icon {
  width: 48px; height: 48px; margin-bottom: 1.2rem;
  color: var(--red);
  display: flex; align-items: center; justify-content: flex-start;
}
.feature-card .icon svg { width: 40px; height: 40px; }
.feature-card h3 { color: var(--dark); font-size: 1.15rem; margin-bottom: .6rem; }
.feature-card p { color: var(--muted); font-size: .88rem; line-height: 1.35; }

/* ── Services: left "Servicios" label + right 2x3 grid ── */
.services-detail-split { display: grid; grid-template-columns: .8fr 2.2fr; gap: 2.5rem; align-items: center; }
.services-side-label { position: relative; }
.services-rotating-title {
  font-size: 2.6rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
}
.services-rotating-title::after {
  content: '';
  position: absolute; left: 0; bottom: -10px;
  width: 56px; height: 4px;
  background: var(--red);
}

.services-icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem 1.2rem; }
.icon-item { display: flex; gap: .8rem; align-items: flex-start; padding: 1.2rem; background: var(--bg2); border-left: 3px solid var(--red); transition: background .2s; }
.icon-item:hover { background: var(--bg3); }
.icon-item .icon-dot {
  width: 8px; height: 8px; flex-shrink: 0; margin-top: .45rem;
  background: var(--red); border-radius: 2px;
}
.icon-item h4 { font-size: .95rem; margin-bottom: .05rem; color: var(--dark); }
.icon-item p { color: var(--muted); font-family: 'Open Sans', sans-serif; font-size: .82rem; line-height: 1.2; }

@media (max-width: 768px) {
  .services-detail-split { grid-template-columns: 1fr; }
  .services-side-label { text-align: center; }
  .services-rotating-title::after { left: 50%; transform: translateX(-50%); }
}

/* ── Stats section: franja con reglas verticales, sin cajas ── */
.stats-section { background: var(--bg1); padding: 3rem 0; border-top: 1px solid #e2e6e6; border-bottom: 1px solid #e2e6e6; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-big { border-left: 1px solid #e2e6e6; padding: 0 1rem; }
.stat-big:first-child { border-left: none; }
.stat-big .number { font-size: 2.6rem; font-weight: 900; color: var(--red-dark); line-height: 1; }
.stat-big .label { color: var(--muted); font-size: .85rem; margin-top: .4rem; }

/* ── Process section: números fantasma en outline, sin círculo relleno ── */
.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; position: relative; }
.process-step { text-align: left; position: relative; padding-top: .5rem; }
.process-step .num {
  font-size: 4.5rem; font-weight: 900; line-height: 1; margin-bottom: .3rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: .5rem; line-height: 1.2; }
.process-step p { color: var(--muted); font-size: .88rem; line-height: 1.3; }

/* ── Testimonials: avatar cuadrado, tarjeta con borde fino ── */
.testimonials-section { background: var(--bg2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.testimonial-card { background: var(--white); border: 1px solid #e2e6e6; padding: 1.8rem; }
.testimonial-card .stars { color: var(--red); margin-bottom: .8rem; font-size: .9rem; }
.testimonial-card p.quote { font-size: .92rem; color: var(--text); margin-bottom: 1.2rem; }
.reviewer { display: flex; align-items: center; gap: .8rem; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--dark); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .9rem; }
.reviewer-city { font-size: .78rem; color: var(--muted); }

@media (max-width: 968px) {
  .services-feature-grid, .services-icon-grid, .stats-grid, .process-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .hero-new h1 { font-size: 2.3rem; }
  .hero-new-trust { font-size: .78rem; }
  .hero-new-trust .item { font-size: .72rem; gap: .3rem; }
  .hero-new-trust .item svg { width: 15px; height: 15px; }
  .hero-new-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "btns" "photo" "copy";
    row-gap: 1rem;
  }
  .hero-new .img-slot { max-width: 380px; margin: 0 auto; }
  .hero-new .hero-photo-wrap {
    width: calc(100% + 3rem);
    margin: 0 -1.5rem 1.5rem;
  }
  .hero-new .hero-photo { border-radius: 0; }
}
@media (max-width: 640px) {
  .services-feature-grid, .services-icon-grid, .stats-grid, .process-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .stat-big { border-left: none; border-top: 1px solid rgba(255,255,255,.15); padding: 1rem 0 0; }
  .stat-big:first-child { border-top: none; }
}

/* ── Scroll reveal: set de variantes dinámicas, se repiten cada vez ── */
[class*="reveal-"] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 1.4s cubic-bezier(.16,1,.3,1), transform 1.4s cubic-bezier(.16,1,.3,1);
}
[class*="reveal-"].revealed { opacity: 1; }

.reveal-up { transform: translateY(46px) scale(.96); }
.reveal-up.revealed { transform: translateY(0) scale(1); }

.reveal-down { transform: translateY(-90px) scale(.95); }
.reveal-down.revealed { transform: translateY(0) scale(1); }

.reveal-left { transform: translateX(-90px) rotate(-2deg); }
.reveal-left.revealed { transform: translateX(0) rotate(0deg); }

.reveal-right { transform: translateX(90px) rotate(2deg); }
.reveal-right.revealed { transform: translateX(0) rotate(0deg); }

.reveal-scale { transform: scale(.7); }
.reveal-scale.revealed { transform: scale(1); }

.reveal-rotate { transform: scale(.85) rotate(-6deg); }
.reveal-rotate.revealed { transform: scale(1) rotate(0deg); }

@media (prefers-reduced-motion: reduce) {
  [class*="reveal-"] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Nav dropdown "Zonas" ── */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: .88rem; color: var(--dark);
  padding: .6rem .9rem; border-radius: 0;
  border-bottom: 2px solid transparent;
  display: flex; align-items: center; gap: .35rem;
  transition: all .15s;
}
.nav-dropdown-btn:hover { border-bottom-color: var(--red); }
.nav-dropdown-btn svg { transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
  padding: 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  width: 480px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-10px);
  transition: all .25s ease;
  z-index: 50;
  max-height: 70vh; overflow-y: auto;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown-panel:hover {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-col h5 { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--red); margin-bottom: .6rem; }
.nav-dropdown-col { display: flex; flex-direction: column; }
.nav-dropdown-col a { font-size: .85rem; color: var(--dark); padding: .35rem 0; font-weight: 600; }
.nav-dropdown-col a:hover { color: var(--red); }

@media (max-width: 968px) {
  .nav-dropdown-panel { display: none; }
}

/* ── Why-us banner clicable a Sobre Nosotros ── */
.why-banner-link { display: block; cursor: pointer; transition: transform .3s; }
.why-banner-link:hover { transform: translateY(-4px); }
.why-banner-link:hover .why-img img { transform: scale(1.03); }
.why-img img { transition: transform .4s; border-radius: var(--radius); }

/* ── CTA cobertura nacional (naranja marca) ── */
.btn-coverage-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--red); color: var(--dark);
  font-weight: 800; font-size: 1rem;
  padding: 1rem 1.8rem; border-radius: 50px;
  margin-top: 1.2rem;
  box-shadow: 0 10px 30px rgba(228,173,19,.4);
  transition: all .25s;
}
.btn-coverage-cta:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(228,173,19,.5); }

/* ── Contact final: iconos limpios, centrado ── */
.contact-items-final {
  max-width: 560px; margin: 0 auto 2rem;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
}
.contact-items-final .contact-item { justify-content: center; }
.contact-items-final .contact-icon svg { width: 20px; height: 20px; }

/* ── Offset de scroll para que el header flotante no tape las secciones ── */
[id] { scroll-margin-top: calc(var(--header-h) + var(--top-h) + 30px); }

/* ── Services buttons card (estilo "Nuestros servicios" de las páginas de zona) ── */
.services-buttons-card {
  background: var(--bg2);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex; flex-direction: column;
}
.services-buttons-card h4 { font-size: 1.05rem; margin-bottom: .8rem; color: var(--red); }
.service-btn-link {
  font-size: .92rem; font-weight: 700; color: var(--dark);
  padding: .7rem 0; border-bottom: 1px solid #e2e6e6;
  transition: color .2s, padding-left .2s;
}
.service-btn-link:hover { color: var(--red); padding-left: .4rem; }
.service-btn-link.highlight-link { color: var(--dark); border-bottom: 1px solid #e2e6e6; }

/* ── Mobile menu CTA buttons ── */
.mobile-menu-cta { display: flex; flex-direction: row; gap: .6rem; margin-top: .5rem; }
.mobile-menu-cta .btn { padding: .5rem 1.1rem; font-size: .8rem; min-height: auto; justify-content: center; }

/* ── Touch targets ≥44px (accesibilidad móvil) ── */
@media (max-width: 968px) {
  .nav-wa-icon { width: 44px; height: 44px; }
  .hamburger { padding: .5rem; margin: -.5rem; }
  .lang-btn { padding: .5rem .8rem; }
  .city-pill { padding: .65rem 1.1rem; }
}

/* ════════ Ajustes móviles adicionales ════════ */
@media (max-width: 968px) {
  .hero-new { padding: 2rem 0 2.5rem; }
  .hero-new h1 { font-size: 2.1rem; margin-bottom: .5rem; }
  .hero-new .lead { font-size: 1rem; margin-bottom: 1.4rem; }

  /* Header compacto en móvil: logo más pequeño, toggle ES/CA y botón Presupuesto reducidos */
  .nav-logo img { height: 46px; }
  .logo-text { font-size: 1.15rem; }
  .lang-toggle { padding: .15rem; }
  .lang-btn { padding: .35rem .55rem; font-size: .7rem; }
  .nav-cta { gap: .5rem; }
  #navbar .btn-dark { padding: .55rem 1rem; font-size: .8rem; }

  /* Título del formulario más compacto y centrado */
  .cta-banner-form-col { padding: 1.6rem; }
  .cta-banner-form-col h3 { font-size: 1.3rem; text-align: center; }
  .cta-banner-form-col > p.sub { font-size: .85rem; line-height: 1.35; margin-bottom: .8rem; text-align: center; }

  /* Header móvil: quitar botón Presupuesto, altura reducida */
  .nav-cta .btn-dark { display: none; }
  :root { --header-h: 58px; }
  .nav-logo img { height: 34px; }
  .logo-text { font-size: .95rem; }
  .header-main { height: 58px; }
  .nav-inner { height: 58px; }

  /* Texto de privacidad del formulario en una sola línea */
  .form-note { font-size: .68rem; }
  .cta-banner-box, .cta-banner-form-col, .cta-banner-split { min-width: 0; max-width: 100%; overflow-wrap: break-word; }

  /* Imagen galería nosotros: proporciones naturales, ligeramente más pequeña */
  .why-img img { max-width: 82%; }

  /* Botón "Conoce Mudanzas Express" — centrado y más pequeño */
  .why-banner-link .btn-dark {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: .55rem 1.1rem;
    font-size: .82rem;
  }

  /* Botón CTA cobertura — centrado y más pequeño */
  .btn-coverage-cta {
    display: inline-flex;
    width: auto;
    max-width: 90%;
    white-space: normal;
    text-align: center;
    justify-content: center;
    margin: 1rem auto 0;
    padding: .6rem 1.2rem;
    font-size: .82rem;
    line-height: 1.3;
  }

  /* Interlineado más compacto en textos descriptivos de esas secciones */
  .why-banner-link p, #cobertura p { line-height: 1.35; }

  /* Feature cards: descripción en 2 líneas en móvil */
  .feature-card p { font-size: .78rem; line-height: 1.3; }

  /* Teléfono del nav en móvil: oculto (logo centrado, ya está el botón flotante de llamada) */
  .nav-phone-desktop { display: none; }

  /* Ocultar bloque teléfono/email en sección contacto en móvil */
  .contact-items-final { display: none; }

  /* Eliminar espacio vacío sobrante en sección contacto en móvil */
  .contact-section.section { padding-bottom: 2rem; }
}
@media (max-width: 640px) {
  .hero-new h1 { font-size: 1.8rem; }
  .nav-logo img { height: 40px; }
  .logo-text { font-size: 1rem; }
  #navbar .btn-dark { padding: .5rem .85rem; font-size: .75rem; }
}
