/* ===========================================================
   Uzes Plus Landing — plus.css
   Componentes específicos de la página de ventas
   =========================================================== */

/* ── Anclaje fluido y smooth scroll considerando sticky bars ── */
html {
  scroll-padding-top: 80px;
}

/* ── HERO SALES ── */
.sales-hero {
  padding: 140px 5vw 80px;
  background: linear-gradient(180deg, var(--cream) 0%, #F6E4BD 100%);
}
.sales-hero .hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.sales-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(162, 155, 254, 0.18);
  border: 1px solid rgba(162, 155, 254, 0.5);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.sales-pill::before {
  content: "✦";
  color: var(--violet);
}
.sales-h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--dark);
}
.sales-h1 em {
  font-style: normal;
  color: var(--violet);
  background: linear-gradient(120deg, var(--violet), #7B6FF0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sales-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--dark);
  opacity: 0.7;
  margin-bottom: 30px;
  max-width: 520px;
}
.sales-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.sales-cta-trust {
  font-size: 13px;
  color: var(--dark);
  opacity: 0.55;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sales-cta-trust::before {
  content: "🛡️";
  font-size: 14px;
}

/* Hero visual: tarjeta del Resumen con IA */
.ai-card-preview {
  background: linear-gradient(140deg, #0D1527 0%, var(--dark) 100%);
  border-radius: 24px;
  padding: 28px;
  color: var(--cream);
  box-shadow: 0 30px 60px rgba(6, 13, 27, 0.25), 0 14px 28px rgba(6, 13, 27, 0.15);
  position: relative;
  overflow: hidden;
}
.ai-card-preview::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(162, 155, 254, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--violet-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ai-badge::before {
  content: "✦";
  font-size: 14px;
}
.ai-month {
  font-size: 14px;
  opacity: 0.5;
  margin-bottom: 4px;
}
.ai-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
}
.ai-text {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 18px;
  position: relative;
}
.ai-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}
.ai-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 14px;
}
.ai-stat-label {
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.55;
}
.ai-stat-val {
  font-size: 20px;
  font-weight: 800;
  margin-top: 4px;
}
.ai-stat-val.good { color: var(--success); }
.ai-stat-val.warn { color: var(--violet-light); }

/* ── FOUNDERS SECTION ── */
#founders {
  padding: 80px 5vw;
  background: var(--cream);
}
.founders-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(6, 13, 27, 0.06);
  border-radius: 28px;
  padding: 40px;
}
.founders-avatars {
  display: flex;
  gap: 0;
}
.founder-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--violet), #7B6FF0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--cream);
  border: 4px solid var(--cream);
  box-shadow: 0 10px 30px rgba(162, 155, 254, 0.35);
  letter-spacing: -1px;
}
.founder-avatar + .founder-avatar { margin-left: -28px; }
.founder-avatar.b { background: linear-gradient(140deg, #7B6FF0, var(--dark)); }

/* Real founder photos (used when actual portraits are provided) */
.founders-avatars picture { display: inline-block; }
.founders-avatars picture + picture { margin-left: -32px; }
.founder-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 4px solid var(--cream);
  box-shadow: 0 10px 30px rgba(162, 155, 254, 0.35);
  background: var(--cream-dark);
  display: block;
}
.founder-photo.b {
  box-shadow: 0 10px 30px rgba(123, 111, 240, 0.35);
}
.founders-text small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--violet);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.founders-text h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  color: var(--dark);
}
.founders-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  opacity: 0.78;
  margin-bottom: 10px;
}
.founders-text .signature {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 12px;
}

/* ── PAIN POINTS ── */
#pain {
  padding: 100px 5vw;
  background: var(--dark);
  color: var(--cream);
}
.pain-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
#pain h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
#pain .lead {
  font-size: 17px;
  opacity: 0.7;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}
.pain-card {
  background: rgba(253, 240, 213, 0.05);
  border: 1px solid rgba(253, 240, 213, 0.1);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s;
}
.pain-card:hover { border-color: rgba(162, 155, 254, 0.4); }
.pain-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain-text { font-size: 15px; line-height: 1.55; opacity: 0.9; }

/* ── PROMISE / TRANSFORMATION ── */
#promise {
  padding: 90px 5vw;
  background: var(--cream);
  text-align: center;
}
.promise-inner { max-width: 760px; margin: 0 auto; }
.promise-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--violet);
  margin-bottom: 14px;
}
.promise-h2 {
  font-size: clamp(26px, 3.3vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 24px;
}
.promise-h2 em {
  font-style: normal;
  color: var(--violet);
}
.promise-p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.7;
}

/* ── FEATURES STACK ── */
#features-plus {
  padding: 90px 5vw;
  background: linear-gradient(180deg, var(--cream) 0%, #F6E4BD 100%);
}
.features-inner { max-width: 1000px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 50px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(6, 13, 27, 0.06);
  border-radius: 18px;
  padding: 22px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(162, 155, 254, 0.18);
  border-color: rgba(162, 155, 254, 0.5);
}
.feature-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--violet);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.feature-text h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--dark);
}
.feature-text p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--dark);
  opacity: 0.65;
}

/* ── BONUS STACK ── */
#bonuses {
  padding: 90px 5vw;
  background: var(--dark);
  color: var(--cream);
}
.bonuses-inner { max-width: 1000px; margin: 0 auto; }
.bonus-eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--violet-light);
  margin-bottom: 14px;
}
.bonuses-title {
  text-align: center;
  font-size: clamp(26px, 3.3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 40px;
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: rgba(253, 240, 213, 0.05);
  border: 1px solid rgba(253, 240, 213, 0.12);
  border-radius: 22px;
  padding: 28px 22px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.bonus-card:hover {
  border-color: rgba(162, 155, 254, 0.5);
  transform: translateY(-4px);
}
.bonus-tag {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--violet);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.bonus-icon {
  font-size: 32px;
  margin: 8px 0 14px;
}
.bonus-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.bonus-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
}

/* ── PRICING SECTION (CTA principal) ── */
#offer {
  padding: 100px 5vw;
  background: var(--cream);
  text-align: center;
}
.offer-inner { max-width: 980px; margin: 0 auto; }

/* ── Override price cards inside the offer section ──
   The shared .price-card from styles.css is designed for the dark
   landing section; here we need stronger contrast against the cream
   background of #offer.                                          */
#offer .price-card {
  background: #fff;
  border: 1.5px solid rgba(6, 13, 27, 0.1);
  box-shadow: 0 12px 32px rgba(6, 13, 27, 0.06);
  text-align: left;
}
#offer .price-card.featured {
  background: linear-gradient(180deg, #F6E9C8 0%, #F0DDB0 100%);
  border-color: rgba(162, 155, 254, 0.55);
  box-shadow: 0 18px 44px rgba(162, 155, 254, 0.25);
}
#offer .price-card .price-amount,
#offer .price-card .price-plan,
#offer .price-card .price-period,
#offer .price-card .price-features li {
  color: var(--dark);
}
#offer .price-card .price-features li {
  opacity: 0.85;
}
#offer .price-card .price-equivalent {
  color: var(--violet);
  font-weight: 700;
}
.offer-anchor {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  opacity: 0.55;
  margin-bottom: 8px;
}
.offer-anchor s { color: inherit; }
.offer-price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 4px;
}
.offer-currency { font-size: 28px; font-weight: 800; color: var(--dark); }
.offer-amount { font-size: 72px; font-weight: 800; color: var(--dark); line-height: 1; letter-spacing: -2px; }
.offer-period { font-size: 16px; opacity: 0.6; }
.offer-equivalent {
  display: inline-block;
  background: rgba(162, 155, 254, 0.15);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 14px 0 30px;
}
.offer-cta-note {
  font-size: 13px;
  opacity: 0.55;
  margin-top: 18px;
}

/* ── GUARANTEE ── */
#guarantee {
  padding: 80px 5vw;
  background: linear-gradient(180deg, var(--cream) 0%, #F6E4BD 100%);
}
.guarantee-inner {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: 2px dashed rgba(162, 155, 254, 0.5);
  border-radius: 28px;
  padding: 44px;
  text-align: center;
  position: relative;
}
.guarantee-shield {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--violet), #7B6FF0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 16px;
  box-shadow: 0 12px 30px rgba(162, 155, 254, 0.4);
}
#guarantee h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: var(--dark);
}
#guarantee p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  opacity: 0.7;
  max-width: 560px;
  margin: 0 auto;
}
.guarantee-hotmart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── COMPARISON TABLE ── */
#compare {
  padding: 90px 5vw;
  background: var(--cream);
}
.compare-inner { max-width: 900px; margin: 0 auto; }
.compare-title { text-align: center; margin-bottom: 40px; }
.compare-title h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--dark);
}
.compare-table {
  background: #fff;
  border: 1px solid rgba(6, 13, 27, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(6, 13, 27, 0.04);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(6, 13, 27, 0.06);
  font-size: 14px;
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head {
  background: var(--dark);
  color: var(--cream);
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 18px 20px;
  font-size: 13px;
  text-transform: uppercase;
}
.compare-row.head .col-plus { color: var(--violet-light); }
.compare-cell { text-align: center; }
.compare-cell.label { text-align: left; font-weight: 600; color: var(--dark); }
.compare-yes { color: var(--success); font-weight: 800; }
.compare-no { opacity: 0.4; }

/* ── FAQ (visible) ── */
#faq {
  padding: 90px 5vw;
  background: linear-gradient(180deg, var(--cream) 0%, #F6E4BD 100%);
}
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-title { text-align: center; margin-bottom: 40px; }
.faq-title h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--dark);
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(6, 13, 27, 0.08);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(162, 155, 254, 0.5); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 600;
  color: var(--violet);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-answer {
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark);
  opacity: 0.78;
}

/* ── FINAL CTA ── */
#final-cta {
  padding: 110px 5vw;
  background: var(--dark);
  color: var(--cream);
  text-align: center;
}
.final-inner { max-width: 760px; margin: 0 auto; }
.final-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--violet-light);
  margin-bottom: 16px;
}
.final-h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.12;
  margin-bottom: 20px;
}
.final-h2 em { font-style: normal; color: var(--violet-light); }
.final-p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 520px;
  margin: 0 auto 36px;
}
.final-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 26px;
  margin-top: 30px;
  font-size: 13px;
  opacity: 0.65;
}
.final-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── Sticky CTA bar (móvil) ── */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  border-top: 1px solid rgba(162, 155, 254, 0.3);
  padding: 12px 5vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 90;
  box-shadow: 0 -8px 24px rgba(6, 13, 27, 0.25);
}
.sticky-cta-text {
  color: var(--cream);
  font-size: 13px;
  line-height: 1.3;
}
.sticky-cta-text strong { font-size: 16px; color: var(--violet-light); display: block; font-weight: 800; }
.sticky-cta .btn {
  flex-shrink: 0;
  padding: 12px 18px;
  font-size: 14px;
  border-radius: 999px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sales-hero .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ai-card-preview { max-width: 440px; margin: 0 auto; }
  .founders-inner { grid-template-columns: 1fr; text-align: center; padding: 32px 22px; }
  .founders-avatars { justify-content: center; }
  .pain-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.4fr 1fr 1fr; padding: 14px 16px; font-size: 13px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 84px; }
}
@media (max-width: 500px) {
  .sales-hero { padding: 120px 5vw 60px; }
  .offer-amount { font-size: 56px; }
  .offer-currency { font-size: 22px; }
}

/* ===========================================================
   AÑADIDOS — Estructura optimizada por análisis de copy de ventas
   (Hero benefit / Agitación / Transformación / Testimonios /
    CTAs intermedios / 4 bonos)
   =========================================================== */

/* ── Beneficio rápido bajo el subtítulo del hero ── */
.sales-benefit {
  display: inline-block;
  background: rgba(162, 155, 254, 0.12);
  border-left: 3px solid var(--violet);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.5;
}
.sales-benefit strong { color: var(--violet); }

/* ── CTA intermedio centrado entre secciones ── */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.founders-cta { margin-top: 28px; justify-content: flex-start; }
@media (max-width: 900px) {
  .founders-cta { justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   AGITACIÓN
   ══════════════════════════════════════════════════════════ */
#agitation {
  background: linear-gradient(180deg, #FFF7E4 0%, var(--cream) 100%);
  padding: 80px 5vw;
}
.agitation-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.agitation-h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--dark);
  margin: 12px 0 24px;
}
.agitation-lead {
  font-size: 18px;
  color: var(--dark);
  opacity: 0.75;
  margin-bottom: 24px;
  font-weight: 600;
}
.agitation-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  max-width: 480px;
  text-align: left;
  display: grid;
  gap: 14px;
}
.agitation-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  color: var(--dark);
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(162, 155, 254, 0.18);
  border-radius: 12px;
  padding: 14px 18px;
}
.agitation-list em { font-style: italic; color: var(--violet); font-weight: 600; }
.agitation-bullet {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FF6B6B;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin-top: 1px;
}
.agitation-close {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   TRANSFORMACIÓN — lista de bullets
   ══════════════════════════════════════════════════════════ */
.transformation-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  max-width: 480px;
  text-align: left;
  display: grid;
  gap: 12px;
}
.transformation-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 4px 14px rgba(162, 155, 254, 0.1);
}
.trans-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--violet);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIOS PLUS
   ══════════════════════════════════════════════════════════ */
#testimonials {
  padding: 80px 5vw;
  background: linear-gradient(180deg, var(--cream) 0%, #FFF6DD 100%);
}
.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.testimonials-h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--dark);
  margin: 12px 0 40px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.testimonial-plus {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: left;
  border: 1px solid rgba(162, 155, 254, 0.2);
  box-shadow: 0 10px 30px rgba(6, 13, 27, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stars-plus {
  color: #F5A623;
  font-size: 18px;
  letter-spacing: 2px;
}
.testimonial-plus-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  margin: 0;
  font-style: italic;
}
.testimonial-plus-result {
  background: rgba(162, 155, 254, 0.12);
  border-left: 3px solid var(--violet);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.5;
}
.result-tag {
  font-weight: 800;
  color: var(--violet);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-right: 4px;
}
.testimonial-plus-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(6, 13, 27, 0.08);
}
.author-avatar-plus {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), #7B6FF0);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.author-name-plus {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}
.author-role-plus {
  font-size: 12px;
  color: var(--dark);
  opacity: 0.65;
}

/* ══════════════════════════════════════════════════════════
   HERO KIT — Foto editorial + overlays (lo que se lleva el cliente)
   Reemplaza al phone-mockup. Comunica calor humano y kit completo.
   ══════════════════════════════════════════════════════════ */

.hero-kit {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 28px;
  box-shadow:
    0 30px 60px -20px rgba(6, 13, 27, 0.32),
    0 0 0 1px rgba(6, 13, 27, 0.05);
  display: block;
}

/* ── Badge "Acceso Plus" — top-left ── */
.hero-badge-plus {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--violet);
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(162, 155, 254, 0.45);
  z-index: 3;
}
.hero-badge-dot { color: white; font-size: 13px; }

/* ── Card flotante: Termómetro de Paz Mental ── */
.hero-card {
  position: absolute;
  background: rgba(14, 22, 38, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border-radius: 16px;
  padding: 14px 16px 16px;
  box-shadow: 0 20px 40px -10px rgba(6, 13, 27, 0.4);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-card-peace {
  top: 22%;
  left: -36px;
  width: 240px;
  background: linear-gradient(135deg, #5E54D8 0%, #7B6FF0 100%);
  border-color: rgba(255, 255, 255, 0.18);
}
.hero-card-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0.92;
  margin-bottom: 6px;
}
.hero-card-value {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.8px;
}
.hero-card-value span {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
  margin-left: 4px;
}
.hero-card-bar {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 99px;
  margin: 10px 0 6px;
  overflow: hidden;
}
.hero-card-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #FFE187, #FFB463);
  border-radius: 99px;
}
.hero-card-msg {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 500;
}

/* ── Stack de 2 ebooks (lower-right, over hands area — not face) ── */
.hero-ebooks {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  height: 240px;
  z-index: 4;
  pointer-events: none;
}
.hero-ebook {
  position: absolute;
  width: 130px;
  height: 170px;
  border-radius: 8px;
  padding: 16px 14px;
  background: var(--cream);
  border: 1px solid rgba(6, 13, 27, 0.08);
  box-shadow: 0 18px 36px -12px rgba(6, 13, 27, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-ebook-a {
  transform: rotate(-7deg);
  top: 18px;
  left: 0;
  background: #fff;
  z-index: 1;
}
.hero-ebook-b {
  transform: rotate(6deg);
  top: 0;
  left: 48px;
  background: var(--cream);
  z-index: 2;
}
.hero-ebook-eyebrow {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--violet);
}
.hero-ebook-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: var(--dark);
}
.hero-ebook-mark {
  width: 22px;
  height: 2px;
  background: var(--violet);
  border-radius: 2px;
}
.hero-ebooks-label {
  position: absolute;
  top: 196px;
  left: 30px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  background: var(--cream);
  padding: 6px 10px;
  border-radius: 8px;
  line-height: 1.2;
  border: 1px solid rgba(6, 13, 27, 0.08);
  box-shadow: 0 6px 14px rgba(6, 13, 27, 0.08);
  transform: rotate(-3deg);
}

/* ── Chip WhatsApp (bottom-left so it doesn't clash with ebooks) ── */
.hero-chip-whatsapp {
  position: absolute;
  bottom: -18px;
  left: -8px;
  background: white;
  border-radius: 14px;
  padding: 10px 14px 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 32px -10px rgba(6, 13, 27, 0.25);
  border: 1px solid rgba(6, 13, 27, 0.05);
  z-index: 3;
}
.hero-chip-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}
.hero-chip-sub {
  font-size: 10px;
  color: var(--dark);
  opacity: 0.6;
  margin-top: 2px;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .hero-kit { max-width: 460px; }
  .hero-ebooks { right: -16px; width: 180px; height: 220px; }
  .hero-ebook { width: 116px; height: 152px; padding: 14px 12px; }
  .hero-ebook-title { font-size: 14px; }
  .hero-card-peace { left: -16px; width: 220px; }
}
@media (max-width: 640px) {
  .hero-kit { max-width: 380px; }
  .hero-card-peace { top: 18%; left: -8px; width: 200px; padding: 12px 14px 14px; }
  .hero-card-value { font-size: 26px; }
  .hero-ebooks { bottom: -16px; right: -8px; width: 160px; height: 198px; }
  .hero-ebook { width: 102px; height: 134px; padding: 11px 10px; border-radius: 7px; }
  .hero-ebook-title { font-size: 12px; line-height: 1.1; }
  .hero-ebook-eyebrow { font-size: 7.5px; }
  .hero-ebooks-label { top: 152px; left: 22px; font-size: 10px; padding: 5px 8px; }
  .hero-chip-whatsapp { bottom: -10px; left: -4px; padding: 8px 12px 8px 10px; }
  .hero-chip-title { font-size: 11px; }
  .hero-chip-sub { font-size: 9px; }
  .hero-badge-plus { top: 12px; left: 12px; font-size: 11px; padding: 7px 14px; }
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIAL PHOTOS — replace initial-letter avatars
   ══════════════════════════════════════════════════════════ */
.author-photo-plus {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
  border: 2px solid var(--cream);
  box-shadow: 0 4px 12px rgba(6, 13, 27, 0.12);
}

/* ══════════════════════════════════════════════════════════
   PHONE MOCKUP — Dashboard realista de la app
   ══════════════════════════════════════════════════════════ */
.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}
.phone-frame {
  width: 320px;
  background: #0E0E12;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 30px 60px -15px rgba(6, 13, 27, 0.45),
    0 0 0 2px rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(0, 0, 0, 0.6);
  position: relative;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.phone-frame:hover { transform: rotate(0deg) translateY(-4px); }
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #0E0E12;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  background: linear-gradient(180deg, #FBF3DD 0%, #FFF8E5 100%);
  border-radius: 34px;
  overflow: hidden;
  padding: 38px 16px 14px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #0E0E12;
  min-height: 600px;
}

/* Status bar */
.ph-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #0E0E12;
  padding: 0 8px 8px;
}
.ph-status-right { display: flex; gap: 6px; align-items: center; font-size: 10px; }
.ph-signal { letter-spacing: -2px; }
.ph-wifi { transform: rotate(180deg); display: inline-block; font-size: 13px; }
.ph-battery {
  border: 1px solid #0E0E12;
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
}

/* App header */
.ph-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4px 14px;
}
.ph-greeting {
  font-size: 16px;
  font-weight: 800;
  color: #0E0E12;
}
.ph-date {
  font-size: 11px;
  color: #6A6F7A;
  margin-top: 2px;
}
.ph-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), #7B6FF0);
  color: white;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(162, 155, 254, 0.4);
}

/* Card base */
.ph-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px 14px 16px;
  box-shadow: 0 6px 18px rgba(6, 13, 27, 0.06);
  margin-bottom: 12px;
}

/* Paz mental card */
.ph-peace {
  background: linear-gradient(135deg, #5E54D8 0%, #7B6FF0 100%);
  color: #fff;
  border: none;
}
.ph-peace-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
  opacity: 0.92;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.ph-peace-value {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}
.ph-peace-value span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
  margin-left: 4px;
}
.ph-peace-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 99px;
  margin: 12px 0 8px;
  overflow: hidden;
}
.ph-peace-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #FFE187, #FFB463);
  border-radius: 99px;
}
.ph-peace-msg {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 500;
}

/* Quick stats */
.ph-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.ph-stat-box {
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(6, 13, 27, 0.05);
}
.ph-stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.ph-stat-icon.up { background: #DDF5E1; color: #1F8F4A; }
.ph-stat-icon.down { background: #FFE0DE; color: #C0392B; }
.ph-stat-label {
  font-size: 10px;
  color: #6A6F7A;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.ph-stat-num {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  margin-top: 2px;
}
.ph-stat-num.good { color: #1F8F4A; }
.ph-stat-num.bad { color: #C0392B; }

/* AI chip */
.ph-ai-chip {
  background: linear-gradient(135deg, #FFF1A8 0%, #FFE187 100%);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(162, 155, 254, 0.3);
  box-shadow: 0 4px 12px rgba(162, 155, 254, 0.12);
}
.ph-ai-chip-badge {
  display: inline-block;
  background: var(--violet);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 8px;
  border-radius: 99px;
  margin-bottom: 6px;
}
.ph-ai-chip-text {
  font-size: 11px;
  line-height: 1.45;
  color: #0E0E12;
}
.ph-ai-chip-text strong { color: var(--violet); }

/* Transactions */
.ph-section-title {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #6A6F7A;
  margin: 4px 4px 8px;
}
.ph-tx-list {
  background: #fff;
  border-radius: 14px;
  padding: 6px 10px;
  box-shadow: 0 4px 12px rgba(6, 13, 27, 0.04);
  margin-bottom: 70px;
}
.ph-tx {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 4px;
  border-bottom: 1px solid #F2EBD7;
}
.ph-tx:last-child { border-bottom: none; }
.ph-tx-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.ph-tx-info { flex: 1; min-width: 0; }
.ph-tx-name {
  font-size: 12px;
  font-weight: 700;
  color: #0E0E12;
}
.ph-tx-cat {
  font-size: 10px;
  color: #6A6F7A;
  margin-top: 1px;
}
.ph-tx-amt {
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.ph-tx-amt.good { color: #1F8F4A; }
.ph-tx-amt.bad { color: #C0392B; }

/* Bottom nav */
.ph-bottom-nav {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: #fff;
  border-radius: 0 0 34px 34px;
  padding: 10px 16px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 14px rgba(6, 13, 27, 0.05);
}
.ph-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 9px;
  color: #6A6F7A;
  font-weight: 600;
  flex: 1;
}
.ph-nav-item.active { color: var(--violet); }
.ph-nav-ico { font-size: 16px; line-height: 1; }
.ph-nav-lbl { letter-spacing: 0.3px; }
.ph-nav-fab {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), #7B6FF0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(162, 155, 254, 0.55);
  margin-top: -18px;
  flex-shrink: 0;
}

/* Responsive — mockup en móvil */
@media (max-width: 900px) {
  .phone-mockup { margin: 0 auto; }
  .phone-frame { transform: rotate(0deg); }
}
@media (max-width: 380px) {
  .phone-frame { width: 280px; }
  .phone-screen { min-height: 560px; }
}

/* ══════════════════════════════════════════════════════════
   BONOS — soporte para 4 tarjetas
   ══════════════════════════════════════════════════════════ */
.bonuses-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
@media (max-width: 900px) {
  .bonuses-grid-4 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

