/* TÍTULO */
h1 {
  text-align: center;
  margin: 50px 0 20px;
}

/* CONTENEDORES DE TABLAS */
#tabla-precios,
#tabla-precios2 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  flex-wrap: wrap;
}

/* COLUMNA */
.precio-col {
  background-color: #f3f3f3;
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0px 2px 5px #ddd;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.precio-col-header {
  background-color: #732db4;
  padding: 20px;
  border-radius: 10px 10px 0 0;
}

.precio-col-header h3 {
  color: #f3f3f3;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
}

.precio-col-header p {
  text-align: center;
  color: #f3f3f3;
  font-size: 14px;
  margin-bottom: 0;
}

/* FEATURES */
.precio-col-features {
  padding: 0 20px 20px;
  flex-grow: 1;
}

.precio-col-features p {
  padding: 20px 0;
  margin: 0;
  text-align: center;
  border-top: 1px solid #ddd;
}

.precio-col-features p:first-child {
  border-top: none;
}

/* BOTÓN */
.precio-col-comprar {
  padding: 10px;
  max-width: 250px;
  text-align: center;
  background-color: #1f1e20;
  margin: 0 auto 20px;
  border-radius: 10px;
  border: 2px solid #1f1e20;
  transition: all 0.3s;
}

.precio-col-comprar a {
  color: #f3f3f3;
  padding: 10px;
  font-size: 15px;
  text-transform: uppercase;
  transition: all 0.3s;
  display: block;
  text-decoration: none;
}

.precio-col-comprar:hover {
  background-color: #f3f3f3;
}

.precio-col-comprar:hover a {
  color: #dd9933;
}