/* ============================================================
   ERP Alimentos ? Landing p?blica (elp-*)
   ============================================================ */

:root {
    --elp-orange: #ff7a2f;
    --elp-orange-dark: #e8641a;
    --elp-dark: #0e131b;
    --elp-dark-2: #131a24;
    --elp-ink: #171b22;
    --elp-muted: #5f6673;
    --elp-line: #e8eaee;
    --elp-bg: #ffffff;
    --elp-bg-soft: #f6f7f9;
    --elp-radius: 18px;
    --elp-font-head: 'Montserrat', system-ui, sans-serif;
    --elp-font-body: 'Montserrat', system-ui, sans-serif;
    --elp-font-text: 'Open Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Fuente base para todo texto sin fuente declarada (evita Times New Roman)
   y para futuras p?ginas/contenido. Montserrat se mantiene donde ya est? declarada. */
body {
    margin: 0;
    font-family: var(--elp-font-text);
    color: var(--elp-ink);
    background: var(--elp-bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
}

/* Los controles de formulario no heredan fuente por defecto */
button, input, select, textarea {
    font-family: inherit;
}

body.marketing-body {
    font-family: var(--elp-font-body);
}

img { max-width: 100%; display: block; }

.elp-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ---------- Botones ---------- */
.elp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 22px;
    font-family: var(--elp-font-body);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
}

.elp-btn:active { transform: scale(.97); }

.elp-btn-primary {
    background: var(--elp-orange);
    color: #fff;
}

.elp-btn-primary:hover { background: var(--elp-orange-dark); }

.elp-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .75);
}

.elp-btn-outline:hover { background: rgba(255, 255, 255, .12); }

.elp-btn-ghost {
    background: transparent;
    color: #fff;
}

.elp-btn-ghost:hover { background: rgba(255, 255, 255, .12); }

.elp-btn-lg { padding: 14px 30px; font-size: 16px; }
.elp-btn-xl { padding: 16px 40px; font-size: 17px; }

/* ---------- Nav ---------- */
.elp-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 90;
    padding: 14px 0;
    transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.elp-nav.is-scrolled {
    background: rgba(14, 19, 27, .96);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
    padding: 8px 0;
}

/* Desktop: men? flotante tipo p?ldora (radius 60px, margen superior 30px) */
@media (min-width: 1025px) {
    .elp-nav,
    .elp-nav.is-scrolled,
    .elp-nav--inner,
    .elp-nav--inner.is-scrolled {
        background: transparent !important;
        box-shadow: none !important;
        padding: 30px 22px 0 !important;
    }

    .elp-nav .elp-nav-inner,
    .elp-nav.is-scrolled .elp-nav-inner,
    .elp-nav--inner .elp-nav-inner,
    .elp-nav--inner.is-scrolled .elp-nav-inner {
        background: var(--elp-orange);
        border-radius: 60px;
        box-shadow: 0 14px 36px rgba(232, 100, 26, .35);
        border: 0;
        padding: 10px 22px;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        overflow: visible !important;
        min-height: 64px;
    }

    .elp-nav .elp-nav-brand,
    .elp-nav--inner .elp-nav-brand {
        height: 44px;
        width: 150px;
        flex: 0 0 150px;
    }

    .elp-nav .elp-nav-logo,
    .elp-nav--inner .elp-nav-logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .elp-nav .elp-nav-links a,
    .elp-nav.is-scrolled .elp-nav-links a,
    .elp-nav--inner .elp-nav-links a,
    .elp-nav--inner.is-scrolled .elp-nav-links a {
        color: #fff;
        font-weight: 500;
    }

    /* Arriba / est?tico: enlace activo en negro */
    .elp-nav:not(.is-scrolled) .elp-nav-links a.is-active,
    .elp-nav--inner:not(.is-scrolled) .elp-nav-links a.is-active {
        color: #0e131b;
        font-weight: 700;
    }

    .elp-nav .elp-nav-links a:hover,
    .elp-nav--inner .elp-nav-links a:hover {
        color: rgba(255, 255, 255, .88);
    }

    .elp-nav:not(.is-scrolled) .elp-nav-links a.is-active:hover,
    .elp-nav--inner:not(.is-scrolled) .elp-nav-links a.is-active:hover {
        color: #0e131b;
    }

    .elp-nav .elp-btn-ghost,
    .elp-nav--inner .elp-btn-ghost,
    .elp-nav.is-scrolled .elp-btn-ghost,
    .elp-nav--inner.is-scrolled .elp-btn-ghost {
        color: #fff;
        border: 2px solid rgba(255, 255, 255, .85);
        background: transparent;
    }

    .elp-nav .elp-btn-ghost:hover,
    .elp-nav--inner .elp-btn-ghost:hover {
        background: rgba(255, 255, 255, .14);
    }

    .elp-nav .elp-btn-primary,
    .elp-nav--inner .elp-btn-primary {
        background: #fff;
        color: var(--elp-orange);
        border-color: #fff;
    }

    .elp-nav .elp-btn-primary:hover,
    .elp-nav--inner .elp-btn-primary:hover {
        background: #fff7f2;
        color: var(--elp-orange-dark);
    }
}

/* ---------- Nav paginas internas (movil / tablet) ---------- */
.elp-nav--inner:not(.is-scrolled) .elp-nav-links a {
    color: #fff;
}

.elp-nav--inner:not(.is-scrolled) .elp-nav-links a.is-active {
    color: #0e131b;
    font-weight: 700;
}

.elp-nav--inner:not(.is-scrolled) .elp-nav-links a:hover {
    color: rgba(255, 255, 255, .9);
}

.elp-nav--inner:not(.is-scrolled) .elp-btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .85);
}

.elp-nav--inner:not(.is-scrolled) .elp-btn-ghost:hover {
    background: rgba(255, 255, 255, .14);
}

.elp-nav--inner:not(.is-scrolled) .elp-nav-toggle {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.elp-nav:not(.is-scrolled) .elp-nav-links a.is-active {
    color: #0e131b;
    font-weight: 700;
}

.elp-nav--inner.is-scrolled {
    background: transparent;
    box-shadow: none;
    padding: 10px 12px;
}

.elp-nav--inner.is-scrolled .elp-nav-inner {
    background: rgba(255, 255, 255, .55);
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
    backdrop-filter: blur(16px) saturate(1.6);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 60px;
    box-shadow: 0 10px 34px rgba(14, 19, 27, .16);
    padding-top: 8px;
    padding-bottom: 8px;
}

.elp-nav--inner.is-scrolled .elp-nav-links a {
    color: #0e131b;
}

.elp-nav--inner.is-scrolled .elp-nav-links a.is-active {
    color: #0e131b;
    font-weight: 700;
}

.elp-nav--inner.is-scrolled .elp-nav-links a:hover {
    color: var(--elp-orange);
}

.elp-nav--inner.is-scrolled .elp-btn-ghost {
    color: #0e131b;
}

.elp-nav--inner.is-scrolled .elp-btn-ghost:hover {
    background: rgba(14, 19, 27, .08);
}

.elp-nav--inner.is-scrolled .elp-nav-toggle {
    background: rgba(14, 19, 27, .08);
    color: #0e131b;
}

.elp-nav-inner {
    display: flex;
    align-items: center;
    gap: 28px;
}

.elp-nav-brand {
    display: inline-flex;
    align-items: center;
    height: 44px;
    width: 140px;
    flex: 0 0 auto;
}

.elp-nav-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.elp-nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.elp-nav-links a {
    color: rgba(255, 255, 255, .88);
    font-family: 'Montserrat', var(--elp-font-body);
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
}

.elp-nav-links a:hover { color: #fff; }

.elp-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.elp-nav-toggle {
    display: none;
    margin-left: auto;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 0;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    font-size: 18px;
    cursor: pointer;
}

/* Drawer m?vil */
.elp-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 86vw);
    background: var(--elp-dark);
    color: #fff;
    padding: 20px;
    transform: translateX(100%);
    transition: transform .28s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
    box-shadow: -12px 0 40px rgba(0, 0, 0, .4);
}

.elp-nav-drawer.is-open { transform: translateX(0); }

.elp-nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.elp-nav-drawer .elp-nav-logo--drawer {
    width: auto;
    height: 36px;
    max-width: 140px;
    object-fit: contain;
}

.elp-nav-drawer-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 14px;
}

.elp-nav-drawer-btn {
    flex: 1 1 calc(50% - 4px);
    min-width: 120px;
    text-align: center;
    justify-content: center;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
}

.elp-nav-drawer-btn.elp-btn-ghost {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .28);
}

.elp-nav-drawer-close {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 0;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
}

.elp-nav-drawer-links {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.elp-nav-drawer-links a {
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    font-family: 'Montserrat', var(--elp-font-body);
    font-weight: 400;
    font-size: 16px;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.elp-nav-drawer-cta { margin-top: auto; }

/* ---------- Hero ---------- */
.elp-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.elp-hero-media,
.elp-hero-fallback {
    position: absolute;
    inset: 0;
}

.elp-hero-fallback {
    background-size: cover;
    background-position: center;
}

.elp-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.elp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(10, 13, 18, .82) 0%, rgba(10, 13, 18, .55) 55%, rgba(10, 13, 18, .25) 100%);
}

.elp-hero-inner {
    position: relative;
    z-index: 3;
    padding-top: 110px;
    padding-bottom: 60px;
}

.elp-hero-content { max-width: 640px; }

.elp-hero-title {
    font-family: var(--elp-font-head);
    font-size: clamp(34px, 5.2vw, 58px);
    font-weight: 800;
    line-height: 1.06;
    margin: 0 0 18px;
}

.elp-hero-desc {
    font-size: clamp(16px, 1.6vw, 19px);
    color: rgba(255, 255, 255, .88);
    margin: 0 0 26px;
    max-width: 540px;
}

.elp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.elp-hero-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
}

.elp-hero-benefits i { color: var(--elp-orange); margin-right: 7px; }

/* ---------- Marquee logos ---------- */
.elp-marquee {
    background: #fff;
    border-bottom: 1px solid var(--elp-line);
    padding: 22px 0;
}

.elp-marquee-viewport { overflow: hidden; }

.elp-marquee-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: elp-marquee-scroll 32s linear infinite;
}

.elp-marquee-track:hover { animation-play-state: paused; }

.elp-marquee-item {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.elp-marquee-item img {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .75;
    transition: filter .2s ease, opacity .2s ease;
}

.elp-marquee-item img:hover { filter: grayscale(0); opacity: 1; }

@keyframes elp-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Tipograf?a de secciones ---------- */
.elp-section-title {
    font-family: var(--elp-font-head);
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    line-height: 1.14;
    margin: 0 0 10px;
    color: var(--elp-ink);
}

.elp-section-desc {
    font-size: 16.5px;
    color: var(--elp-muted);
    margin: 0;
    max-width: 640px;
}

.elp-section-head-center {
    text-align: center;
    margin-bottom: 40px;
}

.elp-section-head-center .elp-section-desc { margin: 0 auto; }

.elp-link-arrow {
    color: var(--elp-orange);
    font-weight: 700;
    text-decoration: none;
    font-size: 15.5px;
    white-space: nowrap;
}

.elp-link-arrow i { margin-left: 6px; transition: transform .15s ease; }

.elp-link-arrow:hover i { transform: translateX(4px); }

/* ---------- Showcase slider ---------- */
.elp-showcase {
    padding: 70px 0 50px;
    background: #fff;
}

.elp-showcase-slider { position: relative; }

.elp-showcase-slide {
    display: none;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
}

.elp-showcase-slide.is-active {
    display: grid;
    animation: elp-fade .45s ease;
}

@keyframes elp-fade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.elp-showcase-media img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: var(--elp-radius);
}

.elp-showcase-num {
    display: inline-block;
    font-family: var(--elp-font-head);
    font-weight: 800;
    font-size: 15px;
    color: var(--elp-orange);
    letter-spacing: .14em;
    margin-bottom: 10px;
}

.elp-showcase-title {
    font-family: var(--elp-font-head);
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 14px;
}

.elp-showcase-desc {
    font-size: 16.5px;
    color: var(--elp-muted);
    margin: 0;
}

.elp-showcase-dots,
.elp-testimonials-bullets {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 30px;
}

.elp-showcase-dots button,
.elp-testimonials-bullets button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: #d5d9df;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.elp-showcase-dots button.is-active,
.elp-testimonials-bullets button.is-active {
    background: var(--elp-orange);
    transform: scale(1.25);
}

/* ---------- Intro productos ---------- */
.elp-products-intro { padding: 36px 0 8px; }

.elp-products-intro-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

/* ---------- Feature trio ---------- */
.elp-feature-trio { padding: 34px 0 70px; }

.elp-feature-trio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.elp-feature-tile {
    position: relative;
    border-radius: var(--elp-radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    min-height: 0;
    color: #fff;
    display: flex;
    align-items: flex-end;
}

.elp-feature-tile-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .4s ease;
}

.elp-feature-tile:hover .elp-feature-tile-bg { transform: scale(1.06); }

.elp-feature-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 13, 18, .05) 30%, rgba(10, 13, 18, .82) 100%);
}

.elp-feature-tile-front {
    position: relative;
    z-index: 2;
    padding: 26px;
    transition: opacity .25s ease;
}

.elp-feature-tile-front h3,
.elp-feature-tile-hover h3 {
    font-family: var(--elp-font-head);
    font-size: 22px;
    font-weight: 800;
    margin: 6px 0 8px;
}

.elp-feature-tile-front p { margin: 0; color: rgba(255, 255, 255, .88); font-size: 15px; }

.elp-feature-tile-num {
    font-family: var(--elp-font-head);
    font-weight: 800;
    color: var(--elp-orange);
    letter-spacing: .14em;
    font-size: 14px;
}

.elp-feature-tile-hover {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: rgba(12, 16, 22, .92);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .28s ease, transform .28s ease;
}

.elp-feature-tile:hover .elp-feature-tile-hover,
.elp-feature-tile:focus-within .elp-feature-tile-hover {
    opacity: 1;
    transform: translateY(0);
}

.elp-feature-tile:hover .elp-feature-tile-front { opacity: 0; }

.elp-feature-tile-hover p { margin: 0 0 8px; color: rgba(255, 255, 255, .85); font-size: 15px; }

.elp-feature-tile-hover ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    gap: 7px;
}

.elp-feature-tile-hover ul li {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .9);
    padding-left: 20px;
    position: relative;
}

.elp-feature-tile-hover ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--elp-orange);
    font-weight: 700;
}

.elp-feature-tile-hover .elp-btn { align-self: flex-start; }

/* ---------- Diferencia: grid 2 ? 3 tarjetas ---------- */
.elp-difference {
    background: #f3efe8;
    padding: 70px 0;
}

.elp-difference-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.elp-difference-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.elp-difference-card {
    display: grid;
    grid-template-rows: auto 1fr;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(14, 19, 27, .06);
    min-height: 420px;
}

.elp-difference-card-copy {
    padding: 26px 26px 12px;
}

.elp-difference-card-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 122, 47, .12);
    color: var(--elp-orange);
    font-size: 18px;
    margin-bottom: 14px;
}

.elp-difference-card-title {
    font-family: var(--elp-font-head);
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--elp-ink);
}

.elp-difference-card-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--elp-muted);
}

.elp-difference-card-media {
    position: relative;
    min-height: 220px;
    margin-top: auto;
    overflow: hidden;
}

.elp-difference-card-media img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Legacy gallery helpers (por si se reutilizan) */
.elp-difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.elp-difference-gallery { display: none; }

.elp-difference-cell {
    position: relative;
    border-radius: var(--elp-radius);
    overflow: hidden;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.elp-difference-cell-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 13, 18, .18) 0%, rgba(10, 13, 18, .85) 100%);
    transition: background .25s ease;
}

.elp-difference-cell:hover .elp-difference-cell-overlay {
    background: linear-gradient(180deg, rgba(232, 100, 26, .35) 0%, rgba(14, 19, 27, .9) 100%);
}

.elp-difference-cell-body {
    position: relative;
    z-index: 2;
    padding: 22px;
}

.elp-difference-cell-num {
    font-family: var(--elp-font-head);
    font-weight: 800;
    color: var(--elp-orange);
    font-size: 13px;
    letter-spacing: .14em;
}

.elp-difference-cell-title {
    font-family: var(--elp-font-head);
    font-size: 21px;
    font-weight: 800;
    margin: 6px 0 6px;
}

.elp-difference-cell-text {
    margin: 0;
    font-size: 14.5px;
    color: rgba(255, 255, 255, .88);
}

/* ---------- Testimonios ---------- */
.elp-testimonials { padding: 76px 0; background: #fff; }

.elp-testimonials-viewport { overflow: hidden; }

.elp-testimonials-track {
    display: flex;
    transition: transform .5s ease;
}

.elp-testimonial-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
    align-items: center;
    background: var(--elp-bg-soft);
    border-radius: var(--elp-radius);
    padding: 34px;
}

.elp-testimonial-video-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--elp-radius);
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    overflow: hidden;
    width: 100%;
    border: 0;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.elp-testimonial-video-frame:disabled {
    cursor: default;
    opacity: .85;
}

.elp-testimonial-video-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 13, 18, .28);
    pointer-events: none;
}

.elp-testimonial-play {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--elp-orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: 0 10px 26px rgba(255, 122, 47, .45);
    transition: transform .2s ease, box-shadow .2s ease;
}

.elp-testimonial-play i {
    margin-left: 3px;
}

.elp-testimonial-video-frame:hover .elp-testimonial-play,
.elp-testimonial-video-frame:focus-visible .elp-testimonial-play {
    transform: scale(1.08);
    box-shadow: 0 14px 32px rgba(255, 122, 47, .55);
}

/* Modal video testimonial */
.elp-video-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: grid;
    place-items: center;
    padding: 20px;
}

.elp-video-modal[hidden] {
    display: none !important;
}

.elp-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 18, .82);
    backdrop-filter: blur(2px);
}

.elp-video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    background: #0b1220;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

.elp-video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.elp-video-modal-close:hover {
    background: var(--elp-orange);
}

.elp-video-modal-body {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.elp-video-modal-body video,
.elp-video-modal-body iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}

body.elp-video-modal-open {
    overflow: hidden;
}

.elp-testimonial-restaurant {
    font-family: var(--elp-font-head);
    font-size: 23px;
    font-weight: 800;
    margin: 0 0 2px;
}

.elp-testimonial-person {
    color: var(--elp-orange);
    font-weight: 700;
    font-size: 14.5px;
    margin: 0 0 14px;
}

.elp-testimonial-text {
    margin: 0;
    font-size: 16px;
    color: var(--elp-muted);
    border-left: 3px solid var(--elp-orange);
    padding-left: 16px;
}

/* ---------- Numeralia ---------- */
.elp-stats {
    background: var(--elp-dark);
    color: #fff;
    padding: 78px 0;
}

.elp-stats-title {
    color: #fff;
    text-align: center;
    margin-bottom: 44px;
}

.elp-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: center;
}

.elp-stat { display: grid; gap: 8px; }

.elp-stat-value {
    font-family: var(--elp-font-head);
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.elp-stat-label {
    color: rgba(255, 255, 255, .72);
    font-size: 15.5px;
}

/* ---------- Tipos de negocio 3x3 ---------- */
.elp-business-types { padding: 76px 0; background: #fff; }

.elp-business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.elp-business-card {
    position: relative;
    border-radius: var(--elp-radius);
    overflow: hidden;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.elp-business-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 13, 18, .04) 40%, rgba(10, 13, 18, .8) 100%);
}

.elp-business-card-foot {
    position: relative;
    z-index: 2;
    padding: 20px;
    transition: opacity .22s ease;
}

.elp-business-code {
    font-family: var(--elp-font-head);
    font-weight: 800;
    color: var(--elp-orange);
    font-size: 13px;
    letter-spacing: .14em;
    display: block;
}

.elp-business-label {
    font-family: var(--elp-font-head);
    font-size: 21px;
    font-weight: 800;
    margin: 4px 0 0;
}

.elp-business-card-hover {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: rgba(12, 16, 22, .92);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .26s ease, transform .26s ease;
}

.elp-business-card:hover .elp-business-card-hover,
.elp-business-card:focus-within .elp-business-card-hover {
    opacity: 1;
    transform: translateY(0);
}

.elp-business-card:hover .elp-business-card-foot { opacity: 0; }

.elp-business-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .87);
    margin: 8px 0 14px;
}

.elp-business-card-hover .elp-btn { align-self: flex-start; }

/* ---------- FAQ ---------- */
.elp-faq {
    background: var(--elp-bg-soft);
    padding: 76px 0;
}

.elp-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.elp-faq-item {
    background: #fff;
    border: 1px solid var(--elp-line);
    border-radius: 14px;
    overflow: hidden;
}

.elp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: 0;
    text-align: left;
    padding: 18px 22px;
    font-family: var(--elp-font-body);
    font-size: 16.5px;
    font-weight: 700;
    color: var(--elp-ink);
    cursor: pointer;
}

.elp-faq-question i {
    color: var(--elp-orange);
    transition: transform .25s ease;
    flex: 0 0 auto;
}

.elp-faq-item.is-open .elp-faq-question i { transform: rotate(180deg); }

.elp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.elp-faq-item.is-open .elp-faq-answer { max-height: 260px; }

.elp-faq-answer p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--elp-muted);
    font-size: 15.5px;
}

.elp-faq-more {
    text-align: center;
    margin: 28px 0 0;
}

.elp-faq-more a {
    color: var(--elp-orange);
    font-weight: 700;
    text-decoration: none;
}

.elp-faq-more a:hover { text-decoration: underline; }

/* ---------- CTA banner final ---------- */
.elp-cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 92px 0;
    text-align: center;
}

.elp-cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 13, 18, .82);
}

.elp-cta-banner-inner { position: relative; z-index: 2; }

.elp-cta-banner-title {
    font-family: var(--elp-font-head);
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 800;
    line-height: 1.25;
    max-width: 880px;
    margin: 0 auto 30px;
}

.elp-cta-banner-list {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
}

.elp-cta-banner-list i { color: var(--elp-orange); margin-right: 8px; }

/* ---------- Footer (5 columnas + estados) ---------- */
.elp-footer {
    background: #12121f;
    color: rgba(255, 255, 255, .88);
    padding: 64px 0 28px;
}

.elp-footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1.2fr .9fr 1.15fr;
    gap: 32px 28px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.elp-footer-brand { display: grid; gap: 18px; align-content: start; }

.elp-footer-logo { height: 56px; width: auto; }

.elp-footer-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .78);
    max-width: 280px;
}

.elp-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.elp-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.elp-footer-social a:hover {
    background: var(--elp-orange);
    transform: translateY(-2px);
}

.elp-footer-col {
    display: grid;
    gap: 10px;
    align-content: start;
}

.elp-footer-col h4 {
    font-family: var(--elp-font-head);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
}

.elp-footer-col a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-family: 'Montserrat', var(--elp-font-body);
    font-weight: 400;
    font-size: 14.5px;
    line-height: 1.45;
}

.elp-footer-col a:hover { color: var(--elp-orange); }

.elp-footer-text {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .82);
}

.elp-footer-bottom {
    padding-top: 26px;
    text-align: center;
    display: grid;
    gap: 14px;
}

.elp-footer-bottom p {
    margin: 0;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.55;
}

.elp-footer-states {
    max-width: 920px;
    margin: 0 auto;
    font-size: 12.5px !important;
    color: rgba(255, 255, 255, .5) !important;
}

.elp-footer-credit a {
    color: var(--elp-orange);
    text-decoration: none;
    font-weight: 600;
}

.elp-footer-credit a:hover { text-decoration: underline; }

/* ---------- P?gina Funcionalidades ---------- */
.elp-hero-page {
    min-height: 420px;
    align-items: flex-end;
    padding-bottom: 72px;
}

/* Fondo del hero en p?ginas internas */
.elp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.elp-hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .6s ease;
}

.elp-hero-bg-slide.is-active { opacity: 1; }

/* Oscurecido para que el texto sea legible sobre la foto */
.elp-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 13, 18, .55) 0%, rgba(10, 13, 18, .35) 55%, rgba(10, 13, 18, .6) 100%);
}

.elp-hero-inner-page {
    position: relative;
    z-index: 3;
}

.elp-hero-eyebrow {
    display: inline-block;
    color: var(--elp-orange);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.elp-hero-sub {
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
    line-height: 1.6;
    margin: 14px 0 0;
}

.elp-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 42px;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .9) 100%);
    pointer-events: none;
}

.elp-hero-page .elp-hero-content {
    max-width: 760px;
    text-align: left;
    margin: 0;
}

.elp-hero-page .elp-hero-title {
    font-size: clamp(32px, 4.5vw, 48px);
}

.elp-breadcrumbs {
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    padding: 14px 0;
    font-size: 14px;
    color: var(--elp-muted);
}

.elp-breadcrumbs a {
    color: var(--elp-navy);
    text-decoration: none;
    font-weight: 600;
}

.elp-breadcrumbs a:hover { color: var(--elp-orange); }

.elp-breadcrumbs span { margin: 0 8px; color: rgba(15, 23, 42, .35); }

.features-shell {
    background-color: #f4f6f8;
    background-size: cover;
    background-position: center;
    padding: 48px 0 72px;
}

.features-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.features-nav {
    position: sticky;
    top: 92px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
    max-height: calc(100vh - 110px);
    overflow: auto;
}

.features-tab {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    color: var(--elp-navy);
    font-family: var(--elp-font-body);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.features-tab:hover,
.features-tab.is-active {
    background: rgba(255, 107, 0, .1);
    color: var(--elp-orange);
}

.features-subnav {
    display: none;
    padding: 4px 0 10px 8px;
}

.features-subnav.is-open { display: grid; gap: 2px; }

.features-link {
    color: var(--elp-muted);
    text-decoration: none;
    font-size: 13.5px;
    padding: 8px 10px;
    border-radius: 8px;
    border-left: 2px solid transparent;
}

.features-link:hover,
.features-link.is-active {
    color: var(--elp-navy);
    background: rgba(15, 23, 42, .04);
    border-left-color: var(--elp-orange);
}

.features-content {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 16px;
    padding: 28px 32px 40px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.features-title {
    font-family: var(--elp-font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--elp-navy);
    margin: 0 0 18px;
}

.features-section {
    padding: 18px 0 10px;
    scroll-margin-top: 100px;
}

.features-section + .features-section {
    border-top: 1px solid rgba(15, 23, 42, .06);
    margin-top: 12px;
}

.features-section h2 {
    font-family: var(--elp-font-head);
    font-size: 24px;
    font-weight: 800;
    color: var(--elp-navy);
    margin: 8px 0 16px;
}

.features-section h3 {
    font-family: var(--elp-font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--elp-navy);
    margin: 18px 0 6px;
}

.features-section p {
    margin: 0 0 8px;
    color: var(--elp-muted);
    font-size: 15px;
    line-height: 1.65;
}

.features-section img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 14px 0;
    border: 1px solid rgba(15, 23, 42, .08);
}

.features-section ol {
    margin: 8px 0 12px;
    padding-left: 1.25rem;
    color: var(--elp-muted);
}

.features-section li { margin-bottom: 6px; line-height: 1.55; }

/* ---------- WhatsApp float + olas ---------- */
.elp-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
    transition: transform .18s ease;
}

.elp-whatsapp-float > i { position: relative; z-index: 2; }

.elp-whatsapp-float:hover { transform: scale(1.06); }

.elp-whatsapp-waves {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.elp-whatsapp-wave {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .55);
    animation: elp-wa-wave 2.4s ease-out infinite;
}

.elp-whatsapp-wave:nth-child(2) { animation-delay: .8s; }
.elp-whatsapp-wave:nth-child(3) { animation-delay: 1.6s; }

@keyframes elp-wa-wave {
    0% {
        transform: scale(1);
        opacity: .7;
    }
    100% {
        transform: scale(2.15);
        opacity: 0;
    }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
    .elp-footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .elp-feature-trio-grid { grid-template-columns: 1fr 1fr; }
    .elp-difference-grid { grid-template-columns: 1fr 1fr; }
    .elp-difference-cards { grid-template-columns: 1fr 1fr; }
    .elp-business-grid { grid-template-columns: 1fr 1fr; }

    .features-layout { grid-template-columns: 1fr; }

    .features-nav {
        position: static;
        max-height: none;
    }
}

@media (max-width: 860px) {
    .elp-nav-links,
    .elp-nav-actions { display: none; }

    .elp-nav-toggle { display: grid; place-items: center; }

    .elp-showcase-slide.is-active { grid-template-columns: 1fr; gap: 26px; }

    .elp-testimonial-slide { grid-template-columns: 1fr; padding: 24px; gap: 24px; }

    .elp-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

    .features-content { padding: 22px 18px 32px; }
}

@media (max-width: 640px) {
    .elp-hero { min-height: 86vh; }

    .elp-feature-trio-grid,
    .elp-difference-grid,
    .elp-difference-cards,
    .elp-business-grid { grid-template-columns: 1fr; }

    .elp-difference-card { min-height: 360px; }

    .elp-stats-grid { grid-template-columns: 1fr; gap: 36px; }

    .elp-footer-grid { grid-template-columns: 1fr; }

    .elp-marquee-item img { height: 42px; }

    .elp-products-intro-row,
    .elp-difference-head { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Pricing page (pricing-*)
   ============================================================ */
.pricing-page {
    padding-bottom: 120px;
}

.pricing-page .elp-main {
    overflow-x: hidden;
}

.pricing-step {
    position: relative;
    padding: 56px 0;
}

.pricing-step-1 {
    background: linear-gradient(180deg, #fff 0%, var(--elp-bg-soft) 100%);
    padding-top: 40px;
}

.pricing-step-2,
.pricing-step-3 {
    background: var(--elp-bg-soft);
}

.pricing-step-inner {
    position: relative;
    z-index: 1;
}

.pricing-step-top {
    text-align: center;
    margin-bottom: 28px;
}

.pricing-step-head {
    font-family: var(--elp-font-head);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--elp-ink);
}

.pricing-step-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.pricing-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--elp-orange);
    color: #fff;
    font-family: var(--elp-font-head);
    font-weight: 800;
    font-size: 18px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.pricing-step-title {
    font-family: var(--elp-font-head);
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 700;
    color: #fff;
}

.pricing-step-title-dark {
    color: var(--elp-ink);
}

.pricing-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 48px;
    background: var(--elp-bg-soft);
    clip-path: ellipse(58% 100% at 50% 100%);
}

/* Plans grid */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 32px;
}

.pricing-plan {
    position: relative;
    display: block;
    background: #fff;
    border: 2px solid var(--elp-line);
    border-radius: var(--elp-radius);
    padding: 22px 18px 20px;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}

.pricing-plan:hover {
    border-color: rgba(255, 122, 47, .45);
    transform: translateY(-2px);
}

.pricing-plan.is-selected {
    border-color: var(--elp-orange);
    box-shadow: 0 12px 32px rgba(255, 122, 47, .18);
}

.pricing-plan.is-featured {
    border-color: rgba(255, 122, 47, .35);
    background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.pricing-plan-input,
.pricing-module-input,
.pricing-payment-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pricing-plan-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.pricing-plan-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--elp-font-head);
    font-weight: 700;
    font-size: 16px;
    color: var(--elp-ink);
}

.pricing-plan-badge {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 122, 47, .12);
    color: var(--elp-orange);
    display: grid;
    place-items: center;
    font-size: 12px;
}

.pricing-plan-badge.purple {
    background: rgba(124, 58, 237, .12);
    color: #7c3aed;
}

.pricing-plan-badge.dark {
    background: rgba(14, 19, 27, .1);
    color: var(--elp-dark);
}

.pricing-plan-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--elp-line);
    flex-shrink: 0;
    transition: border-color .15s ease, background .15s ease;
}

.pricing-plan.is-selected .pricing-plan-check,
.pricing-module.is-selected .pricing-module-check,
.pricing-payment.is-selected .pricing-payment-btn {
    border-color: var(--elp-orange);
    background: var(--elp-orange);
}

.pricing-plan.is-selected .pricing-plan-check::after,
.pricing-module.is-selected .pricing-module-check::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.2 11.6 3.4 8.8l1.2-1.2 1.6 1.6 4.6-4.6 1.2 1.2z'/%3E%3C/svg%3E") center / 12px no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.2 11.6 3.4 8.8l1.2-1.2 1.6 1.6 4.6-4.6 1.2 1.2z'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.pricing-plan-reco,
.pricing-payment-reco {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--elp-orange);
    color: #fff;
    font-family: var(--elp-font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.pricing-plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 10px;
}

.pricing-plan-price-amount {
    font-family: var(--elp-font-head);
    font-size: 34px;
    font-weight: 800;
    color: var(--elp-ink);
    line-height: 1;
}

.pricing-plan-price-per {
    font-size: 14px;
    color: var(--elp-muted);
}

.pricing-plan-note {
    font-size: 12px;
    color: var(--elp-muted);
    margin-bottom: 8px;
}

.pricing-plan-desc {
    font-size: 14px;
    color: var(--elp-muted);
    margin-bottom: 12px;
    min-height: 42px;
}

.pricing-plan-subtitle {
    font-family: var(--elp-font-head);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-plan-list {
    margin: 0 0 14px;
    padding-left: 18px;
    font-size: 13px;
    color: var(--elp-ink);
}

.pricing-plan-list li + li {
    margin-top: 6px;
}

.pricing-plan-link,
.pricing-module-link,
.pricing-benefit-card-link {
    display: inline-flex;
    font-family: var(--elp-font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--elp-orange);
    text-decoration: none;
}

.pricing-plan-link:hover,
.pricing-module-link:hover,
.pricing-benefit-card-link:hover {
    text-decoration: underline;
}

/* Benefits row */
.pricing-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding-top: 8px;
}

.pricing-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--elp-line);
    border-radius: 14px;
    padding: 16px;
    font-size: 13px;
    color: var(--elp-ink);
}

.pricing-benefit i {
    color: var(--elp-orange);
    font-size: 18px;
    margin-top: 2px;
}

/* Modules */
.pricing-modules {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    transition: opacity .2s ease;
}

.pricing-modules.is-disabled {
    opacity: .45;
    pointer-events: none;
}

.pricing-module {
    position: relative;
    display: block;
    background: #fff;
    border: 2px solid var(--elp-line);
    border-radius: var(--elp-radius);
    padding: 18px 16px;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.pricing-module.is-selected {
    border-color: var(--elp-orange);
    box-shadow: 0 10px 28px rgba(255, 122, 47, .14);
}

.pricing-module-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.pricing-module-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.pricing-module-icon.green { background: rgba(34, 197, 94, .12); color: #16a34a; }
.pricing-module-icon.blue { background: rgba(59, 130, 246, .12); color: #2563eb; }
.pricing-module-icon.purple { background: rgba(124, 58, 237, .12); color: #7c3aed; }
.pricing-module-icon.orange { background: rgba(255, 122, 47, .12); color: var(--elp-orange); }
.pricing-module-icon.gold { background: rgba(234, 179, 8, .14); color: #ca8a04; }
.pricing-module-icon.teal { background: rgba(20, 184, 166, .12); color: #0d9488; }
.pricing-module-icon.dark { background: rgba(14, 19, 27, .08); color: var(--elp-dark); }

.pricing-module-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--elp-line);
}

.pricing-module-name {
    font-family: var(--elp-font-head);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
}

.pricing-module-price {
    font-family: var(--elp-font-head);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-module-price span {
    font-size: 13px;
    font-weight: 600;
    color: var(--elp-muted);
}

.pricing-module-desc {
    font-size: 13px;
    color: var(--elp-muted);
    margin-bottom: 10px;
    min-height: 38px;
}

/* Payments */
.pricing-chosen {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.pricing-chosen-label {
    font-family: var(--elp-font-head);
    font-weight: 700;
    color: var(--elp-ink);
}

.pricing-chosen-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--elp-line);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
}

.pricing-chosen-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--elp-orange);
}

.pricing-payments {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 36px;
    transition: opacity .2s ease;
}

.pricing-payments.is-disabled {
    opacity: .45;
    pointer-events: none;
}

.pricing-payment {
    position: relative;
    display: block;
    background: #fff;
    border: 2px solid var(--elp-line);
    border-radius: var(--elp-radius);
    padding: 18px 16px 16px;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.pricing-payment.recommended {
    border-color: rgba(255, 122, 47, .35);
}

.pricing-payment.is-selected {
    border-color: var(--elp-orange);
    box-shadow: 0 10px 28px rgba(255, 122, 47, .14);
}

.pricing-payment-head {
    font-family: var(--elp-font-head);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-payment-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    min-height: 22px;
}

.pricing-payment-old {
    font-size: 12px;
    color: var(--elp-muted);
    text-decoration: line-through;
}

.pricing-payment-chip {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255, 122, 47, .12);
    color: var(--elp-orange);
    font-size: 11px;
    font-weight: 700;
}

.pricing-payment-chip.green {
    background: rgba(34, 197, 94, .12);
    color: #16a34a;
}

.pricing-payment-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px;
}

.pricing-payment-amount {
    font-family: var(--elp-font-head);
    font-size: 28px;
    font-weight: 800;
}

.pricing-payment-per {
    font-size: 13px;
    color: var(--elp-muted);
}

.pricing-payment-note {
    font-size: 12px;
    color: var(--elp-muted);
    line-height: 1.45;
    margin-bottom: 14px;
    min-height: 34px;
}

.pricing-payment-btn {
    display: block;
    text-align: center;
    border: 2px solid var(--elp-line);
    border-radius: 999px;
    padding: 8px 12px;
    font-family: var(--elp-font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--elp-ink);
}

.pricing-payment-btn.primary {
    border-color: var(--elp-orange);
    color: var(--elp-orange);
}

.pricing-payment.is-selected .pricing-payment-btn {
    background: var(--elp-orange);
    border-color: var(--elp-orange);
    color: #fff;
}

.pricing-after-payments {
    display: grid;
    gap: 24px;
}

.pricing-pay-logos-title,
.pricing-more-title,
.pricing-faq-title {
    font-family: var(--elp-font-head);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.pricing-pay-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.pricing-pay-logos-row img {
    height: 42px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--elp-line);
    border-radius: 10px;
    padding: 6px 10px;
}

.pricing-module-tag {
    display: inline-block;
    margin: 0 0 6px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255, 122, 47, .12);
    color: var(--elp-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
}

.pricing-module--ai {
    border-color: rgba(255, 122, 47, .35);
}

.pricing-module-note {
    font-size: 12px;
    color: var(--elp-muted);
    margin: -4px 0 8px;
}

.pricing-pay-logos-note {
    margin-top: 10px;
    font-size: 12px;
    color: var(--elp-muted);
}

.pricing-benefit-card {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--elp-line);
    border-radius: var(--elp-radius);
    padding: 24px;
    align-items: center;
}

.pricing-benefit-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--elp-font-head);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-benefit-card-head i {
    color: var(--elp-orange);
}

.pricing-benefit-card-sub {
    color: var(--elp-muted);
    margin-bottom: 12px;
}

.pricing-benefit-card-list {
    margin: 0 0 14px;
    padding-left: 18px;
    font-size: 14px;
}

.pricing-benefit-card-right img {
    border-radius: 14px;
    width: 100%;
    max-height: 220px;
    object-fit: cover;
}

/* Compare */
.pricing-compare {
    background: #fff;
    border: 1px solid var(--elp-line);
    border-radius: var(--elp-radius);
    padding: 24px;
}

.pricing-switch {
    position: relative;
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    background: var(--elp-bg-soft);
    border-radius: 999px;
    padding: 4px;
    margin-bottom: 24px;
}

.pricing-switch-thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .08);
    transition: transform .22s ease;
}

.pricing-switch[data-mode="modules"] .pricing-switch-thumb {
    transform: translateX(100%);
}

.pricing-switch-btn {
    position: relative;
    z-index: 1;
    border: 0;
    background: transparent;
    padding: 10px 22px;
    font-family: var(--elp-font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--elp-muted);
    cursor: pointer;
}

.pricing-switch-btn.is-active {
    color: var(--elp-ink);
}

.pricing-compare-pane.is-hidden {
    display: none;
}

.pricing-compare-accordions {
    display: grid;
    gap: 12px;
}

.pricing-accordion {
    border: 1px solid var(--elp-line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.pricing-accordion-summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    font-family: var(--elp-font-head);
    font-weight: 700;
    font-size: 15px;
}

.pricing-accordion-summary::-webkit-details-marker {
    display: none;
}

.pricing-accordion-body {
    overflow: hidden;
    transition: max-height .25s ease;
}

.pricing-compare-table-wrap {
    overflow-x: auto;
    padding: 0 12px 12px;
}

.pricing-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.pricing-compare-table th,
.pricing-compare-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--elp-line);
    text-align: center;
    vertical-align: middle;
}

.pricing-compare-table th:first-child,
.pricing-compare-table td:first-child {
    text-align: left;
    min-width: 220px;
}

.pricing-compare-table thead th {
    font-family: var(--elp-font-head);
    font-size: 12px;
    background: var(--elp-bg-soft);
}

.pricing-compare-note {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--elp-muted);
}

.pricing-compare-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
}

.pricing-compare-dot.is-on {
    background: var(--elp-orange);
}

.pricing-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pricing-module-card {
    border: 1px solid var(--elp-line);
    border-radius: 14px;
    padding: 18px;
    background: var(--elp-bg-soft);
}

.pricing-module-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.pricing-module-card-title {
    font-family: var(--elp-font-head);
    font-weight: 700;
    font-size: 15px;
}

.pricing-module-card-title i {
    color: var(--elp-orange);
    margin-right: 6px;
}

.pricing-module-card-price {
    font-family: var(--elp-font-head);
    font-weight: 800;
    white-space: nowrap;
}

.pricing-module-card-price span {
    font-size: 12px;
    font-weight: 600;
    color: var(--elp-muted);
}

.pricing-module-card-sub {
    color: var(--elp-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.pricing-module-card-list {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
}

.pricing-module-card-foot {
    margin-top: 12px;
    font-size: 12px;
    color: var(--elp-muted);
}

/* FAQ */
.pricing-faq {
    max-width: 860px;
}

.pricing-faq-body {
    padding: 0 18px 16px;
    font-size: 14px;
    color: var(--elp-muted);
}

/* Summary bar */
.pricing-summarybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--elp-line);
    box-shadow: 0 -8px 30px rgba(15, 23, 42, .08);
    transform: translateY(110%);
    transition: transform .25s ease;
    backdrop-filter: blur(8px);
}

.pricing-summarybar.is-visible {
    transform: translateY(0);
}

.pricing-summary-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pricing-summary-title {
    font-family: var(--elp-font-head);
    font-weight: 800;
    margin-bottom: 6px;
}

.pricing-summary-lines {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
}

.pricing-summary-line span {
    color: var(--elp-muted);
}

.pricing-summary-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pricing-summary-total-label {
    font-size: 12px;
    color: var(--elp-muted);
}

.pricing-summary-total-value {
    font-family: var(--elp-font-head);
    font-size: 22px;
    font-weight: 800;
}

.pricing-summary-total-sub {
    font-size: 12px;
    color: var(--elp-muted);
}

.pricing-summary-cta {
    border: 0;
    border-radius: 999px;
    background: var(--elp-orange);
    color: #fff;
    font-family: var(--elp-font-head);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 22px;
    cursor: pointer;
    transition: background .15s ease, opacity .15s ease;
}

.pricing-summary-cta:hover:not(:disabled) {
    background: var(--elp-orange-dark);
}

.pricing-summary-cta:disabled {
    opacity: .45;
    cursor: not-allowed;
}

/* Modal */
.pricing-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.pricing-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.pricing-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 19, 27, .55);
}

.pricing-modal-panel {
    position: relative;
    width: min(560px, 100%);
    max-height: min(90vh, 760px);
    overflow: auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .25);
}

.pricing-modal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--elp-line);
}

.pricing-modal-title {
    font-family: var(--elp-font-head);
    font-size: 18px;
    font-weight: 800;
}

.pricing-modal-close {
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--elp-muted);
}

.pricing-modal-steps {
    padding: 20px;
}

.pricing-modal-step-indicators {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.pricing-modal-step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--elp-line);
    display: grid;
    place-items: center;
    font-family: var(--elp-font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--elp-muted);
}

.pricing-modal-step-indicator.is-active {
    border-color: var(--elp-orange);
    background: var(--elp-orange);
    color: #fff;
}

.pricing-modal-step {
    display: none;
}

.pricing-modal-step.is-active {
    display: block;
}

.pricing-modal-step-title {
    font-family: var(--elp-font-head);
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-modal-summary {
    background: var(--elp-bg-soft);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 16px;
    font-size: 14px;
}

.pricing-modal-summary-line + .pricing-modal-summary-line {
    margin-top: 6px;
}

.pricing-modal-summary-line span {
    color: var(--elp-muted);
}

.pricing-modal-summary-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--elp-line);
    font-family: var(--elp-font-head);
    font-weight: 700;
}

.pricing-modal-summary-sub {
    font-size: 12px;
    color: var(--elp-muted);
    margin-top: 6px;
}

.pricing-modal-field {
    margin-bottom: 12px;
}

.pricing-modal-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.pricing-modal-field input {
    width: 100%;
    border: 1px solid var(--elp-line);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
}

.pricing-modal-field input:focus {
    outline: none;
    border-color: var(--elp-orange);
    box-shadow: 0 0 0 3px rgba(255, 122, 47, .15);
}

.pricing-modal-error {
    min-height: 18px;
    font-size: 13px;
    color: #dc2626;
    margin-top: 4px;
}

.pricing-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}

.pricing-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 18px;
    font-family: var(--elp-font-head);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
}

.pricing-modal-btn.ghost {
    background: #fff;
    border-color: var(--elp-line);
    color: var(--elp-ink);
}

.pricing-modal-btn.primary {
    background: var(--elp-orange);
    color: #fff;
}

.pricing-modal-checkout {
    min-height: 320px;
}

.pricing-modal-welcome {
    text-align: center;
    padding: 24px 12px;
}

.pricing-modal-welcome-head {
    font-family: var(--elp-font-head);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-modal-welcome-sub {
    color: var(--elp-muted);
}

@media (max-width: 1100px) {
    .pricing-plans,
    .pricing-benefits,
    .pricing-modules,
    .pricing-payments {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-benefit-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .pricing-page {
        padding-bottom: 150px;
    }

    .pricing-step {
        padding: 40px 0;
    }

    .pricing-step-label {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-plans,
    .pricing-benefits,
    .pricing-modules,
    .pricing-payments,
    .pricing-modules-grid {
        grid-template-columns: 1fr;
    }

    .pricing-summary-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-summary-right {
        width: 100%;
        justify-content: space-between;
    }

    .pricing-summary-cta {
        width: 100%;
    }
}

/* ============================================================
   P?gina Ayuda
   ============================================================ */
.elp-help-search {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 520px;
    background: rgba(255, 255, 255, .96);
    border-radius: 999px;
    padding: 12px 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.elp-help-search i {
    color: var(--elp-orange);
    font-size: 16px;
}

.elp-help-search input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-family: var(--elp-font-text);
    font-size: 15px;
    color: var(--elp-ink);
}

.elp-help-hello {
    font-size: clamp(40px, 6vw, 64px) !important;
}

.elp-help-grid-section {
    padding: 48px 0 80px;
    background: #fff;
}

.elp-help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.elp-help-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--elp-line);
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}

.elp-help-card:hover {
    border-color: rgba(255, 122, 47, .45);
    box-shadow: 0 12px 28px rgba(14, 19, 27, .08);
    transform: translateY(-2px);
}

.elp-help-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 122, 47, .12);
    color: var(--elp-orange);
    font-size: 20px;
    flex-shrink: 0;
}

.elp-help-card-body h2 {
    margin: 0 0 4px;
    font-family: var(--elp-font-head);
    font-size: 17px;
    font-weight: 800;
    color: var(--elp-ink);
}

.elp-help-card-body p {
    margin: 0 0 8px;
    font-size: 13.5px;
    color: var(--elp-muted);
    line-height: 1.4;
}

.elp-help-card-body span {
    font-size: 12px;
    font-weight: 700;
    color: var(--elp-orange);
}

@media (max-width: 1024px) {
    .elp-help-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .elp-help-grid { grid-template-columns: 1fr; }
}

.elp-help-empty {
    grid-column: 1 / -1;
    color: var(--elp-muted);
    font-size: 15px;
}

.elp-help-articles-section {
    padding: 40px 0 80px;
    background: #fff;
}

.elp-help-articles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 820px;
}

.elp-help-article-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--elp-line);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.elp-help-article-row:hover {
    border-color: rgba(255, 122, 47, .45);
    box-shadow: 0 10px 24px rgba(14, 19, 27, .07);
}

.elp-help-article-row h2 {
    margin: 0 0 4px;
    font-family: var(--elp-font-head);
    font-size: 17px;
    font-weight: 800;
}

.elp-help-article-row p {
    margin: 0;
    font-size: 14px;
    color: var(--elp-muted);
}

.elp-help-article-row i {
    color: var(--elp-orange);
}

.elp-help-article-page {
    padding: 40px 0 80px;
    background: #fff;
}

.elp-help-article-layout {
    max-width: 860px;
}

.elp-help-article-hero-img {
    margin: 0 0 28px;
    border-radius: 16px;
    overflow: hidden;
}

.elp-help-article-hero-img img {
    display: block;
    width: 100%;
    height: auto;
}

.elp-prose {
    font-family: var(--elp-font-text);
    font-size: 16px;
    line-height: 1.7;
    color: var(--elp-ink);
}

.elp-prose h2, .elp-prose h3 {
    font-family: var(--elp-font-head);
    margin: 1.4em 0 .6em;
}

.elp-prose p { margin: 0 0 1em; }
.elp-prose img { max-width: 100%; height: auto; border-radius: 12px; }
.elp-prose ul, .elp-prose ol { margin: 0 0 1em; padding-left: 1.3em; }

.elp-help-media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.elp-help-media-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--elp-line);
}

.elp-help-media-card img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.elp-help-video-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.elp-help-video-item video {
    width: 100%;
    max-height: 480px;
    border-radius: 14px;
    background: #0f172a;
}

.elp-help-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
}

.elp-help-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.elp-help-article-back {
    margin-top: 32px;
}

.elp-help-article-back a {
    color: var(--elp-orange);
    font-weight: 700;
    text-decoration: none;
}

.elp-news-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 36px;
    padding: 48px 0 80px;
}

.elp-news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    top: 120px;
    align-self: start;
}

.elp-news-sidebar a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--elp-ink);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
}

.elp-news-sidebar a:hover,
.elp-news-sidebar a.is-active {
    background: rgba(255, 122, 47, .08);
    border-color: rgba(255, 122, 47, .25);
    color: var(--elp-orange);
}

.elp-news-sidebar-empty {
    color: var(--elp-muted);
    font-size: 14px;
}

.elp-news-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.elp-news-article h2 {
    margin: 0 0 8px;
    font-family: var(--elp-font-head);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
}

.elp-news-meta {
    margin: 0 0 16px;
    color: var(--elp-muted);
    font-size: 14px;
}

.elp-news-figure {
    margin: 0 0 18px;
    border-radius: 14px;
    overflow: hidden;
}

.elp-news-figure img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .elp-news-layout {
        grid-template-columns: 1fr;
    }
    .elp-news-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .elp-help-media-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .elp-help-media-grid {
        grid-template-columns: 1fr;
    }
}
.elp-nav-drawer-links a.is-active {
    color: #fff;
    font-weight: 700;
}

/* ---------- Tiendas Online ---------- */
.online-features {
    padding: 56px 0 40px;
    background: #fff;
}

.online-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 40px;
    align-items: center;
    margin-bottom: 72px;
}

.online-feature.is-reverse {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.online-feature.is-reverse .online-feature-media { order: 2; }
.online-feature.is-reverse .online-feature-body { order: 1; }

.online-feature-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.online-feature-eyebrow {
    color: var(--elp-orange);
    font-family: var(--elp-font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.online-feature-title {
    margin: 0 0 14px;
    font-family: var(--elp-font-head);
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 800;
    color: var(--elp-ink);
    line-height: 1.15;
}

.online-feature-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: var(--elp-muted);
}

.online-feature-media-logos {
    position: relative;
    min-height: 280px;
}

.online-integrations-figure {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 280px;
}

.online-integrations-main {
    width: min(72%, 340px);
    height: auto;
}

.online-integrations-badge {
    position: absolute;
    width: 72px;
    height: 72px;
    object-fit: contain;
    background: #fff;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 10px 28px rgba(14, 19, 27, .12);
}

.online-integrations-badge.is-uber { top: 8%; left: 8%; }
.online-integrations-badge.is-justo { top: 12%; right: 10%; }
.online-integrations-badge.is-rappi { bottom: 10%; right: 18%; }

.online-cta {
    padding: 20px 0 80px;
    background: #fff;
}

.online-cta-box {
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2438 55%, #ff7a2f 160%);
    color: #fff;
}

.online-cta-title {
    margin: 0 0 12px;
    font-family: var(--elp-font-head);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
}

.online-cta-sub {
    margin: 0 0 24px;
    font-size: 16px;
    color: rgba(255, 255, 255, .85);
}

.online-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.online-cta-secondary {
    border-color: rgba(255, 255, 255, .75) !important;
    color: #fff !important;
}

.online-cta-secondary:hover {
    background: rgba(255, 255, 255, .12) !important;
}

@media (max-width: 900px) {
    .online-feature,
    .online-feature.is-reverse {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 56px;
    }
    .online-feature.is-reverse .online-feature-media,
    .online-feature.is-reverse .online-feature-body {
        order: initial;
    }
    .online-cta-box { padding: 36px 22px; }
}


/* ---------- Tu Delivery ---------- */
.delivery-features { padding: 56px 0 40px; background: #fff; }
.delivery-section-head { margin-bottom: 28px; }
.delivery-section-head h2 {
    margin: 0;
    font-family: var(--elp-font-head);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
}
.delivery-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.delivery-feature-card {
    border: 1px solid var(--elp-line);
    border-radius: 16px;
    padding: 22px 18px;
    background: #fff;
}
.delivery-feature-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(255,122,47,.12); color: var(--elp-orange);
    margin-bottom: 12px; font-size: 18px;
}
.delivery-feature-title { font-family: var(--elp-font-head); font-weight: 800; font-size: 16px; margin-bottom: 6px; }
.delivery-feature-text { font-size: 14px; color: var(--elp-muted); line-height: 1.5; }

.delivery-dark {
    background: #151922;
    color: #fff;
    padding: 64px 0;
}
.delivery-dark-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}
.delivery-dark-kicker { color: var(--elp-orange); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.delivery-dark-title { margin: 0 0 12px; font-family: var(--elp-font-head); font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
.delivery-dark-text { color: rgba(255,255,255,.78); line-height: 1.6; margin: 0 0 18px; }
.delivery-dark-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.delivery-dark-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.delivery-dark-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--elp-orange); flex-shrink: 0; }
.delivery-dark-collage img { width: 100%; border-radius: 18px; display: block; }

.delivery-included { padding: 56px 0; background: #fff; }
.delivery-accordions { display: grid; gap: 12px; max-width: 920px; }
.delivery-accordion-body { padding: 0 18px 16px; }
.delivery-included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.delivery-included-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--elp-ink); }
.delivery-included-item i { color: var(--elp-orange); }
.delivery-faq { padding: 0 0 72px; background: #fff; }

@media (max-width: 900px) {
    .delivery-feature-grid { grid-template-columns: 1fr 1fr; }
    .delivery-dark-inner { grid-template-columns: 1fr; }
    .delivery-included-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .delivery-feature-grid { grid-template-columns: 1fr; }
}

/* ---------- Contacto ---------- */
.contact-section { padding: 48px 0 80px; background: #fff; }
.contact-inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 36px; align-items: start; }
.contact-title { margin: 0 0 8px; font-family: var(--elp-font-head); font-size: 28px; font-weight: 800; }
.contact-sub { margin: 0 0 24px; color: var(--elp-muted); line-height: 1.55; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-field-wide { grid-column: 1 / -1; }
.contact-field label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.contact-field input,
.contact-field textarea {
    width: 100%; border: 1px solid var(--elp-line); border-radius: 12px;
    padding: 12px 14px; font: inherit; background: #fff;
}
.contact-actions { margin-top: 16px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.contact-submit {
    border: 0; border-radius: 999px; background: var(--elp-orange); color: #fff;
    font-weight: 800; padding: 12px 22px; cursor: pointer;
}
.contact-note { font-size: 13px; color: #b45309; }
.contact-right {
    border: 1px solid var(--elp-line); border-radius: 18px; padding: 22px; background: #fafafa;
}
.contact-right-title { font-family: var(--elp-font-head); font-weight: 800; margin-bottom: 16px; }
.contact-info { display: grid; gap: 16px; }
.contact-info-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-info-icon {
    width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
    background: rgba(255,122,47,.12); color: var(--elp-orange);
}
.contact-info-label { font-size: 11px; font-weight: 800; letter-spacing: .06em; color: var(--elp-muted); }
.contact-info-link, .contact-info-text { color: var(--elp-ink); text-decoration: none; font-weight: 600; font-size: 14px; }
.contact-follow { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--elp-line); }
.contact-follow-title { font-size: 11px; font-weight: 800; letter-spacing: .06em; margin-bottom: 10px; color: var(--elp-muted); }
.contact-follow-links { display: flex; gap: 10px; }
.contact-follow-links a {
    width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
    background: var(--elp-orange); color: #fff; text-decoration: none;
}
@media (max-width: 900px) {
    .contact-inner { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ page ---------- */
.faq-page { padding: 40px 0 80px; background: #fff; }
.faq-group-label {
    margin: 28px 0 12px;
    font-family: var(--elp-font-head);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--elp-orange);
}
.faq-page .pricing-faq { margin-bottom: 8px; }
.faq-page .pricing-faq-item { margin-bottom: 10px; }
.pricing-faq-body a { color: var(--elp-orange); font-weight: 700; }

/* ---------- Plan Lite ---------- */
.pl-shell { padding-bottom: 60px; }
.pl-block { padding: 36px 0; }
.pl-fade { opacity: 0; transform: translateY(12px); transition: .45s ease; }
.pl-fade.is-in { opacity: 1; transform: none; }
.pl-hero-grid, .pl-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.pl-kicker { font-size: 12px; font-weight: 700; color: #555; margin-bottom: 10px; }
.pl-title { margin: 0 0 12px; font-family: var(--elp-font-head); font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.1; }
.pl-title-md { margin: 0 0 12px; font-family: var(--elp-font-head); font-size: clamp(24px, 3vw, 32px); font-weight: 800; }
.pl-price { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.pl-muted { color: var(--elp-muted); font-size: 14px; line-height: 1.55; }
.pl-muted.mb { margin-bottom: 16px; }
.pl-muted.mt { margin-top: 14px; }
.pl-note { font-size: 12px; color: #6b6b6b; margin-top: 10px; }
.pl-btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--elp-orange); color: #fff; font-weight: 800; font-size: 13px;
    padding: 12px 20px; border-radius: 12px; text-decoration: none; margin-top: 14px;
}
.pl-btn-sm { margin-top: 0; }
.pl-btn-block { width: 100%; margin-top: 18px; }
.pl-btn-light { background: #fff; color: #111; }
.pl-img-card, .pl-img-wrap { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 12px 30px rgba(14,19,27,.1); }
.pl-img { display: block; width: 100%; height: auto; }
.pl-float {
    position: absolute; top: 20px; background: rgba(255,255,255,.95); border-radius: 14px;
    padding: 10px 14px; font-size: 12px; font-weight: 800; box-shadow: 0 8px 20px rgba(0,0,0,.1);
}
.pl-float-left { left: 20px; }
.pl-float-right { right: 20px; }
.pl-features-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pl-feature-pill { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; }
.pl-feature-ico {
    width: 34px; height: 34px; border-radius: 12px; background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.08);
    display: grid; place-items: center; color: var(--elp-orange);
}
.pl-steps { display: grid; gap: 10px; margin-bottom: 14px; }
.pl-step { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--elp-line); border-radius: 16px; padding: 14px 16px; }
.pl-step-n { width: 36px; height: 36px; border-radius: 12px; background: var(--elp-orange); color: #fff; font-weight: 800; display: grid; place-items: center; }
.pl-step-t { font-weight: 800; font-size: 14px; }
.pl-subtitle {
    margin: 0 0 12px;
    font-family: var(--elp-font-head);
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 700;
    color: var(--elp-muted);
    line-height: 1.4;
}
.pl-subtitle.mb { margin-bottom: 16px; }
.pl-acc { display: grid; gap: 10px; margin-bottom: 14px; }
.pl-acc-item { background: #fff; border: 1px solid var(--elp-line); border-radius: 16px; overflow: hidden; }
.pl-acc-btn {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
    padding: 16px 18px; background: transparent; border: 0; text-align: left;
    font-weight: 800; font-size: 14px; color: #1a1a1a; cursor: pointer;
}
.pl-acc-btn [data-pl-acc-ico] {
    flex: 0 0 auto; width: 28px; height: 28px; border-radius: 999px;
    display: grid; place-items: center; background: #f3f4f6; font-size: 18px; line-height: 1; color: #333;
}
.pl-acc-panel { padding: 0 18px 16px; font-size: 13px; color: var(--elp-muted); line-height: 1.55; }
.pl-acc-panel.hidden { display: none; }
.pl-section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 18px; }
.pl-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.pl-benefit {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, .04);
}
.pl-benefit-ico {
    width: auto; height: auto; margin-bottom: 18px;
    background: transparent; border-radius: 0; display: block; padding: 0; color: inherit;
}
.pl-benefit-ico svg { display: block; }
.pl-benefit-t {
    font-weight: 800;
    font-size: clamp(18px, 1.6vw, 22px);
    color: #1a1f2e;
    margin-bottom: 10px;
    line-height: 1.25;
}
.pl-benefit-d { font-size: 14px; color: #6b7280; line-height: 1.55; }
.pl-center { text-align: center; }
.pl-compare-table {
    position: relative;
    max-width: 920px;
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: 1.05fr 1.2fr 1.2fr;
}
.pl-compare-highlight {
    position: absolute;
    top: 0; bottom: 0;
    left: calc(1.05 / 3.45 * 100%);
    width: calc(1.2 / 3.45 * 100%);
    background: #fff6cf;
    border-radius: 28px;
    z-index: 0;
    pointer-events: none;
}
.pl-compare-row {
    display: contents;
}
.pl-compare-cell {
    position: relative;
    z-index: 1;
    padding: 18px 16px;
    border-bottom: 1px solid #ececec;
    font-size: 14px;
    color: #2b2b2b;
    line-height: 1.4;
}
.pl-compare-head .pl-compare-cell { border-bottom-color: #e5e5e5; }
.pl-compare-cell.is-label {
    text-align: left;
    color: #1a1a1a;
}
.pl-compare-cell.is-mid,
.pl-compare-cell.is-alt {
    text-align: center;
}
.pl-compare-logo {
    display: inline-block;
    font-family: var(--elp-font-head);
    font-weight: 900;
    font-size: 22px;
    color: var(--elp-orange);
    letter-spacing: -.02em;
}
.pl-compare-head .is-alt {
    font-weight: 800;
    font-size: 15px;
}
.pl-compare-cta-row .pl-compare-cell {
    border-bottom: 0;
    padding-top: 22px;
    padding-bottom: 8px;
}
.pl-compare-cta-row .pl-btn {
    margin-top: 0;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 14px;
}
/* legacy compare cards kept for safety */
.pl-compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.pl-compare-card { background: #fff; border: 1px solid var(--elp-line); border-radius: 22px; padding: 22px; }
.pl-compare-card.is-highlight { background: #fff4d6; border-color: rgba(0,0,0,.08); }
.pl-compare-h, .pl-compare-brand { font-weight: 800; margin-bottom: 14px; }
.pl-compare-brand { text-align: center; color: var(--elp-orange); font-size: 20px; }
.pl-compare-rows, .pl-compare-list { display: grid; gap: 12px; font-size: 13px; }
.pl-compare-rows > div { display: flex; justify-content: space-between; gap: 10px; }
.pl-map { background: #5b3fd6; border-radius: 28px; padding: 40px; color: #fff; }
.pl-map-n { font-family: var(--elp-font-head); font-size: clamp(28px, 4vw, 36px); font-weight: 800; margin-bottom: 8px; }
.pl-map-s { opacity: .85; margin-bottom: 18px; font-size: 14px; }
.pl-logos { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; margin-top: 22px; opacity: .7; font-size: 12px; font-weight: 800; letter-spacing: .08em; color: #9a9a9a; }
.pl-faq { max-width: 860px; margin: 0 auto; display: grid; gap: 10px; }
.pl-faq-item { background: #fff; border: 1px solid var(--elp-line); border-radius: 16px; overflow: hidden; }
.pl-faq-btn { width: 100%; display: flex; justify-content: space-between; gap: 12px; padding: 16px 18px; background: transparent; border: 0; text-align: left; font-weight: 800; font-size: 14px; cursor: pointer; }
.pl-faq-panel { padding: 0 18px 16px; font-size: 13px; color: var(--elp-muted); line-height: 1.55; }
.pl-faq-panel.hidden { display: none; }
.pl-center.mt { margin-top: 24px; }

@media (max-width: 1024px) {
    .pl-benefits { grid-template-columns: repeat(2, 1fr); }
    .pl-compare { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .pl-hero-grid, .pl-split, .pl-features-row { grid-template-columns: 1fr; }
    .pl-section-head { flex-direction: column; align-items: flex-start; }
    .pl-compare-table {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .pl-compare-highlight { display: none; }
    .pl-compare-row {
        display: grid;
        grid-template-columns: 1fr;
        background: #fff;
        border: 1px solid #ececec;
        border-radius: 18px;
        margin-bottom: 10px;
        overflow: hidden;
    }
    .pl-compare-head { display: none; }
    .pl-compare-cell {
        border-bottom: 1px solid #f0f0f0;
        text-align: left !important;
        padding: 14px 16px;
    }
    .pl-compare-cell.is-label {
        background: #fafafa;
    }
    .pl-compare-cell.is-mid {
        background: #fff6cf;
        font-weight: 700;
    }
    .pl-compare-cell.is-mid::before,
    .pl-compare-cell.is-alt::before {
        display: block;
        font-size: 11px;
        font-weight: 800;
        color: #888;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .pl-compare-cell.is-mid::before { content: "ERP Alimentos"; color: var(--elp-orange); }
    .pl-compare-cell.is-alt::before { content: "Sin ERP Alimentos"; }
    .pl-compare-cta-row .pl-compare-cell.is-label,
    .pl-compare-cta-row .pl-compare-cell.is-alt { display: none; }
    .pl-compare-cta-row .pl-compare-cell.is-mid::before { display: none; }
}
@media (max-width: 640px) {
    .pl-benefits { grid-template-columns: 1fr; }
}


/* ===== Partners + Legal pages ===== */
.partners-split { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.partners-kicker { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #ff7a2f; margin-bottom: 8px; }
.partners-title { margin: 0 0 10px; font-size: clamp(24px, 3vw, 34px); font-weight: 800; line-height: 1.15; color: #111827; }
.partners-sub { margin: 0 0 20px; color: #4b5563; line-height: 1.55; }
.partners-ticks { display: grid; gap: 14px; }
.partners-tick { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.partners-tick-icon { color: #16a34a; font-size: 18px; margin-top: 2px; }
.partners-tick-title { font-weight: 800; color: #111827; margin-bottom: 2px; }
.partners-tick-text { color: #6b7280; font-size: 14px; line-height: 1.45; }
.partners-form-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 22px; box-shadow: 0 12px 40px rgba(17,24,39,.08); }
.partners-form-title { font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.partners-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.partners-field label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 4px; color: #374151; }
.partners-field input, .partners-field select { width: 100%; border: 1px solid #e5e7eb; border-radius: 10px; padding: 10px 12px; font-size: 14px; }
.partners-field-wide { grid-column: 1 / -1; }
.partners-form-actions { margin-top: 14px; display: grid; gap: 8px; }
.partners-submit { border: 0; border-radius: 999px; background: #ff7a2f; color: #fff; font-weight: 800; padding: 12px 18px; cursor: pointer; }
.partners-note { font-size: 13px; color: #b45309; min-height: 18px; }
.partners-respaldo-media img { width: 100%; max-width: 420px; border-radius: 18px; display: block; }
.partners-stories { position: relative; overflow: hidden; color: #fff; }
.partners-stories-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.45); }
.partners-stories-inner { position: relative; z-index: 1; padding: 48px 0; }
.partners-stories .partners-title, .partners-stories .partners-sub { color: #fff; }
.partners-stories .partners-kicker { color: #ffb38a; }
.partners-video-card { width: 100%; min-height: 220px; border: 0; border-radius: 18px; background: rgba(0,0,0,.35); color: #fff; display: grid; place-items: center; gap: 8px; cursor: pointer; }
.partners-video-play { width: 64px; height: 64px; border-radius: 50%; background: #ff7a2f; display: grid; place-items: center; font-size: 22px; }
.partners-video-modal { position: fixed; inset: 0; z-index: 120; display: none; }
.partners-video-modal.is-open { display: block; }
.partners-video-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.65); }
.partners-video-panel { position: relative; z-index: 1; width: min(900px, 94vw); margin: 8vh auto; background: #000; border-radius: 14px; overflow: hidden; }
.partners-video-close { position: absolute; right: 10px; top: 8px; z-index: 2; border: 0; background: transparent; color: #fff; font-size: 28px; cursor: pointer; }
.partners-video-embed { position: relative; padding-top: 56.25%; }
.partners-video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.legal-section { padding-top: 24px; }
.legal-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 18px; padding: 28px; }
.legal-prose h2 { margin: 28px 0 10px; font-size: 20px; font-weight: 800; color: #111827; }
.legal-prose p, .legal-prose li { color: #374151; line-height: 1.65; }
.legal-prose ul { padding-left: 1.2em; margin: 8px 0 0; }
.legal-lead { font-size: 16px; margin: 0 0 8px; }
.legal-updated { margin-top: 18px; color: #6b7280; font-size: 13px; }
.legal-block { margin-top: 22px; }
.legal-block-title { margin: 0 0 8px; font-size: 18px; font-weight: 800; }
.legal-email-highlight a, .legal-subject-tag { display: inline-block; font-weight: 800; color: #ff7a2f; }
.legal-subject-tag { background: #fff7ed; border-radius: 999px; padding: 6px 12px; margin: 8px 0; }
.legal-list { margin: 8px 0 0; padding-left: 1.2em; }
.legal-block--note { background: #f9fafb; border-radius: 12px; padding: 14px; }
.legal-actions { margin-top: 24px; }
.legal-btn-primary { display: inline-flex; align-items: center; border-radius: 999px; background: #ff7a2f; color: #fff; font-weight: 800; padding: 12px 18px; text-decoration: none; }

@media (max-width: 900px) {
  .partners-split, .partners-form-grid { grid-template-columns: 1fr; }
}


/* ===== Megamenu Soluciones ===== */
.elp-nav,
.elp-nav .elp-nav-inner,
.elp-nav .elp-nav-links {
  overflow: visible;
}
.elp-mega { position: relative; display: flex; align-items: center; }
.elp-mega-trigger {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  color: inherit; font: inherit; font-weight: inherit; padding: 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.elp-nav .elp-mega-trigger,
.elp-nav--inner .elp-mega-trigger {
  font-size: inherit;
  line-height: inherit;
}
.elp-mega-trigger i { font-size: 10px; opacity: .85; transition: transform .2s; }
.elp-mega.is-open .elp-mega-trigger i { transform: rotate(180deg); }
.elp-mega-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: min(860px, 92vw); z-index: 120;
  padding-top: 14px; /* puente para no cerrar al pasar el mouse */
  background: transparent; border: 0; box-shadow: none;
}
.elp-mega-panel[hidden] { display: none !important; }
.elp-mega-panel-inner {
  background: #fff; color: #111827;
  border-radius: 18px; box-shadow: 0 24px 60px rgba(17,24,39,.18);
  padding: 22px; border: 1px solid #e5e7eb;
}
.elp-mega-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px;
}
.elp-mega-card {
  display: flex; flex-direction: column; gap: 8px; text-decoration: none !important;
  color: #111827 !important; cursor: pointer; position: relative; z-index: 1;
}
.elp-nav .elp-mega-card,
.elp-nav .elp-mega-card:hover,
.elp-nav--inner .elp-mega-card,
.elp-nav--inner .elp-mega-card:hover {
  color: #111827 !important;
}
.elp-mega-index { font-size: 12px; font-weight: 700; color: #9ca3af; letter-spacing: .04em; }
.elp-mega-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px;
  background: #f3f4f6; display: block; pointer-events: none;
}
.elp-mega-title {
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; color: #111827;
}
.elp-mega-desc { font-size: 12px; line-height: 1.45; color: #6b7280; }
.elp-mega-agents {
  margin-top: 16px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 14px;
  padding: 12px 14px; text-decoration: none !important; color: #065f46 !important;
  cursor: pointer; position: relative; z-index: 1;
}
.elp-nav .elp-mega-agents,
.elp-nav .elp-mega-agents:hover,
.elp-nav--inner .elp-mega-agents,
.elp-nav--inner .elp-mega-agents:hover {
  color: #065f46 !important;
}
.elp-mega-agents-icon {
  width: 34px; height: 34px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; flex: 0 0 auto; pointer-events: none;
}
.elp-mega-agents-copy { display: grid; gap: 2px; flex: 1 1 auto; min-width: 180px; pointer-events: none; }
.elp-mega-agents-copy strong { font-size: 13px; color: #064e3b; }
.elp-mega-agents-copy span { font-size: 12px; color: #047857; }
.elp-mega-agents-cta { font-size: 13px; font-weight: 800; color: #047857; margin-left: auto; pointer-events: none; }
.elp-drawer-mega { display: grid; gap: 2px; padding: 8px 0; border-top: 1px solid rgba(0,0,0,.06); border-bottom: 1px solid rgba(0,0,0,.06); margin: 6px 0; }
.elp-drawer-mega-title { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #9ca3af; padding: 6px 0; }
@media (max-width: 1100px) {
  .elp-mega-panel { left: 0; transform: none; width: min(720px, 92vw); }
}


/* ===== Solution marketing pages ===== */
.elp-page-solucion .sol-intro,
.elp-page-solucion .sol-cards,
.elp-page-solucion .sol-split,
.elp-page-solucion .sol-stats,
.elp-page-solucion .sol-hire,
.elp-page-solucion .elp-marquee,
.elp-page-solucion .sol-faq,
.elp-page-solucion .sol-closing {
  margin-top: 80px;
  margin-bottom: 80px;
  padding-top: 0;
  padding-bottom: 0;
}
.elp-page-solucion .elp-breadcrumbs {
  margin-bottom: 0;
}
.sol-intro-grid, .sol-split-grid, .sol-closing-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center;
}
.sol-split-grid.is-reverse { direction: rtl; }
.sol-split-grid.is-reverse > * { direction: ltr; }
.sol-carousel {
  position: relative; border-radius: 22px; overflow: hidden; background: #f3f4f6; min-height: 320px;
}
.sol-carousel-slide {
  display: none; width: 100%; height: 360px; object-fit: cover;
}
.sol-carousel-slide.is-active { display: block; }
.sol-carousel-dots {
  position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 8px;
}
.sol-carousel-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.55); cursor: pointer;
}
.sol-carousel-dots button.is-active { background: #ff6b4a; }
.sol-intro-copy h2, .sol-split-copy h2, .sol-closing-copy h2 { margin: 0 0 12px; font-size: clamp(24px, 3vw, 34px); font-weight: 800; }
.sol-intro-copy p, .sol-split-copy p, .sol-closing-copy p { color: #4b5563; line-height: 1.6; margin: 0 0 16px; }
.sol-ticks { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 10px; }
.sol-ticks li { display: flex; gap: 10px; align-items: flex-start; color: #374151; font-size: 14px; line-height: 1.45; }
.sol-ticks i { color: #16a34a; margin-top: 2px; }
.sol-cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.sol-card { position: relative; border-radius: 18px; overflow: hidden; min-height: 240px; }
.sol-card img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 240px; }
.sol-card-overlay {
  position: absolute; inset: auto 0 0 0; padding: 18px; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
}
.sol-card-overlay h3 { margin: 0 0 6px; font-size: 16px; font-weight: 800; }
.sol-card-overlay p { margin: 0; font-size: 13px; opacity: .92; }
.sol-split-media img, .sol-closing-media img {
  width: 100%; border-radius: 20px; display: block; object-fit: cover; max-height: 420px;
}
.sol-stats {
  position: relative; background-size: cover; background-position: center; min-height: 280px;
}
.sol-stats-overlay {
  background: rgba(14,19,27,.62); color: #fff; padding: 56px 0;
}
.sol-stats-title { text-align: center; margin: 0 0 28px; font-size: 28px; font-weight: 800; }
.sol-stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; text-align: center; }
.sol-stat-value { font-size: clamp(32px, 5vw, 48px); font-weight: 800; color: #ffb38a; }
.sol-stat-label { margin-top: 6px; font-size: 14px; opacity: .92; }
.sol-hire-note { margin-top: 14px; font-size: 13px; color: #6b7280; }
.sol-closing-grid { grid-template-columns: .9fr 1.1fr; }
@media (max-width: 900px) {
  .sol-intro-grid, .sol-split-grid, .sol-closing-grid, .sol-cards-grid, .sol-stats-grid { grid-template-columns: 1fr; }
  .sol-split-grid.is-reverse { direction: ltr; }
  .sol-carousel-slide { height: 260px; }
}
