/* Estilo Global */














/* Estilo do Menu Hambúrguer */
.menu-hamburguer {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 4;
}

#menu-toggle {
  display: none;
}

.menu-icon {
  width: 35px;
  height: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 5;
  position: relative;
}

.linha {
  height: 4px;
  background: #ff6347;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Estilo do Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  transform: scale(0);
  transition: transform 0.5s ease-in-out;
  z-index: 2;
}

#menu-toggle:checked + .menu-icon .linha:nth-child(1) {
  transform: rotate(45deg) translate(13px, 13px);
}

#menu-toggle:checked + .menu-icon .linha:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked + .menu-icon .linha:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

#menu-toggle:checked ~ .overlay {
  transform: scale(1);
}

/* Estilo do Menu */
.menu {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  text-align: center;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu ul li {
  margin: 20px 0;
}

.menu ul li a {
  text-decoration: none;
  font-size: 2rem;
  color: #ff6347;
  transition: color 0.3s ease;
}

.menu ul li a:hover {
  color: #ffffff;
}
