/* Estilos para la Política de Cookies - MimetaPlus */
:root {
    --cookie-bg: rgba(22, 22, 22, 0.95);
    --cookie-border: rgba(255, 255, 255, 0.1);
    --cookie-text: #e0e0e0;
    --cookie-accent: #3b82f6; /* Azul tipo Bootstrap primary, ajustable */
    --cookie-accent-hover: #2563eb;
}

.cookie-banner-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--cookie-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--cookie-border);
    border-radius: 12px;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner-container.visible {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    color: var(--cookie-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--cookie-accent);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.cookie-text a:hover {
    border-bottom-color: var(--cookie-accent);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
}

.cookie-btn-accept {
    background-color: var(--cookie-accent);
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background-color: var(--cookie-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Ajustes Responsive */
@media (max-width: 768px) {
    .cookie-banner-container {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 12px 12px 0 0;
        border-bottom: none;
        padding: 25px 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px;
    }
}
