#wfpgs-chat-container {
    font-family: raleway, Sans-serif;
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(to top, #dfdfde 60%, #00a884 60%);
    padding: 15px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    width: 340px;
    z-index: 2000;
}

#wfpgs-chat-container h3 {
    color: #fff;
    font-size: 18px;
    font-family: raleway, Sans-serif;
}

#wfpgs-chat-box {
    position: relative;
    height: 200px;
    background-color: antiquewhite;
    padding-top: 1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#wfpgs-chat-header{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#wfpgs-chat-text {
    position: relative;
    font-size: 14px;
    background-color: #fff;
    padding: 10px;
    margin: 10px;
    border-radius: 8px;
}

#wfpgs-chat-text:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 12px solid #fff;
    position: absolute;
    left: -8px;
    top: 0;
}

input#wfpgs-message {
    width: 80%;
    padding: 10px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    resize: none;
    box-sizing: border-box;
}

button#wfpgs-btn-send {
    padding: 0;
    border: none;
    background-color: #45a04900;
    color: #404040;
}

button#wfpgs-btn-send:hover {
    color: #1f1f1f;
}

button#wfpgs-btn-send i {
    font-size: 30px;
    padding-left: 7px;
    cursor: pointer;
}

form#wfpgs-chat-form {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f2f5;
    padding: 10px 0;
}

#wfpgs-lgpd-banner {
    font-family: raleway, Sans-serif;
    position: fixed;
    bottom: 0;
    width: 100%;
    /*border: 1px solid #d8d8d8;*/
    text-align: center;
    padding: 10px 0;
    z-index: 2500;
}

#wfpgs-lgpd-banner a {
    color: rgb(0, 0, 0);
}

#wfpgs-lgpd-banner button {
    background-color: #00a884;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

div#wfpgs-container-lgpd{
    display: none;
    font-family: raleway, Sans-serif;
    background-color: #ffffff;
    position: fixed; /* Fixa o modal na tela */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    z-index: 3000; /* Para garantir que fique sobre outros elementos */
}

div#wfpgs-container-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.879);
    z-index: 2900;
    display: flex;
    justify-content: center;
    align-items: center;
}

div#wfpgs-row-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto;
    padding: 0;
    border-radius: 5px;
    max-width: 90vw; /* Largura máxima baseada na largura da janela */
    max-height: 90vh; /* Altura máxima baseada na altura da janela */       
}

div#wfpgs-row-modal img{
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Mantém a proporção sem cortar */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
}

div#wfpgs-row-lgpd {
    position: relative;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto; /* Rolável se o conteúdo for maior que a tela */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    top: 50%;
    transform: translateY(-50%);          
}

div#wfpgs-row-lgpd h2{
    font-size: 24px;
    font-family: raleway, Sans-serif;
}

#wfpgs-chat-container i#wfpgs-close-chat{
    position: absolute;
    right: 20px;
    color: #fff;
    cursor: pointer;
}

button#wfpgs-btn-close-lgpd,
button#wfpgs-btn-close-modal{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1f1f1f;
    border: none;
    padding: 5px 15px;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

button#wfpgs-btn-close-lgpd:hover,
button#wfpgs-btn-close-modal:hover{
    background-color: #000504;
}

button#wfpgs-btn-close-lgpd i,
button#wfpgs-btn-close-modal i{
    margin-left: 5px;
}

div#wfpgs-div-btn-close-lgpd{
    display: flex;
    align-items: center;
    justify-content: center;
}

div#wfpgs-lgpd-banner p span{
    font-weight: 600;
    margin-right: 20px;
    cursor: pointer;
}

button#wfpgs-btn-whatsapp{
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    align-items: center;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    padding: 10px 25px;
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.258);
    animation: pulsate 2s infinite;
    cursor: pointer;
    z-index: 2000;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

button#wfpgs-btn-whatsapp img{
    width: 30px;
    margin-right: 7px;
}

#wfpgs-chat-header img{
    margin-right: 7px;
}

button#wfpgs-btn-close-modal{
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%); 
    border: 1px solid #fff; 
}

svg#Layer_1{
    margin-right: 5px;
}