:root {
    --blue-950: #020817;
    --blue-900: #061528;
    --blue-800: #082b5f;
    --blue-700: #0d3b78;
    --gold: #ffc400;
    --gold-dark: #d39d00;
    --white: #ffffff;
    --muted: #b8c7d9;
    --text: #0f172a;
    --line: rgba(255,255,255,.14);
    --shadow: 0 22px 70px rgba(0,0,0,.25);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--white);
    background: var(--blue-950);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(2,8,23,.94);
    backdrop-filter: blur(14px);
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-weight: 900;
    text-decoration: none;
    letter-spacing: .2px;
}

.brand img {
    width: 58px;
    height: 38px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    opacity: .9;
}

.main-nav a:hover {
    color: var(--gold);
}

.hero {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2,8,23,.96), rgba(2,8,23,.72), rgba(2,8,23,.22)),
        linear-gradient(0deg, rgba(2,8,23,.9), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 84px 0;
}

.eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .14em;
    font-size: 13px;
    margin: 0 0 14px;
}

h1, h2, h3, p {
    margin-top: 0;
}

h1 {
    font-size: clamp(42px, 6.8vw, 78px);
    line-height: .96;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.03;
    margin-bottom: 16px;
}

h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.58;
}

.lead {
    font-size: 20px;
}

.actions,
.detail-actions,
.contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    border: 0;
    cursor: pointer;
}

.btn.primary {
    background: var(--gold);
    color: #151515;
}

.btn.primary:hover {
    background: #ffd84d;
}

.btn.secondary,
.btn.ghost {
    border: 1px solid rgba(255,255,255,.32);
    color: var(--white);
    background: rgba(255,255,255,.04);
}

.section {
    padding: 84px 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.card-grid,
.product-grid,
.location-grid {
    display: grid;
    gap: 22px;
}

.categories-grid {
    grid-template-columns: repeat(4, 1fr);
}

.product-grid {
    grid-template-columns: repeat(4, 1fr);
}

.location-grid {
    grid-template-columns: repeat(2, 1fr);
}

.image-card,
.product-card,
.location-card,
.contact-panel,
.empty-state {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    background: rgba(255,255,255,.06);
    box-shadow: var(--shadow);
}

.image-card {
    color: var(--white);
    text-decoration: none;
}

.image-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.image-card div,
.product-body,
.location-card div,
.contact-panel,
.empty-state {
    padding: 22px;
}

.image-card p,
.product-card p {
    font-size: 14px;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-image {
    background: rgba(255,255,255,.04);
    min-height: 220px;
}

.product-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-body h3 a {
    text-decoration: none;
}

.product-meta {
    color: var(--gold);
    font-size: 12px !important;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .08em;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.product-footer strong,
.detail-price {
    color: var(--gold);
    font-size: 22px;
    font-weight: 900;
}

.product-footer span {
    color: var(--muted);
    font-size: 13px;
}

.page-hero {
    padding: 82px 0 56px;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,196,0,.20), transparent 28%),
        linear-gradient(135deg, var(--blue-950), var(--blue-800));
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.page-hero h1 {
    max-width: 850px;
}

.page-hero p {
    max-width: 680px;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1.4fr .8fr auto auto;
    gap: 12px;
    margin-bottom: 24px;
}

.filter-bar input,
.filter-bar select {
    min-height: 50px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    padding: 0 16px;
    color: var(--white);
    background: rgba(255,255,255,.07);
}

.filter-bar option {
    color: var(--text);
}

.result-count {
    margin-bottom: 24px;
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.rounded-media,
.detail-media img,
.location-card img {
    border-radius: 26px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.12);
}

.product-detail {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 46px;
    align-items: start;
}

.detail-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.detail-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 18px 0;
}

.detail-badges span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.location-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
    border: 0;
}

.contact-list {
    margin-top: 22px;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    padding: 14px 18px;
    border-radius: 999px;
    background: #25d366;
    color: #07130b;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.site-footer {
    padding: 34px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    background: rgba(2,8,23,.98);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer p {
    margin: 4px 0 0;
    font-size: 14px;
}

@media (max-width: 980px) {
    .categories-grid,
    .product-grid,
    .location-grid,
    .split-section,
    .product-detail {
        grid-template-columns: 1fr 1fr;
    }

    .filter-bar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
    }

    .main-nav {
        gap: 12px;
    }

    .hero {
        min-height: 78vh;
    }

    .hero-overlay {
        background:
            linear-gradient(0deg, rgba(2,8,23,.98), rgba(2,8,23,.70), rgba(2,8,23,.26));
    }

    .hero-content {
        padding: 64px 0;
    }

    .categories-grid,
    .product-grid,
    .location-grid,
    .split-section,
    .product-detail,
    .filter-bar {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 58px 0;
    }

    .brand img {
        width: 50px;
    }

    .floating-whatsapp {
        left: 16px;
        right: 16px;
        text-align: center;
    }
}


/* =========================================================
   BLOQUE 10B - REDISEÑO GLOBAL PREMIUM / MOBILE / DEMO SEO
   ========================================================= */

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 999;
    background: var(--gold);
    color: #111827;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
}

.skip-link:focus {
    left: 12px;
}

.top-strip {
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(90deg, rgba(255,196,0,.10), rgba(2,8,23,.35));
}

.top-strip-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}

.site-header {
    backdrop-filter: blur(16px);
}

.nav {
    min-height: 82px;
    gap: 18px;
}

.brand {
    gap: 12px;
    text-decoration: none;
}

.brand img {
    width: auto;
    height: 58px;
    max-width: 190px;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,.28));
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy strong {
    color: var(--white);
    font-size: 15px;
    letter-spacing: .02em;
}

.brand-copy small {
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.main-nav {
    align-items: center;
    gap: 6px;
}

.main-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.main-nav a:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-1px);
}

.main-nav .nav-cta {
    margin-left: 6px;
    background: var(--gold);
    color: #111827;
    box-shadow: 0 12px 28px rgba(255,196,0,.20);
}

.main-nav .nav-cta:hover {
    background: #ffd84d;
    color: #111827;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hero {
    overflow: hidden;
}

.hero-content {
    padding-top: 36px;
    padding-bottom: 36px;
}

.hero-content h1,
.page-hero h1 {
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.hero-content p,
.page-hero p,
.lead {
    line-height: 1.7;
}

.btn {
    min-height: 46px;
    box-shadow: 0 12px 26px rgba(0,0,0,.18);
}

.btn.primary {
    border: 1px solid rgba(255,255,255,.10);
}

.btn.secondary,
.btn.ghost {
    backdrop-filter: blur(12px);
}

.image-card,
.product-card,
.location-card,
.contact-panel,
.detail-media,
.detail-info {
    transition: transform .20s ease, border-color .20s ease, box-shadow .20s ease;
}

.image-card:hover,
.product-card:hover,
.location-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,196,0,.38);
}

.product-card {
    overflow: hidden;
}

.product-image img,
.image-card img,
.location-card img,
.rounded-media,
.hero-bg {
    image-rendering: auto;
}

.product-body h3 {
    line-height: 1.25;
}

.product-body h3 a {
    text-decoration: none;
}

.floating-whatsapp {
    right: 18px;
    bottom: 18px;
    min-width: 118px;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.18);
}

.site-footer {
    padding-bottom: 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.footer-grid strong {
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

.footer-grid p {
    color: var(--muted);
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.10);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.60);
    font-size: 13px;
}

@media (max-width: 860px) {
    .top-strip {
        display: none;
    }

    .nav {
        min-height: 72px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .brand img {
        height: 48px;
        max-width: 150px;
    }

    .brand-copy {
        display: none;
    }

    .nav-toggle-label {
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 14px;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: rgba(255,255,255,.06);
        cursor: pointer;
    }

    .nav-toggle-label span {
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: var(--white);
        display: block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 22px;
        background: rgba(2,8,23,.98);
        box-shadow: 0 24px 70px rgba(0,0,0,.48);
    }

    .main-nav a {
        width: 100%;
        padding: 13px 14px;
    }

    .main-nav .nav-cta {
        margin-left: 0;
        text-align: center;
        justify-content: center;
    }

    .nav-toggle:checked ~ .main-nav {
        display: flex;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        padding-top: 72px;
        padding-bottom: 80px;
    }

    .hero-content h1 {
        font-size: clamp(34px, 11vw, 52px);
    }

    .hero-content p {
        font-size: 16px;
    }

    .actions {
        width: 100%;
    }

    .actions .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .floating-whatsapp {
        min-width: auto;
        width: calc(100% - 32px);
        left: 16px;
        right: 16px;
        bottom: 14px;
        border-radius: 18px;
    }

    .site-footer {
        padding-bottom: 92px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand img {
        height: 44px;
        max-width: 136px;
    }

    .hero {
        min-height: 590px;
    }
}


/* =========================================================
   BLOQUE 10B-1 - WHATSAPP FLOTANTE CIRCULAR PROFESIONAL
   ========================================================= */

.floating-whatsapp {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    max-width: 58px !important;
    left: auto !important;
    right: 20px !important;
    bottom: 20px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #25d366 !important;
    color: #052e16 !important;
    font-size: 14px !important;
    font-weight: 1000 !important;
    letter-spacing: -0.04em !important;
    text-decoration: none !important;
    border: 2px solid rgba(255,255,255,.85) !important;
    box-shadow: 0 18px 42px rgba(0,0,0,.35), 0 0 0 8px rgba(37,211,102,.10) !important;
    z-index: 120 !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.04) !important;
    background: #31e879 !important;
    box-shadow: 0 22px 52px rgba(0,0,0,.42), 0 0 0 10px rgba(37,211,102,.13) !important;
}

.floating-whatsapp span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (max-width: 860px) {
    .floating-whatsapp {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        max-width: 56px !important;
        left: auto !important;
        right: 16px !important;
        bottom: 16px !important;
        border-radius: 999px !important;
    }

    .site-footer {
        padding-bottom: 38px !important;
    }
}


/* =========================================================
   BLOQUE 10B-2 - ICONO SVG WHATSAPP EN BOTON FLOTANTE
   ========================================================= */

.floating-whatsapp img {
    width: 34px !important;
    height: 34px !important;
    display: block !important;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,.18)) !important;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 860px) {
    .floating-whatsapp img {
        width: 32px !important;
        height: 32px !important;
    }
}


/* =========================================================
   BLOQUE 10C-1 - PALETA VIVA / HERO / FOOTER TECNISYSTEMS
   ========================================================= */

:root {
    --ts-navy-1: #07152d;
    --ts-navy-2: #0b2345;
    --ts-navy-3: #133763;
    --ts-gold-1: #f3c94d;
    --ts-gold-2: #ffcf3f;
    --ts-white-soft: #f8fafc;
    --ts-text-soft: #d7e3f3;
    --ts-card: rgba(15, 35, 68, 0.82);
    --ts-border-soft: rgba(255,255,255,.10);
}

body {
    background:
        radial-gradient(circle at top right, rgba(255, 207, 63, 0.10), transparent 20%),
        radial-gradient(circle at 15% 25%, rgba(54, 113, 201, 0.16), transparent 22%),
        linear-gradient(180deg, #061326 0%, #0a1e3b 45%, #081426 100%);
    color: var(--ts-white-soft);
}

.site-header {
    background: linear-gradient(180deg, rgba(6, 19, 38, 0.95), rgba(7, 21, 45, 0.88));
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 14px 40px rgba(0,0,0,.22);
}

.brand img {
    filter: drop-shadow(0 10px 22px rgba(0,0,0,.28));
}

.brand-copy strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .01em;
}

.brand-copy small {
    color: var(--ts-gold-2);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.main-nav a {
    color: #edf4ff;
}

.main-nav a:hover {
    background: rgba(255,255,255,.10);
}

.main-nav .nav-cta {
    background: linear-gradient(180deg, #ffd65c, #f3c94d);
    color: #162033;
    font-weight: 900;
}

.main-nav .nav-cta:hover {
    background: linear-gradient(180deg, #ffe07b, #f8cf58);
    color: #111827;
}

.hero {
    position: relative;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 16, 35, 0.88) 0%, rgba(7, 23, 45, 0.74) 38%, rgba(10, 31, 59, 0.44) 70%, rgba(17, 55, 99, 0.24) 100%);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 28%, rgba(243, 201, 77, 0.16), transparent 18%),
        radial-gradient(circle at 88% 50%, rgba(77, 138, 243, 0.15), transparent 26%);
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: #ffffff;
    text-shadow: 0 10px 36px rgba(0,0,0,.28);
}

.hero-content p {
    color: var(--ts-text-soft);
    max-width: 760px;
    text-shadow: 0 4px 18px rgba(0,0,0,.18);
}

.hero .eyebrow,
.hero-content .eyebrow,
.page-hero .eyebrow,
.section-kicker,
.kicker {
    color: var(--ts-gold-2);
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-shadow: 0 4px 14px rgba(0,0,0,.20);
}

section,
.page-hero,
.product-card,
.location-card,
.image-card,
.contact-panel,
.detail-media,
.detail-info {
    position: relative;
}

.product-card,
.location-card,
.image-card,
.contact-panel,
.detail-media,
.detail-info {
    background: linear-gradient(180deg, rgba(14, 35, 66, 0.96), rgba(10, 24, 46, 0.96));
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.product-card:hover,
.location-card:hover,
.image-card:hover {
    box-shadow: 0 22px 42px rgba(0,0,0,.24);
}

.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 48px;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 207, 63, 0.12), transparent 18%),
        radial-gradient(circle at 82% 14%, rgba(74, 127, 210, 0.18), transparent 22%),
        linear-gradient(180deg, #081426 0%, #0d2445 100%);
    border-top: 1px solid rgba(255,255,255,.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(243,201,77,.10), rgba(243,201,77,.95), rgba(41,102,197,.75), rgba(243,201,77,.10));
}

.footer-grid {
    gap: 34px;
}

.footer-grid strong {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: .01em;
}

.footer-grid p {
    color: var(--ts-text-soft);
}

.footer-bottom {
    align-items: center;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 10px 26px rgba(0,0,0,.14);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    cursor: pointer;
}

.footer-credit:hover {
    transform: translateY(-2px) scale(1.01);
    border-color: rgba(243,201,77,.45);
    background: rgba(255,255,255,.08);
    box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

.footer-credit-label {
    color: var(--ts-text-soft);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
}

.footer-credit img {
    width: auto;
    height: 26px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.24));
}

@media (max-width: 860px) {
    .brand-copy strong {
        font-size: 14px;
    }

    .brand-copy small {
        font-size: 10px;
    }

    .hero-content h1 {
        font-size: clamp(34px, 11vw, 56px);
        line-height: .96;
    }

    .hero-content p {
        font-size: 17px;
    }

    .footer-credit {
        width: 100%;
        justify-content: center;
    }
}


/* =========================================================
   BLOQUE 10C-1R1 - HERO MAS VISIBLE + UX MENU MOVIL
   ========================================================= */

.hero::before {
    background:
        linear-gradient(
            90deg,
            rgba(5, 18, 38, 0.62) 0%,
            rgba(7, 22, 44, 0.52) 28%,
            rgba(10, 31, 59, 0.34) 56%,
            rgba(18, 55, 96, 0.14) 100%
        ) !important;
}

.hero::after {
    background:
        radial-gradient(circle at 78% 28%, rgba(243, 201, 77, 0.12), transparent 18%),
        radial-gradient(circle at 86% 48%, rgba(77, 138, 243, 0.11), transparent 24%),
        radial-gradient(circle at 20% 75%, rgba(255,255,255,0.05), transparent 22%) !important;
}

.hero-content {
    max-width: 860px;
}

.hero-content h1 {
    max-width: 850px;
}

.hero-content p {
    max-width: 700px;
    color: rgba(236, 244, 255, 0.92) !important;
}

@media (max-width: 860px) {
    .main-nav {
        z-index: 120;
        max-height: min(72vh, 520px);
        overflow-y: auto;
    }

    .nav-toggle-label {
        z-index: 121;
    }

    body.mobile-nav-open {
        overflow-x: hidden;
    }

    .hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(5, 18, 38, 0.48) 0%,
                rgba(7, 22, 44, 0.54) 36%,
                rgba(10, 31, 59, 0.42) 68%,
                rgba(18, 55, 96, 0.18) 100%
            ) !important;
    }

    .hero::after {
        background:
            radial-gradient(circle at 80% 20%, rgba(243, 201, 77, 0.10), transparent 18%),
            radial-gradient(circle at 82% 48%, rgba(77, 138, 243, 0.10), transparent 20%) !important;
    }
}


/* =========================================================
   BLOQUE 10C-1R2 - HERO CON IMAGEN VISIBLE + EYEBROW ORO/PLATA
   ========================================================= */

.hero {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    min-height: 620px;
    background: linear-gradient(180deg, #07152d 0%, #0b2345 100%) !important;
}

.hero .hero-bg,
.hero img.hero-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center right !important;
    display: block !important;
    opacity: 0.96 !important;
    visibility: visible !important;
    z-index: 0 !important;
    filter: brightness(0.88) contrast(1.06) saturate(1.08) !important;
    transform: scale(1.01);
}

.hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
        linear-gradient(
            90deg,
            rgba(6, 19, 38, 0.58) 0%,
            rgba(7, 21, 45, 0.42) 26%,
            rgba(10, 31, 59, 0.22) 54%,
            rgba(16, 52, 96, 0.10) 100%
        ) !important;
}

.hero::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background:
        radial-gradient(circle at 74% 24%, rgba(255, 207, 63, 0.12), transparent 16%),
        radial-gradient(circle at 84% 52%, rgba(86, 142, 236, 0.10), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00)) !important;
    pointer-events: none !important;
}

.hero-content {
    position: relative !important;
    z-index: 3 !important;
    max-width: 860px !important;
}

.hero .eyebrow,
.hero-content .eyebrow,
.hero .kicker,
.hero-content .kicker,
.hero .section-kicker,
.hero-content .section-kicker {
    display: inline-block !important;
    font-weight: 1000 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    background: linear-gradient(90deg, #ffc928 0%, #ffe187 38%, #f2f4f8 70%, #cfd5df 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    text-shadow: none !important;
}

.hero-content h1 {
    position: relative !important;
    z-index: 3 !important;
    color: #ffffff !important;
    text-shadow: 0 10px 32px rgba(0,0,0,.26) !important;
}

.hero-content p {
    position: relative !important;
    z-index: 3 !important;
    color: rgba(241, 246, 255, 0.94) !important;
    text-shadow: 0 4px 14px rgba(0,0,0,.16) !important;
}

@media (max-width: 860px) {
    .hero {
        min-height: 560px !important;
    }

    .hero .hero-bg,
    .hero img.hero-bg {
        object-position: 72% center !important;
        opacity: 0.95 !important;
        filter: brightness(0.82) contrast(1.05) saturate(1.04) !important;
    }

    .hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(6, 19, 38, 0.46) 0%,
                rgba(7, 21, 45, 0.38) 35%,
                rgba(10, 31, 59, 0.26) 68%,
                rgba(16, 52, 96, 0.14) 100%
            ) !important;
    }

    .hero::after {
        background:
            radial-gradient(circle at 78% 20%, rgba(255, 207, 63, 0.10), transparent 16%),
            radial-gradient(circle at 82% 46%, rgba(86, 142, 236, 0.08), transparent 20%) !important;
    }
}


/* =========================================================
   BLOQUE 10C-1R3 - HERO FOTO VISIBLE + TEXTO ORO/PLATA REAL
   ========================================================= */

.hero {
    background: #07152d !important;
}

.hero .hero-bg,
.hero img.hero-bg {
    opacity: 1 !important;
    filter: brightness(1.08) contrast(1.10) saturate(1.16) !important;
    object-position: center center !important;
    z-index: 0 !important;
}

.hero::before {
    z-index: 1 !important;
    background:
        linear-gradient(
            90deg,
            rgba(5, 18, 38, 0.42) 0%,
            rgba(5, 18, 38, 0.30) 30%,
            rgba(5, 18, 38, 0.16) 58%,
            rgba(5, 18, 38, 0.06) 100%
        ) !important;
}

.hero::after {
    z-index: 2 !important;
    background:
        linear-gradient(135deg, rgba(255, 203, 43, 0.08) 0%, rgba(255,255,255,0.02) 34%, rgba(78, 137, 223, 0.08) 100%) !important;
}

.hero-content {
    z-index: 3 !important;
}

.hero .eyebrow,
.hero-content .eyebrow,
.hero .kicker,
.hero-content .kicker,
.hero .section-kicker,
.hero-content .section-kicker,
.hero-content > span:first-child,
.hero-content > p:first-child {
    color: transparent !important;
    background: linear-gradient(90deg, #ffca28 0%, #ffe48a 34%, #f8fafc 62%, #cbd5e1 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    font-weight: 1000 !important;
    letter-spacing: .13em !important;
    text-transform: uppercase !important;
    text-shadow: none !important;
}

@media (max-width: 860px) {
    .hero .hero-bg,
    .hero img.hero-bg {
        opacity: 1 !important;
        object-position: 68% center !important;
        filter: brightness(1.02) contrast(1.08) saturate(1.14) !important;
    }

    .hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(5, 18, 38, 0.36) 0%,
                rgba(5, 18, 38, 0.28) 38%,
                rgba(5, 18, 38, 0.20) 70%,
                rgba(5, 18, 38, 0.10) 100%
            ) !important;
    }

    .hero::after {
        background:
            linear-gradient(135deg, rgba(255, 203, 43, 0.08), rgba(78, 137, 223, 0.07)) !important;
    }

    .hero .eyebrow,
    .hero-content .eyebrow,
    .hero .kicker,
    .hero-content .kicker,
    .hero .section-kicker,
    .hero-content .section-kicker,
    .hero-content > span:first-child,
    .hero-content > p:first-child {
        font-size: 12px !important;
        line-height: 1.35 !important;
        letter-spacing: .10em !important;
        max-width: 92vw !important;
        white-space: normal !important;
    }
}


/* =========================================================
   BLOQUE 10C-1R4 - HERO FINAL: FOTO REAL + TEXTO ORO/PLATA
   ========================================================= */

/* Reset específico del hero de inicio para anular capas acumuladas anteriores */
.hero.hero-home {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    min-height: 620px !important;
    background: #07152d !important;
}

/* La imagen debe verse como imagen, sin cambiarle el color */
.hero.hero-home picture {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.hero.hero-home .hero-bg,
.hero.hero-home img.hero-bg {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
}

/* Apagar pseudo-overlays acumulados de bloques anteriores */
.hero.hero-home::before,
.hero.hero-home::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

/* Usar solo una capa suave para que el texto se lea, sin matar la imagen */
.hero.hero-home .hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    display: block !important;
    pointer-events: none !important;
    background:
        linear-gradient(
            90deg,
            rgba(2, 8, 23, 0.58) 0%,
            rgba(2, 8, 23, 0.36) 34%,
            rgba(2, 8, 23, 0.14) 66%,
            rgba(2, 8, 23, 0.04) 100%
        ) !important;
}

/* Contenido encima de la imagen */
.hero.hero-home .hero-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 880px !important;
}

/* Texto superior correcto: amarillo/plata */
.hero.hero-home .hero-eyebrow-main {
    display: inline-block !important;
    margin-bottom: 16px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 1000 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    color: transparent !important;
    background: linear-gradient(
        90deg,
        #ffcb2f 0%,
        #ffe27a 34%,
        #f8fafc 66%,
        #cbd5e1 100%
    ) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    text-shadow: none !important;
}

.hero.hero-home .hero-content h1 {
    color: #ffffff !important;
    text-shadow: 0 12px 34px rgba(0,0,0,.42) !important;
}

.hero.hero-home .hero-content > p:not(.eyebrow) {
    color: rgba(248,250,252,.96) !important;
    text-shadow: 0 6px 18px rgba(0,0,0,.36) !important;
}

@media (max-width: 860px) {
    .hero.hero-home {
        min-height: 570px !important;
    }

    .hero.hero-home .hero-bg,
    .hero.hero-home img.hero-bg {
        object-position: 70% center !important;
        filter: none !important;
        opacity: 1 !important;
    }

    .hero.hero-home .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2, 8, 23, 0.46) 0%,
                rgba(2, 8, 23, 0.34) 42%,
                rgba(2, 8, 23, 0.18) 74%,
                rgba(2, 8, 23, 0.08) 100%
            ) !important;
    }

    .hero.hero-home .hero-eyebrow-main {
        font-size: 12px !important;
        line-height: 1.35 !important;
        letter-spacing: .085em !important;
        max-width: 94vw !important;
        white-space: normal !important;
    }
}


/* =========================================================
   BLOQUE 10C-1R5 - HEADER PREMIUM + CONTRASTE HERO
   ========================================================= */

/* HEADER CON MAS VIDA, SIN PERDER SERIEDAD */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 203, 43, 0.10), transparent 18%),
        radial-gradient(circle at 88% 22%, rgba(77, 138, 243, 0.12), transparent 20%),
        linear-gradient(180deg, rgba(7, 21, 45, 0.98), rgba(5, 15, 32, 0.94)) !important;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
    box-shadow:
        0 18px 44px rgba(0,0,0,.30),
        inset 0 -1px 0 rgba(255,203,43,.16) !important;
}

.site-header::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,203,43,.85), rgba(148,163,184,.75), rgba(77,138,243,.60), transparent);
    opacity: .85;
}

.nav {
    min-height: 86px !important;
}

.brand {
    padding: 8px 10px 8px 8px;
    border-radius: 22px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 14px 34px rgba(0,0,0,.18);
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.brand:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,.06);
    border-color: rgba(255,203,43,.26);
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
}

.brand img {
    height: 62px !important;
}

.brand-copy strong {
    background: linear-gradient(90deg, #ffffff 0%, #f8fafc 42%, #dbeafe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.brand-copy small {
    background: linear-gradient(90deg, #ffca28 0%, #ffe48a 45%, #e5e7eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

/* HAMBURGUESA MAS PREMIUM */
.nav-toggle-label {
    box-shadow:
        0 16px 38px rgba(0,0,0,.30),
        inset 0 0 0 1px rgba(255,255,255,.08);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.nav-toggle-label:hover {
    transform: translateY(-1px);
    border-color: rgba(255,203,43,.34) !important;
    background: rgba(255,255,255,.10) !important;
}

.nav-toggle-label span {
    box-shadow: 0 0 10px rgba(255,255,255,.26);
}

/* HERO: DAR LECTURA SIN MATAR LA IMAGEN */
.hero.hero-home .hero-content {
    padding: 72px 24px !important;
}

.hero.hero-home .hero-content::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 42px 0 40px 0;
    max-width: 900px;
    border-radius: 34px;
    background:
        linear-gradient(90deg, rgba(2, 8, 23, 0.70), rgba(2, 8, 23, 0.42), rgba(2, 8, 23, 0.12));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow:
        0 24px 70px rgba(0,0,0,.26),
        inset 0 1px 0 rgba(255,255,255,.04);
    backdrop-filter: blur(2px);
}

/* Frase superior: amarillo plata con mejor presencia */
.hero.hero-home .hero-eyebrow-main {
    font-size: 15px !important;
    letter-spacing: .15em !important;
    background: linear-gradient(
        90deg,
        #ffc400 0%,
        #ffe27a 30%,
        #f9fafb 58%,
        #d1d5db 78%,
        #ffd84d 100%
    ) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,.30));
}

/* Título y texto inferior con lectura más clara */
.hero.hero-home .hero-content h1 {
    text-shadow:
        0 4px 0 rgba(0,0,0,.08),
        0 16px 42px rgba(0,0,0,.48) !important;
}

.hero.hero-home .hero-content > p:not(.eyebrow) {
    max-width: 760px !important;
    color: #f8fafc !important;
    font-weight: 600 !important;
    line-height: 1.72 !important;
    text-shadow:
        0 2px 8px rgba(0,0,0,.72),
        0 12px 30px rgba(0,0,0,.42) !important;
}

/* Botones más sólidos sobre imagen */
.hero.hero-home .actions .btn {
    box-shadow: 0 18px 42px rgba(0,0,0,.28) !important;
}

.hero.hero-home .actions .btn.secondary {
    background: rgba(2,8,23,.48) !important;
    border-color: rgba(255,255,255,.28) !important;
    color: #ffffff !important;
    backdrop-filter: blur(8px);
}

.hero.hero-home .actions .btn.secondary:hover {
    border-color: rgba(255,203,43,.45) !important;
    background: rgba(2,8,23,.62) !important;
}

/* MOBILE */
@media (max-width: 860px) {
    .site-header {
        background:
            radial-gradient(circle at 18% 20%, rgba(255,203,43,.12), transparent 22%),
            linear-gradient(180deg, rgba(8,24,48,.98), rgba(5,15,32,.96)) !important;
    }

    .nav {
        min-height: 92px !important;
    }

    .brand {
        padding: 7px 9px;
        border-radius: 20px;
        max-width: calc(100% - 92px);
    }

    .brand img {
        height: 58px !important;
        max-width: 170px !important;
    }

    .hero.hero-home .hero-content {
        padding: 76px 18px 72px !important;
    }

    .hero.hero-home .hero-content::before {
        inset: 48px 8px 40px 8px;
        border-radius: 28px;
        background:
            linear-gradient(180deg, rgba(2,8,23,.50), rgba(2,8,23,.34), rgba(2,8,23,.18));
        backdrop-filter: blur(1.5px);
    }

    .hero.hero-home .hero-eyebrow-main {
        display: block !important;
        width: 100% !important;
        font-size: 13px !important;
        letter-spacing: .075em !important;
        line-height: 1.35 !important;
        margin-bottom: 18px !important;
    }

    .hero.hero-home .hero-content h1 {
        font-size: clamp(46px, 13vw, 72px) !important;
        line-height: .95 !important;
    }

    .hero.hero-home .hero-content > p:not(.eyebrow) {
        font-size: 20px !important;
        line-height: 1.7 !important;
        font-weight: 650 !important;
        color: #ffffff !important;
    }

    .hero.hero-home .actions {
        margin-top: 28px !important;
    }
}


/* =========================================================
   BLOQUE 10C-1R6 - HEADER MOVIL COMPACTO + HERO MOBILE PREMIUM
   ========================================================= */

/* Eyebrow sin degradado: amarillo + plata sólido */
.hero.hero-home .hero-eyebrow-main {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 7px !important;
    background: none !important;
    color: inherit !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,.38)) !important;
    text-shadow: none !important;
}

.hero-eyebrow-gold {
    color: #ffcb2f !important;
}

.hero-eyebrow-silver {
    color: #e5e7eb !important;
}

/* Header escritorio se mantiene premium, pero no exagerado */
.brand {
    border-radius: 18px !important;
}

.brand img {
    height: 56px !important;
}

/* Mobile: header compacto, profesional y sin cápsula gigante */
@media (max-width: 860px) {
    .top-strip {
        display: none !important;
    }

    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 100 !important;
        background:
            linear-gradient(180deg, rgba(7,21,45,.98), rgba(5,15,32,.96)) !important;
        box-shadow:
            0 12px 30px rgba(0,0,0,.26),
            inset 0 -1px 0 rgba(255,203,43,.16) !important;
    }

    .site-header::after {
        height: 2px !important;
        opacity: .75 !important;
    }

    .nav {
        min-height: 76px !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .brand {
        max-width: 185px !important;
        padding: 4px 6px !important;
        border-radius: 15px !important;
        background: rgba(255,255,255,.025) !important;
        border: 1px solid rgba(255,255,255,.07) !important;
        box-shadow: 0 8px 22px rgba(0,0,0,.16) !important;
    }

    .brand img {
        height: 48px !important;
        max-width: 160px !important;
        object-fit: contain !important;
    }

    .nav-toggle-label {
        width: 52px !important;
        height: 52px !important;
        border-radius: 18px !important;
        background: rgba(255,255,255,.055) !important;
        border: 1px solid rgba(255,255,255,.14) !important;
        box-shadow: 0 12px 30px rgba(0,0,0,.24) !important;
    }

    .nav-toggle-label span {
        width: 24px !important;
        height: 3px !important;
    }

    .main-nav {
        top: calc(100% + 8px) !important;
    }

    /* Hero móvil más parecido al escritorio: menos placa, más imagen */
    .hero.hero-home {
        min-height: calc(100svh - 76px) !important;
        display: flex !important;
        align-items: center !important;
    }

    .hero.hero-home .hero-bg,
    .hero.hero-home img.hero-bg {
        object-position: 68% center !important;
        filter: none !important;
        opacity: 1 !important;
    }

    .hero.hero-home .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(2,8,23,.58) 0%,
                rgba(2,8,23,.36) 44%,
                rgba(2,8,23,.14) 72%,
                rgba(2,8,23,.04) 100%
            ) !important;
    }

    .hero.hero-home .hero-content {
        padding: 54px 18px 54px !important;
        max-width: 100% !important;
    }

    .hero.hero-home .hero-content::before {
        inset: 34px 10px 34px 10px !important;
        border-radius: 24px !important;
        background:
            linear-gradient(
                90deg,
                rgba(2,8,23,.46),
                rgba(2,8,23,.25),
                rgba(2,8,23,.08)
            ) !important;
        border-color: rgba(255,255,255,.08) !important;
        backdrop-filter: blur(.6px) !important;
        box-shadow: 0 18px 48px rgba(0,0,0,.22) !important;
    }

    .hero.hero-home .hero-eyebrow-main {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        font-size: 15px !important;
        line-height: 1.25 !important;
        letter-spacing: .055em !important;
        margin-bottom: 18px !important;
        max-width: 100% !important;
    }

    .hero.hero-home .hero-eyebrow-main span {
        font-weight: 1000 !important;
        text-transform: uppercase !important;
    }

    .hero.hero-home .hero-content h1 {
        font-size: clamp(38px, 10.5vw, 58px) !important;
        line-height: .98 !important;
        letter-spacing: -0.055em !important;
        max-width: 92vw !important;
        text-shadow:
            0 3px 0 rgba(0,0,0,.10),
            0 12px 34px rgba(0,0,0,.48) !important;
    }

    .hero.hero-home .hero-content > p:not(.eyebrow) {
        font-size: 18px !important;
        line-height: 1.58 !important;
        font-weight: 620 !important;
        max-width: 92vw !important;
        color: #ffffff !important;
        text-shadow:
            0 2px 8px rgba(0,0,0,.78),
            0 10px 26px rgba(0,0,0,.46) !important;
    }

    .hero.hero-home .actions {
        margin-top: 24px !important;
        gap: 14px !important;
    }

    .hero.hero-home .actions .btn {
        min-height: 58px !important;
        border-radius: 18px !important;
        font-size: 17px !important;
    }
}

@media (max-width: 420px) {
    .brand {
        max-width: 168px !important;
    }

    .brand img {
        height: 44px !important;
        max-width: 148px !important;
    }

    .nav {
        min-height: 70px !important;
    }

    .nav-toggle-label {
        width: 48px !important;
        height: 48px !important;
    }

    .hero.hero-home {
        min-height: calc(100svh - 70px) !important;
    }

    .hero.hero-home .hero-eyebrow-main {
        font-size: 14px !important;
        letter-spacing: .045em !important;
    }

    .hero.hero-home .hero-content h1 {
        font-size: clamp(36px, 10.8vw, 52px) !important;
    }

    .hero.hero-home .hero-content > p:not(.eyebrow) {
        font-size: 17px !important;
    }
}


/* =========================================================
   BLOQUE 10C-1R7 - EYEBROW HERO UN SOLO COLOR
   ========================================================= */

.hero.hero-home .hero-eyebrow-main,
.hero.hero-home .hero-eyebrow-main span,
.hero-eyebrow-gold,
.hero-eyebrow-silver {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: #ffd34d !important;
    -webkit-text-fill-color: #ffd34d !important;
    font-weight: 1000 !important;
    text-transform: uppercase !important;
    letter-spacing: .13em !important;
    text-shadow:
        0 2px 0 rgba(0,0,0,.26),
        0 0 14px rgba(255, 211, 77, .22),
        0 8px 22px rgba(0,0,0,.42) !important;
    filter: none !important;
}

.hero.hero-home .hero-eyebrow-main {
    display: block !important;
    font-size: 17px !important;
    line-height: 1.22 !important;
    margin-bottom: 18px !important;
}

@media (max-width: 860px) {
    .hero.hero-home .hero-eyebrow-main {
        font-size: 17px !important;
        line-height: 1.28 !important;
        letter-spacing: .07em !important;
        max-width: 96vw !important;
    }
}

@media (max-width: 420px) {
    .hero.hero-home .hero-eyebrow-main {
        font-size: 16px !important;
        letter-spacing: .055em !important;
    }
}

/* ============================================================
   BLOQUE 11A — Panel interno base y login mobile-first
   ============================================================ */

.nav-login-link {
    border: 1px solid rgba(255, 211, 77, 0.55);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    color: #ffd34d;
    background: rgba(255, 211, 77, 0.08);
}

.auth-shell,
.panel-shell {
    min-height: 70vh;
    padding: 3rem 0;
    background:
        radial-gradient(circle at top left, rgba(255, 211, 77, 0.12), transparent 32rem),
        linear-gradient(135deg, #07111f 0%, #0b1b31 55%, #050a12 100%);
}

.auth-card {
    width: min(92vw, 430px);
    margin: 0 auto;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.4rem;
    background: rgba(7, 17, 31, 0.88);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.auth-card h1,
.panel-header h1 {
    margin: 0.25rem 0 0.75rem;
    color: #ffffff;
}

.auth-card p,
.panel-header p {
    color: rgba(255, 255, 255, 0.76);
}

.auth-form {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.auth-form label {
    color: #ffffff;
    font-weight: 700;
}

.auth-form input {
    width: 100%;
    min-height: 46px;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.9rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

.form-alert {
    margin: 1rem 0;
    padding: 0.8rem 1rem;
    border-radius: 0.9rem;
    color: #ffe9e9;
    background: rgba(220, 38, 38, 0.22);
    border: 1px solid rgba(248, 113, 113, 0.35);
}

.panel-header {
    max-width: 760px;
    margin-bottom: 1.5rem;
}

.panel-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.2rem;
}

.panel-stat-card,
.panel-action-card,
.panel-note {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.panel-stat-card {
    padding: 1rem;
}

.panel-stat-card span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.panel-stat-card strong {
    display: block;
    margin-top: 0.35rem;
    color: #ffd34d;
    font-size: 1.7rem;
}

.panel-actions-grid {
    display: grid;
    gap: 0.9rem;
}

.panel-action-card {
    display: grid;
    gap: 0.3rem;
    padding: 1rem;
    color: #ffffff;
    text-decoration: none;
}

.panel-action-card strong {
    color: #ffd34d;
}

.panel-action-card span {
    color: rgba(255, 255, 255, 0.76);
}

.panel-note {
    margin-top: 1rem;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.panel-note strong {
    color: #ffd34d;
}

@media (min-width: 760px) {
    .panel-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .panel-actions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ============================================================
   BLOQUE 11C-CRUD-R1 — Panel productos mobile-first
   ============================================================ */

.panel-topbar {
    display: grid;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.25rem;
}

.panel-topbar h1 {
    margin: 0.25rem 0 0.35rem;
    color: #ffffff;
    font-size: clamp(1.8rem, 8vw, 3rem);
}

.panel-topbar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.panel-main-action {
    justify-self: start;
}

.panel-messages {
    display: grid;
    gap: 0.65rem;
    margin: 0 0 1rem;
}

.panel-message {
    padding: 0.85rem 1rem;
    border-radius: 0.95rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
}

.panel-message.success {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(22, 163, 74, 0.18);
}

.panel-message.error {
    border-color: rgba(248, 113, 113, 0.4);
    background: rgba(220, 38, 38, 0.18);
}

.panel-filter-card,
.panel-form-card,
.panel-delete-card {
    padding: 1rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.panel-filter-card {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.panel-filter-card input,
.panel-filter-card select,
.panel-control {
    width: 100%;
    min-height: 46px;
    padding: 0.78rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.85rem;
    color: #ffffff;
    background: rgba(5, 12, 24, 0.72);
}

.panel-filter-card input::placeholder,
.panel-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.panel-product-list {
    display: grid;
    gap: 0.9rem;
}

.panel-product-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 0.85rem;
    padding: 0.8rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.panel-product-thumb {
    width: 92px;
    height: 92px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 0.95rem;
    background: rgba(0, 0, 0, 0.24);
}

.panel-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-product-thumb span {
    padding: 0.4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
}

.panel-product-info {
    min-width: 0;
}

.panel-product-title-row {
    display: grid;
    gap: 0.4rem;
}

.panel-product-info h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.25;
}

.panel-product-info p {
    margin: 0.25rem 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.9rem;
}

.panel-status {
    width: fit-content;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
}

.panel-status.active {
    color: #d8ffe5;
    background: rgba(22, 163, 74, 0.22);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.panel-status.inactive {
    color: #ffe0e0;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.panel-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.65rem;
}

.btn.small {
    min-height: auto;
    padding: 0.48rem 0.7rem;
    font-size: 0.86rem;
}

.btn.danger {
    color: #ffe7e7;
    border-color: rgba(248, 113, 113, 0.45);
    background: rgba(220, 38, 38, 0.22);
}

.panel-empty {
    padding: 1.25rem;
    border-radius: 1.1rem;
    text-align: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

.panel-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.78);
}

.panel-form-card {
    display: grid;
    gap: 1rem;
}

.panel-form-section {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 1.1rem;
    background: rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-form-section h2 {
    margin: 0;
    color: #ffd34d;
    font-size: 1.1rem;
}

.panel-field {
    display: grid;
    gap: 0.35rem;
    color: #ffffff;
}

.panel-field label {
    font-weight: 800;
    color: #ffffff;
}

.panel-field small,
.panel-help {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
}

.panel-field textarea.panel-control {
    min-height: 110px;
    resize: vertical;
}

.panel-field input[type="checkbox"].panel-control {
    width: auto;
    min-height: auto;
}

.panel-check-field {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    min-height: 46px;
}

.panel-check-field label {
    margin: 0;
}

.panel-field ul {
    margin: 0.25rem 0 0;
    padding-left: 1.1rem;
    color: #ffb4b4;
}

.panel-current-image {
    display: grid;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.78);
}

.panel-current-image img {
    width: min(100%, 280px);
    max-height: 180px;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-gallery-existing {
    display: grid;
    gap: 0.65rem;
}

.panel-gallery-existing h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
}

.panel-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.panel-gallery-item {
    display: grid;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.72);
}

.panel-gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.9rem;
}

.panel-submit-bar,
.panel-delete-actions {
    position: sticky;
    bottom: 0.65rem;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background: rgba(5, 12, 24, 0.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-delete-card {
    max-width: 680px;
    margin: 0 auto;
    color: #ffffff;
}

.panel-delete-card h1 {
    margin: 0.25rem 0 0.8rem;
}

.panel-delete-product {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    margin: 1rem 0;
    padding: 0.8rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.07);
}

.panel-delete-product img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 0.8rem;
}

.panel-delete-product strong,
.panel-delete-product span {
    display: block;
}

.panel-delete-product span {
    color: rgba(255, 255, 255, 0.68);
}

.panel-action-disabled {
    opacity: 0.62;
    pointer-events: none;
}

@media (min-width: 760px) {
    .panel-topbar {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .panel-filter-card {
        grid-template-columns: 1.4fr 1fr 0.8fr auto auto;
        align-items: center;
    }

    .panel-product-card {
        grid-template-columns: 132px 1fr;
        padding: 1rem;
    }

    .panel-product-thumb {
        width: 132px;
        height: 132px;
    }

    .panel-product-title-row {
        grid-template-columns: 1fr auto;
        align-items: start;
    }

    .panel-two-cols {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .panel-gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ============================================================
   BLOQUE 11C-CRUD-R1 — Panel productos mobile-first
   ============================================================ */

.panel-topbar {
    display: grid;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.25rem;
}

.panel-topbar h1 {
    margin: 0.25rem 0 0.35rem;
    color: #ffffff;
    font-size: clamp(1.8rem, 8vw, 3rem);
}

.panel-topbar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.panel-main-action {
    justify-self: start;
}

.panel-messages {
    display: grid;
    gap: 0.65rem;
    margin: 0 0 1rem;
}

.panel-message {
    padding: 0.85rem 1rem;
    border-radius: 0.95rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
}

.panel-message.success {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(22, 163, 74, 0.18);
}

.panel-message.error {
    border-color: rgba(248, 113, 113, 0.4);
    background: rgba(220, 38, 38, 0.18);
}

.panel-filter-card,
.panel-form-card,
.panel-delete-card {
    padding: 1rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.panel-filter-card {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.panel-filter-card input,
.panel-filter-card select,
.panel-control {
    width: 100%;
    min-height: 46px;
    padding: 0.78rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.85rem;
    color: #ffffff;
    background: rgba(5, 12, 24, 0.72);
}

.panel-filter-card input::placeholder,
.panel-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.panel-product-list {
    display: grid;
    gap: 0.9rem;
}

.panel-product-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 0.85rem;
    padding: 0.8rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.panel-product-thumb {
    width: 92px;
    height: 92px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 0.95rem;
    background: rgba(0, 0, 0, 0.24);
}

.panel-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-product-thumb span {
    padding: 0.4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
}

.panel-product-info {
    min-width: 0;
}

.panel-product-title-row {
    display: grid;
    gap: 0.4rem;
}

.panel-product-info h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.25;
}

.panel-product-info p {
    margin: 0.25rem 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.9rem;
}

.panel-status {
    width: fit-content;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
}

.panel-status.active {
    color: #d8ffe5;
    background: rgba(22, 163, 74, 0.22);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.panel-status.inactive {
    color: #ffe0e0;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.panel-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.65rem;
}

.btn.small {
    min-height: auto;
    padding: 0.48rem 0.7rem;
    font-size: 0.86rem;
}

.btn.danger {
    color: #ffe7e7;
    border-color: rgba(248, 113, 113, 0.45);
    background: rgba(220, 38, 38, 0.22);
}

.panel-empty {
    padding: 1.25rem;
    border-radius: 1.1rem;
    text-align: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

.panel-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.78);
}

.panel-form-card {
    display: grid;
    gap: 1rem;
}

.panel-form-section {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 1.1rem;
    background: rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-form-section h2 {
    margin: 0;
    color: #ffd34d;
    font-size: 1.1rem;
}

.panel-field {
    display: grid;
    gap: 0.35rem;
    color: #ffffff;
}

.panel-field label {
    font-weight: 800;
    color: #ffffff;
}

.panel-field small,
.panel-help {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
}

.panel-field textarea.panel-control {
    min-height: 110px;
    resize: vertical;
}

.panel-field input[type="checkbox"].panel-control {
    width: auto;
    min-height: auto;
}

.panel-check-field {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    min-height: 46px;
}

.panel-check-field label {
    margin: 0;
}

.panel-field ul {
    margin: 0.25rem 0 0;
    padding-left: 1.1rem;
    color: #ffb4b4;
}

.panel-current-image {
    display: grid;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.78);
}

.panel-current-image img {
    width: min(100%, 280px);
    max-height: 180px;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-gallery-existing {
    display: grid;
    gap: 0.65rem;
}

.panel-gallery-existing h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
}

.panel-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.panel-gallery-item {
    display: grid;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.72);
}

.panel-gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.9rem;
}

.panel-submit-bar,
.panel-delete-actions {
    position: sticky;
    bottom: 0.65rem;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background: rgba(5, 12, 24, 0.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-delete-card {
    max-width: 680px;
    margin: 0 auto;
    color: #ffffff;
}

.panel-delete-card h1 {
    margin: 0.25rem 0 0.8rem;
}

.panel-delete-product {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    margin: 1rem 0;
    padding: 0.8rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.07);
}

.panel-delete-product img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 0.8rem;
}

.panel-delete-product strong,
.panel-delete-product span {
    display: block;
}

.panel-delete-product span {
    color: rgba(255, 255, 255, 0.68);
}

.panel-action-disabled {
    opacity: 0.62;
    pointer-events: none;
}

@media (min-width: 760px) {
    .panel-topbar {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .panel-filter-card {
        grid-template-columns: 1.4fr 1fr 0.8fr auto auto;
        align-items: center;
    }

    .panel-product-card {
        grid-template-columns: 132px 1fr;
        padding: 1rem;
    }

    .panel-product-thumb {
        width: 132px;
        height: 132px;
    }

    .panel-product-title-row {
        grid-template-columns: 1fr auto;
        align-items: start;
    }

    .panel-two-cols {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .panel-gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ============================================================
   BLOQUE 11C-1-AUTHBAR — Usuario activo + cerrar sesión
   ============================================================ */

.nav-user-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    max-width: 180px;
    padding: 0.48rem 0.75rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.88rem;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-user-pill span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-user-dot {
    width: 0.55rem;
    height: 0.55rem;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

.nav-logout-form {
    margin: 0;
    display: inline-flex;
}

.nav-logout-button {
    cursor: pointer;
    min-height: 38px;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(248, 113, 113, 0.38);
    color: #ffe7e7;
    background: rgba(220, 38, 38, 0.16);
    font: inherit;
    font-weight: 800;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.nav-logout-button:hover {
    transform: translateY(-1px);
    border-color: rgba(248, 113, 113, 0.72);
    background: rgba(220, 38, 38, 0.26);
}

@media (max-width: 860px) {
    .main-nav .nav-user-pill,
    .main-nav .nav-logout-form,
    .main-nav .nav-logout-button {
        width: 100%;
    }

    .main-nav .nav-user-pill {
        max-width: none;
        justify-content: center;
    }

    .main-nav .nav-logout-button {
        justify-content: center;
    }
}

/* ============================================================
   BLOQUE 11C-2-IMAGE-UX — Vista previa + cámara + quitar selección
   ============================================================ */

.panel-upload-grid {
    display: grid;
    gap: 0.9rem;
}

.panel-upload-box {
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.panel-upload-head {
    display: grid;
    gap: 0.18rem;
}

.panel-upload-head strong {
    color: #ffd34d;
    font-size: 1rem;
}

.panel-upload-head span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
}

.panel-upload-preview {
    min-height: 170px;
    overflow: hidden;
    display: grid;
    place-items: center;
    gap: 0.45rem;
    border-radius: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.18);
}

.panel-upload-preview img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    display: block;
    background: rgba(255, 255, 255, 0.04);
}

.panel-upload-preview > span {
    width: 100%;
    padding: 0.5rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    text-align: center;
    word-break: break-word;
}

.panel-upload-empty {
    min-height: 160px;
    width: 100%;
    display: grid;
    place-items: center;
    padding: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
}

.panel-upload-input {
    display: none;
}

.panel-file-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.panel-upload-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.panel-gallery-delete-item {
    cursor: pointer;
    padding: 0.55rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.panel-gallery-delete-item:hover {
    border-color: rgba(255, 211, 77, 0.45);
}

.panel-delete-check {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem;
    border-radius: 0.75rem;
    color: #ffe7e7;
    background: rgba(220, 38, 38, 0.13);
    border: 1px solid rgba(248, 113, 113, 0.22);
    font-size: 0.86rem;
    font-weight: 800;
}

.panel-delete-check input {
    width: 1rem;
    height: 1rem;
}

@media (min-width: 760px) {
    .panel-upload-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .panel-upload-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .panel-upload-preview {
        min-height: 145px;
    }

    .panel-upload-empty {
        min-height: 135px;
    }
}

/* ============================================================
   BLOQUE 11D-GALLERY — Visor público de imágenes del producto
   ============================================================ */

.product-gallery {
    display: grid;
    gap: 0.75rem;
}

.product-gallery-stage {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: grid;
    place-items: center;
    border-radius: 1.2rem;
    background:
        radial-gradient(circle at top left, rgba(255, 211, 77, 0.10), transparent 18rem),
        rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-gallery-main {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
    display: block;
    background: rgba(255, 255, 255, 0.025);
}

.product-gallery-empty {
    min-height: 260px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.65);
}

.product-gallery-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    background: rgba(5, 12, 24, 0.72);
    backdrop-filter: blur(12px);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.product-gallery-btn:hover {
    background: rgba(255, 211, 77, 0.22);
    border-color: rgba(255, 211, 77, 0.52);
}

.product-gallery-prev {
    left: 0.65rem;
}

.product-gallery-next {
    right: 0.65rem;
}

.product-gallery-thumbs {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding: 0.15rem 0.1rem 0.35rem;
    scroll-snap-type: x mandatory;
}

.product-gallery-thumb {
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    overflow: hidden;
    padding: 0;
    border-radius: 0.85rem;
    border: 2px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery-thumb.is-active {
    border-color: #ffd34d;
    box-shadow: 0 0 0 3px rgba(255, 211, 77, 0.16);
}

.product-gallery-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 211, 77, 0.7);
}

@media (min-width: 760px) {
    .product-gallery-stage {
        min-height: 360px;
    }

    .product-gallery-thumb {
        flex-basis: 88px;
        width: 88px;
        height: 88px;
    }
}

@media (max-width: 420px) {
    .product-gallery-stage {
        min-height: 230px;
    }

    .product-gallery-btn {
        width: 38px;
        height: 38px;
        font-size: 1.7rem;
    }

    .product-gallery-thumb {
        flex-basis: 68px;
        width: 68px;
        height: 68px;
    }
}

/* ============================================================
   BLOQUE 11G-LOGIN-UX — Recordarme + guardar contraseña + ojo
   ============================================================ */

.password-field {
    position: relative;
    display: grid;
}

.password-field input {
    padding-right: 3.2rem;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 0.45rem;
    width: 2.35rem;
    height: 2.35rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.password-toggle:hover {
    border-color: rgba(255, 211, 77, 0.48);
    background: rgba(255, 211, 77, 0.12);
}

.remember-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.75rem;
    border-radius: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    cursor: pointer;
    line-height: 1.35;
}

.remember-row input {
    width: 1.05rem;
    height: 1.05rem;
    min-height: auto;
    margin-top: 0.1rem;
    accent-color: #ffd34d;
}

.auth-help {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    line-height: 1.45;
}

@media (max-width: 420px) {
    .password-toggle {
        width: 2.45rem;
        height: 2.45rem;
        right: 0.35rem;
    }

    .remember-row {
        font-size: 0.92rem;
    }
}

/* =========================================================
   BLOQUE 12D - SUCURSALES + GOOGLE MAPS + REDES SOCIALES
   ========================================================= */

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 0 0 10px;
}

.section-heading p:last-child {
    color: rgba(255,255,255,.74);
}

.location-grid-premium {
    gap: 26px;
}

.location-card-premium {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(14, 35, 66, .98), rgba(7, 18, 35, .98));
}

.location-card-premium .location-media {
    position: relative;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
    background: rgba(255,255,255,.04);
}

.location-card-premium .location-media img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    border-radius: 0;
    border: 0;
    box-shadow: none;
}

.location-placeholder {
    min-height: 260px;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.68);
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255,196,0,.14), rgba(0,92,184,.16));
}

.location-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.location-title-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.location-label {
    margin: 0 0 4px;
    color: var(--accent);
    font-weight: 900;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.location-title-row h2 {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.location-province {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,196,0,.12);
    color: rgba(255,255,255,.86);
    border: 1px solid rgba(255,196,0,.22);
    font-size: .86rem;
    font-weight: 800;
    white-space: nowrap;
}

.location-address {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0;
    color: rgba(255,255,255,.82);
    line-height: 1.55;
}

.location-address img {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    margin-top: 1px;
}

.location-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.location-btn {
    min-height: 46px;
}

.location-pending {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px dashed rgba(255,255,255,.22);
    color: rgba(255,255,255,.62);
    font-size: .9rem;
    font-weight: 800;
}

.contact-panel-premium {
    border-radius: 28px;
}

.contact-list-title,
.social-title {
    margin: 0 0 12px;
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
}

.social-panel {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.social-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255,196,0,.42);
    background: rgba(255,196,0,.10);
}

.social-btn img {
    width: 22px;
    height: 22px;
    display: block;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #fff;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    border-color: rgba(255,196,0,.38);
    background: rgba(255,196,0,.10);
}

.footer-social img {
    width: 20px;
    height: 20px;
    display: block;
}

.contact-list a {
    color: var(--accent);
    font-weight: 900;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

@media (max-width: 760px) {
    .location-body {
        padding: 20px;
    }

    .location-title-row {
        flex-direction: column;
        gap: 10px;
    }

    .location-province {
        align-self: flex-start;
    }

    .location-actions,
    .social-actions {
        flex-direction: column;
    }

    .location-actions .btn,
    .social-btn,
    .location-pending {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        gap: 16px;
    }
}

/* =========================================================
   BLOQUE 13B - WHATSAPP SELECTOR / MATRIZ / LOCALES
   ========================================================= */

button.btn,
.product-consult-link {
    font-family: inherit;
}

.product-consult-link {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--accent);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
}

.product-consult-link:hover {
    text-decoration: underline;
}

.wa-modal[hidden] {
    display: none;
}

.wa-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 18px;
}

.wa-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 23, .76);
    backdrop-filter: blur(8px);
}

.wa-modal-panel {
    position: relative;
    width: min(440px, 100%);
    border-radius: 30px;
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(14, 35, 66, .98), rgba(7, 18, 35, .98));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 30px 90px rgba(0,0,0,.46);
}

.wa-modal-panel h2 {
    margin: 0 0 10px;
    font-size: clamp(1.45rem, 4vw, 2rem);
}

.wa-modal-message {
    margin: 0 0 18px;
    color: rgba(255,255,255,.72);
    line-height: 1.5;
}

.wa-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.wa-choice-grid {
    display: grid;
    gap: 12px;
}

.wa-choice {
    width: 100%;
    min-height: 74px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #fff;
    cursor: pointer;
    text-align: left;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.wa-choice:hover,
.wa-choice:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(37,211,102,.55);
    background: rgba(37,211,102,.12);
    outline: none;
}

.wa-choice strong {
    font-size: 1.12rem;
}

.wa-choice span {
    color: rgba(255,255,255,.68);
    font-weight: 800;
}

body.wa-modal-open {
    overflow: hidden;
}

.contact-phone-panel {
    margin-top: 22px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
}

.phone-line,
.footer-phone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
}

.phone-line {
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.phone-line:last-child {
    border-bottom: 0;
}

.phone-line span {
    color: rgba(255,255,255,.70);
    font-weight: 800;
}

.phone-line a,
.footer-phone-list a {
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.phone-line a:hover,
.footer-phone-list a:hover {
    color: var(--accent);
}

.footer-phone-list {
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
}

.location-map-btn {
    box-shadow: 0 16px 34px rgba(255,196,0,.16);
}

.inline-map-link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,196,0,.22);
    background: rgba(255,196,0,.08);
    color: var(--accent);
    font-weight: 900;
    text-decoration: none;
}

.inline-map-link:hover {
    background: rgba(255,196,0,.14);
    text-decoration: none;
}

.contact-actions-smart {
    align-items: center;
}

@media (max-width: 760px) {
    .wa-modal {
        align-items: end;
        padding: 12px;
    }

    .wa-modal-panel {
        border-radius: 26px;
        padding: 24px 20px;
    }

    .phone-line {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   BLOQUE 13D - BANNERS CON IMAGEN
   ========================================================= */

.page-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 320px;
    display: flex;
    align-items: center;
    background-color: #071223;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(3, 10, 20, 0.72), rgba(3, 10, 20, 0.74)),
        linear-gradient(90deg, rgba(3, 10, 20, 0.78), rgba(3, 10, 20, 0.48));
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero {
    background-image: url("/static/img/banners/repuestos-2.85ef74021066.webp");
}

.catalog-hero {
    background-image: url("/static/img/banners/repuestos-3.f1650112fef4.webp");
}

.locations-hero {
    background-image: url("/static/img/banners/repuestos-2.85ef74021066.webp");
}

.contact-hero {
    background-image: url("/static/img/banners/repuestos-3.f1650112fef4.webp");
}

.contact-section-premium .rounded-media {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
    display: block;
}

@media (max-width: 760px) {
    .page-hero {
        min-height: 260px;
        background-position: center center;
    }

    .contact-section-premium .rounded-media {
        aspect-ratio: 16 / 11;
    }
}

/* =========================================================
   BLOQUE 13E - ABOUT + CONTACT IMAGE
   ========================================================= */

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 28px;
    align-items: stretch;
}

.about-story-main,
.about-review-card,
.about-value-card {
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.045);
    border-radius: 28px;
    padding: clamp(22px, 4vw, 34px);
    box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.about-story-main h2,
.about-review-card h3,
.about-value-card h2 {
    margin-top: 0;
}

.about-story-main p,
.about-review-card p,
.about-value-card p {
    color: rgba(255,255,255,.76);
    line-height: 1.7;
}

.about-review-card {
    background:
        linear-gradient(180deg, rgba(255,196,0,.10), rgba(255,255,255,.045));
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-value-card {
    min-height: 100%;
}

.contact-section-premium .rounded-media {
    object-position: center;
}

@media (max-width: 900px) {
    .about-story-grid,
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

/* BLOQUE 15Q - Nosotros: card de cobertura nacional mobile-first */
.about-story-section {
    display: grid;
    gap: clamp(1.1rem, 2vw, 1.6rem);
}

.about-shipping-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.95rem;
    margin-top: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(1rem, 4vw, 1.45rem);
    border: 1px solid rgba(96, 165, 250, 0.28);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.28), transparent 38%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 35, 68, 0.96));
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(2, 8, 23, 0.22);
    overflow: hidden;
}

.about-shipping-card::after {
    content: "";
    position: absolute;
    inset: auto -48px -60px auto;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.16);
    pointer-events: none;
}

.about-shipping-icon {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.08rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(2, 8, 23, 0.22);
    font-size: 1.45rem;
    line-height: 1;
}

.about-shipping-content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.about-shipping-kicker {
    margin: 0 0 0.38rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #93c5fd;
}

.about-shipping-content h3 {
    margin: 0 0 0.45rem;
    max-width: 780px;
    color: #ffffff;
    font-size: clamp(1.08rem, 4.8vw, 1.55rem);
    line-height: 1.18;
    font-weight: 850;
}

.about-shipping-content p:not(.about-shipping-kicker) {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(0.94rem, 3.8vw, 1.02rem);
    line-height: 1.55;
}

/* Tablet y PC: icono al lado, texto más elegante */
@media (min-width: 640px) {
    .about-shipping-card {
        grid-template-columns: auto 1fr;
        align-items: center;
        padding: clamp(1.25rem, 2.5vw, 1.7rem);
    }

    .about-shipping-icon {
        width: 62px;
        height: 62px;
        border-radius: 20px;
        font-size: 1.65rem;
    }
}

/* Celulares pequeños: evitar que el card se sienta apretado */
@media (max-width: 420px) {
    .about-shipping-card {
        border-radius: 20px;
        padding: 1rem;
    }

    .about-shipping-icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 1.35rem;
    }

    .about-shipping-kicker {
        font-size: 0.7rem;
        letter-spacing: 0.11em;
    }
}

/* BLOQUE 15R - Nosotros: frase comercial destacada */
.about-highlight-text {
    display: inline;
    color: #ffd54a;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-decoration: none;
    background: none;
    padding: 0;
    border-radius: 0;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22), 0 0 12px rgba(255, 213, 74, 0.10);
}

@media (max-width: 520px) {
    .about-highlight-text {
        color: #ffe082;
        font-weight: 850;
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18), 0 0 10px rgba(255, 224, 130, 0.10);
    }
}

/* BLOQUE 15S - Nav desktop slim profesional
   Solo aplica en PC. Mobile queda intacto. */
@media (min-width: 992px) {
    .site-header {
        background: rgba(2, 8, 23, 0.96);
        border-bottom: 1px solid rgba(245, 197, 66, 0.38);
    }

    .site-header .nav {
        min-height: 76px;
        padding-top: 0.38rem;
        padding-bottom: 0.38rem;
        gap: clamp(1rem, 1.8vw, 1.8rem);
        align-items: center;
    }

    .site-header .brand {
        min-height: 62px;
        max-width: 430px;
        padding: 0.42rem 0.72rem;
        border-radius: 20px;
        gap: 0.72rem;
        box-shadow: 0 10px 28px rgba(2, 8, 23, 0.28);
    }

    .site-header .brand img {
        width: 154px;
        max-width: 154px;
        height: 52px;
        object-fit: contain;
        flex: 0 0 auto;
    }

    .site-header .brand-copy {
        gap: 0.1rem;
        min-width: 0;
    }

    .site-header .brand-copy strong {
        font-size: clamp(1.02rem, 1.28vw, 1.22rem);
        line-height: 1.02;
        letter-spacing: -0.025em;
    }

    .site-header .brand-copy small {
        font-size: clamp(0.72rem, 0.85vw, 0.82rem);
        line-height: 1.05;
        letter-spacing: 0.11em;
    }

    .site-header .nav-links {
        gap: clamp(1rem, 1.6vw, 1.55rem);
        align-items: center;
    }

    .site-header .nav-links a {
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
        font-size: clamp(0.95rem, 1vw, 1.05rem);
        line-height: 1.1;
    }

    .site-header .nav-actions,
    .site-header .auth-actions,
    .site-header .user-actions {
        align-items: center;
        gap: 0.55rem;
    }

    .site-header .btn,
    .site-header button,
    .site-header .panel-link,
    .site-header .logout-btn {
        min-height: 42px;
        padding: 0.48rem 1.02rem;
        border-radius: 999px;
        font-size: 0.95rem;
        line-height: 1;
    }

    .site-header .user-badge,
    .site-header .user-chip,
    .site-header .nav-user,
    .site-header .account-badge {
        min-height: 42px;
        padding: 0.45rem 0.88rem;
        border-radius: 999px;
        font-size: 0.95rem;
        line-height: 1;
    }
}

/* Pantallas grandes: un poco más elegante, sin crecer demasiado */
@media (min-width: 1200px) {
    .site-header .nav {
        min-height: 78px;
    }

    .site-header .brand {
        max-width: 455px;
    }

    .site-header .brand img {
        width: 162px;
        max-width: 162px;
        height: 54px;
    }
}
/* FIN BLOQUE 15S */

