.wta-accordion {
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wta-tab {
    border-top: 1px solid #ddd;
}

.wta-tab-title {
    width: 100%;
    text-align: left;
    padding: 12px;
    background: #f7f7f7;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.wta-tab-title.active {
    background: #e2e2e2;
}

.wta-tab-content {
    padding: 12px;
    background: #fff;
}

.wta-tab-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px;
    background: #f7f7f7;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease;
}

.wta-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.wta-tab-title.active .wta-icon {
    transform: rotate(45deg); /* Transforma o + em × */
}