/* testimonios.css */

.fama-testimonios-swiper {
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}

.fama-testimonio-card {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 0;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.fama-testimonio-imagen img {
    width: 100%;
    max-width: 160px !important;
    object-fit: cover;
    display: block;
    height: 340px !important;
}

.fama-testimonios-swiper .swiper-horizontal>.swiper-pagination-bullets, .fama-testimonios-swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .fama-testimonios-swiper .swiper-pagination-custom, .fama-testimonios-swiper .swiper-pagination-fraction {
    bottom: -30px !important;
    left: 0;
    width: 100%;
    left: 0;
    right: auto;
    text-align: left;
}

.fama-testimonio-imagen {
    background-color: #f9f9f9;
}

.fama-testimonios-swiper .swiper-pagination-bullet {
background-color: #fff !important;
opacity: 0.8 !important;
}

.fama-testimonios-swiper .swiper-pagination-bullet-active {
    background-color: #45626F !important;
    opacity: 1 !important;
}


.testimonios-nav {
    position: absolute;
    right: 0;
    width: 125px;
    height: 60px;
    top: -90px;
    display: flex;
    gap: 20px;
}

.testimonios-nav .swiper-button-prev,.testimonios-nav .swiper-button-next {
    background-color: #fff;
    border-radius: 100px;
    width: 45px;
    height: 45px;
}

.testimonios-nav .swiper-button-next:after, .testimonios-nav .swiper-button-prev:after {
    font-family: swiper-icons;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

button.fama-leer-mas {
    border: 0 !important;
    padding: 0 !important;
    color: #BA8455 !important;
    font-size: 16px !important;
    background-color: transparent !important;
    text-decoration: underline !important;
}

.fama-testimonio-contenido {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
}

.fama-testimonio-texto-corto {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.fama-leer-mas {
    background: none;
    border: none;
    color: #0073aa;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    text-decoration: underline;
    align-self: flex-start;
}

.fama-testimonio-texto-largo {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

.fama-testimonio-info {
    margin-top: auto;
    font-size: 14px;
    color: #777;
}

.fama-testimonio-nombre {
    font-weight: bold;
    margin: 0;
    color: #201751;
}

.fama-testimonio-cargo {
    margin: 0;
}


@media (max-width: 768px) {
    .fama-testimonio-card {
        flex-direction: column;
    }

    .fama-testimonio-imagen img {
        display: none;
    }

    .fama-testimonio-imagen {
        background-color: #fff;
        height: 15px;
    }

    .fama-testimonio-contenido {
        padding: 10px 30px 30px;
    }

    .testimonios-nav {
        display: none;
    }

    .fama-testimonios-swiper .swiper-horizontal>.swiper-pagination-bullets, .fama-testimonios-swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .fama-testimonios-swiper .swiper-pagination-custom, .fama-testimonios-swiper .swiper-pagination-fraction {
        text-align: center;
    }

}