.depoimentos {
    scroll-margin-top:6rem;
}

.depoimentos__carrossel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 3rem;
}

.depoimentos__carrossel-area {
    display: flex;
    gap: 3rem;
    justify-content: center;
    max-width: 60rem;
    width:100%;
    height: 30rem;

}

.depoimentos__carrossel-btn {
    cursor: pointer;
    transition: all 250ms;
    fill: var(--color-1);
    width: 2.5rem;
}

.depoimentos__carrossel-btn:hover {
    fill: var(--color-2);
    transform: scale(1.2);
}

.depoimentos__carrossel-content {
    align-items: center;
    aspect-ratio: 2/1;
    display: flex;
    gap: 4rem;
    overflow: hidden;
    scroll-snap-type: x mandatory;    
    width: 100%;
    scroll-behavior: smooth;
    padding: 1rem 0;
}

.depoimentos__card {
    aspect-ratio: 2/1;
    background-color: var(--color-6);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 60%;
    min-width: 60%;
    scroll-snap-align: center;
}

.depoimentos__card-header {
    background-color: var(--color-1);
    border-radius: 10px;
    color: white;
    padding: 0.2rem 0.2rem;
}

.depoimentos__card-title {
    font-size: var(--fs-2);
    font-weight: bold;
    text-align: center;
}

.depoimentos__card-main {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.depoimentos__card-quote {
    width: 2rem;
}

.depoimentos__card-quote.depoimentos__card-quote--right {
    align-self: flex-end;
}

.depoimentos__card-content {
    padding: 0 2rem;
}

.depoimentos__card-content--fs-md {
    font-size: var(--fs-1);
}

.depoimentos__carrossel-selections {
    display: flex;
    gap: 0.4rem;
}

.depoimentos__carrossel-selection {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--color-5);
    transition: all 500ms;
    cursor: pointer;
}

.depoimentos__carrossel-selection--current {
    background-color: var(--color-2);
}

.depoimentos__carrossel-selection:hover {
    background-color: var(--color-2);
}



@media only screen and (max-width: 800px) {
    .depoimentos__carrossel-area {
        gap: 0.5rem;
        max-width: 25rem;
        height: 24rem;
        margin-bottom: 3rem;

    }
    
    .depoimentos__card {
        height: 100%;
        min-width: 100%;

    }
}

@media only screen and (max-width: 600px) {
    .depoimentos__carrossel-area {
        max-width: 20.5rem;
    }

    .depoimentos__carrossel-btn {
        width: 1.5rem;
    }
}
