#duto-nav {
position: fixed;
top: -80px;
left: 0;
width: 100%;
height: 80px;
background: #6abf3a;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 40px;
box-sizing: border-box;
transition: top 0.4s ease;
z-index: 9999;
}
#duto-nav.duto-nav-visible {
top: 0;
}
#duto-nav img {
height: 50px;
width: auto;
opacity: 1 !important;
position: relative !important;
transform: none !important;
}
#duto-nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 40px;
}
#duto-nav ul li a {
color: white;
text-decoration: none;
font-size: 16px;
font-weight: 600;
letter-spacing: 0.05em;
}
#duto-next {
position: fixed;
bottom: -100vh;
left: 0;
width: 100%;
height: 100vh;
background: white;
transition: bottom 0.5s ease;
z-index: 9998;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: #333;
}
#duto-next.duto-next-visible {
bottom: 0;
}