.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}


.about-image {
  width: 100%;
  max-width: 500px;
  border-radius: 20%;
  display: block;
  position: relative;
  z-index: 2;
}


.about-content{
    padding: auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 2;
}

.about-title{
    font-weight: 700;
}

.feature-card {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: #fff;
  text-align: center;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  /* transición suave de 1 segundo */
  transition:
    background-color 1s ease,
    box-shadow 1s ease;
}

.feature-title {
  font-weight: 700;
}

.feature-icon {
  background-color: #228ffc;
  color: white;
  padding: 0.5rem;
  border-radius: 50%;
}


@keyframes goldShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}