.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  position: relative;
  flex-wrap: wrap;
}

.nav-btn {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 4rem;
  cursor: pointer;
  border-radius: 50%;

}

.nav-btn:hover {
  background-color: rgba(255, 255, 255, 1);

}

.parque-grafico {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
}

.parque-grafico__text {
  text-align: center;
}

.parque-grafico__text p {
  color: #b9adad;
  font-family: var(--font-titulo);
  font-weight: 500;
  font-size: 16px;
}

.parque-grafico__text h1 {
  color: var(--cor-primaria);
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 2px;
  padding-bottom: 3.5rem;
}


.tab.active {
  background-color: #ffffffcb;
  color: #57d8ff;
}

.content {
  display: flex;
  flex-direction: row;
  column-gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 5rem;
  background: linear-gradient(
    90deg,
    rgba(27, 184, 230, 0.639093137254902) 24%,
    rgba(205, 32, 169, 0.7567401960784313) 50%,
    rgba(219, 231, 26, 0.8827906162464986) 82%
  );
  border-radius: 35px;
  box-shadow: 10px 10px 5px #d8d7d7b7; 
  max-width: 70%;
  min-width: 70%;
  opacity: 10;
  transform: translateX(-100px); 
  transition: transform 0.6s ease, opacity 0.6s ease; 
}

.content.show {
  opacity: 1;
  transform: translateX(0); 
}

.content.active:hover{
  transform: scale(1.1);
}


.content img {
    width: 50%;
    height: 350px;
    object-fit: contain;
}

.text-content {
  display: flex;
  flex-direction: column;
  color: white;
  row-gap: 0.5rem;
  align-items: left;
  font-family: var(--font-texto);
}

.text-content h1 {
  font-size: 1.5rem;
  font-weight: 800;
}

.text-content h2 {
  font-size: 1rem;
  font-weight: 800;
}

.content.active {
  display: flex;
}

.linha {
    display: block;
    height: 2px;
    background-color: white;
    margin: 5px 0;
    width: 100%;
    opacity: 0.7;
}


@media (max-width:767px){

    .content{
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      padding: 4rem 0;
    }

    .content img {
      width: 100%;
      max-width: 300px;
      min-width: 100px;
      height: 300px;
      object-fit: contain;
  }

  .text-content {
    height: 300px;
    text-align: center;
  }

  .card-buttons{
    padding-left: 2rem;
  }
}

@media (min-width: 768px) and (max-width:950px){

  .content{
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 700px;
    align-items: center;
  }
}

@media (min-width: 951px) and (max-width:1300px){

  .content{
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 700px;
  }

}
