/* ===== Página de Planificador ===== */
.pl-hero { padding: clamp(2.5rem,5vw,4.5rem) 0 clamp(2rem,4vw,3rem); }
.pl-hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (max-width: 920px) { .pl-hero__inner { grid-template-columns: 1fr; } .pl-hero__visual { order: -1; } }
.pl-hero__visual { display: flex; justify-content: center; }

/* ---- Mockup: onboarding "¿cuánto tiempo tienes?" ---- */
.pl-onb { padding: 30px 16px 16px; height: 100%; display: flex; flex-direction: column; gap: 12px; background: var(--opogc-white-off); }
.pl-onb__step { font-size: .64rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--opogc-text-muted); }
.pl-onb__q { font-family: var(--opogc-font-title); font-weight: 800; font-size: .98rem; line-height: 1.3; color: var(--opogc-text); margin: 0; }
.pl-onb__opt { display: flex; align-items: center; gap: 9px; background: #fff; border: 1.5px solid var(--opogc-border); border-radius: 11px; padding: 11px 12px; font-size: .76rem; font-weight: 600; color: var(--opogc-text-soft); }
.pl-onb__opt.sel { border-color: var(--opogc-green-pastel); background: var(--opogc-green-soft); color: var(--opogc-green-deep); }
.pl-onb__opt .rb { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--opogc-border); flex-shrink: 0; }
.pl-onb__opt.sel .rb { border-color: var(--opogc-green-pastel); background: radial-gradient(circle, var(--opogc-green-pastel) 0 40%, #fff 45%); }
.pl-onb__bar { margin-top: auto; background: var(--opogc-green-pastel); color: #fff; text-align: center; font-family: var(--opogc-font-body); font-weight: 700; font-size: .8rem; padding: 11px; border-radius: 11px; box-shadow: 0 4px 14px rgba(76,175,125,.3); }

/* ---- Mockup: vista semanal ---- */
.pl-week { padding: 28px 12px 12px; height: 100%; display: flex; flex-direction: column; gap: 8px; background: var(--opogc-white-off); }
.pl-week__h { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; }
.pl-week__title { font-family: var(--opogc-font-title); font-weight: 800; font-size: .85rem; color: var(--opogc-text); }
.pl-week__pct { font-size: .66rem; font-weight: 700; color: var(--opogc-green-deep); background: var(--opogc-green-soft); padding: 3px 8px; border-radius: 999px; }
.pl-day { display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--opogc-border); border-radius: 10px; padding: 8px 10px; }
.pl-day__d { width: 30px; flex-shrink: 0; text-align: center; }
.pl-day__d b { display: block; font-family: var(--opogc-font-title); font-weight: 700; font-size: .82rem; color: var(--opogc-text); line-height: 1; }
.pl-day__d span { font-size: .56rem; font-weight: 700; color: var(--opogc-text-muted); text-transform: uppercase; }
.pl-day__task { flex: 1; min-width: 0; }
.pl-day__task .tt { font-size: .7rem; font-weight: 700; color: var(--opogc-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pl-day__task .sd { font-size: .6rem; color: var(--opogc-text-muted); }
.pl-day__check { width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pl-day.done .pl-day__check { background: var(--opogc-green-pastel); }
.pl-day.done .pl-day__check svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 3; }
.pl-day.today { border-color: var(--opogc-green-pastel); box-shadow: 0 0 0 2px rgba(76,175,125,.15); }
.pl-day.today .pl-day__check { border: 2px solid var(--opogc-green-pastel); }
.pl-day.pending .pl-day__check { border: 2px solid var(--opogc-border); }
.pl-day.late { border-color: #f0c8cc; background: #fdf4f5; }
.pl-day.late .pl-day__check { border: 2px solid #d98a8e; }
.pl-day.late .pl-day__task .sd { color: #c2575c; font-weight: 700; }

/* ---- Mockup: reajuste ---- */
.pl-adjust { padding: 30px 16px 16px; height: 100%; display: flex; flex-direction: column; gap: 12px; background: var(--opogc-white-off); justify-content: center; }
.pl-adjust__ic { width: 50px; height: 50px; border-radius: 15px; background: var(--opogc-gold-soft); display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.pl-adjust__ic svg { width: 26px; height: 26px; stroke: var(--opogc-gold-deep); fill: none; stroke-width: 1.9; }
.pl-adjust__t { font-family: var(--opogc-font-title); font-weight: 800; font-size: .92rem; text-align: center; color: var(--opogc-text); margin: 0; }
.pl-adjust__s { font-size: .72rem; text-align: center; color: var(--opogc-text-soft); line-height: 1.45; margin: 0; }
.pl-adjust__card { background: #fff; border: 1px solid var(--opogc-border); border-radius: 12px; padding: 11px 12px; display: flex; align-items: center; gap: 10px; }
.pl-adjust__card .n { width: 30px; height: 30px; border-radius: 9px; background: var(--opogc-green-soft); color: var(--opogc-green-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pl-adjust__card .n svg { width: 16px; height: 16px; stroke: var(--opogc-green-pastel); fill: none; stroke-width: 2; }
.pl-adjust__card .tx { font-size: .68rem; color: var(--opogc-text-soft); }
.pl-adjust__card .tx b { display: block; font-size: .74rem; color: var(--opogc-text); }
.pl-adjust__btn { background: var(--opogc-green-pastel); color: #fff; text-align: center; font-weight: 700; font-size: .78rem; padding: 10px; border-radius: 11px; box-shadow: 0 4px 14px rgba(76,175,125,.3); }

/* ---- Sección miedos ---- */
.pl-fears { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 1.5rem; }
@media (max-width: 860px) { .pl-fears { grid-template-columns: 1fr; } }
.pl-fear { background: var(--opogc-white); border: 1px solid var(--opogc-border); border-radius: var(--opogc-radius); box-shadow: var(--opogc-shadow-xs); padding: 1.5rem 1.6rem; }
.pl-fear__q { font-family: var(--opogc-font-title); font-weight: 700; font-size: 1.1rem; color: var(--opogc-text); margin: 0 0 .6rem; display: flex; align-items: flex-start; gap: 9px; }
.pl-fear__q svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; stroke: var(--opogc-gold-deep); fill: none; stroke-width: 2; }
.pl-fear__d { font-size: .92rem; color: var(--opogc-text-soft); line-height: 1.6; margin: 0; }

/* ---- Escenarios (entrada según tiempo) ---- */
.pl-esc { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.5rem; }
.pl-esc__row { background: var(--opogc-white); border: 1px solid var(--opogc-border); border-radius: var(--opogc-radius); box-shadow: var(--opogc-shadow-xs); padding: 1.6rem 1.8rem; display: grid; grid-template-columns: 200px 1fr; gap: 1.5rem; align-items: start; }
@media (max-width: 760px) { .pl-esc__row { grid-template-columns: 1fr; gap: .8rem; } }
.pl-esc__left { display: flex; flex-direction: column; gap: .5rem; }
.pl-esc__meses { font-family: var(--opogc-font-title); font-weight: 800; font-size: 1.3rem; color: var(--opogc-green-deep); line-height: 1.1; }
.pl-esc__tag { display: inline-block; align-self: flex-start; font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; }
.pl-esc__tag.green { background: var(--opogc-green-soft); color: var(--opogc-green-deep); }
.pl-esc__tag.gold { background: var(--opogc-gold-soft); color: var(--opogc-gold-deep); }
.pl-esc__tag.red { background: #fbeef0; color: #a23a40; }
.pl-esc__ritmo { font-size: .78rem; font-weight: 600; color: var(--opogc-text-muted); display: flex; align-items: center; gap: 6px; }
.pl-esc__ritmo svg { width: 14px; height: 14px; stroke: var(--opogc-green-pastel); fill: none; stroke-width: 2.2; }
.pl-esc__titulo { font-family: var(--opogc-font-title); font-weight: 700; font-size: 1.15rem; color: var(--opogc-text); margin: 0 0 .5rem; }
.pl-esc__desc { font-size: .95rem; color: var(--opogc-text-soft); line-height: 1.6; margin: 0 0 .8rem; }
.pl-esc__real { display: flex; align-items: flex-start; gap: 8px; font-size: .86rem; font-weight: 600; color: var(--opogc-green-deep); background: var(--opogc-green-soft); border-radius: 10px; padding: 10px 12px; }
.pl-esc__real svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.pl-esc__row.is-red { border-color: #f0c8cc; }
.pl-esc__row.is-red .pl-esc__meses { color: #a23a40; }
.pl-esc__row.is-red .pl-esc__real { background: #fbeef0; color: #a23a40; }

/* ---- Bloque honestidad ---- */
.pl-honesty { background: var(--opogc-green-deep); border-radius: var(--opogc-radius); padding: clamp(2rem,4vw,3.5rem); color: #fff; text-align: center; }
.pl-honesty__eye { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: rgba(255,255,255,.12); padding: 6px 16px; border-radius: 999px; margin-bottom: 1.2rem; }
.pl-honesty h2 { font-family: var(--opogc-font-title); font-weight: 800; font-size: clamp(1.5rem,3.5vw,2.3rem); margin: 0 auto 1rem; max-width: 760px; line-height: 1.2; }
.pl-honesty p { font-size: 1.02rem; opacity: .82; line-height: 1.65; max-width: 680px; margin: 0 auto 1.5rem; }
.pl-honesty__quote { border-left: 3px solid rgba(255,255,255,.4); padding: 1rem 1.5rem; max-width: 640px; margin: 1.5rem auto 0; font-family: var(--opogc-font-title); font-weight: 600; font-size: 1.1rem; line-height: 1.45; text-align: left; font-style: italic; }
.pl-honesty__sign { display: block; margin-top: .8rem; font-size: .82rem; font-weight: 600; opacity: .7; font-style: normal; }

/* ---- Sección 2-col genérica del planificador ---- */
.pl-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (max-width: 920px) { .pl-split { grid-template-columns: 1fr; } }
.pl-split--rev .pl-split__visual { order: -1; }
@media (max-width: 920px) { .pl-split--rev .pl-split__visual { order: -1; } }
.pl-split__visual { display: flex; justify-content: center; }
.pl-bullets { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.3rem; }
.pl-bullet { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--opogc-text-soft); line-height: 1.5; }
.pl-bullet svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; stroke: var(--opogc-green-pastel); fill: none; stroke-width: 2.2; }
.pl-bullet b { color: var(--opogc-text); }
