/* ================= PERÚ MODERNO HUÁNUCO (Landing) ================= */

/* ====== Variables (logo + versiones UI) ====== */
:root {
    /* Colores puros del logo */
    --pm-pink: #e5017d;
    --pm-yellow: #f2e301;

    /* Ajuste “no saturado” para UI */
    --pm-pink-main: #c7006b;
    --pm-pink-dark: #980051;
    --pm-pink-100: #fde6f2;
    --pm-pink-50: #fff4fa;

    --pm-yellow-main: #e6d600;
    --pm-yellow-200: #fff5a8;
    --pm-yellow-50: #fffbe0;

    /* Neutros */
    --pm-text: #1f2937;
    --pm-muted: #6b7280;

    --pm-surface: #fffdf6;
    --pm-elev: #ffffff;
    --pm-border: rgba(199, 0, 107, 0.14);

    --shadow-sm: 0 2px 8px rgba(16, 24, 40, 0.08);
    --shadow-md: 0 14px 28px rgba(16, 24, 40, 0.10);
    --shadow-lg: 0 26px 54px rgba(16, 24, 40, 0.16);

    /* Gradientes */
    --grad-hero: linear-gradient(180deg, var(--pm-pink-main) 0%, var(--pm-pink-dark) 100%);

    /* Offset anclas (navbar fijo) */
    --pm-anchor-offset: 95px;
}

/* ====== Base ====== */
html,
body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden !important;
    background: var(--pm-surface);
    font-family: 'Poppins', sans-serif;
    color: var(--pm-text);
    margin: 0;
}

/* ====== Anclas (offset por navbar fijo) ====== */
[id] {
    scroll-margin-top: var(--pm-anchor-offset);
}

@media (max-width: 576px) {
    :root {
        --pm-anchor-offset: 110px;
    }
}

/* ================= NAVBAR PERÚ MODERNO ================= */
.navbar-pm {
    background: rgba(199, 0, 107, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.12);

    --bs-navbar-color: rgba(255, 255, 255, 0.92);
    --bs-navbar-hover-color: #fff7b0;
    --bs-navbar-active-color: #fff7b0;
    --bs-navbar-brand-color: #fff;
    --bs-navbar-brand-hover-color: #fff;
}

.navbar-pm.is-scrolled {
    background: rgba(152, 0, 81, 0.94);
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.16);
}

.navbar-pm .navbar-toggler-icon {
    filter: invert(1) opacity(0.9);
}

/* Logo grande */
.navbar-pm .navbar-brand {
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
}

.brand-logo {
    height: 56px;
    width: 56px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px;
    box-shadow: 0 10px 18px rgba(16, 24, 40, 0.16);
}

@media (min-width: 992px) {
    .brand-logo {
        height: 72px;
        width: 72px;
        padding: 7px;
        border-radius: 16px;
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        height: 60px;
        width: 60px;
    }
}

/* Texto marca */
.brand-text {
    line-height: 1.05;
}

.brand-title {
    font-weight: 900;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
}

.brand-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 2px;
}

/* Links */
.navbar-pm .nav-link {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease;
}

.navbar-pm .nav-link:hover,
.navbar-pm .nav-link:focus {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateY(-1px);
}

.navbar-pm .nav-link.active {
    background: rgba(242, 227, 1, 0.22);
    color: #fff;
}

/* Menú móvil */
@media (max-width: 991.98px) {
    #navPM {
        margin-top: 0.5rem;
        padding: 0.75rem;
        border-radius: 16px;
        background: rgba(16, 24, 40, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .navbar-pm .nav-link {
        padding: 0.75rem 0.9rem;
    }
}

/* ================= BOTONES (landing) ================= */
.btn {
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.20), transparent);
    transition: left 0.55s;
}

.btn:hover::before {
    left: 100%;
}

.btn-pm-primary {
    border: none;
    font-weight: 900;
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    color: #111827;
    background: linear-gradient(135deg, var(--pm-yellow-main), #fff7b0);
    box-shadow: 0 10px 18px rgba(16, 24, 40, 0.14);
}

.btn-pm-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

/* Ghost oscuro (para fondos oscuros) */
.btn-pm-ghost {
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    font-weight: 900;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-pm-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

/* Ghost claro (para fondos claros) */
.btn-pm-ghost-light {
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    font-weight: 900;
    color: var(--pm-pink-dark);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(199, 0, 107, 0.18);
    box-shadow: 0 10px 18px rgba(16, 24, 40, 0.06);
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-pm-ghost-light:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(199, 0, 107, 0.28);
    transform: translateY(-1px);
    color: var(--pm-pink-dark);
}

/* Si en algún lugar usas .btn-pm-ghost en fondo claro, esto evita el “invisible” */
.pm-section .btn-pm-ghost,
.pm-contact-card .btn-pm-ghost {
    color: var(--pm-pink-dark);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(199, 0, 107, 0.18);
    box-shadow: 0 10px 18px rgba(16, 24, 40, 0.06);
}

.pm-section .btn-pm-ghost:hover,
.pm-contact-card .btn-pm-ghost:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(199, 0, 107, 0.28);
    transform: translateY(-1px);
}

/* ================= HERO / INDEX ================= */
.pm-hero-banner {
    background:
        radial-gradient(1100px 600px at 18% 12%, rgba(242, 227, 1, 0.18), transparent 60%),
        radial-gradient(1000px 560px at 82% 22%, rgba(229, 1, 125, 0.22), transparent 55%),
        linear-gradient(180deg, rgba(199, 0, 107, 0.06), rgba(255, 253, 246, 1));
}

.pm-chip {
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(199, 0, 107, 0.16);
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    color: var(--pm-pink-dark);
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(16, 24, 40, 0.06);
}

.pm-title {
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(2rem, 3.2vw, 3rem);
    color: #111827;
}

.pm-highlight {
    background: linear-gradient(135deg, var(--pm-pink-main), var(--pm-yellow-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pm-lead {
    color: rgba(31, 41, 55, 0.86);
}

.pm-hero-bottom-card {
    border-radius: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(199, 0, 107, 0.12);
    box-shadow: var(--shadow-md);
}

/* Mostrar/ocultar bloques según tamaño */
.pm-hide-mobile {
    display: block;
}

.pm-show-mobile {
    display: none;
}

@media (max-width: 576px) {
    .pm-hide-mobile {
        display: none !important;
    }

    .pm-show-mobile {
        display: block !important;
    }
}

/* ================= BANNER (SIN OPACAR) ================= */
.pm-banner-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(199, 0, 107, 0.10);
    background: #000;
}

.pm-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    filter: none !important;
    /* SIN filtros */
}

/* Si en algún punto tu HTML incluye overlay, que no afecte */
.pm-banner-overlay {
    position: absolute;
    inset: 0;
    background: none !important;
    /* SIN opacar */
    pointer-events: none !important;
}

/* ================= SECCIONES / CARDS ================= */
.pm-section {
    background: rgba(242, 227, 1, 0.06);
}

.pm-sec-title {
    font-weight: 900;
    color: #111827;
}

.pm-card {
    border-radius: 16px;
    border: 1px solid rgba(199, 0, 107, 0.10);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 26px rgba(16, 24, 40, 0.08);
    padding: 18px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pm-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(16, 24, 40, 0.12);
}

.pm-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(199, 0, 107, 0.10);
    border: 1px solid rgba(199, 0, 107, 0.14);
    color: var(--pm-pink-dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.pm-note {
    border-radius: 14px;
    padding: 12px;
    background: rgba(253, 230, 242, 0.65);
    border: 1px solid rgba(199, 0, 107, 0.12);
    color: rgba(31, 41, 55, 0.82);
    font-weight: 600;
}

/* Lista genérica (propuestas) */
.pm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.pm-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(242, 227, 1, 0.06);
    border: 1px solid rgba(242, 227, 1, 0.18);
    color: rgba(31, 41, 55, 0.85);
    font-weight: 650;
}

.pm-list i {
    color: var(--pm-pink-dark);
    margin-top: 2px;
}

/* ================= CANDIDATOS XL ================= */
.pm-cand-xl {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(199, 0, 107, 0.10);
    box-shadow: 0 18px 38px rgba(16, 24, 40, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pm-cand-xl:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.pm-cand-xl-media {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.pm-cand-xl-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

/* overlay (si lo usas) no debe bloquear clicks */
.pm-cand-xl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.pm-tag {
    background: rgba(242, 227, 1, 0.20);
    border: 1px solid rgba(242, 227, 1, 0.35);
    color: #111827;
    font-weight: 900;
}

.pm-tag-xl {
    position: absolute;
    left: 14px;
    bottom: 14px;
    font-weight: 900;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 26px rgba(16, 24, 40, 0.18);
    pointer-events: none;
}

.pm-cand-xl-body {
    padding: 18px;
    position: relative;
    z-index: 2;
}

.pm-cand-xl-name {
    font-weight: 900;
    letter-spacing: -0.01em;
}

.pm-cand-xl-points {
    display: grid;
    gap: 10px;
}

.pm-point {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 16px;
    background: rgba(242, 227, 1, 0.06);
    border: 1px solid rgba(242, 227, 1, 0.18);
}

.pm-point i {
    color: var(--pm-pink-dark);
    margin-top: 2px;
}

@media (max-width: 575.98px) {
    .pm-cand-xl-media {
        height: 260px;
    }
}

/* ================= CONTACTO ================= */
.pm-contact-card {
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(199, 0, 107, 0.10);
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.10);
}

.pm-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
    background: rgba(242, 227, 1, 0.06);
    border: 1px solid rgba(242, 227, 1, 0.18);
}

.pm-contact-item i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(199, 0, 107, 0.10);
    color: var(--pm-pink-dark);
}

/* ================= PDF (Ideario) ================= */
.pm-pdf-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(199, 0, 107, 0.10);
    box-shadow: var(--shadow-md);
    padding: 16px;
}

.pm-pdf-top {
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(242, 227, 1, 0.06);
    border: 1px solid rgba(242, 227, 1, 0.18);
}

.pm-pdf-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(199, 0, 107, 0.10);
    height: min(72vh, 760px);
    background: #fff;
}

.pm-pdf-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ================= MODALES (Bootstrap) ================= */
.modal,
.modal-dialog,
.modal-content,
.modal * {
    pointer-events: auto !important;
}

.modal-content {
    border: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
}

.modal-header {
    background: linear-gradient(135deg, var(--pm-pink-100), var(--pm-yellow-50));
    border: none;
    border-radius: 16px 16px 0 0;
}

.modal-title {
    width: 100%;
    text-align: center;
    color: var(--pm-pink-main);
    font-weight: 900;
}

.modal-footer {
    border: none;
    background: #fafafa;
    border-radius: 0 0 16px 16px;
}

.modal-body .form-label {
    color: var(--pm-pink-dark);
    font-weight: 800;
}

.modal-body .form-control {
    border: 2px solid rgba(148, 163, 184, 0.32);
    border-radius: 10px;
    padding: 12px 14px;
    transition: box-shadow 0.2s, border-color 0.2s;
    background: #fff;
}

.modal-body .form-control:focus {
    border-color: var(--pm-pink-main);
    box-shadow: 0 0 0 3px rgba(199, 0, 107, 0.14);
}

/* Foto modal */
.pm-modal-photo {
    width: 100%;
    max-width: 230px;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(199, 0, 107, 0.12);
    box-shadow: 0 14px 26px rgba(16, 24, 40, 0.12);
}

/* ================= FOOTER PERÚ MODERNO ================= */
.pm-footer {
    position: relative;
    background:
        radial-gradient(900px 420px at 15% 0%, rgba(242, 227, 1, 0.16), transparent 60%),
        radial-gradient(850px 380px at 85% 20%, rgba(229, 1, 125, 0.18), transparent 55%),
        linear-gradient(180deg, rgba(152, 0, 81, 0.96), rgba(110, 0, 60, 0.98));
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.pm-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 40%),
        radial-gradient(600px 300px at 30% 100%, rgba(255, 255, 255, 0.06), transparent 60%);
    pointer-events: none;
}

.pm-footer * {
    position: relative;
    z-index: 1;
}

.pm-footer-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    box-shadow: 0 14px 26px rgba(16, 24, 40, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.pm-footer-title {
    font-weight: 1000;
    letter-spacing: 0.08em;
    font-size: 1rem;
}

.pm-footer-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 2px;
}

.pm-footer-text {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
}

.pm-footer-h {
    font-weight: 900;
    margin-bottom: 12px;
    color: #fff;
}

.pm-footer-badge {
    background: rgba(242, 227, 1, 0.16);
    border: 1px solid rgba(242, 227, 1, 0.28);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 800;
    border-radius: 999px;
    padding: 0.5rem 0.75rem;
}

.pm-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.pm-footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.15s ease, background 0.15s ease;
}

.pm-footer-links a:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
    color: #fff;
}

.pm-footer-note {
    border-radius: 14px;
    padding: 12px;
    background: rgba(16, 24, 40, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 650;
}

.pm-footer-contact {
    display: grid;
    gap: 10px;
}

.pm-footer-contact-item {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.90);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.15s ease, background 0.15s ease;
}

.pm-footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
    color: #fff;
}

.pm-footer-contact-item.no-link:hover {
    transform: none;
}

.pm-footer-contact-item i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--pm-pink-dark);
    box-shadow: 0 10px 18px rgba(16, 24, 40, 0.18);
    flex: 0 0 auto;
}

.pm-footer-contact-item small {
    color: rgba(255, 255, 255, 0.78);
}

.pm-footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pm-social {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 18px rgba(16, 24, 40, 0.10);
    transition: transform 0.15s ease, background 0.15s ease;
}

.pm-social:hover {
    transform: translateY(-2px);
    background: rgba(242, 227, 1, 0.20);
    color: #fff;
}

.pm-footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.pm-footer-copy {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 650;
}

.pm-footer-mini {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 800;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.15s ease, background 0.15s ease;
}

.pm-footer-mini:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
    color: #fff;
}

@media (max-width: 575.98px) {
    .pm-footer-logo {
        width: 58px;
        height: 58px;
    }

    .pm-footer-title {
        font-size: 0.95rem;
    }
}

/* ================= PROPUESTAS (ruta /propuesta) ================= */

/* Hero propuestas */
.pm-prop-hero {
    background:
        radial-gradient(1100px 600px at 18% 12%, rgba(242, 227, 1, 0.16), transparent 60%),
        radial-gradient(900px 520px at 82% 22%, rgba(229, 1, 125, 0.18), transparent 55%),
        linear-gradient(180deg, rgba(199, 0, 107, 0.06), rgba(255, 253, 246, 1));
}

.pm-prop-hero-card {
    border-radius: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(199, 0, 107, 0.12);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.10);
}

.pm-prop-big {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(253, 230, 242, 0.70), rgba(255, 251, 224, 0.82));
    border: 1px solid rgba(199, 0, 107, 0.10);
}

.pm-prop-big-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(199, 0, 107, 0.12);
    color: var(--pm-pink-dark);
    box-shadow: 0 10px 18px rgba(16, 24, 40, 0.10);
    flex: 0 0 auto;
}

.pm-prop-side {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(199, 0, 107, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.10);
}

.pm-prop-side-head {
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--pm-pink-main), var(--pm-pink-dark));
}

.pm-prop-side-body {
    padding: 16px;
}

.pm-prop-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.pm-prop-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(31, 41, 55, 0.85);
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(242, 227, 1, 0.06);
    border: 1px solid rgba(242, 227, 1, 0.18);
}

.pm-prop-list i {
    color: var(--pm-pink-dark);
    margin-top: 2px;
}

/* Galería */
.pm-gallery-card {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(199, 0, 107, 0.10);
    box-shadow: 0 14px 28px rgba(16, 24, 40, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pm-gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(16, 24, 40, 0.12);
}

.pm-gallery-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.pm-gallery-cap {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pm-gallery-cap strong {
    font-weight: 900;
}

.pm-gallery-cap small {
    color: rgba(31, 41, 55, 0.70);
}

/* Plan */
.pm-plan-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(199, 0, 107, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.10);
}

.pm-plan-head {
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--pm-pink-main), var(--pm-pink-dark));
}

.pm-plan-body {
    padding: 16px;
}

.pm-plan-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.pm-plan-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(242, 227, 1, 0.06);
    border: 1px solid rgba(242, 227, 1, 0.18);
    color: rgba(31, 41, 55, 0.85);
    font-weight: 650;
}

.pm-plan-list i {
    color: var(--pm-pink-dark);
    margin-top: 2px;
}

/* Accordion bonito */
.pm-acc .pm-acc-item {
    border: 1px solid rgba(199, 0, 107, 0.10);
    border-radius: 18px !important;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 26px rgba(16, 24, 40, 0.06);
    margin-bottom: 12px;
}

.pm-acc .accordion-button {
    font-weight: 900;
    color: #111827;
    background: linear-gradient(135deg, rgba(253, 230, 242, 0.75), rgba(255, 251, 224, 0.85));
}

.pm-acc .accordion-button:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(199, 0, 107, 0.12);
}

.pm-acc .accordion-button:not(.collapsed) {
    color: #111827;
}

/* Bloque final */
.pm-prop-final {
    border-radius: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(199, 0, 107, 0.12);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.10);
    max-width: 860px;
    margin: 0 auto;
}

/* Dato XL */
.pm-prop-figure {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(199, 0, 107, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.10);
}

.pm-prop-figure-head {
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--pm-pink-main), var(--pm-pink-dark));
}

.pm-prop-figure-body {
    padding: 16px;
}

.pm-stat-xl {
    border-radius: 18px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(253, 230, 242, 0.70), rgba(255, 251, 224, 0.85));
    border: 1px solid rgba(199, 0, 107, 0.10);
}

.pm-stat-xl-num {
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    color: var(--pm-pink-dark);
}

.pm-stat-xl-txt {
    margin-top: 6px;
    color: rgba(31, 41, 55, 0.78);
    font-weight: 650;
}

/* Bloque imagen referencial */
.pm-ref {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    border: 1px dashed rgba(199, 0, 107, 0.25);
    background: rgba(255, 255, 255, 0.70);
}

.pm-ref-img {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(242, 227, 1, 0.10);
    border: 1px solid rgba(242, 227, 1, 0.25);
    color: var(--pm-pink-dark);
    font-weight: 900;
    gap: 4px;
    text-align: center;
}

.pm-ref-img i {
    font-size: 1.4rem;
}

.pm-ref-img span {
    font-size: 0.75rem;
    line-height: 1.1;
    padding: 0 6px;
}

.pm-ref-cap strong {
    font-weight: 900;
}

.pm-ref-cap small {
    color: rgba(31, 41, 55, 0.70);
}

/* Quote card */
.pm-quote-card {
    border-radius: 18px;
    padding: 16px;
    border: 1px solid rgba(199, 0, 107, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.10);
}

.pm-quote-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(199, 0, 107, 0.10);
    border: 1px solid rgba(199, 0, 107, 0.14);
    color: var(--pm-pink-dark);
    margin-bottom: 10px;
}

/* Pill cards (pilares) */
.pm-pill-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 16px;
    background: rgba(242, 227, 1, 0.06);
    border: 1px solid rgba(242, 227, 1, 0.18);
    color: rgba(31, 41, 55, 0.85);
    font-weight: 650;
}

.pm-pill-card i {
    color: var(--pm-pink-dark);
    margin-top: 2px;
    font-size: 1.1rem;
}

/* Métricas */
.pm-metric {
    border-radius: 18px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(199, 0, 107, 0.12);
    box-shadow: 0 10px 18px rgba(16, 24, 40, 0.06);
}

.pm-metric-num {
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--pm-pink-dark);
    line-height: 1;
}

.pm-metric-txt {
    margin-top: 6px;
    color: rgba(31, 41, 55, 0.78);
    font-weight: 650;
}

/* Galería placeholder */
.pm-gallery-ph {
    height: 190px;
    display: grid;
    place-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(253, 230, 242, 0.75), rgba(255, 251, 224, 0.85));
    border-bottom: 1px solid rgba(199, 0, 107, 0.10);
    color: var(--pm-pink-dark);
    font-weight: 900;
}

.pm-gallery-ph i {
    font-size: 1.6rem;
}

/* Ajuste móvil */
@media (max-width: 575.98px) {
    .pm-ref {
        flex-direction: column;
        align-items: flex-start;
    }

    .pm-ref-img {
        width: 100%;
        height: 86px;
        border-radius: 16px;
    }
}

/* Tabs de propuestas */
.pm-pills .nav-link {
    border-radius: 999px;
    font-weight: 800;
    padding: 0.55rem 0.9rem;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(199, 0, 107, 0.14);
    color: var(--pm-pink-dark);
    box-shadow: 0 10px 18px rgba(16, 24, 40, 0.05);
}

.pm-pills .nav-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.82);
}

.pm-pills .nav-link.active {
    background: linear-gradient(135deg, var(--pm-pink-main), var(--pm-pink-dark));
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}