/* Estilos para a Galeria */
.gallery-section {
    padding: 60px 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.gallery-item {
    margin: 15px;
    max-width: 400px; /* Ajuste o tamanho conforme necessário */
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-images {
    display: flex;
    justify-content: space-between;
}

.gallery-images img {
    width: 48%; /* Distribui igualmente o espaço para as duas imagens */
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-caption {
    margin-top: 10px;
}

.gallery-caption h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 14px;
    color: #555;
}

/* Estilos para o Parágrafo Explicativo */
.intro-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.intro-text {
    font-size: 18px;
    color: #333;
    text-align: center;
}
