/* Estilos personalizados para a Câmara Municipal de Francisco Morato */

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
}

h1 {
    color: #000000;
    margin-top: 2rem;
    font-weight: bold;
}

#brasao {
    max-width: 200px;
    height: auto;
    margin: 1.5rem auto;
}

.container {
    max-width: 1200px;
    padding: 20px;
}

a {
    text-decoration: none;
    color: #000000;
    font-weight: normal;
}

a:hover {
    text-decoration: underline;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.app-buttons img {
    max-height: 40px;
    width: auto;
}

/* Ajustes de responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    #brasao {
        max-width: 150px;
    }
    
    .app-buttons img {
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    #brasao {
        max-width: 120px;
    }
    
    .container {
        padding: 15px;
    }
}
