.hero {
    background: url('hero-image.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
}

.hero .container {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

.cookie-consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 9999;
}

.cookie-consent-popup a {
    color: #ffd700; /* Cor dourada para os links */
    text-decoration: underline;
}

.cookie-consent-popup .cookie-consent-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-consent-popup .btn {
    margin-top: 10px;
}

.instagram-icon {
    margin-right: 4px;
}


@media (min-width: 768px) {
    .card-body {
        min-height: 220px; /* Define a altura mínima dos cards */
    }
}
