/* =========================================================
   Mudanzas Torrejón de Ardoz — Propuesta de rediseño
   Estética de empresa de logística seria y fiable: azul marino
   corporativo + naranja de aviso/energía, tipografía geométrica
   sobria. Sin animaciones juguetonas, radios moderados.
   ========================================================= */

:root {
  /* Marca */
  --navy-900: #081b30;
  --navy-700: #123b66;
  --navy-500: #1f5c99;
  --navy-300: #8fb4de;
  --navy-050: #eaf2fb;

  --orange-700: #c94f14;
  --orange-500: #e8631c;
  --orange-300: #f3a06b;

  /* Neutros — gris azulado, no blanco puro de "app" */
  --ink: #172433;
  --ink-soft: #57667a;
  --line: #dde5ee;
  --bg: #f8fafc;
  --bg-soft: #eef3f8;
  --bg-dark: #081b30;
  --white: #ffffff;

  --radius: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 16px rgba(8, 27, 48, .08);
  --shadow: 0 16px 38px rgba(8, 27, 48, .14);
  --shadow-lg: 0 26px 64px rgba(8, 27, 48, .22);

  --maxw: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 700; letter-spacing: -.01em; }

.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange-600, var(--orange-500));
}
.eyebrow::before { content: ''; width: 24px; height: 3px; border-radius: 2px; background: var(--orange-500); }

.section { padding: clamp(60px, 8vw, 112px) 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 16px 0 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: .96rem;
  padding: 15px 28px; border-radius: var(--radius);
  cursor: pointer; border: 1.5px solid transparent; transition: background .25s var(--ease), color .25s, border-color .25s, transform .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange-500); color: #fff; box-shadow: 0 10px 24px rgba(232, 99, 28, .32); }
.btn-primary:hover { background: var(--orange-700); }
.btn-wa { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-wa:hover { border-color: #25D366; color: #1a8f47; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy-500); color: var(--navy-700); }
.btn svg { width: 19px; height: 19px; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 20px 0; transition: padding .35s var(--ease), background .35s, box-shadow .35s;
}
.header.scrolled { background: rgba(8,27,48,.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 6px 24px rgba(0,0,0,.22); padding: 13px 0; }

/* Header sobre el hero (foto): siempre en tono oscuro, coherente con la marca */
.header--hero::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 150px; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,16,28,.72), rgba(6,16,28,0));
  z-index: 0; transition: opacity .35s;
}
.header--hero.scrolled::before { opacity: 0; }
/* La barra de marca + hamburguesa debe quedar SIEMPRE por encima del panel
   desplegable (aunque esté abierto), si no el botón para cerrarlo queda tapado. */
.header .nav { position: relative; z-index: 5; }
.header .brand { color: #fff; }
/* El header es siempre oscuro (transparente sobre el hero, navy al hacer
   scroll), así que el logo se muestra siempre en blanco para mantener
   contraste en los dos estados. */
.header .brand img { filter: brightness(0) invert(1); }
.header .nav-links > a { color: rgba(255,255,255,.86); }
.header .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.header .btn-ghost:hover { border-color: var(--orange-300); color: var(--orange-300); }
.header .burger { color: #fff; }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; }
.brand img { height: 34px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 600; font-size: .92rem; }
.nav-links > a { transition: color .2s; position: relative; }
.nav-links > a:hover { color: var(--orange-300); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.burger { display: none; position: relative; background: none; border: 0; width: 28px; height: 28px; cursor: pointer; }
.burger svg { position: absolute; inset: 0; margin: auto; width: 100%; height: 100%; transition: opacity .2s; }
.burger .icon-close { opacity: 0; }
.header.menu-open .burger .icon-menu { opacity: 0; }
.header.menu-open .burger .icon-close { opacity: 1; }

/* El panel exterior es el que anima max-height: SIN padding propio, porque el
   padding no se comprime por debajo de max-height y dejaría una barra visible
   tapando la cabecera incluso "cerrado". El padding real vive en .mobile-menu-inner.
   z-index por debajo de .header .nav (5) para que la marca y la hamburguesa
   (que también cierra el menú) queden siempre visibles y pulsables encima. */
.mobile-menu {
  display: none;
  position: fixed; left: 0; right: 0; top: 0; z-index: 2;
  background: var(--bg-dark); box-shadow: var(--shadow-lg);
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.mobile-menu.open { max-height: 100vh; overflow-y: auto; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 2px; padding: 90px 24px 24px; }
.mm-link { padding: 14px 6px; border-bottom: 1px solid rgba(255,255,255,.1); font-weight: 600; color: rgba(255,255,255,.9); font-size: .96rem; }
.mm-cta { justify-content: center; margin-top: 16px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .burger { display: block; }
  .mobile-menu { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end; padding: 150px 0 84px;
  background: linear-gradient(180deg, rgba(6,16,28,.32) 0%, rgba(6,16,28,.5) 45%, rgba(6,16,28,.92) 100%), url('img/main-mudancero.jpg') center 22% / cover no-repeat;
}
.hero-inner { position: relative; z-index: 1; color: #fff; max-width: 680px; }
.hero .eyebrow { color: var(--orange-300); }
.hero .eyebrow::before { background: var(--orange-300); }
.hero h1 { font-size: clamp(2.2rem, 5.6vw, 3.7rem); margin: 20px 0 18px; }
.hero h1 em { font-style: normal; color: var(--orange-300); }
.hero .lead { font-size: 1.12rem; color: rgba(255,255,255,.86); max-width: 540px; margin-bottom: 30px; font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.hero .btn-ghost:hover { border-color: var(--orange-300); color: var(--orange-300); }
.hero .btn-wa { color: #fff; border-color: rgba(255,255,255,.4); }
.hero .btn-wa:hover { border-color: #25D366; color: #4ee08a; }
.hero-since { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.68); font-size: .88rem; letter-spacing: .02em; flex-wrap: wrap; row-gap: 8px; }
.hero-since b { color: var(--orange-300); font-family: var(--font-display); font-size: 1.08rem; }
.hero-since .div { width: 1px; height: 20px; background: rgba(255,255,255,.3); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- La empresa (texto + foto) ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text .section-head { margin-bottom: 28px; }
.about-text > p { color: var(--ink-soft); margin-bottom: 24px; font-size: 1.02rem; }
.trait-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.trait { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.trait .num { font-family: var(--font-display); font-size: 1.05rem; color: var(--orange-500); font-weight: 800; flex-shrink: 0; width: 28px; }
.trait h4 { font-size: 1rem; margin-bottom: 4px; }
.trait p { color: var(--ink-soft); font-size: .92rem; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 34px; } .about-photo { aspect-ratio: 16/9; } }

.zones { background: var(--bg-soft); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }

/* ---------- Servicios ---------- */
.serv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.serv {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.serv:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--navy-300); }
.serv .ico { width: 48px; height: 48px; border-radius: 13px; background: var(--navy-050); color: var(--navy-700); display: grid; place-items: center; margin-bottom: 16px; }
.serv .ico svg { width: 24px; height: 24px; }
.serv h3 { font-size: 1.08rem; margin-bottom: 8px; }
.serv p { color: var(--ink-soft); font-size: .92rem; }

/* ---------- Proceso (cómo trabajamos) ---------- */
.proceso-list { counter-reset: paso; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; }
.paso { position: relative; padding: 8px 10px 8px 0; }
.paso::before {
  counter-increment: paso; content: counter(paso, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--navy-300);
  display: block; margin-bottom: 10px;
}
.paso h4 { font-size: 1.02rem; margin-bottom: 6px; }
.paso p { color: var(--ink-soft); font-size: .9rem; }

/* ---------- Guardamuebles destacado ---------- */
.feature-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 50px; align-items: center; background: var(--bg-dark); border-radius: var(--radius-lg); overflow: hidden; }
.feature-split-photo { height: 100%; min-height: 320px; }
.feature-split-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-split-text { padding: 40px 44px 40px 0; color: #fff; }
.feature-split-text .eyebrow { color: var(--orange-300); }
.feature-split-text .eyebrow::before { background: var(--orange-300); }
.feature-split-text h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 14px 0 16px; }
.feature-split-text p { color: rgba(255,255,255,.78); margin-bottom: 22px; font-size: 1rem; }
.feature-list { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.9); font-size: .94rem; }
.feature-list li::before { content: '✓'; color: var(--orange-300); font-weight: 800; flex-shrink: 0; }
@media (max-width: 880px) { .feature-split { grid-template-columns: 1fr; } .feature-split-photo { min-height: 220px; } .feature-split-text { padding: 8px 24px 40px; } }

/* ---------- Stats ---------- */
.stats { background: var(--bg-dark); border-radius: var(--radius-lg); padding: 46px 30px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat { border-right: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border-right: 0; }
.stats .num { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 800; color: var(--orange-300); }
.stats .lbl { color: rgba(255,255,255,.62); font-size: .85rem; margin-top: 8px; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 18px; } }

/* ---------- Galería ---------- */
.gallery-teaser { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.gallery-teaser figure, .gallery figure { border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-teaser img, .gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-teaser figure:hover img, .gallery figure:hover img { transform: scale(1.05); }
@media (max-width: 900px) { .gallery-teaser { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery-teaser { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Info práctica ---------- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.info-item { padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.info-item h4 { font-size: .98rem; margin-bottom: 8px; }
.info-item p { color: var(--ink-soft); font-size: .9rem; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: stretch; }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 46px);
}
.contact-card .eyebrow { margin-bottom: 16px; }
.contact-card h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 14px; }
.contact-card > p { color: var(--ink-soft); margin-bottom: 26px; }
.contact-line { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-line .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--navy-050); color: var(--navy-700); display: grid; place-items: center; flex: 0 0 auto; }
.contact-line .ico svg { width: 20px; height: 20px; }
.contact-line small { display: block; color: var(--ink-soft); font-size: .8rem; }
.contact-line b { font-size: 1rem; font-weight: 700; }
.contact-actions { display: flex; gap: 12px; margin: 26px 0 4px; flex-wrap: wrap; }

.map-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 320px; }
.map-card iframe { width: 100%; height: 100%; border: 0; min-height: 320px; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- CTA final ---------- */
.cta-final { background: var(--bg-dark); }
.cta-box { text-align: center; color: #fff; }
.cta-box .eyebrow { justify-content: center; color: var(--orange-300); }
.cta-box .eyebrow::before { background: var(--orange-300); }
.cta-box h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 14px 0; }
.cta-box p { color: rgba(255,255,255,.72); max-width: 520px; margin: 0 auto 28px; }
.cta-box .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.cta-box .btn-ghost:hover { border-color: var(--orange-300); color: var(--orange-300); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.68); padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h5 { color: #fff; font-family: var(--font-display); font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; font-weight: 700; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: var(--orange-300); }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand img { filter: brightness(0) invert(1); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Llamar flotante ---------- */
/* Botón de llamada directa, no WhatsApp: el negocio no publica número de
   WhatsApp Business (ver config.js), así que en móvil el CTA persistente debe
   ser "llamar" (tel:), que sí funciona siempre con un toque. */
.call-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: var(--orange-500); color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(232,99,28,.45);
  border: 1.5px solid rgba(255,255,255,.25); transition: transform .3s var(--ease);
}
.call-float:hover { transform: scale(1.06); background: var(--orange-700); }
.call-float svg { width: 26px; height: 26px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(6,16,28,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 86vh; border-radius: 8px; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  width: 44px; height: 44px; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.2); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

@media (max-width: 720px) {
  .hero { padding-top: 96px; }
}

/* =========================================================
   valor.html — resumen de propuesta comercial (no forma
   parte de la web pública, solo para reenviar al cliente)
   ========================================================= */
.header .nav .valor-nav-cta .btn-ghost,
.header .nav .valor-nav-cta .btn-primary { display: inline-flex; }

.valor-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, #0d3a63 100%);
  color: #fff; padding: 64px 0 56px; position: relative; overflow: hidden;
}
.valor-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; }
.valor-badge {
  display: inline-block; font-family: var(--font-display); font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 8px 18px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); margin-bottom: 20px;
}
.valor-hero h1 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.15; margin-bottom: 18px; }
.valor-hero h1 em { font-style: normal; color: var(--orange-300); }
.valor-hero p.lead { color: rgba(255,255,255,.88); font-size: 1.05rem; max-width: 56ch; margin: 0 auto 28px; }
.valor-hero .hero-actions { justify-content: center; }
.valor-hero .btn-ghost,
.valor-hero .btn-wa { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35); }
.valor-hero .btn-ghost:hover,
.valor-hero .btn-wa:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.valor-tip { margin-top: 22px; font-size: .85rem; color: rgba(255,255,255,.7); }

.valor-try { background: var(--navy-050); text-align: center; padding: 40px 0; }
.valor-try p { max-width: 60ch; margin: 0 auto 18px; color: var(--ink-soft); }

.valor-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 700px) { .valor-stats { grid-template-columns: repeat(4, 1fr); } }
.valor-stat { text-align: center; padding: 22px 14px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.valor-stat strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--navy-700); line-height: 1; }
.valor-stat span { display: block; font-size: .78rem; color: var(--ink-soft); margin-top: 8px; line-height: 1.35; }

.valor-compare { display: grid; gap: 20px; }
@media (min-width: 800px) { .valor-compare { grid-template-columns: 1fr 1fr; } }
.valor-col { border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--line); }
.valor-col--old { background: #f6f6f4; }
.valor-col--new { background: linear-gradient(180deg, var(--navy-050), #fff); border-color: var(--navy-300); box-shadow: var(--shadow-sm); }
.valor-col h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 16px; }
.valor-col--old h3 { color: #71716b; }
.valor-col--new h3 { color: var(--navy-900); }
.valor-col ul { list-style: none; display: grid; gap: 2px; }
.valor-col li { font-size: .92rem; line-height: 1.5; padding: 10px 0 10px 26px; position: relative; border-bottom: 1px solid rgba(0,0,0,.06); color: var(--ink-soft); }
.valor-col li:last-child { border-bottom: 0; }
.valor-col--old li::before { content: '−'; position: absolute; left: 0; color: #a3a39c; font-weight: 700; }
.valor-col--new li::before { content: '✓'; position: absolute; left: 0; color: var(--navy-700); font-weight: 700; }

.valor-feature { padding: 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); height: 100%; }
.valor-feature-ico { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--navy-050); color: var(--navy-700); margin-bottom: 14px; font-size: 1.3rem; }
.valor-feature h4 { font-family: var(--font-display); font-size: 1.02rem; margin-bottom: 8px; }
.valor-feature p { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; }

.valor-roi { border-radius: var(--radius-lg); padding: 44px 28px; text-align: center; background: linear-gradient(135deg, var(--orange-700), var(--orange-500)); color: #fff; }
.valor-roi h2 { color: #fff; margin-bottom: 14px; }
.valor-roi p { max-width: 52ch; margin: 0 auto 26px; color: rgba(255,255,255,.95); font-size: 1.02rem; line-height: 1.6; }
.valor-roi .btn-ghost { background: #fff; color: var(--orange-700); border-color: #fff; }

.valor-deliver { list-style: none; display: grid; gap: 10px; max-width: 460px; margin: 0 auto 26px; text-align: left; }
.valor-deliver li { font-size: .92rem; color: var(--ink-soft); padding-left: 26px; position: relative; line-height: 1.45; }
.valor-deliver li::before { content: '✓'; position: absolute; left: 0; color: var(--navy-700); font-weight: 700; }
.valor-price { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--navy-900); margin: 6px 0 2px; }

.valor-footer { text-align: center; padding: 32px 0; font-size: .85rem; color: var(--ink-soft); border-top: 1px solid var(--line); }

@media (max-width: 640px) {
  .header .nav { flex-wrap: wrap; justify-content: center; row-gap: 12px; }
  .header .brand { width: 100%; justify-content: center; }
  .valor-nav-cta { width: 100%; justify-content: center; gap: 10px; }
  .valor-nav-cta .btn { padding: 10px 16px; font-size: .82rem; }
  .valor-hero { padding-top: 148px; }
}
