

@font-face {
  font-family: 'Inter';
  src: url('fuentes/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@property --g1 { syntax: '<color>'; inherits: true; initial-value: #10151c; }
@property --g2 { syntax: '<color>'; inherits: true; initial-value: #0b0f14; }

:root {

  --fondo:        #10151c;
  --fondo-suave:  #151c26;
  --panel:        #161d26;
  --borde:        #232d3a;
  --tinta:        #eef2f6;
  --tinta-suave:  #9aa7b5;

  --verde:        #a6cb72;
  --verde-claro:  #b5d580;
  --verde-logo:   #c7d599;
  --verde-texto:  #b5d580;

  --azul:         #00519c;
  --azul-claro:   #3f8fd4;

  --amarillo:     #d4b950;
  --amarillo-ui:  #eac54f;

  --cta-fondo:    var(--amarillo-ui);
  --cta-texto:    #10151c;
  --sombra:       0 14px 34px rgba(0, 0, 0, 0.5), 0 0 24px rgba(166, 203, 114, 0.08);
  --barra-fondo:  rgba(16, 21, 28, 0.92);
  --cifras-fondo: #0b0f14;
  --ph-fondo:     #1a2230;
  --ph-texto:     #8e9aa8;
  --pie-fondo:    #0b0f14;
  --error:        #e07a7a;
}

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

html {
  background: #0b0f14;
  scroll-padding-top: 4.5rem;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: transparent;
  color: var(--tinta);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.fondo-tono {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #10151c;
  background-image: linear-gradient(135deg, var(--g1), var(--g2));
  transition: --g1 0.9s ease, --g2 0.9s ease;
}
@media (prefers-reduced-motion: reduce) {
  .fondo-tono { transition: none; }
}

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

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

.contenedor {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

section { padding: 4.5rem 0; }
@media (min-width: 720px) { section { padding: 6.5rem 0; } }

.etiqueta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde-texto);
  border-bottom: 2px solid var(--amarillo);
  padding-bottom: 0.3rem;
  margin-bottom: 1.1rem;
}

.seccion-intro {
  color: var(--tinta-suave);
  font-size: 1.05rem;
  max-width: 60ch;
  margin-top: 0.9rem;
}

.boton {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.boton-primario {
  background: var(--cta-fondo);
  color: var(--cta-texto);
}
.boton-primario:hover { transform: translateY(-2px); box-shadow: var(--sombra); }

[hidden] { display: none !important; }

.foto-ph {
  background: var(--ph-fondo);
  border: 2px dashed var(--borde);
  border-radius: 12px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  padding: 1.5rem;
  color: var(--ph-texto);
}
.foto-ph-tipo {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--verde-texto);
}
.foto-ph-desc { font-weight: 600; font-size: 0.95rem; max-width: 34ch; }
.foto-ph-medida { font-size: 0.7rem; }

[data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  html.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  html.js [data-reveal].visible { opacity: 1; transform: none; }
}

.barra {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--barra-fondo);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--borde);
  transform: translateY(-100%);

  visibility: hidden;
  transition: transform 0.25s ease, visibility 0.25s;
}
.barra.visible { transform: translateY(0); visibility: visible; }

.barra-fila {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.6rem;
}

.marca {
  display: block;
  text-decoration: none;
}
.marca img { height: 26px; width: auto; display: block; }
footer .marca img { height: 32px; }

.barra-menu {
  display: none;
  list-style: none;
  gap: 1.4rem;
  align-items: center;
}
.barra-menu a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tinta-suave);
}
.barra-menu a:hover { color: var(--verde-texto); }

.barra-menu a.activo { color: var(--verde-texto); }
.barra-menu a.activo::after {
  content: '';
  display: block;
  height: 2px;
  margin-top: 4px;
  border-radius: 2px;
  background: var(--verde);
}
@media (max-width: 899px) {

  .barra-menu a.activo::after { display: none; }
  .barra-menu a.activo { color: var(--verde-texto); font-weight: 800; }
}
.barra-menu .boton { padding: 0.5rem 1rem; font-size: 0.85rem; }

.hamburguesa {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.hamburguesa span {
  width: 22px; height: 2px;
  background: var(--tinta);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.barra.abierta .hamburguesa span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.barra.abierta .hamburguesa span:nth-child(2) { opacity: 0; }
.barra.abierta .hamburguesa span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.barra.abierta .barra-menu {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid var(--borde);
}

.barra-cta {
  margin-left: auto;
  margin-right: 0.8rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (min-width: 1100px) {
  .barra-menu { display: flex; }
  .hamburguesa { display: none; }
  .barra-cta { display: none; }
}

.hero-nota {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--tinta-suave);
}

.barra.abierta .barra-menu { gap: 0; }
.barra.abierta .barra-menu a { display: block; width: 100%; padding: 0.7rem 0; }

.campo-check label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  cursor: pointer;
}
.campo-check input { width: auto; margin: 0; }

.faq-cta {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}
.faq-cta p { color: var(--tinta-suave); max-width: 46ch; }
.seccion-cta {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--tinta-suave);
  line-height: 1.7;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  color: #ffffff;
}

.hero-fondo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 50% 110%, rgba(166, 203, 114, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 85% 0%, rgba(212, 185, 80, 0.12) 0%, transparent 55%),
    linear-gradient(165deg, #1c2735 0%, #10151c 58%, #0b0f14 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video.activo { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-video { transition: none; }
}

.hero-velo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 50% 42%,
                    rgba(10, 14, 19, 0.62) 0%,
                    rgba(10, 14, 19, 0.28) 75%,
                    transparent 100%),
    rgba(10, 14, 19, 0.42);
}

.hero-contenido {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
  width: min(880px, 100% - 2.5rem);
}

.hero-logo {
  width: min(340px, 72vw);
  height: auto;
  margin: 0 auto 2rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 6.5vw, 4.2rem);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.1rem;
}

.hero-bajada {
  color: #c8d2dc;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 56ch;
  margin: 0 auto 2rem;
}

.menu-hub {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.6rem;
  padding-top: 1.7rem;
}
.menu-hub::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 1.1rem;
  background: rgba(255, 255, 255, 0.35);
}
.menu-hub::after {
  content: "";
  position: absolute;
  top: 1.1rem; left: 50%;
  transform: translateX(-50%);
  width: min(72%, 560px);
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}
.menu-hub a {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #eef2f6;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  background: rgba(16, 21, 28, 0.35);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.menu-hub a:hover { border-color: var(--verde); color: var(--verde); }
@media (max-width: 719px) {

  .menu-hub::before, .menu-hub::after { display: none; }
  .menu-hub { padding-top: 0; }
}

.hero-flecha {
  position: absolute;
  bottom: 1.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-flecha::before {
  content: "";
  width: 14px; height: 14px;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  rotate: 45deg;
  translate: 0 -4px;
}

.empresa-grilla {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.empresa-texto p + p { margin-top: 1rem; }
.empresa-texto p { color: var(--tinta-suave); font-size: 1.05rem; }
.empresa-texto .destacado {
  color: var(--tinta);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.45;
}

.destacado-separado { margin-top: 1.2rem; }

.empresa-foto {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.seguridad {
  margin-top: 3rem;
  padding: 1.8rem;
  background: var(--panel);
  border: 1px solid var(--borde);
  border-left: 3px solid var(--verde);
  border-radius: 12px;
}
.seguridad h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 1.2rem;
}
.seguridad-lista { list-style: none; display: grid; gap: 1rem; }
.seguridad-lista li {
  color: var(--tinta-suave);
  font-size: 0.98rem;
  line-height: 1.55;
  padding-left: 1.4rem;
  position: relative;
}

.seguridad-lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 2px;
  background: var(--verde);
}
.seguridad-lista strong { color: var(--tinta); }
@media (min-width: 900px) {
  .seguridad { padding: 2.2rem 2.4rem; }
  .seguridad-lista { grid-template-columns: 1fr 1fr; gap: 1.2rem 2.5rem; }
}

@media (min-width: 900px) {
  .empresa-grilla { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

.servicios-grilla {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.5rem;
}
@media (min-width: 720px) {
  .servicios-grilla { grid-template-columns: repeat(6, 1fr); }

  .tarjeta-destacada { grid-column: span 3; }
  .tarjeta-normal { grid-column: span 2; }
}
@media (max-width: 719px) {
  .servicios-grilla > * { grid-column: auto; }
}

.tarjeta {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--borde);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tarjeta:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: var(--sombra);
  border-color: var(--verde);
  z-index: 2;
}
.tarjeta .foto-ph,
.tarjeta .tarjeta-foto { transition: transform 0.45s ease; }
.tarjeta:hover .foto-ph,
.tarjeta:hover .tarjeta-foto { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) {
  .tarjeta, .tarjeta .foto-ph, .tarjeta .tarjeta-foto { transition: none; }
  .tarjeta:hover, .tarjeta:hover .foto-ph,
  .tarjeta:hover .tarjeta-foto { transform: none; }
}

.tarjeta .foto-ph {
  border: none;
  border-bottom: 2px dashed var(--borde);
  border-radius: 0;
  min-height: 200px;
}
.tarjeta-destacada .foto-ph { min-height: 260px; }

.tarjeta-foto {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.tarjeta-destacada .tarjeta-foto { height: 260px; }

.tarjeta-cuerpo {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.tarjeta-cuerpo p { color: var(--tinta-suave); font-size: 0.95rem; flex: 1; }

.tarjeta-cta {
  display: inline-block;
  padding: 0.55rem 0;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--verde-texto);
}
.tarjeta-cta:hover { text-decoration: underline; }

.corredores-grilla {
  display: grid;

  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  justify-items: center;
}
@media (min-width: 900px) {

  .corredores-grilla {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.5fr);
    align-items: start;
    gap: 3rem;
  }
  .corredores-panel { position: sticky; top: 5rem; }
}

.mapa {
  display: block;
  height: 58vh;
  width: auto;
  aspect-ratio: 340 / 1120;
  max-width: 100%;
}
@media (min-width: 900px) { .mapa { height: 82vh; } }
.mapa .tierra { fill: rgba(255, 255, 255, 0.05); }
.mapa .costa { stroke: rgba(255, 255, 255, 0.45); fill: none; stroke-width: 2; }
.mapa .frontera {
  stroke: rgba(255, 255, 255, 0.28);
  stroke-dasharray: 4 5;
  stroke-width: 1.5;
  fill: none;
}
.mapa .corte { stroke: rgba(255, 255, 255, 0.2); stroke-dasharray: 3 4; fill: none; }
.mapa text { fill: var(--tinta-suave); font-size: 11px; font-family: inherit; }
.mapa .pais { fill: #5c6875; font-size: 12px; letter-spacing: 0.2em; }
.mapa .nota-mapa { fill: #5c6875; font-size: 9px; font-style: italic; }
.mapa .etiqueta-hub { fill: var(--verde-claro); font-weight: 700; }
.mapa .nodo { fill: var(--tinta-suave); }
.mapa .nodo-hub { fill: var(--verde); }

.mapa .nodo-paso { fill: var(--verde); }
.mapa .paso-nombre { font-size: 9px; }
.mapa .paso-pais {
  font-size: 8px;
  fill: #5c6875;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mapa .nodo-paso,
.mapa .paso-nombre,
.mapa .paso-pais { transition: fill 0.25s ease, opacity 0.25s ease; }
.mapa.activo .nodo-paso:not(.encendida),
.mapa.activo .paso-nombre:not(.encendida),
.mapa.activo .paso-pais:not(.encendida) { opacity: 0.25; }
.mapa .nodo-paso.encendida,
.mapa .paso-nombre.encendida,
.mapa .paso-pais.encendida { fill: var(--amarillo-ui); }

.mapa .zona,
.mapa .zona rect {
  fill: rgba(166, 203, 114, 0.10);
  transition: fill 0.25s ease, opacity 0.25s ease;
}

.mapa.activo .zona:not(.encendida) { opacity: 0.35; }
.mapa .zona.encendida,
.mapa .zona.encendida rect {
  opacity: 1;
  fill: rgba(234, 197, 79, 0.30);
}

.mapa .ruta {
  stroke: rgba(166, 203, 114, 0.55);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  transition: stroke 0.25s ease, stroke-width 0.25s ease, opacity 0.25s ease;
}
.mapa.activo .ruta { opacity: 0.25; }
.mapa .ruta.encendida {
  opacity: 1;
  stroke: var(--amarillo-ui);
  stroke-width: 3.5;
}

@media (prefers-reduced-motion: reduce) {
  .mapa .zona, .mapa .zona rect, .mapa .ruta { transition: none; }
}

.corredores-panel { display: grid; gap: 1.4rem; width: 100%; }

.corredor-figura { margin: 0; }
@media (max-width: 899px) {

  .corredor-figura {
    position: sticky;
    top: 4.2rem;
    z-index: 2;
    padding: 0.5rem;
    border-radius: 16px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}
.corredor-figura .foto-ph {
  min-height: 260px;
  transition: opacity 0.25s ease;
}
.corredor-figura .foto-ph.cambiando { opacity: 0.25; }

.corredor-imagen {
  display: block;
  width: 100%;
  height: clamp(260px, 32vh, 380px);
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.25s ease;
}
.corredor-imagen.cambiando { opacity: 0.25; }
#corredor-pie {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--verde-claro);
}

.corredores-lista { list-style: none; display: grid; gap: 0.6rem; }
.corredores-lista li {
  background: var(--panel);
  border: 1px solid var(--borde);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.corredores-lista li:hover,
.corredores-lista li:focus-visible,
.corredores-lista li.encendido {
  border-color: var(--amarillo-ui);
  transform: translateX(4px);
  outline: none;
}

.corredor-nombre { font-weight: 700; font-size: 1.02rem; line-height: 1.3; }
.corredores-nota {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--tinta-suave);
}

.cifras { background: transparent; }

.cifra-titular {
  text-align: center;
  margin-top: 2.5rem;
}
.cifra-titular-numero {
  display: block;
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--tinta);
}
.cifra-titular-texto {
  display: block;
  margin-top: 0.8rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--tinta-suave);
}
.cifra-titular + .cifras-grilla { margin-top: 3.5rem; }

.cifras-grilla {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
}
@media (min-width: 720px) { .cifras-grilla { grid-template-columns: repeat(3, 1fr); } }

.cifra-numero {
  display: block;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--tinta);
}
.cifra-numero::after {
  content: "";
  display: block;
  width: 2.2rem; height: 4px;
  background: var(--verde);
  margin: 0.5rem auto 0.7rem;
  border-radius: 2px;
}
.cifra-texto { color: var(--tinta-suave); font-size: 0.95rem; }

.cert-grilla {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.cert-sello {
  background: var(--panel);
  border: 1px solid var(--borde);
  border-radius: 14px;
  padding: 1.8rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.cert-icono {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2.5px solid var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  font-size: 1.1rem;
  color: var(--verde-texto);
}

.cert-logo {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  box-sizing: content-box;
}

.cert-registro {
  margin-top: auto;
  font-size: 0.7rem;
  color: var(--tinta-suave);
  letter-spacing: 0.03em;
}

.cert-registro + .cert-vigencia { margin-top: 0; }
.cert-sello h3 { font-size: 1rem; }
.cert-sello p { font-size: 0.8rem; color: var(--tinta-suave); }

.cert-vigencia {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--verde-texto);
}

.cert-vigencia.pendiente {
  color: var(--amarillo);
  border: 1px dashed var(--amarillo);
  border-radius: 6px;
  padding: 0.2rem 0.5rem;
  font-weight: 600;
  opacity: 0.75;
}

.cert-destacado { border-color: var(--amarillo); }
.cert-destacado .cert-icono { border-color: var(--amarillo); color: var(--amarillo); }

.cert-destacado p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--amarillo);
}

.cert-respaldo {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding: 1.2rem 1.4rem;
  background: var(--panel);
  border: 1px solid var(--borde);
  border-radius: 14px;
}
.cert-respaldo-logos { display: flex; align-items: center; gap: 1rem; }
.cert-respaldo-logos img {
  height: 42px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  box-sizing: content-box;
}
.cert-respaldo p {
  margin: 0;
  flex: 1;
  min-width: 17rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--tinta-suave);
}
.cert-respaldo strong { color: var(--tinta); }

.ficha-lista {
  margin-top: 2.5rem;
  border-top: 1px solid var(--borde);
}
.ficha-fila {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--borde);
}
@media (min-width: 720px) {
  .ficha-fila { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 1.5rem; align-items: baseline; }
}
.ficha-fila dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde-claro);
}
.ficha-fila dd { margin: 0; color: var(--tinta); }

.ficha-fila dd.ficha-pendiente { color: var(--amarillo); font-style: italic; }

.faq-lista { margin-top: 2.5rem; display: grid; gap: 0.8rem; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--borde);
  border-radius: 12px;
  padding: 1rem 1.3rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--verde-claro);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--verde-claro); }
.faq-item p {
  margin-top: 0.8rem;
  color: var(--tinta-suave);
  font-size: 0.95rem;
  max-width: 68ch;
}

.contacto { background: transparent; }
.contacto-grilla { display: grid; gap: 2.5rem; margin-top: 2.5rem; }
@media (min-width: 900px) { .contacto-grilla { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }

.formulario {
  background: var(--panel);
  border: 1px solid var(--borde);
  border-radius: 14px;
  padding: 1.8rem;
  display: grid;
  gap: 1.1rem;
}
.campo { display: grid; gap: 0.35rem; }
.campo label { font-size: 0.85rem; font-weight: 700; }
.campo input, .campo select, .campo textarea {
  font: inherit;
  color: var(--tinta);
  background: var(--fondo);
  border: 1.5px solid var(--borde);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  width: 100%;
}
.campo input:focus, .campo select:focus, .campo textarea:focus {
  outline: none;
  border-color: var(--verde);
}
.campo .error {
  color: var(--error);
  font-size: 0.8rem;
  display: none;
}

.aviso-nojs {
  color: var(--error);
  font-size: 0.9rem;
  border: 1px dashed var(--error);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
}
.aviso-nojs a { color: inherit; font-weight: 700; }
.campo.invalido input, .campo.invalido textarea { border-color: var(--error); }
.campo.invalido .error { display: block; }

.form-nota { font-size: 0.8rem; color: var(--tinta-suave); }

.contacto-datos { display: grid; gap: 1.6rem; align-content: start; }
.dato h3 { margin-bottom: 0.3rem; }
.dato p { color: var(--tinta-suave); }
.whatsapp-grande {
  display: block;
  text-align: center;
  background: var(--cta-fondo);
  color: var(--cta-texto);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 12px;
  padding: 1.1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-grande:hover { transform: translateY(-2px); box-shadow: var(--sombra); }
.whatsapp-grande small { display: block; font-weight: 600; font-size: 0.8rem; opacity: 0.75; }

footer {
  background: var(--pie-fondo);
  color: #c8d2dc;
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}
.pie-fila {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.pie-menu { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; }
.pie-menu a { color: #c8d2dc; text-decoration: none; font-size: 0.85rem; }
.pie-menu a:hover { color: var(--verde); }
.pie-legal {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: #8b97a3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

.pagina-error {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}
.error-404 { max-width: 34rem; display: grid; gap: 1.1rem; justify-items: center; }
.error-404 h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
.error-404-contacto { font-size: 0.85rem; color: var(--tinta-suave); }
.error-404-contacto a { color: var(--verde-texto); }

.seccion-intro,
.empresa-texto p,
.seguridad-intro,
.seguridad-lista li,
.faq-item p,
.corredores-nota {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.idioma { display: inline-flex; align-items: center; gap: 0.4rem; }
.bandera {
  width: 18px;
  height: auto;
  border-radius: 2px;
  display: inline-block;
}
