/* Navbar */
.logo-navbar {
    max-height: 50px;
}

/* Cards */
.card {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Imagem dentro dos cards */
.card img {
    max-height: 150px;
    object-fit: contain;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
}
