.testimonios__title {
    font-family: Montserrat;
    font-size: 50px;
    font-weight: 700;
    color: #4B4B4B;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 0;
}

.testimonios__description {
    font-family: Montserrat;
    font-size: 35px;
    color: #000;
    text-align: center;
}

.testimonio {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1310px;
    padding: 100px 0;
    background-color: #FFF;
    border-radius: 35px;
    border: .78px solid #D9D9D9;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    gap: 160px;
}

.testimonio__text {
    align-self: flex-end;
    color: #000;
    text-align: center;
}

.testimonio__text p {
    font-size: clamp(17.3px, 2.06vw, 32.46px);
    font-family: Montserrat;
}

.testimonio__text p:last-child {
    margin-top: 10px;
    font-weight: 300;
    font-style: italic;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.testimonio__text p:last-child::before,
.testimonio__text p:last-child::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #000;
}

.testimonio__media {
    position: relative;
    width: clamp(180px, 23vw, 400px);
    aspect-ratio: 9 / 16;
    flex-shrink: 0;
}

.testimonio__img img,
.testimonio__video video {
    height: 100%;
    max-width: 100%;
    width: 100%;
    display: block;
}

.testimonio__video video {
    border-radius: 75.01px;
    object-fit: cover;
}

.testimonio__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 171.89px;
    height: 85.46px;
    max-width: 60%; 
    max-height: 18%;
    background-color: #A09D9D;
    opacity: .87;
    border-radius: 33.19px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play__img {
    width: 50.27px;
    height: 50.27px;
}

.play__img img {
    object-fit: contain;
    height: 100%;
    width: 100%;
    max-width: 100%;
    display: block;
}

.testimonio__img {
    position: absolute;
    top: -6.5%;
    left: -14.5%;
    width: 130%;
    height: 113%;
    z-index: 2;
    pointer-events: none;
}

.testimonio__img img {
    width: 100%;
    height: 100%;
}

.testimonio__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
    background: #000;
    border-radius: 25px;
}

.testimonio__video iframe {
    width: 94%;
    height: 96.5%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 25px;
}