.tab-container {
    width: 100%;
    margin: 50px auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tab-header {
    display: flex;
    cursor: pointer;
    background-color: #f1f1f1;
    border-bottom: 1px solid #ddd;
}

.tab-header div {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-right: 1px solid #ddd;
    transition: background-color 0.3s;
}

.tab-header div:last-child {
    border-right: none;
}

.tab-header div.active {
    background-color: #fff;
    border-bottom: 2px solid #007BFF;
    font-weight: bold;
}

.tab-content {
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

.alinha {
    text-align: justify;
}