#s-preguntas {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#s-preguntas>div {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

}

.content-info-preguntas {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.content-preguntas {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.card-preguntas {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-preguntas>a{
    width: 100%;
    background-color: #F0F0F0;
    color: var(--negro-claro);
    padding: 15px 10px;
    text-align: start;
    font-size: 20px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-family: "Gotham-Bold";
}

.card-preguntas svg{
    fill: var(--negro-claro);
    width: 25px;
    border-radius: 50%;
    border: 1px solid var(--negro-claro);
    padding: 4px;
}

.card-preguntas p{
    width: 97%;
    font-size: 16px;
    color: var(--grid-4);
    text-align: start;
    padding: 20px 30px 10px;
    display: none;
    border: 1px solid #F0F0F0;
    border-radius: 0px 0px 20px 20px;
    line-height: 30px;
}

.card-preguntas.active p{
    display: block;
}