/* ==========================================================================
   PCWAREPERÚ — Sistema de diseño
   Paleta tomada del logo: navy profundo, azul royal, cian señal, gris acero
   Tipografía: Rajdhani (display, técnica/angular) + Inter (texto) + JetBrains Mono (specs/precios)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');
:root {
    /* Paleta de marca (del logo) */
    --navy: #0A1B33;
    --navy-2: #0F2745;
    --navy-3: #142f52;
    --blue: #1E3A8A;
    --blue-light: #3457b0;
    --cyan: #00B8D9;
    --cyan-glow: #5be3ff;
    --gray: #C0C7D1;
    --white: #FFFFFF;
    /* Roles semánticos */
    --bg: var(--navy);
    --bg-panel: var(--navy-2);
    --bg-panel-2: var(--navy-3);
    --text: #EAF0FB;
    --text-muted: var(--gray);
    --border: rgba(192, 199, 209, 0.16);
    --border-strong: rgba(192, 199, 209, 0.32);
    /* Tipografía */
    --font-display: 'Rajdhani', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
    /* Espaciado */
    --container: 1240px;
    --radius: 10px;
    --radius-sm: 6px;
    /* Sombra / glow */
    --glow-cyan: 0 0 24px rgba(0, 184, 217, 0.35);
    --shadow-card: 0 10px 30px rgba(2, 8, 20, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 0;
    color: var(--white);
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eyebrow::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--cyan);
}

.section {
    padding: 88px 0;
    position: relative;
}

.section-head {
    max-width: 640px;
    margin-bottom: 48px;
}

.section-head h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    margin-top: 10px;
}

.section-head p {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 16px;
}


/* Focus visibility */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}


/* ==========================================================================
   Botones
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--blue-light));
    color: #051422;
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    box-shadow: 0 0 34px rgba(0, 184, 217, 0.55);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-strong);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    padding: 13px 14px;
}

.btn-ghost:hover {
    color: var(--cyan);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 9px 16px;
    font-size: 13px;
}


/* ==========================================================================
   Header / Navegación
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 27, 51, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.topbar {
    background: var(--navy-3);
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--gray);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar a:hover {
    color: var(--cyan);
}

.topbar-right {
    display: flex;
    gap: 20px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    min-height: 44px;
}

.brand img {
    height: 92px;
    width: auto;
}


/* Respaldo de texto: se muestra si aún no colocas assets/logo-horizontal.png */

.brand .brand-fallback {
    display: none;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    letter-spacing: 0.02em;
}

.brand img[src$="logo-horizontal.png"] {}

.brand .brand-fallback .infinity {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.brand .brand-fallback .infinity path {
    fill: none;
    stroke: var(--cyan);
    stroke-width: 3;
}

.brand .brand-fallback span.accent {
    color: var(--cyan);
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gray);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a.active {
    color: var(--white);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--gray);
    border: 1px solid transparent;
}

.icon-btn:hover {
    color: var(--cyan);
    border-color: var(--border);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--cyan);
    color: #051422;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--white);
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 84vw);
        height: 100vh;
        background: var(--navy-2);
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 28px 28px;
        gap: 4px;
        transition: right 0.3s ease;
        z-index: 110;
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        width: 100%;
        padding: 14px 10px;
        font-size: 17px;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-scrim {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(3, 9, 20, 0.6);
        z-index: 105;
    }
    .nav-scrim.open {
        display: block;
    }
}


/* ==========================================================================
   Hero (index)
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 90px;
    border-bottom: 1px solid var(--border);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.55;
    pointer-events: none;
}

.hero-bg svg {
    width: 100%;
    height: 100%;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(192, 199, 209, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(192, 199, 209, 0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black 40%, transparent 100%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(38px, 5.4vw, 66px);
    line-height: 1.04;
    margin-top: 16px;
}

.hero-copy h1 .cyan {
    color: var(--cyan);
}

.hero-copy p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 520px;
    margin-top: 18px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stats div strong {
    display: block;
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
}

.hero-stats div span {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-visual {
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual svg {
    width: 100%;
    height: 100%;
}


/* Firma visual: traza de circuito infinito */

.trace-path {
    fill: none;
    stroke: var(--cyan);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-dasharray: 14 10;
    filter: drop-shadow(0 0 6px rgba(0, 184, 217, 0.7));
    animation: trace-flow 22s linear infinite;
}

.trace-path-dim {
    fill: none;
    stroke: var(--border-strong);
    stroke-width: 1.4;
}

@keyframes trace-flow {
    to {
        stroke-dashoffset: -480;
    }
}

.trace-node {
    fill: var(--navy);
    stroke: var(--gray);
    stroke-width: 1.5;
}

.trace-node.on {
    stroke: var(--cyan);
    fill: var(--cyan);
    filter: drop-shadow(0 0 5px rgba(0, 184, 217, 0.9));
}


/* Divisor de sección con traza de circuito */

.circuit-divider {
    height: 46px;
    width: 100%;
    opacity: 0.85;
}

.circuit-divider .trace-path {
    stroke-width: 1.8;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        max-width: 380px;
        margin: 0 auto;
    }
}


/* ==========================================================================
   Categorías
   ========================================================================== */

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

.cat-card {
    background: linear-gradient(180deg, var(--bg-panel), var(--bg-panel-2));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 22px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.cat-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
}

.cat-card .cat-icon {
    width: 46px;
    height: 46px;
    color: var(--cyan);
    margin-bottom: 18px;
}

.cat-card .cat-icon svg {
    width: 100%;
    height: 100%;
}

.cat-card h3 {
    font-size: 19px;
    margin-bottom: 6px;
}

.cat-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0 0 14px;
}

.cat-card .cat-link {
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cat-card .cat-link svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s ease;
}

.cat-card:hover .cat-link svg {
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .cat-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Productos
   ========================================================================== */

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

.product-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
}

.product-media {
    aspect-ratio: 4/3;
    position: relative;
    background: radial-gradient(circle at 30% 20%, rgba(0, 184, 217, 0.18), transparent 55%), linear-gradient(135deg, var(--navy-3), var(--navy-2));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.product-media svg {
    width: 40%;
    height: 40%;
    color: var(--cyan);
    opacity: 0.85;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(0, 184, 217, 0.14);
    border: 1px solid rgba(0, 184, 217, 0.5);
    color: var(--cyan);
    padding: 4px 9px;
    border-radius: 999px;
}

.product-badge.gray {
    background: rgba(192, 199, 209, 0.1);
    border-color: var(--border-strong);
    color: var(--gray);
}

.product-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-cat {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-specs li::before {
    content: '› ';
    color: var(--cyan);
}

.product-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.product-price {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 19px;
    color: var(--white);
}

.product-price small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
}

@media (max-width: 980px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}


/* Página productos: layout con filtros */

.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    align-items: start;
}

.filters {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    position: sticky;
    top: 90px;
}

.filters h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-bottom: 14px;
    font-family: var(--font-mono);
    font-weight: 500;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14.5px;
    color: var(--text-muted);
    padding: 6px 0;
    cursor: pointer;
}

.filter-option input {
    accent-color: var(--cyan);
    width: 15px;
    height: 15px;
}

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

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.chip-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    font-family: var(--font-mono);
    font-size: 12.5px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    color: var(--text-muted);
    background: transparent;
}

.chip.active {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #051422;
    font-weight: 600;
}

.chip:hover:not(.active) {
    border-color: var(--cyan);
    color: var(--cyan);
}

.results-count {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .filters {
        position: static;
    }
}


/* ==========================================================================
   Bloques varios (valores, franjas, testimonios, CTA)
   ========================================================================== */

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

.value-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-item .v-icon {
    width: 40px;
    height: 40px;
    color: var(--cyan);
}

.value-item .v-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    font-size: 17px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin: 0;
}

@media (max-width: 900px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}

.panel {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

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

@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.stat-panel {
    background: linear-gradient(180deg, var(--bg-panel), var(--bg-panel-2));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.stat-panel div strong {
    display: block;
    font-family: var(--font-display);
    font-size: 34px;
    color: var(--white);
}

.stat-panel div span {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-band {
    background: linear-gradient(120deg, var(--navy-3), var(--blue) 130%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-band h2 {
    font-size: clamp(24px, 3vw, 32px);
    max-width: 460px;
}

.cta-band p {
    color: var(--gray);
    margin-top: 10px;
    max-width: 460px;
}


/* ==========================================================================
   Formularios
   ========================================================================== */

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray);
    margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    background: var(--navy-3);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 13px 14px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--cyan);
    outline: none;
}

.field textarea {
    resize: vertical;
    min-height: 130px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 560px) {
    .field-row {
        grid-template-columns: 1fr;
    }
}

.form-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(0, 184, 217, 0.1);
    border: 1px solid rgba(0, 184, 217, 0.4);
    color: var(--cyan);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-top: 16px;
}

.form-success.show {
    display: flex;
}


/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    border-top: 1px solid var(--border);
    padding: 64px 0 28px;
    background: var(--navy-2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-brand img {
    height: 38px;
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.footer-social a:hover {
    color: var(--cyan);
    border-color: var(--cyan);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--gray);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 14.5px;
}

.footer-col a:hover {
    color: var(--cyan);
}

.footer-col .contact-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 14.5px;
}

.footer-col .contact-line svg {
    width: 16px;
    height: 16px;
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Página Nosotros
   ========================================================================== */

.about-hero {
    padding: 70px 0 60px;
    border-bottom: 1px solid var(--border);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mv-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.mv-card .eyebrow {
    margin-bottom: 14px;
}

.mv-card p {
    color: var(--text-muted);
    margin-top: 12px;
}

@media (max-width: 760px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}


/* Página Contacto */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.info-card {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.info-card:last-child {
    border-bottom: none;
}

.info-card .ic {
    width: 22px;
    height: 22px;
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-card .ic svg {
    width: 100%;
    height: 100%;
}

.info-card h4 {
    font-size: 15.5px;
    color: var(--white);
    margin-bottom: 4px;
    font-family: var(--font-display);
}

.info-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14.5px;
}

.map-block {
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(rgba(192, 199, 209, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(192, 199, 209, 0.06) 1px, transparent 1px), var(--bg-panel);
    background-size: 28px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.map-block .pin {
    width: 34px;
    height: 34px;
    color: var(--cyan);
    filter: drop-shadow(0 0 8px rgba(0, 184, 217, 0.7));
}

.map-block span {
    position: absolute;
    bottom: 14px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #21c15a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 90;
    color: #fff;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    filter: brightness(1.08);
}


/* Breadcrumb / page hero simple */

.page-hero {
    padding: 56px 0 44px;
    border-bottom: 1px solid var(--border);
    background: radial-gradient(ellipse 60% 100% at 15% 0%, rgba(0, 184, 217, 0.08), transparent 60%);
}

.page-hero h1 {
    font-size: clamp(30px, 4vw, 44px);
    margin-top: 14px;
}

.page-hero p {
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 560px;
}


/* Utilidades */

.mt-0 {
    margin-top: 0;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   IMÁGENES DE CATEGORÍAS
   ========================================================= */

.cat-icon {
    width: 100%;
    height: 190px;
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    background: #0b1220;
}

.cat-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.cat-card:hover .cat-icon img {
    transform: scale(1.08);
}


/* =========================================================
   IMÁGENES DE PRODUCTOS
 


/* =========================================================
   BADGES SOBRE LAS IMÁGENES
   ========================================================= */

.product-media .product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
}


/* =========================================================
   EVITAR QUE LA IMAGEN SE DEFORME EN CELULAR
   ========================================================= */

@media (max-width: 768px) {
    .cat-icon {
        height: 180px;
    }
    .product-media {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .cat-icon {
        height: 160px;
    }
    .product-media {
        height: 220px;
    }
}