*{  
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
.audio{
    width: 100%;
}
.container-geral {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 15px;
    width: 100%;
    background: #5a387a;
}

.container-largura {
    max-width: 90%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 20px;
}
.container-depoimentos.youtube {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
}
.youtube iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
}
.titulo-pagina {
    margin: 0px;
    margin-bottom: 20px;
    font-size: 50px;
    text-align: center;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgb(0 0 0);
}

.subtitulo-pagina {
    margin: 0px;
    font-size: 30px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgb(0 0 0);
} 

.colunas-depoimentos {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.container-todos-depoimentos {
    display: flex;
    width: 100%;
    position: relative;
    gap: 20px;
    justify-content: space-between;
    flex-direction: column;
    max-width: 850px;
}

.container-depoimentos {
    background-color: #ffff;
    display: flex;
    border-radius: 10px;
    border: 1px solid #253a44;
    flex-direction: column;
    padding: 10px;
    /* filter: drop-shadow(2px 2px 4px rgb(0 0 0 / 80%)); */
    
}
/* 
.container-depoimentos:hover {
    transform: scale(1.3);
    position: relative;
    z-index: 2;    
    transition: transform .2s ease;
} */

.videos-depoimentos {
    height: 400px;
}
.imagens-depoimentos {
    border-radius: 10px;
    width: 100%;
}

.container-botoes a{
    font-size: 18px;
    background: #ed4c28;
    margin-right: 20px;
    padding: 15px 20px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 2px solid #ed4c28;
}

.container-botoes {
    margin-bottom: 40px;
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: #5a387a;
    z-index: 1;
    padding: 15px 0;
}
.container-botoes a:hover {
    background: #fff;
    color: #ed4c28;
    border: 2px solid #ed4c28;
}
audio {
    width: 100%;
}

@media (max-width:1280px) {
    .container-todos-depoimentos{
        max-width: 700px;
    }
    /* .colunas-depoimentos {
        width: calc(100%/2 - 20px);
    } */
    /* .container-depoimentos:hover {
        transform: scale(1.3);
    } */
}
@media (max-width:1023px) {
    .colunas-depoimentos {
        width: 100%;
    }
    /* .container-depoimentos:hover {
        transform: scale(1.1);
    } */
    .container-largura{
        padding: 0px;
    }
}
@media (max-width:500px) {
    .container-botoes a{
        width: 100%;
        text-align: center;
        margin-right: 0px;
    }
    .container-botoes{
        margin-bottom: 30px;
    }
    .titulo-pagina{
        font-size: 30px;
    }
    .subtitulo-pagina{
        font-size: 20px; 
    }

}