/* ============================================================
   LottoKing - Sitio Publico / Funnel de Ventas
   Paleta de marca: Primary #4CAF50 | Secondary #FFC107 | Tertiary #E91E63
   Mobile-first, CSS puro (sin frameworks)
   ============================================================ */

:root {
    --lk-primary: #4CAF50;
    --lk-primary-dark: #388E3C;
    --lk-primary-darker: #2E7D32;
    --lk-secondary: #FFC107;
    --lk-secondary-dark: #FFA000;
    --lk-tertiary: #E91E63;
    --lk-tertiary-dark: #C2185B;
    --lk-info: #2196F3;
    --lk-danger: #F44336;
    --lk-ink: #0f1712;
    --lk-ink-2: #16241a;
    --lk-ink-3: #1e3325;
    --lk-white: #ffffff;
    --lk-gray-50: #f7faf7;
    --lk-gray-100: #eef3ee;
    --lk-gray-200: #dde5dd;
    --lk-gray-500: #6b7570;
    --lk-gray-700: #454f49;
    --lk-gray-900: #1c2420;
    --lk-whatsapp: #25D366;
    --lk-radius: 10px;
    --lk-radius-lg: 18px;
    --lk-shadow: 0 2px 10px rgba(15, 23, 18, 0.08);
    --lk-shadow-lg: 0 10px 36px rgba(15, 23, 18, 0.14);
    --lk-transition: all 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--lk-gray-900);
    line-height: 1.65;
    background: var(--lk-white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

.lk-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ---------------- NAVBAR ---------------- */
.lk-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.9rem 0;
    background: rgba(15, 23, 18, 0.55);
    backdrop-filter: blur(8px);
    transition: var(--lk-transition);
}

.lk-navbar.scrolled {
    background: rgba(15, 23, 18, 0.95);
    padding: 0.55rem 0;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.lk-navbar .lk-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lk-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    flex-shrink: 0;
}

.lk-logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    background: var(--lk-white);
    border-radius: 50%;
    padding: 3px;
}

.lk-logo-text {
    color: var(--lk-white);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.lk-logo-text span { color: var(--lk-secondary); }

.lk-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--lk-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.lk-nav-links {
    display: none;
    align-items: center;
    gap: 1.4rem;
}

.lk-nav-links.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(15, 23, 18, 0.98);
    padding: 1rem 1.25rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.lk-nav-links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--lk-transition);
}

.lk-nav-links a:hover { color: var(--lk-secondary); }

/* ---------------- BOTONES ---------------- */
.lk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: var(--lk-radius);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--lk-transition);
    min-height: 44px;
    text-align: center;
}

.lk-btn-primary {
    background: var(--lk-primary);
    color: var(--lk-white);
}

.lk-btn-primary:hover {
    background: var(--lk-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.35);
}

.lk-btn-secondary {
    background: var(--lk-secondary);
    color: var(--lk-ink);
}

.lk-btn-secondary:hover {
    background: var(--lk-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.35);
}

.lk-btn-whatsapp {
    background: var(--lk-whatsapp);
    color: var(--lk-white);
}

.lk-btn-whatsapp:hover {
    background: #1eb457;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.lk-btn-outline {
    background: transparent;
    color: var(--lk-primary-darker);
    border-color: var(--lk-primary);
}

.lk-btn-outline:hover { background: rgba(76, 175, 80, 0.08); }

.lk-btn-outline-light {
    background: transparent;
    color: var(--lk-white);
    border-color: rgba(255, 255, 255, 0.55);
}

.lk-btn-outline-light:hover { border-color: var(--lk-white); background: rgba(255, 255, 255, 0.08); }

.lk-btn-lg { padding: 1rem 2.1rem; font-size: 1.05rem; }
.lk-btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; min-height: 38px; }
.lk-btn-block { width: 100%; }

/* ---------------- HERO ---------------- */
.lk-hero {
    background: radial-gradient(ellipse at 20% -10%, var(--lk-ink-3) 0%, var(--lk-ink-2) 45%, var(--lk-ink) 100%);
    color: var(--lk-white);
    padding: 7rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.lk-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.28) 0%, transparent 70%);
    pointer-events: none;
}

.lk-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.lk-hero-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: var(--lk-secondary);
    border: 1px solid rgba(255, 193, 7, 0.4);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.lk-hero h1 {
    font-size: clamp(1.9rem, 5vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.lk-hero h1 em {
    font-style: normal;
    color: var(--lk-secondary);
}

.lk-hero p.lk-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin-bottom: 1.8rem;
}

.lk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2.2rem;
}

.lk-hero-img {
    text-align: center;
}

.lk-hero-img img {
    max-width: 300px;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
}

.lk-stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.6rem;
}

.lk-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--lk-secondary);
}

.lk-stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero compacto para paginas interiores */
.lk-hero-page { padding: 6.5rem 0 2.8rem; }
.lk-hero-page h1 { font-size: clamp(1.7rem, 4.5vw, 2.5rem); }

/* ---------------- SECCIONES ---------------- */
.lk-section { padding: 3.5rem 0; }
.lk-section-alt { background: var(--lk-gray-50); }

.lk-section-dark {
    background: linear-gradient(135deg, var(--lk-ink-2), var(--lk-ink));
    color: var(--lk-white);
}

.lk-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.lk-section-header h2 {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.6rem;
}

.lk-section-header p { color: var(--lk-gray-500); font-size: 1rem; }

.lk-section-dark .lk-section-header p { color: rgba(255, 255, 255, 0.72); }

/* ---------------- GRIDS ---------------- */
.lk-grid-2, .lk-grid-3, .lk-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

/* ---------------- CARDS GENERICAS ---------------- */
.lk-card {
    background: var(--lk-white);
    border: 1px solid var(--lk-gray-200);
    border-radius: var(--lk-radius-lg);
    padding: 1.6rem;
    box-shadow: var(--lk-shadow);
    transition: var(--lk-transition);
}

.lk-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lk-shadow-lg);
}

.lk-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lk-card p { color: var(--lk-gray-700); font-size: 0.93rem; }

.lk-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--lk-white);
    background: var(--lk-primary);
    margin-bottom: 1rem;
}

.lk-card-icon.lk-icon-secondary { background: var(--lk-secondary-dark); }
.lk-card-icon.lk-icon-tertiary { background: var(--lk-tertiary); }
.lk-card-icon.lk-icon-info { background: var(--lk-info); }
.lk-card-icon.lk-icon-danger { background: var(--lk-danger); }
.lk-card-icon.lk-icon-dark { background: var(--lk-ink-3); }

/* ---------------- FEATURES ---------------- */
.lk-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--lk-white);
    border: 1px solid var(--lk-gray-200);
    border-radius: var(--lk-radius);
    padding: 1.1rem 1.2rem;
    transition: var(--lk-transition);
}

.lk-feature-item:hover { border-color: var(--lk-primary); box-shadow: var(--lk-shadow); }

.lk-feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(76, 175, 80, 0.12);
    color: var(--lk-primary-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.lk-feature-text h3, .lk-feature-text h4 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.lk-feature-text p { font-size: 0.88rem; color: var(--lk-gray-700); }

/* ---------------- DOLORES / PAIN CARDS ---------------- */
.lk-pain-card {
    background: var(--lk-white);
    border: 1px solid var(--lk-gray-200);
    border-left: 4px solid var(--lk-tertiary);
    border-radius: var(--lk-radius);
    padding: 1.3rem 1.4rem;
}

.lk-pain-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--lk-gray-900);
}

.lk-pain-card h3 i { color: var(--lk-tertiary); margin-right: 0.5rem; }

.lk-pain-card p { font-size: 0.9rem; color: var(--lk-gray-700); }

.lk-solution-card { border-left-color: var(--lk-primary); }
.lk-solution-card h3 i { color: var(--lk-primary); }

/* ---------------- LOTERIAS ---------------- */
.lk-lottery-card {
    background: var(--lk-white);
    border: 1px solid var(--lk-gray-200);
    border-radius: var(--lk-radius);
    padding: 1.1rem;
    text-align: center;
    transition: var(--lk-transition);
}

.lk-lottery-card:hover { border-color: var(--lk-primary); transform: translateY(-3px); }

.lk-lottery-dot {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin: 0 auto 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lk-white);
    font-weight: 800;
    font-size: 0.72rem;
    background: var(--lk-primary);
}

.lk-lottery-card h3 { font-size: 0.92rem; font-weight: 700; }

.lk-lottery-country {
    font-size: 0.76rem;
    color: var(--lk-gray-500);
}

.lk-flag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: var(--lk-gray-100);
    color: var(--lk-gray-700);
    margin-bottom: 0.8rem;
}

/* ---------------- PASOS ---------------- */
.lk-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.lk-step {
    text-align: center;
    padding: 1.5rem 1.2rem;
}

.lk-step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--lk-primary);
    color: var(--lk-white);
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.35);
}

.lk-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.lk-step p { font-size: 0.9rem; color: var(--lk-gray-700); }

/* ---------------- PLANES ---------------- */
.lk-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.lk-price-card {
    background: var(--lk-white);
    border: 1px solid var(--lk-gray-200);
    border-radius: var(--lk-radius-lg);
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--lk-shadow);
}

.lk-price-card.featured {
    border: 2px solid var(--lk-primary);
    box-shadow: var(--lk-shadow-lg);
    position: relative;
}

.lk-price-card.featured::before {
    content: "M\00e1s popular";
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lk-secondary);
    color: var(--lk-ink);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lk-price-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.3rem; }

.lk-price-desc { font-size: 0.88rem; color: var(--lk-gray-500); margin-bottom: 1rem; }

.lk-price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lk-primary-darker);
    margin-bottom: 1.2rem;
}

.lk-price-amount span { font-size: 0.85rem; font-weight: 500; color: var(--lk-gray-500); }

.lk-price-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.lk-price-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--lk-gray-700);
    border-bottom: 1px dashed var(--lk-gray-200);
}

.lk-price-features li::before {
    content: "\2713";
    color: var(--lk-primary);
    font-weight: 800;
    margin-right: 0.55rem;
}

/* ---------------- TABLAS ---------------- */
.lk-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--lk-radius);
    border: 1px solid var(--lk-gray-200);
    box-shadow: var(--lk-shadow);
}

.lk-compare-table, .lk-schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--lk-white);
    min-width: 560px;
    font-size: 0.9rem;
}

.lk-compare-table th, .lk-schedule-table th {
    background: var(--lk-ink-2);
    color: var(--lk-white);
    text-align: left;
    padding: 0.85rem 1rem;
    font-weight: 700;
    font-size: 0.85rem;
}

.lk-compare-table td, .lk-schedule-table td {
    padding: 0.8rem 1rem;
    border-top: 1px solid var(--lk-gray-200);
    color: var(--lk-gray-700);
}

.lk-compare-table tbody tr:nth-child(even),
.lk-schedule-table tbody tr:nth-child(even) { background: var(--lk-gray-50); }

.lk-check { color: var(--lk-primary-darker); font-weight: 700; white-space: nowrap; }
.lk-cross { color: var(--lk-danger); font-weight: 600; white-space: nowrap; }
.lk-meh { color: var(--lk-gray-500); }

/* ---------------- RESULTADOS ---------------- */
.lk-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.lk-result-card {
    background: var(--lk-white);
    border: 1px solid var(--lk-gray-200);
    border-radius: var(--lk-radius-lg);
    padding: 1.3rem;
    box-shadow: var(--lk-shadow);
}

.lk-result-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.lk-result-name { font-size: 1.02rem; font-weight: 800; }

.lk-result-time {
    font-size: 0.78rem;
    color: var(--lk-gray-500);
    background: var(--lk-gray-100);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    white-space: nowrap;
}

.lk-balls {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
}

.lk-ball-wrap { text-align: center; }

.lk-ball {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lk-white);
    background: radial-gradient(circle at 30% 25%, var(--lk-primary), var(--lk-primary-darker));
    box-shadow: inset -3px -5px 8px rgba(0, 0, 0, 0.22), 0 4px 10px rgba(0, 0, 0, 0.15);
}

.lk-ball-second { background: radial-gradient(circle at 30% 25%, var(--lk-secondary), var(--lk-secondary-dark)); color: var(--lk-ink); }
.lk-ball-third { background: radial-gradient(circle at 30% 25%, var(--lk-tertiary), var(--lk-tertiary-dark)); }

.lk-ball-label {
    display: block;
    font-size: 0.72rem;
    color: var(--lk-gray-500);
    margin-top: 0.35rem;
    font-weight: 600;
}

/* ---- Numeros calientes / frios / atrasados ---- */
.lk-numbers-board {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    padding: 0.5rem 0 0.2rem;
}

.lk-ball-sm {
    width: 48px;
    height: 48px;
    font-size: 1.05rem;
}

.lk-ball-hot { background: radial-gradient(circle at 30% 25%, #f06292, var(--lk-tertiary-dark)); }
.lk-ball-cold { background: radial-gradient(circle at 30% 25%, #64b5f6, #1565c0); }
.lk-ball-late { background: radial-gradient(circle at 30% 25%, var(--lk-secondary), #f57f17); color: var(--lk-ink); }

.lk-ball-meta {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: var(--lk-gray-500);
    margin-top: 0.3rem;
    font-weight: 600;
}

.lk-heat-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 1.4rem;
    font-size: 0.85rem;
    color: var(--lk-gray-700);
}

.lk-legend-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 0.4rem;
    vertical-align: -2px;
}

/* ---------------- TESTIMONIOS ---------------- */
.lk-testimonial {
    background: var(--lk-white);
    border: 1px solid var(--lk-gray-200);
    border-radius: var(--lk-radius-lg);
    padding: 1.6rem;
    box-shadow: var(--lk-shadow);
    display: flex;
    flex-direction: column;
}

.lk-testimonial-stars { color: var(--lk-secondary-dark); margin-bottom: 0.7rem; font-size: 0.9rem; }

.lk-testimonial-text {
    font-size: 0.95rem;
    color: var(--lk-gray-700);
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.lk-testimonial-author { font-size: 0.88rem; font-weight: 700; }

.lk-testimonial-author span {
    display: block;
    font-weight: 500;
    color: var(--lk-gray-500);
    font-size: 0.8rem;
}

/* ---------------- FAQ ---------------- */
.lk-faq { max-width: 760px; margin: 0 auto; }

.lk-faq details {
    background: var(--lk-white);
    border: 1px solid var(--lk-gray-200);
    border-radius: var(--lk-radius);
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.lk-faq summary {
    cursor: pointer;
    padding: 1rem 1.2rem;
    font-weight: 700;
    font-size: 0.95rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-height: 44px;
}

.lk-faq summary::-webkit-details-marker { display: none; }

.lk-faq summary::after {
    content: "+";
    font-size: 1.3rem;
    color: var(--lk-primary);
    font-weight: 800;
    flex-shrink: 0;
}

.lk-faq details[open] summary::after { content: "\2212"; }

.lk-faq details[open] summary { border-bottom: 1px solid var(--lk-gray-200); }

.lk-faq .lk-faq-body {
    padding: 1rem 1.2rem;
    font-size: 0.92rem;
    color: var(--lk-gray-700);
}

/* ---------------- CTA BAND ---------------- */
.lk-cta {
    background: linear-gradient(135deg, var(--lk-primary-darker), var(--lk-ink-2));
    color: var(--lk-white);
    padding: 3.5rem 0;
    text-align: center;
}

.lk-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.lk-cta p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin: 0 auto 1.8rem;
}

.lk-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------------- NOTAS / AVISOS ---------------- */
.lk-note {
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 160, 0, 0.4);
    border-radius: var(--lk-radius);
    padding: 1rem 1.2rem;
    font-size: 0.88rem;
    color: var(--lk-gray-700);
    max-width: 760px;
    margin: 1.5rem auto 0;
}

.lk-note strong { color: var(--lk-gray-900); }

.lk-empty {
    text-align: center;
    background: var(--lk-white);
    border: 2px dashed var(--lk-gray-200);
    border-radius: var(--lk-radius-lg);
    padding: 2.5rem 1.5rem;
    max-width: 640px;
    margin: 0 auto;
}

.lk-empty i { font-size: 2rem; color: var(--lk-secondary-dark); margin-bottom: 0.8rem; display: block; }

.lk-empty h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; }

.lk-empty p { color: var(--lk-gray-500); font-size: 0.92rem; }

.lk-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: rgba(76, 175, 80, 0.12);
    color: var(--lk-primary-darker);
    vertical-align: 2px;
    margin-left: 0.4rem;
}

.lk-pill-soon { background: rgba(255, 193, 7, 0.18); color: #8a6d00; }

/* ---------------- FOOTER ---------------- */
.lk-footer {
    background: var(--lk-ink);
    color: rgba(255, 255, 255, 0.75);
    padding: 3rem 0 1.5rem;
}

.lk-footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; transition: var(--lk-transition); }
.lk-footer a:hover { color: var(--lk-secondary); }

.lk-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.lk-footer-col h3 {
    color: var(--lk-white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.lk-footer-col ul { list-style: none; }

.lk-footer-col li { margin-bottom: 0.5rem; font-size: 0.88rem; }

.lk-footer-desc { font-size: 0.88rem; margin-top: 0.8rem; max-width: 300px; }

.lk-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.4rem;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------------- WHATSAPP FLOTANTE ---------------- */
.lk-whatsapp-float {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--lk-whatsapp);
    color: var(--lk-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: var(--lk-transition);
}

.lk-whatsapp-float:hover { transform: scale(1.08); }

/* ---------------- UTILIDADES ---------------- */
.lk-text-center { text-align: center; }
.lk-mt-1 { margin-top: 1rem; }
.lk-mt-2 { margin-top: 2rem; }
.lk-mb-1 { margin-bottom: 1rem; }
.lk-mb-2 { margin-bottom: 2rem; }
.lk-lead { font-size: 1.05rem; color: var(--lk-gray-700); max-width: 760px; margin: 0 auto; }

/* ============================================================
   RESPONSIVE (tablet y desktop)
   ============================================================ */
@media (min-width: 640px) {
    .lk-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .lk-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .lk-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .lk-results-grid { grid-template-columns: repeat(2, 1fr); }
    .lk-stats-bar { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px) {
    .lk-menu-toggle { display: none; }

    .lk-nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        background: none;
        padding: 0;
        box-shadow: none;
    }

    .lk-hero { padding: 8.5rem 0 4.5rem; }

    .lk-hero-grid { grid-template-columns: 1.15fr 0.85fr; }

    .lk-hero-img img { max-width: 380px; }

    .lk-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .lk-grid-4 { grid-template-columns: repeat(4, 1fr); }
    .lk-results-grid { grid-template-columns: repeat(3, 1fr); }
    .lk-steps { grid-template-columns: repeat(3, 1fr); }
    .lk-pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .lk-footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
    .lk-section { padding: 4.5rem 0; }
}

/* ============================================================
   AMPLIACIONES 2026-09: accesibilidad, idioma, capturas reales
   ============================================================ */

/* ---------------- ACCESIBILIDAD ---------------- */
/* Texto solo para lectores de pantalla (display:none los ocultaria tambien) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------------- SELECTOR DE IDIOMA (ES | Kreyol | EN) ---------------- */
.lk-lang {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    order: 2;
    margin-left: auto;
    flex-shrink: 0;
}

.lk-lang a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.35rem 0.45rem;
    border-radius: 6px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    transition: var(--lk-transition);
}

.lk-lang a:hover,
.lk-lang a.active { color: var(--lk-secondary); }

.lk-lang a.active { text-decoration: underline; text-underline-offset: 4px; }

.lk-lang span { color: rgba(255, 255, 255, 0.35); }

.lk-menu-toggle { order: 3; }

.lk-nav-links { order: 4; }

/* ---------------- CAPTURAS REALES ---------------- */
.lk-shots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.lk-shot {
    margin: 0;
    background: var(--lk-white);
    border: 1px solid var(--lk-gray-200);
    border-radius: var(--lk-radius-lg);
    box-shadow: var(--lk-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--lk-transition);
}

.lk-shot:hover { box-shadow: var(--lk-shadow-lg); transform: translateY(-3px); }

/* Marco tipo navegador para el portal */
.lk-shot-frame {
    background: var(--lk-ink-2);
    padding: 0.55rem 0.55rem 0;
}

.lk-shot-bar {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 0.3rem 0.5rem;
}

.lk-shot-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.lk-shot-bar span:nth-child(1) { background: var(--lk-tertiary); }
.lk-shot-bar span:nth-child(2) { background: var(--lk-secondary); }
.lk-shot-bar span:nth-child(3) { background: var(--lk-primary); }

.lk-shot-bar em {
    margin-left: 0.4rem;
    font-style: normal;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
}

.lk-shot-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px 6px 0 0;
}

/* Marco tipo telefono para la app */
.lk-shot-phone {
    display: flex;
    justify-content: center;
    padding: 1.2rem 1rem 0;
    background: linear-gradient(160deg, var(--lk-gray-100), var(--lk-gray-50));
}

.lk-shot-phone img {
    width: 190px;
    height: auto;
    border-radius: 22px 22px 0 0;
    border: 6px solid var(--lk-ink-2);
    border-bottom: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    max-height: 300px;
    object-position: top;
}

.lk-shot-caption { padding: 1.1rem 1.3rem 1.3rem; }

.lk-shot-caption h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.lk-shot-caption p { font-size: 0.88rem; color: var(--lk-gray-700); }

.lk-shot-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lk-primary-darker);
    background: rgba(76, 175, 80, 0.12);
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
}

/* ---------------- FOOTER: aviso legal ---------------- */
.lk-footer-legal {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 720px;
    margin: 0.6rem auto 0;
}

@media (min-width: 900px) {
    .lk-lang { order: 3; margin-left: 0; }
    .lk-nav-links { order: 2; margin-left: auto; }
    .lk-shots { grid-template-columns: 1.2fr 1.2fr 0.8fr; }
    .lk-shot-phone img { max-height: 340px; }
}
