.about-hero{
  min-height:58vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.78)),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=2200&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
}

.about-hero-content{
  padding:120px 0 70px;
  max-width:760px;
}

.about-breadcrumb{
  display:inline-flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom:18px;
  color:var(--rw-muted);
  font-size:14px;
}

.about-breadcrumb a:hover{
  color:var(--rw-blue);
}

.about-hero h1{
  font-size:clamp(40px, 5vw, 66px);
  font-weight:900;
  line-height:1.05;
  margin-bottom:18px;
}

.about-hero h1 span{
  color:var(--rw-blue);
}

.about-hero p{
  color:var(--rw-muted);
  line-height:1.95;
  font-size:17px;
  max-width:700px;
}

/* BLOQUES ABOUT */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-split.reverse .about-grid{
  direction:rtl;
}

.about-split.reverse .about-text{
  direction:ltr;
}

/* TODAS LAS IMAGENES DE ESTA PAGINA UNIFORMES */
.about-image img,
.mv-images img,
.value-card img{
  width:100%;
  aspect-ratio:16 / 9;
  object-fit:cover;
  display:block;
}

.about-image img{
  border-radius:24px;
  border:1px solid var(--rw-border);
  box-shadow:var(--rw-shadow);
}

.about-text h2{
  font-size:36px;
  margin-bottom:18px;
}

.about-text p{
  color:var(--rw-muted);
  line-height:1.9;
  margin-bottom:14px;
}

.about-dark{
  background:var(--rw-black-3);
}

/* MISION VISION */
.mv-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-bottom:40px;
}

.mv-card{
  padding:34px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  border:1px solid var(--rw-border);
  box-shadow:var(--rw-shadow);
}

.mv-header{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}

.mv-icon{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--rw-blue);
  border-radius:12px;
  font-weight:800;
  color:#fff;
}

.mv-card h3{
  font-size:26px;
  font-weight:900;
}

.mv-card p{
  color:var(--rw-muted);
  line-height:1.9;
  font-size:16px;
  margin-bottom:14px;
}

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

.mv-images img{
  border-radius:20px;
  border:1px solid var(--rw-border);
  box-shadow:var(--rw-shadow);
}

/* ESTADISTICAS */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.stat-card{
  padding:28px;
  text-align:center;
  border-radius:20px;
  border:1px solid var(--rw-border);
  background:rgba(255,255,255,.03);
  box-shadow:var(--rw-shadow);
}

.stat-card h3{
  font-size:36px;
  color:var(--rw-blue);
  margin-bottom:8px;
}

.stat-card p{
  color:var(--rw-muted);
  line-height:1.7;
}

/* VALORES */
.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.value-card{
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--rw-border);
  background:rgba(255,255,255,.03);
  box-shadow:var(--rw-shadow);
}

.value-card img{
  border-radius:0;
}

.value-card h3{
  padding:18px;
  color:#fff;
}

/* CTA */
.cta-box{
  text-align:center;
  padding:50px;
  border-radius:24px;
  background:linear-gradient(135deg,rgba(69,120,252,.2),rgba(255,255,255,.02));
  border:1px solid rgba(69,120,252,.3);
}

.cta-box h2{
  font-size:clamp(30px, 4vw, 46px);
  margin-bottom:14px;
}

.cta-box p{
  color:var(--rw-muted);
  line-height:1.8;
  max-width:720px;
  margin:0 auto;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:20px;
  flex-wrap:wrap;
}

/* RESPONSIVE */
@media (max-width:1000px){
  .about-grid{
    grid-template-columns:1fr;
  }

  .stats-grid{
    grid-template-columns:1fr 1fr;
  }

  .values-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .about-hero-content{
    padding:110px 0 60px;
  }

  .mv-grid{
    grid-template-columns:1fr;
  }

  .mv-images{
    grid-template-columns:1fr;
  }

  .stats-grid{
    grid-template-columns:1fr;
  }

  .cta-box{
    padding:34px 22px;
  }

  .cta-buttons{
    flex-direction:column;
    align-items:center;
  }

  .cta-buttons .btn{
    width:100%;
    max-width:320px;
  }
}