
.headerAMC {
  position: sticky;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 20px hsla(207, 24%, 35%, 0.1);
  background-color: #2d1c84;
  z-index: 1;
  box-sizing: border-box;
  font-family: sans-serif;
}

.navAMC {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

.logoAMC, .logoAMCResp {
  scale: 80%;
}

.menuAMC {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menuAMC a {
  display: block;
  padding: 7px 15px;
  font-size: 17px;
  font-weight: 500;
  transition: 0.2s all ease-in-out;
  color: #fff;
  text-decoration: none;
  list-style: none;
}

.menuAMC:hover a {
  opacity: 0.4;
}

.menuAMC a:hover {
  opacity: 1;
  color: #fff;
}

.menuAMC li {
   list-style: none;
}

.menu-icon-AMC, .logoAMCResp {
  display: none;
}

#menu-toggle-AMC {
  display: none;
}

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

@media all and (max-width: 950px) {
  .menuAMC {
    flex-direction: column;
    background-color: #2d1c84;
    align-items: start;
    position: absolute;
    top: 180px;
    left: 0;
    width: 100%;
    z-index: 1;
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  }

  .menuAMC a {
    margin-left: 12px;
  }

  .menuAMC li {
    margin-bottom: 10px;
     list-style: none;
  }
	
	.logoAMC {
		display:none;
	}
	
  .menu-icon-AMC, .logoAMCResp {
    display: block;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
  }
  
	.tituloAMC h2 {
		color: white;
		margin-left: 0%;
	}
	
	body {
		margin:0px;
	}
}
