:root{
  --azul:#243b8f;
  --azul-oscuro:#172554;
  --celeste-portal:#39a1e4;
  --celeste:#eef8ff;
  --gris:#f5f7fb;
  --borde:#e6eaf2;
  --texto:#1f2937;
  --texto-suave:#64748b;
  --blanco:#fff;
  --sombra:0 18px 48px rgba(15,23,42,.10);
}

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

body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--texto);
  background:#fff;
}

body.visor-abierto{
  position:fixed;
  left:0;
  right:0;
  width:100%;
  overflow:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

.contenedor{
  width:min(1180px,calc(100% - 48px));
  margin:0 auto;
}

.header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  box-shadow:0 1px 18px rgba(15,23,42,.08);
}

.header-contenido{
  width:100%;
  max-width:1180px;
  height:100px;
  margin:0 auto;
  position:relative;
  display:grid;
  place-items:center;
  padding:0 24px;
}

.logos{
  width:100%;
  max-width:740px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  transform:translateY(-8px);
}

.logo{
  object-fit:contain;
  height:auto;
  display:block;
}

.logo-principal{
  width:175px;
  justify-self:center;
  transform:scale(1.1);
  transform-origin:center;
  z-index:2;
}

.logo-secundario{
  width:155px;
  opacity:.95;
}

.logo-secundario:first-child{
  justify-self:end;
}

.logo-secundario:last-child{
  justify-self:start;
}

.volver{
  position:absolute;
  left:24px;
  top:50%;
  transform:translateY(-50%);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border:1px solid var(--borde);
  border-radius:8px;
  color:var(--azul-oscuro);
  background:#fff;
  transition:.2s ease;
}

.volver:hover{
  background:#f8faff;
  transform:translateY(-50%) translateX(-2px);
}

.volver img{
  width:16px;
  height:16px;
  filter:brightness(0) saturate(100%) invert(18%) sepia(48%) saturate(1741%) hue-rotate(217deg) brightness(91%) contrast(95%);
}

.servicio-24{
  width:max-content;
  min-height:46px;
  margin-top:22px;
  padding:12px 18px;
  border-radius:999px;
  background:#e53935;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:15px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  white-space:nowrap;
  box-shadow:0 14px 30px rgba(229,57,53,.32);
}

.servicio-24 span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 5px rgba(255,255,255,.22);
}

.hero{
  background:linear-gradient(135deg,#f8fbff 0%,#eef8ff 100%);
  border-bottom:1px solid var(--borde);
  padding:80px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 360px;
  align-items:center;
  gap:56px;
}

.subtitulo{
  display:inline-flex;
  width:max-content;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(57,161,228,.12);
  color:var(--celeste-portal);
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.hero h1{
  max-width:760px;
  color:var(--azul-oscuro);
  font-size:56px;
  line-height:1.05;
  letter-spacing:0;
  margin-bottom:22px;
}

.hero p{
  max-width:700px;
  color:var(--texto-suave);
  font-size:19px;
  line-height:1.65;
}

.hero-acciones{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
}

.btn-whatsapp{
  min-height:52px;
  padding:14px 22px;
  border-radius:8px;
  background:#22c55e;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:900;
  box-shadow:0 12px 28px rgba(34,197,94,.28);
  transition:.2s ease;
}

.btn-whatsapp:hover{
  transform:translateY(-2px);
  background:#16a34a;
}

.btn-whatsapp-secundario{
  background:var(--celeste-portal);
  box-shadow:0 12px 28px rgba(57,161,228,.26);
}

.btn-whatsapp-secundario:hover{
  background:#258fd0;
}

.btn-whatsapp img{
  width:20px;
  height:20px;
  filter:brightness(0) invert(1);
}

.seccion{
  padding:82px 0;
}

.encabezado-seccion{
  max-width:720px;
  margin-bottom:34px;
}

.encabezado-seccion h2{
  color:var(--azul-oscuro);
  font-size:38px;
  line-height:1.15;
}

.equipos-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.equipo-card{
  min-height:100%;
  border:1px solid var(--borde);
  border-radius:8px;
  background:#fff;
  box-shadow:0 8px 26px rgba(15,23,42,.05);
  overflow:hidden;
  display:grid;
  grid-template-columns:240px 1fr;
}

.equipo-card-destacado{
  grid-column:1 / -1;
}

.equipo-media{
  min-height:260px;
  background:#eef8ff;
  display:grid;
  grid-template-columns:1fr;
  gap:4px;
  padding:4px;
  border-right:1px solid var(--borde);
}

.equipo-media img{
  width:100%;
  height:100%;
  min-height:0;
  object-fit:cover;
  display:block;
  border-radius:5px;
  cursor:zoom-in;
}

.equipo-media.galeria{
  grid-template-columns:1fr 1fr;
}

.equipo-media.galeria img:first-child:nth-last-child(3){
  grid-column:1 / -1;
}

.equipo-contenido{
  padding:28px;
}

.equipo-contenido span{
  display:block;
  color:var(--celeste-portal);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:10px;
}

.equipo-contenido h3{
  color:var(--azul-oscuro);
  font-size:23px;
  line-height:1.22;
  margin-bottom:14px;
}

.equipo-contenido p{
  color:var(--texto-suave);
  font-size:16px;
  line-height:1.65;
}

.equipo-contenido ul{
  display:grid;
  gap:9px;
  list-style:none;
  margin-top:18px;
}

.equipo-contenido li{
  color:var(--texto);
  font-size:14px;
  line-height:1.45;
  padding-left:18px;
  position:relative;
}

.equipo-contenido li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--celeste-portal);
  position:absolute;
  left:0;
  top:.55em;
}

.visor-imagen{
  width:100vw;
  height:100dvh;
  max-width:none;
  max-height:none;
  margin:0;
  padding:28px;
  border:0;
  background:rgba(15,23,42,.94);
}

.visor-imagen::backdrop{
  background:rgba(15,23,42,.88);
}

.visor-foto{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.visor-cerrar{
  position:fixed;
  top:22px;
  right:22px;
  z-index:4;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:8px;
  background:rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.visor-cerrar img{
  width:18px;
  height:18px;
  filter:brightness(0) invert(1);
}

.footer{
  background:#0f172a;
  color:#fff;
  padding:28px 0;
}

.footer-contenido{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  color:rgba(255,255,255,.72);
}

.footer a{
  color:#fff;
  font-weight:800;
}

@media(max-width:1040px){
  .hero-grid,
  .equipos-grid{
    grid-template-columns:1fr;
  }

  .equipo-card-destacado{
    grid-column:auto;
  }
}

@media(max-width:700px){
  .contenedor,
  .header-contenido{
    width:min(100% - 36px,1180px);
  }

  .header-contenido{
    width:100%;
    height:84px;
    padding:0 12px;
  }

  .logos{
    gap:10px;
    padding:0 44px;
  }

  .logo-principal{
    width:112px;
    transform:scale(1.12);
  }

  .logo-secundario{
    width:92px;
  }

  .volver{
    left:12px;
    width:36px;
    height:36px;
  }

  .servicio-24{
    min-height:40px;
    margin-top:18px;
    padding:10px 14px;
    font-size:12px;
  }

  .hero{
    padding:58px 0;
  }

  .hero h1{
    font-size:38px;
  }

  .hero p{
    font-size:17px;
  }

  .hero-acciones{
    align-items:stretch;
    justify-content:flex-start;
    flex-direction:column;
  }

  .btn-whatsapp{
    width:100%;
  }

  .seccion{
    padding:62px 0;
  }

  .equipos-grid{
    gap:16px;
  }

  .equipo-card{
    grid-template-columns:1fr;
  }

  .equipo-media{
    min-height:150px;
    border-right:0;
    border-bottom:1px solid var(--borde);
  }

  .equipo-contenido{
    padding:24px;
  }

  .footer-contenido{
    align-items:flex-start;
    flex-direction:column;
  }
}
