/* Dynasty Prestige — shared SEO landing layout (alineado con index.html) */
:root {
    --bg-primary: #050506;
    --bg-secondary: #0a0a0c;
    --bg-accent: #121214;
    --bg-card: linear-gradient(180deg, rgba(16, 16, 18, 0.94), rgba(6, 6, 8, 0.99));
    --text-main: #fff;
    --gold: #d6f03c;
    --gold-soft: #f4ff95;
    --silver: #d8d8d8;
    --silver-soft: #b5b5b5;
    --border: rgba(255, 255, 255, 0.08);
    --cta-shadow: 0 14px 40px rgba(214, 240, 60, 0.22);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
    background: #030303;
}
body {
    font-family: 'Inter', system-ui, sans-serif;
    background:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(214, 240, 60, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.02) 0, transparent 22%),
        linear-gradient(180deg, #0a0a0a 0%, #050505 35%, #030303 100%);
    color: var(--text-main);
    line-height: 1.65;
    min-height: 100vh;
}
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--gold);
    color: #000;
    padding: 0.5rem 1rem;
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus { left: 0; }

header.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 5%;
    background: rgba(5, 5, 6, 0.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--border);
}
.header-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
}
.header-brand strong { color: var(--gold); font-weight: 700; }
.header-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn-primary {
    background: linear-gradient(135deg, #f1ff99 0%, var(--gold-soft) 38%, var(--gold) 100%);
    color: #0a0a0a;
    border: 1px solid rgba(214, 240, 60, 0.28);
    box-shadow: var(--cta-shadow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(244, 255, 149, 0.22);
}
.btn-outline {
    background: transparent;
    border-color: rgba(214, 240, 60, 0.45);
    color: var(--gold-soft);
}
.btn-outline:hover { background: rgba(214, 240, 60, 0.08); }
.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border);
    color: var(--silver);
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 5% 4rem;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--silver);
    margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--gold-soft); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-current="page"] { color: #fff; font-weight: 500; }

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.lead {
    font-size: 1.08rem;
    color: var(--silver-soft);
    max-width: 52rem;
    margin-bottom: 1.5rem;
}
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}
.trust-pill {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--silver);
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 2.75rem 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(214, 240, 60, 0.12);
}
h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: #fff;
    margin: 1.25rem 0 0.65rem;
    letter-spacing: 0.06em;
}
p { color: var(--silver); margin-bottom: 1rem; }
.prose ul { margin: 0 0 1rem 1.2rem; color: var(--silver); }
.prose li { margin-bottom: 0.4rem; }

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.model-card {
    border-radius: 22px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.model-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.model-card-body { padding: 1.35rem 1.4rem 1.5rem; }
.model-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    color: var(--gold-soft);
}
.model-card .tagline { font-size: 0.92rem; color: var(--silver); margin-bottom: 1rem; }
.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    font-size: 0.82rem;
    color: var(--silver);
    margin-bottom: 1rem;
}
.spec-grid dt { color: var(--silver-soft); font-weight: 500; }
.spec-grid dd { color: var(--silver); margin: 0; }
.price-tag {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}
.price-tag small {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--silver-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.model-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.model-actions .btn { flex: 1 1 auto; min-width: 120px; justify-content: center; }
.text-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.88rem;
    color: var(--gold-soft);
    text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

.price-table-wrap {
    overflow-x: auto;
    margin: 1rem 0 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}
table.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.price-table caption {
    text-align: left;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}
.price-table th,
.price-table td {
    padding: 0.85rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.price-table th {
    background: rgba(214, 240, 60, 0.08);
    color: var(--gold-soft);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.price-table td { color: var(--silver); }
.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td { border-bottom: none; }

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 0.65rem;
    background: rgba(255, 255, 255, 0.02);
}
.faq-list summary {
    cursor: pointer;
    padding: 1rem 1.15rem;
    font-weight: 600;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+";
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 400;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list .faq-a {
    padding: 0 1.15rem 1.1rem;
    color: var(--silver);
    font-size: 0.95rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}
.related-grid a {
    display: block;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(16, 16, 18, 0.5), rgba(6, 6, 8, 0.75));
    color: var(--silver-soft);
    text-decoration: none;
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.related-grid a:hover {
    border-color: rgba(214, 240, 60, 0.35);
    background: rgba(214, 240, 60, 0.06);
    color: #fff;
}
.related-grid strong { display: block; color: var(--gold); margin-bottom: 0.25rem; }

footer.page-foot {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--silver-soft);
}
footer.page-foot a { color: var(--gold-soft); text-decoration: none; }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 2rem; }
.cta-row .btn { min-width: 140px; justify-content: center; }

@media (max-width: 640px) {
    .header-ctas { width: 100%; justify-content: flex-start; }
    .spec-grid { grid-template-columns: 1fr; }
}
