body {
  
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  font-family: "Oswald", sans-serif;
}

.sobre-nosotros {
  max-width: 80%;
  padding-top: 80px;
  margin-left: auto;
  margin-right: auto;
  /* margin: 60px auto; */
  background: #c7abab;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.contenido {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
}

.imagen-contenedor {
  position: relative;
  flex-shrink: 0;
}

.imagen-contenedor img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
}

.icono {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #751111;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.texto h2 {
  margin: 0;
  font-size: 40px;
  color: #333;
  text-align: center;
}

.texto h3 {
  margin: 8px 0;
  font-size: 26px;
  color: #141111;
  font-weight: bold;
}

.texto p {
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

.parrafo-final {
  background: #adac74;
  padding: 25px 40px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}


/* ===================== */
/* 📱 RESPONSIVE TABLET */
/* ===================== */
@media (max-width: 900px) {
  .contenido {
    flex-direction: column;
    text-align: center;
    padding-top: 150px;
  }

  .imagen-contenedor img {
    width: 250px;
    height: 250px;
  }

  .texto h2 {
    font-size: 34px;
  }

  .texto h3 {
    font-size: 22px;
  }
}

/* ===================== */
/* 📱 RESPONSIVE MÓVIL */
/* ===================== */
@media (max-width: 600px) {
  .sobre-nosotros {
    max-width: 95%;
  }

  .contenido {
    /* padding: 20px; */
    padding-top: 150px;
  }

  .imagen-contenedor img {
    width: 200px;
    height: 200px;
  }

  .icono {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .texto h2 {
    font-size: 28px;
  }

  .texto h3 {
    font-size: 20px;
  }

  .parrafo-final {
    padding: 20px;
    font-size: 14px;
  }
}