header {
    background-color: #2A2A2A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    flex-wrap: wrap; /* para responsividade */
  }
  
  .logo {
    height: 60px;
  }
  
.header-button {
  display: inline-block;
  padding: 16px 24px;
  background: linear-gradient(90deg, #642d3e, #7e4556);
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.header-button:hover {
  transform: scale(1.02);
}

@media only screen and (max-width: 500px) {
  header {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .logo {
    height: 40px;
  }

  .header-button {
    width: 100%;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
  }
}
