body {
    margin: 0;
    font-family: Arial;
    background: black;
    color: white;
}

/* LARGURA PADRÃO */
.limite {
    width: 680px;
    margin: 0 auto;
}

/* TOPO */
.topo {
    background: #000;
}

/* 🔥 CONTROLE INTELIGENTE DO TOPO */
.topo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

/* 🔥 INDEX (centralizado) */
.topo-central {
    justify-content: center;
}

/* 🔥 LOGADO (separa lados) */
.topo-logado {
    justify-content: space-between;
    padding: 15px 30px;
}

/* ESQUERDA */
.topo-esquerda {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* DIREITA */
.topo-direita {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LOGO */
.logo {
    height: 90px;
}

/* FRASE */
.frase {
    font-size: 14px;
    color: #ccc;
}

/* MENU */
.menu {
    background: #1e73be;
}

.menu-conteudo {
    width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
}

.menu a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

/* BANNER */
.banner {
    height: 120px;
    background: url('https://www.cve.inf.br/wa_images/suporte_cliente.jpg') center/cover;
}

/* ALERTA */
.alerta {
    background: #c00000;
    text-align: center;
    padding: 20px;
}

/* FORM */
.container {
    width: 680px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
}

.box {
    background: #eee;
    color: black;
    padding: 20px;
    width: 300px;
}

/* INPUT */
input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

button {
    background: #1e73be;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
}

/* SENHA */
.senha-box {
    position: relative;
}

.senha-box span {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

/* FORÇA SENHA */
#forcaSenha {
    height: 8px;
    margin-bottom: 10px;
    background: red;
    width: 0%;
}

/* ERRO */
.erro-box {
    width: 680px;
    margin: 20px auto;
    background: #c00000;
    color: white;
    padding: 15px;
    font-weight: bold;
    text-align: center;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px;
}

/* 🔥 WHATSAPP FLUTUANTE (corrigido de verdade) */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    padding: 12px;
    border-radius: 50%;
    z-index: 9999;
}

.whatsapp-float img {
    width: 40px;
    display: block;
}

/* POPUP */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9998;
}

.popup-box {
    background: white;
    color: black;
    padding: 25px;
    width: 300px;
    position: relative;
    text-align: center;
}

.fechar {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.logo {
    height: 90px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}
img {
    max-width: 100%;
    height: auto;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}
.menu {
    width: 100%;
}
body {
    overflow-x: hidden;
}