/* Botón limpio */
.navbar-toggler {
  box-shadow: none;
  border: none !important;
  line-height: 0 !important;
  outline: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.navbar-blur {
  background-color: rgba(255,255,255,0.7);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* Hamburguesa */
.custom-burger {
  width: 26px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none !important;
}

.custom-burger span {
  height: 2px;
  width: 100%;
  background-color: currentColor;
  transition: all 0.3s ease;
  border: none !important;
}


.navbar-toggler[aria-expanded="true"] .custom-burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .custom-burger span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .custom-burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


.lista-cnae {
    font-family: "Montserrat";
    font-weight: bold;
}

.lista {
    font-size: 24px;
    font-family: 'Playwrite US Trad';
}


@media (max-width: 768px) {
    .lista {
    font-size: 20px;
}
  .lista-cnae {
    font-size: 20px;
  }

  .flag {
    width: 30px;
  }

  .nav-link h4 {
   font-size: 16px !important;
  }
}