.latabla{ width: 100%; height: 215px;}

.lastarjetas-contenedor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d6d6d6;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
  overflow-x: auto;
}

.lastarjetas-tarjeta {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.lastarjetas-tarjeta:nth-child(3n) { border-right: none; }
.lastarjetas-tarjeta:nth-child(-n+3) { border-top: none; }

.lastarjetas-tarjeta img {
  width: 100%;
  max-width: 476px;
  aspect-ratio: 476 / 252;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.lastarjetas-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.lastarjetas-fila {
  display: flex;
  width: 100%;
  max-width: 476px;
}

.lastarjetas-columna {
  flex: 1;
  text-align: center;
  border-right: 2px solid #303033;
}

.lastarjetas-columna:last-child { border-right: none; }

.lastarjetas-titulo {
  background: #303033;
  color: #ff9d1b;
  font-weight: 600;
  font-size: 16px;
  padding: 6px 0;
  border-bottom: 2px solid #303033;
}

.lastarjetas-tabla {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 476px;
  margin-bottom: 0;
}

.lastarjetas-tabla div {
  padding: 6px 10px;
  font-size: 13px;
  border: none;
}

.lastarjetas-tabla div:nth-child(odd) { font-weight: 600; }
.lastarjetas-tabla div:nth-child(2n) { border-left: 2px solid #303033; }

.lastarjetas-tabla div:nth-child(even) {
  padding-left: 30px; /* ajusta el valor según necesites */
}    
    
.lastarjetas-boton {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 476px;
  background: #fff;
  border-top: 2px solid #303033;
  padding: 10px;
}

.lastarjetas-numero {
  font-weight: bold;
  font-size: 14px;
}

.lastarjetas-boton {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-top: 2px solid #000;
  padding: 20px 0px; /* margen interno a los lados */
}

.lastarjetas-boton a {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  padding: 0 0px; /* espacio interno al texto y al icono */
}

.lastarjetas-boton .lastarjetas-numero {
  margin-left: 0; /* ya no hace falta, queda pegado a la izquierda */
}  
    
.lastarjetas-icono {
  width: 37px;
  height: 37px;
  background: #ff9d1b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border-radius: 3px;
  transition: color 0.3s;
}

.lastarjetas-boton a:hover .lastarjetas-icono {
  color: #000;
}

@media (max-width: 1400px) {

  .lastarjetas-contenedor { grid-template-columns: repeat(2, 1fr); max-width: 1000px; }
  .lastarjetas-tarjeta:nth-child(2n) { border-right: none; }
  .lastarjetas-tarjeta:nth-child(-n+2) { border-top: none; }
  .lastarjetas-tarjeta img,
  .lastarjetas-fila,
  .lastarjetas-tabla,
  .lastarjetas-boton { max-width: 100%; }
}

@media (max-width: 1020px) {
  .lastarjetas-contenedor { grid-template-columns: 1fr; max-width: 476px; }
  .lastarjetas-tarjeta { border-right: none; border-top: none; padding: 10px; }
  .lastarjetas-tarjeta img,
  .lastarjetas-fila,
  .lastarjetas-tabla,
  .lastarjetas-boton { max-width: 100%; }
  .lastarjetas-titulo { font-size: 14px; }
}

