body { margin: 0; font-family: Arial, sans-serif; background: #121212; color: white; padding-bottom: 80px; }
.perfil-modelo {
    background: #1e1e1e;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: fixed;
    top:80px;
    width: 100%;
}
.perfil-modelo > img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e91e63;
}
.chat-box {
    padding: 65px 15px;
    max-height: 65vh;
    overflow-y: auto;
    margin-top: 175px;
}
.mensagem {
    margin-bottom: 10px;
    padding: 10px;
    background: #1e1e1e;
    border-radius: 8px;
    width: 60%;
    max-height: 400px;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-box {
    width: 90%;
    max-width: 400px;
    height: 80vh;
    background: #1f1f1f;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px #000;
}

.modal-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 18px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}


.mensagem strong {
    color: #e91e63;
}
form#form-msg{
    position: fixed;
    bottom: 65px;
    left: 0;
    right: 0;
    background: #1e1e1e;
    display: flex;
    padding: 10px;
}
form#form-msg input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    margin-right: 10px;
}
form#form-msg button {
    background: #e91e63;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
}
.direita{
    float:right;
}
.esquerda{
    float:left;
}
.clear{
    clear:both;
}
.btns-chats{
    width: 80%;
    margin: 5px 20px;
}
.btns-chats a{
    display:block;
    margin: 5px 30px;
    width: 40%;
    text-align:center;
    text-decoration: none;
    text-transform:uppercase;
    margin-top: 10px;
    color: white; /* Texto em branco */
    padding: 5px 30px; /* Espaçamento interno */
    border-radius: 30px; /* Bordas arredondadas */
    border: none; /* Sem borda */
    font-size: 14px; /* Tamanho do texto */
    cursor: pointer; /* Cursor de mão ao passar o mouse */
    float: right;
}
.clear{
    clear: both;
}
.btns-chats a strong{
    width: 100%;
    display:block;
}
.btns-chats a img{
   border:0;
}
.perfil-modelo a:first-child {
background-color:rgb(255, 10, 161);
}
.perfil-modelo a:last-child {
background-color: #fa0519;
}

@media screen and (max-width:700px){
    .btns-chats a{
        display:block;
        margin: 2px 40px;
        text-align:center;
        width: 70%;
        font-size: 10px; /* Tamanho do texto */
        padding: 2px 20px;
        position: relative;
        left:30px;
    }
    .btns-chats a img{
        border:0;
        width:16px;
     }
}
@media screen and (max-width:420px){
    .btns-chats a{
        display:block;
        margin: 2px 40px;
        text-align:center;
        width: 70%;
        font-size: 9px; /* Tamanho do texto */
        padding: 2px 18px;
        position: relative;
        left:25px;
    }
    .btns-chats a img{
        border:0;
        width:16px;
     }
}