/*
Testimonials: Marfino
Version: 1.0
*/

/** 
 * 
 * 
 * Testimonials Carrossel
 * Uso: Estilo do slider de depoimentos.
 */
.depoimentos-slider .depoimento-icon {
    display: flex;
    justify-content: center;
    position: relative;
    bottom: -0.938rem;
}

.depoimentos-slider .depoimento-icon img {
    width: 1.875rem;
    height: auto;
    display: block;
}

.depoimentos-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 2.5rem;
}

.depoimentos-slider .slider-track {
    background-color: #F5F5F5;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.depoimentos-slider .slider-track::-webkit-scrollbar {
    display: none;
}

.depoimentos-slider .slide-item {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    box-sizing: border-box;
    padding: 6.25rem;
}

.depoimento-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.875rem;
}

.depoimento-card .texto {
    text-align: center;
    font-family: "Schibsted Grotesk", Sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: #818181;
}

.depoimento-card .autor {
    display: flex;
    align-items: center;
    gap: 0.938rem;
}

.depoimento-card .autor .avatar {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    object-fit: cover;
}

.depoimento-card .autor .info {
    display: flex;
    flex-direction: column;
    gap: 0.313rem;
}

.depoimento-card .autor .nome {
    font-family: "Schibsted Grotesk", Sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #5E6B77;
}

.depoimento-card .autor .cargo {
    font-family: "Schibsted Grotesk", Sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #818181;
}

.depoimentos-slider .slider-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.25rem;
    z-index: 2;
}

.depoimentos-slider .dot-item {
    width: 0.438rem;
    height: 0.438rem;
    border-radius: 50%;
    background-color: #cccccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.depoimentos-slider .dot-item.active,
.depoimentos-slider .dot-item:hover {
    background-color: #333333;
    transform: scale(1.2);
}

@media (min-width: 768px) and (max-width: 1024px){
    .depoimento-card .texto{
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .depoimentos-slider .slide-item{
        padding: 2rem;
    }

    .depoimento-card .texto{
        font-size: 0.875rem;
    }

    .depoimento-card .autor .avatar{
        width: 3rem;
        height: 3rem;
    }

    .depoimento-card .autor .nome{
        font-size: 0.875rem;
    }

    .depoimento-card .autor .cargo{
        font-size: 0.75rem;
    }
}