/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e6f7e6; /* Verde claro */
}

header {
    background-color: #006400; /* Verde escuro */
    color: white;
    text-align: center;
    padding: 2em 0;
}

#logo {
    width: 80%; /* Ajusta o tamanho do logotipo conforme a largura da tela */
    max-width: 800px; /* Limita o tamanho máximo do logotipo */
    margin-bottom: 1em;
}

section {
    margin: 2em;
    padding: 1em;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    border-bottom: 2px solid #006400; /* Verde escuro */
    padding-bottom: 0.5em;
    color: #4A90E2; /* Azul mais claro */
}

ul, p {
    color: #000000; /* Preto */
}

ul {
    list-style-type: disc;
    padding-left: 1.5em;
}

a {
    color: #1e90ff; /* Azul */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 1em 0;
    background-color: #006400; /* Verde escuro */
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

.foto-galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-around;
}

.foto-galeria img {
    width: 45%; /* Reduz o tamanho das imagens para duas por linha */
    border-radius: 8px;
}

@media (max-width: 600px) {
    #logo {
        width: 100%; /* Permite que o logotipo ocupe toda a largura disponível */
    }

    #mapa iframe {
        width: 100%; /* Ajusta a largura do iframe do mapa */
        height: 225px; /* Metade da altura original */
    }

    .foto-galeria img {
        width: 100%; /* Uma por linha no mobile */
    }
}
