/* cards depoimentos simples*/
.depoimentos-card{
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 20px;
  width: 50%;
  }
  
  .header-card h3{
  font-size: 24px;
  text-align: left;
  }
  .depoimentos-card p{
    font-size: 14px;
    font-weight: 400;
    margin: 20px;
    }
    
    .depoimentos-foto{
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    width: 100%;
    }
    
    .icone-seta-cima img{
    max-width: 100px;
    height: auto;
    cursor: pointer;
    }

/* cards depoimentos com acordion*/

  
  .page-cases-bg{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 5%;
  }
  
  /* O container do conteúdo começa com altura 0 e invisível */
.conteudo-expandivel {
  display: grid;
  grid-template-rows: 0fr; /* Altura zero */
  transition: grid-template-rows 0.5s ease-in-out, opacity 0.3s ease;
  opacity: 0;
  overflow: hidden;
}

/* Quando o card estiver ativo, expande para o tamanho real do conteúdo */
.depoimentos-card.active .conteudo-expandivel {
  grid-template-rows: 1fr; /* Altura automática do conteúdo */
  opacity: 1;
  padding-top: 15px; /* Espaçamento opcional quando aberto */
}

/* Garante que o conteúdo interno não seja cortado durante a animação */
.inner-content {
  min-height: 0;
}

/* Animação do Ícone (Seta) */
.icone-expandir::after {
  content: url(../assets/icons/arrow-down.webp);
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.depoimentos-card.active .icone-expandir::after {
  transform: rotate(180deg); /* Gira a seta suavemente */
}

.depoimentos-card button{
  background-color: var(--background-color);
  border: none;
}

.depoimentos-card button:hover{
  background-color: #fff;
}

/*componente da página home, soluções e produtos*/

.solucoes{
  background-color: var(--secondary-color);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-left: 5%;
  margin-right: 5%;
  text-align: center;
  color: var(--background-color);
}
.solucoes-pagina{
  background-color: transparent;
}

.solucoes h2{
  color: var(--text-color);
}

.solucoes{
padding: 5%;
margin-top: 5%;
}

#conteudo-home-menu-solucoes{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
 }

.content-box {
  display: none;
  transition: transform 0.5s ease-in-out; /* Adiciona a transição */
}

.content-box.active {
  display: block;
  transform: translateX(0); /* Posição inicial */
  background-color: var(--button-color);
}

.box{
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 20px;
  margin: 5%;
  padding-bottom: 5%;
}

.card{
  background-color: var(--background-color);
  color:var(--title-color);
  border-radius: 30px;
  padding: 30px;
  text-align: left;
}

h3.bot{
  color: #8823d7;
  font-weight: bold;
}

h3.nf{
  color: #038d8d;
  font-weight: bold;
}
h3.pay{
  color: #44bc62;
  font-weight: bold;
}
h3.consult{
  color: #e81f76;
  font-weight: bold;
}
h3.code{
  color: #ef2ac1;
  font-weight: bold;
}
h3.cloud{
 color:#5503d4;
 font-weight: bold;
}
h3.erp{
 color: #3a01fd;
font-weight: bold;
}
h3.control{
color: #894de8;
font-weight: bold;
}
h3.help{
color: #e1251b;
font-weight: bold;
}
h3.team{
color: #f69508;
font-weight: bold;
}

/* content box */
.content-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
/*linha dentro do componente*/
.solucoes-pagina,
.produtos{
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}

.menu-box{
  display: none;
  }
  
.produtos-box{
  display: flex;
  flex-direction: column;
  gap: 30px;
  }
  
  .produtos-row,
  .solucoes-row{
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: center;
  }
  .produtos-col img{
    width: 100%;
    height: auto;
  }
  .produtos-col,
  .solucoes-col{
  display: flex;
  flex-direction: column;
  width: 50%;
  height: auto;
  justify-content: space-evenly;
  
  }
  
  .logo{
    width: 50%;
    display: flex;
    justify-content: flex-start;
  }
  
  .logo img{
    max-width: 100%;
  }
  
  .produtos-box p{
  text-align: left;
  
  margin-top: 20px;
  }

.produtos-box {
  padding: 20px;
  margin-bottom: 10px;
}

.produtos-box {
  transition: transform 0.5s ease-in-out; /* Adiciona a transição */
}

.produtos-box.atual {
  display: block;
  transform: translateX(0); /* Posição inicial */
}

.produtos-parallax button:hover{
background-color: transparent;
}

/*Componnente acordion*/

.acordion-row{
  display: flex;
  flex-direction: row;
  gap: 20px;
  }
  
  .acordion-col{
  display: flex;
  flex-direction: column;
  width: 50%;
  }
  
  .acordion h2{
  margin: 0;
  line-height: 1.2;
  font-size: 16px;
  color: var(--title-color);
  font-weight: bold;
  }
  .acordion p{
  margin: 0;
  
  }
  .acordion p{
  font-size: 12px;
  }
  .acordion-margin{
  margin-top: 5%;
  }
  
  .acordion{
  background-color: #ffffff;
    color: var(--title-color);
     border: 1px solid var(--button-border); 
    border-radius: 5px;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    transition: 0.4s;
    margin-bottom: 10px;
  }
  .acordion:hover{
    border: 1px solid var(--primary-color);
  }
  
  
  /* Style the acordion panel. Note: hidden by default */
  .panel {
  padding: 0 18px;
  overflow: hidden;
  }
  
  .panel {
  display: block;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  }
  
  .panel p{
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  }

  .panel p:last-child{
    margin-bottom: 20px;
  }
  
  /* add icons*/
  
  .acordion h2:after {
  content:url(../assets/icons/arrow_right_24dp_5F6368_FILL0_wght400_GRAD0_opsz24.svg); 
  color: var(--text-color);
  float: right;
  margin-left: 10px;
  }
  
  .active-panel h2:after {
  content: url(../assets/icons/arrow_drop_down_24dp_5F6368_FILL0_wght400_GRAD0_opsz24.svg); 
  float: right;
  }

  .icone-certo li {
    list-style-image: url(../assets/icons/icone-ticado.svg);
    line-height: 1.5;
    text-align: left;
    margin-left: 20px;
    
}
