.empresa-faq {
    background: #d8d8d8;
    padding: 18px 54px 64px;
}

.empresa-faq__container {
    max-width: 1280px;
    margin: 0 auto;
}

.empresa-faq__title {
    margin: 0 0 18px;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
}

.empresa-faq__list {
    border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.empresa-faq__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.empresa-faq__question {
    position: relative;
    list-style: none;
    padding: 18px 32px 18px 0;
    font-size: 11px;
    line-height: 1.25;
    color: rgba(0, 0, 0, 0.82);
    cursor: pointer;
}

.empresa-faq__question::-webkit-details-marker {
    display: none;
}

.empresa-faq__question::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 20px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.62);
}

.empresa-faq__item[open] .empresa-faq__question::after {
    content: '−';
}

.empresa-faq__answer {
    padding: 0 0 18px;
}

.empresa-faq__answer p {
    margin: 0;
    max-width: 760px;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.62);
}

@media (max-width: 768px) {
    .empresa-faq {
        padding: 18px 20px 44px;
    }
}