/* ═══════════════════════════════════════════════════════════
   BistroPro — Módulos CSS (micrositios + secciones nuevas home)
   Paleta: --bp-indigo / --bp-violet / --bp-night / --bp-lavender
════════════════════════════════════════════════════════════ */

/* ── Breadcrumb ──────────────────────────────────────────── */
.bp-breadcrumb {
    background: var(--bp-gray-50);
    border-bottom: 1px solid var(--bp-gray-200);
    padding: .7rem 0;
}
.bp-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: .4rem;
    list-style: none;
    font-size: .82rem;
    color: var(--bp-gray-600);
}
.bp-breadcrumb-list a { color: var(--bp-indigo); }
.bp-breadcrumb-list a:hover { color: var(--bp-violet); }
.bp-breadcrumb-list li[aria-current] { color: var(--bp-gray-800); font-weight: 600; }

/* ── Module Hero ─────────────────────────────────────────── */
.bp-mod-hero {
    background: linear-gradient(135deg, var(--bp-night) 0%, #2d1b69 55%, #1A0F2E 100%);
    color: var(--bp-white);
    padding: 4.5rem 0 3.5rem;
    overflow: hidden;
}
.bp-mod-hero .bp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.bp-mod-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(167,139,250,.15);
    color: var(--bp-lila);
    border: 1px solid rgba(167,139,250,.3);
    padding: .35rem .9rem;
    border-radius: 99px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.bp-mod-hero h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--bp-white);
    margin-bottom: 1rem;
}
.bp-mod-hero h1 span { color: var(--bp-lila); }
.bp-mod-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.82);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}
.bp-mod-hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.bp-mod-stat {
    text-align: center;
}
.bp-mod-stat-num {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--bp-lila);
    line-height: 1;
}
.bp-mod-stat-label {
    display: block;
    font-size: .75rem;
    color: rgba(255,255,255,.65);
    margin-top: .25rem;
    max-width: 100px;
    line-height: 1.3;
}
.bp-mod-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.bp-mod-hero .btn-bp-ghost {
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.35);
}
.bp-mod-hero .btn-bp-ghost:hover {
    background: rgba(255,255,255,.1);
    color: var(--bp-white);
    border-color: rgba(255,255,255,.6);
}

/* ── Hero Visual (card mockups) ──────────────────────────── */
.bp-mod-visual { display: flex; justify-content: center; align-items: flex-start; }
.bp-mod-card-demo {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: 1.5rem;
    width: 100%;
    max-width: 340px;
}
.bp-mod-card-demo-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.bp-mod-card-demo-icon {
    width: 42px; height: 42px;
    background: var(--bp-indigo);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff;
}
.bp-mod-card-demo-title { font-size: .95rem; font-weight: 700; color: #fff; }
.bp-mod-card-demo-sub   { font-size: .75rem; color: rgba(255,255,255,.5); }

.bp-mod-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: .85rem;
}
.bp-mod-card-row:last-child { border-bottom: none; }
.bp-mod-card-row-label { color: rgba(255,255,255,.7); }
.bp-mod-card-row-val   { font-weight: 700; color: #fff; }
.bp-mod-card-row-val.green  { color: var(--bp-green); }
.bp-mod-card-row-val.lila   { color: var(--bp-lila); }
.bp-mod-card-row-val.yellow { color: var(--bp-yellow); }

.bp-mod-progress-bar {
    height: 6px;
    background: rgba(255,255,255,.12);
    border-radius: 99px;
    margin-top: .35rem;
    overflow: hidden;
}
.bp-mod-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bp-indigo), var(--bp-lila));
    border-radius: 99px;
    transition: width .6s ease;
}

/* ── Module Content sections ─────────────────────────────── */
.bp-mod-section { padding: 5rem 0; }
.bp-mod-section:nth-child(even) { background: var(--bp-gray-50); }

.bp-mod-section-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

/* ── Features Grid ───────────────────────────────────────── */
.bp-mod-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.bp-mod-feature-card {
    background: var(--bp-white);
    border: 1px solid var(--bp-gray-200);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: box-shadow var(--transition), transform var(--transition);
}
.bp-mod-feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.bp-mod-feature-icon {
    width: 48px; height: 48px;
    background: var(--bp-lavender);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--bp-indigo);
    margin-bottom: 1rem;
}
.bp-mod-feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--bp-night); margin-bottom: .5rem; }
.bp-mod-feature-card p  { font-size: .9rem; color: var(--bp-gray-600); line-height: 1.65; }
.bp-mod-feature-card ul { list-style: none; margin-top: .75rem; }
.bp-mod-feature-card ul li {
    font-size: .85rem;
    color: var(--bp-gray-600);
    padding: .3rem 0;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}
.bp-mod-feature-card ul li i { color: var(--bp-green); margin-top: .2rem; flex-shrink: 0; }

/* ── Two-col feature ─────────────────────────────────────── */
.bp-mod-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.bp-mod-2col.reverse { }
.bp-mod-2col-text h2  { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; color: var(--bp-night); margin-bottom: 1rem; line-height: 1.2; }
.bp-mod-2col-text p   { color: var(--bp-gray-600); line-height: 1.7; margin-bottom: 1.25rem; }
.bp-mod-checklist     { list-style: none; }
.bp-mod-checklist li  {
    display: flex; align-items: flex-start; gap: .6rem;
    padding: .45rem 0; font-size: .95rem; color: var(--bp-gray-700, var(--bp-gray-600));
    border-bottom: 1px solid var(--bp-gray-100);
}
.bp-mod-checklist li:last-child { border-bottom: none; }
.bp-mod-checklist li i { color: var(--bp-indigo); margin-top: .2rem; flex-shrink: 0; }

/* ── Steps ───────────────────────────────────────────────── */
.bp-mod-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
}
.bp-mod-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bp-white);
    border: 1px solid var(--bp-gray-200);
    border-radius: var(--radius);
    position: relative;
}
.bp-mod-step-num {
    width: 40px; height: 40px;
    background: var(--bp-indigo);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto .75rem;
}
.bp-mod-step-icon { font-size: 1.8rem; color: var(--bp-violet); margin-bottom: .75rem; }
.bp-mod-step h4   { font-size: 1rem; font-weight: 700; color: var(--bp-night); margin-bottom: .4rem; }
.bp-mod-step p    { font-size: .85rem; color: var(--bp-gray-600); line-height: 1.6; }

/* ── Benefits pills ──────────────────────────────────────── */
.bp-mod-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.bp-mod-benefit {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: 1.25rem;
    background: var(--bp-white);
    border-left: 3px solid var(--bp-indigo);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: var(--shadow);
}
.bp-mod-benefit i    { font-size: 1.2rem; color: var(--bp-indigo); margin-top: .1rem; flex-shrink: 0; }
.bp-mod-benefit h4   { font-size: .95rem; font-weight: 700; color: var(--bp-night); margin-bottom: .25rem; }
.bp-mod-benefit p    { font-size: .83rem; color: var(--bp-gray-600); }

/* ── CTA Module ──────────────────────────────────────────── */
.bp-mod-cta {
    background: linear-gradient(135deg, var(--bp-indigo), var(--bp-violet));
    color: var(--bp-white);
    padding: 4rem 0;
    text-align: center;
}
.bp-mod-cta h2    { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: .75rem; }
.bp-mod-cta p     { font-size: 1rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; }
.bp-mod-cta-btns  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.bp-mod-cta .btn-bp-ghost {
    color: rgba(255,255,255,.9);
    border-color: rgba(255,255,255,.4);
}
.bp-mod-cta .btn-bp-ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.7);
    color: #fff;
}
.btn-bp-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    color: var(--bp-indigo);
    font-weight: 700;
    padding: .7rem 1.6rem;
    border-radius: var(--radius-sm);
    font-size: .95rem;
    transition: box-shadow var(--transition), transform var(--transition);
}
.btn-bp-white:hover { box-shadow: 0 4px 20px rgba(0,0,0,.2); transform: translateY(-1px); color: var(--bp-indigo-d); }

/* ── Warning / Danger boxes ──────────────────────────────── */
.bp-mod-alert {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    line-height: 1.55;
}
.bp-mod-alert.danger { background: #fef2f2; border-left: 3px solid var(--bp-red); color: #7f1d1d; }
.bp-mod-alert.warning { background: #fffbeb; border-left: 3px solid var(--bp-yellow); color: #78350f; }
.bp-mod-alert.success { background: #ecfdf5; border-left: 3px solid var(--bp-green); color: #065f46; }
.bp-mod-alert i { margin-top: .15rem; flex-shrink: 0; }

/* ── vs-plataformas page specific ───────────────────────── */
.bp-vs-hero {
    background: linear-gradient(135deg, #1a0f2e 0%, #3b0764 55%, #1a0f2e 100%);
    color: #fff;
    padding: 5rem 0 4rem;
    text-align: center;
}
.bp-vs-hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; margin-bottom: 1rem; }
.bp-vs-hero h1 span { color: var(--bp-lila); }
.bp-vs-hero p  { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto 2rem; }

.bp-vs-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.bp-vs-pain-card {
    background: #fff;
    border: 1px solid var(--bp-gray-200);
    border-top: 4px solid var(--bp-red);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.bp-vs-pain-card .icon { font-size: 2rem; color: var(--bp-red); margin-bottom: .75rem; }
.bp-vs-pain-card h3 { font-size: 1rem; font-weight: 700; color: var(--bp-night); margin-bottom: .5rem; }
.bp-vs-pain-card p  { font-size: .87rem; color: var(--bp-gray-600); line-height: 1.6; }

.bp-vs-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}
.bp-vs-col { border-radius: var(--radius); overflow: hidden; }
.bp-vs-col-head {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.bp-vs-col-head.bad  { background: #fef2f2; color: #7f1d1d; border-bottom: 2px solid var(--bp-red); }
.bp-vs-col-head.good { background: #ecfdf5; color: #065f46; border-bottom: 2px solid var(--bp-green); }
.bp-vs-col-body { background: #fff; border: 1px solid var(--bp-gray-200); border-top: none; }
.bp-vs-col-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: .8rem 1.25rem;
    border-bottom: 1px solid var(--bp-gray-100);
    font-size: .88rem;
    line-height: 1.5;
}
.bp-vs-col-item:last-child { border-bottom: none; }
.bp-vs-col-item i.fa-times-circle { color: var(--bp-red); flex-shrink: 0; margin-top: .15rem; }
.bp-vs-col-item i.fa-check-circle { color: var(--bp-green); flex-shrink: 0; margin-top: .15rem; }
.bp-vs-col-item i.fa-exclamation-circle { color: var(--bp-yellow); flex-shrink: 0; margin-top: .15rem; }

/* ── Home: Saber más button on module cards ─────────────── */
.bp-module-card {
    display: flex;
    flex-direction: column;
}
.bp-module-card-body { flex: 1; }
.bp-module-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--bp-indigo);
    font-size: .85rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap var(--transition), color var(--transition);
}
.bp-module-link:hover { color: var(--bp-violet); gap: .55rem; }

/* ── Home: Sistema de Lealtad section ───────────────────── */
.bp-lealtad {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    padding: 5rem 0;
}
.bp-lealtad .bp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.bp-lealtad-text .bp-section-label { background: var(--bp-lavender); color: var(--bp-indigo); }
.bp-lealtad-text h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; color: var(--bp-night); margin-bottom: 1rem; line-height: 1.2; }
.bp-lealtad-text p  { color: var(--bp-gray-600); line-height: 1.7; margin-bottom: 1.25rem; }
.bp-lealtad-visual  { display: flex; justify-content: center; }

.bp-loyalty-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    width: 100%;
    max-width: 320px;
}
.bp-loyalty-card-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bp-gray-100);
}
.bp-loyalty-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--bp-indigo), var(--bp-violet));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1rem;
}
.bp-loyalty-card-name  { font-weight: 700; color: var(--bp-night); font-size: .95rem; }
.bp-loyalty-card-since { font-size: .75rem; color: var(--bp-gray-400); }

.bp-loyalty-points-big { text-align: center; margin-bottom: 1.25rem; }
.bp-loyalty-points-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--bp-indigo);
    line-height: 1;
}
.bp-loyalty-points-lbl { font-size: .78rem; color: var(--bp-gray-400); margin-top: .25rem; display: block; }

.bp-loyalty-progress { margin-bottom: 1.25rem; }
.bp-loyalty-progress-bar { height: 8px; background: var(--bp-gray-100); border-radius: 99px; overflow: hidden; margin: .4rem 0; }
.bp-loyalty-progress-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--bp-indigo), var(--bp-violet)); }
.bp-loyalty-progress-labels { display: flex; justify-content: space-between; font-size: .72rem; color: var(--bp-gray-400); }

.bp-loyalty-badges { display: flex; gap: .4rem; flex-wrap: wrap; }
.bp-loyalty-badge {
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 99px;
    background: var(--bp-lavender);
    color: var(--bp-indigo);
}
.bp-loyalty-badge.gold { background: #fef3c7; color: #92400e; }

/* ── Home: vs Rappi section (expandido) ─────────────────── */
.bp-vs-rappi {
    background: var(--bp-gray-50);
    padding: 5rem 0;
}
.bp-vs-rappi-intro { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.bp-vs-problems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.bp-vs-problem-card {
    background: #fff;
    border: 1px solid #fecaca;
    border-top: 3px solid var(--bp-red);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: box-shadow var(--transition);
}
.bp-vs-problem-card:hover { box-shadow: var(--shadow); }
.bp-vs-problem-icon { font-size: 1.75rem; color: var(--bp-red); margin-bottom: .75rem; }
.bp-vs-problem-card h4 { font-size: .95rem; font-weight: 700; color: var(--bp-night); margin-bottom: .4rem; }
.bp-vs-problem-card p  { font-size: .85rem; color: var(--bp-gray-600); line-height: 1.6; }

.bp-vs-cta-row {
    text-align: center;
    margin-top: 2.5rem;
}
.bp-vs-cta-row p { font-size: 1rem; color: var(--bp-gray-600); margin-bottom: 1rem; }

/* ── Home: ROI Calculator ────────────────────────────────── */
.bp-roi {
    background: linear-gradient(135deg, var(--bp-night) 0%, #2d1b69 100%);
    padding: 5rem 0;
    color: #fff;
}
.bp-roi-intro { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.bp-roi-intro .bp-section-label { background: rgba(167,139,250,.2); color: var(--bp-lila); }
.bp-roi-intro h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: #fff; margin-bottom: .75rem; }
.bp-roi-intro p  { color: rgba(255,255,255,.75); }

.bp-roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.bp-roi-inputs {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 2rem;
}
.bp-roi-inputs h3  { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }

.bp-roi-field { margin-bottom: 1.5rem; }
.bp-roi-field label {
    display: block;
    font-size: .85rem;
    color: rgba(255,255,255,.75);
    margin-bottom: .5rem;
    font-weight: 500;
}
.bp-roi-field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .4rem;
}
.bp-roi-slider-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bp-lila);
}
.bp-roi-field input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    background: rgba(255,255,255,.15);
    border-radius: 99px;
    outline: none;
    cursor: pointer;
}
.bp-roi-field input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px; height: 18px;
    background: var(--bp-lila);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 3px rgba(167,139,250,.25);
}
.bp-roi-field input[type=range]::-moz-range-thumb {
    width: 18px; height: 18px;
    background: var(--bp-lila);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 0 3px rgba(167,139,250,.25);
}
.bp-roi-slider-hints { display: flex; justify-content: space-between; font-size: .7rem; color: rgba(255,255,255,.35); }

.bp-roi-plan-select {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}
.bp-roi-plan-btn {
    flex: 1;
    padding: .5rem .75rem;
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: rgba(255,255,255,.65);
    border-radius: var(--radius-sm);
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-main);
}
.bp-roi-plan-btn.active,
.bp-roi-plan-btn:hover {
    background: var(--bp-indigo);
    border-color: var(--bp-indigo);
    color: #fff;
}

.bp-roi-results { }
.bp-roi-results h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }

.bp-roi-result-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}
.bp-roi-result-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
}
.bp-roi-result-card.highlight {
    background: rgba(79,70,229,.3);
    border-color: rgba(79,70,229,.5);
}
.bp-roi-result-card.big {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(16,185,129,.08));
    border-color: rgba(16,185,129,.3);
}
.bp-roi-result-label { font-size: .75rem; color: rgba(255,255,255,.55); margin-bottom: .35rem; }
.bp-roi-result-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.bp-roi-result-val.green   { color: var(--bp-green); }
.bp-roi-result-val.lila    { color: var(--bp-lila); }
.bp-roi-result-val.red     { color: #fca5a5; }
.bp-roi-result-card.big .bp-roi-result-val { font-size: 2.5rem; color: var(--bp-green); }
.bp-roi-result-sub { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: .25rem; }

.bp-roi-disclaimer {
    margin-top: 1.5rem;
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    line-height: 1.5;
}

/* ── Home: Seguridad ─────────────────────────────────────── */
.bp-security {
    background: var(--bp-white);
    padding: 5rem 0;
}
.bp-security .bp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.bp-security-list { list-style: none; margin: 1.25rem 0; }
.bp-security-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .75rem 0;
    border-bottom: 1px solid var(--bp-gray-100);
    font-size: .95rem;
    color: var(--bp-gray-600);
}
.bp-security-list li:last-child { border-bottom: none; }
.bp-security-list li i { color: var(--bp-indigo); margin-top: .1rem; flex-shrink: 0; font-size: 1rem; }
.bp-security-list li strong { color: var(--bp-night); }
.bp-security-visual { display: flex; justify-content: center; }
.bp-security-shield {
    width: 280px;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border: 3px solid var(--bp-lavender);
}
.bp-security-shield i  { font-size: 3.5rem; color: var(--bp-indigo); }
.bp-security-shield p  { font-size: .85rem; font-weight: 700; color: var(--bp-indigo); text-align: center; padding: 0 2rem; }

/* ── Home: Hosting incluido ──────────────────────────────── */
.bp-hosting {
    background: var(--bp-gray-50);
    padding: 4rem 0;
}
.bp-hosting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.bp-hosting-item {
    background: #fff;
    border: 1px solid var(--bp-gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow var(--transition);
}
.bp-hosting-item:hover { box-shadow: var(--shadow); }
.bp-hosting-item i {
    font-size: 2rem;
    color: var(--bp-indigo);
    margin-bottom: .75rem;
}
.bp-hosting-item h4 { font-size: .95rem; font-weight: 700; color: var(--bp-night); margin-bottom: .4rem; }
.bp-hosting-item p  { font-size: .83rem; color: var(--bp-gray-600); line-height: 1.6; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .bp-mod-hero .bp-container,
    .bp-lealtad .bp-container,
    .bp-security .bp-container,
    .bp-roi-grid,
    .bp-mod-2col,
    .bp-vs-compare-grid { grid-template-columns: 1fr; gap: 2rem; }

    .bp-mod-hero-visual,
    .bp-lealtad-visual,
    .bp-security-visual { display: none; }

    .bp-roi-result-cards { grid-template-columns: 1fr; }
    .bp-roi-result-card.big { grid-column: auto; }

    .bp-mod-hero h1 { font-size: 1.75rem; }
    .bp-mod-hero-stats { justify-content: center; }
}

@media (max-width: 480px) {
    .bp-mod-hero { padding: 3rem 0 2.5rem; }
    .bp-roi-inputs { padding: 1.25rem; }
    .bp-vs-compare-grid { grid-template-columns: 1fr; }
}
