:root {
    --gb-navy: #2c3e50;
    --gb-navy-deep: #1a252f;
    --gb-orange: #f39c12;
    --gb-orange-dark: #d35400;
    --gb-ink: #2c3e50;
    --gb-muted: #5c6b7a;
    --gb-line: #e8edf1;
    --gb-paper: #f6f4f0;
    --gb-radius: 14px;
    --gb-nav-h: 58px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    color: var(--gb-ink);
    line-height: 1.6;
    background: #fff;
}
[id] { scroll-margin-top: calc(var(--gb-nav-h) + 12px); }

.hero {
    background: linear-gradient(145deg, #1a252f 0%, #2c3e50 48%, #1e3a4c 100%);
    color: white;
    padding: 56px 20px 52px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(243, 156, 18, 0.16);
    color: #f7dc6f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero h1 { font-size: 48px; margin-bottom: 12px; color: #f39c12; letter-spacing: -0.02em; }
.hero .hero-subtitle { font-size: 20px; font-weight: 400; color: #ecf0f1; margin-bottom: 12px; max-width: 640px; }
.hero .subtitle { font-size: 16px; color: #bdc3c7; max-width: 560px; margin: 0 auto 22px; }
.hero .personalizable {
    display: inline-block;
    margin: 0 auto 28px;
    padding: 8px 16px;
    border: 1px solid rgba(241,196,15,0.55);
    border-radius: 24px;
    color: #f7dc6f;
    font-size: 15px;
    font-weight: 600;
    background: rgba(0,0,0,0.2);
}
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background: #f39c12;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); background: #f1c40f; }
.btn-hero-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #f39c12;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    border: 2px solid #f39c12;
    transition: all 0.3s;
}
.btn-hero-secondary:hover { background: #f39c12; color: #2c3e50; }

.page-hero {
    background: linear-gradient(145deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    padding: 40px 20px 36px;
    text-align: center;
}
.page-hero h1 { font-size: 34px; color: #f39c12; margin-bottom: 10px; letter-spacing: -0.02em; }
.page-hero p { color: #ecf0f1; max-width: 640px; margin: 0 auto; font-size: 16px; }

section { padding: 64px 20px; }
section h2 { text-align: center; font-size: 32px; color: #d35400; margin-bottom: 12px; }
section .section-subtitle { text-align: center; color: #888; font-size: 17px; margin-bottom: 36px; max-width: 680px; margin-left: auto; margin-right: auto; }
section .section-subtitle a { color: #d35400; font-weight: 700; }

.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; align-items: stretch; }
.feature-card {
    background: white;
    padding: 24px 22px;
    border-radius: var(--gb-radius);
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.08);
    border: 1px solid var(--gb-line);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(44, 62, 80, 0.12); }
.feature-icon { font-size: 28px; margin-bottom: 10px; line-height: 1; }
.feature-card h3 { color: #d35400; margin-bottom: 8px; font-size: 18px; }
.feature-card p { color: #5c6b7a; font-size: 14px; flex: 1; }
.feature-card a { color: #d35400; font-weight: 700; }

.bg-light { background: #f9f9f9; }
.modules { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.module-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #d35400;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.module-card h3 { color: #d35400; margin-bottom: 10px; }
.module-card ul { list-style: none; padding: 0; }
.module-card ul li { padding: 5px 0; color: #555; font-size: 14px; }
.module-card ul li::before { content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #f39c12; margin-right: 8px; vertical-align: middle; }

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: #d35400; outline: none; }
.contact-form button {
    width: 100%;
    padding: 15px;
    background: #d35400;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}
.contact-form button:hover { background: #e67e22; }
.form-message { text-align: center; margin-top: 15px; font-weight: bold; }

.cta {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
    padding: 60px 20px;
}
.cta h2 { color: #f39c12; font-size: 32px; margin-bottom: 15px; }
.cta p { font-size: 18px; margin-bottom: 30px; color: #ecf0f1; }
.cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.a-medida {
    background: linear-gradient(135deg, #1a5276, #148f77);
    color: white;
}
.a-medida h2 { color: #f1c40f; }
.a-medida .section-subtitle { color: #d5f5e3; }
.a-medida-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 10px;
}
.a-medida-card {
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 22px 20px;
}
.a-medida-card h3 { color: #f7dc6f; margin-bottom: 8px; font-size: 18px; }
.a-medida-card p { color: #ecf0f1; font-size: 14px; }

.kiosco-showcase {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 28px 36px;
    align-items: center;
    background: #fef9e7;
    border: 2px solid #f39c12;
    border-radius: 14px;
    padding: 22px 28px;
    margin: 0 0 40px;
}
.kiosco-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    background: transparent;
}
.kiosco-photo > img {
    width: 150px;
    height: auto;
    display: block;
}

.kiosco-copy h3 { color: #d35400; font-size: 22px; margin-bottom: 10px; }
.kiosco-copy p { color: #444; font-size: 16px; margin-bottom: 12px; }
.kiosco-copy p:last-child { margin-bottom: 0; }

.modalidades {
    background: linear-gradient(180deg, #fff8ee 0%, #f7f4ef 100%);
}
.modalidades h2 { margin-bottom: 12px; }
.mod-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 36px;
    padding: 0;
    max-width: 920px;
}
.mod-tags li {
    background: #fff;
    border: 1px solid #f5c16c;
    color: #c0392b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 1px 0 rgba(211, 84, 0, 0.08);
}
.mod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.mod-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 22px 22px;
    box-shadow: 0 8px 24px rgba(44, 62, 80, 0.08);
    border: 1px solid rgba(243, 156, 18, 0.25);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.mod-card:hover {
    border-color: #f39c12;
    box-shadow: 0 12px 28px rgba(44, 62, 80, 0.12);
}
.mod-icon { font-size: 32px; line-height: 1; margin-bottom: 12px; }
.mod-card h3 {
    color: #d35400;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.mod-card p { color: #555; font-size: 15px; flex: 1; }
.mod-printer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0 0;
    padding: 8px;
    background: #faf7f2;
    border-radius: 10px;
}
.mod-printer img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    object-position: 38% 42%;
    border-radius: 8px;
    flex-shrink: 0;
    background: #fff;
}
.mod-printer span {
    font-size: 12px;
    font-weight: 700;
    color: #7e5109;
    line-height: 1.35;
}
.pda-printer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    padding: 12px;
    text-align: left;
    background: #faf7f2;
    border-radius: 12px;
    border: 1px solid #f5c16c;
}
.pda-printer img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    object-position: 38% 42%;
    border-radius: 8px;
    flex-shrink: 0;
}
.pda-printer p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.pda-apk {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, #1b3a2a, #0e6655 55%, #1a5276);
    color: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    margin: 0 0 40px;
}
.pda-apk h2 {
    text-align: left;
    color: #a9dfbf;
    font-size: 28px;
    margin: 0 0 12px;
}
.pda-apk-badge {
    display: inline-block;
    background: #3ddc84;
    color: #0b2318;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}
.pda-apk-copy p { color: #e8f6f0; font-size: 16px; margin-bottom: 14px; }
.pda-apk-devices {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
    padding: 0;
}
.pda-apk-devices li {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(61, 220, 132, 0.45);
    color: #d5f5e3;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 8px;
}
.pda-apk-note { font-size: 14px !important; color: #abebc6 !important; }
.pda-apk .btn-hero { margin-top: 6px; }
.pda-apk-side { text-align: center; }
.pda-apk-phone {
    background: #0b2318;
    border: 3px solid #3ddc84;
    border-radius: 28px;
    padding: 28px 22px 24px;
    max-width: 200px;
    margin: 0 auto 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.pda-apk-phone strong { display: block; color: #3ddc84; font-size: 15px; }
.pda-apk-phone span { display: block; color: #ecf0f1; font-size: 13px; margin: 8px 0 14px; }
.pda-apk-phone em {
    display: block;
    font-style: normal;
    background: #3ddc84;
    color: #0b2318;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 8px 0;
    border-radius: 8px;
}
.pda-apk-side p { color: #abebc6; font-size: 13px; font-weight: 600; margin: 0; }

section.qr-mkt { padding: 0 0 72px; }
.qr-mkt {
    background: #f7f4ef;
}
.qr-mkt-page { padding-top: 28px; }
.qr-mkt-head {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    padding: 56px 20px 36px;
    margin: 0 0 36px;
}
.qr-mkt-head h2 { color: #f39c12; margin-bottom: 12px; }
.qr-mkt-head .qr-mkt-lead { color: #d5dbdb; margin-bottom: 28px; }
.qr-mkt .qr-mkt-badge {
    display: block;
    width: max-content;
    margin: 0 auto 14px;
    background: #f39c12;
    color: #1a252f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 6px;
}
.qr-mkt h2 { color: #d35400; }
.qr-mkt .qr-mkt-lead {
    color: #555;
    max-width: 820px;
    margin-bottom: 28px;
}
.qr-mkt-head .qr-mkt-lead { color: #d5dbdb; }
.qr-mkt-head .qr-mkt-pills { margin-bottom: 0; }
.qr-mkt-pills {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 0 auto 40px;
    padding: 0;
    max-width: 980px;
}
.qr-mkt-pills li {
    background: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-top: 3px solid #f39c12;
}
.qr-mkt-pills strong { display: block; color: #d35400; font-size: 15px; margin-bottom: 4px; }
.qr-mkt-pills span { display: block; color: #666; font-size: 13px; }
.qr-mkt-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    margin: 0 0 48px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.qr-mkt-copy h3 {
    text-align: left;
    color: #d35400;
    font-size: 24px;
    margin-bottom: 12px;
}
.qr-mkt-copy p { color: #444; font-size: 16px; margin: 0; }
.qr-phone {
    width: 210px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 28px;
    padding: 12px 10px 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.qr-phone-notch {
    width: 68px;
    height: 7px;
    background: #333;
    border-radius: 8px;
    margin: 0 auto 10px;
}
.qr-phone-screen {
    background: #f4f1ea;
    border-radius: 16px;
    padding: 14px 12px 16px;
    text-align: left;
}
.qr-ph-brand { color: #0f3d36; font-size: 11px; font-weight: 700; margin: 0; }
.qr-ph-mesa-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 10px;
    flex-wrap: wrap;
}
.qr-ph-mesa {
    display: inline-block;
    background: #d35400;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
    margin: 0;
}
.qr-ph-lang {
    display: inline-flex;
    border: 1px solid #d35400;
    border-radius: 6px;
    overflow: hidden;
    font-size: 9px;
    font-weight: 800;
}
.qr-ph-lang span { padding: 2px 6px; color: #d35400; }
.qr-ph-lang span.activo { background: #d35400; color: #fff; }
.qr-ph-item {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #333;
    padding: 5px 0;
    border-bottom: 1px solid #e8e0d4;
}
.qr-ph-total {
    text-align: right;
    font-weight: 800;
    color: #d35400;
    margin: 8px 0 10px;
    font-size: 16px;
}
.qr-ph-btn {
    display: block;
    text-align: center;
    background: #1e8449;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 8px 6px;
    border-radius: 8px;
    margin-bottom: 6px;
}
.qr-ph-btn-alt { background: #8e44ad; }
.qr-mkt-h3 {
    text-align: center;
    color: #d35400;
    font-size: 26px;
    margin: 0 0 10px;
}
.qr-mkt-sub {
    text-align: center;
    color: #666;
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 16px;
}
.qr-flow {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 0 0 52px;
    padding: 0;
}
.qr-flow li {
    background: #fff;
    border-radius: 14px;
    padding: 22px 18px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border: 1px solid #eee;
}
.qr-flow-num {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: #d35400;
    color: #fff;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 10px;
}
.qr-flow h4 { color: #2c3e50; font-size: 16px; margin-bottom: 8px; }
.qr-flow p { color: #555; font-size: 14px; margin: 0; }
.qr-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 0 48px;
}
.qr-benefits article {
    background: #fff;
    border-radius: 12px;
    padding: 20px 18px;
    border-left: 4px solid #f39c12;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.qr-benefits h4 { color: #d35400; font-size: 16px; margin-bottom: 6px; }
.qr-benefits p { color: #555; font-size: 14px; margin: 0; }
.qr-plus {
    background: linear-gradient(135deg, #fef9e7, #fdebd0);
    border: 2px solid #f39c12;
    border-radius: 16px;
    padding: 32px 28px 28px;
    margin: 0 0 36px;
}
.qr-plus h3 {
    text-align: center;
    color: #d35400;
    font-size: 24px;
    margin: 0 0 10px;
}
.qr-plus > p {
    text-align: center;
    color: #5d4e37;
    max-width: 720px;
    margin: 0 auto 24px;
    font-size: 16px;
}
.qr-plus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.qr-plus-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 16px 16px;
    border: 1px solid rgba(243, 156, 18, 0.35);
}
.qr-plus-card.exclusive {
    border-color: #d35400;
    box-shadow: 0 6px 18px rgba(211, 84, 0, 0.12);
}
.qr-plus-tag {
    display: inline-block;
    background: #fef9e7;
    color: #9a6b00;
    border: 1px solid #f7dc6f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 5px;
    margin-bottom: 8px;
}
.qr-plus-card.exclusive .qr-plus-tag {
    background: #d35400;
    color: #fff;
    border-color: #d35400;
}
.qr-plus-card h4 { color: #2c3e50; font-size: 16px; margin-bottom: 8px; }
.qr-plus-card p { color: #555; font-size: 14px; margin: 0; }
.qr-mkt-tags { margin-bottom: 36px; }
.qr-mkt-cta {
    text-align: center;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 16px;
    padding: 36px 24px;
}
.qr-mkt-cta h3 { color: #f39c12; font-size: 26px; margin: 0 0 8px; }
.qr-mkt-cta p { color: #ecf0f1; margin: 0 0 22px; font-size: 16px; }
.qr-mkt-cta .btn-hero-secondary { color: #f39c12; }
.mod-card-link {
    display: inline-block;
    margin-top: 10px;
    color: #d35400;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}
.mod-card-link:hover { text-decoration: underline; }
.mod-chip {
    display: inline-block;
    margin-top: 16px;
    align-self: flex-start;
    background: #fef9e7;
    color: #9a6b00;
    border: 1px solid #f7dc6f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
}
.modalidades-compact { padding: 56px 20px; }
.mod-compact-lead {
    text-align: center;
    color: #555;
    font-size: 17px;
    max-width: 760px;
    margin: 0 auto;
}
.mod-compact-lead a { color: #d35400; font-weight: 700; }

.home-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.home-card {
    background: white;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    display: block;
    border-top: 4px solid #d35400;
    transition: transform 0.2s, box-shadow 0.2s;
}
.home-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.home-card h3 { color: #d35400; margin-bottom: 8px; font-size: 20px; }
.home-card p { color: #666; font-size: 14px; }
.home-card .go { color: #d35400; font-weight: 700; font-size: 14px; margin-top: 14px; display: inline-block; }

.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}
.flow-grid .step-num { font-size: 60px; }
.flow-grid h3 { color: #d35400; }
.flow-grid a { color: #d35400; font-weight: 700; }

footer {
    background: #1a252f;
    color: #d5dbdb;
    padding: 40px 20px 28px;
}
footer a { color: #f39c12; text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px 32px;
    text-align: left;
    margin-bottom: 28px;
}
.footer-brand { color: #f39c12; font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.footer-grid p { margin: 0 0 6px; font-size: 14px; }
.footer-grid h3 {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin: 0 0 7px; font-size: 14px; }
.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
    text-align: center;
    font-size: 13px;
    color: #95a5a6;
}
.footer-legal p { margin: 4px 0; }

.top-nav {
    background: rgba(26, 37, 47, 0.96);
    backdrop-filter: blur(12px);
    padding: 10px 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(243, 156, 18, 0.18);
}
.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    background: #f39c12;
    color: #1a252f;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 800;
    z-index: 200;
}
.skip-link:focus { left: 12px; }
.top-nav .brand { color: #f39c12; font-weight: 800; font-size: 18px; text-decoration: none; letter-spacing: -0.02em; }
.top-nav .links { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 6px; }
.top-nav .links > a,
.nav-more-btn {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    padding: 8px 10px;
    border-radius: 8px;
}
.top-nav .links > a:hover,
.top-nav .links > a.active,
.nav-more.has-active > .nav-more-btn,
.nav-more-btn:hover { color: #f39c12; background: rgba(243, 156, 18, 0.08); }
.nav-more { position: relative; }
.nav-more-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 188px;
    background: #1a252f;
    border: 1px solid rgba(243, 156, 18, 0.25);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.35);
    z-index: 120;
}
.nav-more.is-open .nav-more-menu { display: block; }
.nav-more-menu a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 12px;
    border-radius: 8px;
}
.nav-more-menu a:hover,
.nav-more-menu a.active { color: #f39c12; background: rgba(243, 156, 18, 0.1); }
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid #f39c12;
    color: #f39c12;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.editions { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-bottom: 20px; }
.edition-card {
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.edition-card h3 { font-size: 22px; margin-bottom: 12px; }
.edition-card p, .edition-card li { font-size: 15px; color: #444; }
.edition-card ul { margin: 12px 0 0 18px; }
.edition-card li { margin-bottom: 6px; }
.edition-card.local { background: #eaf2f8; border-left: 5px solid #2980b9; }
.edition-card.local h3 { color: #1a5276; }
.edition-card.remote { background: #eafaf1; border-left: 5px solid #27ae60; }
.edition-card.remote h3 { color: #1e8449; }
.edition-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}
.edition-card.local .edition-badge { background: #d4e6f1; color: #1a5276; }
.edition-card.remote .edition-badge { background: #d5f5e3; color: #1e8449; }
.edition-note {
    background: #fef5eb;
    border-left: 4px solid #d35400;
    border-radius: 10px;
    padding: 16px 20px;
    color: #7e5109;
    font-size: 15px;
    margin-top: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.edition-note strong { color: #d35400; }
.edition-note a { color: #d35400; font-weight: 700; }
.feature-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 8px;
}
.feature-tag.both { background: #f5eef8; color: #7d3c98; }
.feature-tag.local { background: #eaf2f8; color: #1a5276; }
.feature-tag.remote { background: #eafaf1; color: #1e8449; }
.feature-tag.exclusive { background: #fef9e7; color: #b7950b; border: 1px solid #f39c12; }
.feature-card.exclusive {
    border: 2px solid #f39c12;
    background: linear-gradient(180deg, #fffdf5 0%, #ffffff 100%);
}
.feature-card.exclusive h3 { color: #b7950b; }
.exclusive-banner {
    background: linear-gradient(135deg, #fef9e7, #fdebd0);
    border: 2px solid #f39c12;
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 40px;
    text-align: center;
}
.exclusive-banner h3 { color: #d35400; font-size: 22px; margin-bottom: 12px; }
.exclusive-banner p { color: #555; font-size: 16px; max-width: 820px; margin: 0 auto; }

.manual-inst {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px 36px;
    margin: 36px 0 8px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}
.manual-inst > h2 {
    text-align: left;
    font-size: 26px;
    color: #d35400;
    margin: 0 0 10px;
}
.manual-lead { color: #555; font-size: 16px; margin: 0 0 18px; max-width: 820px; }
.manual-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
}
.manual-toc a {
    background: #fef5eb;
    color: #d35400;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    padding: 7px 12px;
    border-radius: 8px;
    border: 1px solid #f5c16c;
}
.manual-toc a:hover { background: #fdebd0; }
.manual-block { margin: 0 0 32px; padding: 0 0 8px; border-bottom: 1px solid #f0f0f0; }
.manual-block:last-child { border-bottom: 0; margin-bottom: 0; }
.manual-block h3 { color: #2c3e50; font-size: 20px; margin: 0 0 10px; }
.manual-block h4 { color: #d35400; font-size: 16px; margin: 0 0 10px; }
.manual-block p, .manual-block li { color: #444; font-size: 15px; }
.manual-block ol { margin: 0 0 16px 20px; }
.manual-block li { margin-bottom: 8px; }
.manual-block code {
    font-family: Consolas, 'Courier New', monospace;
    background: #f4f6f7;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 13px;
}
.manual-shots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin: 16px 0;
}
.manual-shots .wiz-wide { grid-column: 1 / -1; max-width: 560px; }
.wiz { margin: 0; }
.wiz figcaption, .tpv-shot figcaption, .phone-shot figcaption {
    font-size: 12px;
    font-weight: 700;
    color: #7e5109;
    margin: 0 0 8px;
}
.wiz-win, .tpv-win {
    background: #f0f0f0;
    border: 1px solid #a0a0a0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    font-size: 13px;
}
.wiz-title, .tpv-bar {
    background: linear-gradient(180deg, #f8f8f8, #e4e4e4);
    border-bottom: 1px solid #c0c0c0;
    padding: 7px 12px;
    font-weight: 700;
    color: #333;
    font-size: 12px;
}
.wiz-body, .tpv-body { background: #fff; padding: 14px 16px 16px; }
.wiz-h { font-weight: 800; color: #1a5276; margin: 0 0 8px; font-size: 15px; }
.wiz-body p { margin: 0 0 8px; color: #444; font-size: 13px; line-height: 1.4; }
.wiz-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: default;
}
.wiz-radio.on { background: #eaf2f8; }
.wiz-radio i {
    width: 14px;
    height: 14px;
    border: 2px solid #2980b9;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 3px #fff;
}
.wiz-radio.on i { background: #2980b9; }
.wiz-warn {
    background: #fdebd0;
    color: #7e5109;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 12px !important;
    margin-top: 10px !important;
}
.wiz-foot {
    background: #f0f0f0;
    border-top: 1px solid #d0d0d0;
    padding: 8px 12px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
.wiz-foot span, .wiz-foot b {
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid #adadad;
    border-radius: 3px;
    background: #e1e1e1;
    font-size: 12px;
    font-weight: 600;
}
.wiz-foot b { background: #fff; border-color: #0078d7; color: #0078d7; }
.wiz-btns-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.wiz-btns-row span {
    padding: 6px 12px;
    background: #e1e1e1;
    border: 1px solid #adadad;
    border-radius: 3px;
    font-weight: 700;
    font-size: 12px;
}
.tpv-body h4 { margin: 0 0 8px; color: #d35400; font-size: 16px; text-align: center; }
.tpv-body p { font-size: 13px; color: #555; text-align: center; margin: 0 0 12px; }
.tpv-body label, .man-phone-screen label {
    display: block;
    text-align: left;
    font-size: 12px;
    color: #555;
    margin: 0 0 10px;
    font-weight: 600;
}
.tpv-body input, .man-phone-screen input {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 8px 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 13px;
    color: #2c3e50;
    background: #fafafa;
}
.tpv-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.tpv-actions .ok, .tpv-body .ok, .ph-btn {
    display: inline-block;
    background: #d35400;
    color: #fff;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
}
.tpv-actions .alt { background: #2980b9; color: #fff; font-weight: 700; padding: 8px 14px; border-radius: 6px; font-size: 13px; }
.tpv-body.left { text-align: left; }
.tpv-body.left p, .tpv-body.left h4 { text-align: left; }
.chk { display: flex; align-items: center; gap: 8px; padding: 10px; background: #fff7ed; border: 2px solid #fdba74; border-radius: 8px; font-weight: 700; margin-bottom: 12px; }
.chk i { width: 16px; height: 16px; border: 2px solid #d35400; border-radius: 3px; background: #d35400; }
.chk-blue { background: #eff6ff; border-color: #93c5fd; }
.chk-blue i { border-color: #2563eb; background: #2563eb; }
.tpv-subh { font-weight: 800; color: #1a5276; margin: 4px 0 10px !important; text-align: left !important; font-size: 14px !important; }
.tpv-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.manual-split { margin: 12px 0 0 18px; }
.manual-tip {
    background: #eafaf1;
    border-left: 4px solid #27ae60;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: #1e8449;
}
.manual-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}
.phone-shot { margin: 12px 0 0; text-align: center; }
.man-phone {
    width: 230px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 28px;
    padding: 12px 10px 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}
.man-phone-notch {
    width: 72px;
    height: 8px;
    background: #333;
    border-radius: 8px;
    margin: 0 auto 10px;
}
.man-phone-screen {
    background: #f4f1ea;
    border-radius: 16px;
    padding: 16px 14px 18px;
    text-align: left;
    min-height: 340px;
}
.ph-brand { color: #0f3d36; font-size: 11px; font-weight: 700; margin: 0; }
.man-phone-screen h5 { color: #0f3d36; font-size: 18px; margin: 4px 0 6px; }
.ph-lede { font-size: 12px; color: #666; margin: 0 0 12px; }
.ph-btn { width: 100%; text-align: center; margin-top: 6px; }

@media (max-width: 860px) {
    .nav-toggle { display: inline-block; }
    .top-nav .links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    .top-nav.is-open .links { display: flex; }
    .top-nav .links > a,
    .nav-more-btn { padding: 12px 4px; border-top: 1px solid rgba(255,255,255,0.08); border-radius: 0; text-align: left; width: 100%; }
    .nav-more { width: 100%; }
    .nav-more-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: 0;
        padding: 0 0 8px 12px;
        min-width: 0;
    }
    .nav-more.is-open .nav-more-menu { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero .hero-subtitle { font-size: 16px; }
    .page-hero h1 { font-size: 28px; }
    section h2 { font-size: 28px; }
    section { padding: 56px 20px; }
    .kiosco-showcase { grid-template-columns: 1fr; }
    .kiosco-photo { margin: 0 auto; }
    .kiosco-photo > img { width: 130px; }
    .mod-grid { grid-template-columns: 1fr; }
    .pda-apk { grid-template-columns: 1fr; padding: 26px 22px; }
    .pda-apk h2 { font-size: 22px; text-align: center; }
    .pda-apk-copy { text-align: center; }
    .pda-apk-devices { justify-content: center; }
    .pda-apk .btn-hero { display: inline-block; }
    .qr-mkt-pills, .qr-flow, .qr-benefits, .qr-plus-grid { grid-template-columns: 1fr; }
    .qr-mkt-intro { grid-template-columns: 1fr; padding: 22px 18px; }
    .qr-mkt-copy h3 { text-align: center; }
    .manual-pair { grid-template-columns: 1fr; }
    .manual-toc { flex-direction: column; }
    .tpv-row2 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .mod-grid { grid-template-columns: 1fr 1fr; }
    .qr-flow, .qr-plus-grid { grid-template-columns: 1fr 1fr; }
    .qr-mkt-pills, .qr-benefits { grid-template-columns: 1fr 1fr; }
    .qr-mkt-intro { grid-template-columns: 1fr; }
}

.tienda-pruebas-banner {
    background: #fef5e7;
    color: #6d4c00;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    border-bottom: 1px solid #f0d78c;
}
.tienda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 36px;
}
.tienda-card {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 28px 24px;
}
.tienda-card-destacada { border-color: #f39c12; }
.tienda-badge {
    display: inline-block;
    background: #f39c12;
    color: #2c3e50;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.tienda-precio { font-size: 22px; margin: 8px 0 12px; }
.tienda-precio span { font-size: 14px; color: #666; }
.tienda-card ul { margin: 12px 0 20px 18px; }
.tienda-extras {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin: 16px 0 28px;
}
.tienda-extras > div { background: #f7f9fb; padding: 16px; border-radius: 10px; }
.tienda-h2 { text-align: center; margin: 12px 0; }
.tienda-legal-links, .tienda-nota { text-align: center; color: #555; }
.tienda-form {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    padding: 28px;
    border-radius: 12px;
}
.tienda-form fieldset {
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 16px;
    margin: 0 0 16px;
}
.tienda-form legend { font-weight: 700; padding: 0 6px; }
.tienda-form input[type="text"],
.tienda-form input[type="email"],
.tienda-form input[type="tel"],
.tienda-form input[type="number"],
.tienda-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin: 8px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    font: inherit;
}
.tienda-opt { display: block; margin: 8px 0; }
.tienda-resumen { background: #f7f9fb; padding: 12px 16px; border-radius: 8px; margin: 12px 0; }
.tienda-aviso, .tienda-error { color: #c0392b; }
.tienda-ok { background: #eafaf1; padding: 20px; border-radius: 10px; }
.tienda-clave {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    background: #fff;
    border: 1px solid #d5dce3;
    padding: 12px 16px;
}
.tienda-legal-prose { max-width: 820px; margin: 0 auto; }
.tienda-legal-prose h2 { font-size: 20px; margin: 28px 0 10px; text-align: left; }
.tienda-legal-prose p, .tienda-legal-prose li { color: #444; }
.tienda-tabla { width: 100%; border-collapse: collapse; font-size: 14px; }
.tienda-tabla th, .tienda-tabla td { border: 1px solid #ddd; padding: 6px 8px; text-align: left; }
@media (max-width: 768px) {
    .tienda-grid, .tienda-extras { grid-template-columns: 1fr; }
}

/* —— Checkout / asistente de licencia —— */
.co-hero p { max-width: 640px; }
.co-section { padding: 28px 20px 88px; background: #eef1f4; }
.co-lead {
    text-align: center;
    font-size: 20px;
    color: #2c3e50;
    font-weight: 600;
    margin: 0 0 22px;
}
.co-gate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 880px;
    margin: 0 auto;
}
.co-gate-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    background: #fff;
    border: 1px solid #d5dde5;
    border-radius: 14px;
    padding: 26px 24px;
    cursor: pointer;
    font: inherit;
    color: inherit;
    box-shadow: 0 8px 28px rgba(44, 62, 80, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.co-gate-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(44, 62, 80, 0.1);
    border-color: #f39c12;
}
.co-gate-card.is-featured { border-color: #f39c12; background: linear-gradient(180deg, #fffdf8, #fff); }
.co-gate-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c0392b;
}
.co-gate-card strong { font-size: 22px; color: #1e2a38; }
.co-gate-card span { color: #5c6b7a; line-height: 1.55; }
.co-gate-card em { color: #d35400; font-style: normal; font-weight: 700; margin-top: 6px; }

.co-card {
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 14px;
    padding: 28px 26px;
    box-shadow: 0 6px 22px rgba(44, 62, 80, 0.05);
}
.co-wizard { max-width: 720px; margin: 0 auto; }
.co-wiz-progress {
    height: 6px;
    background: #e8eef3;
    border-radius: 99px;
    margin-bottom: 18px;
    overflow: hidden;
}
.co-wiz-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: #f39c12;
    transition: width 0.25s ease;
}
.co-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d35400;
    margin-bottom: 6px;
}
.co-card h2, .co-wizard h2, .co-summary h2 {
    text-align: left;
    font-size: 22px;
    color: #1e2a38;
    margin: 0 0 8px;
}
.co-hint { color: #5c6b7a; margin: 0 0 18px; font-size: 15px; }
.co-err { color: #c0392b; min-height: 1.2em; font-size: 14px; margin: 8px 0; }
.co-aviso {
    background: #fef5e7;
    border-left: 4px solid #f39c12;
    padding: 12px 14px;
    border-radius: 8px;
    color: #6d4c00;
    margin-bottom: 12px;
    font-size: 14px;
}
.co-wiz-nav, .co-ck-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 18px;
}
.co-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    border-radius: 10px;
    padding: 12px 22px;
    text-decoration: none;
}
.co-btn-primary { background: #f39c12; color: #1e2a38; }
.co-btn-primary:hover { background: #f1c40f; }
.co-btn-ghost {
    background: transparent;
    color: #2c3e50;
    border: 1px solid #cfd8e3;
}
.co-btn-ghost:hover { background: #f4f7fa; }
.co-options { display: flex; flex-direction: column; gap: 10px; }
.co-options-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.co-option {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    border: 1px solid #d5dde5;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    background: #fff;
}
.co-option:has(input:checked) {
    border-color: #f39c12;
    background: #fffaf0;
    box-shadow: 0 0 0 1px #f39c12;
}
.co-option input { margin-top: 3px; accent-color: #e67e22; }
.co-option strong { display: block; color: #1e2a38; }
.co-option em { display: block; color: #d35400; font-style: normal; font-weight: 700; font-size: 14px; margin: 2px 0 4px; }
.co-option small { display: block; color: #5c6b7a; line-height: 1.45; }
.co-option-check { margin-bottom: 10px; }
.co-check {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    margin: 10px 0;
    font-size: 14px;
    color: #333;
}
.co-check a { color: #d35400; font-weight: 700; }
.co-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.co-stepper input[type="number"] {
    width: 88px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    padding: 10px;
    border: 2px solid #d5dde5;
    border-radius: 10px;
}
.co-stepper-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #cfd8e3;
    background: #fff;
    font-size: 22px;
    cursor: pointer;
    color: #2c3e50;
}
.co-stepper-btn:hover { background: #f4f7fa; }
.co-field-help { color: #7b8794; font-size: 13px; margin-top: 8px; }
.co-censo-msg { font-size: 13px; margin: 6px 0 0; min-height: 1.15em; color: #5c6b7a; }
.co-censo-msg.is-ok { color: #1e8449; }
.co-censo-msg.is-warn { color: #b9770e; }
.co-reasons { margin: 0 0 18px 18px; color: #333; }
.co-reasons li { margin-bottom: 8px; }
.co-wiz-quote {
    background: #f7f9fb;
    border-radius: 12px;
    padding: 16px 18px;
}
.co-cuota-box {
    background: #1e2a38;
    color: #ecf0f1;
    border-radius: 12px;
    padding: 18px 18px 16px;
    margin: 0 0 16px;
}
.co-cuota-box .co-kicker { color: #f39c12; margin-bottom: 4px; }
.co-cuota-lead { font-size: 15px; color: #d5dde5; margin: 0 0 10px; }
.co-cuota-cifra {
    font-size: 32px;
    font-weight: 800;
    color: #f39c12;
    line-height: 1.15;
    margin: 0 0 6px;
}
.co-cuota-cifra small { font-size: 15px; font-weight: 600; color: #ecf0f1; margin-left: 6px; }
.co-cuota-iva { margin: 0 0 10px; font-size: 16px; }
.co-cuota-iva strong { color: #fff; }
.co-firma {
    display: block;
    width: 100%;
    max-width: 640px;
    height: 180px;
    border: 1px dashed #9aa8b5;
    border-radius: 10px;
    background: #fafbfc;
    touch-action: none;
    cursor: crosshair;
}

.co-switch { font-size: 14px; color: #5c6b7a; margin: 0 0 16px; }
.co-linkish {
    border: none;
    background: none;
    color: #d35400;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}
.co-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
    gap: 24px;
    align-items: start;
}
.co-progress {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}
.co-progress button {
    border: none;
    background: #fff;
    border: 1px solid #d5dde5;
    border-radius: 99px;
    padding: 8px 14px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    color: #5c6b7a;
    cursor: pointer;
}
.co-progress button.is-active { background: #2c3e50; color: #fff; border-color: #2c3e50; }
.co-progress button.is-done { background: #eafaf1; color: #1e8449; border-color: #a9dfbf; }
.co-fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 22px;
}
.co-fieldset legend {
    font-weight: 700;
    color: #1e2a38;
    margin-bottom: 10px;
    padding: 0;
}
.co-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
}
.co-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 6px;
}
.co-field input {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #cfd8e3;
    border-radius: 10px;
    font: inherit;
    background: #fff;
}
.co-field input:focus {
    outline: none;
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
}
.co-span-2 { grid-column: span 2; }
.co-summary {
    position: sticky;
    top: 16px;
    background: #1e2a38;
    color: #ecf0f1;
    border-radius: 14px;
    padding: 22px 20px;
}
.co-summary h2 { color: #f39c12; font-size: 18px; margin-bottom: 12px; }
.co-lines { list-style: none; margin: 0 0 12px; padding: 0; }
.co-lines li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #e4eaef;
    font-size: 14px;
    color: #2c3e50;
}
.co-lines strong { white-space: nowrap; }
.co-sum-base, .co-sum-iva {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
    font-size: 14px;
    color: #5c6b7a;
}
.co-sum-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 14px 0 8px;
    font-size: 16px;
    padding-top: 10px;
    border-top: 1px solid #e4eaef;
    color: #1e2a38;
}
.co-sum-total strong { font-size: 26px; color: #d35400; }
.co-sum-note { font-size: 12px; color: #7f8c8d; margin: 8px 0 0; }
.co-summary .co-lines li { border-bottom-color: rgba(255,255,255,0.08); color: #ecf0f1; }
.co-summary .co-sum-base, .co-summary .co-sum-iva { color: #bdc3c7; }
.co-summary .co-sum-base strong, .co-summary .co-sum-iva strong { color: #fff; }
.co-summary .co-sum-total { border-top-color: rgba(243, 156, 18, 0.4); color: #ecf0f1; }
.co-summary .co-sum-total strong { color: #f39c12; }
.co-summary .co-sum-note { color: #95a5a6; }
.co-msg { margin-top: 12px; font-size: 14px; }
.co-msg.is-error { color: #e74c3c; }
.co-mobile-bar {
    display: none;
    position: sticky;
    bottom: 0;
    background: #1e2a38;
    color: #fff;
    padding: 12px 18px;
    justify-content: space-between;
    z-index: 20;
}
.co-asistente-cta {
    max-width: 900px;
    margin: 0 auto 32px;
    background: #fff;
    border: 1px solid #f39c12;
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.co-asistente-cta h2 { text-align: left; font-size: 22px; margin: 0 0 6px; color: #1e2a38; }
.co-asistente-cta p { margin: 0; color: #5c6b7a; max-width: 560px; }
.co-asistente-cta .co-btn { text-decoration: none; }

[hidden] { display: none !important; }

@media (max-width: 900px) {
    .co-gate-grid, .co-options-2, .co-layout, .co-grid { grid-template-columns: 1fr; }
    .co-span-2 { grid-column: span 1; }
    .co-summary { position: static; }
    .co-mobile-bar:not([hidden]) { display: flex; }
    .co-wiz-nav { justify-content: stretch; }
    .co-wiz-nav .co-btn { flex: 1 1 auto; }
}

/* —— Estructura de páginas (menos ruido, más escaneo) —— */
.page-toc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    padding: 20px 20px 8px;
    max-width: 860px;
}
.page-toc a {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--gb-line);
    color: var(--gb-navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}
.page-toc a:hover,
.page-toc a:focus { border-color: var(--gb-orange); color: var(--gb-orange-dark); }

.gb-details {
    margin-top: 12px;
    border-top: 1px solid var(--gb-line);
    padding-top: 10px;
}
.gb-details summary {
    cursor: pointer;
    color: var(--gb-orange-dark);
    font-weight: 700;
    font-size: 13px;
    list-style: none;
}
.gb-details summary::-webkit-details-marker { display: none; }
.gb-details summary::after { content: ' ▾'; font-size: 11px; }
.gb-details[open] summary::after { content: ' ▴'; }
.gb-details .gb-details-body {
    margin-top: 10px;
    color: #555;
    font-size: 13px;
    line-height: 1.55;
}
.gb-details .gb-details-body p { margin: 0 0 8px; }
.gb-details .gb-details-body ul { margin: 0 0 8px 18px; }
.feature-card .feature-tag { margin-top: 12px; align-self: flex-start; }

.section-split { margin-top: 48px; }
.section-split > h2,
.section-kicker {
    text-align: left;
}
.section-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gb-orange-dark);
    margin-bottom: 6px;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.path-card {
    background: #fff;
    border: 1px solid var(--gb-line);
    border-radius: var(--gb-radius);
    padding: 22px 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 4px 14px rgba(44, 62, 80, 0.06);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.path-card:hover {
    transform: translateY(-3px);
    border-color: var(--gb-orange);
    box-shadow: 0 10px 24px rgba(44, 62, 80, 0.12);
}
.path-card .path-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--gb-orange-dark);
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.path-card h3 { color: var(--gb-navy); font-size: 18px; margin-bottom: 8px; }
.path-card p { color: var(--gb-muted); font-size: 14px; flex: 1; }
.path-card .go { color: var(--gb-orange-dark); font-weight: 700; font-size: 13px; margin-top: 14px; }

.editions-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.editions-teaser .edition-card { margin: 0; }
.editions-teaser .edition-card ul { margin: 10px 0 16px 18px; }
.edition-card .go {
    display: inline-block;
    margin-top: auto;
    color: inherit;
    font-weight: 800;
    text-decoration: none;
}

.compare-wrap { overflow-x: auto; margin: 0 auto 32px; max-width: 820px; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.08);
    font-size: 14px;
}
.compare-table th,
.compare-table td {
    padding: 12px 14px;
    text-align: center;
    border-bottom: 1px solid var(--gb-line);
}
.compare-table thead th {
    background: var(--gb-navy);
    color: #fff;
    font-size: 13px;
}
.compare-table tbody th {
    text-align: left;
    font-weight: 600;
    color: var(--gb-navy);
    background: #fafbfc;
}
.compare-table .ok { color: #1e8449; font-weight: 800; }
.compare-table .no { color: #95a5a6; }
.compare-table .note { font-size: 12px; color: var(--gb-muted); font-weight: 600; }

.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}
.extra-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 18px 16px;
    border-left: 4px solid var(--gb-orange-dark);
    box-shadow: 0 3px 12px rgba(44, 62, 80, 0.06);
}
.extra-card h3 { color: var(--gb-orange-dark); font-size: 16px; margin-bottom: 8px; }
.extra-card p { color: #555; font-size: 14px; margin: 0; }
.extra-card a { color: var(--gb-orange-dark); font-weight: 700; }

.app-teasers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.app-teaser {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, #1b3a2a, #0e6655 60%, #1a5276);
    color: #fff;
    border-radius: var(--gb-radius);
    padding: 22px 22px 18px;
    min-height: 168px;
    box-shadow: 0 8px 22px rgba(14, 102, 85, 0.22);
}
.app-teaser.kds { background: linear-gradient(135deg, #1a252f, #1e3a4c 55%, #148f77); }
.app-teaser-badge {
    display: inline-block;
    width: max-content;
    background: rgba(255,255,255,0.14);
    color: #f7dc6f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 6px;
    margin-bottom: 10px;
}
.app-teaser strong { font-size: 18px; margin-bottom: 6px; display: block; }
.app-teaser p { color: #d5f5e3; font-size: 14px; flex: 1; margin: 0; }
.app-teaser .go { color: #f7dc6f; font-weight: 800; font-size: 13px; margin-top: 14px; }

.pda-apk.is-compact,
.pda-apk-compact-hide { display: none; }

.cta-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #fff8ee;
    border: 1px solid rgba(243, 156, 18, 0.45);
    border-radius: var(--gb-radius);
    padding: 22px 24px;
    margin: 8px 0 0;
}
.cta-card h3 { color: var(--gb-navy); font-size: 20px; margin: 0 0 4px; }
.cta-card p { margin: 0; color: var(--gb-muted); max-width: 520px; font-size: 15px; }

.contact-split .contact-form { margin: 0; max-width: none; }
.contact-aside {
    background: #fff;
    border-radius: var(--gb-radius);
    padding: 22px 20px;
    border: 1px solid var(--gb-line);
    box-shadow: 0 4px 14px rgba(44, 62, 80, 0.06);
}
.contact-aside h3 { color: var(--gb-navy); font-size: 16px; margin-bottom: 10px; }
.contact-aside p { color: var(--gb-muted); font-size: 14px; margin: 0 0 10px; }
.contact-aside a { color: var(--gb-orange-dark); font-weight: 700; }

.edition-card { display: flex; flex-direction: column; }
.edition-card .edition-more { margin-top: 8px; }

@media (max-width: 1024px) {
    .path-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .path-grid,
    .editions-teaser,
    .app-teasers,
    .extras-grid,
    .contact-split,
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 32px; }
    .compare-table tbody th { font-size: 13px; }
}

