section.faq {
    padding: 120px 0;
    
}

section.faq h2 {
    font-size: 40px;
    color: #333;
    font-weight: bold;
    line-height: 1;
}

section.faq details:not(:last-child) {
    margin-bottom: 40px;
}

section.faq summary::marker {
    display: none !important;
    content: '';
}

section.faq summary {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1;
    cursor: normal !important;
    position: relative;
    pointer-events: none;
    user-select: none;
}

section.faq details[open] summary::after {
    content: '';
    display: none !important;
}

section.faq details summary::after {
    content: '';
    width: 13px;
    height: 13px;
    border-right:3px var(--azul) solid;
    border-bottom: 3px var(--azul) solid;
    display: block;
    position: absolute;
    right:0;
    top: 50%;
    transform: translateY(-50%) rotate(225deg);
}

@media (max-width:1000px) {
    section.faq h2 {
       font-size: 30px;
    }
}

@media (max-width:768px) {
    section.faq h2 {
        margin-bottom: 30px;
    }
}