body{font-family:Arial,system-ui;background:#0a0718;color:white;margin:0;padding:0;}
.background-gradient{position:fixed;inset:0;background:linear-gradient(120deg,#241b5b,#0a0718);z-index:-2;}
.background-stars{position:fixed;inset:0;background:radial-gradient(circle,#fff2 1px,#0000 2px);background-size:4px 4px;animation:twinkle 8s infinite alternate;z-index:-1;}
@keyframes twinkle{from{opacity:.3;}to{opacity:.6;}}
.z-nav{display:flex;justify-content:space-between;align-items:center;padding:1rem 1.5rem;background:#120f2a;}
.z-logo{color:white;text-decoration:none;font-weight:bold;}
.lang-menu select{background:#241b5b;color:white;border:none;padding:6px;border-radius:6px;}
.z-hero{padding:4rem 1rem;text-align:center;}
.z-section{padding:2rem 1.5rem;}
.z-btn{background:#dba9ff;color:#120f2a;padding:12px 22px;border-radius:8px;text-decoration:none;display:inline-block;margin-top:1rem;font-weight:bold;border:none;cursor:pointer;}
.z-footer{padding:1rem;text-align:center;background:#120f2a;margin-top:2rem;}
.z-form label{display:block;margin-top:1rem;}
.z-form input, .z-form select{width:100%;padding:8px;margin-top:4px;border-radius:6px;border:1px solid #665;background:#160f2b;color:white;}
.z-ok{background:#1e7a1e;padding:1rem;margin-top:1rem;}
.z-error{background:#7a1e1e;padding:1rem;margin-top:1rem;}
.z-autocomplete-input{width:100%;padding:8px;margin-top:4px;border-radius:6px;border:1px solid #665;background:#160f2b;color:white;}
.z-autocomplete-list{list-style:none;margin-top:4px;padding:0;background:#1c1535;border:1px solid #665;border-radius:6px;max-height:180px;overflow-y:auto;position:absolute;width:100%;z-index:100;display:none;}
.z-autocomplete-list li{padding:8px 12px;cursor:pointer;}
.z-autocomplete-list li:hover{background:#32255f;}

.z-form {
  position: relative;
  z-index: 1;
}
#autocompleteList {
  z-index: 200;
}
/* 🔥 SOLUCIÓ OBLIGATÒRIA */
.z-form {
  position: relative;
}

/* 🔥 La llista ha d'estar per sobre de tot */
.z-autocomplete-list {
  z-index: 9999 !important;
  background-color: #1c1535;
}