:root {
    --primary-color: #c3ad64;
    /* Azul escuro principal - Pode ser a cor principal da prefeitura */
    --primary-color-rgb: 0, 53, 77;
    --secondary-color: #1c3826;
    /* Ciano/Azul claro - Cor de destaque */
    --medium-color: #E2E2E2;
    --light-color: #f8f9fa;
    --text-color: #ffffff;
    --dark-text-color: #333333;
}

body {
    background-color: var(--secondary-color);
}

.logo {
    margin-top: 40px;
    max-width: 25%;
}

@media (max-width: 767.98px) {
    .logo {
        margin-top: 150px;
        max-width: 70%;
    }
}


/* --- Footer (do seu CSS) --- */

.footer-bottom {
    background-color: var(--primary-color);
    padding: 5px 0;
    font-size: 0.9rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--light-color);
    text-align: center;
}

footer a {
    text-decoration: none;
}