﻿.lp-page {
    --lp-accent: #b81c27;
    --lp-accent-dark: #8f151e;
    --lp-accent-warm: #ff9600;
    --lp-teal: #0f766e;
    --lp-blue: #0d5ea1;
    --lp-amber: #b45309;
    --lp-ink: #071a33;
    --lp-muted: #4c5e75;
    --lp-border: rgba(7, 26, 51, 0.11);
    --lp-shadow: 0 8px 24px rgba(7, 26, 51, 0.08);
    --lp-page-bg: #f4f8fc;
    --lp-surface: #ffffff;
    --lp-surface-soft: #f8fafc;
    --lp-brand-soft: #fff3f4;
    background: var(--lp-page-bg);
    color: var(--lp-ink);
    font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    overflow-x: clip;
}

.lp-page *,
.lp-page *::before,
.lp-page *::after {
    box-sizing: border-box;
}

.lp-route-track {
    vector-effect: non-scaling-stroke;
}

.lp-motion-dot {
    --lp-motion-color: #ffffff;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    border: 2px solid var(--lp-motion-color);
    border-radius: 50%;
    background: #ffffff;
    opacity: 0;
    pointer-events: none;
}

.is-motion-active .lp-motion-dot {
    opacity: 1;
    will-change: transform;
}

.lp-motion-dot-red {
    --lp-motion-color: #d5262f;
}

.lp-motion-dot-blue {
    --lp-motion-color: #1688c8;
}

.lp-motion-dot-circuit {
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border-width: 4px;
}

.lp-main {
    padding-top: 0;
}

.lp-page h1[tabindex="-1"]:focus {
    outline: none;
}

.lp-section {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background: var(--lp-page-bg);
    border-top: 1px solid rgba(17, 24, 39, 0.04);
    overflow-x: clip;
    scroll-margin-top: calc(var(--brysoft-nav-height, 78px) + 10px);
}

.lp-container {
    width: min(100% - 3rem, 1280px);
    max-width: 1280px;
    margin: 0 auto;
}

.lp-section .mud-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
}

.lp-section-title {
    letter-spacing: -0.025em;
    font-weight: 900;
    color: var(--lp-ink);
    font-size: clamp(2rem, 2.8vw, 3rem) !important;
}

.lp-section-kicker,
.lp-section-eyebrow,
.lp-story-kicker {
    color: var(--lp-accent);
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lp-section-kicker {
    justify-self: center;
}

.lp-page .lp-hero-title {
    color: #071a33;
    font-size: clamp(2.55rem, 4vw, 4.7rem) !important;
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: 0;
}

.lp-page .lp-hero-title:focus {
    outline: none;
}

.lp-body-text {
    color: var(--lp-muted);
    line-height: 1.6;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    background: var(--lp-accent);
    color: #ffffff;
    min-height: 54px;
    font-weight: 800;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 0 var(--lp-accent-dark);
    transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.lp-btn:hover {
    transform: translateY(-1px);
    background: var(--lp-accent-dark);
    box-shadow: 0 5px 0 #741019;
    color: #ffffff;
}

.lp-btn:focus-visible {
    outline: 3px solid rgba(184, 28, 39, 0.28);
    outline-offset: 3px;
}

.lp-btn-secondary {
    background: #ffffff;
    color: #202733;
    border: 1px solid rgba(17, 24, 39, 0.14);
    box-shadow: none;
}

.lp-btn-secondary:hover {
    color: #c62828;
    border-color: rgba(198, 40, 40, 0.28);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

@media (max-width: 900px) {
    .lp-main {
        padding-top: 0;
    }

    .lp-section {
        padding: 3rem 0;
        scroll-margin-top: calc(var(--brysoft-nav-height, 78px) + 8px);
    }

    .lp-section-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
    }
}

@media (max-width: 560px) {
    .lp-section {
        padding: 2.35rem 0;
    }

    .lp-section .mud-container,
    .lp-container {
        width: min(100% - 2rem, 1280px);
        padding-left: 0;
        padding-right: 0;
    }
}

/* --- Páginas públicas informativas (privacidad / soporte) --- */
.lp-info-main {
    padding-top: clamp(3rem, 6vw, 5rem);
}

.lp-info-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
    margin-bottom: 3rem;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.lp-info-hero {
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
}

.lp-info-hero .lp-section-kicker {
    justify-self: start;
    margin-bottom: 0.75rem;
}

.lp-info-card h1 {
    color: var(--lp-ink);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    font-weight: 850;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0 0 1rem;
}

.lp-info-hero p {
    color: var(--lp-muted);
    font-size: 1.1rem;
    line-height: 1.65;
    margin: 0;
    max-width: 820px;
}

.lp-info-card section {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.lp-info-card h2 {
    color: var(--lp-ink);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 800;
    margin: 0;
}

.lp-info-card p,
.lp-info-card li {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
}

.lp-info-card p {
    margin: 0;
}

.lp-info-card ul {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding-left: 1.25rem;
}

.lp-info-card a {
    color: var(--lp-accent);
    font-weight: 700;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.lp-info-card a:hover,
.lp-info-card a:focus-visible {
    color: var(--lp-accent-dark);
    text-decoration: underline;
}

@media (max-width: 720px) {
    .lp-info-main {
        padding-top: 2.5rem;
    }

    .lp-info-card {
        border-radius: 8px;
        margin-bottom: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-motion-dot {
        display: none;
    }
}
