   html, body {
      height: 100%;
      margin: 0;
    }
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000; /* Fondo negro */
  color: white;           /* Texto blanco */
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* Sombra más marcada */
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
}
.nav-links a:hover {
  color: #ccc; /* Color al pasar el cursor */
}
.navbar.transparent {
  background-color: rgba(0, 0, 0, 0.6); /* fondo negro con transparencia */
  transition: background-color 0.3s ease;
}
.navbar.shrink {
  padding: 0.5rem 1rem;
  transition: padding 0.3s ease;
}
.btn-redondo {
  display: inline-block;
  background-color: #007bff; /* azul Bootstrap */
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem; /* tamaño de fuente ajustable */
  transition: background-color 0.3s ease;
}

.btn-redondo:hover {
  background-color: #009443;
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: left;
  }
}
.burger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 600px) {
  .burger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links.active {
    display: flex;
  }
}
.logo-img {
  width: 140px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .logo-img {
    width: 100px;
  }
}