/* Página Nosotros: hero editorial de tres columnas con tarjetas flotantes y cierre. */

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ---------- hero ---------- */

.about-hero {
  position: relative;
  padding: clamp(28px, 4vw, 56px) 0 clamp(40px, 5vw, 72px);
  overflow: hidden;
}

.glow--about-top {
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  opacity: .18;
  filter: blur(100px);
}
.glow--about-br {
  bottom: -140px;
  right: -140px;
  width: 460px;
  height: 440px;
  opacity: .22;
  filter: blur(90px);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.62fr) minmax(300px, 1.75fr) minmax(160px, 0.62fr);
  grid-template-areas: "left center right";
  gap: clamp(14px, 1.6vw, 28px);
  align-items: start;
}

.about-hero__side--left  { grid-area: left; }
.about-hero__side--right { grid-area: right; }
.about-hero__center      { grid-area: center; text-align: center; }

.about-hero__side {
  display: grid;
  gap: clamp(20px, 2.4vw, 34px);
}
.about-hero__side--left  { margin-top: clamp(0px, 7vw, 110px); }
.about-hero__side--right { margin-top: clamp(0px, 9vw, 150px); }

/* Los dos laterales llevan contenido real (estadística, propuesta de valor), no
   sólo decoración — así que en pantallas angostas se apilan bajo el centro en
   vez de ocultarse: el grid de 3 columnas con mínimos de 160px desbordaría. */
@media (max-width: 899px) {
  .about-hero__grid { grid-template-columns: 1fr; grid-template-areas: "center" "left" "right"; }
  .about-hero__side--left,
  .about-hero__side--right { margin-top: 32px; }
}

/* ---------- tarjetas flotantes ---------- */

.float-card {
  border: 1px solid rgba(16, 16, 20, 0.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 24px 50px rgba(16, 16, 20, 0.10);
}

.float-card--stat { background: #FBFAF8; animation: floatY 7s ease-in-out .2s infinite; }
.float-card__stat { font-family: var(--font-display); font-size: clamp(26px, 2.4vw, 34px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--violet); }
.float-card__stat-label { margin-top: 8px; font-size: 13px; font-weight: 600; }
.float-card__stat-desc { margin: 7px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--ink-55); }

.about-hero__illustration {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: clamp(0px, 2.4vw, 40px) auto 0;
  animation: floatY 8.5s ease-in-out 1.1s infinite;
}

.float-card--value { background: var(--white); animation: floatY 7.8s ease-in-out 1.6s infinite; }
.float-card__value-title { margin: 0 0 12px; font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.float-card__value-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.float-card__value-list li { display: flex; align-items: center; gap: 12px; font-size: 13.5px; font-weight: 600; }

.value-dot { flex: 0 0 auto; width: 9px; height: 9px; }
.value-dot--circle { border-radius: 50%; background: var(--violet); }
.value-dot--square { background: #1E0B45; }
.value-dot--diamond { background: var(--yellow); transform: rotate(45deg); }

.float-card--social {
  margin-top: clamp(0px, 5vw, 80px);
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 26px 56px rgba(108, 43, 242, 0.34);
  animation: floatY 8.2s ease-in-out .9s infinite;
}
.float-card__social-title { font-family: var(--font-display); font-size: clamp(20px, 1.9vw, 26px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
.float-card__social-desc { margin-top: 8px; font-size: 12.5px; color: #EFECFA; }

/* ---------- columna central ---------- */

.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 16px 7px 10px;
  border: 1px solid rgba(16, 16, 20, 0.12);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(16, 16, 20, 0.06);
}
.about-hero__badge-avatars { display: flex; }
.about-hero__badge-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
}
.about-hero__badge-avatars img + img { margin-left: -10px; }
.about-hero__badge-text { font-size: 13px; font-weight: 600; color: var(--ink-70); }

.about-hero__title {
  max-width: 18ch;
  margin: 20px auto 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.about-hero__lede {
  max-width: 46ch;
  margin: 18px auto 0;
  font-size: clamp(15.5px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--ink-70);
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}
.about-hero__note {
  max-width: 34ch;
  margin: 16px auto 0;
  font-size: 13.5px;
  color: #6E6C78;
}

.about-hero__feature {
  position: relative;
  margin: 26px 0 0;
  min-height: clamp(320px, 32vw, 440px);
  border-radius: 22px;
  overflow: hidden;
  background: #0B0B12;
  box-shadow: 0 34px 68px rgba(16, 16, 20, 0.20);
  animation: floatY 9.5s ease-in-out .6s infinite;
}
.about-hero__feature img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero__feature figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(16, 16, 20, 0.82);
  color: var(--white);
  text-align: left;
}
.about-hero__feature-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; }
.about-hero__feature-desc { margin-top: 4px; font-size: 13.5px; color: #E7E3F7; }

/* ---------- cierre ---------- */
/* La banda de cierre (.cta / .cta__inner / .cta__title / .cta__actions) ahora
   vive en site.css: es idéntica a la de Servicios y se comparte tal cual. */
