.about-section{
  padding: 80px 20px;
  max-width: 1300px;
  margin: auto;
}

.about-container{
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.about-left{
  flex: 1;
  min-width: 320px;
}

.about-right{
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

.about-title{
  font-size: 42px;
  font-weight: 800;
  color: #010149;
  margin-bottom: 10px;
}

.about-subtitle{
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-text{
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-mission-vision{
  display: flex;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.mv-box{
  background: #f6f7fb;
  padding: 25px;
  border-radius: 12px;
  flex: 1;
  min-width: 260px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transition: .3s ease;
}

.mv-box:hover{
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.mv-icon{
  font-size: 32px;
}

.mv-box h4{
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 8px;
  color: #010149;
  font-weight: 800;
}

.mv-box p{
  font-size: 15px;
  color: #555;
}

/* Imagen */
.about-img{
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  position: relative;
}

.about-image-container{
  position: relative;
}

.about-image-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.4));
  border-radius: 18px;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .about-container{
    flex-direction: column-reverse;
  }
  .about-right{
    justify-content: center;
  }
}
