.acordeon-item-title button.acordeon-item-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 24px;
    font-weight: 500;
    gap:20px;
}
.accordeon-item-content {
    color: #555555;
    padding: 5px;
    padding-bottom: 15px;
}
.accordeon-item-content p {
    margin-top: 0;
}
.accordeon-item-content{
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    width: calc(100% - 20px);
}
.acordeon-seo-text .acordeon-title {
    font-size: 40px;
    margin-top: 0;
    font-weight: 600;
    line-height: 45px;
}
.open .accordeon-item-content {
    opacity: 1;

}
.faq-arrow {
    height: 20px;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.faq-arrow{
    transition: transform 0.3s ease;

}
.open  .faq-arrow {
    transform: rotate(177deg);
}
@media (min-width: 768px) {
 
  .acordeon-seo-content {
    column-count: 2; 
    column-gap: 32px;
}
.accordeon-item{
       display: inline-block; /* o block, pero importante para que no se rompan */
  width: 100%;
  margin-bottom: 15px;
}

}