body {
      margin: 0;
      font-family: 'Nunito', sans-serif;
      background: #fff;
      color: white;
      overflow-x: hidden;
    }
    .navbar {
      background-color: #162958 !important;
    }
    .navbar-brand {
      font-weight: 700;
      color: white;
    }
    .navbar-brand span {
      color: #a832a6;
    }
    .navbar-nav .nav-link {
      color: white;
      margin-right: 1rem;
    }
    .navbar-nav .nav-link:hover {
      color: #a832a6 !important;
    }
.btn-login {
    display: inline-block;
    width: 100%;               /* ancho completo del contenedor */
    background-color: #373d8d; /* morado Hashtec (igual que en la imagen) */
    color: #ffffff;            /* texto blanco */
    font-weight: 700;          /* negrita */
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #162958; /* tono más oscuro para hover */
    color: #ffffff;            /* mantener el texto blanco */
    transform: translateY(-2px);
}
    .hero-wrapper {
      position: relative;
      z-index: 1;
      overflow: hidden;
      background-color: #000;
    }
    .hero {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 7rem 2rem 3rem;
    }
    #particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 0;
    }
    .hero > * {
      position: relative;
      z-index: 1;
    }
    .hero h1 {
      font-size: 2.8rem;
      max-width: 1000px;
    }
    .hero p {
      font-size: 1.1rem;
      max-width: 900px;
      margin-top: 1rem;
    }
    .cta-buttons {
      margin-top: 2rem;
    }
    .cta-buttons a {
      background-color: #a832a6;
      color: white;
      padding: 0.8rem 1.5rem;
      text-decoration: none;
      border-radius: 8px;
      margin: 0 0.5rem;
      transition: background 0.3s;
    }
    .cta-buttons a:hover {
      background-color: #871d87;
    }
    .illustration {
      margin-top: 3rem;
      max-width: 400px;
    }
    .trusted {
      text-align: center;
      margin-top: 3rem;
      font-size: 0.9rem;
      color: #ccc;
    }
    .trusted img {
      height: 28px;
      margin: 0.5rem;
    }
    .footer a {
      font-size: 1.4rem;
      transition: transform 0.3s, color 0.3s;
    }
    .footer a:hover {
      transform: scale(1.2);
      color: #a832a6 !important;
    }
    .servicios {
      background-color: #ffffff;
      color: #162958;
      padding: 4rem 0;
    }
    .servicio-box {
      background: #f0f0f5;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
      height: 100%;
    }
    .servicio-box h4 {
      color: #a832a6;
      margin-bottom: 1rem;
    }

    .servicio-box img {
      transition: transform 0.3s ease;
    }
    .servicio-box:hover img {
      transform: scale(1.1);
    }
     .whatsapp-float {
  position: fixed;
  bottom: 90px; /* antes era 20px */
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
  .whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebc59;
  }

.servicio-box img {
    transition: transform 0.3s ease;
  }
  .servicio-box:hover img {
    transform: scale(1.1);
  }
  .step-box .icon {
    background-color: #fff;
    color: #373d8d;
  }
  .platform-timeline {
    position: relative;
    margin-top: 3rem;
  }
  .timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    justify-content: center;
  }
  .step-icon {
    flex-shrink: 0;
    background-color: white;
    color: #373d8d;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    z-index: 1;
  }
  .step-content {
    max-width: 600px;
    text-align: left;
  }
  .step-content h5 {
    margin-bottom: 0.5rem;
  }
  .timeline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }
    .cta-buttons a:hover {
    background-color: #c94ac2; /* un rosado más claro al pasar el mouse */
    color: #ffffff;
  }

  .btn-hashtec {
  background-color: #a832a6;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;

  min-width: 180px;             /* ancho mínimo igual para todos */
  text-align: center;           /* centra el texto */
  display: inline-block; 
}

.btn-hashtec:hover {
  background-color: #c94ac2;
  color: #ffffff;
}

