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

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #171732;
  color: #E0E0E0;
  padding-bottom: 60px; 
}


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;
  }
}


button {
    background: none;
    border: none;
    cursor: pointer;
    text-align: inherit;
    color: inherit;
    padding: 0;
    font-size: 100%;
    margin: 0;
    display: block;
}




main {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;
}

#welcome {
  margin-bottom: 2rem;

  h1 {
    font-size: 1.875rem; 
    font-weight: 600;
    color: #E0E0E0;
    line-height: 1.1;
  }

  .name-highlight {
    font-size: 1.875rem;
    font-weight: 600;
    color: #FF6B35;
    margin-top: 0.25rem;
  }
}

.section-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.card {
  background-color: #202046;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  padding: 1rem;
}

#contract {
  padding: 1.25rem 1rem;
  text-transform: uppercase;
}

#contract h2 {
  font-size: 0.875rem; 
  font-weight: 600;
  color: #E0E0E0;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

#contract p {
  font-size: 1rem; 
  color: #E0E0E0;
}


#saldo-card {
  padding: 0; 
}

.card-header-button {
    width: 100%;
    padding: 1rem;
}

.status-badge {
  color: #FF6B35;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px; 
  font-size: 0.875rem;
  font-weight: 600;
}

.balance-value {
  font-size: 2.25rem; 
  font-weight: 700;
  margin-top: 0.5rem;
  color: #E0E0E0;
  padding-left: 1rem;
  padding-bottom: 1rem;
}


#updates,
#be-insights {
    font-family:"Inter", sans-serif;
    padding: 0;
    margin-top: 1.5rem;
    background-color: #202046; 
    padding-bottom: 1rem;
}

#updates h1,
#be-insights h2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #E0E0E0;
}


.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.w-full { width: 100%; }
.text-center { text-align: center; }


.arrow-icon {
  font-size: 1rem;
  color: #E0E0E0;
  transition: transform 0.3s ease;
}
.rotated-down {
  transform: rotate(180deg); 
}


.collapsible-content {
  max-height: 1000px; 
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  overflow: hidden;
}

.collapsed {
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top: none !important;
}

.content-padding {
    padding: 1rem;
}

#be-insights .card-header-button {
    padding: 1rem;
}

.be-avatar-container {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
}

.be-avatar-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.suggestions-container {
  background-color: #FF6B35;
  border-radius: 0.75rem;
  padding: 1.5rem 1rem 1rem;
  margin: 0; 
}

.chat-bubble {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border-top-left-radius: 0;
  font-size: 0.875rem; 
  color: #171732;
  width: 100%;
  height: 8rem;
}

.last-bubble {
    margin-bottom: 1.5rem; 
}

.see-more-link {
  display: block;
  text-align: center;
  font-size: 1rem; 
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.15s ease;
  padding-bottom: 10px;
}
.see-more-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

#mid-section {
    margin-top: 1.5rem;
}

#quick-cards-list {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-access-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
  width: 
}

.quick-access-item i {
  font-size: 1.5rem;
  color: #9CA3AF; 
  margin-bottom: 0.5rem;
}

.quick-access-item p {
  font-size: 0.625rem; 
  font-weight: 500;
  color: #E0E0E0;
}

#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);
}
