.planes-section-2 {
  font-family: Arial, sans-serif;
  padding: 2rem;
  text-align: center;
}

.planes-section-2 h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: rgba(1, 36, 75, 1);
}

.planes-container-section-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.plan-box-section-2 {
  background: white;
  border-radius: 10px;
  width: 295px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.title-h3-section-2 {
  font-size: 32px;
  line-height: 100%; /* Equivalente a 32px, puedes cambiar a 1 o 1.2 si quieres más espacio */
  letter-spacing: 0; /* 0% es igual a 0 en CSS */
  text-align: center;
  vertical-align: middle; /* Esto no tiene efecto en un bloque como h2; es más para celdas o inline */
}

.container-box-section-2 {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: linear-gradient(90deg, rgba(1, 36, 75, 1), rgba(0, 104, 189, 1));
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0;
}

.plan-box-section-2 .price-section-2 {
  font-weight: bold;
  font-size: 17px;
  color: #ffffff;
  padding: 0.5rem;
  text-align: center;
  background-color: rgba(1, 36, 75, 1);
}

.plan-box-section-2 ul {
  padding-left: 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.plan-box-section-2 .btn-section-2 {
  text-align: center;
  background-color: rgba(113, 0, 240, 1);
  color: white;
  padding: 5px 0px;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  font-weight: bold;
  margin: 1rem;
}

.list-section-2 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-section-2 > li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1px;
}

.list-section-2 > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.7em;
  height: 0.8em;
  background-image: url("../../../assets/img/Ellipse4.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.legend-section-2 {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.legend-section-2 span {
  padding: 0.6rem;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  font-weight: bold;
  padding: 5px 50px;
  margin: 1rem;
}

.legend-section-2 .factura-section-2 {
  background: rgba(113, 0, 240, 1);
  color: white;
}

.legend-section-2 .nomina-section-2 {
  background: rgba(113, 0, 240, 1);
  color: white;
}

.legend-section-2 .vermas-section-2 {
  background: rgba(255, 202, 0, 1);
  color: rgba(113, 0, 240, 1);
  padding: 5px 90px;
}

/* Responsive */
@media (max-width: 767px) {
  .planes-container-section-2 {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 1100px) and (max-width: 1316px) {
  .plan-box-section-2 {
    width: 270px;
  }
}

@media (min-width: 997px) and (max-width: 1216px) {
  .plan-box-section-2 {
    width: 200px;
  }
}

@media (min-width: 1080px) and (max-width: 1216px) {
  .plan-box-section-2 {
    width: 230px;
  }
}

.extra-planes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .extra-planes {
    flex-direction: column;
    align-items: center;
  }

  .legend-section-2 .vermas-section-2 {
    background: rgba(255, 202, 0, 1);
    color: rgba(113, 0, 240, 1);
    padding: 5px 80px;
  }
}
