/**
 * custom.css — Estilos del rediseño Figma (node 238:1738) "Lacambra IWM Home".
 * Extraído desde la vista standalone app/Views/test-figma.php.
 */

:root {
  --c-primary: #0d3860;
  --c-text: #1e1e1e;
  --c-muted: #696969;
  --c-mid:   #414141;
  --c-line:  #c7c7c7;
  --c-bg-soft: #f9f9f9;
  --c-bg-soft2: #f6f6f6;
  --c-dark: #272727;
  --c-green: #009d58;
  --grad-btn: linear-gradient(-44deg, #6d6d6d 4%, #727272 32%, #3b3b3b 50%, #5c5c5c 78%);
  --grad-footer-bottom: linear-gradient(-7deg, #6d6d6d 4%, #727272 32%, #3b3b3b 50%, #5c5c5c 78%);
  --font-body: 'Open Sans', system-ui, sans-serif;
  --font-h:   'Saira Expanded', 'Saira', system-ui, sans-serif;
  --font-num: 'Saira', system-ui, sans-serif;

  /* Ancho de página (única fuente de verdad) */
  --w-page:    1440px;   /* ancho máximo de toda sección y grid */
  --pad-x:     80px;     /* padding lateral desktop */
  --pad-x-sm:  24px;     /* padding lateral mobile/tablet */
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container,
.container-wide {
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
@media (max-width: 992px) {
  .container,
  .container-wide { padding: 0 var(--pad-x-sm); }
}
/* ---------- Header ---------- */
.topbar {
  background: #fff;
  border-bottom: 1px solid #f4f4f4;
  font-size: 13px;
  color: var(--c-muted);
}
.topbar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  height: 46px;
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}
.topbar__item svg { width: 18px; height: 18px; opacity: .7; }

.mainnav {
  background: #fff;
  border-bottom: 1px solid #f4f4f4;
}
.mainnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 71px;
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.mainnav__logo img { height: 60px; width: auto; }
.mainnav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #323232;
  transition: all .3s ease-in-out;
}
.mainnav__cta {
  background: #393939;
  color: #fff;
  padding: 10px 22px;
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}
.mainnav__cta:hover, .mainnav__cta:active, .mainnav__cta:focus {
  color: white !important;
  opacity: .9 !important;
  background-color: #393939;
}
.mainnav__menu a:hover, .mainnav__menu a:active, .mainnav__menu a:focus {
  opacity: .8 !important;
}

/* Botón hamburguesa: oculto en desktop, visible al colapsar el menú */
.mainnav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.mainnav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--c-primary);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.mainnav__toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mainnav__toggle.is-open span:nth-child(2) { opacity: 0; }
.mainnav__toggle.is-open span:nth-child(3) { transform: translateY(-13px) rotate(-45deg); }
/* CTA Contacto dentro del menú móvil — sólo visible en breakpoint móvil */
.mainnav__menu-cta { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 696px;
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}
@media(max-width:1025px) {
  .hero {
    background-position: center !important;
  }
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,.6) 100%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: var(--w-page); margin: 0 auto; padding: 0 var(--pad-x); width: 100%; }
.hero__title {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.25;
  letter-spacing: -1.44px;
  margin: 0 0 32px;
  max-width: 660px;
  background: linear-gradient(-75deg, #999 14%, #fff 98%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn-grad, .cta-banner__pill {
  position: relative; 
  z-index: 1;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 223px;
  padding: 12px 18px;
  background: var(--grad-btn);
  border: none;
  box-shadow: inset 0 0 0 0.25px #FFFFFF;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .3px;
  cursor: pointer;
  transition: border-color 0.4s ease;
}
.cta-banner__pill {
  min-width: auto !important;
}
.btn-grad::before, .cta-banner__pill:before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #444444 0%, #727272 50%, #444444 100%);
  z-index: -1;
  opacity: 0; 
  transition: opacity 0.6s ease-in-out; 
  box-shadow: inset 0 0 0 0.25px #bbbbbb;
}
.btn-grad:hover::before, .btn-grad:active::before, .btn-grad:focus::before, .cta-banner__pill:hover::before, .cta-banner__pill:active::before, .cta-banner__pill:focus::before {
  opacity: 1;
}
.btn-grad:hover, .btn-grad:active, .btn-grad:focus, .cta-banner__pill:hover, .cta-banner__pill:active, .cta-banner__pill:focus {
  border-color: #bbbbbb;
  color: #fff;
}
.btn-grad--saira {
  font-family: 'Saira';
  font-weight: 500;
  text-transform: none;
}
.btn-grad__arrow { font-size: 25px; line-height: 1; margin-top:-4px; }

/* ---------- Stats ---------- */
.stats {
  background: var(--c-bg-soft);
  padding: 56px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats__num {
  font-family: var(--font-num);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -1.6px;
  color: var(--c-primary);
  margin: 0 0 8px;
}
.stats__label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -1.08px;
  color: var(--c-mid);
}

/* ---------- Section base ---------- */
.section { padding: 80px 0; }
.section__heading {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: -1.08px;
  color: var(--c-primary);
  text-align: center;
  margin: 0 0 24px;
}
.section__lead {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--c-mid);
  font-size: 16px;
}
.section--soft { background: var(--c-bg-soft2); }

/* ---------- About ---------- */
.about__copy {
  max-width: 851px;
  margin: 0 auto 32px;
  text-align: center;
  color: #000;
  font-size: 16px;
  letter-spacing: -.64px;
}
.about__copy p + p { margin-top: 16px; }
.about__cta { display: flex; justify-content: center; }

/* ---------- Productos / Servicios cards ---------- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.product-card {
  background: #fff;
  border: .5px solid var(--c-line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card__media {
  height: 378px;
  background: #ddd center/cover no-repeat;
}
.product-card__body {
  padding: 24px 32px 32px;
  text-align: center;
}
.product-card__title {
  font-family: 'Saira', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.44px;
  color: var(--c-mid);
  margin: 0 0 8px;
}
.product-card__desc {
  color: var(--c-muted);
  font-size: 14px;
  margin: 0 auto 24px auto;
  width: 90%;
}

/* ---------- Ventajas (4 col) ---------- */
.ventajas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 80px;
  max-width: 920px;
  margin: 0 auto;
}
.ventaja {
  text-align: center;
}
.ventaja__icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 16px;
  color: var(--c-primary);
}
.ventaja__title {
  font-family: 'Saira', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -.4px;
  color: #1c1c1c;
  margin: 0 0 8px;
}
.ventaja__desc {
  max-width: 370px;
  margin: 0 auto;
  color: var(--c-muted);
  font-size: 14px;
}

/* ---------- Sectores (2x2 cards con bg-image) ---------- */
.sectores__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
/* Cuando el grid ya está dentro de un wrapper con padding (home), no doblar el padding lateral */
:where(.container, .container-wide) > .sectores__grid {
  padding-left: 0;
  padding-right: 0;
}
.sector-card {
  position: relative;
  height: 317px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 24px;
  background-size: cover;
  background-position: center;
}
.sector-card::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
}
.sector-card > * { position: relative; z-index: 1; }
.sector-card__title {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.4px;
  margin: 0 0 16px;
  color: white;
}
.sector-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.75;
}
.sector-card__icon {
  height:35px;
  width:auto;
  margin-bottom:15px;
}

/* ---------- CTA Sector banner ---------- */
.cta-banner {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  /* background: rgba(0,0,0,.78); */
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner__title {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -.72px;
  margin: 0 0 20px;
  color: white;
}
.cta-banner__copy {
  max-width: 549px;
  margin: 0 auto 24px;
  font-size: 14px;
}
.cta-banner--final .cta-banner__title { font-size: 36px; line-height: 1.25; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-banner--final .cta-banner__copy  { max-width: 549px; font-size: 16px; }
.cta-banner__pill svg {
  width: 18px;
  height:18px;
}

/* ---------- Presencia internacional ---------- */
.mapa {
  position: relative;
  max-width: 1028px;
  margin: 0 auto;
}
.mapa img { width: 100%; height: auto; }
.mapa__pin {
  position: absolute;
  font-family: 'Saira', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--c-green);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.mapa__pin::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  margin-right: 6px;
  background: var(--c-green);
  border-radius: 50%;
  vertical-align: -2px;
  box-shadow: 0 0 0 4px rgba(0,157,88,.2);
}
/* aproximaciones de coordenadas relativas % sobre el mapa */
.pin--es  { left: 47%;  top: 32%; }
.pin--uk  { left: 45%;  top: 22%; }
.pin--de  { left: 52%;  top: 26%; }
.pin--it  { left: 53%;  top: 32%; }
.pin--kz  { left: 70%;  top: 28%; }
.pin--ca  { left: 23%;  top: 25%; }
.pin--us  { left: 24%;  top: 39%; }
.pin--cu  { left: 26%;  top: 46%; }
.pin--ve  { left: 33%;  top: 53%; }
.pin--cl  { left: 28%;  top: 70%; }
.pin--uy  { left: 36%;  top: 75%; }

/* ---------- Clientes ---------- */
.clientes__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 32px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}
.clientes__grid img {
  width: 100%;
  height: 74px;
  object-fit: contain;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--c-dark);
  color: #fff;
  padding: 72px 0 56px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2.7fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.footer__logo { margin-bottom: 34px; height: 46px; width: auto; }
.footer h4 {
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 16px;
  color:white;
}
.footer ul { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.footer ul li { line-height: 2.28; }
.footer__address, .footer__contact { font-size: 14px; line-height: 1.6; display:flex; align-items:start; }
.footer__address img, .footer__contact img {
  margin-top:3px;margin-right:10px;
}
.footer__contact.first { margin-top: 40px; }
.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  max-width: var(--w-page);
  padding: 0 115px;
  margin: 0px auto 0;
}
.footer__social a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.footer__bottom {
  background: var(--grad-footer-bottom);
  color: #fff;
  font-size: 12px;
  padding: 8px 0;
  text-align: left;
}
#mainnav-menu a {
  transition: all .3s ease-in-out;
}
#mainnav-menu a:hover, #mainnav-menu a:active, #mainnav-menu a:focus {
  background-color: transparent;
  color: #393939;
  opacity: .9;
}
/* ---------- Responsive (degradación simple) ---------- */
@media (max-width: 992px) {
  .stats__grid          { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .products__grid,
  .ventajas__grid,
  .sectores__grid       { grid-template-columns: 1fr; }
  .sectores__grid       { padding: 0 0; }
  .clientes__grid       { grid-template-columns: repeat(3, 1fr); }
  .footer__inner        { grid-template-columns: 1fr 1fr; }
  .topbar__inner,
  .mainnav__inner       { padding: 0 var(--pad-x-sm); }
  .hero__inner          { padding: 0 var(--pad-x-sm); }
  .hero__title          { font-size: 36px; }
  .section              { padding: 64px 0; }
}
/* Breakpoint en el que el menú deja de caer cómodo: hamburguesa */
@media (max-width: 900px) {
  .mainnav__inner       { position: relative; }
  .mainnav__toggle      { display: flex; margin-left: auto;}
  .mainnav__cta         { display: none; }
  .mainnav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid #f4f4f4;
    border-bottom: 1px solid #f4f4f4;
    box-shadow: 0 8px 16px rgba(0,0,0,.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    z-index: 100;
  }
  .mainnav__menu.is-open { max-height: 480px; box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; }
  .mainnav__menu a {
    padding: 14px 24px;
    border-bottom: 1px solid #f4f4f4;
    transition: all .3s ease-in-out;
  }
  .mainnav__menu a:hover, .mainnav__menu a:active, .mainnav__menu a:focus {
    background-color: #393939 !important;
    color: white !important
  }
  .mainnav__menu a:last-child { border-bottom: 0; }
  .mainnav__menu-cta {
    display: block;
    background: var(--c-primary);
    color: #fff;
    margin-top: 4px;
    text-align: center;
    margin-left:24px;
    margin-bottom:14px;
    margin-top: 14px;
    width: fit-content;
  }
}
@media (max-width: 600px) {
  .clientes__grid       { grid-template-columns: repeat(2, 1fr); }
  .footer__inner        { grid-template-columns: 1fr; padding: 0 24px; }
  .footer > .contenedor, .footer__bottom > div { padding: 0  24px !important; }
  .footer__social       { padding: 0 24px; justify-content: flex-start;margin-top:20px; }
  .topbar__inner        { gap: 12px; flex-wrap: wrap; justify-content: center; height: auto; padding: 8px 16px; }
}
div.space-15 {
  height: 15px;
}

/* RESPONSIVE TEXTOS */
@media(max-width:767px) and (min-width:681px) {
  .section__heading, .cta-banner__title {
    font-size: 30px !important;
  }
}
@media(max-width:680px) {
  .section__heading, .cta-banner__title {
    font-size: 26px !important;
    margin: 0 0 12px !important;
  }
}
/* MENÚ */
.container-menu {
  display:flex;
  gap:40px;
}
a:hover, a:active, a:focus {
  color: #393939;
  background-color: transparent;
}
.topbar__item a {
  transition: all .3s ease-in-out;
}
.mainnav__menu a {
  line-height: 1;
}
.mainnav__menu a.is-active {
  border-bottom: 1px solid #323232;
}
.topbar__item a:hover, .topbar__item a:active, .topbar__item a:focus {
  text-decoration: underline;
}
@media(max-width:1100px) and (min-width:901px) {
  .mainnav__logo img {
    height: 40px !important;
  }
}
@media(max-width:1020px) and (min-width:993px) {
    #mainnav-menu a {
        font-size: 13px !important;
    }
}
@media(max-width:900px) {
  .mainnav__logo img {
    height: 55px !important;
  }
}
@media(max-width:900px) {
  .mainnav__menu a.is-active {
    text-decoration: none !important;
    background: #393939 !important;
    color: white !important;
  }
}
@media(min-width:466px) {
  .topbar.mvl {
    display: none !important;
  }
}
@media(max-width:465px) {
  .topbar.desktop {
    display: none !important;
  }
  .topbar.mvl .topbar__inner {
    justify-content: end;
    gap: 20px;
  }
  .topbar.mvl {
    padding: 0 14px;
  }
  .topbar.mvl .topbar__inner a img {
    transition: all .3s ease-in-out;
  } 
  .topbar.mvl .topbar__inner a:hover img, .topbar.mvl .topbar__inner a:active img, .topbar.mvl .topbar__inner a:focus img  {
    filter: brightness(0.5);
  }
}
.footer__contact a, .footer__inner a {
  transition: all .3s ease-in-out;
}
.footer__contact a:hover, .footer__contact a:active, .footer__contact a:focus, 
.footer__inner a:hover, .footer__inner a:active, .footer__inner a:focus {
  color: white !important;
  opacity: .9;
  text-decoration: underline;
}
.footer__bottom div {
    margin: 0 auto;
    padding: 0 var(--pad-x);
    max-width: var(--w-page);
}
#modal_cookies button#btnaceptar, #modal_cookies #btnaceptartodo, #modal_cookies #btnrechazartodo {
  font-size: 14px !important;
}
.footer__inner a {
  line-height: 1.3 !important;
}

/* =====================================================
   Breadcrumb global (partial: partials/breadcrumbs.php)
   Se coloca justo debajo del nav y sobre el hero/contenido.
   Mantenerse en gris, en minúsculas (sin uppercase), suave.
   ===================================================== */
.crumbs {
  background: #fff;
  border-bottom: 1px solid #f4f4f4;
}
.crumbs__inner {
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: var(--c-muted);
  text-transform: none;
}
.crumbs__link {
  color: var(--c-muted);
  transition: color .2s ease-in-out;
}
.crumbs__link:hover,
.crumbs__link:focus,
.crumbs__link:active {
  color: var(--c-primary);
  text-decoration: underline;
}
.crumbs__sep {
  color: var(--c-line);
  user-select: none;
}
.crumbs__current {
  color: var(--c-mid);
  font-weight: 600;
}
@media (max-width: 992px) {
  .crumbs__inner { padding-left: var(--pad-x-sm); padding-right: var(--pad-x-sm); }
}
@media (max-width: 600px) {
  .crumbs__inner { font-size: 12px; padding-top: 10px; padding-bottom: 10px; gap: 6px; }
}

/* =====================================================
   Página: Fabricación a Medida (estaticas/fabricacion-a-medida.php)
   Diseño Figma node 238:1271
   ===================================================== */

/* Hero — variante alineada a la izquierda con CTA inline */
.hero--medida { min-height: 543px; }
.hero--medida .hero__title { font-size: 48px; max-width: 705px; margin-bottom: 24px; }
.hero--medida .hero__sub {
  color: #fff;
  max-width: 460px;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 32px;
}

/* Beneficios — 4 features bajo el hero */
.beneficios { background: #fff; padding: 64px 0; }
.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.beneficio__icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 15px;
  color: var(--c-primary);
}
.beneficio__icon svg { width: 100%; height: 100%; display: block; }
.beneficio__title {
  font-family: 'Saira', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -.54px;
  color: #010101;
  margin: 0 0 10px;
}
.beneficio__desc {
  color: #414141;
  font-size: 14px;
  max-width: 250px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ¿Cuándo Necesita una Lavadora a Medida? — imagen + texto + CTA */
.cuando { background: var(--c-bg-soft); }
.cuando__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.cuando__img {
  height: 421px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}
.cuando__title {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.25;
  color: #414141;
  margin: 0 0 24px;
  letter-spacing: -1.08px;

}
.cuando__copy {
  color: var(--c-muted);
  font-size: 16px;
  letter-spacing: -.64px;
  margin: 0 0 32px;
}
.cuando__copy p + p { margin-top: 16px; }

/* Variante compacta de btn-grad */
.btn-grad--sm { min-width: 139px; padding: 12px 18px; }

/* FAQ */
.faq { padding: 80px 0; }
.faq__inner {
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.faq__heading {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -.72px;
  color: var(--c-primary);
  margin: 0 0 24px;
}
.faq__intro { color: var(--c-muted); font-size: 16px; line-height: 1.6; }
.faq__list { list-style: none; margin: 0; padding: 0; }
.faq__item { border-bottom: 1px solid #d4d4d4; }
.faq__item:first-child { border-top: 1px solid #d4d4d4; }
.faq__btn {
  width: 100%;
  background: none;
  border: 0;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Saira', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -.36px;
  color: #1c1c1c;
  line-height: 1.35;
}
.faq__btn::after {
  content: '';
  width: 12px;
  height: 7px;
  flex: 0 0 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7'><path d='M1 1l5 5 5-5' stroke='black' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7'><path d='M1 1l5 5 5-5' stroke='black' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  transition: transform .25s ease;
}
.faq__item.is-open .faq__btn::after { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.6;
}
.faq__answer p { margin: 0 0 22px; }

/* Sectores — variante con fondo soft (reutiliza .sectores__grid / .sector-card) */
.sectores--medida { background: var(--c-bg-soft); }

/* Confianza / Testimonios */
.testimonios { padding: 80px 0; }
.testimonios--bg-soft  { background: var(--c-bg-soft); }
.testimonios--bg-soft2 { background: var(--c-bg-soft2); }
.testimonios__head { text-align: center; margin: 0 auto 40px; padding: 0 24px; }
.testimonios__lead { color: var(--c-muted); font-size: 16px; line-height: 1.6; max-width: 784px; margin: 0 auto; }
.testimonios__grid {
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.testimonio {
  background: #fff;
  border: 1px solid #bcbcbc;
  border-radius: 6px;
  padding: 28px;
  transition: background-color 0.2s ease;
}
.testimonio:hover { background: var(--c-bg-soft); }
.testimonio--ancho { grid-column: span 3; }
.testimonio--peq   { grid-column: span 2; }

/* Variante para 3 testimonios: 3 columnas iguales, sin huecos */
.testimonios__grid--3 { grid-template-columns: repeat(3, 1fr); }
.testimonios__grid--3 .testimonio { grid-column: span 1; }

/* Toggle "Ver más" / "Ver menos" para testimonios extra (a partir del 6º) */
.testimonios__grid .testimonio.is-hidden { display: none; }
.testimonios__grid.is-expanded .testimonio.is-hidden { display: block; }

/* Enlace dentro del texto del testimonio */
.testimonio__link {
  display: inline-block;
  margin-top: 6px;
  color: var(--c-primary);
  text-decoration: underline;
  font-weight: 600;
}
.testimonio__stars { display: flex; gap: 4px; color: #ffb800; margin-bottom: 14px; }
.testimonio__stars svg { width: 18px; height: 18px; }
.testimonio__text { color: #878787; font-size: 14px; line-height: 1.55; margin: 0 0 22px; }
.testimonio__autor { display: flex; align-items: center; gap: 12px; }
.testimonio__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #c2c2c2, #8a8a8a);
  flex: 0 0 38px;
}
.testimonio__nombre { font-family: 'Open Sans', sans-serif; font-weight: 700; color: #404040; font-size: 14px; line-height: 1.3; }
.testimonio__cargo  { font-size: 13px; color: #878787; line-height: 1.3; }
.testimonios__more  { display: flex; justify-content: center; margin-top: 32px; }

/* Botón secundario "Ver más" */
.btn-outline {
  background: #f7f7f7;
  border: 1px solid #000;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 12px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-outline__arrow { font-size: 18px; line-height: 1; }

/* Presupuesto — formulario + tarjeta lateral */
.presupuesto { background: var(--c-bg-soft); padding: 80px 0; }
.presupuesto__head { text-align: center; margin: 0 auto 40px; padding: 0 24px; }
.presupuesto__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  align-items: start;
}
.form-card { background: transparent; display: grid; gap: 16px; }
.form-row--pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-family: 'Open Sans', sans-serif; font-weight: 700; color: #6a6a6a; font-size: 14px; }
.form-row input,
.form-row textarea {
  background: #fff;
  border: 1px solid #bcbcbc;
  border-radius: 6px;
  padding: 14px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #1c1c1c;
  width: 100%;
}
.form-row textarea { min-height: 124px; resize: vertical; }
.form-row input::placeholder,
.form-row textarea::placeholder { color: #b8b8b8; }
.form-card__submit { display: flex; margin-top: 6px; }
.form-card__alert {
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.form-card__alert--success { background: #e7f5e1; border: 1px solid #58983d; color: #2c5e1e; }
.form-card__alert--error   { background: #fdecea; border: 1px solid #d93025; color: #8a1c14; }

.info-card {
  background: #fff;
  border: 1px solid #bcbcbc;
  border-radius: 6px;
  padding: 36px 36px 40px;
}
.info-card__title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -1px;
  color: #1c1c1c;
  margin: 0 0 18px;
  line-height: 1.3;
}
.info-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: #6a6a6a;
  font-weight: 600;
  font-size: 17px;
}
.info-card__row a { text-decoration: underline; }
.info-card__row svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--c-primary); }
.info-card__sep { height: 1px; background: #d4d4d4; margin: 26px 0; }

/* Responsive de la página */
@media (max-width: 992px) {
  .beneficios__grid    { grid-template-columns: repeat(2, 1fr); padding: 0 var(--pad-x-sm); }
  .cuando__grid        { grid-template-columns: 1fr; gap: 32px; padding: 0 var(--pad-x-sm); }
  .faq__inner          { grid-template-columns: 1fr; gap: 32px; padding: 0 var(--pad-x-sm); }
  .presupuesto__grid   { grid-template-columns: 1fr; padding: 0 var(--pad-x-sm); }
  .testimonios__grid   { grid-template-columns: 1fr; padding: 0 var(--pad-x-sm); }
  .testimonio--ancho,
  .testimonio--peq     { grid-column: span 1; }
}
@media (max-width: 600px) {
  .beneficios__grid              { grid-template-columns: 1fr; }
  .hero--medida .hero__title     { font-size: 32px; }
  .cuando__title, .faq__heading  { font-size: 26px; }
  .form-row--pair                { grid-template-columns: 1fr; }
}

/* ---------- Catálogo de Lavadoras ---------- */
.hero--catalogo { min-height: 543px; background-position: center; }
.hero--catalogo .hero__title { font-size: 48px; max-width: 660px; margin-bottom: 20px; }
.hero--catalogo .hero__sub {
  max-width: 435px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 28px;
}
.btn-grad--cta-hero { min-width: 195px; gap: 10px; }
.btn-grad--cta-hero svg { color: #fff; opacity: .9; flex-shrink: 0; }

.features-cat { background: #fff; padding: 56px 0 64px; }
.features-cat__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.features-cat__icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 18px;
  color: var(--c-primary);
}
.features-cat__icon svg { width: 100%; height: 100%; display: block; }
.features-cat__title {
  font-family: 'Saira', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -.54px;
  color: #010101;
  margin: 0 0 6px;
}
.features-cat__desc {
  max-width: 250px;
  margin: 0 auto;
  color: var(--c-mid);
  font-size: 14px;
  line-height: 1.45;
}

.catalogo .container-wide { max-width: var(--w-page); }
.catalogo .section__heading { margin-bottom: 25px; }
.catalogo .section__lead { max-width: 600px; margin-bottom: 56px; }

.lavadoras__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  max-width: var(--w-page);
  margin: 0 auto;
}
.lavadora-card {
  background: #fff;
  border: .5px solid var(--c-line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.lavadora-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.lavadora-card__media {
  position: relative;
  display: block;
  height: 187px;
  background: #1d1d1f;
  overflow: hidden;
}
.lavadora-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.lavadora-card:hover .lavadora-card__media img { transform: scale(1.04); }
.lavadora-card__badge {
  position: absolute;
  top: 12px;
  left: 16px;
  background: #00ae62;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 22px;
  line-height: 1.2;
  letter-spacing: .2px;
}
.lavadora-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 175px;
}
.lavadora-card__title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.36;
  color: var(--c-mid);
  margin: 0 0 10px;
}
.lavadora-card__desc {
  color: var(--c-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 20px;
}
.lavadora-card__link {
  margin-top: auto;
  align-self: flex-start;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s ease-in-out;
}
.lavadora-card__link span.text-lavadora {
  text-decoration: underline;
  text-underline-offset: 0.5px;
}
.lavadora-card__link:hover { color: var(--c-primary); }
.lavadora-card__arrow { font-size: 20px; line-height: 1; text-decoration: none !important; margin-top:3px; }

.cta-banner--medida { padding: 96px 24px; }
.cta-banner--medida .cta-banner__copy { font-size: 16px; }

@media (max-width: 1024px) {
  .features-cat__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .lavadoras__grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero--catalogo .hero__title { font-size: 36px; }
  .features-cat                { padding: 40px 0 48px; }
  .features-cat__grid          { grid-template-columns: 1fr; gap: 32px; }
  .lavadoras__grid             { grid-template-columns: 1fr; gap: 24px; }
  .lavadora-card__media        { height: 200px; }
}

/* =====================================================================
   Quiénes Somos — Hero, tag historia y grid de capacidades
   ===================================================================== */

/* Hero "Quiénes somos" — overlay oscuro sobre imagen industrial */
.hero--quienes {
  min-height: 543px;
  background-position: center;
  background-size: cover;
  position: relative;
}
.hero--quienes::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .75) 100%); */
  z-index: 0;
}
.hero--quienes .hero__title {
  font-size: 48px;
  max-width: 580px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -1.44px;
}
.hero--quienes .hero__title strong { font-weight: 700; }
.hero--quienes .hero__sub {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  max-width: 435px;
  margin: 0;
}

/* Slider de imagen en la sección historia (sustituye a .cuando__img estático) */
.cuando__slider {
  position: relative;
  height: 421px;
  border-radius: 6px;
  overflow: hidden;
}
.cuando__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.cuando__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .6s ease;
}
.cuando__slide.is-active { opacity: 1; }
.cuando__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}
.cuando__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #D9D9D9;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.cuando__dot.is-active { background: #00AE62; }
.cuando__dot:hover     { transform: scale(1.15); }
.cuando__dot:focus-visible {
  outline: 2px solid #00AE62;
  outline-offset: 3px;
}

/* Tag pequeña ("Vanguardia tecnológica") sobre el título de la sección historia */
.cuando__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a5a5a5;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 18px;
}

/* Capacidades — grid 2 col x 3 filas, icono + título + desc centrados */
.capacidades__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 80px;
  max-width: 980px;
  margin: 40px auto 0;
  padding: 0 24px;
}
.capacidad { text-align: center; }
.capacidad__icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 14px;
  color: #000;
}
.capacidad__icon svg { width: 100%; height: 100%; display: block; }
.capacidad__title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.5px;
  color: #1c1c1c;
  margin: 0 0 10px;
  line-height: 1.36;
}
.capacidad__desc {
  color: #696969;
  font-size: 16px;
  line-height: 1.5;
  max-width: 370px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero--quienes .hero__title { font-size: 32px; }
  .capacidades__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =====================================================================
   Detalle de Lavadora — vista "lavadoras/detalle.php"
   Reutiliza:
     .container-wide, .section, .section--soft, .section__heading,
     .section__lead, .capacidades__grid, .capacidad*, .lavadoras__grid,
     .lavadora-card*, .cta-banner*, .btn-grad*, .cuando__tag
   ===================================================================== */

/* Hero (galería + info) */
.lvd-hero { padding: 60px 0 80px 0; }
.lvd-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 572px) 1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.lvd-hero__media {
  width: 100%;
  aspect-ratio: 572/421;
  border-radius: 6px;
  overflow: hidden;
  background: #f4f4f4;
}
.lvd-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lvd-hero__thumbs { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.lvd-hero__thumb {
  width: 107px;
  height: 68px;
  border: .5px solid var(--c-line);
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease;
}
.lvd-hero__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lvd-hero__thumb:hover,
.lvd-hero__thumb.is-active { border-color: var(--c-primary); }

.lvd-hero__title {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: -.68px;
  color: var(--c-primary);
  margin: 0 0 24px;
}
.lvd-hero__title small {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-green);
  margin-top: 6px;
  letter-spacing: 0;
}
.lvd-hero__desc { color: var(--c-muted); font-size: 16px; line-height: 1.5; margin: 0 0 24px; }
.lvd-hero__desc :is(p, li) { margin: 0 0 12px; }

.lvd-hero__highlights { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.lvd-hero__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
  font-weight: 600;
}
.lvd-hero__highlights svg {
  width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: #696969;
}

.lvd-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.lvd-hero__ctas form { display: inline-block; margin: 0; }

/* Botón ghost (utilidad reutilizable) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 223px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid #808080;
  color: var(--c-text);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .3px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  text-decoration: none;
}
.btn-ghost:hover, .btn-ghost:active, .btn-ghost:focus {
  background: #f4f4f4;
  color: var(--c-text);
}
.btn-ghost svg { width: 16px; height: 16px; }

/* Especificaciones técnicas — 3 cards con cabecera oscura */
.specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.specs__grid.lav-manual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.specs__grid:has(> :last-child:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr); 
    justify-content: center;               
    max-width: 1100px;                      
    margin: 0 auto;
}
.spec {
  border: .5px solid var(--c-line);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.spec__head {
  background: #0D3860;
  color: #fff;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 14px;
}
.spec__head svg { width: 28px; height: 28px; flex-shrink: 0; }
.spec__title { font-family: 'Open Sans', sans-serif; font-size: 18px; font-weight: 600; margin: 0; color:white; }
.spec__rows { padding: 24px; display: flex; flex-direction: column; }
.spec__row {
  padding: 18px 0;
  border-bottom: .5px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spec__row:first-child { padding-top: 0; }
.spec__row:last-child { border-bottom: 0; padding-bottom: 0; }
.spec__label { font-size: 14px; color: var(--c-muted); text-transform: uppercase; letter-spacing: .5px; }
.spec__value { font-size: 16px; font-weight: 600; color: var(--c-mid); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Badge de variante: se pinta junto al valor de una spec o al título de una ventaja
   cuando ese dato es exclusivo de un modelo concreto (LCE 1000 MC, LCE 1500 M…). */
.variante-badge {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--c-muted);
  background: var(--c-soft, #f1f3f5);
  border: 1px solid var(--c-line, #e5e7eb);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
  vertical-align: middle;
}
.capacidad__title .variante-badge { margin-left: 8px; }

/* Variante de .lavadora-card__badge: "Popular" en top-right con fondo translúcido */
.lavadora-card__badge--popular {
  left: auto;
  right: 12px;
  background: #00AE62;
  color: #fff;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Variante de .cta-banner que reactiva el overlay oscuro */
.cta-banner--overlay-dark::before { background: rgba(0,0,0,.75); }

/* Responsive del detalle */
@media (max-width: 1100px) {
  .lvd-hero__grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 0 40px; }
  .lvd-hero__title { font-size: 28px; }
  .specs__grid { grid-template-columns: repeat(2, 1fr); padding: 0 40px; }
}
@media (max-width: 820px) {
  .lvd-hero { padding: 24px 0 64px; }
  .lvd-hero__grid { grid-template-columns: 1fr; gap: 24px; padding: 0 24px; }
  .specs__grid { grid-template-columns: 1fr; padding: 0 24px; }
  .lvd-hero__title { font-size: 26px; }
  .btn-ghost { min-width: 0; }
}
.features-cat .features-cat__icon img {
    filter: brightness(0);
}

/* =====================================================================
   Página Contacto — Cabecera compacta, vías rápidas, captcha y mapa
   ===================================================================== */

/* Hero compacto: ~270px vs 543/696px del resto */
.hero--contacto {
  min-height: 270px;
  background-position: center;
  background-size: cover;
  align-items: center;
}
.hero--contacto::after {
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.6) 100%);
}
.hero--contacto .hero__title {
  font-size: 38px;
  margin: 24px 0 12px;
  max-width: 720px;
}
.hero--contacto .hero__sub {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 0 24px;
}

/* Captcha integrado en el formulario */
.form-row--captcha .form-captcha {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.form-captcha__img {
  height: 48px;
  border: 1px solid #bcbcbc;
  border-radius: 6px;
  background: #fff;
  padding: 4px 8px;
  flex: 0 0 auto;
}
.form-row--captcha input { flex: 1 1 auto; }

/* Texto / fila multilínea en info-card */
.info-card__text {
  margin: 0;
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.55;
}
.info-card__text--strong {
  color: var(--c-mid);
  font-weight: 600;
  font-size: 14px;
}
.info-card__row--top { align-items: flex-start; }
.info-card__row--top img { margin-top: 4px; }

/* Sección mapa */
.contact-map { padding: 80px 0; }
.contact-map__frame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #d4d4d4;
  background: #eee;
}
.contact-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-map { padding: 56px 0; }
  .contact-map__frame { height: 320px; }
}
@media (max-width: 600px) {
  .hero--contacto { min-height: 220px; }
  .hero--contacto .hero__title { font-size: 28px; }
  .form-row--captcha .form-captcha { flex-direction: column; align-items: stretch; }
  .form-captcha__img { width: 100%; max-width: 180px; }
}

/* =====================================================================
   Páginas legales (Aviso Legal, Política de Cookies)
   Diseño sin hero: cabecera de navegación + bloque de contenido + footer
   ===================================================================== */
.legal-page {
  padding: 64px 0 96px;
  background: #fff;
}
.legal-page__inner {
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.legal-page__title {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -.72px;
  color: var(--c-primary);
  margin: 0 0 12px;
}
.legal-page__lead {
  color: var(--c-muted);
  font-size: 15px;
  margin: 0 0 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.legal-page__section { margin-bottom: 36px; }
.legal-page__section:last-child { margin-bottom: 0; }
.legal-page__h2 {
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.4px;
  color: var(--c-primary);
  margin: 0 0 14px;
}
.legal-page p {
  color: var(--c-mid);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.legal-page p:last-child { margin-bottom: 0; }
.legal-page a:not(.btn-grad) {
  color: var(--c-primary);
  text-decoration: underline;
  transition: opacity .2s ease-in-out;
}
.legal-page a:not(.btn-grad):hover { opacity: .75; }
.legal-page ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.legal-page ul li {
  position: relative;
  padding: 10px 22px 10px 30px;
  color: var(--c-mid);
  font-size: 15px;
  line-height: 1.6;
}
.legal-page ul li::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--c-primary);
  border-right: 2px solid var(--c-primary);
  transform: rotate(45deg);
}
.legal-page__cookies-cat {
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--c-dark);
  margin: 0 0 8px;
}
.legal-page__cookies-desc {
  color: var(--c-muted);
  font-size: 14px;
  margin: 0 0 16px;
}
.legal-page__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  margin: 0 0 28px;
}
.legal-page__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}
.legal-page__table thead th {
  background: var(--c-bg-soft);
  color: var(--c-primary);
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-size: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--c-line);
  white-space: nowrap;
}
.legal-page__table tbody td {
  padding: 12px 14px;
  vertical-align: top;
  color: var(--c-mid);
  border-bottom: 1px solid var(--c-line);
  line-height: 1.5;
}
.legal-page__table tbody tr:last-child td { border-bottom: 0; }
.legal-page__table tbody tr:nth-child(even) td { background: var(--c-bg-soft2); }
.legal-page__table tbody td:first-child {
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  color: var(--c-dark);
  white-space: nowrap;
}
.legal-page__browsers {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}
.legal-page__browsers li {
  padding: 14px 16px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: 6px;
}
.legal-page__browsers li::before { content: none; }
.legal-page__browsers strong {
  display: block;
  font-family: 'Saira', sans-serif;
  font-size: 15px;
  color: var(--c-primary);
  margin-bottom: 4px;
}
.legal-page__browsers a {
  display: inline-block;
  word-break: break-all;
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .legal-page__inner { padding: 0 var(--pad-x-sm); }
}
@media (max-width: 900px) {
  .legal-page { padding: 48px 0 72px; }
  .legal-page__title { font-size: 28px; }
  .legal-page__browsers { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .legal-page__title { font-size: 24px; }
  .legal-page__h2 { font-size: 17px; }
  .legal-page p, .legal-page ul li { font-size: 14px; }
  .legal-page__table thead { display: none; }
  .legal-page__table, .legal-page__table tbody, .legal-page__table tr, .legal-page__table td { display: block; width: 100%; }
  .legal-page__table tbody tr {
    border-bottom: 1px solid var(--c-line);
    padding: 8px 0;
  }
  .legal-page__table tbody tr:last-child { border-bottom: 0; }
  .legal-page__table tbody td {
    padding: 6px 14px;
    border-bottom: 0;
  }
  .legal-page__table tbody td::before {
    content: attr(data-label);
    display: block;
    font-family: 'Saira', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--c-primary);
    margin-bottom: 2px;
  }
  .legal-page__table tbody td:first-child { white-space: normal; }
  .legal-page__table tbody tr:nth-child(even) td { background: transparent; }
}
@media (max-width:1439px) and (min-width:1200px) {
    .container {
        width: 1170px;
    }
}
@media (min-width:1440px) {
    .container {
        width: var(--w-page) !important;
    }
}
.section__heading.mb-35 {
  margin-bottom: 35px !important;
}
.catalogo .section__heading {
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}
.capacidad__icon img {
  filter: invert(1);
  height: 26px !important;
  width: auto;
}
.spec__row:first-child{
  min-height:70px;
  justify-content:center;
}
.spec__row:not(first-child){
  min-height:88px;
  justify-content:center;
}
.presupuesto__grid .info-card {
  margin-top: 32px !important;
}
.capacidades__grid.quienes-somos .capacidad__icon img {
   filter: none !important;
}
p.faq__intro a {
  font-weight: bold;
  text-decoration: underline;
  transition: all .3s ease-in-out;
}
p.faq__intro a:hover, p.faq__intro a:active, p.faq__intro a:focus {
  color: black !important;
  text-decoration: underline;
}
.capacidad-ficha .capacidad__icon img {
  filter: none !important;
}

/* ======================================================================
   Error 404
   ====================================================================== */
.err404 {
  padding: 72px 0 88px;
  background: #fff;
  text-align: center;
}
.err404__inner {
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.err404__code {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -.06em;
  color: var(--c-primary);
  margin: 0 0 8px;
  opacity: .92;
}
.err404__title {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -.6px;
  color: var(--c-primary);
  margin: 0 auto 16px;
  max-width: 720px;
}
.err404__lead {
  color: var(--c-mid);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 640px;
}
.err404__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.err404-suggested { padding: 64px 0 88px; }
.err404-suggested .section__heading { margin-bottom: 12px; }
.err404-suggested .section__lead { margin: 0 auto 40px; max-width: 600px; }

@media (max-width: 1024px) {
  .err404__code  { font-size: 50px; }
  .err404__title { font-size: 30px; }
}
@media (max-width: 768px) {
  .err404         { padding: 56px 0 72px; }
  .err404__inner  { padding: 0 var(--pad-x-sm); }
  .err404__code   { font-size: 50px; }
  .err404__title  { font-size: 26px; }
  .err404__lead   { font-size: 15px; }
  .err404-suggested { padding: 48px 0 72px; }
}
@media (max-width: 640px) {
  .err404__code   { font-size: 50px; }
  .err404__title  { font-size: 22px; }
  .err404__actions .btn-grad { width: 100%; justify-content: center; }
}
@media (max-width: 767px) {
    .cc-window.cc-floating {
        height: fit-content !important;
    }
}
@media(max-width:713px) {
    .hero__title {
        background: none !important;
        color:white !important;
    }
}
footer > .contenedor {
    padding: 0 var(--pad-x) !important;
    max-width: var(--w-page) !important;
    margin: 0 auto;
}