.galeria {
    padding: 40px 20px;
    background-color: #ffffff;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.galeria h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.galeria-imagens {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.galeria-imagens img {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.galeria-imagens img:hover {
    transform: scale(1.05);
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

/* Seção de destaque (home) */
#home {
    background: #3498db;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

#home .highlight-img {
    width: 80%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}




/* Menu de navegação fixo */
.navbar {
    background: #3498db;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #3498db;
}

/* Seções de conteúdo */
section {
    padding: 40px 20px;
    background-color: #ffffff;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

section h2, section h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

section img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}


.lista-container {
    background-color: #ecf0f1;
    padding: 20px;
    margin-top: 20px;
    border-left: 5px solid #3498db;
    border-radius: 8px;
}

.titulo-lista {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.topicos {
    list-style: disc;
    padding-left: 20px;
}

.topicos li {
    margin-bottom: 10px;
}

h1{
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

h2{
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

footer {
    text-align: center;
    padding: 20px;
    background: #2c3e50;
    color: white;
    font-size: 0.9rem;
    margin-top: 40px;
}


@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 30px 15px;
    }

    #home {
        padding: 60px 15px;
    }

    #home .highlight-img {
        width: 100%;
    }

    .navbar ul li {
        margin: 10px 0;
    }
}



