.tablaContenedor{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:60px 20px;
  overflow: hidden;
}

/* CONTENEDOR */
.tabla {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  border: 2px solid white;
}

/* FILAS */
.fila {
  display: flex;
}

/* ENCABEZADO */
.header {
  background: grey;
  color:white;
}

/* CELDAS */
.celda {
  flex: 1;
  padding: 18px; /* 👈 un poquito más aire */
  border-right: 2px solid darkgrey;
  border-bottom: 2px solid darkgrey;
  display: flex;
  align-items: center;
  color:white;
  justify-content: center;
  text-align: center;
}

/* TIPOGRAFÍA DESKTOP */
.header .celda {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.fila:not(.header) .celda {
  font-size: 17px;
  line-height: 1.4;
}

.celda:last-child {
  border-right: none;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {

  .tabla {
    border: none;
  }

  .fila {
    flex-direction: column;
    border: 2px solid darkgrey;
    margin-bottom: 40px;
    position: relative;
  }

  .header {
    display: none;
  }

  .celda {
    padding: 0;
    border: none;
    border-bottom: 2px solid darkgrey;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
  }

  .celda:last-child {
    border-bottom: none;
  }

  /* LÍNEA CENTRAL */
  .fila::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: darkgrey;
  }

  /* IZQUIERDA (LABEL) */
  .celda::before {
    content: attr(data-label);
    flex: 1;
    padding: 14px;
    background: #2f2f2f;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    font-size: 13px;
    opacity: 0.7;
    letter-spacing: 0.5px;
  }

  /* DERECHA (CONTENIDO) */
  .celda span {
    flex: 1;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
  }

}