@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #222;
}
.topo {
    background: #0D1B2A;
    color: #fff;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.topo a {
    color: #fff;
    text-decoration: none;
    margin-right: 16px;
    font-size: 14px;
}
.topo a:hover {
    text-decoration: underline;
    color: #F5B400;
}
.topo .marca {
    font-weight: 700;
    font-size: 16px;
    margin-right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.topo .marca img {
    height: 22px;
    width: auto;
}
.conteudo {
    max-width: 900px;
    margin: 24px auto;
    padding: 0 16px;
}
.cartao {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(13,27,42,0.08);
}
h1 {
    font-size: 20px;
    margin-top: 0;
    font-weight: 700;
    color: #0D1B2A;
}
h2 {
    font-size: 16px;
    font-weight: 600;
    color: #0D1B2A;
}
label {
    display: block;
    margin-top: 12px;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 13px;
    color: #0D1B2A;
}
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="date"],
input[type="file"],
select,
textarea {
    width: 100%;
    padding: 9px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #28A745;
    box-shadow: 0 0 0 2px rgba(40,167,69,0.15);
}
button, .botao {
    margin-top: 16px;
    padding: 10px 18px;
    background: #28A745;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
button:hover, .botao:hover {
    background: #1e7e37;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 13px;
}
th, td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #e0e0e0;
}
th {
    background: #f0f0f0;
    color: #0D1B2A;
}
.erro {
    background: #fdecea;
    color: #a33;
    padding: 10px;
    border-radius: 4px;
    margin-top: 14px;
    font-size: 14px;
}
.sucesso-msg {
    background: #e7f6ec;
    color: #1e7e37;
    padding: 10px;
    border-radius: 4px;
    margin-top: 14px;
    font-size: 14px;
}
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    background: #e0e0e0;
    color: #444;
}
.badge.ativo {
    background: #d7f3e0;
    color: #1e7e37;
}
.rodape-hostconnect {
    text-align: center;
    padding: 16px 10px;
    font-size: 11px;
    color: #6B7280;
}
.rodape-hostconnect a {
    color: #6B7280;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    vertical-align: middle;
}
.rodape-hostconnect img {
    height: 14px;
    width: auto;
    vertical-align: middle;
}

.menu-item-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 16px;
}
.menu-dropdown-btn {
    background: none;
    border: none;
    color: #fff;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    margin: 0;
}
.menu-dropdown-btn:hover {
    color: #F5B400;
}
.menu-dropdown-conteudo {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0D1B2A;
    min-width: 190px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    border-radius: 6px;
    z-index: 100;
    padding: 6px 0;
    margin-top: 10px;
}
.menu-dropdown-conteudo.aberto {
    display: block;
}
.menu-dropdown-conteudo a {
    display: block;
    padding: 9px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    margin: 0;
}
.menu-dropdown-conteudo a:hover {
    background: rgba(255,255,255,0.08);
    color: #F5B400;
    text-decoration: none;
}
