#about {
  display: flex;
  overflow: hidden;
  max-width: 100%; 
  justify-content: center;
  align-items: start;
  background-image: url(/src/img/FUNDO_ROXO.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 1000px;


}

/* Estilo geral da seção "Sobre" */
.container-about {
  display: flex;
  flex-direction: row-reverse; /* Define imagem e texto lado a lado */
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  height: auto;
  overflow: hidden;
  margin: 0rem 2rem ; 
  margin-top: 5rem;
}

.container-about .box-text {
  width: 45%;

  height: auto;
  align-self: start;
  margin-top: 2rem;
}

.container-about .box-text span {
  color: var(--secondary);
  font-size: 24px;
}

.container-about .box-text h1 {
  color: var(--secondary);
  font-size: 4rem;
  padding-top: 3%;
  padding-bottom: 3rem;
  align-self: flex-start;
  font-family: "NeurialGrotesk", sans-serif;
  font-weight: bolder;
}

.box-text p {
  color: var(--tertiary);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7rem;
  text-align: left;
  color: var(--tertiary);
}

#pop-logo {
  position: relative;
  z-index: 9990;
  height: auto;
  width: 55%;
  max-width: 650px;
  height: auto;
  transform: translateX(-100%); /* Começa fora da tela */
  opacity: 0; /* Começa invisível */
  transition: transform 1s ease-out, opacity 1s ease-out; /* Transição suave */

}



.more-abt-us {
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  width: 70%;
  margin-top: 3rem;
  margin-bottom: 3rem;
  color: var(--tertiary);
}

.more-abt-us li {
  font-size: 1.5rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0rem 0.5rem;
  user-select: none;
}



#textAbt, #pop-logo {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-out {
  opacity: 0;
  transform: translateY(20px); /* Move o elemento um pouco para baixo durante a transição */
}

.fade-in {
  opacity: 1;
  transform: translateY(0); /* Posição final */
}

.activeBtn{
  background-color: var(--secondary) ;
}
/* /////////////////////////////////////////////////////////////////////////////////////////// */

@media screen and (max-width: 1440px) {
  #about {
    height: 1400px;
  }
}

@media screen and (max-width: 1025px) {
  #faq-section p {
    font-size: 14px;
  }
}

@media screen and (max-width: 1080px) {
  #about{
    height: 1550px;
  }

  .container-about {
    flex-wrap: wrap;

    width: 100%;

    text-align: center;
    gap: 0px;
    justify-content: center;
    align-items: normal;
  }
  .container-about .box-text {
    font-weight: bold;
    line-height: 25px auto;
    width: 100%;
    font-size: 12px;
    height: 800px;
  }
  #pop-logo {
    width: 60%;
    align-self: center;
    margin-top: 1rem;
  }
  .container-about .box-text h1 {
    align-self: center;
  }

  #about-2 .container-about {
    max-height: 1700px;
    flex-wrap: wrap;
    margin: 0% 0px 0px 0px;
    width: 100%;
    align-items: none;
    justify-content: none;
    gap: 3rem;
  }
}

@media screen and (max-width: 900px) {
  .container-about{
    height: 1400px;
  }

}

@media screen and (max-width: 768px) {
  #pop-logo {
  display: none;
  }

  #about {
height:1100px ;
    background-position: right bottom;
  
  
  
  }
}
@media screen and (max-width: 610px) {
  #about{
    height: 1300px;
  }

}
@media screen and (max-width: 500px) {
  #about{
    height: 1400px;
  }
  .container-about {
    height: 1700px;
  }
  #about-2 .container-about .box-text p {
    font-size: 20px;
  }
  #about-2 .container-about .box-text span {
    font-size: 20px;
  }
  
}


/* Defina a animação */
@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Classe para aplicar a animação */
.slide-in {
  animation: slideIn 1s ease-out forwards;
}

@media screen and (max-width: 440px) {
 

  .container-about .box-text h1 {
    font-style: italic;
    color: var(--secondary);
    font-size: 36px;
    padding-top: 3%;
    padding-bottom: 2.5rem;
    align-self: flex-start;
  }

  .box-text p {
    font-size: 1rem;
  }
  .container-about .box-text span {
    color: var(--secondary);
    font-size: 20px;
  }

  .more-abt-us li {
    font-size: 1.1rem;
    
  }
}

@media screen and (max-width: 440px) {
  #about{
    height: 1700px;
  }
  
 
}
@media screen and (max-width: 320px) {

  .more-abt-us li{
    font-size: 0.8rem;
  }
}
