* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

body {

    background: #050505;

    color: white;

    font-family: 'Montserrat', sans-serif;

    overflow-x: hidden;

}


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



/* ===================================== */
/* HEADER */
/* ===================================== */
.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    box-sizing: border-box;

    display: grid;

    grid-template-columns:
        160px 1fr 220px;

    align-items: center;

    padding: 14px 45px 14px 30px;

    background: #000;

    z-index: 1000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

}





.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 140px;
    object-fit: contain;
}

.menu {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 35px;

}

.menu a {

    color: white;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: 0.3s;

}


.menu a:hover {
    color: #888;
}

.hamburguesa {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}


.buscador input:focus {

    border: 1px solid #c40000;

}

.buscador input::placeholder {

    color: #777;

}




.buscador input {

    width: 120px;

    background: #111;

    border: 1px solid #222;

    color: white;

    padding: 8px 14px;

    border-radius: 50px;

    outline: none;

    font-size: 12px;

}

.header-right {

    display: flex;

    align-items: center;

    gap: 15px;

}

.carrito-icono {

    background: #111;

    color: white;

    text-decoration: none;

    padding: 8px 12px;

    border-radius: 50px;

    display: flex;

    align-items: center;

    gap: 6px;

    white-space: nowrap;

}


.carrito-icono:hover {

    background: #c40000;

}


/* ===================================== */
/* HERO */
/* ===================================== */

.hero {

    width: 100%;

    margin: 0;

    padding: 0;

}

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

/* ===================================== */
/* BOTONES */
/* ===================================== */

.btn-producto,
.boton-comprar {

    background: #b30000;

    color: white;

    padding: 12px 25px;

    text-decoration: none;

    font-weight: bold;

    border: none;

    border-radius: 5px;

    cursor: pointer;

    transition: 0.3s;

}

.btn-producto:hover,
.boton-comprar:hover {

    background: #800000;

}

.btn-hero {

    position: relative;

    z-index: 2;

    background: #c40000;

    color: white;

    padding: 18px 42px;

    text-decoration: none;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    border: none;

    border-radius: 6px;

    transition: 0.3s ease;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(255, 0, 0, 0.25);

}

.btn-hero:hover {

    background: #ff0000;

    transform: translateY(-3px);

    box-shadow:
        0 12px 35px rgba(255, 0, 0, 0.4);

}

/* ===================================== */
/* CARRUSEL */
/* ===================================== */

.carousel {

    position: relative;

    width: 100vw;

    margin: 0;

    padding: 0;

    overflow: hidden;

}

.slide {

    display: none;

    min-height: 70vh;

    background-color: #111;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    position: relative;

    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    text-align: left;

    padding: 0 7%;

    color: white;

}



.indicadores {

    position: absolute;

    bottom: 40px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 12px;

    z-index: 20;

}

.dot {

    width: 14px;

    height: 14px;

    border: 2px solid white;

    background: transparent;

    transition: 0.3s ease;

    cursor: pointer;

}

.dot.active {

    background: #c40000;

    border-color: #c40000;

}

/* OVERLAY OSCURO */

.slide::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 15%,
            rgba(0, 0, 0, 0.35) 55%,
            rgba(0, 0, 0, 0.55) 100%);

}

/* TEXTO SOBRE EL OVERLAY */

.slide h1,
.slide p,
.slide a {

    position: relative;

    z-index: 2;

}

.slide h1 {

    font-size: 72px;

    max-width: 700px;

    line-height: 0.95;

    font-weight: 900;

    text-transform: uppercase;

    margin-bottom: 25px;

}

.slide p {

    font-size: 22px;

    max-width: 600px;

    line-height: 1.6;

    color: #ddd;

    margin-bottom: 35px;

}

.slide.active {

    display: flex;

    animation: fadeSlide 1.2s ease;

}

@keyframes smoothFade {

    from {

        opacity: 0.4;

    }

    to {

        opacity: 1;

    }

}


.slide.active {

    display: flex;

    animation:
        smoothFade 1.5s ease,
        zoomHero 10s ease forwards;

}


.slide.active {

    animation:
        fadeSlide 1.2s ease,
        zoomHero 8s ease forwards;

}

.slide h1 {

    animation: slideText 1s ease;

}

@keyframes slideText {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 35px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev:hover,
.next:hover {
    background: #b30000;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* ===================================== */
/* PRODUCTOS HOME PREMIUM */
/* ===================================== */

.productos {

    background: #0b0b0b;

    color: white;

    padding: 90px 40px;

    text-align: center;

}

.grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 35px;

    margin-top: 50px;

}

.producto {

    position: relative;

    background:
        linear-gradient(180deg,
            #111 0%,
            #090909 100%);

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 20px;

    overflow: hidden;

    transition: 0.45s ease;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-height: 350px;

}

.producto:hover {

    transform:
        translateY(-12px);

    border-color:
        rgba(255, 0, 0, 0.3);

    box-shadow:

        0 0 30px rgba(255, 0, 0, 0.08),

        0 20px 50px rgba(0, 0, 0, 0.65);

}

.producto,
.producto:visited,

.card-catalogo,
.card-catalogo:visited {

    text-decoration: none;

    color: white;

}

.producto img {

    width: 100%;

    height: 280px;

    object-fit: contain;

    transition: 0.5s ease;

    filter:
        drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));

}

.producto:hover img {

    transform:
        scale(1.07);


}


.producto h3 {

    color: white;

    font-size: 25px;

    margin-top: 20px;

    margin-bottom: 12px;

    font-weight: 700;

    line-height: 1.3;

}

.producto p {

    color: #ff1e1e;

    font-size: 20px;

    font-weight: 800;

    margin: 0;

    text-align: left;

}

.producto-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    margin-top: auto;

}

.producto .btn-producto {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 60px;

    height: 60px;

    margin-top: auto;

    margin-left: auto;

    background: #121212;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    transition: 0.3s ease;

}

.producto .btn-producto:hover {

    background: #c40000;

    border-color: #c40000;

    transform: scale(1.08);

}

.ver-todos {

    margin-top: 50px;

}

.btn-ver-todos {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: white;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    padding: 16px 28px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    background: #111;

    transition: 0.3s ease;

}

.btn-ver-todos:hover {

    background: #c40000;

    border-color: #c40000;

    transform: translateY(-3px);

}




/* ===================================== */
/* BENEFICIOS PREMIUM */
/* ===================================== */

.beneficios {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(240px, 1fr));

    gap: 60px;

    padding: 70px 60px;

    background: #070707;

}

.beneficio {

    display: flex;

    align-items: flex-start;

    gap: 18px;

}

.beneficio img {

    width: 75px;

    height: 75px;

    object-fit: contain;

    margin-top: 2px;

    flex-shrink: 0;

}

.beneficio h3 {

    color: white;

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 8px;

    letter-spacing: 1px;

}

.beneficio p {

    color: #8d8d8d;

    font-size: 14px;

    line-height: 1.7;

    max-width: 240px;

}

/* ===================================== */
/* PRODUCTO DETALLE */
/* ===================================== */

.producto-detalle {

    width: 100%;

    background: #050505;

    padding: 120px 80px 80px;

}

.contenedor-producto {

    display: grid;

    grid-template-columns:
        minmax(700px, 1fr) 500px;

    gap: 60px;

    align-items: start;

    max-width: 1600px;

    margin: auto;

}

.precio {

    color: #ff1e1e;

    font-size: 42px;

    font-weight: 900;

    margin: 25px 0;

}

.galeria {

    display: grid;

    grid-template-columns:
        120px 1fr;

    gap: 40px;

    align-items: start;
    width: 100%;

}

.zoom-container {

    background: #0a0a0a;

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 28px;

    height: 720px;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    padding: 40px;

    cursor: zoom-in;

}

.img-principal {

    max-width: 100%;

    max-height: 650px;

    object-fit: contain;

    transition: transform 0.4s ease;

}

.miniaturas {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.miniaturas img {

    width: 90px;

    height: 90px;

    object-fit: contain;

    background: #111;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 16px;

    padding: 10px;

    cursor: pointer;

    transition: 0.3s ease;

}

.miniaturas img:hover {

    border-color: #c40000;

    transform: translateY(-3px);

}

.miniaturas img:hover {
    transform: scale(1.08);
}

.info-producto {

    padding-top: 40px;

}

.titulo-producto {

    font-size: 58px;

    line-height: 1;

    margin-bottom: 20px;

    text-transform: uppercase;

    font-weight: 900;

}

.descripcion {
    line-height: 1.6;
    margin-bottom: 20px;
}

.lista-caracteristicas {
    margin-left: 20px;
    margin-bottom: 30px;
}




/* ===================================== */
/* ACCIONES PRODUCTO */
/* ===================================== */

.acciones-producto {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 40px;

}

.cantidad-selector {

    display: flex;

    align-items: center;

    background: #0f0f0f;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    overflow: hidden;

}

.cantidad-selector button {

    width: 55px;

    height: 55px;

    background: none;

    border: none;

    color: white;

    font-size: 24px;

    cursor: pointer;

    transition: 0.3s ease;

}

.cantidad-selector button:hover {

    background: #181818;

    color: #ff1e1e;

}

.cantidad-selector span {

    width: 55px;

    text-align: center;

    font-size: 18px;

    font-weight: 700;

}

.boton-comprar {

    height: 55px;

    padding: 0 40px;

    background: #c40000;

    color: white;

    border: none;

    border-radius: 14px;

    font-size: 16px;

    font-weight: 800;

    cursor: pointer;

    transition: 0.3s ease;

}

.boton-comprar:hover {

    background: #ff1e1e;

    transform: translateY(-2px);

}

/* ===================================== */
/* BENEFICIOS PRODUCTO */
/* ===================================== */

.beneficios-producto {

    display: flex;

    gap: 40px;

    margin-top: 35px;

    flex-wrap: wrap;

}

.beneficios-producto div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #9a9a9a;

    font-size: 15px;

}

.beneficios-producto img {

    width: 26px;

    height: 26px;

    object-fit: contain;

}

.beneficios-producto span {

    max-width: 120px;

    line-height: 1.4;

}

/* ===================================== */
/* RELACIONADOS PREMIUM */
/* ===================================== */

.relacionados {

    padding: 100px 80px;

    background: #070707;

}

.relacionados h2 {

    font-size: 42px;

    text-align: center;

    margin-bottom: 60px;

    text-transform: uppercase;

    font-weight: 900;

}

.grid-relacionados {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 35px;

}

.producto-card {

    background:
        linear-gradient(180deg,
            #111 0%,
            #090909 100%);

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 24px;

    padding: 30px;

    transition: 0.4s ease;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-height: 420px;

}

.producto-card:hover {

    transform: translateY(-10px);

    border-color:
        rgba(255, 0, 0, 0.3);

    box-shadow:

        0 0 30px rgba(255, 0, 0, 0.08),

        0 20px 50px rgba(0, 0, 0, 0.65);

}

.producto-card img {

    width: 100%;

    height: 240px;

    object-fit: contain;

    transition: 0.5s ease;

    filter:
        drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));

}

.producto-card:hover img {

    transform: scale(1.05);

}

.producto-card h3 {

    color: white;

    font-size: 26px;

    margin: 20px 0;

    line-height: 1.3;

}

.producto-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 25px;

}

.producto-footer p {

    color: #ff1e1e;

    font-size: 24px;

    font-weight: 800;

}

.producto-card .btn-producto {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 55px;

    height: 55px;

    background: #121212;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    transition: 0.3s ease;

}

.producto-card .btn-producto:hover {

    background: #c40000;

    border-color: #c40000;

}

/* ===================================== */
/* HERO CONTACTO */
/* ===================================== */

.hero-contacto {

    position: relative;

    width: 100%;

    min-height: 70vh;

    background:

        linear-gradient(rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.88)),

        url("../img/equipo.png");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    padding: 120px 8%;

    overflow: hidden;

}

.overlay-contacto {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.8));

}

.contenido-contacto {

    position: relative;

    z-index: 2;

    max-width: 800px;

}

.mini-contacto {

    color: #c40000;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 25px;

    text-transform: uppercase;

}

.hero-contacto h1 {

    font-size: 95px;

    line-height: 0.9;

    text-transform: uppercase;

    margin-bottom: 30px;

    font-weight: 900;

}

.hero-contacto p {

    color: #d0d0d0;

    font-size: 21px;

    line-height: 1.7;

    max-width: 650px;

}

/* ===================================== */
/* CONTACTO GRID */
/* ===================================== */

.contacto-zabas {

    padding: 100px 8%;

    background: #050505;

}

.contacto-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: start;

}

/* ===================================== */
/* INFO */
/* ===================================== */

.info-contacto {

    background: #0c0c0c;

    border-radius: 28px;

    padding: 55px;

    border: 1px solid rgba(255, 255, 255, 0.05);

}

.info-contacto h2 {

    font-size: 68px;

    line-height: 1;

    margin-bottom: 30px;

}

.texto-info {

    color: #bdbdbd;

    line-height: 1.8;

    margin-bottom: 45px;

    font-size: 18px;

}

.item-contacto {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 25px;

    color: #d0d0d0;

    font-size: 18px;

}

.item-contacto span {

    width: 55px;

    height: 55px;

    background: #111;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    border: 1px solid rgba(255, 255, 255, 0.05);

}

.redes-contacto {

    display: flex;

    gap: 20px;

    margin-top: 40px;

}

.redes-contacto a {

    text-decoration: none;

    color: white;

    border: 1px solid rgba(255, 255, 255, 0.08);

    padding: 14px 24px;

    border-radius: 14px;

    transition: 0.3s ease;

}

.redes-contacto a:hover {

    background: #c40000;

    border-color: #c40000;

}

/* ===================================== */
/* FORMULARIO */
/* ===================================== */

.formulario-contacto {

    background: #0c0c0c;

    border-radius: 28px;

    padding: 55px;

    border: 1px solid rgba(255, 255, 255, 0.05);

}

.formulario-contacto h3 {

    font-size: 42px;

    margin-bottom: 35px;

}

.formulario-contacto form {

    display: flex;

    flex-direction: column;

    gap: 22px;

}

.formulario-contacto input {

    width: 100%;

    height: 65px;

    background: #111;

    border: none;

    border-radius: 16px;

    padding: 0 22px;

    color: white;

    font-size: 16px;

    outline: none;

}

.formulario-contacto textarea {

    width: 100%;

    height: 220px;

    background: #111;

    border: none;

    border-radius: 16px;

    padding: 22px;

    color: white;

    font-size: 16px;

    resize: none;

    outline: none;

}

.formulario-contacto input:focus,
.formulario-contacto textarea:focus {

    border: 1px solid #c40000;

}

.formulario-contacto button {

    width: 100%;

    height: 65px;

    border: none;

    border-radius: 16px;

    background: #c40000;

    color: white;

    font-weight: 700;

    font-size: 16px;

    cursor: pointer;

    transition: 0.3s ease;

}

.formulario-contacto button:hover {

    background: #ff0000;

    transform: translateY(-4px);

}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:1100px) {

    .contacto-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width:768px) {

    .hero-contacto {

        min-height: 60vh;

        padding: 120px 6%;

    }

    .hero-contacto h1 {

        font-size: 58px;

    }

    .hero-contacto p {

        font-size: 18px;

    }

    .info-contacto h2 {

        font-size: 48px;

    }

    .formulario-contacto h3 {

        font-size: 32px;

    }

    .info-contacto,
    .formulario-contacto {

        padding: 35px;

    }

    .redes-contacto {

        flex-wrap: wrap;

    }

    .header-right {

        display: flex;

        align-items: center;

        gap: 15px;

    }

}

/* ===================================== */
/* FOOTER PREMIUM */
/* ===================================== */

.footer {

    background: #050505;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);

    color: white;

}

.footer-top {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 60px;

    padding: 80px 60px;

}

.footer-brand img {

    width: 400px;

    margin-bottom: 20px;

}

.footer-brand p {

    color: #8d8d8d;

    line-height: 1.8;

    max-width: 320px;

}

.footer-links,
.footer-contacto {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.footer h4 {

    color: white;

    margin-bottom: 18px;

    font-size: 15px;

    letter-spacing: 1px;

}

.footer a {

    color: #8d8d8d;

    text-decoration: none;

    transition: 0.3s ease;

}

.footer a:hover {

    color: #c40000;

}

.footer-contacto p {

    color: #8d8d8d;

    line-height: 1.7;

}

.footer-bottom {

    border-top:
        1px solid rgba(255, 255, 255, 0.05);

    text-align: center;

    padding: 25px;

}

.footer-bottom p {

    color: #666;

    font-size: 14px;

}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media (max-width:768px) {


    /* ===================================== */
    /* HEADER MOBILE FIX */
    /* ===================================== */

    /* ===================================== */
    /* HEADER MOBILE FIX */
    /* ===================================== */

    .header {

        display: flex;

        justify-content: space-between;

        align-items: center;

        width: 100%;

        padding: 15px 20px;

    }

    .logo-area {

        min-width: auto;

    }


    /* OCULTAR BUSCADOR */

    .buscador {

        display: none;

    }

    /* MENU MOBILE */

    .menu {

        position: fixed;

        top: 0;

        right: -100%;

        width: 260px;

        height: 100vh;

        background: #050505;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        padding: 120px 35px;

        gap: 30px;

        transition: 0.4s ease;

        z-index: 999;

    }

    .menu.active {

        right: 0;

    }

    /* HAMBURGUESA */



    /* ===================================== */
    /* FOOTER MOBILE FIX */
    /* ===================================== */

    .footer-top {

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 60px 25px;

    }

    .footer-brand img {

        width: 220px;

    }

    /* EVITAR SCROLL HORIZONTAL */

    body {

        overflow-x: hidden;

    }

    .logo-area {

        min-width: auto;

    }


    /* OCULTAR BUSCADOR */

    .buscador {

        display: none;

    }

    /* MENU MOBILE */

    .menu {

        position: fixed;

        top: 0;

        right: -100%;

        width: 260px;

        height: 100vh;

        background: #050505;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        padding: 120px 35px;

        gap: 30px;

        transition: 0.4s ease;

        z-index: 999;

    }

    .menu.active {

        right: 0;

    }



    /* ===================================== */
    /* FOOTER MOBILE FIX */
    /* ===================================== */

    .footer-top {

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 60px 25px;

    }

    .footer-brand img {

        width: 220px;

    }

    /* EVITAR SCROLL HORIZONTAL */

    body {

        overflow-x: hidden;

    }

    .header {

        align-items: center;
        gap: 15px;
    }





    .menu a {
        padding: 10px 0;
        border-bottom: 1px solid #333;
        text-align: center;
        width: 100%;
        margin-left: 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .productos {
        padding: 40px 15px;
    }

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

    .producto img {
        width: 100%;
    }

    .contenedor-contacto {
        grid-template-columns: 1fr;
    }

    .contenedor-producto {
        flex-direction: column;
        padding: 20px;
        gap: 30px;
    }

    .producto-detalle {
        padding: 20px;
    }

    .galeria {
        flex-direction: column;
        width: 100%;
    }

    .imagen-principal {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .miniaturas {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .miniaturas img {
        width: 80px;
    }

    .info-producto {
        max-width: 100%;
        width: 100%;
    }

    .titulo-producto {
        font-size: 30px;
    }

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

    footer {
        font-size: 14px;
    }



}


/* ===================================== */
/* CATÁLOGO */
/* ===================================== */

.catalogo {

    padding: 140px 60px 100px;

    background: #050505;

    min-height: 100vh;

}

.catalogo h1 {

    color: white;

    font-size: 52px;

    margin-bottom: 60px;

    text-align: center;

    font-weight: 900;

}

.grid-productos {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 35px;

}

/* ===================================== */
/* HERO CATÁLOGO */
/* ===================================== */

.hero-catalogo {

    position: relative;

    height: 340px;

    background:
        url('../img/equipo.png') center/cover;

    display: flex;

    align-items: center;

    padding: 0 80px;

}

.overlay-catalogo {

    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.7);

}

.contenido-catalogo {

    position: relative;

    z-index: 2;

}

.breadcrumb {

    color: #8a8a8a;

    margin-bottom: 20px;

}

.hero-catalogo h1 {

    font-size: 78px;

    font-weight: 900;

    color: white;

    margin-bottom: 20px;

}

.texto-catalogo {

    color: #b3b3b3;

    font-size: 18px;

    max-width: 600px;

    line-height: 1.7;

}

/* ===================================== */
/* CATÁLOGO PREMIUM */
/* ===================================== */

.catalogo-premium {

    display: grid;

    grid-template-columns:
        300px 1fr;

    gap: 40px;

    padding: 60px;

    background: #050505;

}

.sidebar-catalogo {

    background: #0c0c0c;

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 24px;

    padding: 30px;

    height: max-content;

}

.sidebar-catalogo h3 {

    color: white;

    margin-bottom: 25px;

    font-size: 20px;

}

.sidebar-catalogo ul {

    list-style: none;

}

.sidebar-catalogo li {

    color: #a1a1a1;

    margin-bottom: 18px;

    cursor: pointer;

    transition: 0.3s;

}

.sidebar-catalogo li:hover {

    color: #ff2a2a;

}

.btn-filtro {

    width: 100%;

    margin-top: 30px;

    height: 55px;

    border: none;

    border-radius: 14px;

    background: #121212;

    color: white;

    cursor: pointer;

}

/* TOP */

.top-catalogo {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 35px;

}

.top-catalogo p {

    color: #8a8a8a;

}

.top-catalogo select {

    background: #111;

    border: none;

    color: white;

    padding: 12px 18px;

    border-radius: 12px;

}

/* GRID */

.grid-productos {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;

}

/* ===================================== */
/* CARDS CATÁLOGO */
/* ===================================== */

.card-catalogo {

    position: relative;

    background:
        linear-gradient(180deg,
            #111 0%,
            #090909 100%);

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 24px;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        filter 0.4s ease;

    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-height: 420px;

}

.producto:hover,
.card-catalogo:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35);

    filter:
        brightness(1.05);

}



.card-catalogo img {

    width: 100%;

    height: 260px;

    transition:
        transform 0.5s ease;

    object-fit: contain;

    transition: 0.5s ease;

    filter:
        drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));

}

.producto:hover img,
.card-catalogo:hover img {

    transform: scale(1.05);

}

.card-catalogo h3 {

    color: white;

    font-size: 24px;

    margin-top: 22px;

    margin-bottom: 18px;

    font-weight: 700;

    line-height: 1.2;

}

/* ===================================== */
/* BUSCADOR CATÁLOGO */
/* ===================================== */

.input-buscador {

    width: 100%;

    height: 58px;

    background: #111;

    border: none;

    border-radius: 16px;

    padding: 0 20px;

    color: white;

    margin-bottom: 30px;

    font-size: 15px;

    outline: none;

}

.input-buscador::placeholder {

    color: #666;


}


/* ===================================== */
/* HERO NOSOTROS */
/* ===================================== */

.hero-nosotros {

    position: relative;

    width: 100%;

    min-height: 85vh;

    background:

        linear-gradient(rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.85)),

        url("../img/nevado.png");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    padding: 80px 8%;

    overflow: hidden;

}

.overlay-nosotros {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.7));

}

.bandera-linea {

    position: absolute;

    left: 0;

    top: 0;

    width: 6px;

    height: 100%;

    background: #c40000;

    box-shadow:
        0 0 25px rgba(196, 0, 0, 0.7);

}

.contenido-nosotros {

    position: relative;

    z-index: 2;

    max-width: 850px;

}

.mini-texto {

    color: #c40000;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 25px;

    text-transform: uppercase;

}

.hero-nosotros h1 {

    font-size: 92px;

    line-height: 0.9;

    font-weight: 900;

    text-transform: uppercase;

    margin-bottom: 35px;

    color: white;

}

.texto-nosotros {

    max-width: 700px;

    font-size: 22px;

    line-height: 1.7;

    color: #d0d0d0;

    margin-bottom: 40px;

}

.btn-nosotros {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 260px;

    height: 65px;

    background: #c40000;

    color: white;

    text-decoration: none;

    border-radius: 16px;

    font-weight: 700;

    transition: 0.3s ease;

}

.btn-nosotros:hover {

    background: #ff0000;

    transform: translateY(-5px);

}

/* ===================================== */
/* HISTORIA */
/* ===================================== */

.historia-zabas {

    padding: 90px 8%;

    background: #050505;

}

.historia-grid {

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 60px;

    align-items: start;

}

.subtitulo-seccion {

    color: #c40000;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 25px;

}

.historia-texto h2 {

    font-size: 72px;

    line-height: 1;

    text-transform: uppercase;

    margin-bottom: 40px;

}

.historia-texto p {

    color: #bdbdbd;

    line-height: 1.8;

    font-size: 18px;

    margin-bottom: 25px;

}

.historia-card {

    background: #0d0d0d;

    border-radius: 28px;

    padding: 50px;

    border: 1px solid rgba(255, 255, 255, 0.05);

}

.historia-card h3 {

    color: #c40000;

    font-size: 32px;

    margin-bottom: 20px;

}

.historia-card p {

    color: #bcbcbc;

    line-height: 1.7;

    margin-bottom: 35px;

}

/* ===================================== */
/* VALORES */
/* ===================================== */

.valores-zabas {

    padding: 90px 8%;

    background: #080808;

    text-align: center;

}

.valores-zabas h2 {

    font-size: 72px;

    margin-bottom: 70px;

    text-transform: uppercase;

}

.grid-valores {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;

}

.valor-box {

    background: #101010;

    border-radius: 24px;

    padding: 50px 35px;

    border: 1px solid rgba(255, 255, 255, 0.05);

    transition: 0.4s ease;

}

.valor-box:hover {

    transform: translateY(-10px);

    border-color: #c40000;

}

.valor-box h3 {

    color: #c40000;

    font-size: 28px;

    margin-bottom: 20px;

}

.valor-box p {

    color: #bdbdbd;

    line-height: 1.7;

}

/* ===================================== */
/* CTA */
/* ===================================== */

.cta-nosotros {

    padding: 100px 8%;

    text-align: center;

    background:

        linear-gradient(rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.9)),

        url("../img/equipo.png");

    background-size: cover;

    background-position: center;

}

.cta-nosotros h2 {

    font-size: 90px;

    line-height: 1;

    text-transform: uppercase;

    margin-bottom: 45px;

}

.btn-cta-nosotros {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 280px;

    height: 65px;

    background: #c40000;

    color: white;

    text-decoration: none;

    border-radius: 16px;

    font-weight: 700;

    transition: 0.3s ease;

}

.btn-cta-nosotros:hover {

    background: #ff0000;

    transform: translateY(-5px);

}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:1100px) {

    .hero-nosotros h1 {

        font-size: 80px;

    }

    .historia-grid {

        grid-template-columns: 1fr;

    }

    .grid-valores {

        grid-template-columns:
            repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .hero-nosotros {

        padding: 120px 6%;

    }

    .hero-nosotros h1 {

        font-size: 56px;

    }

    .texto-nosotros {

        font-size: 18px;

    }

    .historia-texto h2 {

        font-size: 48px;

    }

    .valores-zabas h2 {

        font-size: 50px;

    }

    .grid-valores {

        grid-template-columns: 1fr;

    }

    .cta-nosotros h2 {

        font-size: 55px;

    }


}

/* ===================================== */
/* EXPERIENCIA */
/* ===================================== */

.experiencia-zabas {

    padding: 90px 8%;

    background: #050505;

}

.experiencia-grid {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 30px;

    align-items: stretch;

}

.exp-card {

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    min-height: 450px;

    background: #111;

}

.exp-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.5s ease;

}

.exp-card:hover img {

    transform: scale(1.05);

}

.exp-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 40px;

    background:

        linear-gradient(transparent,
            rgba(0, 0, 0, 0.92));

}

.exp-overlay h3 {

    font-size: 42px;

    text-transform: uppercase;

    margin-bottom: 15px;

}

.exp-overlay p {

    color: #d0d0d0;

    line-height: 1.7;

    max-width: 500px;

}

/* ===================================== */
/* MAPA */
/* ===================================== */

.mapa-zabas {

    padding: 0 8% 100px;

    background: #050505;

}

.mapa-contenedor {

    width: 100%;

    height: 500px;

    border-radius: 28px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.05);

    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.4);

}

.mapa-contenedor iframe {

    width: 100%;

    height: 100%;

    border: none;

    filter:
        grayscale(1) invert(0.92) contrast(1.2);

}

/* ===================================== */
/* RESPONSIVE GLOBAL */
/* ===================================== */

@media(max-width:992px) {

    /* HERO */

    .hero {

        padding: 140px 6% 80px;

        min-height: auto;

        text-align: center;

    }

    .hero h1 {

        font-size: 68px;

        line-height: 0.95;

    }

    .hero p {

        font-size: 18px;

        max-width: 100%;

    }

    .hero-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }

    /* GRID PRODUCTOS */

    .grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    /* BENEFICIOS */

    .beneficios-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media(max-width:768px) {

    /* NAVBAR */

    /* HEADER MOBILE */

    .header {

        padding: 18px 5%;

        justify-content: space-between;

    }

    .menu {

        position: fixed;

        top: 0;

        right: -100%;

        width: 280px;

        height: 100vh;

        background: #050505;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        padding: 120px 40px;

        gap: 30px;

        transition: 0.4s ease;

        z-index: 999;

    }

    .hamburguesa {

        width: 45px;

        height: 45px;

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 6px;

        cursor: pointer;

        z-index: 2000;

    }


    /* BUSCADOR */

    .buscador {

        display: none;

    }

    /* CARRITO */

    .carrito-icono {

        margin-right: 15px;

    }



    /* HERO */

    .hero {

        min-height: 70vh;

        padding: 120px 5% 60px;

    }

    .hero-slide {

        min-height: 70vh;

        border-radius: 24px;

        padding: 40px 25px;

    }

    .hero-slide h1 {

        font-size: 52px;

        line-height: 0.95;

    }

    .hero-slide p {

        font-size: 16px;

        max-width: 100%;

    }

    /* HEADER MOBILE */

    .header {

        padding: 18px 5%;

        justify-content: space-between;

    }



    /* BUSCADOR */

    .buscador {

        display: none;

    }

    /* CARRITO */

    .carrito-icono {

        margin-right: 15px;

    }

    /* HAMBURGUESA */



    /* HERO */

    .hero {

        min-height: 70vh;

        padding: 120px 5% 60px;

    }

    .hero-slide {

        min-height: 70vh;

        border-radius: 24px;

        padding: 40px 25px;

    }

    .hero-slide h1 {

        font-size: 52px;

        line-height: 0.95;

    }

    .hero-slide p {

        font-size: 16px;

        max-width: 100%;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }

    /* BOTONES */

    .btn-principal,
    .btn-secundario {

        width: 100%;

        justify-content: center;

    }

    /* BOTONES */

    .btn-principal,
    .btn-secundario {

        width: 100%;

        justify-content: center;

    }



    .menu.active {

        right: 0;

    }



    .navbar {

        padding: 18px 6%;

    }

    .menu {

        position: fixed;

        top: 0;

        right: -100%;

        width: 280px;

        height: 100vh;

        background: #050505;

        flex-direction: column;

        align-items: flex-start;

        padding: 120px 40px;

        transition: 0.4s ease;

        z-index: 999;

    }

    .menu.active {

        right: 0;

    }


    /* HERO */

    .hero {

        padding-top: 140px;

    }

    .hero h1 {

        font-size: 48px;

    }

    .hero p {

        font-size: 16px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: center;

    }

    /* PRODUCTOS */

    .productos {

        padding: 80px 6%;

    }

    .grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .producto {

        padding: 20px;

    }

    /* BENEFICIOS */

    .beneficios {

        padding: 80px 6%;

    }

    .beneficios-grid {

        grid-template-columns: 1fr;

    }

    /* TITULOS */

    h2 {

        font-size: 42px !important;

    }

}





/* ===================================== */
/* COLORES PRODUCTO */
/* ===================================== */

.selector-colores {

    margin: 25px 0;

}

.subtitulo-color {

    margin-bottom: 15px;

    font-size: 18px;

}

.colores-opciones {

    display: flex;

    gap: 14px;

    margin-bottom: 15px;

}

.color-btn {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    border: 2px solid transparent;

    cursor: pointer;

    transition: 0.3s ease;

}

.color-btn:hover {

    transform: scale(1.1);

}

.color-btn.activo {

    border-color: #ff0000;

    box-shadow:
        0 0 12px rgba(255, 0, 0, 0.4);

}

#nombreColorActivo {

    color: #aaa;

    font-size: 14px;

}

/* ===================================== */
/* HAMBURGUESA */
/* ===================================== */



.hamburguesa span {

    display: block;

    width: 28px;

    height: 3px;

    background: #ffffff;

    border-radius: 20px;

}




/* ===================================== */
/* RESPONSIVE PRODUCTOS */
/* ===================================== */

@media(max-width:992px) {

    /* CATALOGO */

    .catalogo-premium {

        grid-template-columns: 1fr;

        padding: 40px 20px;

    }

    .sidebar-catalogo {

        width: 100%;

    }

    .grid-productos {

        grid-template-columns:
            repeat(2, 1fr);

    }

    /* PRODUCTO DETALLE */

    .contenedor-producto {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .galeria {

        grid-template-columns: 1fr;

    }

    .miniaturas {

        flex-direction: row;

        flex-wrap: wrap;

        justify-content: center;

    }

    .zoom-container {

        height: auto;

        padding: 20px;

    }

    .img-principal {

        max-height: 500px;

    }

    .titulo-producto {

        font-size: 48px;

    }

}

@media(max-width:768px) {

    /* HERO CATALOGO */

    .hero-catalogo {

        height: auto;

        padding: 140px 20px 60px;

    }

    .hero-catalogo h1 {

        font-size: 48px;

    }

    .texto-catalogo {

        font-size: 16px;

    }

    /* GRID PRODUCTOS */

    .grid-productos {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .top-catalogo {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }

    /* PRODUCTO */

    .producto-detalle {

        padding: 120px 20px 60px;

    }

    .titulo-producto {

        font-size: 34px;

        line-height: 1.1;

    }

    .precio {

        font-size: 32px;

    }

    .acciones-producto {

        flex-direction: column;

        align-items: stretch;

    }

    .cantidad-selector {

        width: 100%;

        justify-content: center;

    }

    .boton-comprar {

        width: 100%;

    }

    .beneficios-producto {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }

    .relacionados {

        padding: 70px 20px;

    }


}

/* ===================================== */
/* OVERLAY CARRITO */
/* ===================================== */

.overlay-carrito {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    backdrop-filter: blur(5px);

    opacity: 0;

    visibility: hidden;

    transition: 0.3s ease;

    z-index: 9998;

}

.overlay-carrito.active {

    opacity: 1;

    visibility: visible;

}

/* ===================================== */
/* CARRITO LATERAL */
/* ===================================== */

.carrito-lateral {

    position: fixed;

    top: 0;

    right: -450px;

    width: 420px;

    max-width: 100%;

    height: 100vh;

    background: #0a0a0a;

    border-left: 1px solid rgba(255, 255, 255, 0.06);

    display: flex;

    flex-direction: column;

    z-index: 9999;

    transition: 0.4s ease;

}

.carrito-lateral.active {

    right: 0;

}

/* ===================================== */
/* TOP */
/* ===================================== */

.carrito-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 30px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

}

.carrito-top h2 {

    font-size: 28px;

    text-transform: uppercase;

    font-weight: 800;

}

/* ===================================== */
/* BOTON CERRAR */
/* ===================================== */

#cerrarCarrito {

    width: 42px;

    height: 42px;

    border: none;

    background: #151515;

    color: white;

    border-radius: 12px;

    cursor: pointer;

    font-size: 18px;

    transition: 0.3s ease;

}

#cerrarCarrito:hover {

    background: #c40000;

}

/* ===================================== */
/* ITEMS */
/* ===================================== */

.carrito-items {

    flex: 1;

    overflow-y: auto;

    padding: 25px;

    display: flex;

    flex-direction: column;

    gap: 20px;

}

/* ===================================== */
/* PRODUCTO */
/* ===================================== */

.carrito-producto {

    display: flex;

    gap: 15px;

    background: #111;

    border-radius: 18px;

    padding: 15px;

}

.carrito-producto img {

    width: 90px;

    height: 90px;

    object-fit: contain;

    background: #0a0a0a;

    border-radius: 12px;

    padding: 8px;

}

/* ===================================== */
/* INFO */
/* ===================================== */

.info-carrito {

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

}

.info-carrito h4 {

    font-size: 15px;

    line-height: 1.3;

    margin-bottom: 8px;

}

.info-carrito p {

    color: #ff1e1e;

    font-weight: 700;

    margin-bottom: 5px;

}

.info-carrito small {

    color: #999;

}

/* ===================================== */
/* ELIMINAR */
/* ===================================== */

.eliminar-item {

    background: none;

    border: none;

    color: #888;

    cursor: pointer;

    margin-top: 8px;

    transition: 0.3s ease;

}

.eliminar-item:hover {

    color: #ff1e1e;

}

/* ===================================== */
/* BOTTOM */
/* ===================================== */

.carrito-bottom {

    padding: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    background: #0d0d0d;

}

/* ===================================== */
/* SUBTOTAL */
/* ===================================== */

.subtotal {

    display: flex;

    justify-content: space-between;

    margin-bottom: 25px;

    font-size: 18px;

}

.subtotal strong {

    color: #ff1e1e;

}

/* ===================================== */
/* BOTON FINALIZAR */
/* ===================================== */

.btn-finalizar {

    width: 100%;

    height: 58px;

    border: none;

    border-radius: 16px;

    background: #c40000;

    color: white;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

}

.btn-finalizar:hover {

    background: #ff0000;

}

/* ===================================== */
/* CARRITO VACIO */
/* ===================================== */

.carrito-vacio {

    color: #888;

    text-align: center;

    margin-top: 80px;

}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:768px) {

    .carrito-lateral {

        width: 100%;

    }

}