header#headerDinamica {
  width: 100%;
  padding: 10px 20px;

  display: flex;
  justify-content: center;
  align-items: center;
}

header#headerDinamica.model1 {
  min-height: 110px;
}

header#headerDinamica.model2 {
  height: 90px;
  background: #2152cf;
  position: relative;
}

header#headerDinamica .content {
  width: 100%;

  display: flex;
  align-items: center;
}

header#headerDinamica.model1 .content {
  max-width: 1220px;
  justify-content: space-between;
}

header#headerDinamica.model2 .content {
  justify-content: space-between;
}

header#headerDinamica.center-logo .content {
  justify-content: center;
}

header#headerDinamica.model2 .content .middle {
  width: 100%;
  /* padding: 0 12%; */

  display: flex;
  justify-content: center;
  align-items: center;
}

header#headerDinamica.not-click a {
  pointer-events: none;
}

header#headerDinamica img.logo {
  user-select: none;
  cursor: pointer;
  width: 100%;
  max-height: 50px;
  max-width: 270px;
}

header#headerDinamica img.logo[src$='svg'] {
  width: 100%;
  height: 50px;
}

header#headerDinamica.model1 .button-group {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 375px;
}

header#headerDinamica.model1 .button-group .btn-buscar {
  min-width: auto !important;
  max-width: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

header#headerDinamica.model1 .button-group .btn-buscar svg {
  fill: #2152cf;
  width: 20px;
}

header#headerDinamica.model1.hide-buttons .button-group {
  display: none;
}

header#headerDinamica.model2.hide-buttons .button-group {
  display: none;
}
header#headerDinamica.model2.hide-buttons #abre-busca {
  display: none;
}

header#headerDinamica.model1.blue-gradient {
  background: #2152cf;
  background: -moz-linear-gradient(90deg, #2152cf 0%, #36c2ff 100%);
  background: -webkit-linear-gradient(90deg, #2152cf 0%, #36c2ff 100%);
  background: linear-gradient(90deg, #2152cf 0%, #36c2ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2152cf",endColorstr="#36c2ff ",GradientType=1);
}

header#headerDinamica.model2.hide-menu #menu-icon {
  visibility: hidden;
}

header#headerDinamica.model2 #menu-icon {
  padding: 10px;
  cursor: pointer;
}

header#headerDinamica.model2 #menu-icon svg {
  fill: #fff;
  width: 30px;
}

header#headerDinamica #abre-busca {
  padding: 10px;
  cursor: pointer;
}

header#headerDinamica #abre-busca svg {
  fill: #fff;
  width: 30px;
}

header#headerDinamica .close {
  display: none;
  font-size: 48px;
  line-height: 48px;
  color: white;
  cursor: pointer;
  margin-bottom: 5px;
  width: 30px;
  user-select: none;
}

header#headerDinamica.model1 .btn {
  width: 100%;
  min-width: 135px;
  margin: 5px 10px;
}

header#headerDinamica.model1 .btn.btn-primary.btn-transparent-wb {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  animation: ZoomInOut 2s infinite linear;
  height: 40px;
}

header#headerDinamica.model1 .btn.btn-primary.btn-transparent-wb:hover {
  background-color: #fff;
  color: #2152cf;
  border: 2px solid #fff;
}

header#headerDinamica.model1 .btn.btn-primary.btn-white-full {
  background-color: #fff;
  color: #2152cf;
  border: 2px solid #fff;
  height: 40px;
}

header#headerDinamica.model1 .btn.btn-primary.btn-white-full:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

header#headerDinamica.fixed-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

header#headerDinamica.graduation {
  padding-bottom: 0px;
  min-height: 70px;
}

@media (max-width: 1200px) {
  header#headerDinamica.model2 .content .middle {
    padding: 0 5%;
  }
}

@media (max-width: 850px) {
  header#headerDinamica.model1.blue-gradient {
    background: #2152cf;
  }

  header#headerDinamica.model1 .content {
    flex-direction: column;
  }

  header#headerDinamica.model1 .content > * {
    margin: 5px auto;
  }

  header#headerDinamica.model1 .button-group {
    margin-top: 15px;
    max-width: 470px;
  }

  header#headerDinamica.model1 .button-group .btn.btn-transparent-wb {
    background-color: #36c2ff !important;
    border-color: #36c2ff !important;
  }
}

@media (max-width: 768px) {
  header#headerDinamica.model2 .content .middle {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  header#headerDinamica {
    padding: 10px;
  }

  header#headerDinamica.model2 img.logo {
    max-height: 50px;
    max-width: 270px;
  }

  header#headerDinamica.model1 .btn {
    min-width: auto !important;
  }
}

@media (max-width: 350px) {
  header#headerDinamica.model1 .button-group .btn.btn-transparent-wb {
    margin-right: 10px;
  }

  header#headerDinamica.model1 .btn {
    margin: 5px;
  }
}

@keyframes ZoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* DARK MODE */
body.dark header#headerDinamica {
  background-color: rgba(32, 32, 32, 1);
  color: rgb(229, 229, 231);
}
