body {
    margin: 0;
    background: #121212;
    color: #fff;
    padding-bottom: 80px;
    font-family: "Roboto", sans-serif;
}
.header {
    background: #341933;
    padding: 3px 20px;
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    z-index: 9999;
    overflow:hidden;
    top: 0; /* Ajusta o topo para que o header fique bem na parte superior */
    box-sizing: border-box; /* Inclui o padding dentro do tamanho total do elemento */
}
.logo {
    font-size: 20px;
    font-weight: bold;
}
.menu-toggle {
    font-size: 24px;
    cursor: pointer;
}
.menu-content {
    position: fixed;
    right: 10px;
    top: 90px;
    background: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
    display: none;
    width: 200px;
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
    z-index: 1000000;
}
.menu-content img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.menu-content div {
    margin-bottom: 5px;
}
/* .saldo-box {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1e1e1e;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 14px;
} */
.intro-text {
    text-align: center;
    font-size: 18px;
    margin: 20px;
    font-weight: bold;
    color: #e91e63;
}
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 350px));
    gap: 20px;
    padding: 20px;
    margin-top: 60px;
}
.modelos.card {
    background:#1e1e1e;
    padding:15px;
    border-radius:10px;
    margin-top:120px;
}
a.botao-aceitar {
    display:inline-block;
    background:#2196f3;
    color:white;
    padding:8px 12px;
    border-radius:8px;
    text-decoration:none;
    margin-top:10px;
}
.modelo-card {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 0 10px rgba(255,255,255,0.1); */
    text-align: center;
    box-shadow: 0px -1px 8px 0px rgba(255, 46, 223, 1);
    padding-bottom: 15px;
    width: 100%;
    display: inline-block;
}
.modelo-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.modelo-card h3 {
    margin: 10px 0 5px;
    font-size: 20px;
}
.status {
    font-size: 14px;
    margin-bottom: 10px;
}
.status.online {
    color: #1eff25;
}
.status.ocupada {
    color: #ff9800;
}
.status.offline {
    color: #df0043;
}
.botao {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    width:70%;
}
.botao img{
    position: relative;
    left:10px;
    top:2px;
}
.botao strong{
    position: relative;
    top:-5px;
    text-transform: uppercase
}
.botao.chamar {
    background: #cf1974;
    color: #fff;
}
.botao.espiar {
    background: #ff9800;
    color: #000;
}

.presentear{
    width:150px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 13px;
    padding:10px;
    display:block;
    position: relative;
    left:50%;
    margin-top:10px;
    transform: translateX(-50%);
    background-color: #e91e63;
    text-decoration: none;
    color:white;
}
.presentear img{
    position: relative;
    top:2px;
}
@media screen and (max-width:600px){
    .container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 500px));
        gap: 20px;
        padding: 20px;
    }
}