  body, html {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%; /* 100  */
    overflow: hidden;
    /* background: linear-gradient(to bottom, #1e1e2f, #3a3a5a);  */
    background: linear-gradient(135deg, #0b1a2a 0%, #102c44 100%);
    font-family: 'Segoe UI', sans-serif;
  }

  /* Reducir el ancho del modal-xl */
.custom-modal-size {
  max-width: 100% !important;  /* Ajusta el porcentaje al tamaño que quieras */
}

  .titulo-seo{
    font-size:16px;
    font-weight:bold;
    padding-bottom:0.5px;
    color:white;
    transition:0.3s;
    cursor:pointer;
  }

  .titulo-seo:hover{
    color:#ff9900;
    transform:scale(1.1);
    transition: background 0.3s ease, transform 0.2s ease; 
  }

  .yo_text{
    position:absolute; 
    top:90px; /* 90  */
    left:220px;
    color:white; 
    font-size: clamp(1.0rem, 5vw, 2.5rem);
    transition: text-shadow 0.3s ease, color 0.3s ease;
    opacity:1;
  }
  
  .img-redonda{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
  }

  .yo_text:hover {
    opacity: 1;
    color: white; /* #fff; */
    text-shadow: 0 0 2px #00f, 0 0 5px #0ff, 0 0 8px #0ff;  /* 0 0 10px     0 0 20px    0 0 30px   */
  }


  .casi_text{
    color:#424242;  
    padding: 3em;
    text-align: center;
    opacity: 0.2;
    transition: text-shadow 0.3s ease, color 0.3s ease;
  }
  .casi_text:hover{
    opacity: 0.2;
    color: #424242; 
  }

.glow-hover {
  font-family: 'Poppins', sans-serif;
  color: white;  /*#222;  */
  transition: all 0.4s ease;
  text-align: center;
}

.glow-hover:hover {
  color: #007BFF;
  text-shadow: 0 0 10px #007BFF, 0 0 20px #007BFF;
}

  .welcome-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;  /* 100  */
    background-color: rgba(30, 30, 47, 0.98);
    transform: translate(-50%, -50%) scale(0.5);
    display: flex;
    animation: popupZoom 1.5s ease-out forwards;
    z-index: 999;
  }
  .popup-left, .popup-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .popup-left img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 0 20px rgba(0,0,0,0.8); /* 0,0,0,0.4  */
  }
  .popup-right {
    flex-direction: column;
    text-align: center;
    color: white;
    padding: 20px; /* 40 */
  }
  .popup-right h1 {
    padding-bottom: 8px;
    font-size: 2.5em; /* 3 */
  }
 .popup-right p {
    font-size: 13px; 
  }
  .popup-menu {
    display: flex;
    gap: 8px; /* 20 */
    margin-top: 3px; /*35 30  */
    padding-bottom: 5px; /*30  20 */
    flex-wrap: wrap;
    justify-content: center;
  }
  .popup-menu a {
    text-decoration: none;
    padding: 5px 7px;  /* 12   24  */
    background-color: #ffffff22;
    border-radius: 30px;
    color: white;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
    cursor: pointer;
  }
  .popup-menu a:hover {
    background-color: color: #ffffff22;;
    transform: scale(1.05);
  }
  @keyframes popupZoom {
    0% {
      transform: translate(-50%, -50%) scale(0);
      opacity: 0;
    }
    100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
    }
  }

.btn-contact {
  background: #00bcd4;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* FONDO OSCURO */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 999;
}

/* MODAL */
.modal-contactame {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #111;
  color: white;
  padding: 30px;
  border-radius: 10px;
  width: 320px;
  z-index: 1000;
  transition: 0.3s;
}

/* ACTIVO */
.modal-contactame.active {
  display: block;
  transform: translate(-50%, -50%) scale(1);
}

/* BOTÓN CERRAR */
.cerrar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
  color: red;
}


  /* Modal Contacto */
 .contact-modal::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: -1;
}
 
.contact-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%; /*  50  */
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.9);
  color: white;
  padding: 5px;
  border-radius: 10px;
  z-index: 9999;
}

/* Fondo oscuro opcional */
.contact-modal.active {
  display: block;
}
  .contact-modal h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  .contact-modal input, .contact-modal textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
  }
  .contact-modal button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
  }
  .contact-modal button:hover {
    background-color: #0056b3;
  }
  /* Quiénes Somos Popup */
  .about-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;  /* 752  350  */
    max-width: 100%;
    height: 100%;
    background-color: #292944;
    color: white;
    padding: 10px; /* 30 */
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 1001;
  }
  .about-popup.active {
    transform: translateX(0);
  }
  .about-content {
    display: flex;
    flex-direction: column;
    height: 100%; /* 100 --*/
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  .about-content img {
    width: 90px;  /* 120  */
    height: 90px; /* 120  */
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
  }
  .about-content h2 {
    font-size: 2em;
  }
  .about-content p {
    font-size: 0.8em;  /* 1.1em  */
    line-height: 1.5em;
    font-weight: 700;
  }
  .about-content .close-about {
    padding: 5px 10px; /* 10   20  */
    background-color: #1c1a1c; /*#ff4d4d; */
    border: none;
    border-radius: 20px; /*  8 */
    font-size: 1em;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .about-content .close-about:hover {
    background-color: black; /* #cc0000; */
    font-size: 1.2em;
  }
  /* service Popup */
  .servi-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;  /*752 350  */
    max-width: 100%; /*  50% o 550 ancho */
    height: 100%;
    background-color: #292944;
    color: white;
    padding: 30px; /* 30 */
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 1001;
  }
  .servi-popup.active {
    transform: translateX(0);
  }
  .servi-popup p {
    text-align: left; 
    padding: 1px; /* 5 */
  }
  .servi-popup li {
    list-style-type: circle;
  }
  .servi-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;/* 20  */
    text-align: center;
  }

  .servi-content img {
    width: 90px;  /* 120  */
    height: 90px; /* 120  */
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
  }

  .servi-content h2 {
    font-size: 2em;
  }

  .servi-content p {
    font-size: 1em;  /* 1.1em  */
    line-height: 1.5em;
  }
  .servi-content .close-servi {
    padding: 5px 10px; /* 10  20 */
    background-color: #1c1a1c; /*#ff4d4d; */
    border: none;
    border-radius: 20px; /*  8 */
    font-size: 17px;   /* 1em;  */
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .servi-content .close-servi:hover {
    background-color: black; /* #cc0000; */
    font-size: 18px;   /* 1em;  */
  }


  @media (max-width: 568px) {
     .img-redonda{
      width:70px;
      height:70px;
      border-radius:50%;
      object-fit:cover;
    }

    .welcome-popup {
      flex-direction: column;
    }
    .yo_text{
      position:absolute; 
      top:20px;
      left:117px;
      color:white;
      font-size: clamp(0.8rem, 5vw, 0.8rem);
    }
    .popup-right h1 {
      font-size: 14px; 
    }
    .popup-menu {
      display: flex;
      gap: 5px;  /* 20  */
      margin-top: 1.5px; /* 30  */
      flex-wrap: wrap;
      padding-bottom: 1.5px; /*  20  */
      justify-content: center;
    }
    .popup-left img {
      width: 140px; /* 180 */
      height: 140px;
      margin-top: 10px;  /* 20  */
    }
    .popup-right {
      padding: 10px;  /* 20  */
    }
    .about-popup {
      width: 100%;
    }
  }

  .menu-btn.disabled {
    font-size: 13px;
    pointer-events: none;
    opacity: 0.2;  /* 0.5 */
  }

  
  .menu-btn:hover {
    background: linear-gradient(135deg, #00BFFF, #1E90FF);
    color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
    transition: all 0.3s ease;
}



  .goog-te-gadget-simple{
    border-radius: 2rem;
    padding: 5px;
  }
  .google_translate_element{
    padding: 12px;  /*  15  */
  }
  @media (max-width: 480px) {
    .welcome-popup {
      animation: popupZoomSmall 1.2s ease-out forwards;
    }
    .yo_text{
      position:absolute; 
      top:30px;/* 20 15*/
      left:117px;
      color:white;
      font-weight: 900;
      font-size: clamp(0.8rem, 5vw, 0.8rem);
    }
    @keyframes popupZoomSmall {
      0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0;
      }
      100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
      }
    }
  }
  .support-modal {
    display: none;
    position: fixed;
    top: 5%;
    left: 5%;
    width: 90%;   /* 80*/
    height: 85%;  /* 90*/
    background-color: #292944;
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
    z-index: 99999 ! important;
    border-radius: 20px;
    color: #fff;
    animation: fadeIn 0.5s ease; /* 0.3 */
  }
  .support-content {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 50px;
  }

  .close-btn {
    padding: 5px 10px; /* 10  20 */
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
  }
  .support-buttons {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  .popup-buttons {
    display: flex;
    gap: 30px;  /* 20  */
    margin-top: 2px; /* 30  */
    flex-wrap: wrap;
    padding-bottom: 2px; /*  20  */
    justify-content: center;
  }
  .oval-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px; /* 150   */
    height: 80px; /* 100  */
    /*  padding: 15px 40px;  */
    border: 2px;
    border-radius: 8px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/dluis1.jpg') center/cover no-repeat;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 18px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  }
  .oval-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/dluis1.jpg') center/cover no-repeat;
  }
  .oval-btn1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;  /* 150  */
    height: 80px; /* 100  */
    /*padding: 1px 2px; /* 15  40  */
    border: 2px; /* 13 */
    border-radius: 8px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/peru_f1.jpg') center/cover no-repeat;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 18px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  }
  .oval-btn1:hover {
    transform: scale(1.05);
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/peru_f1.jpg') center/cover no-repeat;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }
  /* Responsive Title and Button Size */
  @media (max-width: 600px) {
    .support-content h2 {
      font-size: 1.2rem;
    }
    .oval-btn {
      font-size: 0.9rem;
      padding: 0.5rem 1rem; /* 0.8rem 1.5rem   */
    }
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }
  @media (max-width: 768px) {
    .scroll-text {
      width: 90%;
      max-height: 150px;      /* altura visible */
      overflow-y: auto;       /* scroll vertical */
      padding: 1px;
      border: 1px solid #ddd;
      border-radius: 8px;
      background-color: #292944;   /* black; */
      font-size: 18px;
      line-height: 2.3;
    }
    .popup-right h1 {
      font-size: clamp(1.2rem, 5vw, 2rem);
    }
  }

  .scroll-text {
      max-height: 150px;  /* altura visible */
      overflow-y: auto;       /* scroll vertical */
      padding: 1px;
      border: 1px solid #ddd;
      border-radius: 9px;
      background-color: #292944;   /* black; */
      font-size: 18px;
      line-height: 2.3;

      width: 70%;
      max-width: 900px;   /* límite en pantallas grandes */
      margin: 0 auto;
    }

  .texto-brillante {
    font-size: 2em;
    color: white;
    transition: text-shadow 0.3s ease, color 0.3s ease;
  }

  .texto-brillante:hover {
    color: #fff;
    text-shadow: 0 0 10px #00f, 0 0 20px #0ff, 0 0 30px #0ff;
  }
  .solo-desktop {
      width: 35%;
      height: 35%;
    }
  @media (max-width: 768px) {
    .solo-desktop {
      display: none;
    }
  }

 .modal-content {
  z-index: 9999999 !important;
  position: relative ; /* necesario para x a la derecha */
  background-color: #f9f9f9;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

.modal-header {
  /*background-color: black;    #d62828*/
  color: white;
}

.modal-footer {
  background-color: #f1f1f1;
  text-align: center;
}

.modal.fade .modal-dialog {
  transform: scale(0.9);
  transition: transform 0.3s ease-in-out;
}
.modal.fade.show .modal-dialog {
  transform: scale(1);
}

.footer-popup {
  position: fixed;
  bottom: -300px;  /* -300  */
  left: 0;
  width: 100%;
  background-color: #111;
  color: white;
  padding: 3px; /* 20 margen superior */
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
  transition: bottom 0.5s ease;
  z-index: 9999 ! important;
  text-align: center;
}

.footer-popup.show {
  bottom: 0;
}

.footer-popup .close-footer-popup {
  position: absolute;
  top: 5px; /* 10 */
  right: 2px; /* 20  */
  font-size: 14px;
  cursor: pointer;
}

.footer-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px; /* 15   Espacio entre ícono y texto */
  margin-top: 5px; /* 10 */
}

/* Ícono WhatsApp redondo y pequeño */
.whatsapp-icon {
  display: inline-block;
  width:  32px; /* 36 */
  height: 32px;/* 36 */
  background-color: #25D366;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 6px;
}

  .facebook-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: #1877f2;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }

  .facebook-icon:hover {
    background-color: #145dbf;
  }

/* Estilo del texto de fecha y hora */
.datetime {
  color: white;
  font-family: sans-serif;
  font-size: 12px;
}
 .datetime:hover {
    color: #fff;
    text-shadow: 0 0 2px #00f, 0 0 5px #0ff, 0 0 8px #0ff;  /* 0 0 10px     0 0 20px    0 0 30px   */
  }

.button-scroll {
  overflow-x: auto;
  display: flex;
 /* flex-direction: column; */
  gap: 5px; /* 20 */
  margin-top: 20px; /*120 - 90 - 30  */
  padding-bottom: 15px;  /*65 -  10  */
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

.flag-button {
  min-width: 75px; /* 250 */
  height: 60px; /* 140  */
  background-size: cover;
  background-position: center;
  margin: 3px; /* 5 - 10 */
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 4px #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.flag-button:hover {
  transform: scale(1.05);
}

.scroll-text {
  max-height: 160px;      /* altura visible */
  overflow-y: auto;       /* scroll vertical */
  padding: 1px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #292944;   /* black; */
  font-size: 18px;
  line-height: 2.3;
}



.contenedor {
  display: flex;
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
}

.menu {
  width: 35%;
}

.menu ul {
  list-style: none;
  padding: 0;
}

.menu li {
  background: #1e293b;
  color: white;
  padding: 15px;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.menu li:hover {
  background: #2563eb;
  transform: translateX(5px);
}

.panel {
  width: 65%;
  background: #f8fafc;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


.btn-style {
  list-style: none;
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #0d6efd, #084298);
  color:  #F5F5F5; /* white;  */
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-style:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.btn-style:active {
  transform: scale(0.95);

.popup-left img {
  width: 220px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 1s ease, filter 1s ease;
}

/* Animación activa */
.girar {
  transform: rotateY(360deg);
  filter: hue-rotate(180deg) brightness(1.2) contrast(1.2);
}  


.btn-gamer{
    background: black;
    color: #00fff7;
    border: 2px solid #00fff7;
    padding: 14px 30px;
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;

    box-shadow: 0 0 10px #00fff7, 0 0 40px rgba(0,255,247,0.5);
    transition: 0.3s;
}

/* glitch effect */
.btn-gamer:hover {
    color: black;
    background: #00fff7;
    box-shadow: 
        0 0 20px #00fff7,
        0 0 60px #00fff7;
}

/* línea animada */
.btn-gamer::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #00fff7;
    left: -100%;
    bottom: 0;
    transition: 0.4s;
}

.btn-gamer:hover::after {
    left: 0;
}

.profile-img {
  width: 90px; /* 100  */
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .profile-img {
    width: 70px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }


  .profile-card {
    text-align: center;
    padding: 20px;
  }

  .profile-img {
    width: 180px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .profile-card h3 {
    margin-top: 15px;
    font-size: 20px;
    color: #2c3e50;
  }

  .role {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: bold; /* El brillo se nota mejor en letras un poco más gruesas */
    
    /* El secreto del brillo: capas de sombras blancas con distintos desenfoques */
    text-shadow: 
      0 0 5px rgba(255, 255, 255, 0.8), 
      0 0 10px rgba(255, 255, 255, 0.5), 
      0 0 20px rgba(255, 255, 255, 0.3);
  }

  .whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding-top: 20px;
    padding-bottom: 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  
    margin-bottom: 10px;
  }

  .whatsapp-btn:hover {
    background: #1ebe5d;
    transform: scale(1.08);
    padding-bottom: 20px;
  }

  .social-icons {
    display: flex;          /* Activa el alineamiento */
    justify-content: center; /* Centra el grupo de iconos */
    align-items: center;
    gap: 25px;               /* <--- AQUÍ es donde controlas la separación */
}

  .social-icons i {
    font-size: 30px;       /* Cambia este número para ajustar el tamaño a tu gusto */
    text-decoration: none;
    color: #ffffff;        /* Aprovechando que querías letras blancas brillantes */
    transition: transform 0.3s ease; /* Esto es para que el cambio de tamaño sea suave si añades hover */
    /* El efecto de brillo que pediste antes */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
  }
}

.social-icons {
  margin: 0 20px; /* Espacio horizontal entre los íconos */
  display: flex;          /* Activa el alineamiento */
  justify-content: center; /* Centra el grupo de iconos */
  align-items: center;
  gap: 30px; /* <-- Este es el espacio entre íconos */
  margin: 20px 0; /* margen externo del grupo */
}

.social-icons a {
  display: inline-block; /* necesario para aplicar hover */
}

.social-icons a:hover {
  transform: scale(1.4); /* Efecto hover */
  color: #f04;           /* Cambia color al pasar el mouse */
}

.social-icons i {
  font-size: 30px;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease;
  
  /* El efecto de brillo que pediste antes */
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

.social-icons a:hover {
  transform: scale(1.4); /* Efecto hover */
  color: #f04;           /* Cambia color al pasar el mouse */
}

.social-icons a { margin-right: 20px; }
.social-icons a:last-child { margin-right: 0; }


#closeTranslate {
  position: fixed;       /* Fijo en la pantalla */
  top: 10px;             /* Desde arriba */
  right: 80px;           /* Desde la derecha */
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: white;          /* Cambia color si quieres */
  z-index: 9999;         /* Siempre encima */
  background: rgba(255,255,255,0.8); /* Fondo semitransparente opcional */
  padding: 5px 10px;
  border-radius: 5px;
  transition: transform 0.2s, background 0.2s;
  cursor: pointer;
}

#closeTranslate:hover {
  transform: scale(1.5);
  background: rgba(255,0,0,0.8); /* Resalta al pasar el mouse */
  color: #fff;
  cursor: pointer;
}

.espacio {
  height: 10px;
  display: block; /* asegura que funcione como separación */
}

.menu-ultra {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btn-gamer-pro {
    position: relative;
    display: inline-block;
    padding: 16px 40px;
    font-size: 20px;
    font-weight: bold;
    color: #00fff7;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #0f0f2d, #1a1a40);
    border: 2px solid #00fff7;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 0 10px #00fff7, 0 0 20px rgba(0,255,247,0.5);
}


.btn-gamer-pro:hover {
    color: #fff;
    background: linear-gradient(45deg, #00fff7, #0066ff);
    box-shadow: 
        0 0 15px #00fff7,
        0 0 30px #00fff7,
        0 0 60px rgba(0,255,247,0.7);
    transform: scale(1.05);
}

.btn-gamer-pro::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(0,255,247,0.6), transparent);
    transition: 0.5s;
}

.btn-gamer-pro:hover::before {
    left: 100%;
}

.btn-gamer-pro:active {
    transform: scale(0.95);
    box-shadow: 0 0 10px #00fff7;
}


.btn-ultra {
  background: #111;
  color: white;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #333;
  cursor: pointer;
  transition: 0.3s;
}

.btn-ultra:hover {
  background: #222;
  transform: translateY(-2px);
}

/* Click efecto */
.btn-ultra:active {
  transform: scale(0.98);
}

.btn-dark {
  background: #111;
  color: white;
}
.btn-dark:hover {
  background: #222;
}

/* Icono */
.btn-ultra .icon {
  font-size: 20px;
}

/* Texto */
.btn-ultra .text {
  flex: 1;
  margin-left: 15px;
}

/* Flecha */
.btn-ultra .arrow {
  font-size: 18px;
  opacity: 0.7;
}



.modal {
  display: none; /* oculto por defecto */
  position: fixed;
  z-index: 9999999 ! important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5); /* fondo oscuro */
}

/* Contenido del modal */
.modal-content {
  position: relative;
  background-color: #fff;
  margin: 50px auto;
  padding: 25px;
  border-radius: 12px;
  max-width: 600px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  z-index: 99999 !important;
}

/* X de cerrar */
.close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 32px;
  color: red;
  cursor: pointer;
  transition: 0.2s;
  z-index: 1000;
}

.close:hover {
  color: darkred;
  transform: scale(1.2);
}


.modal-custom{
  display:none;
  position:fixed;
  top:10px;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.8);
  justify-content:center;
  align-items:center;
  z-index:9999 !important;
}

.modal-box{
  background:#111;
  padding:15px;
  border-radius:10px;
  width:100%;
  max-width:100%;
  z-index: 999999 !important;
}

.close{
  float:right;
  font-size:25px;
  cursor:pointer;
  color:red;
}

.opciones {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}

.btn-opcion {
  padding: 12px 20px;
  border: 2px solid #00fff7;
  background: transparent;
  color: #00fff7;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-opcion:hover {
  background: #00fff7;
  color: black;
  box-shadow: 0 0 15px #00fff7;
}

.ia-modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  z-index:9999;
}

.ia-box{
  width:90%;
  max-width:500px;
  margin:5% auto;
  background:#0f172a;
  padding:20px;
  border-radius:15px;
  color:white;
  box-shadow:0 0 20px #00f7ff;
}

#chat{
  height:250px;
  overflow-y:auto;
  background:#020617;
  padding:10px;
  margin-bottom:10px;
  border-radius:10px;
}

input{
  width:100%;
  padding:10px;
  margin-bottom:10px;
  border-radius:8px;
  border:none;
}

button{
  background:linear-gradient(45deg,#00f7ff,#0066ff);
  border:none;
  padding:10px;
  color:white;
  border-radius:10px;
  cursor:pointer;
  margin:5px;
}





/* Fondo oscuro */
.modal-overlay1 {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999999 !important;
  justify-content: center;
  align-items: center;
}

/* Cuando está activo */
.modal-overlay1.active {
  display: flex;
}

/* Caja del modal */
.modal-box1 {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  position: relative;
  z-index: 999999 !important;
}

/* Botón cerrar */
.modal-close1 {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #555;

}