.contenedor_preguntas_frecuentes .title{
    font-family: 'Gideon Roman', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-titulo-contenido);
    text-align: center;
    margin: 2rem 0;
}
.contenedor_acordeones{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 4rem 2rem;
}
.contenedor_acordeones li{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contenedor_acordeones li::after{
    content: "";
    height: 2px;
    width: 100%;
    background-color: #ccc;
    border-radius: 1px;
}
.contenedor_acordeones .pregunta_acordeon{
    display: flex;
    color: var(--color-preguntas);
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.contenedor_acordeones .pregunta_acordeon h4{
    font-family: 'Gideon Roman', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
}
.contenedor_acordeones .pregunta_acordeon .flecha_preguntas_frecuentes{
    min-height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-fondo-icono-buscador);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.5s ease-out;
    transform: rotate(0deg);
}
.contenedor_acordeones .pregunta_acordeon .flecha_preguntas_frecuentes:hover{
    background-color: var(--color-fondo-hover-icono-buscador)
}
.contenedor_acordeones .pregunta_acordeon span{
    color: var(--color-icono-menu-buscador);
    height: 100%;
    width: 100%;
    text-align: center;
}
.contenedor_acordeones .pregunta_acordeon .flecha_preguntas_frecuentes.cerrar{
    transform: rotate(-90deg);
}
.contenedor_acordeones .respuesta_acordeon{
    position: relative;
    overflow: hidden;
    transition: height 0.5s ease-out;
}
.contenedor_acordeones .respuesta_acordeon p{
    font-family: 'Open+Sans', sans-serif;
    color: var(--color-parrafo-contenido);
    text-align: justify;
    position: absolute;
    bottom: 0;
}
.contenedor_acordeones .respuesta_acordeon.cerrar{
    overflow: hidden;
}
@media screen and (max-width: 1200px){
    .contenedor_acordeones .pregunta_acordeon h4{
        font-size: 1.3rem;
    }
}
@media screen and (max-width: 900px){
    .contenedor_acordeones .pregunta_acordeon h4{
        font-size: 1.2rem;
    }
}