:root {
  --primary-color: #112646;
  --accent-color: #15A4F9;
  --text-color: #FFFFFF;
  --hover-color: #0d8ce0;
  --bg-color: #1F2A3A;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 30px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
   background-color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 15px;
  position: relative;
}

.logo1 img {
  height: 60px;
}

.navbar1 ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar1 ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
  position: relative;
}

.navbar1 ul li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, #FF000C, #FF00E9, #001AFF, #00FFFB);
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.navbar1 ul li a:hover {
  color: var(--accent-color);
}

.navbar1 ul li a:hover::after {
  width: 100%;
}

#menu {
  display: none;
}

.menu-icono {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-icono span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: 0.3s;
}

@media(max-width: 768px) {

  .hero-body{
    min-height: 1vh;
  }


  .menu-icono {
    display: flex;
  }

  .navbar1 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }

  .navbar1 ul {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }

  #menu:checked ~ .navbar1 {
    display: flex;
  }
}