.containerPreguntasfrecuentes {
    width: 60%;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    margin-bottom: 5rem !important;
    margin-top: 4rem;
}

#titlepreguntasfrecuentes {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--color-textocard);
    font-family: Outfit;
    font-size:36px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; 
    letter-spacing: 0.144px;
}


.faq-item {
    width: 100%;
border: 2px solid transparent; /* Elimina el borde directo */
border-radius: 40px; /* Redondea las esquinas */
background: linear-gradient(var(--color-Body), var(--color-Body)) padding-box, /* Fondo interno */
linear-gradient(45deg, #9D72A7, #D2916D, #C85572, #7177AB, #7BB2DA, #A8B49F) border-box; /* Degradado en el borde */
margin: 10px 0;
padding: 15px;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
cursor: pointer;
transition: transform 0.2s ease;
}

.expanditem{
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.05px;
}

.faq-item span {
    font-size: 16px;
    color:var(--color-text-blackandwhite);
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.faq-item i {
    font-size: 20px !important;
    color:var(--color-text-blackandwhite);
    transition: transform 0.2s ease;
}
.faq-item.active i {
    transform: rotate(45deg);
}
.faq-item .respuesta {
    margin-top: 10px;
    font-size: 14px;
    color:var(--color-text-blackandwhite);
    display: none;
}
.faq-item.active .respuesta {
    display: block;
}
@media(max-width:600px){
    .containerPreguntasfrecuentes {
        width: 90%;
    }
    .faq-item {
        width: 100%;
    }
    .respuesta{
        text-align: start !important;
    }
    .expanditem{
        font-family: Outfit;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.05px;
    }
}