/* =====================================================
   LGPD COOKIE BANNER
   ===================================================== */
.cookie-banner {
    position: fixed;
    bottom: -400px; /* Hidden offscreen */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1000px;
    background-color: rgba(15, 23, 42, 0.88);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border-dark);
    border-radius: var(--radius-md);
    padding: 1.25rem 2.25rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
    box-shadow: var(--shadow-xl), 0 20px 40px rgba(0, 0, 0, 0.25);
}

.cookie-banner.show {
    bottom: 1.5rem;
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-text a:hover {
    color: var(--gold-light);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    border: none;
    padding: 0.65rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.4s var(--transition);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.btn-cookie-accept:hover {
    background: var(--gold-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-banner {
        width: calc(100% - 2rem);
        padding: 1.25rem 1.5rem;
    }

    .cookie-banner.show {
        bottom: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie-accept {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }
}