.testimonios-container {
    width: 100%;
    height: 606px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonios-wrapper {
    width: 760px;
    height: 442px;
    overflow: hidden;
    padding: 8px;
    transition: width 0.3s ease-in-out;
}

.testimonios-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    color: rgba(35, 94, 173, 1);
}

.testimonios-grid {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
}

.testimonio-card {
    flex: 0 0 360px;
    height: 320px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonio-linea {
    width: 312px;
    height: 1px;
    background: linear-gradient(to right, rgba(8, 159, 228, 1), rgba(34, 74, 162, 1));
    margin: 10px auto;
}

.testimonios-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonios-buttons button {
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(34, 74, 162, 1);
    color: rgba(34, 74, 162, 1);
    border-radius: 100px;
    width: 52px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonios-buttons button:hover {
    background-color: rgba(5, 158, 219, 0.1);
    color: rgba(34, 74, 162, 1);
}

.testimonios-buttons button:active {
    background: linear-gradient(to right, rgba(8, 159, 228, 1), rgba(34, 74, 162, 1));
    color: rgba(255, 255, 255, 1);
}

.testimonios-buttons button:disabled {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(34, 74, 162, 1);
    opacity: 50%;
    cursor: not-allowed;
}

.testimonios-buttons i {
    font-size: 24px;
}


.testimonio-comillas {
    margin-bottom: 15px;
    width: 52px;
    height: 52px;
}

.testimonio-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonio-text {
    font-size: 14px;
    color: rgba(64, 64, 64, 1);
}

.testimonio-nombre-puesto {
    margin-left: 15px;
    margin-top: 20px;
}

.testimonio-puesto {
    font-size: 14px;
    color: rgba(15, 23, 42, 1);
}

.testimonio-footer {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

@media (max-width: 1239px) and (min-width: 905px) {
    .testimonios-wrapper {
        width: 375px;
    }
}

@media (max-width: 904px) and (min-width: 600px) {
    .testimonios-container {
        height: 544px;
    }

    .testimonios-wrapper {
        width: 375px;
    }

    .testimonios-title {
        font-size: 27px;
    }
}

@media (max-width: 599px) and (min-width: 0px) {
    .testimonios-container {
        height: 568px;
    }

    .testimonios-wrapper {
        width: 342px;
        height: 464px;
    }

    .testimonio-card {
        flex: 0 0 328px;
        height: 344px;
    }

    .testimonio-linea {
        width: 280px;
    }

    .testimonios-title {
        font-size: 25px;
    }
}