header {
  background-color: rgb(0, 65, 105);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 20px solid rgb(0, 142, 202);
  text-align: left;
}

header img {
  max-width: 200px;
  height: auto;
  margin-left: 20px;
}

.divisoria {
  width: 3px;
  height: 100px;
  margin-left: 10px;
  background-color: white;
  transform: rotate(10deg);
}

.header-text {
  display: flex;
  flex-direction: column;
}

header h1, header h2 {
  margin: 0;
}

header h1 {
  font-size: 1.8em;
}

header h2 {
  font-size: 1em;
  font-weight: 500;
  opacity: 0.4;
  margin-top: 5px;
}

header h2 abbr{
  font-weight: 700;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    display: block;
    text-align: center;
  }
  
  header img {
    max-width: 150px;
    margin-left: 0;
  }

  .divisoria {
    width: 100%;
    height: 2px;
    transform: none;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.6em;
  }

  header h2 {
    font-size: 0.8em;
  }
}
