/* FAQ =============================================================== */
#faq {
    padding: var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#faq h2 {
    font-size: clamp(1.8rem, 3.8vw, 2.5rem);
    text-align: center;
    line-heigth: 1.2em;
    margin-bottom: 1.2em;
}

#faq ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
}

#faq ul li {
    padding: 10px 10px 12px 10px;
    background-color: #FFF;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 2px solid #FFF;
}

#faq .question {
    display: flex;
}

#faq h3 {
    color: var(--purpura-1);
    font-size: clamp(1.3rem, 1.9vw, 1.6rem);
    font-weight: 600;
    line-height: 1.4em;
    flex: 1;
}

#faq ul li p {
    color: var(--gris-8);
    font-size: clamp(1.15rem, 1.9vw, 1.3rem);
    font-weight: 500;
    line-height: 1.4em;
}

#faq p a {
    color: var(--coral-1);
    font-weight: 600;
}

#faq p a:hover {
    text-decoration: underline;
}

#faq p a br {
    display: none;
}

#faq ul {
    margin-bottom: 50px;
}

#faq li:hover {
    border: 2px solid var(--gris-4);
}

#faq ul li span {
    background-color: var(--dorado-3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 8px;
    margin-top: 3px;
}

#faq ul li i {
    font-size: 20px;
    color: #000;
    transition: all .4s;
}

#faq ul li.expanded i {
    transform: rotate(90deg);
}

#faq ul li .answer {
    max-height: 0;
    max-width: 100%;
    overflow: hidden;
    padding-left: 40px;
    transition: all .4s;
    color: var(--gris-8);
}

#faq ul li .answer p:first-child {
    margin-top: 10px;
}

#faq ul li .answer p:last-child {
    margin-bottom: 5px;
}

#faq ul li.expanded .answer {
    max-height: 3000px;
    overflow: hidden;
}

#faq .more {
    color: #000;
    font-size: clamp(1.4rem, 3.0vw, 1.6rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.2em;
    margin-bottom: .4em;
}

#faq .contact {
    font-size: clamp(1.15rem, 1.9vw, 1.2rem);
    font-weight: 600;
    line-height: 1.3em;
    text-align: center;
    margin-bottom: .5em;
}

#faq .note {
    font-size: clamp(0.9rem, 1.9vw, 0.8rem);
    font-weight: 600;
    line-height: 1.4em;
    text-align: center;
}

/* Responsive - - - - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 500px) {
    #faq p a br {
        display: initial;
    }
}