.seccion-preguntas-frecuentes {
  display: flex;
  padding: 3.75rem;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--Neutral-8B998A, #8B998A);
  gap: 16.42rem;
}

.titulo-preguntas-frecuentes {
  color: var(--Neutral-1A1A1A, #1A1A1A);
  font-family: "Residenz Grotesk SemiBold";
}

.titulo-preguntas-frecuentes h2{
  margin: 0;
  font-size: 3rem;
  line-height: 3rem;
}

.seccion-preguntas-frecuentes .respuesta {
  display: none;
  float:right;
  width: 50%;
  font-size: 1.5rem;
  line-height: 108%; /* 1.62rem */
  letter-spacing: 0.015rem;
  padding-bottom: 1.875rem;
}

.seccion-preguntas-frecuentes .respuesta p:first-child {
  margin-top: 0;
}

.seccion-preguntas-frecuentes .respuesta p:last-child {
  margin-bottom: 0;
}

.seccion-preguntas-frecuentes .respuesta.open {
  display: block;
}

.seccion-preguntas-frecuentes .preguntas-frecuentes {
  display: flex;
  width: 80%;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.seccion-preguntas-frecuentes .pregunta-respuesta {
  width: 100%;
}

.seccion-preguntas-frecuentes .pregunta {
  display: flex;
  align-items: center;
  padding: 1.875rem 0;
  justify-content: space-between;
  align-self: stretch;
  border-top: 1px solid var(--Neutral-1A1A1A, #1A1A1A);
}

.seccion-preguntas-frecuentes .texto-pregunta, .seccion-preguntas-frecuentes .accion-pregunta {
  font-family: "Residenz Grotesk SemiBold";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 108%; /* 1.62rem */
  width: 50%;
}

.boton-accion-pregunta {
  color: #ecf0f1;
  width: 3rem;
  height: 3rem;
  border: 0;
  font-size: 1.5em;
  position: relative;
  float:right;
}

.boton-accion-pregunta span {
  position: absolute;
  transition: 300ms;
  background: var(--Neutral-1A1A1A, #1A1A1A);
  border-radius: 2px;
}

/* Create the "+" shape by positioning the spans absolutely */
.boton-accion-pregunta span:first-child {
  top: 25%;
  bottom: 25%;
  width: 10%;
  left: 45%;
}

.boton-accion-pregunta span:last-child {
  left: 25%;
  right: 25%;
  height: 10%;
  top: 45%;
}

/* Morph the shape when the .boton-accion-pregunta is hovered over */
.boton-accion-pregunta.open span {
  transform: rotate(90deg);
}

.boton-accion-pregunta.open span:last-child {
  left: 50%;
  right: 50%;
}

@media screen and (max-width: 959px) {
  .seccion-preguntas-frecuentes {
    padding: 2.25rem 0.75rem;
    flex-wrap: wrap;
  }

  .titulo-preguntas-frecuentes, .seccion-preguntas-frecuentes .preguntas-frecuentes {
    width: 100%;
  }

  .titulo-preguntas-frecuentes {
    padding-bottom: 3.75rem;
  }

  .titulo-preguntas-frecuentes h2 {
    font-size: 1.5rem;
  }

  .seccion-preguntas-frecuentes .texto-pregunta, .seccion-preguntas-frecuentes .accion-pregunta {
    font-size: 1.125rem;
  }

  .boton-accion-pregunta {
    width: 2rem;
    height: 2rem;
  }

  .seccion-preguntas-frecuentes .respuesta {
    float:inherit;
    width: 100%;
    font-size: 0.75rem;
  }
}
