
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,100&display=swap');
.menu_input {
  display: none;
}
.menu_float {
  background: #FEE000;
  border-radius: 50%;
  width: 55px; /*tamanho do circulo*/
  height: 55px;
  position: absolute;
  right: 25px;
  bottom: 35px;
  cursor: pointer;
  box-shadow: 0 0 0 0 #FEE000, 0 0 0 0 #fff;
  transition: box-shadow 1.1s cubic-bezier(.19,1,.22,1);
}
.menu_float:hover {
  box-shadow: 0 0 0 6px #FEE000, 0 0 0 3px #FEE000;
}
.menu_hamburguer {
  background: #00723E;
  display: block;
  width: 24px;
  height: 3px;
  position: relative;
  top: 25px;
  left: 16px;
  transition: .5s ease-in-out;
}
.menu_hamburguer:before,
.menu_hamburguer:after {
  background: #00723E;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: .5s ease-in-out;
}
.menu_hamburguer:before {
  top: -10px;
}

.menu_hamburguer:after {
  bottom: -10px;
}
.divmenu{
  display: flex;
  align-items: center;
  flex-direction: column;
  color:#255227;
  text-align: center;
  /*background-color: aqua;*/
  list-style: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  transition: .25s .1s cubic-bezier(0, 1.07, 0, 1.02);
  z-index: 2;
}
.divmenu > a > img{
  height: 70px;
}
.menu_options > div {
  border-radius:8px ;
  border: 2px solid /*#FEE000*/#255227;
  margin:15px;
  padding:5px;
  font-weight: bold;
  font-size: 17px;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  
}
.menu_options > div:hover {
  background-color: #255227;
  color:#fff;
}
.menu_options > div > div > p{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.link_ativ{
  background-color: #255227;
  color: #fff;
}

.menu_input:checked ~ .divmenu {
  display: inline;
}
.menu_input:checked ~ label .menu_float {
  box-shadow: 0 0 0 130vw #fff, 0 0 0 130vh #FEE000;
}
.menu_input:checked ~ label .menu_hamburguer {
  transform: rotate(45deg);
}
.menu_input:checked ~ label .menu_hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.menu_input:checked ~ label .menu_hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}








