
.botoes {
    margin-top: 10px;
}

.botoes button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: #ffcc00;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.botoes button:hover, .botoes button.ativo {
    background-color: #ffaa00;
}


.galeria {
    display: none;
    margin-top: 20px;
}

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

.imagem {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.imagem img {
    width: 100%;
    border-radius: 5px;
}

.imagem p {
    margin-top: 10px;
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    .galeria {
        grid-template-columns: 1fr;
    }

    .imagem {
        width: 90%;
    }
}
