SCSS

HTML

<section class="home-imovel-time">
		<div class="home-imovel-time-wrapper">
			<table class="home-imovel-time-info">
				<thead>
					<tr>
						<th>Item</th>
						<th></th>
						<th>Empreendimento Convencional</th>
						<th></th>
						<th>Tico</th>
					</tr>
				</thead>
				<tbody>
					<tr>
						<td>Tempo para entrega</td>
						<td class="empty"></td>
						<td>Lorem ipsum dolor si emet</td>
						<td class="empty"></td>
						<td>Lorem ipsum dolor si emet</td>
					</tr>
					<tr>
						<td>36-48 meses</td>
						<td class="empty"></td>
						<td>Lorem ipsum dolor si emet</td>
						<td class="empty"></td>
						<td>Lorem ipsum dolor si emet</td>
					</tr>
					<tr>
						<td>12 meses</td>
						<td class="empty"></td>
						<td>Lorem ipsum dolor si emet</td>
						<td class="empty"></td>
						<td>Lorem ipsum dolor si emet</td>
					</tr>
				</tbody>
			</table>
		</div>
	</section>

SCSS

.home-imovel-time-info {
  margin-top: 30px;

  td,
  tr {
    color: black;
  }

  td {
    padding: 10px;

    &.empty {
      border: none;
      display: initial;
      margin: 10px;
      border-right: 2px solid black;
      padding: 0;
      padding-bottom: 30px;
      padding-top: 15px;
    }

    &:last-child {
      border: none;
    }
  }

  tr {
    &:not(:first-child) {
      td {
        border-top: 2px solid black;
      }
    }
  }
}