.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    background-color: white;
    color: black;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 0.9rem;
    display: none; /* começa escondido */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 10px;
    border: 1px solid #383838;
    border-radius: 10px;
}

.cookie-consent p {
    margin: 0;
    flex: 1;
}

.cookie-consent a {
    color: #CC0000;
    text-decoration: underline;
}

.btn-rejeitar{
    background-color: #CC0000 !important;
    color: white !important;
}

.btn-rejeitar:hover{
    background-color: #CC0000 !important;
    color: white !important;
    transform: scale(1.05);
}

.btn-aceitar{
    background-color: #0099CC !important;
    color: white !important;
}

.btn-aceitar:hover{
    background-color: #0099CC !important;
    color: white !important;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .cookie-consent img {
        margin-bottom: 10px;
    }

    .cookie-consent p {
        font-size: 0.85rem;
    }

    .cookie-consent .btn {
        width: 100%;
    }

    .cookie-consent .gap-2 {
        flex-direction: column;
        width: 100%;
    }
}