@charset "utf-8";
/* =======================
   ESTILOS DA SEÇÃO DE FOTOS
   ======================= */
@charset "utf-8";

.fotos {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
}

.fotos h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.galeria img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.galeria img:hover {
    transform: scale(1.1);
}

/* =======================
   RESPONSIVIDADE
   ======================= */
@media (max-width: 1024px) {
    .galeria img {
        width: 250px;
        height: 170px;
    }
}

@media (max-width: 768px) {
    .galeria {
        flex-direction: column;
        align-items: center;
    }

    .galeria img {
        width: 90%;
        height: auto;
    }
}/* CSS Document */

