/* Configurações Gerais */
* { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; margin: 0; background: #f9f9f9; overflow-x: hidden; color: #333; }

/* NAVBAR ATUALIZADA PARA FUNDO BRANCO[cite: 4, 6] */
.navbar { 
    background-color: #ffffff !important; 
    padding: 10px 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 1100; 
    border-bottom: 4px solid #ffc107; 
}

/* Garante que os links fiquem pretos[cite: 6] */
.navbar .nav-link {
    color: #212529 !important; /* Cor cinza escuro/preto do Bootstrap[cite: 6] */
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ffc107 !important; /* Destaque em amarelo ao passar o mouse[cite: 6] */
}

/* Estilo da foto sobreposta (baseado na sua imagem de referência)[cite: 4] */
.container-foto-destaque {
    position: absolute;
    top: 90px;
    left: 40px;
    z-index: 1045;
    pointer-events: none;
}

.foto-vereador-flutuante {
    width: 420px;
    height: auto;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.5));
}

/* Responsividade do Header no Celular[cite: 4, 6] */
@media (max-width: 991px) {
    .navbar { padding: 10px 2%; }
    .navbar-brand img { height: 45px; }
}