* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size:100%;
}


.header {
  width: 100%;
  height: 130vh;
  background: url(fondo.gif);
  background-size: cover;
  background-position: center;
}

.nav {
  width: 100%;
  height:100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
padding: 25px;
  position: relative;
  z-index: 50;
}



.logo img {
  width: 60px;
  margin-left:70px;
  margin-top: auto;
  margin-bottom: auto;
}

.menu{
  display:flex;
  margin-right:25px;
}

.menu li{
  list-style:none;
  margin: 5px;
}

.menu li a{
  color:black;
  text-decoration:none;
  font-family: 'Nunito', sans-serif;
  font-weight:800;
  transition: all 0.5s ease;
}


.menu li a:hover {
  color: #e72c76;
  padding: 5px 10px;
  border-radius:15px;

}









.logo a:hover {
  color: #e72c76;
}

.navbar li:hover>ul {
  display: block;
}

.navbar ul {
  background: #fff;
}

.navbar>li {
  float: left;
}


/* ── SELECTOR DE IDIOMA ES/EN ── */
.lang-switch {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #0e0e0e;
  border-radius: 999px;
  padding: 2px;
  box-shadow: 3px 3px 0 #e72c76;
}

.lang-opt {
  border: none;
  background: transparent;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #0e0e0e;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-opt:hover {
  color: #e72c76;
}

.lang-opt.activo {
  background: #0e0e0e;
  color: #fff;
}

.lang-opt.activo:hover {
  color: #fff;
}

@media screen and (max-width: 810px) {
  .lang-opt {
    font-size: 15px;
    padding: 5px 14px;
  }
}