/* ===== HEADER  ===== */
.godoy-header {
  background: linear-gradient(270deg, #D92332, #F2811D, #f5bc1c, #25D366);
  background-size: 600% 600%;
  animation: headerGradient 20s ease infinite;
  backdrop-filter: blur(10px);
  padding: 25px 40px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
}

.logo img {
  height: auto;
  max-height: 55px;
  padding: 4px 0;
  vertical-align: middle;
}

.nav {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease-in-out;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #f5bc1c;
  transition: width 0.3s ease-in-out;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #f5bc1c;
}

/* Ícone menu mobile */
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

#menu-toggle {
  display: none;
}

/* Animação do gradiente */
@keyframes headerGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 20px 20px;
    gap: 20px;
    transition: right 0.4s ease-in-out;
  }

  #menu-toggle:checked+.menu-icon+.nav {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    font-size: 1.2rem;
  }

  .menu-icon {
    display: block;
    position: relative;
    z-index: 1001;
  }
}