body { 
    background-image: url(espacio.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'jura',sans-serif;
}

.bienvenida { 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(10px, 4vw, 30px);
    background: #1D3254;
    padding: clamp(15px, 4vw, 35px);
    border-radius: 12px;
    margin-bottom: 30px;
  }

.menu { 
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.menu a { 
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 8px;
    text-shadow:
    0 0 6px #c38bff,
    0 0 12px #a64dff;
    transition: 0.3s,
}

.menu a:hover { 
    transform: scale(1.08);
    text-shadow: 0 0 10px #ffffff;
    text-shadow: 0 0 20px #d6b3ff;
    text-shadow: 0 0 30px #a64dff;
}

.menubien { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(10px, 3vw, 20px);
  }

  .menubien a { 
    font-family: 'Bruno Ace SC', cursive;
    padding: 10px 20px;
    background-color: white;
    color: #0a0f1c;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
  }

  .menubien a:hover { 
    background-color: #D4AF37;
    color: white;
    box-shadow: 0 0 10px #D4AF37;
  }

.logobien { 
    width: clamp(80px, 15vw, 120px);
  }

  .titulo { 
    font-size: clamp(22px, 5vw, 40px);
    font-family: 'Bruno Ace SC', cursive;
    text-align: center;
    color: aliceblue;
  }

.titulo2 { 
    font-size: 25px;
    color: #ffffff;
    margin: 0;
    text-align: left;
    font-family: 'Bruno Ace SC', cursive;
}

.filabien { 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(15px, 5vw, 60px);
  }

  a { 
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background: white;
    color: #5a00ff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    text-align: center;
  }

h3{ 
    font-family: 'Bruno Ace SC', cursive;
}

.mini{ 
    font-family: 'jura',sans-serif;
    font-size: 14px;
}

.aviso{ 
    font-family: 'jura',sans-serif;
}

.nombre{ 
    font-family: 'jura',sans-serif;
}

.apps{ 
    font-family: 'jura',sans-serif;
}

.contacto-wsp{ 
    width: 90%;
    max-width: 400px;
    margin: 40px;
    padding: 25px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0, 1);
    font-family: 'Bruno Ace SC', cursive;
    text-align: center;

}

.contacto-wsp h3{ 
    font-size: 22px;
    color: #222222;
    margin-bottom: 20px;
}

.contacto-wsp p{ 
    font-size: 15px;
    color: #555555;
    margin-bottom: 20px;
}

.contacto-wsp select{ 
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #cccccc;
    margin-bottom: 20px;
    font-size: 15px;

}

.btn-wsp{ 
    padding: 10 px 20px;
    background-color: white;
    color: #5a00ff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Bruno Ace SC', cursive;
}

.btn-wsp:hover{ 
    background: #a64dff; 
}

/* ===============================
   MENÚ RESPONSIVE – SIEMPRE EN FILA
================================ */

.menubien {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap; /* ❗ evita que se bajen */
  }
  
  /* Tablet */
  @media (max-width: 768px) {
    .menubien a {
      padding: 8px 12px;
      font-size: 13px;
    }
  }
  
  /* Celular */
  @media (max-width: 480px) {
    .menubien a {
      padding: 6px 10px;
      font-size: 12px;
    }
  }
  
  