/* ==========================================================================
   MexPerforaciones — hoja de estilos única
   Marca: naranja #FE5A0E (acción) · rojo #D22626 (hover/detalle) · carbón #252525
   ========================================================================== */

:root {
  --naranja: #FE5A0E;
  --rojo: #D22626;
  --carbon: #252525;
  --carbon-2: #333333;
  --texto: #252525;
  --texto-suave: #5f5f5f;
  --gris: #f4f4f4;
  --gris-2: #e6e6e6;
  --blanco: #ffffff;
  --agua: #0E7C9E;
  --radio: 10px;
  --sombra: 0 10px 30px rgba(0, 0, 0, .08);
  --ancho: 1180px;
  --fuente: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--fuente);
  font-size: 16px;
  line-height: 1.6;
  color: var(--texto);
  background: var(--blanco);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -.01em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.contenedor { width: min(100% - 32px, var(--ancho)); margin-inline: auto; }
.seccion { padding: clamp(56px, 8vw, 96px) 0; }
.seccion--gris { background: var(--gris); }
.seccion--oscura { background: var(--carbon); color: var(--blanco); }
.seccion--oscura h2, .seccion--oscura h3 { color: var(--blanco); }
.etiqueta {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--naranja);
  margin-bottom: 10px;
}
.intro { max-width: 680px; color: var(--texto-suave); font-size: 1.05rem; }
.seccion--oscura .intro { color: rgba(255, 255, 255, .78); }
.centrado { text-align: center; }
.centrado .intro { margin-inline: auto; }

/* Botones ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn--naranja { background: var(--naranja); color: #fff; }
.btn--naranja:hover { background: var(--rojo); }
.btn--blanco { background: #fff; color: var(--carbon); }
.btn--blanco:hover { background: var(--gris); }
.btn--borde { background: transparent; color: var(--carbon); border-color: var(--carbon); }
.btn--borde:hover { background: var(--carbon); color: #fff; }
.seccion--oscura .btn--borde, .hero .btn--borde.inverso { color: #fff; border-color: rgba(255, 255, 255, .6); }
.seccion--oscura .btn--borde:hover { background: #fff; color: var(--carbon); }
.btn--wa { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1ebe5a; }
.btn--grande { padding: 17px 32px; font-size: 1.05rem; }
.btn--bloque { width: 100%; }
.btn svg { width: 20px; height: 20px; flex: none; }

/* Header -------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--gris-2);
}
.header__barra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
}
.header__logo img { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 600; font-size: .95rem; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--naranja); }
.nav .btn { display: none; }
.header__acciones { display: flex; align-items: center; gap: 12px; }
.header__tel { font-weight: 700; font-size: .95rem; display: inline-flex; align-items: center; gap: 8px; }
.header__tel svg { width: 18px; height: 18px; color: var(--naranja); }
.header .btn { padding: 11px 20px; font-size: .9rem; }
.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer;
  align-items: center; justify-content: center;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  display: block; width: 24px; height: 3px; background: var(--carbon); border-radius: 2px; position: relative; transition: transform .2s, opacity .2s;
}
.menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; }
.menu-btn span::before { top: -8px; } .menu-btn span::after { top: 8px; }
.menu-abierto .menu-btn span { background: transparent; }
.menu-abierto .menu-btn span::before { transform: translateY(8px) rotate(45deg); }
.menu-abierto .menu-btn span::after { transform: translateY(-8px) rotate(-45deg); }

/* Hero ---------------------------------------------------------------- */
.hero {
  background: var(--carbon);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 48px;
  min-height: min(82vh, 760px);
  padding: 64px 0;
}
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--naranja); }
.hero__texto p { font-size: 1.15rem; color: rgba(255, 255, 255, .82); max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__nota { margin-top: 22px; font-size: .9rem; color: rgba(255, 255, 255, .6); }
.hero__foto {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
}
.hero__foto img { width: 100%; height: 100%; object-fit: cover; }
.hero__sello {
  position: absolute;
  left: 18px; bottom: 18px;
  background: #fff; color: var(--carbon);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sombra);
}
.hero__sello strong { display: block; font-size: 1.5rem; line-height: 1; color: var(--naranja); }
.hero__sello span { font-size: .8rem; font-weight: 600; color: var(--texto-suave); }

/* Franja de confianza -------------------------------------------------- */
.confianza { background: #fff; border-bottom: 1px solid var(--gris-2); }
.confianza__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px 0;
}
.confianza__item { display: flex; gap: 14px; align-items: flex-start; }
.confianza__item svg { width: 34px; height: 34px; color: var(--naranja); flex: none; }
.confianza__item strong { display: block; font-size: 1rem; }
.confianza__item span { font-size: .88rem; color: var(--texto-suave); }

/* Tarjetas de servicio ------------------------------------------------- */
.servicios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.tarjeta {
  background: #fff;
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.tarjeta:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0, 0, 0, .12); }
.tarjeta__foto { aspect-ratio: 16 / 10; overflow: hidden; background: var(--gris); }
.tarjeta__foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tarjeta:hover .tarjeta__foto img { transform: scale(1.04); }
.tarjeta__cuerpo { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.tarjeta__cuerpo p { color: var(--texto-suave); font-size: .95rem; flex: 1; }
.tarjeta__link { font-weight: 700; color: var(--naranja); display: inline-flex; align-items: center; gap: 6px; }
.tarjeta__link:hover { color: var(--rojo); }

/* Proceso -------------------------------------------------------------- */
.proceso__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
  counter-reset: paso;
}
.paso { position: relative; padding-top: 18px; }
.paso::before {
  counter-increment: paso;
  content: "0" counter(paso);
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--naranja);
  line-height: 1;
  margin-bottom: 14px;
}
.paso h3 { font-size: 1.1rem; }
.paso p { color: rgba(255, 255, 255, .75); font-size: .95rem; }

/* Por qué nosotros ----------------------------------------------------- */
.porque__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.porque__foto { border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 5; }
.porque__foto img { width: 100%; height: 100%; object-fit: cover; }
.lista-check li { position: relative; padding-left: 34px; margin-bottom: 14px; }
.lista-check li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--naranja) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.lista-check strong { display: block; }
.lista-check span { color: var(--texto-suave); font-size: .95rem; }

/* Proyectos (galería) -------------------------------------------------- */
.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.galeria figure { margin: 0; position: relative; border-radius: var(--radio); overflow: hidden; aspect-ratio: 4 / 5; background: var(--gris); }
.galeria img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.galeria figure:hover img { transform: scale(1.04); }
.galeria figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 40px 16px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
  color: #fff; font-size: .9rem; font-weight: 600;
}

/* Cobertura + qué necesitamos ----------------------------------------- */
.dos-columnas { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.caja { background: #fff; border-radius: var(--radio); padding: 30px; box-shadow: var(--sombra); }
.caja h3 { margin-bottom: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chips li { background: var(--gris); border-radius: 100px; padding: 6px 14px; font-size: .88rem; font-weight: 600; }
.chips li.chip--principal { background: var(--naranja); color: #fff; }
.lista-num { counter-reset: n; }
.lista-num li { position: relative; padding-left: 40px; margin-bottom: 12px; color: var(--texto-suave); }
.lista-num li::before {
  counter-increment: n; content: counter(n);
  position: absolute; left: 0; top: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--carbon); color: #fff; font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}
.lista-num li strong { color: var(--texto); }

/* FAQ ------------------------------------------------------------------ */
.faq { max-width: 820px; margin: 40px auto 0; }
.faq details { border-bottom: 1px solid var(--gris-2); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 20px 44px 20px 0;
  font-weight: 700; font-size: 1.05rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--naranja);
  transition: transform .2s;
}
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 0 22px; color: var(--texto-suave); }
.faq details > div ul { list-style: disc; padding-left: 20px; margin-top: 8px; }

/* CTA final ------------------------------------------------------------ */
.cta {
  position: relative;
  color: #fff;
  background: var(--carbon) center / cover no-repeat;
  text-align: center;
}
.cta::before { content: ""; position: absolute; inset: 0; background: rgba(37, 37, 37, .82); }
.cta .contenedor { position: relative; }
.cta h2 { color: #fff; max-width: 720px; margin-inline: auto; }
.cta p { color: rgba(255, 255, 255, .8); max-width: 600px; margin-inline: auto; }
.cta__botones { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Footer --------------------------------------------------------------- */
.footer { background: #1a1a1a; color: rgba(255, 255, 255, .78); font-size: .93rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 56px 0 40px;
}
.footer__logo img { height: 30px; width: auto; margin-bottom: 16px; }
.footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer li { margin-bottom: 8px; }
.footer a:hover { color: var(--naranja); }
.footer__hermana { margin-top: 18px; padding: 14px 16px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 8px; font-size: .88rem; }
.footer__hermana a { color: var(--naranja); font-weight: 700; }
.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-size: .82rem; color: rgba(255, 255, 255, .5);
}

/* WhatsApp flotante ---------------------------------------------------- */
.wa-flotante {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transition: transform .18s;
}
.wa-flotante:hover { transform: scale(1.06); }
.wa-flotante svg { width: 30px; height: 30px; }

/* Página cotizar ------------------------------------------------------- */
.header--simple .header__barra { height: 68px; }
.cotizar { background: var(--gris); }
.cotizar__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; padding: 48px 0 72px; }
.cotizar__texto h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cotizar__texto .intro { font-size: 1.05rem; }
.cotizar__foto { border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; margin-top: 24px; }
.cotizar__foto img { width: 100%; height: 100%; object-fit: cover; }
.formulario { background: #fff; border-radius: 14px; padding: 32px; box-shadow: var(--sombra); }
.formulario h2 { font-size: 1.4rem; margin-bottom: 4px; }
.formulario > p { color: var(--texto-suave); font-size: .95rem; margin-bottom: 22px; }
.campo { margin-bottom: 16px; }
.campo label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.campo input, .campo select, .campo textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 13px 14px;
  border: 1.5px solid var(--gris-2);
  border-radius: 8px;
  background: #fff;
  color: var(--texto);
  transition: border-color .15s, box-shadow .15s;
}
.campo input:focus, .campo select:focus, .campo textarea:focus {
  outline: none; border-color: var(--naranja); box-shadow: 0 0 0 3px rgba(254, 90, 14, .18);
}
.campo textarea { min-height: 90px; resize: vertical; }
.campo--fila { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.campo--check { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--texto-suave); }
.campo--check input { width: 18px; height: 18px; margin-top: 2px; flex: none; }
.campo .error { display: none; color: var(--rojo); font-size: .82rem; margin-top: 5px; }
.campo.invalido input, .campo.invalido select { border-color: var(--rojo); }
.campo.invalido .error { display: block; }
.formulario__nota { font-size: .82rem; color: var(--texto-suave); text-align: center; margin-top: 12px; }
.gracias { text-align: center; padding: 20px 0; }
.gracias svg { width: 64px; height: 64px; color: #25D366; margin: 0 auto 14px; }
.oculto { display: none !important; }

/* Responsive ----------------------------------------------------------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; min-height: 0; padding: 40px 0 48px; }
  .hero__foto { aspect-ratio: 4 / 3; max-height: 420px; }
  .confianza__grid { grid-template-columns: repeat(2, 1fr); }
  .servicios__grid { grid-template-columns: repeat(2, 1fr); }
  .proceso__grid { grid-template-columns: repeat(2, 1fr); }
  .porque__grid, .dos-columnas, .cotizar__grid { grid-template-columns: 1fr; gap: 32px; }
  .porque__foto { aspect-ratio: 4 / 3; }
  .galeria { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1000px) {
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 74px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--gris-2);
    padding: 8px 16px 16px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, .1);
  }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--gris-2); }
  .nav .btn { display: inline-flex; margin-top: 12px; border: 0; }
  .menu-abierto .nav { display: flex; }
  .menu-btn { display: flex; }
}
@media (max-width: 760px) {
  .header__acciones .btn, .header__tel span { display: none; }
  .header__tel { width: 44px; height: 44px; justify-content: center; background: var(--gris); border-radius: 50%; }
  .header__tel svg { width: 20px; height: 20px; }
  .cotizar__texto { order: -1; }
  .cotizar__foto { display: none; }
}
@media (max-width: 560px) {
  .confianza__grid { grid-template-columns: 1fr; gap: 14px; padding: 20px 0; }
  .servicios__grid, .proceso__grid, .galeria { grid-template-columns: 1fr; }
  .galeria figure { aspect-ratio: 4 / 3; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 28px; }
  .hero__cta .btn { width: 100%; }
  .campo--fila { grid-template-columns: 1fr; }
  .formulario { padding: 22px 18px; }
  .wa-flotante { right: 14px; bottom: 14px; }
  body { padding-bottom: 0; }
}

/* Páginas interiores ---------------------------------------------------- */
.banner {
  background: var(--carbon);
  color: #fff;
}
.banner__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}
.banner h1 { color: #fff; font-size: clamp(1.9rem, 4.2vw, 3rem); }
.banner h1 em { font-style: normal; color: var(--naranja); }
.banner p { font-size: 1.1rem; color: rgba(255, 255, 255, .82); max-width: 560px; }
.banner__foto { border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 30px 60px rgba(0, 0, 0, .4); }
.banner__foto img { width: 100%; height: 100%; object-fit: cover; }
.migas { font-size: .85rem; color: rgba(255, 255, 255, .6); margin-bottom: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.migas a:hover { color: #fff; }
.banner--simple .banner__grid { grid-template-columns: 1fr; padding: 48px 0; }
.banner--simple p { max-width: 720px; }

.bloque { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.bloque--centro { align-items: center; }
.bloque h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.bloque__foto { border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; }
.bloque__foto img { width: 100%; height: 100%; object-fit: cover; }
.bloque__foto--alta { aspect-ratio: 4 / 5; }
.bloque .lista-check li { margin-bottom: 16px; }
.parafinal { margin-top: 10px; }

.usos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.uso { background: #fff; border-radius: var(--radio); padding: 22px; box-shadow: var(--sombra); }
.uso strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.uso span { font-size: .9rem; color: var(--texto-suave); }

.pasos-lista { counter-reset: p; display: grid; gap: 22px; margin-top: 8px; }
.pasos-lista li { position: relative; padding-left: 62px; }
.pasos-lista li::before {
  counter-increment: p; content: "0" counter(p);
  position: absolute; left: 0; top: -4px;
  font-size: 1.9rem; font-weight: 800; color: var(--naranja); line-height: 1;
}
.pasos-lista strong { display: block; margin-bottom: 4px; }
.pasos-lista span { color: var(--texto-suave); font-size: .95rem; }
.seccion--oscura .pasos-lista span { color: rgba(255, 255, 255, .75); }

.equipo-tira { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.equipo-tira figure { margin: 0; background: #fff; border-radius: var(--radio); padding: 18px; box-shadow: var(--sombra); text-align: center; }
.equipo-tira img { height: 200px; width: auto; margin: 0 auto 12px; object-fit: contain; }
.equipo-tira figcaption { font-weight: 600; font-size: .95rem; }
.equipo-tira figcaption small { display: block; font-weight: 400; color: var(--texto-suave); font-size: .85rem; }

.relacionados { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.relacionado { display: flex; gap: 14px; align-items: center; background: #fff; border-radius: var(--radio); padding: 14px; box-shadow: var(--sombra); transition: transform .2s; }
.relacionado:hover { transform: translateY(-3px); }
.relacionado img { width: 84px; height: 84px; object-fit: cover; border-radius: 8px; flex: none; }
.relacionado strong { display: block; font-size: .98rem; }
.relacionado span { font-size: .85rem; color: var(--naranja); font-weight: 700; }

.galeria--grande { grid-template-columns: repeat(4, 1fr); }
.contacto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.contacto-item { background: #fff; border-radius: var(--radio); padding: 26px; box-shadow: var(--sombra); }
.contacto-item svg { width: 34px; height: 34px; color: var(--naranja); margin-bottom: 12px; }
.contacto-item strong { display: block; margin-bottom: 6px; }
.contacto-item a { font-weight: 700; color: var(--carbon); }
.contacto-item a:hover { color: var(--naranja); }
.contacto-item p { color: var(--texto-suave); font-size: .93rem; margin: 0; }
.cifras { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 36px 0 0; }
.cifra { text-align: center; padding: 24px; border-radius: var(--radio); background: rgba(255, 255, 255, .06); }
.cifra strong { display: block; font-size: 2.4rem; font-weight: 800; color: var(--naranja); line-height: 1; }
.cifra span { font-size: .9rem; color: rgba(255, 255, 255, .78); }

@media (max-width: 960px) {
  .banner__grid, .bloque { grid-template-columns: 1fr; gap: 28px; }
  .banner__grid { padding: 40px 0; }
  .banner__foto { max-height: 380px; }
  .bloque__foto--alta { aspect-ratio: 4 / 3; }
  .usos, .galeria--grande { grid-template-columns: repeat(2, 1fr); }
  .equipo-tira, .relacionados, .contacto-grid, .cifras { grid-template-columns: 1fr; }
  .equipo-tira img { height: 160px; }
}
@media (max-width: 560px) {
  .usos, .galeria--grande { grid-template-columns: 1fr; }
}
