/* =========================================================
   BUHOOO · PRESENCIA DE PRODUCTO
   Landing-presentación. Pensada para proyectarse en vivo.
   Prefijo de clases: .pc-
   ========================================================= */

:root {
    --pc-bg: #000000;
    --pc-bg-soft: #050706;
    --pc-panel: #0b0e0d;
    --pc-panel-2: #101414;
    --pc-panel-3: rgba(255, 255, 255, 0.035);

    --pc-text: #f0fdf4;
    --pc-muted: rgba(240, 253, 244, 0.66);
    --pc-muted-2: rgba(240, 253, 244, 0.42);

    --pc-line: rgba(255, 255, 255, 0.08);
    --pc-line-strong: rgba(255, 255, 255, 0.16);

    --pc-accent: #30fd28;
    --pc-accent-deep: #22c41e;
    --pc-accent-soft: rgba(48, 253, 40, 0.10);
    --pc-accent-line: rgba(48, 253, 40, 0.28);

    --pc-indigo: #6366f1;
    --pc-indigo-soft: rgba(99, 102, 241, 0.12);
    --pc-amber: #fbbf24;
    --pc-amber-soft: rgba(251, 191, 36, 0.12);
    --pc-red: #ef4444;
    --pc-red-soft: rgba(239, 68, 68, 0.12);
    --pc-wa: #25d366;

    --pc-radius: 22px;
    --pc-radius-sm: 14px;
    --pc-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);

    /* Escala tipográfica calibrada para proyección y lectura a 3 metros.
       Nada de texto de contenido por debajo de ~16px reales. */
    --pc-h1: clamp(2.4rem, 4.6vw, 5rem);
    --pc-h2: clamp(1.95rem, 3.7vw, 4rem);
    --pc-h3: clamp(1.3rem, 1.7vw, 1.85rem);
    --pc-lead: clamp(1.12rem, 1.4vw, 1.6rem);
    --pc-body: clamp(1.02rem, 1.05vw, 1.24rem);
    --pc-micro: clamp(0.86rem, 0.72vw, 1.02rem);
    --pc-eyebrow: clamp(0.78rem, 0.62vw, 0.98rem);
    --pc-figure: clamp(2.6rem, 5vw, 5rem);

    --pc-ease: cubic-bezier(0.22, 0.68, 0.24, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    /* Sin scroll-snap por defecto: sólo se activa en modo presentación */
}

body.pc-body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--pc-text);
    background: var(--pc-bg);
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.pc-body img,
body.pc-body svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.pc-wrap {
    width: min(1400px, calc(100% - 44px));
    margin: 0 auto;
}

.pc-sr {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
}

/* =========================================================
   BARRA SUPERIOR
   ========================================================= */
.pc-topbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem clamp(16px, 3vw, 34px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.5) 70%, transparent);
    backdrop-filter: blur(14px);
    transition: opacity 0.35s var(--pc-ease), transform 0.35s var(--pc-ease);
}

.pc-topbar__brand { display: flex; align-items: center; gap: 0.85rem; }
.pc-topbar__brand img { width: 118px; height: auto; }

.pc-topbar__tag {
    padding: 0.28rem 0.7rem;
    border: 1px solid var(--pc-accent-line);
    border-radius: 999px;
    background: var(--pc-accent-soft);
    color: var(--pc-accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pc-topbar__actions { display: flex; align-items: center; gap: 0.55rem; }

.pc-ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    border: 1px solid var(--pc-line-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--pc-text);
    font-size: 0.8rem;
    font-weight: 600;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.pc-ghost-btn:hover {
    border-color: var(--pc-accent-line);
    background: var(--pc-accent-soft);
    color: var(--pc-accent);
}
.pc-ghost-btn svg { width: 15px; height: 15px; flex: none; }
.pc-ghost-btn[aria-pressed="true"] {
    border-color: var(--pc-accent);
    background: var(--pc-accent);
    color: #06210a;
}

/* Barra de progreso de la presentación */
.pc-progress {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 70;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
}
.pc-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--pc-accent-deep), var(--pc-accent));
    box-shadow: 0 0 16px rgba(48, 253, 40, 0.55);
    transition: width 0.18s linear;
}

/* Navegación por puntos (láminas) */
.pc-dots {
    position: fixed;
    right: clamp(10px, 1.6vw, 20px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 55;
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
}
.pc-dots button {
    position: relative;
    width: 9px; height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pc-dots button:hover { background: rgba(255, 255, 255, 0.5); transform: scale(1.25); }
.pc-dots button[aria-current="true"] {
    background: var(--pc-accent);
    transform: scale(1.4);
    box-shadow: 0 0 12px rgba(48, 253, 40, 0.75);
}
.pc-dots button::after {
    content: attr(data-label);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    padding: 0.28rem 0.6rem;
    border: 1px solid var(--pc-line);
    border-radius: 8px;
    background: rgba(10, 12, 11, 0.95);
    color: var(--pc-text);
    font-size: 0.68rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s, transform 0.22s;
}
.pc-dots button:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

/* Contador de lámina */
.pc-counter {
    position: fixed;
    left: clamp(16px, 3vw, 34px);
    bottom: clamp(14px, 2.4vw, 26px);
    z-index: 55;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    color: var(--pc-muted-2);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
}
.pc-counter strong { color: var(--pc-accent); font-size: 1.05rem; font-weight: 800; }

/* Pista de teclado */
.pc-hint {
    position: fixed;
    right: clamp(16px, 3vw, 34px);
    bottom: clamp(14px, 2.4vw, 26px);
    z-index: 55;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pc-muted-2);
    font-size: 0.72rem;
    transition: opacity 0.4s var(--pc-ease);
}
.pc-hint kbd {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 0.32rem;
    border: 1px solid var(--pc-line-strong);
    border-bottom-width: 2px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--pc-text);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
}

/* =========================================================
   SISTEMA DE LÁMINAS
   ========================================================= */
.pc-slide {
    position: relative;
    display: grid;
    align-content: safe center;
    min-height: 100svh;
    padding: clamp(5rem, 7.5vw, 6.4rem) 0 clamp(3.4rem, 5vw, 4.4rem);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}
.pc-slide:first-of-type { border-top: 0; }

.pc-slide--glow-a::before,
.pc-slide--glow-b::before,
.pc-slide--glow-c::before {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.pc-slide--glow-a::before {
    inset: -20% 40% 30% -20%;
    background: radial-gradient(circle, rgba(48, 253, 40, 0.14), transparent 66%);
}
.pc-slide--glow-b::before {
    inset: -10% -25% 20% 45%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.16), transparent 64%);
}
.pc-slide--glow-c::before {
    inset: 20% -20% -25% 30%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.10), transparent 62%);
}
.pc-slide > .pc-wrap { position: relative; z-index: 1; width: min(1400px, calc(100% - 44px)); }

/* Retícula técnica de fondo */
.pc-slide--grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 62px 62px;
    background-position: center;
}

/* -----------------------------------------------------
   El mosaico: cada celda es un punto de venta.
   Motivo de marca de toda la pieza.
   ----------------------------------------------------- */
.pc-mosaic {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(26px, 3.1vw, 46px), 1fr));
    grid-auto-rows: clamp(26px, 3.1vw, 46px);
    gap: 6px;
    padding: 6px;
    overflow: hidden;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse 96% 82% at 42% 48%, transparent 44%, rgba(0,0,0,0.55) 74%, #000 100%);
    mask-image: radial-gradient(ellipse 96% 82% at 42% 48%, transparent 44%, rgba(0,0,0,0.55) 74%, #000 100%);
}
.pc-mosaic i {
    display: block;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(255, 255, 255, 0.022);
}
.pc-mosaic i[data-on] {
    background: rgba(48, 253, 40, 0.10);
    border-color: rgba(48, 253, 40, 0.24);
    animation: pc-cell 5.5s var(--pc-ease) infinite;
}
@keyframes pc-cell {
    0%, 100% { opacity: 0.2; }
    45%, 60% { opacity: 0.85; box-shadow: 0 0 10px rgba(48, 253, 40, 0.22); }
}

/* Numeración de lámina en marca de agua */
.pc-slide__index {
    position: absolute;
    top: clamp(4.4rem, 7vw, 5.6rem);
    right: clamp(28px, 4vw, 62px);
    z-index: 0;
    color: rgba(255, 255, 255, 0.035);
    font-size: clamp(6rem, 15vw, 14rem);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
}

/* =========================================================
   TIPOGRAFÍA
   ========================================================= */
.pc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.05rem;
    color: var(--pc-accent);
    font-size: var(--pc-eyebrow);
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}
.pc-eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--pc-accent);
    box-shadow: 0 0 10px rgba(48, 253, 40, 0.7);
}
.pc-eyebrow--indigo { color: var(--pc-indigo); }
.pc-eyebrow--indigo::before { background: var(--pc-indigo); box-shadow: 0 0 10px rgba(99, 102, 241, 0.7); }
.pc-eyebrow--amber { color: var(--pc-amber); }
.pc-eyebrow--amber::before { background: var(--pc-amber); box-shadow: 0 0 10px rgba(251, 191, 36, 0.7); }

.pc-h1, .pc-h2 {
    margin: 0;
    line-height: 1.02;
    letter-spacing: -0.028em;
    text-wrap: balance;
}
.pc-h1 { font-size: var(--pc-h1); font-weight: 800; }
.pc-h2 { font-size: var(--pc-h2); font-weight: 800; }
.pc-h3 {
    margin: 0;
    font-size: var(--pc-h3);
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: -0.012em;
}

.pc-lead {
    max-width: 62ch;
    margin: 1.4rem 0 0;
    color: var(--pc-muted);
    font-size: var(--pc-lead);
    line-height: 1.68;
    text-wrap: pretty;
}
.pc-p {
    margin: 0.9rem 0 0;
    color: var(--pc-muted);
    font-size: var(--pc-body);
    line-height: 1.7;
}
.pc-em { color: var(--pc-accent); font-style: normal; font-weight: 700; }
.pc-em--indigo { color: var(--pc-indigo); font-style: normal; font-weight: 700; }
.pc-em--amber { color: var(--pc-amber); font-style: normal; font-weight: 700; }
.pc-strike { color: var(--pc-muted-2); text-decoration: line-through; text-decoration-color: rgba(239, 68, 68, 0.7); }

.pc-center { text-align: center; }
.pc-center .pc-eyebrow { justify-content: center; }
.pc-center .pc-lead { margin-inline: auto; }

.pc-intro { max-width: 900px; margin: 0 auto; }

/* =========================================================
   LAYOUTS DE LÁMINA
   ========================================================= */
.pc-split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 4.4vw, 4.4rem);
    align-items: center;
}
.pc-split--reverse > .pc-split__visual { order: -1; }
.pc-split--wide-visual { grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); }
.pc-split--hero { grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr); align-items: center; }
.pc-split--hero .pc-art { width: fit-content; max-width: 100%; margin-inline: auto; }
.pc-split--hero .pc-art svg { width: auto; height: min(50svh, 560px); max-width: 100%; }
.pc-split__copy, .pc-split__visual { min-width: 0; }

.pc-stack { display: grid; gap: clamp(2rem, 4vw, 3.2rem); }

/* =========================================================
   LISTAS
   ========================================================= */
.pc-list {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.6rem;
}
.pc-list li {
    position: relative;
    padding-left: 2rem;
    color: var(--pc-text);
    font-size: var(--pc-body);
    line-height: 1.55;
}
.pc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 15px; height: 15px;
    border-radius: 50%;
    background: var(--pc-accent-soft);
    border: 1px solid var(--pc-accent-line);
}
.pc-list li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 0.66em;
    width: 5px; height: 2.5px;
    border-radius: 2px;
    background: var(--pc-accent);
    box-shadow: 0 0 8px rgba(48, 253, 40, 0.8);
}
.pc-list--x li::before { background: var(--pc-red-soft); border-color: rgba(239, 68, 68, 0.35); }
.pc-list--x li::after { background: var(--pc-red); box-shadow: 0 0 8px rgba(239, 68, 68, 0.6); }
.pc-list--x li { color: var(--pc-muted); }

/* =========================================================
   CIFRAS
   ========================================================= */
.pc-figures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: clamp(0.8rem, 1.4vw, 1.2rem);
    margin-top: clamp(1.5rem, 2.6vw, 2.2rem);
}
.pc-figure {
    position: relative;
    padding: clamp(1.3rem, 2.2vw, 1.8rem);
    border: 1px solid var(--pc-line);
    border-radius: var(--pc-radius);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
    overflow: hidden;
}
.pc-figure::after {
    content: '';
    position: absolute;
    inset: auto auto -60% -30%;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--pc-accent-soft), transparent 70%);
    pointer-events: none;
}
.pc-figure strong {
    display: block;
    color: var(--pc-accent);
    font-size: var(--pc-figure);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.035em;
    font-variant-numeric: tabular-nums;
}
.pc-figure span {
    display: block;
    margin-top: 0.62rem;
    color: var(--pc-text);
    font-size: var(--pc-body);
    font-weight: 700;
    line-height: 1.32;
}
.pc-figure small {
    display: block;
    margin-top: 0.32rem;
    color: var(--pc-muted-2);
    font-size: var(--pc-micro);
    line-height: 1.45;
}
/* Cifras cuyo valor es una palabra, no un número: el tamaño de cifra las desborda */
.pc-figure--word strong { font-size: clamp(1.5rem, 2.3vw, 2.35rem); line-height: 1.12; letter-spacing: -0.02em; }
.pc-figure--indigo strong { color: var(--pc-indigo); }
.pc-figure--indigo::after { background: radial-gradient(circle, var(--pc-indigo-soft), transparent 70%); }
.pc-figure--amber strong { color: var(--pc-amber); }
.pc-figure--amber::after { background: radial-gradient(circle, var(--pc-amber-soft), transparent 70%); }
.pc-figure--red strong { color: var(--pc-red); }
.pc-figure--red::after { background: radial-gradient(circle, var(--pc-red-soft), transparent 70%); }

/* =========================================================
   TARJETAS
   ========================================================= */
.pc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(0.8rem, 1.4vw, 1.2rem);
    margin-top: clamp(1.5rem, 2.6vw, 2.2rem);
}
.pc-card {
    position: relative;
    padding: clamp(1.35rem, 2.2vw, 1.9rem);
    border: 1px solid var(--pc-line);
    border-radius: var(--pc-radius);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
    transition: border-color 0.3s var(--pc-ease), transform 0.3s var(--pc-ease);
}
.pc-card:hover { border-color: var(--pc-accent-line); transform: translateY(-4px); }
.pc-card__ico {
    display: grid;
    place-items: center;
    width: 46px; height: 46px;
    margin-bottom: 1.05rem;
    border: 1px solid var(--pc-accent-line);
    border-radius: 13px;
    background: var(--pc-accent-soft);
    color: var(--pc-accent);
}
.pc-card__ico svg { width: 22px; height: 22px; }
.pc-card__ico--amber { border-color: rgba(251, 191, 36, 0.3); background: var(--pc-amber-soft); color: var(--pc-amber); }
.pc-card__ico--red { border-color: rgba(239, 68, 68, 0.3); background: var(--pc-red-soft); color: var(--pc-red); }
.pc-card__ico--indigo { border-color: rgba(99, 102, 241, 0.3); background: var(--pc-indigo-soft); color: var(--pc-indigo); }
.pc-card p { margin: 0.68rem 0 0; color: var(--pc-muted); font-size: var(--pc-body); line-height: 1.6; }

/* Tarjetas de dolor (lámina problema) */
.pc-card--pain { background: linear-gradient(165deg, rgba(251, 191, 36, 0.055), rgba(255, 255, 255, 0.008)); }
.pc-card--pain:hover { border-color: rgba(251, 191, 36, 0.35); }

/* =========================================================
   PASOS
   ========================================================= */
.pc-stepno {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.15rem;
}
.pc-stepno__num {
    display: grid;
    place-items: center;
    width: 52px; height: 52px;
    border: 1px solid var(--pc-accent-line);
    border-radius: 16px;
    background: var(--pc-accent-soft);
    color: var(--pc-accent);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: inset 0 0 24px rgba(48, 253, 40, 0.12);
}
.pc-stepno__label {
    color: var(--pc-muted-2);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

/* Mini mapa de los 4 pasos */
.pc-steprail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.2rem;
}
.pc-steprail span {
    padding: 0.46rem 0.95rem;
    border: 1px solid var(--pc-line);
    border-radius: 999px;
    color: var(--pc-muted-2);
    font-size: var(--pc-micro);
    font-weight: 600;
}
.pc-steprail span[data-on="true"] {
    border-color: var(--pc-accent-line);
    background: var(--pc-accent-soft);
    color: var(--pc-accent);
}

/* =========================================================
   COMPARATIVA
   ========================================================= */
.pc-versus {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 1.4rem);
    margin-top: clamp(1.5rem, 2.6vw, 2.2rem);
}
.pc-vs-col {
    padding: clamp(1.4rem, 2.4vw, 2.1rem);
    border: 1px solid var(--pc-line);
    border-radius: var(--pc-radius);
    background: rgba(255, 255, 255, 0.018);
}
.pc-vs-col--good {
    border-color: var(--pc-accent-line);
    background: linear-gradient(170deg, rgba(48, 253, 40, 0.075), rgba(255, 255, 255, 0.012));
    box-shadow: 0 0 60px rgba(48, 253, 40, 0.06);
}
.pc-vs-col__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding-bottom: 1rem;
    margin-bottom: 1.1rem;
    border-bottom: 1px solid var(--pc-line);
}
.pc-vs-col__head h3 { margin: 0; font-size: clamp(1.05rem, 1.7vw, 1.35rem); font-weight: 800; }
.pc-vs-col--bad .pc-vs-col__head h3 { color: var(--pc-muted); }
.pc-vs-col--good .pc-vs-col__head h3 { color: var(--pc-accent); }
.pc-vs-chip {
    padding: 0.26rem 0.68rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}
.pc-vs-col--bad .pc-vs-chip { background: var(--pc-red-soft); color: var(--pc-red); }
.pc-vs-col--good .pc-vs-chip { background: var(--pc-accent-soft); color: var(--pc-accent); }
.pc-vs-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.78rem; }
.pc-vs-col li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: var(--pc-body);
    line-height: 1.5;
}
.pc-vs-col li svg { width: 18px; height: 18px; flex: none; margin-top: 0.16em; }
.pc-vs-col--bad li { color: var(--pc-muted); }
.pc-vs-col--bad li svg { color: var(--pc-red); }
.pc-vs-col--good li { color: var(--pc-text); font-weight: 500; }
.pc-vs-col--good li svg { color: var(--pc-accent); }

/* =========================================================
   BLOQUE DE ILUSTRACIÓN
   ========================================================= */
.pc-art {
    position: relative;
    padding: clamp(0.6rem, 1.4vw, 1.1rem);
    border: 1px solid var(--pc-line);
    border-radius: clamp(18px, 2vw, 28px);
    background:
        radial-gradient(circle at 22% 12%, rgba(48, 253, 40, 0.07), transparent 58%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.006));
    box-shadow: var(--pc-shadow);
    overflow: hidden;
}
.pc-art svg { width: 100%; height: auto; }
.pc-art--indigo {
    background:
        radial-gradient(circle at 78% 14%, rgba(99, 102, 241, 0.10), transparent 58%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.006));
}
.pc-art--amber {
    background:
        radial-gradient(circle at 30% 15%, rgba(251, 191, 36, 0.09), transparent 58%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.006));
}
.pc-art--bare { padding: 0; border: 0; background: none; box-shadow: none; overflow: visible; }

/* Ilustración protagonista de lámina completa: manda el ALTO, no el ancho.
   Sin esto una SVG a 1400px de ancho mide sola casi una pantalla entera. */
.pc-art--stage { width: fit-content; max-width: 100%; margin-inline: auto; }
.pc-art--stage svg { width: auto; height: min(var(--pc-stage-h, 42svh), 520px); max-width: 100%; }
/* Cuanto más contenido lleva la lámina debajo, más baja la ilustración */
.pc-art--stage-md svg { --pc-stage-h: 38svh; }
.pc-art--stage-sm svg { --pc-stage-h: 30svh; }
.pc-art--stage-xl svg { --pc-stage-h: 48svh; }
/* Cuando la ilustración ES la lámina, ocupa todo el alto disponible */
.pc-art--stage-lg svg { --pc-stage-h: 45svh; }
.pc-art__cap {
    margin: 0.85rem 0.35rem 0.25rem;
    color: var(--pc-muted-2);
    font-size: var(--pc-micro);
    line-height: 1.5;
    text-align: center;
}

/* =========================================================
   FRANJA DE REFUERZO
   ========================================================= */
.pc-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(0.8rem, 2.2vw, 2.1rem);
    margin-top: clamp(1.4rem, 2.4vw, 2rem);
    padding: clamp(0.95rem, 1.6vw, 1.25rem) clamp(1.2rem, 2.4vw, 2rem);
    border: 1px solid var(--pc-accent-line);
    border-radius: var(--pc-radius);
    background: linear-gradient(100deg, rgba(48, 253, 40, 0.09), rgba(48, 253, 40, 0.02));
}
.pc-banner span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--pc-text);
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    font-weight: 700;
}
.pc-banner span svg { width: 19px; height: 19px; color: var(--pc-accent); flex: none; }
.pc-banner--red { border-color: rgba(239, 68, 68, 0.3); background: linear-gradient(100deg, rgba(239, 68, 68, 0.09), rgba(239, 68, 68, 0.02)); }
.pc-banner--red span svg { color: var(--pc-red); }

/* Cita destacada */
.pc-quote {
    position: relative;
    max-width: 22ch;
    margin: 0;
    font-size: clamp(1.5rem, 3.1vw, 2.7rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
}
.pc-quote::before {
    content: '';
    position: absolute;
    left: -1.15rem;
    top: 0.2em;
    bottom: 0.2em;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--pc-accent), transparent);
}

/* =========================================================
   BOTONES / CTA
   ========================================================= */
.pc-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: clamp(1.8rem, 3vw, 2.4rem); }
.pc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.92rem 1.7rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.25s var(--pc-ease), box-shadow 0.25s var(--pc-ease), background 0.25s;
}
.pc-btn svg { width: 19px; height: 19px; flex: none; }
.pc-btn--primary {
    background: var(--pc-accent);
    color: #06210a;
    box-shadow: 0 12px 38px rgba(48, 253, 40, 0.26);
}
.pc-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(48, 253, 40, 0.4); }
.pc-btn--wa {
    background: var(--pc-wa);
    color: #06281a;
    box-shadow: 0 12px 38px rgba(37, 211, 102, 0.26);
}
.pc-btn--wa:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(37, 211, 102, 0.4); }
.pc-btn--ghost { border-color: var(--pc-line-strong); background: rgba(255, 255, 255, 0.03); color: var(--pc-text); }
.pc-btn--ghost:hover { border-color: var(--pc-accent-line); background: var(--pc-accent-soft); color: var(--pc-accent); }
.pc-contact-form { display:grid; grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr); gap:clamp(1.5rem,5vw,4rem); margin-top:clamp(2.5rem,5vw,4.5rem); padding:clamp(1.4rem,3.5vw,2.6rem); border:1px solid var(--pc-line-strong); border-radius:var(--pc-radius); background:linear-gradient(135deg,rgba(48,253,40,.08),rgba(99,102,241,.10)); }.pc-contact-form h2 { margin:.45rem 0 .8rem; }.pc-contact-form > div > p:last-child { margin:0; color:var(--pc-muted); font-size:var(--pc-body); }.pc-contact-form form { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.85rem; }.pc-contact-form label { display:grid; gap:.38rem; color:var(--pc-muted); font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }.pc-contact-form input,.pc-contact-form textarea { width:100%; padding:.78rem .85rem; border:1px solid var(--pc-line-strong); border-radius:10px; background:rgba(0,0,0,.28); color:var(--pc-text); font:600 .9rem/1.4 'Poppins',sans-serif; outline:0; }.pc-contact-form input:focus,.pc-contact-form textarea:focus { border-color:var(--pc-accent); box-shadow:0 0 0 3px var(--pc-accent-soft); }.pc-contact-form .corporate-email-note { color:var(--pc-accent); font-size:.64rem; line-height:1.35; letter-spacing:.02em; text-transform:none; }.pc-contact-form .address-visit-note { color:var(--pc-muted); font-size:.7rem; line-height:1.4; letter-spacing:0; text-transform:none; }.pc-contact-form textarea { min-height:92px; resize:vertical; }.pc-contact-form__full { grid-column:1/-1; }.pc-contact-form button { grid-column:1/-1; justify-content:center; border:0; }.pc-contact-form form > p { grid-column:1/-1; min-height:20px; margin:0; text-align:center; color:var(--pc-muted); font-size:.8rem; }

.pc-final-brand {
    display: flex;
    justify-content: center;
    margin-top: clamp(2rem, 4vw, 3.2rem);
}
.pc-final-brand a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.85rem, 1.5vw, 1.2rem);
}
.pc-final-brand img {
    width: min(280px, 68vw);
    height: auto;
    filter: drop-shadow(0 18px 36px rgba(48, 253, 40, 0.18));
}

/* =========================================================
   PIE
   ========================================================= */
.pc-footer {
    padding: 2.4rem 0;
    border-top: 1px solid var(--pc-line);
    background: var(--pc-bg-soft);
}
.pc-footer__in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--pc-muted-2);
    font-size: 0.84rem;
}
.pc-footer__in a:hover { color: var(--pc-accent); }

/* =========================================================
   ANIMACIÓN DE ENTRADA
   ========================================================= */
.pc-rise {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s var(--pc-ease), transform 0.75s var(--pc-ease);
}
.pc-rise.pc-in { opacity: 1; transform: none; }
.pc-rise[data-d="1"] { transition-delay: 0.09s; }
.pc-rise[data-d="2"] { transition-delay: 0.18s; }
.pc-rise[data-d="3"] { transition-delay: 0.27s; }
.pc-rise[data-d="4"] { transition-delay: 0.36s; }
.pc-rise[data-d="5"] { transition-delay: 0.45s; }

/* =========================================================
   MODO PRESENTACIÓN
   ========================================================= */
body.pc-present { scroll-snap-type: y mandatory; }
body.pc-present .pc-slide { scroll-snap-align: start; scroll-snap-stop: always; }
body.pc-present .pc-topbar { opacity: 0; pointer-events: none; transform: translateY(-100%); }
body.pc-present .pc-topbar:focus-within { opacity: 1; pointer-events: auto; transform: none; }
body.pc-present .pc-slide__index { opacity: 0.55; }
/* El cañón de proyección se come los bordes tenues: se refuerzan */
body.pc-present {
    --pc-line: rgba(255, 255, 255, 0.15);
    --pc-line-strong: rgba(255, 255, 255, 0.26);
    --pc-muted: rgba(240, 253, 244, 0.78);
    --pc-muted-2: rgba(240, 253, 244, 0.56);
}
body.pc-present .pc-hint { opacity: 0; }
body.pc-present .pc-footer { display: none; }

/* Salida del modo presentación, siempre accesible */
.pc-exit-present {
    position: fixed;
    top: clamp(12px, 2vw, 20px);
    right: clamp(38px, 5vw, 64px);
    z-index: 80;
    display: none;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.85rem;
    border: 1px solid var(--pc-line-strong);
    border-radius: 999px;
    background: rgba(10, 12, 11, 0.9);
    color: var(--pc-muted);
    font-size: 0.74rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    opacity: 0.35;
    transition: opacity 0.3s;
}
body.pc-present .pc-exit-present { display: inline-flex; }
.pc-exit-present:hover { opacity: 1; color: var(--pc-text); }

/* =========================================================
   NOTAS DEL PRESENTADOR
   El guion hablado. Sólo lo ve quien presenta (tecla N).
   ========================================================= */
.pc-note { display: none; }

.pc-notes-panel {
    position: fixed;
    left: 50%;
    bottom: clamp(12px, 2vw, 22px);
    transform: translateX(-50%);
    z-index: 75;
    width: min(880px, calc(100% - 32px));
    padding: 1rem 1.25rem 1.1rem;
    border: 1px solid var(--pc-accent-line);
    border-radius: 18px;
    background: rgba(6, 10, 8, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
}
.pc-notes-panel[hidden] { display: none; }
.pc-notes-panel__tag {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--pc-accent);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}
.pc-notes-panel p {
    margin: 0;
    color: var(--pc-text);
    font-size: clamp(0.94rem, 1.25vw, 1.1rem);
    line-height: 1.6;
}

/* Con el guion abierto, el contador y la pista se apartan */
body.pc-notes-on .pc-counter,
body.pc-notes-on .pc-hint { opacity: 0; pointer-events: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
    .pc-art--stage,
    .pc-split--hero .pc-art { width: 100%; }
    .pc-art--stage svg,
    .pc-split--hero .pc-art svg { width: 100%; height: auto; }
    .pc-split,
    .pc-split--wide-visual { grid-template-columns: minmax(0, 1fr); gap: clamp(1.8rem, 4vw, 2.6rem); }
    .pc-split--reverse > .pc-split__visual { order: 0; }
    .pc-dots { display: none; }
}

@media (max-width: 860px) {
    .pc-slide { min-height: auto; padding: clamp(4.4rem, 12vw, 5.6rem) 0 clamp(2.6rem, 8vw, 3.6rem); }
    body.pc-present { scroll-snap-type: none; }
    .pc-versus { grid-template-columns: minmax(0, 1fr); }
    .pc-hint { display: none; }
    .pc-topbar__tag { display: none; }
    .pc-quote { max-width: none; }
    /* En teléfono esto es una landing, no una presentación proyectada */
    .pc-topbar__actions,
    .pc-counter { display: none; }
}

@media (max-width: 560px) {
    .pc-wrap { width: calc(100% - 28px); }
    .pc-slide > .pc-wrap { width: calc(100% - 28px); }
    .pc-slide__index { font-size: 5.4rem; top: 3.6rem; right: 14px; }
    .pc-topbar { padding: 0.7rem 14px; }
    .pc-topbar__brand img { width: 96px; }
    .pc-counter { font-size: 0.7rem; }
    .pc-banner { flex-direction: column; align-items: flex-start; }
    .pc-figures { grid-template-columns: minmax(0, 1fr); }
}

/* =========================================================
   ACCESIBILIDAD / MOVIMIENTO REDUCIDO
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .pc-rise { opacity: 1; transform: none; transition: none; }
    .pc-card:hover, .pc-btn:hover { transform: none; }
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

:focus-visible {
    outline: 2px solid var(--pc-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (max-width: 720px) { .pc-contact-form, .pc-contact-form form { grid-template-columns:1fr; }.pc-contact-form__full { grid-column:auto; }.pc-contact-form button, .pc-contact-form form > p { grid-column:auto; } }

@media print {
    .pc-topbar, .pc-dots, .pc-counter, .pc-hint, .pc-progress, .pc-exit-present { display: none !important; }
    .pc-slide { min-height: auto; page-break-after: always; }
    .pc-rise { opacity: 1; transform: none; }
}
