/* Cookie Consent Banner */
#deixa-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 58, 107, 0.95);
    /* theme primary color with opacity */
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    z-index: 9999;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

#deixa-cookie-consent p {
    margin: 0;
    flex: 1 1 auto;
    font-size: 0.95rem;
    line-height: 1.4;
}

#deixa-cookie-consent .deixa-cookie-actions {
    flex: 0 0 auto;
    margin-left: 1rem;
    display: flex;
    gap: 0.5rem;
}

#deixa-cookie-consent button {
    background: #fff;
    color: #1a3a6b;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

#deixa-cookie-consent button:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
}

#deixa-cookie-consent button.decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

@media (max-width: 600px) {
    #deixa-cookie-consent {
        flex-direction: column;
        align-items: stretch;
    }

    #deixa-cookie-consent .deixa-cookie-actions {
        margin-left: 0;
        margin-top: 0.5rem;
        justify-content: flex-end;
    }
}