﻿/* ===================================================================
   LANDING PRESTADORES — Destino La Rioja
   Estilo: limpio, calido, identidad riojana
   Archivo: recursos/css/landing/landing-prestadores.css
=================================================================== */

:root {
    --lp-bordo: #8B1D1D;
    --lp-bordo-l: rgba(139,29,29,0.08);
    --lp-dorado: #D4AF37;
    --lp-dark: #1a0a0a;
    --lp-text: #2d1a1a;
    --lp-muted: #7a6060;
    --lp-border: rgba(139,29,29,0.1);
    --lp-bg: #fdf9f7;
    --lp-white: #ffffff;
    --lp-radius: 14px;
}

/* ── Reset secciones ─────────────────────────────────────────────── */
.lp-section {
    padding: 5rem 0;
}

.lp-section-alt {
    background: var(--lp-bg);
}

.lp-container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Tipografía de sección ───────────────────────────────────────── */
.lp-kicker {
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--lp-bordo);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

    .lp-kicker::before {
        content: "";
        width: 18px;
        height: 2px;
        background: var(--lp-bordo);
        border-radius: 2px;
        flex-shrink: 0;
    }

.lp-titulo {
    font-size: clamp(1.65rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: var(--lp-dark);
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.lp-desc {
    font-size: 1rem;
    color: var(--lp-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

/* ── Botones ─────────────────────────────────────────────────────── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.lp-btn-solid {
    background: var(--lp-bordo);
    color: #fff;
    box-shadow: 0 4px 16px rgba(139,29,29,0.25);
}

    .lp-btn-solid:hover {
        background: #6d1717;
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(139,29,29,0.32);
    }

.lp-btn-outline {
    background: transparent;
    color: var(--lp-bordo);
    border: 1.5px solid var(--lp-border);
}

    .lp-btn-outline:hover {
        border-color: var(--lp-bordo);
        background: var(--lp-bordo-l);
        color: var(--lp-bordo);
    }

.lp-btn-lg {
    padding: 0.95rem 2rem;
    font-size: 0.96rem;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.lp-hero {
    background: var(--lp-bg);
    border-bottom: 1px solid var(--lp-border);
    padding: 5.5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

    /* Decoración geométrica sutil */
    .lp-hero::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(139,29,29,0.05) 0%, transparent 70%);
        pointer-events: none;
    }

    .lp-hero::after {
        content: "";
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
        pointer-events: none;
    }

.lp-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 860px) {
    .lp-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Columna izquierda */
.lp-hero-left {
}

.lp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--lp-bordo);
    background: var(--lp-bordo-l);
    border: 1px solid rgba(139,29,29,0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

    .lp-hero-eyebrow i {
        font-size: 0.6rem;
    }

.lp-hero-titulo {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--lp-dark);
    line-height: 1.15;
    margin-bottom: 1.1rem;
}

    .lp-hero-titulo em {
        font-style: normal;
        color: var(--lp-bordo);
    }

.lp-hero-sub {
    font-size: 1rem;
    color: var(--lp-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 420px;
}

.lp-hero-acciones {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

/* Stats debajo de los botones */
.lp-hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--lp-border);
    flex-wrap: wrap;
}

.lp-stat-item {
}

.lp-stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--lp-dark);
    line-height: 1;
    display: block;
}

.lp-stat-label {
    font-size: 0.7rem;
    color: var(--lp-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.2rem;
    display: block;
}

/* Columna derecha — card mockup */
.lp-hero-right {
    position: relative;
}

.lp-hero-mockup {
    background: var(--lp-white);
    border: 1px solid rgba(139,29,29,0.1);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 20px 60px rgba(139,29,29,0.08), 0 4px 16px rgba(15,23,42,0.04);
}

.lp-mockup-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139,29,29,0.06);
}

.lp-mockup-logo {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--lp-bordo);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.lp-mockup-empresa {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--lp-dark);
}

.lp-mockup-sub {
    font-size: 0.7rem;
    color: var(--lp-muted);
}

/* Mini KPIs en el mockup */
.lp-mockup-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.lp-mockup-kpi {
    background: var(--lp-bg);
    border-radius: 10px;
    padding: 0.85rem 0.65rem;
    text-align: center;
    border: 1px solid var(--lp-border);
}

.lp-mkpi-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.lp-mkpi-label {
    font-size: 0.6rem;
    color: var(--lp-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
    display: block;
}

.lp-mkpi-verde .lp-mkpi-num {
    color: #059669;
}

.lp-mkpi-azul .lp-mkpi-num {
    color: #2563eb;
}

.lp-mkpi-dorado .lp-mkpi-num {
    color: var(--lp-dorado);
}

/* Mini gráfico de barras decorativo */
.lp-mockup-grafico {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 52px;
    padding: 0 0.25rem;
    margin-bottom: 1.25rem;
}

.lp-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(139,29,29,0.08);
    transition: background 0.2s;
}

    .lp-bar.lp-bar-active {
        background: var(--lp-bordo);
    }

    .lp-bar.lp-bar-mid {
        background: rgba(139,29,29,0.35);
    }

/* Sugerencia IA en el mockup */
.lp-mockup-ia {
    background: linear-gradient(135deg, rgba(139,29,29,0.05), rgba(212,175,55,0.05));
    border: 1px solid rgba(139,29,29,0.1);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.lp-mockup-ia-icono {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--lp-bordo);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.lp-mockup-ia-titulo {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--lp-bordo);
    margin-bottom: 0.2rem;
}

.lp-mockup-ia-texto {
    font-size: 0.72rem;
    color: var(--lp-muted);
    line-height: 1.4;
}

/* Badge flotante sobre el mockup */
.lp-hero-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--lp-dorado);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(212,175,55,0.35);
    white-space: nowrap;
}

/* ══════════════════════════════════════════════
   PROBLEMA
══════════════════════════════════════════════ */
.lp-problema {
    padding: 4.5rem 0;
    background: var(--lp-white);
}

.lp-problema-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--lp-border);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .lp-problema-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lp-problema-item {
    background: var(--lp-white);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.lp-problema-emoji {
    font-size: 1.5rem;
    line-height: 1;
}

.lp-problema-texto {
    font-size: 0.85rem;
    color: var(--lp-text);
    line-height: 1.55;
    font-weight: 500;
    margin: 0;
}

.lp-problema-flecha {
    text-align: center;
    margin-top: 2rem;
    color: var(--lp-bordo);
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

    .lp-problema-flecha i {
        animation: arrowBounce 1.6s ease-in-out infinite;
    }

@keyframes arrowBounce {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(4px)
    }
}

/* ══════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════ */
.lp-features {
    padding: 5rem 0;
    background: var(--lp-bg);
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--lp-border);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
    margin-top: 2.5rem;
}

@media (max-width: 860px) {
    .lp-features-grid {
        grid-template-columns: 1fr;
    }
}

.lp-feature-item {
    background: var(--lp-white);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    transition: background 0.2s;
}

    .lp-feature-item:hover {
        background: #fffaf9;
    }

    .lp-feature-item.lp-feature-destacado {
        background: #fdf5f5;
        grid-column: span 1;
    }

@media (min-width: 860px) {
    .lp-feature-item.lp-feature-destacado {
        grid-column: span 2;
    }
}

.lp-feature-icono-wrap {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    border: 1px solid var(--lp-border);
    background: var(--lp-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-bordo);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.lp-feature-destacado .lp-feature-icono-wrap {
    background: var(--lp-bordo);
    color: #fff;
    border-color: var(--lp-bordo);
}

.lp-feature-tag {
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lp-bordo);
    background: var(--lp-bordo-l);
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    align-self: flex-start;
}

.lp-feature-titulo {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--lp-dark);
    line-height: 1.3;
}

.lp-feature-texto {
    font-size: 0.83rem;
    color: var(--lp-muted);
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════════
   CALCULADORA
══════════════════════════════════════════════ */
.lp-calc-section {
    padding: 5rem 0;
    background: var(--lp-white);
}

.lp-calc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2.5rem;
}

@media (max-width: 860px) {
    .lp-calc-layout {
        grid-template-columns: 1fr;
    }
}

/* Inputs */
.lp-calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lp-calc-campo {
}

.lp-calc-campo-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.65rem;
}

.lp-calc-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--lp-text);
}

.lp-calc-val {
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--lp-bordo);
    font-family: 'Playfair Display', Georgia, serif;
}

input[type="range"].lp-slider {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(139,29,29,0.12);
    border-radius: 999px;
    outline: none;
    cursor: pointer;
    margin-bottom: 0.35rem;
}

    input[type="range"].lp-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--lp-bordo);
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(139,29,29,0.3);
        transition: transform 0.15s;
    }

        input[type="range"].lp-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
        }

.lp-slider-hints {
    display: flex;
    justify-content: space-between;
    font-size: 0.62rem;
    color: rgba(139,29,29,0.35);
    font-weight: 600;
}

/* Panel resultado */
.lp-calc-panel {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    overflow: hidden;
    position: sticky;
    top: 1rem;
}

.lp-calc-panel-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--lp-border);
    background: var(--lp-white);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--lp-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lp-calc-comparacion {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.5rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--lp-border);
}

.lp-cc-col {
    text-align: center;
}

.lp-cc-etiqueta {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-muted);
    margin-bottom: 0.5rem;
    display: block;
}

.lp-cc-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.lp-cc-num-hoy {
    color: rgba(139,29,29,0.3);
}

.lp-cc-num-con {
    color: #059669;
}

.lp-cc-sub {
    font-size: 0.65rem;
    color: var(--lp-muted);
    display: block;
    margin-top: 0.2rem;
}

.lp-cc-sep {
    color: rgba(139,29,29,0.2);
    font-size: 1rem;
}

.lp-calc-ingresos {
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    border-bottom: 1px solid var(--lp-border);
}

.lp-ingreso-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.lp-ingreso-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lp-ingreso-val {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--lp-dark);
}

.lp-ingreso-val-con {
    color: #059669;
}

/* ROI box */
.lp-roi-box {
    padding: 1.25rem 1.5rem;
    background: var(--lp-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-roi-etiqueta {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--lp-muted);
    margin-bottom: 0.2rem;
}

.lp-roi-inversion {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--lp-text);
}

.lp-roi-retorno-wrap {
    text-align: right;
}

.lp-roi-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #059669;
    line-height: 1;
    display: block;
}

    .lp-roi-num.negativo {
        color: #ef4444;
    }

.lp-roi-multiplicador {
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(5,150,105,0.65);
}

.lp-calc-disclaimer {
    padding: 0.85rem 1.5rem;
    font-size: 0.65rem;
    color: var(--lp-muted);
    line-height: 1.5;
    border-top: 1px solid var(--lp-border);
}

/* ══════════════════════════════════════════════
   EXPO TURISMO NEGOCIO
══════════════════════════════════════════════ */
.lp-expo {
    padding: 5rem 0;
    background: var(--lp-bg);
}

.lp-expo-inner {
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--lp-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .lp-expo-inner {
        grid-template-columns: 1fr;
    }
}

.lp-expo-left {
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--lp-border);
}

@media (max-width: 768px) {
    .lp-expo-left {
        border-right: none;
        border-bottom: 1px solid var(--lp-border);
    }
}

.lp-expo-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lp-dorado);
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.lp-expo-titulo {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--lp-dark);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

    .lp-expo-titulo span {
        color: var(--lp-bordo);
    }

.lp-expo-desc {
    font-size: 0.88rem;
    color: var(--lp-muted);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.lp-expo-precios {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.lp-expo-precio-old {
    font-size: 1rem;
    color: rgba(139,29,29,0.3);
    text-decoration: line-through;
    font-weight: 700;
}

.lp-expo-precio-new {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--lp-bordo);
    line-height: 1;
}

    .lp-expo-precio-new small {
        font-size: 0.9rem;
        color: var(--lp-muted);
        font-family: inherit;
    }

.lp-expo-acciones {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: flex-start;
}

.lp-expo-link {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--lp-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s;
}

    .lp-expo-link:hover {
        color: var(--lp-bordo);
    }

.lp-expo-right {
    padding: 3rem 2.5rem;
    background: var(--lp-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
}

.lp-expo-beneficio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--lp-text);
    font-weight: 500;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--lp-border);
}

    .lp-expo-beneficio:last-child {
        border-bottom: none;
    }

    .lp-expo-beneficio i {
        color: #059669;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

/* ══════════════════════════════════════════════
   PLANES
══════════════════════════════════════════════ */
.lp-planes {
    padding: 5rem 0;
    background: var(--lp-white);
}

.lp-planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
    max-width: 680px;
}

.lp-plan {
    border: 1.5px solid var(--lp-border);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    background: var(--lp-white);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.lp-plan-principal {
    border-color: var(--lp-bordo);
    box-shadow: 0 8px 32px rgba(139,29,29,0.1);
}

.lp-plan-chip {
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 1.25rem;
    align-self: flex-start;
}

.lp-plan-chip-expo {
    background: rgba(212,175,55,0.1);
    color: var(--lp-dorado);
    border: 1px solid rgba(212,175,55,0.2);
}

.lp-plan-chip-full {
    background: var(--lp-bordo-l);
    color: var(--lp-bordo);
    border: 1px solid rgba(139,29,29,0.15);
}

.lp-plan-precio {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.35rem;
}

.lp-plan-monto {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--lp-dark);
}

.lp-plan-principal .lp-plan-monto {
    color: var(--lp-bordo);
}

.lp-plan-per {
    font-size: 0.82rem;
    color: var(--lp-muted);
    font-weight: 600;
}

.lp-plan-subtitulo {
    font-size: 0.78rem;
    color: var(--lp-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.lp-plan-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

    .lp-plan-lista li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.82rem;
        color: var(--lp-text);
        font-weight: 500;
    }

    .lp-plan-lista i {
        color: #059669;
        font-size: 0.7rem;
        flex-shrink: 0;
    }

.lp-plan-cta {
    display: block;
    text-align: center;
    padding: 0.8rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s;
}

.lp-plan-cta-outline {
    border: 1.5px solid var(--lp-border);
    color: var(--lp-text);
    background: transparent;
}

    .lp-plan-cta-outline:hover {
        border-color: var(--lp-bordo);
        color: var(--lp-bordo);
        background: var(--lp-bordo-l);
    }

.lp-plan-cta-solid {
    background: var(--lp-bordo);
    color: #fff;
    box-shadow: 0 4px 14px rgba(139,29,29,0.25);
}

    .lp-plan-cta-solid:hover {
        background: #6d1717;
        color: #fff;
        transform: translateY(-1px);
    }

.lp-garantia {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding: 1.1rem 1.5rem;
    background: rgba(5,150,105,0.04);
    border: 1px solid rgba(5,150,105,0.12);
    border-radius: 12px;
    max-width: 540px;
}

    .lp-garantia i {
        color: #059669;
        flex-shrink: 0;
        font-size: 0.9rem;
        margin-top: 0.1rem;
    }

    .lp-garantia p {
        font-size: 0.8rem;
        color: #065f46;
        font-weight: 600;
        line-height: 1.5;
        margin: 0;
    }

/* ══════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════ */
.lp-cta {
    padding: 5.5rem 0;
    background: var(--lp-bg);
    border-top: 1px solid var(--lp-border);
}

.lp-cta-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lp-cta-titulo {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: var(--lp-dark);
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

    .lp-cta-titulo em {
        font-style: normal;
        color: var(--lp-bordo);
    }

.lp-cta-desc {
    font-size: 0.96rem;
    color: var(--lp-muted);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.lp-cta-acciones {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* ══════════════════════════════════════════════
   BANDA HOME
══════════════════════════════════════════════ */
.lp-banda-home {
    background: var(--lp-bordo);
    padding: 0.8rem 1.5rem;
}

.lp-banda-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.lp-banda-texto {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255,255,255,0.82);
    font-size: 0.85rem;
    flex-wrap: wrap;
}

    .lp-banda-texto i {
        color: var(--lp-dorado);
    }

    .lp-banda-texto strong {
        color: #fff;
        font-weight: 800;
    }

.lp-banda-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 0.4rem 0.95rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
    white-space: nowrap;
}

    .lp-banda-btn:hover {
        background: rgba(255,255,255,0.22);
        color: #fff;
    }

@media (max-width: 600px) {
    .lp-banda-inner {
        justify-content: center;
        text-align: center;
    }

    .lp-banda-texto {
        justify-content: center;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE GENERAL
══════════════════════════════════════════════ */
@media (max-width: 600px) {
    .lp-section {
        padding: 3.5rem 0;
    }

    .lp-hero {
        padding: 3.5rem 0 3rem;
    }

    .lp-hero-acciones {
        flex-direction: column;
    }

    .lp-hero-stats {
        gap: 1.25rem;
    }

    .lp-calc-layout {
        gap: 2rem;
    }

    .lp-expo-left, .lp-expo-right {
        padding: 2rem 1.5rem;
    }

    .lp-plan {
        padding: 1.5rem;
    }
}
/* ── Ticker de actividad ─────────────────────────────────────────── */
.lp-ticker-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    background: var(--lp-white);
    overflow: hidden;
}

.lp-ticker-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lp-bordo);
    padding: 0.7rem 1.25rem;
    border-right: 1px solid var(--lp-border);
    white-space: nowrap;
    background: rgba(139,29,29,0.03);
    flex-shrink: 0;
}

.lp-ticker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
    animation: tickerPulse 1.8s ease-in-out infinite;
}

@keyframes tickerPulse {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(16,185,129,0.4);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(16,185,129,0);
    }
}

.lp-ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.lp-ticker-content {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: tickerScroll 28s linear infinite;
}

    .lp-ticker-content:hover {
        animation-play-state: paused;
    }

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.lp-ticker-item {
    font-size: 0.8rem;
    color: var(--lp-text);
    font-weight: 500;
    padding: 0.7rem 1.5rem;
}

    .lp-ticker-item strong {
        font-weight: 800;
        color: var(--lp-dark);
    }

    .lp-ticker-item i {
        color: var(--lp-bordo);
        font-size: 0.7rem;
        margin-right: 0.2rem;
    }

.lp-ticker-sep {
    color: rgba(139,29,29,0.2);
    font-size: 0.85rem;
    flex-shrink: 0;
}
/* ═══════════════════════════════════════════
   SECCIÓN CÁMARAS DE TURISMO
   Agregar al final de landing-prestadores.css
═══════════════════════════════════════════ */

.lp-camaras {
    background: var(--lp-white);
}

.lp-camaras-inner {
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

@media (max-width: 768px) {
    .lp-camaras-inner {
        grid-template-columns: 1fr;
    }
}

/* Lado izquierdo */
.lp-camaras-left {
    padding: 2.5rem;
    border-right: 1px solid var(--lp-border);
}

@media (max-width: 768px) {
    .lp-camaras-left {
        border-right: none;
        border-bottom: 1px solid var(--lp-border);
    }
}

.lp-camaras-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #2563eb;
    background: rgba(37,99,235,0.07);
    border: 1px solid rgba(37,99,235,0.15);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.lp-camaras-titulo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--lp-dark);
    line-height: 1.25;
    margin-bottom: 0.85rem;
}

    .lp-camaras-titulo span {
        color: #2563eb;
    }

.lp-camaras-desc {
    font-size: 0.86rem;
    color: var(--lp-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

    .lp-camaras-desc strong {
        color: var(--lp-text);
        font-weight: 700;
    }

/* Precios */
.lp-camaras-precio {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1.1rem 1.25rem;
    background: var(--lp-bg);
    border-radius: 12px;
    border: 1px solid var(--lp-border);
    flex-wrap: wrap;
}

.lp-cam-precio-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lp-cam-periodo {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.lp-cam-monto-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.lp-cam-old {
    font-size: 0.9rem;
    color: rgba(139,29,29,0.3);
    text-decoration: line-through;
    font-weight: 700;
}

.lp-cam-new {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: #2563eb;
    line-height: 1;
}

    .lp-cam-new small {
        font-size: 0.8rem;
        color: var(--lp-muted);
        font-family: inherit;
    }

.lp-cam-normal {
    color: var(--lp-dark);
    font-size: 1.3rem;
}

.lp-cam-sep {
    font-size: 1.1rem;
    color: rgba(15,23,42,0.2);
    flex-shrink: 0;
}

/* Requisito */
.lp-camaras-requisito {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: var(--lp-muted);
    line-height: 1.55;
    margin-bottom: 1.5rem;
    padding: 0.85rem 1rem;
    background: rgba(37,99,235,0.04);
    border-radius: 10px;
    border: 1px solid rgba(37,99,235,0.1);
}

    .lp-camaras-requisito i {
        color: #2563eb;
        font-size: 0.85rem;
        flex-shrink: 0;
        margin-top: 0.1rem;
    }

    .lp-camaras-requisito strong {
        color: var(--lp-text);
    }

/* Acciones */
.lp-camaras-acciones {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: flex-start;
}

.lp-camaras-link {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--lp-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s;
}

    .lp-camaras-link:hover {
        color: #2563eb;
    }

/* Lado derecho */
.lp-camaras-right {
    padding: 2.5rem;
    background: var(--lp-bg);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lp-camaras-right-titulo,
.lp-camaras-beneficios-titulo {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-muted);
}

.lp-camaras-lista {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--lp-border);
}

.lp-camara-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.84rem;
    color: var(--lp-text);
    font-weight: 600;
}

    .lp-camara-item i {
        color: #2563eb;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

.lp-camaras-beneficios {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-cam-beneficio {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.82rem;
    color: var(--lp-text);
    font-weight: 500;
}

    .lp-cam-beneficio i {
        color: #059669;
        font-size: 0.7rem;
        flex-shrink: 0;
    }

/* También actualizar los planes para incluir el tercero */
.lp-planes-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    max-width: 900px !important;
}
/* Grilla de 3 planes */
.lp-planes-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 860px;
}

@media (max-width: 768px) {
    .lp-planes-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Plan cámaras */
.lp-plan-camara {
    border-color: rgba(37,99,235,0.15);
}

.lp-plan-chip-camara {
    background: rgba(37,99,235,0.08);
    color: #2563eb;
    border: 1px solid rgba(37,99,235,0.15);
}

.lp-plan-cta-camara {
    border: 1.5px solid rgba(37,99,235,0.25);
    color: #2563eb;
    background: transparent;
}

    .lp-plan-cta-camara:hover {
        border-color: #2563eb;
        background: rgba(37,99,235,0.06);
        color: #2563eb;
    }
.lp-cta-acciones {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}