.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-radius: 16px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc(100% - 40px);
    max-width: 450px;
    border: 1px solid rgba(0, 111, 176, 0.1);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    animation: cookieSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cookieSlideUp {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.cookie-consent-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.cookie-consent-text a {
    color: #006FB0;
    text-decoration: none;
    font-weight: 600;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
}

.cookie-consent-button {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.cookie-consent-accept {
    background: #006FB0;
    color: white;
}

.cookie-consent-accept:hover {
    background: #005a91;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 111, 176, 0.3);
}

.cookie-consent-reject {
    background: #f0f2f5;
    color: #666;
}

.cookie-consent-reject:hover {
    background: #e4e6e9;
    color: #333;
}

.cookie-consent-hidden {
    display: none !important;
}

/* Responsividad */
@media (max-width: 480px) {
    .cookie-consent-banner {
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 24px 24px 0 0;
        padding: 30px 20px 20px 20px;
        animation: cookieSlideUpMobile 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    @keyframes cookieSlideUpMobile {
        from { transform: translateY(100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
}
