#sec-satisfaccion {
  .titulo-seccion{
    text-align: center;
    margin-bottom: 3rem;
  }
  .imagen{
    border: solid 6px white;
    background-color: white;
    border-radius: 50%;
    position: relative;
  }
  .tarjeta-satisfaccion{
    background-color: #fabf50;{# var(--mast) #}
    color: black;
    padding: 2rem 3rem;
    border-radius: 1rem;
    box-shadow: 3px 3px 8px 0px #00000040;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    p{
      margin: unset;
      font-size: 1.5rem;
      text-wrap: balance;
    }
  }
  .contenido{
    position: absolute;
    top: 15%;
    left: 15%;
    background-color: white;
    height: 70%;
    width: 70%;
    border-radius: 50%;
    display: flex;
    color: black;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: 700;
    color: #da82ff !important;
  }
  .circulo{
    clip-path: circle(50% at 50% 50%);
  }
  .blobs{
    clip-path: polygon(0 0, 30% 0, 50% 50%, 50% 0, 100% 0, 100% 100%, 0 100%);
    background-color: rgb(89,170,121);
    height: 240px;
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .blob:nth-child(1){
    --angle-delay: 0s;
    --moving-delay: 0s;
    --color:rgba(255,57,106,0.8);
  }
  .blob:nth-child(2){
    --angle-delay: -3s;
    --moving-delay: -2s;
    --color:rgba(255,128,106,0.8);
  }
  .blob:nth-child(3){
    --angle-delay: -6s;
    --moving-delay: -4s;
    --color:rgba(255,244,107,0.8);
  }
  .blob:nth-child(4){
    --angle-delay: -9s;
    --moving-delay: -6s;
    --color:rgba(108,255,252,0.8);
  }
  .blob:nth-child(5){
    --angle-delay: -12s;
    --moving-delay: -8s;
    --color:rgba(208,108,255,0.8);
  }
  .blob{
    position: relative;
    animation: angle 15s var(--angle-delay) infinite linear;
  }
  .blob:after{
    content: "";
    position: absolute;
    width: 180px;
    aspect-ratio:1/1;
    border-radius: 50%;
    background-color: var(--color);
    filter: blur(50px);
    animation: moving 10s var(--moving-delay) infinite ease-in-out alternate;
  } 
  /*   ================== TESTIMONIOS =================== */
  .tarjeta-testimonios{
    background-color: #eaeaea;
    color: black;
    padding: 1.5rem 0 1rem;
    border-radius: 1rem;
    box-shadow: 2px 2px 7px 0px #00000040;
    .navegacion{
      display: flex;
      justify-content: space-around
    }
  }
  .testimonio{
    .comentario, .contenedor-datos-persona{
      width: 90%;
      margin: 0 auto;
    }
    .comentario{
      padding-bottom: 1.5rem;
      p{ margin: unset; }
    }
    .contenedor-datos-persona{
      display: flex;
      align-items: center;
      gap: 1rem;
      .nombre{
        font-weight: 700;
      }
      .descripcion{
        font-style: italic;
        font-size: 0.8rem;
      }
    }
    .contenedor-foto img {
      width: 100px;
      border-radius: 50%;
      object-fit: cover;
    }
  }
}
/* ============= ANIMACIONES ============== */
@keyframes angle{
  from{
    transform: rotate(0deg);
  }
  to{
    transform: rotate(360deg);
  }
} 
@keyframes moving{
  from{
    transform: translate(30%,-50%);
  }
  to{
    transform: translate(-30%,50%);
  }
}
