/**
 * Cookie Consent Banner Styles
 */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cookie-consent-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.cookie-consent-icon i {
    color: #f8b739;
}

.cookie-consent-content {
    flex: 1;
}

.cookie-consent-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.cookie-consent-text {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.cookie-consent-link {
    color: #f8b739;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-consent-link:hover {
    color: #ffd369;
    text-decoration: underline;
}

.cookie-consent-actions {
    flex-shrink: 0;
}

.cookie-consent-accept {
    border: none;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

.cookie-consent-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    filter: brightness(1.1);
    color: white;
}

.cookie-consent-accept:active {
    transform: translateY(0);
}

/* Animación de entrada */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-wrap: wrap;
        padding: 16px 20px;
        gap: 12px;
    }

    .cookie-consent-icon {
        display: none;
    }

    .cookie-consent-content {
        width: 100%;
        text-align: center;
    }

    .cookie-consent-title {
        font-size: 14px;
    }

    .cookie-consent-text {
        font-size: 12px;
    }

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

    .cookie-consent-accept {
        width: 100%;
        padding: 12px 24px;
    }
}
