/* css para la animación de servicios */
canvas {
  display: block;
}

.dg.main .property-name {
  color: #ccc !important;
}

.dg.main .c input[type=text] {
  color: #eee !important;
  background-color: #222 !important;
  border: 1px solid #444 !important;
}

.dg.main .slider {
  background-color: #444 !important;
}

.dg.main .slider-fg {
  background-color: #0088ff !important;
}

.animation-services {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#neural-network-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  color: #ffffff;
  font-family: 'Geometr212-heavy';
}

.title {
  font-size: 4rem;
  font-weight: 900;
  text-shadow: 0 0 20px #00e5ff;
  letter-spacing: 3px;
}

.subtitle {
  font-size: 2.2rem;
  font-weight: 500;
  color: #00e5ff;
  text-shadow: 0 0 10px #00e5ff;
  margin-top: 0.5rem;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: white;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}
a {
  text-decoration: none;
  color:#0088ff;
}
@media (max-width: 1024px) {
  .title {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .subtitle {
    font-size: 1.2rem;
  }
}
@media (max-width: 400px) {
  .overlay-text {
    padding: 0 20px; 
  }

  .title {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px #00e5ff;
  }

  .subtitle {
    font-size: 1rem;
    text-shadow: 0 0 5px #00e5ff;
  }
}
