:root{
    --header: #F92140;
    --cor-secundaria: #810012; 
    --fonte-principal: 'junge';
}
.janelaFeedback{
    /* height: 60vh; */
    background-color: #00000094;
    backdrop-filter: blur(10px);
    z-index: 9999;
    top: 0;
    position: fixed;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: .6s;
    width: 100%;
    font-family: var(--fonte-principal);
}
.janelaFeedback.ativeChat{
    overflow: visible;
    visibility: visible;
    width: 100%;
    height: 90vh;
}
.modalFeedback{
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .6s ease-in-out;
}
.janelaFeedback.ativeChat .modalFeedback{
    height: 100%;
    animation: chatAnimation .3s ease-in-out;
}
.modal-feedback-body{
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #ffffffa6;
    height: 100%;
    gap: 30px;
    width: 95%;
    align-items: center;
    border-radius: 0 0 20px 20px;
    flex-direction: column;
    opacity: 0;
    transition: .4s ease-in-out;
    justify-items: center;
}
.janelaFeedback.ativeChat .modal-feedback-body{
    opacity: 1;
}
.btnClose-feedback{
    width: 100%;
    display: flex;
    justify-content: center;
    animation: close_Feed_Animate .8s ease-in-out infinite;
}
.btnClose-feedback:hover{
    animation: none;
}
.btnClose-feed{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid red;
    color: #ffffff;
    background-color: #870202;
    font-size: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.chat:hover{
    transform: scale(1.2);
    transition: .2s ease-in-out;
}
.titleChat h1{
    text-align: center;
}
.content-forms{
    opacity: 0;
    transition: 1s cubic-bezier(0.85, -0.03, 0.14, 1.83);
    width: 95%;
    overflow: hidden;
    visibility: hidden;
}
.janelaFeedback.ativeChat .content-forms{
    opacity: 1;
    overflow: visible;
    visibility: visible;
}
.mensagem-form{
    width: 100%;
    height: 100%;
}
#msg{
    width: 100%;
    height: 190px;
    text-indent: 5px;
    padding: 5px;
}
input{
    text-indent: 5px;
    height: 30px;
}
.form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.btn-submit{
    display: flex;
    justify-content: center;
}
.btn-submit .submit{
    width: 100px;
    background-color: green;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
}
.content-chat{
    height: 100%;
    background-image: linear-gradient(89deg, var(--cor-secundaria), var(--header));
    backdrop-filter: blur(10px);
    height: 0;
    transition: .4s cubic-bezier(0.85, -0.03, 0.14, 1.83);
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;

}
.janelaFeedback.ativeChat .content-chat{
    height: 100%;
    max-width: 600px;
}
label{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.depoimentos-container{
    justify-content: space-between;
    width: 100%;
    padding: 40px;
    gap: 17%;
    display: flex;
    align-items: center;

}
.depoimentos-container .slider{
    padding: 40px 60px;
    cursor: grab;
}
.depoimentos-container .slider:active{
    cursor: grabbing;
}
.slider{
    max-width: 500px;
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 15px;
    width: 50%;
    height: 60% !important;
}
.userInfo{
    display: flex;
    gap: 20px;
    padding: 20px 0;
    align-items: center;
}

.userInfo .bi-person{
    font-size: 4vw;
}
.iconSlider .bi-quote{
    font-size: 6vw;
}
.openComents{
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 6vw;
    display: none;
}

@keyframes close_Feed_Animate {
    0% {
        transform: rotateY(10deg);
    }
    100% {
        transform: rotateY(180deg);
    }
}
@keyframes chatAnimation {
    from{
        transform: translate3d(0, -100%, 0);
    }
    to{
        transform: translate3d(0, 0, 0);
    }
}
@media (max-width: 850px) {
    .modal-feedback-body{
        grid-template-columns: 1fr;
        overflow-y: auto;
        height: 95%;
    }
    .depoimentos-container{
        width: 100%;
        gap: 0;
        padding: 0
    }
    .openComents{
        display: none;
    }
    .openComents{
        display: flex;
        position: absolute;
        bottom: 0;
    }
    .content-chat{
        display: none;
        margin:  0 auto;
        position: relative;
    }
    .slider{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0; 
        margin-right: 0;
    }
    .content-chat.ativeFeed{
        display: flex;
        justify-content: center;
    }
    .content-forms.desativeForms{
        display: none;
    }
    .content-forms.desativeForms .content-chat{
        display: flex;
    }
    .janelaFeedback.ativeChat .modal-feedback-body{
        position: relative;
    }
    .bi-menu-up::before{
        font-size: 10vw;
    }
    .bi-menu-up.animateIcon{
        position: fixed;
        top: 20px;
        display: flex;
        justify-content: center;
        transition: 2s;
    }
    .bi-quote::before{
        font-size: 10vw;
    }
    .bi-menu-up.animateIcon.bi-menu-up::before{
        color: white;
    }
    .janelaFeedback.ativeChat .content-chat{
        height: 100%;
        width: 100%;
    }
}