* {
  font-family: "Inter", sans-serif;
  letter-spacing: normal;
  box-sizing: border-box;
}

h1 { 

  font-family: "Inter", sans-serif;

}


#be-header {
  background-color: #171732;
  width: 100%;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  top: 0;
}

.vermais-nav {
  background-color: #171732;
  display: flex;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.vermais-nav h1 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-left: 1rem;
}

.back-button {
  font-size: 1.25rem;
  color: #FFFFFF;
}

main {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  width: 90%;
  margin: 0 auto;
}

#top-be-section {
  margin-bottom: 1.5rem;
}

.welcome-card {
  background-color: #FFFFFF;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-height: 12rem;

}

.welcome-text h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #171732;
  line-height: 1.1;
  margin-bottom: 1.2;

}

.welcome-text h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #171732;
  line-height: 1.1;
  margin-bottom: 1.2;

}

.be-avatar-img-large {
  width: 50%;
  height: auto;
  max-height: 20rem;
  border-radius: 0;
  object-fit: contain;
  align-self: flex-end;
  margin-bottom: -1rem;

}

.suggestion-section {
  padding-top: 1rem;
}

.suggestions-container-expanded {
  background-color: #FF6B35;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  gap: 0.75rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  
}


.expanded-bubble {
  background-color: #FFFFFF;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #171732;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  width: 100%;

}



nav {
  background-color: #FF6B35;
}

ul {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: auto;
  align-items: center;

  div {
    display: flex;
    gap: 10px;

    #logo-bemobi {
      width: 100px;
    }
  }

  i {
    color: white;
    font-size: 1.3em;
    cursor: pointer;
  }
}

#mobile-footer-nav {
    display: flex; 
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FF6B35; 
    height: 60px; 
    justify-content: space-around;
    align-items: center;
    padding: 0 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    text-decoration: none;
    color: #FFFFFF; 
    font-size: 1.5rem;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.nav-item.active {
    background-color: #FFFFFF;
    color: #FF6B35; /* Ícone laranja quando ativo */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
