
.galaxy-section {
  top: 73px;
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, rgba(32, 41, 230, 0.9), rgba(0, 91, 183, 0.9));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, hsla(253, 76%, 9%, 0.74), hsla(0, 0%, 0%, 0.41)), url(../img/fondogaleri.avif) no-repeat center center/cover;
}




/* Canvas para animación de flujo de datos */
#data-flow-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: transparent; /* Fondo transparente */
}

/* Texto tipo máquina de escribir */
.typing-text {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 2rem;
  white-space: nowrap;
  text-shadow: 0 0 5px rgba(32, 16, 168, 0.8), 0 0 15px rgba(0, 45, 255, 0.6);
  animation: pulse-glow 3s infinite alternate;
  max-width: 90%; /* Limita el ancho en pantallas pequeñas */
  word-break: break-word; /* Ajusta las líneas largas */
}

/* Efecto de pulsación */
@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 5px rgba(27, 28, 178, 0.8), 0 0 15px rgba(63, 5, 225, 0.6);
  }
  100% {
    text-shadow: 0 0 10px rgb(97, 1, 239), 0 0 20px rgba(216, 216, 216, 0.8);
  }
}

/* Ajustes para móviles */
@media (max-width: 768px) {
  .typing-text {
    font-size: 0.9rem; /* Reduce tamaño de fuente */
    padding: 0 14px; /* Ajusta márgenes */
    text-align: center; /* Centra el texto */
  }

  .galaxy-section {
    height: 59vh; /* Ajusta la altura para pantallas pequeñas */
    background-size: cover;
      top: -18px;
  }
}
  /* PARTE 3 */
     section.terceraparte {
            /* Propiedades específicas solo para esta sección */ 
           
     
            padding: 20px;
            margin: 50px auto; /* Baja esta sección */
            width: 90%;
            max-width: 800px;
            border-radius: 2px;
            text-align: center; /* Centra el contenido dentro de la sección */
        }
        h2 {
            color: #ffffff;
            margin-bottom: 20px;
            text-align: center; /* Centra el título */
        }
        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        .step {
            background-color: #152016;
            border: 1px solid #003bff;
            border-radius: 8px;
            padding: 15px;
            flex: 1 1 calc(33% - 20px);
            box-sizing: border-box;
            text-align: center;
        }
        .step img {
            width: 80px;
            height: 80px;
            margin-bottom: 10px;
        }
        .step h3 {
            color: rgba(0, 71, 255, 0.95);
            margin-bottom: 10px;
        }
        .step p {
            font-size: 14px;
            color: #ebebeb;
        }

        /* Media query para móviles (pantallas pequeñas) */
        @media (max-width: 600px) {
            .steps {
                flex-direction: column; /* Cambia a diseño vertical */
                align-items: center; /* Centra los elementos */
            }
            .step {
                flex: 1 1 100%; /* Cada paso ocupa el ancho completo */
            }
            .step img {
                width: 60px; /* Ajusta el tamaño de las imágenes */
                height: 60px;
            }
        }

        /* Media query para tablets (pantallas medianas) */
        @media (max-width: 768px) {
            .steps {
                gap: 15px; /* Reduce la separación entre los pasos */
            }
            .step img {
                width: 70px; /* Tamaño intermedio para imágenes */
                height: 70px;
            }
        }


      /* PARTE 4 */
      .titulo {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.5rem;
      text-align: center;
      color: #3b82f6;
      margin-top: 173px;
      background: linear-gradient(90deg, #3b82f6, #06b6d4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: glow 3s ease-in-out infinite alternate;
    }

    @keyframes glow {
      from {
        text-shadow: 0 0 10px #3b82f6, 0 0 20px #3b82f6;
      }
      to {
        text-shadow: 0 0 20px #06b6d4, 0 0 30px #06b6d4;
      }
    }

    .descripcion {
      text-align: center;
      margin-bottom: 30px;
      color: #006aff;
      font-family: 'Fira Code', monospace;
    }
  
.planes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 30px;
}

.plan {
  background-color: #1153bf;
  border: 2px solid #3b82f6;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  transition: transform 0.3s ease;
}

.plan:hover {
  transform: scale(1.05);
}

.plan h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.plan p {
  margin: 10px 0;
}

.plan button {
  background-color: #101c2f;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.plan button:hover {
  background-color: #2563eb;
}

.formulario {
  display: none;
  background-color: rgba(20, 61, 127, 0.26);
  padding: 20px;
  border-radius: 12px;
  margin-top: 30px;
  border: 2px solid #3b82f6;
         color: #ffffff;
}

.formulario.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

label, select, input[type="checkbox"], input[type="text"], input[type="email"] {
  display: block;
  margin: 10px 0;
  width: 100%;
}

input[type="submit"] {
  margin-top: 15px;
  background-color: #0d3dda;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  color: #ffffff;
}

input[type="submit"]:hover {
  background-color: #001ff1;
}

@media (max-width: 768px) {
  .planes {
    flex-direction: column;
    align-items: center;
  }
      .titulo {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.5rem;
      text-align: center;
      color: #3b82f6;
      margin-top: 160px;
      background: linear-gradient(90deg, #3b82f6, #06b6d4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: glow 3s ease-in-out infinite alternate;
    }

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}
/* ============================= */
/* Sección Negra (Responsiva)   */
/* ============================= */

.seccion-negra {
  background-color: #060562;
  color: white;
  padding: 49px 10%;
}

.info-container {
  text-align: center;
  padding: 32px 0;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-info {
  background-color: #00bcd4;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-info:hover {
  background-color: #008c8c;
}

/* ============================= */
/* Footer (Responsivo)          */
/* ============================= */

footer {
  background-color: #111;
  padding: 40px 0;
}

.footer-fondo {
  text-align: center;
}

.contenedor-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}

.content-foo {
  flex: 1;
  text-align: center;
  min-width: 200px;
}

.content-foo h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.content-foo a {
  display: inline-block;
  margin-top: 10px;
}

.content-foo img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.content-foo img:hover {
  transform: scale(1.1);
}

.titulo-final {
  font-size: 1rem;
  color: #ccc;
  margin-top: 20px;
}

/* ============================= */
/* Media Queries (Responsividad)*/
/* ============================= */

/* Tablets */
@media (max-width: 991px) {
  h2 {
    font-size: 2rem;
  }

  p {
    font-size: 1.1rem;
  }

  .contenedor-footer {
    flex-direction: column;
    gap: 15px;
  }

  .btn-info {
    font-size: 0.95rem;
    padding: 9px 18px;
  }
}

/* Móviles */
@media (max-width: 600px) {
  .seccion-negra {
    padding: 40px 5%;
  }

  h2 {
    font-size: 1.7rem;
  }

  p {
    font-size: 1rem;
  }

  .btn-info {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }

  .content-foo {
    min-width: 100%;
  }

  .content-foo img {
    width: 40px;
    height: 40px;
  }

  .titulo-final {
    font-size: 0.9rem;
  }
}


 

.presentacion {
  padding: 60px 20px;
  text-align: center;
  background-color: #060562;
  color: white;
}

.presentacion h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  color: #333;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #060562;
}

.card-content p {
  margin: 5px 0 15px;
  color: #555;
}

.card-content ul {
  padding-left: 20px;
  text-align: left;
}

.card-content ul li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}





/*  formulario */
#form-container {
  padding: 2rem;
  margin-top: 2rem;
  background-color: #19167a;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Segoe UI', sans-serif;
}

/* Estilos internos del formulario */
form.formulario h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  text-align: center;
  color: #ffffff;
}

form.formulario label {
  display: block;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 500;
}

form.formulario input[type="text"],
form.formulario input[type="email"],
form.formulario textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-top: 0.3rem;
  box-sizing: border-box;
  font-size: 1rem;
}

form.formulario textarea {
  resize: vertical;
}

form.formulario input[type="checkbox"] {
  margin-right: 0.5rem;
}

.opciones {
  margin-bottom: 1.5rem;
}

form.formulario button[type="submit"] {
  background-color: #347a48;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

form.formulario button[type="submit"]:hover {
  background-color: #285d39;
}

/* Responsive para móvil */
@media (max-width: 600px) {
  #form-container {
    padding: 1rem;
  }

  form.formulario h2 {
    font-size: 1.4rem;
  }

  form.formulario input,
  form.formulario textarea {
    font-size: 0.95rem;
  }

  form.formulario button {
    width: 100%;
  }
}



  