/* === SECCIÓN GENERAL === */
.pricing-clean {
  background: #fff;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
  color: #1e1e1e;
}

/* === CONTENEDOR === */
.pricing-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px; /* MÁS ESPACIO ENTRE COLUMNA Y TARJETAS */
}

/* === TARJETAS DE PLANES === */
.plans {
  display: flex;
  flex-direction: row;
  gap: 50px; /* MÁS AIRE ENTRE LAS TARJETAS */
  flex: 2;
}

.plan {
  flex: 1;
  background: none; /* sin color de fondo */
  padding: 30px 20px;
  text-align: left;
  border: none; /* sin borde */
  box-shadow: none; /* SIN SOMBRAS */
  transition: all 0.3s ease;
  border-radius: 0; /* completamente plano */
}

.plan:hover {
  transform: translateY(-5px);
}

.plan.highlight {
  background-color: rgba(59, 91, 165, 0.05); /* azul muy claro para resaltar */
  border-radius: 8px;
}

/* === TÍTULOS === */
.plan h4 {
  color: #3B5BA5;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.plan-subtitle {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 12px;
}

/* === PRECIO === */
.price {
  margin: 10px 0 15px;
  color: #1e1e1e;
}

.currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: #E87A5D;
}

.amount {
  font-size: 2.3rem;
  font-weight: 700;
}

.per {
  font-size: 0.9rem;
  color: #666;
}

.extra {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 15px;
}

/* === LISTA === */
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.plan ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #333;
}

.plan ul li::before {
  content: "✔";
  color: #3B5BA5;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
}

/* === BOTONES === */
.btn-plan {
  display: inline-block;
  background-color: #E87A5D;
  color: #fff;
  padding: 10px 22px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-plan:hover {
  background-color: #F3B941;
  color: #1e1e1e;
}

/* === COLUMNA DERECHA === */
.pricing-info {
  flex: 1.2;
  text-align: left;
  padding-top: 40px;
}

.pricing-info h6 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3B5BA5;
  margin-bottom: 8px;
}

.pricing-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0e1e46;
  margin-bottom: 15px;
  line-height: 1.2;
}

.pricing-info p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

.btn-video {
  font-weight: 600;
  color: #E87A5D;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-video:hover {
  color: #F3B941;
}

/* === DIVISORIA SUAVE ENTRE COLUMNAS === */
.pricing-container::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  background: #eee;
  left: 65%;
  top: 10%;
}

/* === RESPONSIVE === */
@media (max-width: 950px) {
  .pricing-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 50px;
  }

  .pricing-info {
    text-align: center;
    padding-top: 0;
  }

  .plans {
    flex-direction: column;
    gap: 30px;
  }

  .pricing-container::before {
    display: none;
  }
}
