/* RESET BÁSICO */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* BODY */
  body { 
    background-image: url(espacio.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Jura', sans-serif;
    color: white;
  }
  
  /* OCULTO */
  .oculto-inicio { 
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
  }
  
  /* TEXTOS GENERALES */
  p, ul, li { 
    max-width: 800px;
    margin: 15px auto;
    font-size: clamp(16px, 3.5vw, 20px);
    line-height: 1.6;
    text-align: left;
    font-family: 'Jura', sans-serif;
  }
  
  /* LINKS */
  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;
  }
  
  /* HEADER */
  .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;
  }
  
  /* FILA LOGO + TITULO */
  .filabien { 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(15px, 5vw, 60px);
  }
  
  /* LOGO */
  .logobien { 
    width: clamp(80px, 15vw, 120px);
  }
  
  /* TITULOS */
  .titulo { 
    font-size: clamp(22px, 5vw, 40px);
    font-family: 'Bruno Ace SC', cursive;
    text-align: center;
  }
  
  .titulo2 { 
    font-size: clamp(20px, 4vw, 26px);
    font-family: 'Bruno Ace SC', cursive;
    text-align: center;
  }
  
  /* MENU */
  .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: rgb(212, 175, 55);
    color: white;
    box-shadow: 0 0 10px #D4AF37;
  }
  
  /* CONTENEDOR PRINCIPAL */
  .info-container { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(20px, 5vw, 40px);
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
  }
  
  /* EXPERIENCIA */
  .experiencia-box { 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: clamp (120px, 18vw, 260px);
    padding-bottom: 40px;
  }
  
  .numeroexp { 
    font-size: clamp(5rem, 20vw, 15rem);
    font-weight: bold;
    font-family:'Bruno Ace SC', cursive;
    margin-top: 80px;
    line-height: 1;
    text-shadow:
      0 0 10px #3FA9F5,
      0 0 20px #3FA9F5,
      0 0 30px #60A5FA,
      0 0 40px #D4AF37,
      0 0 55px #FDE68A,
      0 0 70px #FDE68A;
  }
  
  .añosexp { 
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-family:'Bruno Ace SC', cursive;
    margin-top: 10px;
    text-shadow:
      0 0 10px #3FA9F5,
      0 0 20px #3FA9F5,
      0 0 30px #D4AF37;
  }
  
  /* INTRO */
  .intro-box { 
    flex: 1 1 320px;
    max-width: 700px;
    font-size: clamp(16px, 3.5vw, 20px);
    line-height: 1.6;
  }
  
  /* TEXTO ABAJO */
  .texto-abajo { 
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    font-size: clamp(16px, 3.5vw, 20px);
    line-height: 1.6;
    text-align: center;
  }
  
  .texto-abajo p { 
    text-align: center;
    margin-bottom: 25px;
  }
  
  /* LEMA */
  .lema { 
    font-size: clamp(1.3rem, 5vw, 2rem);
    font-weight: 600;
    font-family: 'Bruno Ace SC', cursive;
    text-shadow:
    0 0 10px #3FA9F5,
    0 0 20px #3FA9F5,
    0 0 30px #60A5FA,
    0 0 40px #D4AF37,
    0 0 55px #FDE68A;
  }
  
  /* IMÁGENES */
  img {
    max-width: 100%;
    height: auto;
  }

  /* ===============================
   MENÚ RESPONSIVE
================================ */

/* Tamaño normal en desktop */
.menubien a {
  white-space: nowrap;
}

/* ===============================
   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;
  }
}