[data-dropdown] {
  position: relative;
}

[data-dropdown] .dropdown-menu {
  display: none;
  transition: 0.6s;
}

[data-dropdown] .visible{
  display: block;
}

.dropdown-menu {
  text-align: center;
  position: absolute;
  top: 45px;
  background: linear-gradient(90deg, var(--azulcrescento3), var(--azulcrescento3)); 
  /*background: blue;*/
  border-radius: 4px;
  z-index: 200;
  box-shadow: -2px 2px 10px rgb(37, 37, 37);
}

.ddmenu1 {
  width: 320px;
  padding: 0;
}

.ddmenu2 {
  width: 170px;
  padding: 0;
}

.ddmenu2 a , .ddmenu1 a {
  box-sizing: border-box;
  padding: 10px
}

.dropdown-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  left: 10px;
  width: 0px;
  height: 0px;
  border-left: 8px solid rgb(0,0,0,0);
  border-right: 8px solid rgb(0,0,0,0);
  border-bottom: 10px solid var(--azulcrescento3);
  z-index: 300;
}


.dropdown-menu li a {
  width: 100%;
  color: white;
  font-size: 14px;
  font-weight: 500;
  background-color: rgb(199, 184, 184,0);
}

.dropdown-menu li a:hover {
  background-color: var(--azulcrescento2);
  /*color: #7bd1e0;*/
  border-radius: 4px;
}

