* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --ink: #14181f;
    --muted: #6b7280;
    --line: #e5e8ef;
    --bg: #f4f6fa;
    --card: #ffffff;
    --red: #e30613;
    --shadow: 0 2px 10px rgba(20, 24, 31, .06);
    --shadow-hover: 0 10px 30px rgba(20, 24, 31, .12);
}

body {
    font-family: 'Barlow', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.lp-head {
    background: var(--card);
    border-bottom: 3px solid var(--red);
    padding: 18px 20px 14px;
    text-align: center;
}
.lp-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 6vw, 40px);
    font-style: italic;
    letter-spacing: -.5px;
    line-height: 1;
}
.lp-brand-bola { color: var(--ink); }
.lp-brand-rapida { color: var(--red); }
.lp-brand-com { color: var(--ink); font-size: .5em; font-weight: 700; }
.lp-brand-tag {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    margin-top: 4px;
}

.lp-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 20px 60px;
}

.lp-finder { text-align: center; margin-bottom: 34px; }
.lp-finder-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 5vw, 38px);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 20px;
}
.lp-finder-title em { color: var(--red); font-style: normal; }

.lp-search {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
}
.lp-search-ico {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--muted);
    pointer-events: none;
}
.lp-search-input {
    width: 100%;
    padding: 14px 18px 14px 44px;
    border: 1.5px solid var(--line);
    border-radius: 30px;
    background: var(--card);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    box-shadow: var(--shadow);
    transition: border-color .15s, box-shadow .15s;
}
.lp-search-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, .1);
}
.lp-search-input::placeholder { color: #9ca3af; }

.lp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lp-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-top: 4px solid var(--liga, var(--red));
    border-radius: 16px;
    padding: 26px 20px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.lp-card-logo {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}
.lp-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
.lp-card-initial {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--liga, var(--red));
}

.lp-card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: .3px;
    line-height: 1.1;
}
.lp-card-cat {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 4px;
}
.lp-card-meta {
    font-size: 12.5px;
    color: var(--muted);
    margin: 12px 0 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.lp-card-meta::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--liga, var(--red));
}

.lp-card-btn {
    margin-top: auto;
    width: 100%;
    padding: 11px 16px;
    background: var(--liga, var(--red));
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .8px;
    text-decoration: none;
    border-radius: 10px;
    transition: filter .15s;
}
.lp-card-btn:hover { filter: brightness(.92); }

.lp-empty {
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    padding: 40px 0;
}

.lp-foot {
    background: var(--ink);
    color: #fff;
    padding: 20px;
    text-align: center;
}
.lp-foot-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 18px;
    display: block;
}
.lp-foot-brand span { color: var(--red); }
.lp-foot-tag {
    font-size: 12px;
    color: #9ca8bd;
    margin-top: 2px;
    display: block;
}

@media (max-width: 900px) {
    .lp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 560px) {
    .lp-grid { grid-template-columns: 1fr; gap: 14px; }
    .lp-card { flex-direction: row; text-align: left; padding: 16px; align-items: center; gap: 14px; flex-wrap: wrap; }
    .lp-card-logo { width: 68px; height: 68px; margin-bottom: 0; flex-shrink: 0; }
    .lp-card-name { font-size: 18px; }
    .lp-card-meta { margin: 4px 0 0; }
    .lp-card-body { flex: 1; min-width: 0; }
    .lp-card-btn { flex-basis: 100%; margin-top: 6px; }
}

/* ── Secciones de contenido ── */
.lp-content {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 0 4px;
}
.lp-sec { margin-bottom: 44px; }
.lp-sec-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 4vw, 30px);
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--ink);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
}
.lp-sec > p {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 14px;
}
.lp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.lp-feat {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
}
.lp-feat h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}
.lp-feat p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #4b5563;
}
.lp-faq {
    background: var(--card);
    border: 1px solid var(--line);
    border-left: 3px solid var(--red);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 12px;
}
.lp-faq h3 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.lp-faq p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

/* ── Footer con links legales ── */
.lp-foot-links {
    display: block;
    margin-top: 12px;
}
.lp-foot-links a {
    color: #cbd5e1;
    font-size: 13px;
    text-decoration: none;
    margin: 0 10px;
}
.lp-foot-links a:hover { color: #fff; text-decoration: underline; }
.lp-foot-copy {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    color: #64748b;
}

@media (max-width: 760px) {
    .lp-features { grid-template-columns: 1fr; }
    .lp-content { margin-top: 36px; }
}
