
/* Rediseño del selector */
.plan-selector {
  border: 2px solid #2c9c8d;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  max-width: 600px;
  margin: 20px auto 40px;
  background: #f9f9f9;
}

.plan-selector p {
  margin-bottom: 15px;
  font-size: 1em;
  color: #444;
}

/* Botones del selector */
.toggle-buttons {
  display: inline-flex;
  background-color: #e0e0e0;
  border-radius: 20px;
  padding: 5px;
}
.plan-benefits .cantidad {
    font-weight: 700;
    font-size: 1.1em;
    color: var(--text-strong, #000); /* usa tu color base o mantené así */
}


.toggle-buttons button {
  border: none;
  background: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  color: #333;
}

.toggle-buttons button.active {
  background-color: #2c9c8d;
  color: white;
}

.section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin: 40px 0 20px;
  color: var(--color-text);
}

/* Contenedor de cards */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

/* Bloque prueba gratuita */
.free-trial {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9; /* fallback si no existe */
  border-radius: 8px;
  padding: 12px 16px;
  max-width: 650px;
  margin: 0 auto 30px;
  box-shadow: var(--shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.05));
}

/* Texto del aviso */
.free-trial__info {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text, #333);
  text-transform: uppercase;
}

/* Botón */
.free-trial__btn {
  background-color: var(--secondary-color);
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}


/* Estilo de cards */
.card {
  border: 2px solid #cfd8dc;
  border-radius: 12px;
  padding: 20px;
  width: 260px;
  background: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.card .precio-descuento {
  font-size: 1.3em;
  color: #2c9c8d;
  font-weight: bold;
  margin-bottom: 5px;
}

.card .precio-original {
  font-size: 0.95em;
  color: #444;
  font-weight: 500;
  margin-bottom: 10px;
}

.card .detalles {
  font-size: 0.95em;
  line-height: 1.5;
  margin-top: 10px;
}

.card .detalles strong {
  display: block;
  margin-top: 8px;
  color: #222;
}

/* ✔ y ❌ */
.card .detalles::before {
  content: '';
  display: none;
}

.card .detalles span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.card .detalles span::before {
  font-family: 'Arial';
  font-weight: bold;
  font-size: 1.2em;
}

.card .detalles .check::before {
  content: '✔';
  color: green;
}

.card .detalles .cross::before {
  content: '✘';
  color: red;
}

.card button {
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 6px;
  background-color: #2c9c8d;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.card .btn-disabled {
  background-color: #aaa !important;
  cursor: not-allowed;
}

.plan-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 240px;
    margin: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.plan-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 0.95rem;
}

.plan-benefits li {
    margin: 4px 0;
}

.plan-precio {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.plan-precio-mensual {
    font-weight: bold;
    display: block;
}

.plan-precio-total {
    color: #888;
    font-size: 0.9rem;
}

.plan-btn {
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: var(--secondary-color, #005a8d);
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.plan-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.btn-gratis {
    background-color: white;
    border: 2px solid var(--secondary-color, #005a8d);
    color: var(--secondary-color, #005a8d);
}

main{
  padding: 0px !important;
}