body {
    font-family: 'Poppins', sans-serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.about-img {
  width: 100%;
  max-width: 350px;   /* Tamaño en pantallas grandes */
  border-radius: 50%;
  transform: scale(0.9);
}

.container-text {
  max-width: 600px;
  text-align: justify;
}

/* Pantallas grandes (desktop) */
@media (min-width: 768px) {
  .about-container {
    flex-wrap: nowrap;
    height: 60vh;
  }

  .about-img {
    width: 45%;
  }

  .container-text {
    width: 50%;
  }
}

.card-body h5{
  color: white;
}

.card-body p{
  color: whitesmoke;
}

.card img {
  border-radius: 50%;
}

.boton-gloria .glf-button {
  background: linear-gradient(to right, rgb(255 0 166), rgb(0 246 255));
  color: white;
  font-weight: bold;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.2em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.boton-gloria .glf-button:hover {
  background: black;
  transform: scale(1.1);
  transition: all 0.5s ease;
}

.info-contacto {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}