/* Reset básico */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  position: relative;
  z-index: 99;
}
/*particle-js*/
#particles-js{
	height: 100vh;
	width: 100%;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	position: fixed;
	z-index: -1;
}

.cta-buttons .btn {
            text-decoration: none;
            color: white;
            background-color: #0077cc;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-size: 1rem;
            margin: 0.5rem;
        }
/* Hero Section */
.hero-section {
   background: url('{{ asset('images/puente-negocios.webp') }}') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 50px 20px;
  z-index: 99;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.cta {
  display: inline-block;
  background: #00527f;
  color: white;
  padding: 20px 30px;
  text-decoration: none;
  border-radius: 5px;
}
.cta:hover {
	color: #212429;
  background: #fff;
}
.cta-button {
  display: inline-block;
  background: #00527f;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.cta-button:hover {
	color: white;
  background: #212429;
}
#problema-solucion ul{
  list-style-type: none;
}

/* Lead Magnet */
.lead-magnet {
  background: #f4f4f4;
  text-align: center;
  padding: 40px 20px;
}

.lead-magnet h3 {
  margin-bottom: 10px;
}

.form input {
  padding: 10px;
  width: 70%;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form button {
  padding: 10px 20px;
  background: #ff6f61;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form button:hover {
  background: #ff5733;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer a {
  color: #ff6f61;
  text-decoration: none;
}
.navbar {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Agrega una sombra ligera */
}

/* Ajusta la altura de la barra de navegación */
.navbar-nav .nav-item {
  margin: 5px 0; /* Espaciado entre los elementos del menú */
}

/* Asegura que el menú desplegable cubra toda la pantalla en móviles */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #00537f; /* Fondo blanco para mejor visibilidad */
    opacity: 0.95;
    padding: 10px;
    border-radius: 2px;
  }

  .navbar-nav {
    text-align: center; /* Centra los enlaces en móviles */
  }
  .nav-link:nth-child(1){
    border-bottom: 1px solid white;
  }
  .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 18px; /* Hace los enlaces más grandes para que sean fáciles de tocar */
    font-weight: bold;
    color: whitesmoke;
  }
  .nav-link:hover{
    background: white;
    color: #00537f;
  }

}
@media only screen and (min-width: 768px) {

  
}
