/* ======================================================
   EarVu — Plans Page (Limpieza definitiva)
====================================================== */

/* ======================================================
   GRID
====================================================== */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: stretch;
}

/* ======================================================
   PLAN BASE
====================================================== */

.plan {
  position: relative;
  background:
    radial-gradient(
      140% 140% at 10% 0%,
      rgba(255,255,255,0.07),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.01)
    );
  border-radius: 24px;
  padding: 3rem 2.8rem;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  box-sizing: border-box;
  overflow: hidden;
}

/* ======================================================
   HEADER — SIN FONDO
====================================================== */

.plan-header {
  margin-bottom: 2.6rem;
  background: transparent;
  box-shadow: none;
}

/* TÍTULO */

.plan-name {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  background: none;
}

/* SUBTÍTULO */

.plan-tagline {
  margin-top: 0.6rem;
  font-size: 1.05rem;
  opacity: 0.65;
  letter-spacing: 0.02em;
  background: none;
}

/* ======================================================
   BODY
====================================================== */

.plan-body {
  flex: 1;
  background: transparent;
}

.plan-description {
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 2.4rem;
  max-width: 95%;
}

/* FEATURES */

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  opacity: 0.8;
}

.plan-features li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
}

/* ======================================================
   FOOTER — SIN CAJA
====================================================== */

.plan-footer {
  margin-top: 3.2rem;
  text-align: center;
  background: transparent;
  box-shadow: none;
}

/* ======================================================
   CTA — BASE (todos los planes)
====================================================== */

.plan .plan-cta {
  display: inline-block;
  width: 100%;
  padding: 1.05rem 1.4rem;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.25s ease;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.plan .plan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0,0,0,0.45);
}

/* ======================================================
   FREE — IDENTIDAD LIMPIA
====================================================== */

.plan-free {
  border: 1px solid rgba(140, 220, 140, 0.35);
  background:
    radial-gradient(
      140% 140% at 10% 0%,
      rgba(140, 220, 140, 0.25),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.01)
    );
}

/* TÍTULO FREE */

.plan-free .plan-name {
  color: #9af09a;
  text-shadow: 0 0 22px rgba(120,220,120,0.3);
}

/* TAGLINE FREE */

.plan-free .plan-tagline {
  color: #c8f5c8;
}

/* ======================================================
   CTA FREE — SIN FONDO NEGRO
====================================================== */

.plan-free .plan-cta {
  display: inline-block;
  width: 100%;
  padding: 1.05rem 1.4rem;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    #9af09a,
    #6fcd6f
  );
  color: #0a1a0a;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.25s ease;
  box-shadow: 0 16px 40px rgba(90, 200, 90, 0.4);
}

/* Hover */

.plan-free .plan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(90, 200, 90, 0.55);
}

/* Nota */

.plan-note {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.55;
}

/* ======================================================
   OTROS PLANES (NEUTROS)
====================================================== */

.plan-senior,
.plan-pro,
.plan-premium {
  opacity: 0.9;
}

/* ======================================================
   🔥 OVERRIDE TOTAL — eliminar cajas negras heredadas
====================================================== */

/* Header del plan */

.plan .plan-header {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Footer / CTA del plan */

.plan .plan-footer {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* CTA wrapper si existe */

.plan .plan-footer *,
.plan .plan-header * {
  background: transparent !important;
}

/* Por si el fondo viene de un wrapper genérico */

.plan section,
.plan header,
.plan footer {
  background: transparent !important;
}

/* ======================================================
   🔁 RESTAURAR CTA FREE (tras override global)
====================================================== */

.plan-free .plan-cta {
  background: linear-gradient(
    180deg,
    #9ae79a,
    #6fc96f
  ) !important;
  color: #0b1a0b !important;
  box-shadow: 0 14px 32px rgba(90, 180, 90, 0.45) !important;
}

/* Hover consistente */

.plan-free .plan-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(90, 180, 90, 0.55) !important;
}

/* ======================================================
   SENIOR — AZUL (escala)
====================================================== */

.plan-senior {
  border: 1px solid rgba(120, 170, 255, 0.35);
  background:
    radial-gradient(
      140% 140% at 10% 0%,
      rgba(120, 170, 255, 0.25),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.01)
    );
}

.plan-senior .plan-name {
  color: #8fb4ff;
  text-shadow: 0 0 22px rgba(120,170,255,0.35);
}

.plan-senior .plan-tagline {
  color: #c6d7ff;
}

.plan-senior .plan-cta {
  background: linear-gradient(
    180deg,
    #8fb4ff,
    #6f96e8
  );
  color: #0b1220;
  box-shadow: 0 16px 40px rgba(90,130,220,0.45);
}

.plan-senior .plan-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(90,130,220,0.6);
}

/* ======================================================
   PRO — PLATA (ritmo profesional)
====================================================== */

.plan-pro {
  border: 1px solid rgba(200, 210, 220, 0.35);
  background:
    radial-gradient(
      140% 140% at 10% 0%,
      rgba(200, 210, 220, 0.28),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.015)
    );
}

.plan-pro .plan-name {
  color: #e5ebf0;
  text-shadow: 0 0 24px rgba(200,210,220,0.4);
}

.plan-pro .plan-tagline {
  color: #d6dde3;
}

.plan-pro .plan-cta {
  background: linear-gradient(
    180deg,
    #e5ebf0,
    #cfd6dc
  );
  color: #0e1116;
  box-shadow: 0 18px 45px rgba(180,190,200,0.45);
}

.plan-pro .plan-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 65px rgba(180,190,200,0.6);
}

/* ======================================================
   PREMIUM — DORADO (máximo)
====================================================== */

.plan-premium {
  border: 1px solid rgba(255, 205, 120, 0.45);
  background:
    radial-gradient(
      140% 140% at 10% 0%,
      rgba(255, 205, 120, 0.35),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.02)
    );
}

.plan-premium .plan-name {
  color: #ffd98a;
  text-shadow: 0 0 26px rgba(255,205,120,0.5);
}

.plan-premium .plan-tagline {
  color: #ffedc2;
}

.plan-premium .plan-cta {
  background: linear-gradient(
    180deg,
    #ffd98a,
    #f0b94d
  );
  color: #1a1205;
  box-shadow: 0 20px 50px rgba(220,170,80,0.5);
}

.plan-premium .plan-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 30px 75px rgba(220,170,80,0.65);
}

/* ======================================================
   TÍTULOS — PRESENCIA PRO
====================================================== */

.plan-name {
  text-shadow:
    0 2px 12px rgba(0,0,0,0.45),
    0 0 24px rgba(255,255,255,0.08);
}

.plan-premium .plan-name {
  text-shadow:
    0 0 22px rgba(240,210,120,0.45),
    0 4px 18px rgba(0,0,0,0.6);
}

/* ======================================================
   AISLAMIENTO TOTAL DE PLANS (contra admin CSS)
====================================================== */

.evu-plans-page .plan-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-height: 52px;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
}

/* ===== COLORES POR PLAN ===== */

.evu-plans-page .plan-senior .plan-cta {
  background: linear-gradient(
    180deg,
    #6fa8ff,
    #4c7edc
  ) !important;
  color: #0b1220 !important;
  box-shadow: 0 14px 34px rgba(80,120,220,0.45) !important;
}

.evu-plans-page .plan-pro .plan-cta {
  background: linear-gradient(
    180deg,
    #cfcfcf,
    #9e9e9e
  ) !important;
  color: #111 !important;
  box-shadow: 0 14px 34px rgba(160,160,160,0.45) !important;
}

.evu-plans-page .plan-premium .plan-cta {
  background: linear-gradient(
    180deg,
    #f0d37a,
    #c9a63a
  ) !important;
  color: #1a1405 !important;
  box-shadow: 0 18px 44px rgba(200,160,60,0.55) !important;
}

/* Hover */

.evu-plans-page .plan-cta:hover {
  transform: translateY(-2px);
}

/* ======================================================
   🔁 RESTAURAR CTA SENIOR
====================================================== */

.plan-senior .plan-cta {
  display: inline-block !important;
  width: 100% !important;
  padding: 1.05rem 1.4rem !important;
  border-radius: 16px !important;
  background: linear-gradient(
    180deg,
    #7fb0ff,
    #4f7fe0
  ) !important;
  color: #0b1220 !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  text-decoration: none !important;
  box-shadow: 0 14px 32px rgba(80, 120, 220, 0.45) !important;
}

.plan-senior .plan-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(80, 120, 220, 0.6) !important;
}

/* ======================================================
   🔁 RESTAURAR CTA PRO
====================================================== */

.plan-pro .plan-cta {
  display: inline-block !important;
  width: 100% !important;
  padding: 1.05rem 1.4rem !important;
  border-radius: 16px !important;
  background: linear-gradient(
    180deg,
    #d6d6d6,
    #9e9e9e
  ) !important;
  color: #111 !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  text-decoration: none !important;
  box-shadow: 0 14px 32px rgba(160, 160, 160, 0.45) !important;
}

.plan-pro .plan-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(160, 160, 160, 0.6) !important;
}

/* ======================================================
   🔁 RESTAURAR CTA PREMIUM
====================================================== */

.plan-premium .plan-cta {
  display: inline-block !important;
  width: 100% !important;
  padding: 1.05rem 1.4rem !important;
  border-radius: 16px !important;
  background: linear-gradient(
    180deg,
    #f0d37a,
    #c9a63a
  ) !important;
  color: #1a1405 !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  text-decoration: none !important;
  box-shadow: 0 18px 44px rgba(200, 160, 60, 0.55) !important;
}

.plan-premium .plan-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 60px rgba(200, 160, 60, 0.7) !important;
}

/* ======================================================
   TÍTULOS (AJUSTES FINALES)
====================================================== */

.plan-senior .plan-name {
  color: #9fc2ff;
  text-shadow: 0 0 18px rgba(90, 140, 255, 0.35);
}

.plan-pro .plan-name {
  color: #e2e2e2;
  text-shadow: 0 0 20px rgba(220, 220, 220, 0.35);
}

.plan-premium .plan-name {
  color: #f2d88a;
  text-shadow: 0 0 22px rgba(220, 180, 80, 0.45);
}

/* ======================================================
   COMPARATIVA — REDISEÑO TOTAL
====================================================== */

.plans-compare-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.compare-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  align-items: center;
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}

.compare-row.header {
  background: transparent;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.compare-row .label {
  opacity: 0.75;
  font-weight: 500;
}

/* Colores por plan */

.compare-row .free {
  color: #9af09a;
}

.compare-row .senior {
  color: #9fc2ff;
}

.compare-row .pro {
  color: #e2e2e2;
}

.compare-row .premium {
  color: #f2d88a;
}

/* Checks */

.compare-row div:not(.label):not(:first-child) {
  text-align: center;
  font-weight: 600;
}

/* ======================================================
   COMPARATIVA HUMANA
====================================================== */

.compare-human .compare-row {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem 1.4rem;
}

.compare-human .compare-row.header {
  border: 0;
  padding: 0.6rem 1.4rem;
  opacity: 0.8;
}

.compare-human .compare-row div:not(.label):not(:first-child) {
  font-size: 1.05rem;
}

/* ======================================================
   COMPARATIVA EXHAUSTIVA
====================================================== */

.compare-exhaustive {
  margin-top: 3rem;
}

.compare-block {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border-radius: 20px;
  padding: 2.4rem 2.6rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.compare-block-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  opacity: 0.85;
}

.compare-block-grid {
  display: grid;
  gap: 0;
}

.compare-exhaustive .compare-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.compare-exhaustive .compare-row:last-child {
  border-bottom: none;
}

.compare-header {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.compare-header .free {
  color: #9af09a;
}

.compare-header .senior {
  color: #8fbaff;
}

.compare-header .pro {
  color: #e2e2e2;
}

.compare-header .premium {
  color: #f5d98c;
}

.compare-exhaustive .label {
  opacity: 0.7;
  font-size: 0.95rem;
}


/* ======================================================
   COMPARATIVA EXHAUSTIVA — ASPECTO DOCUMENTACIÓN (FINAL)
====================================================== */

.compare-exhaustive {
  margin-top: 3rem;
}

/* Contenedor del bloque */
.compare-exhaustive .compare-block {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border-radius: 22px;
  padding: 2.6rem 3rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* Título */
.compare-exhaustive .compare-block-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  opacity: 0.9;
}

/* Grid base */
.compare-exhaustive .compare-block-grid {
  display: grid;
  gap: 0;
}

/* RESET TOTAL de filas heredadas */
.compare-exhaustive .compare-row {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0.9rem 0 !important;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.compare-exhaustive .compare-row:last-child {
  border-bottom: none;
}

/* Header */
.compare-exhaustive .compare-row.compare-header {
  padding-top: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Celdas */
.compare-exhaustive .compare-cell {
  text-align: center;
  font-weight: 500;
  opacity: 0.85;
}

.compare-exhaustive .compare-cell.label {
  text-align: left;
  opacity: 0.7;
}

/* Colores por plan */
.compare-exhaustive .free {
  color: #9af09a;
}

.compare-exhaustive .senior {
  color: #9fc2ff;
}

.compare-exhaustive .pro {
  color: #d6d6d6; /* PLATA REAL */
}

.compare-exhaustive .premium {
  color: #f2d88a;
}

/* PRECIOS */
.plan-price {
  margin-top: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.price-amount {
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-left: 0.3rem;
}


/* Línea EARVU */

.plans-header::before {
  content: "";
  display: block;
  height: 3px;
  width: 50%;
  max-width: 420px;
  margin-bottom: 1.2rem;
  background: linear-gradient(
    90deg,
    #f28c28,  /* naranja */
    #f2c94c,  /* amarillo */
    #6fcf97,  /* verde */
    #4f7fe0   /* azul */
  );
  border-radius: 2px;
}



.plans-philosophy .philosophy-main {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.45;
}

.plans-philosophy .philosophy-sub {
  margin-top: 0.6rem;
  opacity: 0.75;
}



.plan-label.free { color: #9af09a; }
.plan-label.senior { color: #9fc2ff; }
.plan-label.pro { color: #e2e2e2; }
.plan-label.premium { color: #f2d88a; }
.plans-guide-list li {
  margin-bottom: 0.6rem;
}


.plans-addons-list {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.addon {
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.06);
}

.addon span {
  opacity: 0.7;
  margin-left: 0.3rem;
}

.addon.whatsapp { border-left: 3px solid #25D366; }
.addon.facebook { border-left: 3px solid #1877F2; }
.addon.api { border-left: 3px solid #f2d88a; }


.plans-final-cta .btn.evu-free {
  background: linear-gradient(180deg, #9ae79a, #6fc96f);
  color: #0b1a0b;
  font-weight: 800;
  border-radius: 16px;
  padding: 0.8rem 1.4rem;
}

.plans-closing-line {
  opacity: 0.9;
}



.compare-divider {
  margin: 3rem auto 2.5rem;
  text-align: center;
  position: relative;
}

.compare-divider span {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}


hr.evu-divider {
  border: none;
  height: 2px;
  width: 60%;
  margin: 3rem auto;
  background: linear-gradient(
    90deg,
    #f28c2f,   /* naranja EarVu */
    #f2c94c,   /* amarillo */
    #6fcf97,   /* verde */
    #56ccf2,   /* azul */
    #2f80ed    /* azul profundo */
  );
  border-radius: 2px;
  opacity: 0.9;
  box-shadow: 0 0 12px rgba(86, 204, 242, 0.25);
}


/* Disabled CTA (Senior / Pro / Premium locked) */
.plan-cta.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
}

.plan-cta.is-disabled:hover {
  transform: none;
  box-shadow: none;
}