
.service-wrapper {
    display: flex;
    flex-direction: row;
    margin-top: 32px;
    gap: 40px;
}

.column.result {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

#services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  gap: 0.5rem 2rem;
  padding: 0;
  margin: 0 0 2rem 0;
}

#services-list li {
  cursor: pointer;
  text-transform: uppercase;
  font-size: 18px;
  padding: 1.5rem 0rem;
  transition: background-color 0.2s, color 0.2s;
  border-bottom: 1px solid var(--primary-white);
  color: var(--primary-white);
}

#services-list li.active {
color: var(--primary-yellow);
}


#service-details h2 {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 2rem;
    color: var(--primary-yellow);
}

span#base-text {
    color: var(--primary-white);
    font-size: 1.1rem;
    font-weight: 300;
}

#service-details {
  max-width: 600px;
}

#service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

#service-description {
  line-height: 1.6;
}

#extra-text {
  display: block;
}

#toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  margin: 2rem 0;
  margin-top: 0.5rem;
}

.cta-mais {
    display:flex;
    align-items: center;
    justify-content: flex-end; 
    gap:1rem;
    color: var(--primary-yellow);
}

.nav-buttons {
  display: none;
}

/* Mobile styles */
@media (max-width: 1024px) {

.service-wrapper {
    flex-direction: column;
}
  #services-list {
    display: none;
  }

  #mobile-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
  }

  .nav-buttons {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-buttons button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
  }

  #service-details {
    width: 100%;
  }

  .cta-mais {
    justify-content: flex-start;
  }
}