/* Estilos para tabla de características */
.tabla-caracteristicas {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.tabla-caracteristicas th,
.tabla-caracteristicas td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.tabla-caracteristicas th {
  background: rgb(80,80,80);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.tabla-caracteristicas tr:last-child td {
  border-bottom: none;
}

.tabla-caracteristicas tr:nth-child(even) {
  background: #f8f9fa;
}

.tabla-caracteristicas tr:hover {
  background: #f1f3f5;
}

@media (max-width: 768px) {
  .tabla-caracteristicas {
    width: 90%;
    margin: 0 auto;
    overflow-x: auto;
    display: none;
  }
  .tabla-caracteristicas th,
.tabla-caracteristicas td {
  font-size: 8px;
}
}
