/**
 * Estilos do Header
 */

.header {
  background-color: #2f5581;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 3rem;
  color: #fff;
}

.circle {
  /* Estilo do círculo se necessário */
}

.header-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header-title {
  font-size: 1.8rem;
  margin: 0;
}

#header-logo {
  width: 5rem;
  height: 5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-btn,
.info-icon-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  border-radius: 4px;
}

.header-btn:hover,
.info-icon-btn:hover {
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.1);
}

.header-btn svg,
.info-icon-btn svg {
  width: 24px;
  height: 24px;
}

.header-btn svg {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 770px) {
  .header {
    padding: 1rem 2rem 0.5rem;
  }
  .header-title {
    font-size: 1.65rem;
  }
  #header-logo {
    width: 4rem;
    height: 4rem;
  }
}

@media only screen and (max-width: 430px) {
  .header {
    padding: 1rem 1.5rem 0.5rem;
  }
  .header-title {
    font-size: 1.5rem;
  }
  #header-logo {
    width: 3rem;
    height: 3rem;
  }
}

@media only screen and (max-width: 390px) {
  .header-title {
    font-size: 1.35rem;
  }
}

