/* Estilização do cabeçalho */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem;
    padding-left: 1.5rem; 
  }
  
  .menu .logo .dsc {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
   
  }
  
  .menu-buttons {
    display: flex;
    align-items: center;
    padding-right: 1.5rem; 
}


.menu-button {
  background-color: #6c63ff;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  margin: 4px 2px;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.menu-button:hover {
  background-color: #4b47e6;
}

.menu-separator {
  height: 1px;
  background-color: #e5e5e5;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Estilização do mapa de rota */
.road-map {
padding: 2rem 0;
}

.road-map h1 {
margin-bottom: 2rem;
}

.road-map ul {
list-style-type: none;
padding: 0;
}

.road-map-step {
background-color: #f0f2f5;
padding: 1.5rem;
margin-bottom: 1rem;
border-radius: 10px;
}

.road-map-step h3 {
margin-bottom: 1rem;
}

.logo a {
    text-decoration: none;
  }
  
  .logo a:hover {
    text-decoration: none;
  }

  .welcome-message {
    text-align: right;
    margin-bottom: 0.5rem;
  }
  
  .menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .logo-img {
    width: 250px; /* ajuste o tamanho conforme necessário */
    height: auto;
}
  
@media screen and (max-width: 767px) {

  .header {
    flex-direction: column;
    text-align: center;
  }

  .menu {
    flex-direction: column;
    padding-left: 0.5rem;
  }

  .menu-buttons {
    margin-top: 0.5rem;
    padding-right: 0.5rem;
    padding: 1px 28px;
    justify-content: center;
    align-items: center;
  }

  .menu-button {
    background-color: #6c63ff;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    padding: 5px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;

  }

}