/* ========================================
   COOKIE CONSENT BANNER (LGPD)
   ======================================== */
.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: var(--primary-dark, #1A2B3B);
    box-shadow: 0 -8px 24px rgba(13, 23, 38, 0.25);
    padding: 24px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-consent-banner.cookie-consent-visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1 1 420px;
    margin: 0;
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 14px;
    line-height: 1.6;
    color: var(--bg-white, #FFFFFF);
}

.cookie-consent-link {
    color: var(--secondary-green, #3BB88B);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-link:hover {
    color: var(--brand-lime, #E4FF33);
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.cookie-consent-btn:hover {
    transform: translateY(-1px);
}

.cookie-consent-btn-primary {
    background: var(--secondary-green, #3BB88B);
    color: var(--primary-dark, #1A2B3B);
}

.cookie-consent-btn-primary:hover {
    background: var(--brand-lime, #E4FF33);
}

.cookie-consent-btn-secondary {
    background: transparent;
    color: var(--bg-white, #FFFFFF);
    border-color: rgba(255, 255, 255, 0.35);
}

.cookie-consent-btn-secondary:hover {
    border-color: var(--bg-white, #FFFFFF);
}

@media (max-width: 640px) {
    .cookie-consent-banner {
        padding: 20px 16px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }

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

    .cookie-consent-btn {
        flex: 1 1 auto;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-consent-banner {
        transition: none;
    }
}
