/* Banner de consentimiento de cookies - LSSI/RGPD */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #264653;
    color: #f8f9fa;
    padding: 1rem 1.5rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    font-size: 0.95rem;
    line-height: 1.5;
}

#cookie-banner.is-visible {
    display: block;
}

#cookie-banner .cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

#cookie-banner .cookie-banner-text {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    #cookie-banner .cookie-banner-text {
        flex: 1 1 auto;
        min-width: 0;
    }
}

#cookie-banner .cookie-banner-text p {
    margin: 0 0 0.5rem 0;
}

#cookie-banner .cookie-banner-text a {
    color: #2a9d8f;
    text-decoration: underline;
}

#cookie-banner .cookie-banner-text a:hover {
    color: #3dbdaa;
}

#cookie-banner .cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex-shrink: 0;
}

#cookie-banner .cookie-banner-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
}

#cookie-banner .cookie-banner-btn-necessary {
    background: transparent;
    color: #f8f9fa;
    border: 2px solid #f8f9fa;
}

#cookie-banner .cookie-banner-btn-necessary:hover {
    background: rgba(255, 255, 255, 0.1);
}

#cookie-banner .cookie-banner-btn-accept {
    background: #2a9d8f;
    color: #fff;
}

#cookie-banner .cookie-banner-btn-accept:hover {
    background: #238276;
}
