
.fab-wrap{
  position:fixed;
  right:20px;
  bottom:120px; /* 🔼 un poco más arriba pero no pegado */
  z-index:99999;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
}

.fab-btn{
  border:none;
  color:#fff;
  padding:14px 18px;
  border-radius:50px;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  font-size:14px;
  max-width:220px;
  white-space:nowrap;
}

.fab-menu{
  display:none;
  flex-direction:column;
  gap:8px;
}

.fab-item{
  background:#fff;
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  color:#0a2a66;
  box-shadow:0 6px 16px rgba(0,0,0,.15);
  font-size:14px;
  min-width:190px;
  text-align:center;
}

.fab-item:hover{
  background:#0a2a66;
  color:#fff;
}

@media (max-width:768px){
  .fab-wrap{
    right:15px;
    bottom:140px; /* 🔼 móvil un poco más arriba */
  }

  .fab-btn{
    font-size:13px;
    padding:12px 14px;
  }
}
