.solucao-tabs {
  padding: 5rem 0;
}

.tabs-nav {
  display: flex;
  list-style: none;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.tabs-nav li {
  color: #717171;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  cursor: pointer;
  position: relative;
  padding: 24px;
  transition: color 0.3s ease;
}

.tabs-nav li::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #b3b3b3;
}

.tabs-nav li:hover {
  color: #13233e;
}

.tabs-nav li.active {
  color: #13233e;
  font-weight: 500;
}

.tabs-nav li.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3565b1;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

.tab-pane h2 {
  color: #424242;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: -1.08px;
  margin: 24px 0 16px 0;
}

.tab-pane p {
  color: #555;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 16px 0 8px 0;
}

.tab-pane ul {
  list-style-position: inside;
}

.tab-pane ul li {
  color: #555;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 4px 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 1024px) {
  .tab-pane h2 {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 768px) {
  .tabs-nav {
    padding-bottom: 0.5rem;
    flex-direction: column;
    text-align: center;
  }
  .tab-pane h2 {
    font-size: 1.5rem;
  }
}
