@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ----------------------aga--------------------------- */
.section-2{
  text-align: center;
  padding: 50px 0 50px 0;  
  margin-top: 30px;
}
.contenido2-dr{
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto; 
}
.section-2 h1{
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
}
.section-2 h2{
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 700;
}
.contenido2-dr ol{
  text-align: left;
}
.section-2 img{
  width: 400px;
  height: 400px;
  border-radius: 25px;
  box-shadow: 0 0 25px #6a717e; 
  object-fit: cover;
  aspect-ratio: 16 / 9; 
}
/* responsive */
@media (max-width: 900px) {
  .contenido2-dr ol{
    margin-left: 20px;
    margin-right: 20px;
  }
  .section-2 img{
    width: 100%;
    padding: 20px;
    border-radius: 50px;
  }
}