
.testimonios{
  width:100%;
  display:flex;
  min-height:120vh;
  background-color:#D9D9D9;
  padding:80px 0 40px 0;
  flex-direction:column;
  position: relative;
  z-index: 8;
  gap: 80px;
}


      
.testimonios .wrapper{
    overflow:hidden;
}

.testimonios .marquee{
    display:flex;
    width:max-content;
}


 .testimonios .marquee p{
    white-space:nowrap;
    font-size:86px;
    padding-right:40px;
    color: #B9B4B0;
}     

      
/* línea */
.testimonios .right{
    animation: testimoniosMoverDerecha 60s linear infinite;
}




@keyframes testimoniosMoverDerecha{
    from{
        transform:translateX(-50%);
    }
    to{
        transform:translateX(0);
    }
}


      .testimonios .bottom{
        width:100%;
        display:flex;
        padding:0 40px;
        height:100%;
        align-items:center;
        justify-content:center;
      }

      .testimonios .wrapContenedor{
        width:100%;
        max-width:1000px;
        display:flex;
        justify-content:center;
        align-items:center;
        position:relative;
      }

      .testimonios .content{
        width:100%;
        display:flex;
        gap:51px;
        justify-content:space-between;
        align-items:center;
      }

      .testimonios .foto{
        width:100%;
        max-width:331px;
        height:auto;
        aspect-ratio:331/412;
        background-color:rgb(163, 163, 163);
      }

      .testimonios img{
        object-position:center;
        object-fit:cover;
        width:100%;
        height:100%;
      }

      .testimonios .textos{
        width:100%;
        max-width:696px;
        display:flex;
        flex-direction:column;
      }



.testimonios .controles{
    padding-top:56px;
    width:100%;
    display:flex;
    align-items:center;
    gap:26px;
}

.testimonios .flecha{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:none;
    border:1px solid #C6AB97;
    cursor:pointer;
    transition:.3s;
}

.testimonios .flecha:hover{
    background:#C6AB97;
}

.testimonios .puntitos{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
}

.testimonios .punto{
    width:6px;
    height:6px;
    border-radius:50%;
    background:#b4abab;
    cursor:pointer;
    transition:.3s;
}

.testimonios .punto.activo{
    background:#97806e;
    transform:scale(1.5);
}

      .testimonios .flechaIcon{
        width:18px;
        height:18px;
        flex-shrink:0;
      }
      


      .testimonios .wrapContenedor #textoTestimonio{
        font-size: 20px;
        line-height: 30px;
      }

      .testimonios  #nombreTestimonio{
        font-size: 17px;
        line-height: 27px;
        padding: 21px 0 2px 0;
        color: #935C34;
      }

      .testimonios #paisTestimonio{
        color:#968B86;
        font-size: 15px;
        line-height: 22px;
      }