/* =========================================================
   BLUUPI LANDING PRO
   Archivo: /assets/styles/landing-pro.css
   ========================================================= */

/* 1. Variables
--------------------------------------------------------- */
:root {
    --blue-dark: #0E3E61;
    --blue-main: #127194;
    --blue-light: #3CA6D6;
    --cyan: #5CD6F4;
    --bg-soft: #E6EEF2;
    --text: #1F2D3D;
    --muted: #607080;
    --white: #FFFFFF;
    --border: rgba(14, 62, 97, 0.12);
    --shadow: 0 18px 45px rgba(14, 62, 97, 0.12);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

/* 2. Reset
--------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* 3. Layout global
--------------------------------------------------------- */
.lp-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.lp-section {
    padding: 90px 0;
}

.lp-soft {
    background: linear-gradient(180deg, #F5FAFC 0%, #FFFFFF 100%);
}

.lp-section-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.lp-section-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    color: var(--blue-dark);
    margin-bottom: 16px;
}

.lp-section-head p {
    font-size: 1.08rem;
    color: var(--muted);
}

.lp-kicker,
.lp-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(92, 214, 244, 0.18);
    color: var(--blue-main);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* 4. Header
--------------------------------------------------------- */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.lp-header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lp-logo img {
    height: 44px;
    width: auto;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue-dark);
}

.lp-nav a {
    opacity: 0.86;
}

.lp-nav a:hover {
    opacity: 1;
    color: var(--blue-main);
}

.lp-nav-cta {
    background: var(--blue-main);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 999px;
}

/* 5. Buttons
--------------------------------------------------------- */
.lp-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.lp-btn:hover {
    transform: translateY(-2px);
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--blue-main), var(--blue-light));
    color: var(--white);
    box-shadow: 0 14px 30px rgba(18, 113, 148, 0.25);
}

.lp-btn-secondary {
    background: var(--white);
    color: var(--blue-dark);
    border-color: var(--border);
}

.lp-btn-light {
    background: var(--white);
    color: var(--blue-dark);
}

/* 6. Hero
--------------------------------------------------------- */
.lp-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 80px;
    background:
        radial-gradient(circle at 15% 10%, rgba(92, 214, 244, 0.28), transparent 32%),
        radial-gradient(circle at 85% 20%, rgba(60, 166, 214, 0.20), transparent 34%),
        linear-gradient(180deg, #F8FCFE 0%, #FFFFFF 100%);
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 54px;
    align-items: center;
}

.lp-hero-content h1 {
    margin-top: 22px;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: var(--blue-dark);
}

.lp-hero-text {
    margin-top: 24px;
    max-width: 660px;
    font-size: 1.18rem;
    color: var(--muted);
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.lp-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.lp-hero-points span {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(14, 62, 97, 0.06);
    color: var(--blue-dark);
    font-weight: 700;
    font-size: 0.92rem;
}

.lp-hero-card {
    position: relative;
    min-height: 480px;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, #FFFFFF, #EEF8FC);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-mascot {
    width: min(260px, 80%);
    margin: 0 auto 24px;
}

.lp-demo-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: 0 12px 30px rgba(14, 62, 97, 0.08);
}

.lp-demo-title {
    font-weight: 900;
    color: var(--blue-main);
    margin-bottom: 10px;
}

.lp-demo-question {
    font-size: 1.05rem;
    color: var(--blue-dark);
    font-weight: 700;
}

.lp-demo-result {
    margin-top: 16px;
    padding: 15px;
    border-radius: var(--radius-md);
    background: #F3FBFE;
    color: var(--muted);
}

.lp-demo-result strong {
    display: block;
    color: var(--blue-dark);
    margin-bottom: 4px;
}

/* 7. Cards beneficios
--------------------------------------------------------- */
.lp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.lp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 12px 32px rgba(14, 62, 97, 0.06);
}

.lp-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(92, 214, 244, 0.16);
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.lp-card h3 {
    color: var(--blue-dark);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.lp-card p {
    color: var(--muted);
}

/* 8. Highlight
--------------------------------------------------------- */
.lp-highlight {
    padding: 56px 0;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
    color: var(--white);
}

.lp-highlight-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.lp-highlight h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 12px 0;
}

.lp-highlight p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
}

.lp-highlight .lp-kicker {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* 9. Steps
--------------------------------------------------------- */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.lp-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
}

.lp-step span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue-main);
    color: var(--white);
    font-weight: 900;
    margin-bottom: 18px;
}

.lp-step h3 {
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.lp-step p {
    color: var(--muted);
}

/* 10. Extranet
--------------------------------------------------------- */
.lp-two-cols {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.lp-two-cols h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    color: var(--blue-dark);
    margin: 18px 0;
}

.lp-two-cols p {
    color: var(--muted);
    font-size: 1.06rem;
}

.lp-list {
    list-style: none;
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.lp-list li {
    position: relative;
    padding-left: 30px;
    color: var(--blue-dark);
    font-weight: 700;
}

.lp-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--blue-main);
    font-weight: 900;
}

.lp-panel-preview {
    border-radius: var(--radius-xl);
    background: #FFFFFF;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.lp-panel-top {
    height: 58px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 22px;
}

.lp-panel-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
}

.lp-panel-body {
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.lp-stat {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: #F3FBFE;
    border: 1px solid var(--border);
}

.lp-stat strong {
    display: block;
    color: var(--blue-main);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 8px;
}

.lp-stat span {
    color: var(--muted);
    font-weight: 700;
}

/* 11. Tags
--------------------------------------------------------- */
.lp-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.lp-tags span {
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--blue-dark);
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(14, 62, 97, 0.05);
}

/* 12. Ecosystem
--------------------------------------------------------- */
.lp-ecosystem {
    padding: 90px 0;
    background: #FFFFFF;
}

.lp-ecosystem-img {
    width: 100%;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* 13. Contact
--------------------------------------------------------- */
.lp-contact {
    padding: 90px 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(92, 214, 244, 0.20), transparent 34%),
        linear-gradient(180deg, #F4FAFD 0%, #FFFFFF 100%);
}

.lp-contact-box {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 42px;
    align-items: start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 42px;
}

.lp-contact h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--blue-dark);
    margin: 16px 0;
}

.lp-contact p {
    color: var(--muted);
}

.lp-form {
    display: grid;
    gap: 14px;
}

.lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lp-form input,
.lp-form select,
.lp-form textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 15px;
    font: inherit;
    color: var(--text);
    background: #FFFFFF;
}

.lp-form textarea {
    min-height: 120px;
    resize: vertical;
}

.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus {
    outline: 3px solid rgba(92, 214, 244, 0.24);
    border-color: var(--blue-light);
}

.lp-form-note {
    font-size: 0.9rem;
    color: var(--muted);
}

/* 14. Footer
--------------------------------------------------------- */
.lp-footer {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.82);
    padding: 26px 0;
}

.lp-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.94rem;
}

/* 15. Responsive tablette
--------------------------------------------------------- */
@media (max-width: 980px) {
    .lp-nav {
        display: none;
    }

    .lp-hero-grid,
    .lp-two-cols,
    .lp-contact-box {
        grid-template-columns: 1fr;
    }

    .lp-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-hero-card {
        min-height: auto;
    }
}

/* 16. Responsive mobile
--------------------------------------------------------- */
@media (max-width: 640px) {
    .lp-container {
        width: min(100% - 28px, 1180px);
    }

    .lp-section,
    .lp-ecosystem,
    .lp-contact {
        padding: 64px 0;
    }

    .lp-header-inner {
        min-height: 66px;
    }

    .lp-logo img {
        height: 38px;
    }

    .lp-hero {
        padding: 58px 0 64px;
    }

    .lp-hero-content h1 {
        font-size: 2.45rem;
    }

    .lp-hero-actions {
        flex-direction: column;
    }

    .lp-btn {
        width: 100%;
    }

    .lp-cards-grid,
    .lp-steps,
    .lp-panel-body,
    .lp-form-row {
        grid-template-columns: 1fr;
    }

    .lp-card,
    .lp-step,
    .lp-contact-box {
        padding: 24px;
    }

    .lp-highlight-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-footer-inner {
        flex-direction: column;
    }
}