/*
 * ============================================================
 *  Página: /app-moviles-en-valencia/
 *  Archivo: assets/css/pages/app-android.css
 *  Autor: Pau Company · 2026 · v5.0
 * ============================================================
 */

/* ════════════════════════════════════════════════════════════
   SECCIÓN 2 — WHY APP (fondo oscuro + teléfono SVG)
   Clase: .pac-why
════════════════════════════════════════════════════════════ */
.pac-why {
    --gold:        #c9a84c;
    --gold-light:  #e8c96e;
    --gold-dim:    rgba(201, 168, 76, 0.11);
    --gold-b:      rgba(201, 168, 76, 0.22);
    --dark-bg:     #060b18;
    --dark-card:   rgba(255, 255, 255, 0.04);
    --border:      rgba(255, 255, 255, 0.08);
    --text:        #f0f4ff;
    --muted:       #64748b;

    position: relative;
    padding-block: clamp(3.5rem, 7vw, 6rem);
    background:
        radial-gradient(ellipse 55% 55% at 36% 50%, rgba(201,168,76,0.05) 0%, transparent 68%),
        radial-gradient(circle, rgba(201,168,76,0.08) 1px, transparent 1px) 0 0 / 30px 30px,
        #060b18;
    overflow: hidden;
    isolation: isolate;
}

.pac-why__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.pac-why__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}

.pac-why__phone {
    width: clamp(160px, 19vw, 210px);
    height: auto;
    transform: rotate(-4deg) translateY(-8px);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    filter:
        drop-shadow(0 32px 64px rgba(0, 0, 0, 0.58))
        drop-shadow(0 0 50px rgba(201, 168, 76, 0.07));
    animation: pacPhoneFloat 7s ease-in-out infinite;
}

@keyframes pacPhoneFloat {
    0%, 100% { transform: rotate(-4deg) translateY(-8px); }
    50%       { transform: rotate(-4deg) translateY(8px); }
}

.pac-why__sparks {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.pac-why__content { color: var(--text); }

/* Eyebrow sobre fondo OSCURO — dorado claro OK */
.pac-why__eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid var(--gold-b);
    border-radius: 2rem;
    padding: .3rem 1rem;
    margin-bottom: 1.3rem;
}

.pac-why__titulo {
    font-size: clamp(1.75rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 1.3rem;
}

.pac-why__titulo::after {
    content: '';
    display: block;
    width: 3.5rem;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    border-radius: 2px;
    margin-top: .9rem;
}

.pac-why__lead {
    font-size: clamp(.95rem, 1.7vw, 1.08rem);
    color: rgba(240, 244, 255, 0.82);
    line-height: 1.8;
    margin-bottom: .9rem;
}

.pac-why__body {
    font-size: .93rem;
    color: rgba(240, 244, 255, 0.52);
    line-height: 1.8;
    margin-bottom: 1.9rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(201, 168, 76, 0.28);
}

.pac-why__pills {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.pac-why__pill {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .8rem;
    font-weight: 600;
    color: rgba(240, 244, 255, 0.78);
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: .48rem 1.05rem .48rem .8rem;
    width: fit-content;
    transition: border-color .22s, background .22s;
}

.pac-why__pill svg { color: var(--gold); flex-shrink: 0; }
.pac-why__pill:hover {
    border-color: var(--gold-b);
    background: rgba(201, 168, 76, 0.05);
}

/* ── Cards 3D de impacto ─────────────────────────────────── */
.pac-why__cards {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.pac-card-3d {
    position: relative;
    background: rgba(12, 20, 40, 0.85);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    cursor: default;
    transition: transform .5s cubic-bezier(.23,1,.32,1), box-shadow .5s cubic-bezier(.23,1,.32,1);
    overflow: hidden;
    outline: none;
}

.pac-card-3d::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0;
    transition: opacity .35s ease;
}

.pac-card-3d:hover::before,
.pac-card-3d:focus::before { opacity: 1; }

.pac-card-3d::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
    border-radius: inherit;
}

.pac-card-3d:hover::after,
.pac-card-3d:focus::after { opacity: 1; }

.pac-card-3d--featured {
    border-color: rgba(201, 168, 76, 0.28);
    background: rgba(14, 22, 46, 0.92);
}

.pac-card-3d--featured::before { opacity: 0.6; }

.pac-card-3d__badge {
    position: absolute;
    top: 1.1rem; right: 1.1rem;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #0a0f1e;
    background: var(--gold);
    border-radius: 2rem;
    padding: .25rem .7rem;
}

.pac-card-3d__top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-b);
    border-radius: .85rem;
    margin-bottom: 1.35rem;
    color: var(--gold);
    transition: background .3s, border-color .3s;
}

.pac-card-3d:hover .pac-card-3d__top,
.pac-card-3d:focus .pac-card-3d__top {
    background: rgba(201, 168, 76, 0.18);
    border-color: rgba(201, 168, 76, 0.4);
}

.pac-card-3d__stat {
    font-size: clamp(2.8rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -.04em;
    margin-bottom: .5rem;
}

.pac-card-3d__stat span {
    font-size: 50%;
    font-weight: 800;
    vertical-align: super;
    margin-left: .06em;
    color: var(--gold-light);
}

.pac-card-3d__titulo {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .65rem;
    line-height: 1.3;
}

.pac-card-3d__desc {
    font-size: .82rem;
    color: rgba(240, 244, 255, 0.52);
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

.pac-card-3d__bar {
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.pac-card-3d__bar div {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 2px;
    transition: width .8s cubic-bezier(.23,1,.32,1);
}

.pac-card-3d:hover .pac-card-3d__bar div,
.pac-card-3d:focus .pac-card-3d__bar div { width: 100%; }

.pac-why__cards .pac-card-3d:nth-child(1):not(:hover):not(:focus) .pac-card-3d__bar div { width: 70%; transition: none; }
.pac-why__cards .pac-card-3d:nth-child(2):not(:hover):not(:focus) .pac-card-3d__bar div { width: 90%; transition: none; }
.pac-why__cards .pac-card-3d:nth-child(3):not(:hover):not(:focus) .pac-card-3d__bar div { width: 60%; transition: none; }

@media (prefers-reduced-motion: reduce) {
    .pac-why__phone       { animation: none; transform: rotate(-4deg); }
    .pac-card-3d          { transition: none; }
    .pac-card-3d__bar div { transition: none; }
}

@media (max-width: 980px) {
    .pac-why__inner    { grid-template-columns: 1fr; gap: 2rem; }
    .pac-why__visual   { min-height: 400px; order: -1; }
    .pac-why__phone    { width: clamp(150px, 25vw, 190px); }
}

@media (max-width: 720px) {
    .pac-why__cards    { grid-template-columns: 1fr; gap: 1rem; }
    .pac-card-3d__bar div { width: 70% !important; }
}

@media (max-width: 480px) {
    .pac-why__visual   { min-height: 340px; }
    .pac-why__phone    { width: 145px; }
}


/* ════════════════════════════════════════════════════════════
   SECCIÓN 3 — CARDS DE IMPACTO (fondo claro)
   Clase: .pcw
════════════════════════════════════════════════════════════ */
.pcw {
    --gold:        #c9a84c;
    --gold-light:  #e8c96e;
    --gold-dim:    rgba(201, 168, 76, 0.10);
    --gold-b:      rgba(201, 168, 76, 0.25);
    --purple:      #6c5dd3;
    --purple-dim:  rgba(108, 93, 211, 0.10);
    --purple-b:    rgba(108, 93, 211, 0.22);
    --dark:        #0f172a;
    --body:        #374151;
    --muted:       #94a3b8;
    --surface:     #ffffff;
    --bg:          #f8fafc;
    --border:      rgba(0, 0, 0, 0.07);
    --radius:      1.25rem;
    --shadow-rest: 0 4px 24px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.05);

    padding-block: clamp(3.5rem, 7vw, 5.5rem);
    background: var(--bg);
}

.pcw__intro {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
    padding-inline: clamp(1.25rem, 4vw, 2rem);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

/* Eyebrow sobre fondo CLARO — color oscurecido WCAG AA ✓ */
.pcw__eyebrow {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #7a5c10;
    background: var(--gold-dim);
    border: 1px solid var(--gold-b);
    border-radius: 2rem;
    padding: .3rem 1rem;
    margin-bottom: 1.1rem;
}

.pcw__titulo {
    font-size: clamp(1.75rem, 3.6vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.18;
    margin-bottom: 1.1rem;
}

.pcw__lead {
    font-size: clamp(.95rem, 1.7vw, 1.05rem);
    color: var(--body);
    line-height: 1.82;
}

.pcw__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.6rem);
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.pcw-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(1.6rem, 3vw, 2.2rem);
    outline: none;
    cursor: default;
    box-shadow: var(--shadow-rest);
    transition:
        transform .55s cubic-bezier(.23,1,.32,1),
        box-shadow .55s cubic-bezier(.23,1,.32,1);
}

.pcw-card__line {
    position: absolute;
    top: 0; left: 1.75rem; right: 1.75rem;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 60%, transparent 100%);
    border-radius: 0 0 3px 3px;
}

.pcw-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: radial-gradient(ellipse 80% 45% at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.pcw-card:hover::after,
.pcw-card:focus::after { opacity: 1; }

.pcw-card--featured {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow:
        0 8px 40px rgba(201, 168, 76, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
}

.pcw-card--featured .pcw-card__line {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    height: 4px;
    left: 0; right: 0;
    border-radius: var(--radius) var(--radius) 0 0;
}

.pcw-card__badge {
    position: absolute;
    top: 1.1rem; right: 1.1rem;
    font-size: .59rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--gold);
    border-radius: 2rem;
    padding: .28rem .75rem;
}

.pcw-card__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 88px; height: 88px;
    background: #f4f3ff;
    border: 1.5px solid rgba(108, 93, 211, 0.15);
    border-radius: 1.1rem;
    margin-inline: auto;
    margin-bottom: 1.35rem;
    transition: background .3s, border-color .3s, transform .3s;
}

.pcw-card--featured .pcw-card__icon {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.22);
}

.pcw-card:hover .pcw-card__icon,
.pcw-card:focus .pcw-card__icon {
    background: #ede9ff;
    border-color: rgba(108, 93, 211, 0.28);
    transform: translateY(-3px);
}

.pcw-card--featured:hover .pcw-card__icon,
.pcw-card--featured:focus .pcw-card__icon {
    background: rgba(201, 168, 76, 0.14);
    border-color: rgba(201, 168, 76, 0.38);
}

.pcw-card__stat {
    font-size: clamp(2.6rem, 4.2vw, 3.5rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -.04em;
    text-align: center;
    margin-bottom: .45rem;
}

.pcw-card__stat span {
    font-size: 52%;
    font-weight: 800;
    vertical-align: super;
    margin-left: .06em;
    color: var(--gold-light);
}

.pcw-card__titulo {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    line-height: 1.35;
    margin-bottom: .8rem;
}

.pcw-card__desc {
    font-size: .83rem;
    color: var(--body);
    line-height: 1.78;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pcw-card__foot {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.pcw-card__bar {
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.pcw-card__bar div {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 2px;
    transition: width .7s cubic-bezier(.23,1,.32,1);
}

.pcw-card:hover .pcw-card__bar div,
.pcw-card:focus .pcw-card__bar div { width: 100% !important; }

.pcw-card__source {
    font-size: .67rem;
    color: var(--muted);
    font-weight: 500;
    text-align: right;
}

.pcw-card:focus-visible {
    box-shadow:
        0 0 0 3px rgba(108, 93, 211, 0.4),
        var(--shadow-rest);
}

@media (prefers-reduced-motion: reduce) {
    .pcw-card,
    .pcw-card__icon,
    .pcw-card__bar div { transition: none; }
}

@media (max-width: 900px) {
    .pcw__grid         { grid-template-columns: 1fr; max-width: 520px; }
    .pcw-card__bar div { transition: none; }
}

@media (max-width: 600px) {
    .pcw__grid { padding-inline: 1rem; }
    .pcw-card  { padding: 1.4rem 1.2rem; }
}


/* ════════════════════════════════════════════════════════════
   SECCIÓN PROCESO — Zigzag premium
   Clase: .pap
════════════════════════════════════════════════════════════ */
.pap {
    --gold:       #c9a84c;
    --gold-dim:   rgba(201, 168, 76, 0.10);
    --gold-b:     rgba(201, 168, 76, 0.22);
    --purple:     #6c5dd3;
    --purple-dim: rgba(108, 93, 211, 0.10);
    --purple-b:   rgba(108, 93, 211, 0.20);
    --dark:       #0f172a;
    --body:       #374151;
    --border:     rgba(0, 0, 0, 0.07);
    --line-color: rgba(0, 0, 0, 0.10);

    padding-block: clamp(3.5rem, 7vw, 5.5rem);
    background: #fdf8f3;
    overflow: hidden;
}

.pap__intro {
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
    padding-inline: clamp(1.25rem, 4vw, 2rem);
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

/* Eyebrow sobre fondo BEIGE — color oscurecido WCAG AA ✓ */
.pap__eyebrow {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #7a5c10;
    background: var(--gold-dim);
    border: 1px solid var(--gold-b);
    border-radius: 2rem;
    padding: .3rem 1rem;
    margin-bottom: 1rem;
}

.pap__titulo {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: .9rem;
}

.pap__sub {
    font-size: clamp(.9rem, 1.6vw, 1rem);
    color: var(--body);
    line-height: 1.75;
}

.pap__track {
    position: relative;
    max-width: 1000px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 2rem);
}

.pap__track::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--line-color);
    transform: translateX(-50%);
    z-index: 0;
}

.pap__row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    position: relative;
}

.pap__node {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.pap__num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--gold);
    color: var(--gold);
    font-size: .95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -.02em;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.18);
    transition: transform .25s ease, box-shadow .25s ease;
}

.pap__num--purple {
    border-color: var(--purple);
    color: var(--purple);
    box-shadow: 0 4px 16px rgba(108, 93, 211, 0.18);
}

.pap__row:hover .pap__num {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.28);
}

.pap__row:hover .pap__num--purple {
    box-shadow: 0 8px 28px rgba(108, 93, 211, 0.28);
}

.pap__spacer { min-height: 1px; }

.pap__card {
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    padding: clamp(1.6rem, 2.5vw, 2rem);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: transform .3s cubic-bezier(.23,1,.32,1), box-shadow .3s ease;
}

.pap__card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.10),
        0 2px 8px rgba(0, 0, 0, 0.06);
}

.pap__card--left  { margin-right: 12px; }
.pap__card--right { margin-left: 12px; }

.pap__card-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 1.25rem 1.25rem 0 0;
}

.pap__card-bar--gold   { background: linear-gradient(90deg, var(--gold), #e8c96e); }
.pap__card-bar--purple { background: linear-gradient(90deg, var(--purple), #9b8ef0); }

.pap__icon-wrap {
    width: 100px; height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.pap__icon-wrap--gold {
    background: rgba(201, 168, 76, 0.08);
    border: 1.5px solid var(--gold-b);
}
.pap__icon-wrap--purple {
    background: rgba(108, 93, 211, 0.08);
    border: 1.5px solid var(--purple-b);
}

/* Tags sobre fondo blanco — color oscurecido WCAG AA ✓ */
.pap__tag {
    display: block;
    text-align: center;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 2rem;
    padding: .25rem .85rem;
    margin: 0 auto .75rem;
    width: fit-content;
}

.pap__tag--gold {
    background: rgba(201, 168, 76, 0.12);
    color: #6b4e00;
    border: 1px solid var(--gold-b);
}

.pap__tag--purple {
    background: var(--purple-dim);
    color: #3b2fa0;
    border: 1px solid var(--purple-b);
}

.pap__card-titulo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: .65rem;
    text-align: center;
}

.pap__card-desc {
    font-size: .88rem;
    color: var(--body);
    line-height: 1.78;
    margin-bottom: 1.1rem;
    text-align: center;
}

.pap__pills {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    justify-content: center;
}

.pap__pills li {
    font-size: .72rem;
    font-weight: 600;
    color: var(--body);
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: .28rem .85rem;
}

.pap__pills--purple li {
    background: rgba(108, 93, 211, 0.05);
    border-color: var(--purple-b);
    color: #3b2fa0;
}

.pap__cta-wrap {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-inline: 1rem;
}

.pap__cta-note {
    font-size: .95rem;
    color: var(--body);
    margin-bottom: 1.25rem;
}

.pap__cta-note strong { color: var(--dark); }

.pap__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--gold);
    color: #000;
    font-size: .95rem;
    font-weight: 700;
    padding: .9rem 2rem;
    border-radius: .85rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
    transition: background .2s, transform .2s, box-shadow .2s;
}

.pap__cta-btn:hover {
    background: #d4b94e;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(201, 168, 76, 0.45);
    color: #000;
    text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
    .pap__card, .pap__num, .pap__cta-btn { transition: none; }
}

@media (max-width: 840px) {
    .pap__track::before { left: 28px; }

    .pap__row,
    .pap__row--right {
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto;
    }

    .pap__node        { grid-column: 1; grid-row: 1; }
    .pap__card--left,
    .pap__card--right { grid-column: 2; grid-row: 1; margin: 0 0 0 12px; }
    .pap__spacer      { display: none; }
}

@media (max-width: 480px) {
    .pap__card     { padding: 1.3rem; }
    .pap__icon-wrap { width: 80px; height: 80px; }
}


/* ════════════════════════════════════════════════════════════
   FIX CONTRASTE — badges inline del bloque de precios
   Los style="" inline no pueden cambiarse desde el plugin
   Se sobreescriben aquí con selectores de atributo
════════════════════════════════════════════════════════════ */

/* "EL MÁS POPULAR" — dorado sobre fondo dorado tenue */
.ppc-badge[style*="color:#c9a84c"] {
    color: #6b4e00 !important;
}

/* Precio 550 — dorado sobre blanco */
span[style*="color:#c9a84c"][style*="font-size:42px"] {
    color: #7a5c10 !important;
}

/* "ANÁLISIS PREVIO GRATUITO" — morado sobre fondo morado tenue */
.ppc-badge[style*="color:#6c5dd3"] {
    color: #3b2fa0 !important;
}

/* Portfolio eyebrow — también sobre fondo claro */
.pap-port__eyebrow {
    color: #7a5c10 !important;
}

/* ── Fix botones portfolio apps — texto móvil ── */
@media (max-width: 520px) {
    .pap-card__btn {
        font-size: .65rem;
        padding: .5rem .6rem;
        gap: 4px;
        letter-spacing: 0;
    }
    
    .pap-card__btn svg {
        display: none;
    }
}