.title-faq{
    font-size: 2.1rem;
    text-align: left;
    width: 100%;
    margin: 20px 0px;
    font-weight: 500;
    color: #343A3D;
}

.bloquesDeContenido{
    border-radius: 10px;
    padding: 20px;
    overflow: hidden;
    max-width: 1155px;
    margin: 0 auto;
    box-shadow: 1px 1px 14px -4px rgba(0,0,0,0.4);
    -webkit-box-shadow: 1px 1px 14px -4px rgba(0,0,0,0.4);
    -moz-box-shadow: 1px 1px 14px -4px rgba(0,0,0,0.4);
}

.bloquesDeContenido summary p{
    font-weight: 500;
    color: #343A3D;
    margin-bottom: 10px;
}

.bloquesDeContenido p{
    margin: 0;
}

details{
    display: flex;
    align-items: center;
    padding: 8px;
    background-color: white;
    border-bottom: 1px solid #DDE1E8;
}

details:last-child{
    margin-bottom: 20px;
}

details summary::marker{
    content: '';
}

summary {
    position: relative;
}

summary i{
    position: absolute;
    right: 0;
    top: 3px;
}

summary p:last-child{
    margin: 0;
}

details summary::-webkit-details-marker {
    display:none;
}

@media screen and (max-width: 1155px) {
    .bloquesDeContenido{
        width: 90% !important;
    }
}