.btn-outline-info {
    --bs-btn-color: #000;
    --bs-btn-border-color: #07152f00;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #07152f00;
    --bs-btn-hover-border-color: #000;
    --bs-btn-focus-shadow-rgb: 13, 202, 240;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #000;
    --bs-btn-active-border-color: #0dcaf0;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0dcaf0;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0dcaf0;
    --bs-gradient: none;
}


    body {
      font-family: 'Poppins', sans-serif;
      background-color: #0a192f;
      color: #ccd6f6;
      margin: 0;
      padding: 0;
      -webkit-user-select: none; /* Chrome, Safari */
-moz-user-select: none;    /* Firefox */
-ms-user-select: none;     /* IE/Edge */
user-select: none;         /* EstÃ¡ndar */

    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Orbitron', sans-serif;
    }

    .navbar {
      background-color: #112240;
    }

    .navbar-brand {
        font-family: 'Orbitron';
      font-weight: bold;
      color: #ffffff !important;
    }

    .navbar-nav .nav-link {
      font-family: 'Orbitron';        
      color: #FFFFFF !important;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
      color: #FFFFFF !important;
    }

.hero {
  background-color: #020c1b;
  padding: 120px 20px;
  text-align: center;
}

/* Título responsivo */
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Texto responsivo */
.hero p {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #8892b0;
  line-height: 1.5;
  margin: 0 auto 1.5rem;
  max-width: 700px; /* evita que se estire mucho en pantallas grandes */
}

/* Botón */
.hero .btn {
  font-weight: 500;
  padding: 12px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero .btn:hover {
  transform: translateY(-2px);
}

    .section-title {
      color: #ffffff;
      font-weight: 700;
    }
    
    .lead {
        font-family:'Roboto';
    }

    .service-card {
      background-color: #112240;
      border: 1px solid #233554;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .card-title {
        color:#ffffff;
    }

.card-text:last-child {
    color:white;
    font-family:'Roboto';
}
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 15px rgba(100, 255, 218, 0.1);
    }

    .call-to-action {
      background-color: #112240;
      padding: 80px 20px;
      text-align: center;
    }

    .call-to-action h2 {
      color: #ffffff;
      margin-bottom: 20px;
    }

    .btn-outline-info {
      border-color: #ffffff;
      color: #ffffff;
    }

    .btn-outline-info:hover {
      background-color: #ffffff;
      color: #0a192f;
    }

    footer {
      background-color: #0a192f;
      padding: 60px 20px;
      color: #8892b0;
      font-size: 0.9rem;
    }

    .footer-section h5 {
      color: #ffffff;
      margin-bottom: 1rem;
    }

    .footer-section a {
      color: #8892b0;
      text-decoration: none;
    }

    .footer-section a:hover {
      text-decoration: underline;
      color: #ffffff;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
    }
