/* Modal de Cookies */
.cookie-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 300px;
    background: white;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.95rem;
    z-index: 9999;
    transform: translateY(200%);
    opacity: 0;
    transition: all 0.4s ease;
}

.cookie-modal.show {
    transform: translateY(0%);
    opacity: 1;
}

.cookie-modal.hide {
    opacity: 0;
    transform: translateY(200%);
}

.cookie-modal h4 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.cookie-modal p {
    margin-bottom: 1rem;
    line-height: 1.4;
}

.cookie-modal a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.cookie-btn {
    border: none;
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.cookie-btn.primary {
    background: var(--primary);
    color: white;
    transition: transform 0.2s ease;
}

.cookie-btn.primary:hover {
    transform: translateY(-4px);
}

.cookie-btn.secondary {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.cookie-btn.secondary:hover {
    background: #f7f7f7;
}