/* ==========================================================================
   EDRA LANDING V2 — rediseño con bento, sticky mobile y chatbot-first
   Reutiliza tokens de global.css del sitio principal.
   ========================================================================== */

/* Reset suave para el rediseño */
.lpv2 *, .lpv2 *::before, .lpv2 *::after { box-sizing: border-box; }
.lpv2 { color: var(--color-gray-dark, #1E293B); font-family: var(--font-body, 'Inter', sans-serif); }

/* ==========================================================================
   Topbar minimalista
   ========================================================================== */
.lpv2-topbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 24px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lpv2-topbar__logo img { height: 32px; display: block; }
.lpv2-topbar__cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #00B4D8, #48CAE4);
    color: #fff; font-weight: 600; font-size: 14px;
    border: 0; border-radius: 99px; cursor: pointer;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}
.lpv2-topbar__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,180,216,0.5); color: #fff; }
.lpv2-topbar__cta svg { width: 16px; height: 16px; }
@media (max-width: 600px) {
    .lpv2-topbar { padding: 10px 14px; }
    .lpv2-topbar__cta { padding: 7px 12px; font-size: 13px; }
    .lpv2-topbar__cta-label { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.lpv2-hero {
    position: relative; overflow: hidden;
    min-height: 92vh;
    color: #fff;
    display: flex; align-items: center;
    background: #0A1128;
}
.lpv2-hero__bg {
    position: absolute; inset: 0;
    z-index: 0;
    overflow: hidden;
}
.lpv2-hero__bg img,
.lpv2-hero__bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.lpv2-hero__bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,17,40,0.6) 0%, rgba(10,17,40,0.85) 100%),
                linear-gradient(90deg, rgba(27,42,92,0.7) 0%, transparent 50%);
}
.lpv2-hero__inner {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
    padding: 80px 24px;
    width: 100%;
}
.lpv2-hero__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.4);
    border-radius: 99px;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: #48CAE4;
    margin-bottom: 24px;
}
.lpv2-hero__h1 {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 20px;
    max-width: 820px;
    color: #fff;
}
.lpv2-hero__h1 em {
    background: linear-gradient(135deg, #00B4D8, #90E0EF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: normal;
}
.lpv2-hero__lead {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 0 36px;
}
.lpv2-hero__badges {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 36px;
}
.lpv2-hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 99px;
    font-size: 13px; font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.lpv2-hero__badge svg { width: 16px; height: 16px; color: #48CAE4; }
.lpv2-hero__cta-row {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.lpv2-cta-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #00B4D8 0%, #48CAE4 100%);
    color: #0A1128;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-weight: 700; font-size: 16px;
    border: 0; border-radius: 99px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(0, 180, 216, 0.45);
    transition: transform .15s, box-shadow .15s;
}
.lpv2-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 180, 216, 0.6);
    color: #0A1128;
}
.lpv2-cta-primary svg { width: 20px; height: 20px; }
.lpv2-cta-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 24px;
    background: transparent;
    color: #fff;
    font-weight: 600; font-size: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 99px; cursor: pointer;
    text-decoration: none;
    transition: background .15s, border-color .15s;
}
.lpv2-cta-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: #fff; }

/* ==========================================================================
   Trust bar — industrias
   ========================================================================== */
.lpv2-trustbar {
    background: #fff; border-bottom: 1px solid #E2E8F0;
    padding: 16px 0; overflow: hidden;
}
.lpv2-trustbar__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 24px;
}
.lpv2-trustbar__label {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: #64748B;
    flex-shrink: 0;
}
.lpv2-trustbar__items {
    display: flex; gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
}
.lpv2-trustbar__items::-webkit-scrollbar { display: none; }
.lpv2-trustbar__chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: #F1F5F9;
    border-radius: 99px;
    font-size: 13px; font-weight: 500;
    color: #334155;
    white-space: nowrap;
    flex-shrink: 0;
}
.lpv2-trustbar__chip svg { width: 14px; height: 14px; color: #00B4D8; }
@media (max-width: 600px) {
    .lpv2-trustbar__inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .lpv2-trustbar__items { width: 100%; }
}

/* ==========================================================================
   Section wrapper
   ========================================================================== */
.lpv2-section { padding: 80px 24px; }
.lpv2-section--gray { background: #F8FAFC; }
.lpv2-section--dark { background: #0A1128; color: #fff; }
.lpv2-section__inner { max-width: 1200px; margin: 0 auto; }
.lpv2-section__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.lpv2-section__eyebrow {
    display: inline-block;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: #00B4D8;
    margin-bottom: 12px;
}
.lpv2-section__title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800; line-height: 1.15;
    margin: 0 0 16px;
    color: #0A1128;
}
.lpv2-section--dark .lpv2-section__title { color: #fff; }
.lpv2-section__sub {
    font-size: 1rem; line-height: 1.6; color: #64748B; margin: 0;
}
.lpv2-section--dark .lpv2-section__sub { color: rgba(255,255,255,0.7); }
@media (max-width: 600px) { .lpv2-section { padding: 56px 16px; } }

/* ==========================================================================
   BENTO GRID — capacidades
   ========================================================================== */
.lpv2-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.lpv2-bento__card {
    background: #fff; border-radius: 20px;
    padding: 28px;
    border: 1px solid #E2E8F0;
    overflow: hidden; position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex; flex-direction: column;
}
.lpv2-bento__card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,23,42,0.1); }
.lpv2-bento__card--xl { grid-column: span 2; grid-row: span 2; min-height: 360px; }
.lpv2-bento__card--lg { grid-column: span 2; min-height: 220px; }
.lpv2-bento__card--accent {
    background: linear-gradient(135deg, #1B2A5C 0%, #2A3F7E 100%);
    color: #fff; border: 0;
}
.lpv2-bento__card--cyan {
    background: linear-gradient(135deg, #00B4D8 0%, #48CAE4 100%);
    color: #0A1128; border: 0;
}
.lpv2-bento__card--image {
    padding: 0; min-height: 280px;
    background-size: cover; background-position: center;
}
.lpv2-bento__card--image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,17,40,0.85) 100%);
}
.lpv2-bento__card--image .lpv2-bento__body {
    position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 1;
    color: #fff;
}
.lpv2-bento__icon {
    width: 48px; height: 48px;
    background: rgba(0, 180, 216, 0.12);
    color: #00B4D8;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.lpv2-bento__card--accent .lpv2-bento__icon,
.lpv2-bento__card--cyan .lpv2-bento__icon {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.lpv2-bento__card--cyan .lpv2-bento__icon { color: #0A1128; background: rgba(10,17,40,0.12); }
.lpv2-bento__icon svg { width: 26px; height: 26px; }
.lpv2-bento__big {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900; line-height: 1;
    margin: 0 0 8px;
}
.lpv2-bento__title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-weight: 700; font-size: 1.05rem;
    margin: 0 0 8px;
    color: #0A1128;
}
.lpv2-bento__big { color: inherit; }
.lpv2-bento__text {
    font-size: 0.92rem; line-height: 1.55;
    color: #475569; margin: 0;
    flex: 1;
}
/* Cards con fondo oscuro: forzar título blanco (override del global.css) */
.lpv2-bento__card--accent .lpv2-bento__title,
.lpv2-bento__card--image .lpv2-bento__title { color: #fff; }
.lpv2-bento__card--cyan .lpv2-bento__title { color: #0A1128; }
.lpv2-bento__card--accent .lpv2-bento__text,
.lpv2-bento__card--image .lpv2-bento__text { color: rgba(255,255,255,0.85); }
.lpv2-bento__card--cyan .lpv2-bento__text { color: rgba(10,17,40,0.75); }
@media (max-width: 880px) {
    .lpv2-bento { grid-template-columns: repeat(2, 1fr); }
    .lpv2-bento__card--xl, .lpv2-bento__card--lg { grid-column: span 2; grid-row: auto; min-height: auto; }
}
@media (max-width: 480px) {
    .lpv2-bento { grid-template-columns: 1fr; }
    .lpv2-bento__card--xl, .lpv2-bento__card--lg { grid-column: span 1; }
}

/* ==========================================================================
   Piezas — chips + showcase
   ========================================================================== */
.lpv2-pieces {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: center;
}
@media (max-width: 880px) { .lpv2-pieces { grid-template-columns: 1fr; gap: 24px; } }
.lpv2-pieces__chips {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 24px;
}
.lpv2-pieces__chip {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #CBD5E1;
    border-radius: 99px;
    font-size: 13px; font-weight: 500; color: #334155;
    transition: all .15s ease;
}
.lpv2-pieces__chip:hover { background: #00B4D8; color: #fff; border-color: #00B4D8; transform: translateY(-1px); }
.lpv2-pieces__cta-card {
    margin-top: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(0,180,216,0.08), rgba(72,202,228,0.08));
    border: 1px dashed rgba(0,180,216,0.4);
    border-radius: 16px;
    display: flex; align-items: center; gap: 16px;
}
.lpv2-pieces__cta-text {
    flex: 1;
    font-size: 14px; line-height: 1.5; color: #334155;
}
.lpv2-pieces__cta-text strong { color: #0A1128; display: block; margin-bottom: 2px; }
.lpv2-pieces__showcase {
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 24px 60px rgba(15,23,42,0.18);
    aspect-ratio: 4/5;
    background: #0A1128;
}
.lpv2-pieces__showcase img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ==========================================================================
   Why EDRA — split
   ========================================================================== */
.lpv2-why {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 880px) { .lpv2-why { grid-template-columns: 1fr; } }
.lpv2-why__media {
    border-radius: 24px; overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 30px 60px rgba(15,23,42,0.2);
    position: relative;
}
.lpv2-why__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lpv2-why__badge {
    position: absolute; bottom: 24px; left: 24px;
    background: rgba(10,17,40,0.85);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.lpv2-why__badge-num {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1.6rem; font-weight: 900; line-height: 1;
    color: #48CAE4;
}
.lpv2-why__badge-label { font-size: 12px; opacity: 0.8; margin-top: 2px; }
.lpv2-why__list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.lpv2-why__item {
    display: flex; gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    transition: border-color .15s, transform .15s;
}
.lpv2-why__item:hover { border-color: #00B4D8; transform: translateX(4px); }
.lpv2-why__item-icon {
    width: 32px; height: 32px;
    background: rgba(0,180,216,0.12); color: #00B4D8;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lpv2-why__item-icon svg { width: 18px; height: 18px; }
.lpv2-why__item-text strong { display: block; font-weight: 700; color: #0A1128; margin-bottom: 2px; font-size: 0.95rem; }
.lpv2-why__item-text span { font-size: 0.85rem; color: #64748B; line-height: 1.4; }

/* ==========================================================================
   Materiales
   ========================================================================== */
.lpv2-mats {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}
/* Variante con 5 materiales (corte láser) */
.lpv2-mats--5 { grid-template-columns: repeat(5, 1fr); }
.lpv2-mat {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 18px 8px;
    text-align: center;
    transition: all .2s ease;
}
.lpv2-mat:hover { border-color: #00B4D8; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,180,216,0.15); }
.lpv2-mat__icon {
    width: 44px; height: 44px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B2A5C, #2A3F7E);
    color: #48CAE4;
    display: flex; align-items: center; justify-content: center;
}
.lpv2-mat__icon svg { width: 22px; height: 22px; }
.lpv2-mat__name { font-family: var(--font-heading, 'Montserrat', sans-serif); font-weight: 700; font-size: 0.82rem; color: #0A1128; margin: 0; line-height: 1.25; }
@media (max-width: 1100px) {
    .lpv2-mats     { grid-template-columns: repeat(4, 1fr); }
    .lpv2-mats--5  { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 720px) {
    .lpv2-mats--5  { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
    .lpv2-mats     { grid-template-columns: repeat(2, 1fr); }
    .lpv2-mats--5  { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Specs — tabla
   ========================================================================== */
.lpv2-specs { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.lpv2-specs__row {
    display: grid; grid-template-columns: 1fr 2fr;
    padding: 16px 24px;
    border-bottom: 1px solid #E2E8F0;
    align-items: center;
}
.lpv2-specs__row:last-child { border-bottom: 0; }
.lpv2-specs__row:nth-child(odd) { background: #F8FAFC; }
.lpv2-specs__key { font-weight: 600; color: #334155; font-size: 0.92rem; }
.lpv2-specs__val { font-size: 0.95rem; color: #0A1128; }
.lpv2-specs__val strong { color: #00B4D8; }
@media (max-width: 600px) {
    .lpv2-specs__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
}

/* ==========================================================================
   Stats bar — sin cambios mayores, solo polish
   ========================================================================== */
.lpv2-stats {
    background: linear-gradient(135deg, #0A1128 0%, #1B2A5C 100%);
    color: #fff; padding: 60px 24px;
    position: relative; overflow: hidden;
}
.lpv2-stats::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0,180,216,0.15) 0%, transparent 50%);
}
.lpv2-stats__inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    position: relative; z-index: 1;
}
.lpv2-stats__item { text-align: center; }
.lpv2-stats__num {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
    background: linear-gradient(135deg, #48CAE4, #90E0EF);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1;
}
.lpv2-stats__label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.75); margin-top: 8px; }
@media (max-width: 600px) { .lpv2-stats__inner { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   FAQ-Chat — sección que invita a usar el chat para preguntas
   ========================================================================== */
.lpv2-faqchat {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 880px) { .lpv2-faqchat { grid-template-columns: 1fr; } }
.lpv2-faqchat__list { display: flex; flex-direction: column; gap: 12px; }
.lpv2-faqchat__item {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all .2s ease;
    color: #334155;
    font-size: 0.95rem;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    text-align: left;
    width: 100%;
    font-family: inherit;
}
.lpv2-faqchat__item:hover { border-color: #00B4D8; background: #F0F9FF; transform: translateX(4px); }
.lpv2-faqchat__item svg { width: 18px; height: 18px; color: #00B4D8; flex-shrink: 0; }
.lpv2-faqchat__visual {
    background: linear-gradient(135deg, #1B2A5C, #00B4D8);
    color: #fff;
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    position: relative; overflow: hidden;
}
.lpv2-faqchat__visual::before {
    content: ''; position: absolute; inset: -20%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: lpv2-pulse 4s ease-in-out infinite;
    pointer-events: none;
}
.lpv2-faqchat__visual .lpv2-cta-primary { position: relative; z-index: 2; }
@keyframes lpv2-pulse { 50% { transform: scale(1.1); opacity: 0.7; } }
.lpv2-faqchat__avatar {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem; font-weight: 800;
    border: 2px solid rgba(255,255,255,0.3);
    position: relative; z-index: 1;
}
.lpv2-faqchat__visual h3 {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1.6rem; font-weight: 800; margin: 0 0 12px;
    color: #fff;
    position: relative; z-index: 1;
}
.lpv2-faqchat__visual p {
    font-size: 0.95rem; max-width: 320px; margin: 0 auto 24px;
    color: rgba(255,255,255,0.92);
    line-height: 1.5; position: relative; z-index: 1;
}

/* ==========================================================================
   Cierre final
   ========================================================================== */
.lpv2-final {
    background: radial-gradient(ellipse at top, #1B2A5C 0%, #0A1128 70%);
    color: #fff;
    padding: 100px 24px;
    text-align: center;
    position: relative; overflow: hidden;
}
.lpv2-final::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(0,180,216,0.12) 0%, transparent 40%),
                      radial-gradient(circle at 80% 20%, rgba(72,202,228,0.1) 0%, transparent 40%);
}
.lpv2-final__inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.lpv2-final h2 {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
    margin: 0 0 16px;
    color: #fff;
    line-height: 1.15;
}
.lpv2-final p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    max-width: 540px; margin: 0 auto 36px;
    line-height: 1.6;
}
.lpv2-final .lpv2-cta-primary { font-size: 17px; padding: 18px 36px; }

/* ==========================================================================
   Footer simplificado
   ========================================================================== */
.lpv2-footer {
    background: #0A1128;
    color: rgba(255,255,255,0.7);
    padding: 48px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.lpv2-footer__inner { max-width: 1200px; margin: 0 auto; }
.lpv2-footer__top {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lpv2-footer__brand img { height: 32px; margin-bottom: 12px; }
.lpv2-footer__brand p { font-size: 0.9rem; line-height: 1.6; max-width: 360px; }
.lpv2-footer__col h4 {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: #fff; margin: 0 0 12px;
}
.lpv2-footer__col ul { list-style: none; padding: 0; margin: 0; }
.lpv2-footer__col li { padding: 4px 0; font-size: 0.9rem; }
.lpv2-footer__bottom {
    padding-top: 24px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 0.8rem; opacity: 0.6;
}
@media (max-width: 720px) {
    .lpv2-footer__top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Sticky bottom bar (mobile-first CTA)
   ========================================================================== */
.lpv2-sticky-bottom {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: rgba(10,17,40,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,0.08);
    display: none;
    transform: translateY(100%);
    transition: transform .35s ease;
}
.lpv2-sticky-bottom--visible { transform: translateY(0); }
.lpv2-sticky-bottom__btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #00B4D8 0%, #48CAE4 100%);
    color: #0A1128;
    font-weight: 700; font-size: 15px;
    border: 0; border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,180,216,0.4);
    font-family: var(--font-heading, 'Montserrat', sans-serif);
}
.lpv2-sticky-bottom__btn svg { width: 20px; height: 20px; }
@media (max-width: 880px) {
    .lpv2-sticky-bottom { display: block; }
    /* Espacio extra al final para no tapar contenido */
    .lpv2-footer { padding-bottom: 100px; }
}

/* ==========================================================================
   Animaciones de scroll básicas (sin dependencia de animations.css)
   ========================================================================== */
.lpv2-anim {
    opacity: 0; transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}
.lpv2-anim--visible { opacity: 1; transform: translateY(0); }

/* Ocultar el FAB del chatbot cuando hay sticky bottom (móvil) */
@media (max-width: 880px) {
    .fcnc-fab { bottom: 96px !important; }
}
