*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rojo:       #5a1a1e;
    --rojo-osc:   #3d0b0e;
    --rojo-vivo:  #b8a96a;
    --acero:      #2a0c0f;
    --acero-med:  #3d1114;
    --acero-sft:  #5a1a1e;
    --arena:      #f8f4ea;
    --arena-osc:  #ede6d2;
    --arena-med:  #d6ccb0;
    --blanco:     #ffffff;
    --texto:      #2a0c0f;
    --texto-sft:  #4a3030;

    --d: 'Fraunces', Georgia, serif;
    --s: 'Syne', sans-serif;
    --b: 'DM Sans', sans-serif;
    --ease: cubic-bezier(.25,.46,.45,.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--b);
    background: var(--arena);
    color: var(--texto);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════
   BARRA SUPERIOR
═══════════════════════════════════════ */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;

    background: rgba(42,12,15,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(184,169,106,0.3);

    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.topbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 2;
}

.topbar-logo img {
    height: 44px;
    width: 44px;
    object-fit: cover;
    border-radius: 50%;
    border: 1.5px solid rgba(184,169,106,0.5);
}

.topbar-logo-txt {
    font-family: var(--d);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--blanco);
    line-height: 1;
}

.topbar-logo-txt em {
    font-style: italic;
    font-weight: 300;
    color: var(--rojo-vivo);
}

.topbar-nav {
    display: flex;
    gap: 0;
}

.topbar-nav a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-family: var(--s);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    padding: 0 16px;
    height: 68px;

    display: flex;
    align-items: center;

    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}

.topbar-nav a:hover {
    color: var(--rojo-vivo);
    border-bottom-color: var(--rojo-vivo);
}

/* Wrapper derecha: botón WA + hamburguesa */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.topbar-cta {
    background: var(--rojo-vivo);
    color: var(--acero);

    font-family: var(--s);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    padding: 10px 22px;
    text-decoration: none;

    transition: all .2s;
    border: 2px solid var(--rojo-vivo);
    white-space: nowrap;
}

.topbar-cta:hover {
    background: transparent;
    color: var(--rojo-vivo);
}

/* ═══════════════════════════════════════
   HAMBURGUESA
═══════════════════════════════════════ */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: border-color .2s;
}

.hamburger:hover {
    border-color: var(--rojo-vivo);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--blanco);
    transition: transform .3s var(--ease), opacity .3s, width .3s;
    transform-origin: center;
}

/* Animación X al abrir */
.hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay oscuro detrás del menú */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity .3s;
}
.nav-overlay.overlay-visible {
    opacity: 1;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */

#hero {
    min-height: 100vh;
    background: var(--acero);
    position: relative;

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;
    padding-top: 68px;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;

    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(184,169,106,0.04) 40px, rgba(184,169,106,0.04) 41px),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(184,169,106,0.04) 40px, rgba(184,169,106,0.04) 41px);

    pointer-events: none;
}

.hero-izq {
    position: relative;
    z-index: 2;
    padding: 80px 60px 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-family: var(--s);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: var(--rojo-vivo);
    margin-bottom: 28px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--rojo-vivo);
}

.hero-h1 {
    font-family: var(--d);
    font-size: clamp(52px, 6.5vw, 110px);
    font-weight: 700;
    line-height: .92;
    letter-spacing: -1px;
    color: var(--blanco);
    margin-bottom: 8px;
}

.hero-h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--rojo-vivo);
}

.hero-sub {
    font-family: var(--b);
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.9;
    max-width: 400px;
    margin: 28px 0 48px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero-p {
    background: var(--rojo-vivo);
    color: var(--acero);
    font-family: var(--s);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    border: 2px solid var(--rojo-vivo);
    transition: all .25s var(--ease);
}

.btn-hero-p:hover {
    background: transparent;
    color: var(--rojo-vivo);
}

.btn-hero-s {
    color: rgba(255,255,255,0.5);
    font-family: var(--s);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: color .2s, border-color .2s;
}

.btn-hero-s:hover {
    color: var(--blanco);
    border-color: var(--blanco);
}

.hero-der {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.hero-der img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.3) contrast(1.1);
}

.hero-der::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, var(--acero) 0%, transparent 45%),
        linear-gradient(to top, var(--acero) 0%, transparent 35%);
}

.hero-dato {
    position: absolute;
    bottom: 48px;
    right: 40px;
    z-index: 2;
    background: var(--rojo-vivo);
    padding: 22px 28px;
    text-align: center;
}

.hero-dato strong {
    display: block;
    font-family: var(--d);
    font-size: 52px;
    font-weight: 700;
    color: var(--acero);
    line-height: 1;
}

.hero-dato span {
    font-family: var(--s);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(42,12,15,0.7);
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 50%;
    z-index: 3;
    display: flex;
    border-top: 1px solid rgba(184,169,106,0.2);
}

.hero-stat {
    flex: 1;
    padding: 20px 28px;
    border-right: 1px solid rgba(184,169,106,0.12);
}

.hero-stat:last-child { border-right: none; }

.hero-stat strong {
    display: block;
    font-family: var(--d);
    font-size: 28px;
    font-weight: 700;
    color: var(--blanco);
}

.hero-stat span {
    font-family: var(--s);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════
   TICKER
═══════════════════════════════════════ */

.ticker {
    background: var(--rojo-vivo);
    padding: 14px 0;
    overflow: hidden;
    display: flex;
}

.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker-scroll 24s linear infinite;
}

.ticker-track span {
    font-family: var(--s);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--acero);
    padding: 0 40px;
}

.ticker-track span::after {
    content: '—';
    margin-left: 40px;
    opacity: .5;
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SOBRE NOSOTROS
═══════════════════════════════════════ */

#nosotros {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.nos-img-wrap {
    position: relative;
}

.nos-img-wrap img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.nos-img-num {
    position: absolute;
    top: -24px;
    left: -24px;
    font-family: var(--d);
    font-size: 140px;
    font-weight: 700;
    color: rgba(192,57,43,0.07);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.nos-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--acero);
    color: var(--blanco);
    padding: 24px 28px;
    border-left: 4px solid var(--rojo-vivo);
}

.nos-img-badge strong {
    font-family: var(--d);
    font-size: 38px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.nos-img-badge span {
    font-family: var(--s);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--s);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rojo);
    margin-bottom: 20px;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--rojo);
    display: block;
}

.sec-h2 {
    font-family: var(--d);
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.5px;
    color: var(--acero);
    margin-bottom: 24px;
}

.sec-h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--rojo);
}

.divider {
    width: 48px;
    height: 3px;
    background: var(--rojo);
    margin-bottom: 28px;
}

.nos-txt p {
    font-size: 16px;
    color: var(--texto-sft);
    line-height: 1.9;
    margin-bottom: 18px;
    font-weight: 300;
}

.nos-list {
    list-style: none;
    margin-top: 28px;
}

.nos-list li {
    font-family: var(--b);
    font-size: 14px;
    font-weight: 400;
    color: var(--texto-sft);
    padding: 14px 0 14px 20px;
    position: relative;
    border-bottom: 1px solid var(--arena-osc);
}

.nos-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 2px;
    background: var(--rojo);
    transform: translateY(-50%);
}

.nos-list li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════
   PRODUCTOS
═══════════════════════════════════════ */

#productos {
    background: var(--acero);
    padding: 100px 80px;
}

.productos-header {
    max-width: 1200px;
    margin: 0 auto 64px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.productos-header .eyebrow { color: var(--rojo-vivo); }
.productos-header .eyebrow::before { background: var(--rojo-vivo); }
.productos-header .sec-h2 { color: var(--blanco); margin-bottom: 0; }
.productos-header .sec-h2 em { color: var(--rojo-vivo); }

.productos-header p {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    font-weight: 300;
    max-width: 280px;
    text-align: right;
    line-height: 1.8;
}

.productos-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3px;
}

.prod-card:nth-child(1) { grid-column: span 5; }
.prod-card:nth-child(2) { grid-column: span 4; }
.prod-card:nth-child(3) { grid-column: span 3; }
.prod-card:nth-child(4) { grid-column: span 6; }
.prod-card:nth-child(5) { grid-column: span 6; }

.prod-card {
    position: relative;
    overflow: hidden;
    background: var(--acero-med);
    cursor: pointer;
}

.prod-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    filter: grayscale(.4) contrast(1.1);
    transition: transform .6s var(--ease), filter .4s;
}

.prod-card:hover img {
    transform: scale(1.06);
    filter: grayscale(0) contrast(1.05);
}

.prod-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,25,35,0.92) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.prod-cat {
    font-family: var(--s);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rojo-vivo);
    margin-bottom: 6px;
}

.prod-name {
    font-family: var(--d);
    font-size: 22px;
    font-weight: 700;
    color: var(--blanco);
    line-height: 1.15;
    margin-bottom: 8px;
}

.prod-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    line-height: 1.6;
}

.prod-precio {
    display: inline-block;
    margin-top: 12px;
    background: var(--rojo);
    color: var(--blanco);
    font-family: var(--s);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
}

.prod-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--rojo-vivo);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.prod-card:hover::after { transform: scaleX(1); }

/* ═══════════════════════════════════════
   SERVICIOS
═══════════════════════════════════════ */

#servicios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
}

.serv-izq {
    background: var(--rojo);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

.serv-izq::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 320px;
    height: 320px;
    border: 60px solid rgba(184,169,106,0.12);
    border-radius: 50%;
    pointer-events: none;
}

.serv-izq .eyebrow { color: var(--rojo-vivo); }
.serv-izq .eyebrow::before { background: var(--rojo-vivo); }
.serv-izq .sec-h2 { color: var(--blanco); }
.serv-izq .sec-h2 em { color: var(--rojo-vivo); }
.serv-izq .divider { background: rgba(184,169,106,0.45); }

.serv-izq > p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    line-height: 1.9;
    max-width: 420px;
}

.serv-der {
    background: var(--arena);
    padding: 100px 80px;
}

.serv-list {
    list-style: none;
    margin-top: 8px;
}

.serv-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--arena-osc);
    font-family: var(--b);
    font-size: 15px;
    color: var(--texto-sft);
    transition: color .2s;
}

.serv-list li:hover { color: var(--rojo); }

.serv-list li::before {
    content: '';
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(192,57,43,0.08);
    border: 1px solid rgba(192,57,43,0.15);
}

.serv-list li::after {
    content: '→';
    margin-left: auto;
    color: var(--rojo);
    opacity: 0;
    font-size: 14px;
    transition: opacity .2s, transform .2s;
    transform: translateX(-8px);
}

.serv-list li:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.serv-list li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════
   CATÁLOGO / TABLA
═══════════════════════════════════════ */

#catalogo {
    padding: 100px 80px;
    background: var(--blanco);
}

.catalogo-inner {
    max-width: 1200px;
    margin: 0 auto;
}

#catalogo .sec-h2 { color: var(--acero); }
#catalogo .sec-h2 em { color: var(--rojo); }

.tabla-wrap {
    margin-top: 48px;
    border: 2px solid var(--arena-osc);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

thead { background: var(--acero); }

th {
    padding: 18px 24px;
    font-family: var(--s);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-align: left;
    white-space: nowrap;
}

td {
    padding: 18px 24px;
    font-family: var(--b);
    font-size: 14px;
    color: var(--texto-sft);
    border-bottom: 1px solid var(--arena-osc);
    text-align: left;
}

tbody tr { transition: background .2s; }
tbody tr:hover { background: var(--arena); }
tbody tr:last-child td { border-bottom: none; }

td:nth-child(3) {
    font-family: var(--d);
    font-size: 22px;
    font-weight: 700;
    color: var(--acero);
    letter-spacing: -.3px;
    white-space: nowrap;
}

.badge {
    display: inline-block;
    font-family: var(--s);
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 11px;
    white-space: nowrap;
}

.badge-ok {
    background: rgba(184,169,106,0.15);
    color: #8a7d3a;
}

.badge-ask {
    background: rgba(192,57,43,0.1);
    color: var(--rojo);
}

/* ═══════════════════════════════════════
   MULTIMEDIA
═══════════════════════════════════════ */

#multimedia {
    background: var(--acero);
    padding: 100px 80px;
    text-align: center;
}

.multi-inner {
    max-width: 900px;
    margin: 0 auto;
}

#multimedia .eyebrow { color: var(--rojo-vivo); justify-content: center; }
#multimedia .eyebrow::before { background: var(--rojo-vivo); }
#multimedia .sec-h2 { color: var(--blanco); }
#multimedia .sec-h2 em { color: var(--rojo-vivo); }

.video-frame {
    position: relative;
    display: inline-block;
    max-width: 100%;
    box-shadow:
        12px 12px 0 var(--rojo-vivo),
        24px 24px 0 rgba(184,169,106,0.2);
    margin-bottom: 24px;
}

.video-frame video {
    display: block;
    max-width: 100%;
    width: 700px;
    height: auto;
}

/* ═══════════════════════════════════════
   UBICACIÓN
═══════════════════════════════════════ */

#ubicacion {
    padding: 100px 80px;
    background: var(--arena);
}

.ubi-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

#ubicacion .sec-h2 { color: var(--acero); }
#ubicacion .sec-h2 em { color: var(--rojo); }

.ubi-dir-wrap {
    margin: 32px 0;
    padding: 28px;
    border-left: 4px solid var(--rojo);
    background: var(--blanco);
}

.ubi-ciudad {
    font-family: var(--d);
    font-size: 36px;
    font-weight: 700;
    color: var(--acero);
    line-height: 1;
    margin-bottom: 6px;
}

.ubi-ref {
    font-size: 14px;
    color: var(--texto-sft);
    font-weight: 300;
}

.btn-mapa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--acero);
    color: var(--blanco);
    font-family: var(--s);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 28px;
    text-decoration: none;
    border: 2px solid var(--acero);
    transition: all .2s;
}

.btn-mapa:hover {
    background: transparent;
    color: var(--acero);
}

.ubi-mapa {
    box-shadow:
        8px 8px 0 var(--rojo),
        18px 18px 0 var(--arena-med);
}

.ubi-mapa iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}

/* ═══════════════════════════════════════
   CONTACTO
═══════════════════════════════════════ */

#contacto {
    background: var(--acero);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contacto-izq {
    padding: 100px 80px;
    position: relative;
}

.contacto-izq .eyebrow { color: var(--rojo-vivo); }
.contacto-izq .eyebrow::before { background: var(--rojo-vivo); }
.contacto-izq .sec-h2 { color: var(--blanco); }
.contacto-izq .sec-h2 em { color: var(--rojo-vivo); }

.dato-list { margin-top: 36px; }

.dato {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dato:last-of-type { border-bottom: none; }

.dato-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--rojo-vivo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.dato-info strong {
    display: block;
    font-family: var(--s);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--rojo-vivo);
    margin-bottom: 4px;
    opacity: .8;
}

.dato-info a,
.dato-info span {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-weight: 300;
    transition: color .2s;
    word-break: break-all;
}

.dato-info a:hover { color: var(--blanco); }

.redes-h {
    font-family: var(--s);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin: 32px 0 16px;
}

.redes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.redes a {
    font-family: var(--s);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 18px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.4);
    transition: all .2s;
}

.redes a:hover {
    border-color: var(--rojo-vivo);
    color: var(--rojo-vivo);
}

.contacto-der {
    background: var(--arena);
    padding: 100px 80px;
}

.form-h {
    font-family: var(--d);
    font-size: 28px;
    font-weight: 700;
    color: var(--acero);
    margin-bottom: 32px;
}

.form-h em {
    font-style: italic;
    font-weight: 300;
    color: var(--rojo);
}

.form-grupo { margin-bottom: 20px; }

label {
    display: block;
    font-family: var(--s);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--rojo);
    margin-bottom: 8px;
}

input, select, textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--arena-osc);
    background: var(--blanco);
    color: var(--texto);
    font-family: var(--b);
    font-size: 14px;
    border-radius: 0;
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--rojo);
}

textarea {
    height: 120px;
    resize: vertical;
}

.form-fila {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

button {
    width: 100%;
    margin-top: 8px;
    background: var(--rojo);
    color: var(--blanco);
    font-family: var(--s);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 17px 36px;
    border: 2px solid var(--rojo);
    cursor: pointer;
    transition: all .2s;
}

button:hover {
    background: transparent;
    color: var(--rojo);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */

footer {
    background: #1a060a;
    border-top: 1px solid rgba(184,169,106,0.25);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 80px 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 64px;
    border-bottom: 1px solid rgba(184,169,106,0.08);
}

.footer-marca h3 {
    font-family: var(--d);
    font-size: 40px;
    font-weight: 700;
    color: var(--blanco);
    line-height: 1.05;
    margin-bottom: 12px;
}

.footer-marca h3 em {
    font-style: italic;
    font-weight: 300;
    color: var(--rojo-vivo);
}

.footer-marca p {
    font-size: 13px;
    color: rgba(255,255,255,0.25);
    font-weight: 300;
    line-height: 1.9;
    max-width: 240px;
}

.footer-col h4 {
    font-family: var(--s);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rojo-vivo);
    margin-bottom: 22px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    margin-bottom: 12px;
    font-weight: 300;
    transition: color .2s;
}

.footer-col a:hover { color: rgba(255,255,255,0.7); }

.footer-col p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
    line-height: 2.1;
    word-break: break-word;
}

.footer-base {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-family: var(--s);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.15);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-family: var(--s);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.15);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════
   ANIMACIONES
═══════════════════════════════════════ */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp .7s var(--ease) .15s both; }
.hero-h1      { animation: fadeUp .8s var(--ease) .3s  both; }
.hero-sub     { animation: fadeUp .8s var(--ease) .48s both; }
.hero-btns    { animation: fadeUp .8s var(--ease) .64s both; }
.hero-stats   { animation: fadeUp .6s var(--ease) .8s  both; }
.hero-dato    { animation: fadeUp .7s var(--ease) .5s  both; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
═══════════════════════════════════════ */

@media (max-width: 1024px) {

    .topbar {
        padding: 0 32px;
    }

    /* Nav oculto — drawer lateral */
    .topbar-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 80vw);
        z-index: 160;

        flex-direction: column;
        background: var(--acero);
        border-left: 1px solid rgba(184,169,106,0.25);
        padding: 100px 0 40px;
        gap: 0;

        transform: translateX(100%);
        transition: transform .35s var(--ease);
        overflow-y: auto;
    }

    .topbar-nav.nav-open {
        transform: translateX(0);
    }

    .topbar-nav a {
        height: auto;
        padding: 18px 40px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        border-left: 3px solid transparent;
        font-size: 10px;
        letter-spacing: 3px;
        justify-content: flex-start;
    }

    .topbar-nav a:hover {
        border-bottom-color: rgba(255,255,255,0.06);
        border-left-color: var(--rojo-vivo);
        background: rgba(255,255,255,0.03);
    }

    .hamburger {
        display: flex;
    }

    .nav-overlay {
        display: block;
    }

    /* Hero */
    #hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-izq {
        padding: 80px 40px 60px;
        order: 1;
    }

    .hero-der {
        order: 2;
        min-height: 320px;
    }

    .hero-der::before {
        background:
            linear-gradient(to bottom, var(--acero) 0%, transparent 30%),
            linear-gradient(to top, var(--acero) 0%, transparent 40%);
    }

    .hero-dato {
        bottom: 24px;
        right: 24px;
        padding: 16px 20px;
    }

    .hero-dato strong { font-size: 40px; }

    .hero-stats {
        position: static;
        order: 3;
        border-top: 1px solid rgba(184,169,106,0.2);
    }

    /* Nosotros */
    #nosotros {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 80px 40px;
    }

    .nos-img-wrap img { aspect-ratio: 4/3; }
    .nos-img-num { font-size: 100px; }
    .nos-img-badge { bottom: -16px; right: -16px; }

    /* Productos */
    #productos { padding: 80px 40px; }

    .productos-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .productos-header p { text-align: left; max-width: 100%; }

    .productos-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .prod-card:nth-child(1),
    .prod-card:nth-child(2),
    .prod-card:nth-child(3),
    .prod-card:nth-child(4),
    .prod-card:nth-child(5) {
        grid-column: span 1;
    }

    .prod-card:nth-child(5) { grid-column: span 2; }

    /* Servicios */
    #servicios {
        grid-template-columns: 1fr;
    }

    .serv-izq,
    .serv-der {
        padding: 80px 40px;
    }

    /* Catálogo */
    #catalogo { padding: 80px 40px; }

    /* Multimedia */
    #multimedia { padding: 80px 40px; }

    /* Ubicación */
    #ubicacion {
        padding: 80px 40px;
    }

    .ubi-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ubi-mapa { box-shadow: 6px 6px 0 var(--rojo), 12px 12px 0 var(--arena-med); }

    /* Contacto */
    #contacto {
        grid-template-columns: 1fr;
    }

    .contacto-izq,
    .contacto-der {
        padding: 80px 40px;
    }

    /* Footer */
    .footer-inner {
        padding: 64px 40px 48px;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-marca {
        grid-column: span 2;
    }

    .footer-base {
        padding: 20px 40px;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 640px)
═══════════════════════════════════════ */

@media (max-width: 640px) {

    .topbar {
        padding: 0 20px;
        height: 60px;
    }

    .topbar-logo-txt { font-size: 15px; }
    .topbar-logo img { height: 36px; width: 36px; }

    .topbar-cta {
        display: none; /* Se oculta en móvil; se accede desde menú */
    }

    /* Hero */
    #hero { padding-top: 60px; }

    .hero-izq {
        padding: 60px 24px 48px;
    }

    .hero-h1 {
        font-size: clamp(44px, 12vw, 64px);
        letter-spacing: -.5px;
    }

    .hero-sub { font-size: 15px; }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-hero-p {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }

    .hero-der { min-height: 260px; }

    .hero-dato {
        bottom: 16px;
        right: 16px;
        padding: 12px 16px;
    }

    .hero-dato strong { font-size: 32px; }

    .hero-stats { flex-wrap: wrap; }

    .hero-stat {
        flex: 1 0 33.33%;
        padding: 16px 16px;
        min-width: 0;
    }

    .hero-stat strong { font-size: 22px; }

    /* Nosotros */
    #nosotros {
        padding: 60px 24px;
        gap: 48px;
    }

    .nos-img-num { font-size: 80px; top: -16px; left: -12px; }
    .nos-img-badge { bottom: -12px; right: -8px; padding: 16px 18px; }
    .nos-img-badge strong { font-size: 28px; }

    /* Productos */
    #productos { padding: 60px 24px; }

    .productos-grid {
        grid-template-columns: 1fr;
    }

    .prod-card:nth-child(1),
    .prod-card:nth-child(2),
    .prod-card:nth-child(3),
    .prod-card:nth-child(4),
    .prod-card:nth-child(5) {
        grid-column: span 1;
    }

    /* Servicios */
    .serv-izq,
    .serv-der {
        padding: 60px 24px;
    }

    /* Catálogo — tabla responsiva tipo card */
    #catalogo { padding: 60px 24px; }

    .tabla-wrap {
        border: none;
        overflow: visible;
    }

    table { min-width: unset; }

    thead { display: none; }

    tbody tr {
        display: block;
        background: var(--blanco);
        border: 2px solid var(--arena-osc);
        margin-bottom: 16px;
        padding: 16px;
    }

    tbody tr:last-child { margin-bottom: 0; }

    td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--arena-osc);
        padding: 10px 0;
        font-size: 13px;
        gap: 12px;
    }

    td:last-child { border-bottom: none; }

    td::before {
        content: attr(data-label);
        font-family: var(--s);
        font-size: 7.5px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--rojo);
        flex-shrink: 0;
        min-width: 90px;
    }

    td:nth-child(3) {
        font-size: 18px;
    }

    /* Multimedia */
    #multimedia { padding: 60px 24px; }

    .video-frame {
        box-shadow: 8px 8px 0 var(--rojo-vivo);
        margin-bottom: 12px;
    }

    /* Ubicación */
    #ubicacion { padding: 60px 24px; }

    .ubi-ciudad { font-size: 28px; }
    .ubi-mapa iframe { height: 280px; }

    /* Contacto */
    .contacto-izq,
    .contacto-der {
        padding: 60px 24px;
    }

    .form-fila {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-inner {
        padding: 48px 24px 32px;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-marca { grid-column: auto; }
    .footer-marca h3 { font-size: 30px; }

    .footer-base {
        padding: 16px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-links { gap: 16px; flex-wrap: wrap; }
}
