/* ==========================================================
   LUXARA
   SUBPAGINA PRODUCTOS
   ARCHIVO: CSS/productos.css
   VERSION COMPLETA
========================================================== */


/* ==========================================================
   01. RESET
========================================================== */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body.productos-page {
    margin: 0;
    padding: 0;

    width: 100%;
    overflow-x: hidden;

    background: #ffffff;
    color: #171b1f;

    font-family: "Segoe UI", Arial, Helvetica, sans-serif;

    -webkit-font-smoothing: antialiased;
}

.productos-page *,
.productos-page *:before,
.productos-page *:after {
    box-sizing: border-box;
}

.productos-page img {
    display: block;
    max-width: 100%;
}

.productos-page a {
    color: inherit;
}

.productos-page button {
    font-family: inherit;
}


/* ==========================================================
   02. CONTENEDOR
========================================================== */

.products-container {
    width: 88%;
    max-width: 1240px;

    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================
   03. HEADER
========================================================== */

.products-header {
    position: sticky;

    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;
    height: 82px;

    background: #070b10;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.products-header-inner {
    width: 90%;
    max-width: 1320px;
    height: 82px;

    margin-left: auto;
    margin-right: auto;

    display: flex;
    align-items: center;
}

.products-logo {
    flex-shrink: 0;

    display: flex;
    align-items: center;

    text-decoration: none;
}

.products-logo img {
    width: 155px;
    height: auto;
}

.products-nav {
    margin-left: auto;

    display: flex;
    align-items: center;
}

.products-nav a {
    position: relative;

    display: block;

    margin-left: 31px;

    padding-top: 31px;
    padding-bottom: 31px;

    color: rgba(255, 255, 255, 0.82);

    text-decoration: none;
    text-transform: uppercase;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.3px;

    transition: color 0.25s ease;
}

.products-nav a:hover {
    color: #ffffff;
}

.products-nav a.active {
    color: #ff6800;
}

.products-nav a.active:after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 19px;

    height: 2px;

    background: #ff6800;
}

.products-header-actions {
    margin-left: 24px;

    display: flex;
    align-items: center;
}

.products-language {
    margin-right: 17px;

    display: flex;
    align-items: center;

    color: rgba(255, 255, 255, 0.35);
}

.products-language span {
    margin-left: 5px;
    margin-right: 5px;
}

.language-button {
    padding: 0;

    border: 0;

    background: transparent;

    color: rgba(255, 255, 255, 0.72);

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;
}

.language-button:hover,
.language-button.active {
    color: #ff6800;
}

.products-header-cta {
    min-height: 40px;

    padding-left: 18px;
    padding-right: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 24px;

    background: transparent;

    color: #ffffff;

    text-decoration: none;
    text-transform: uppercase;

    white-space: nowrap;

    font-size: 9px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.products-header-cta:hover {
    border-color: #ff6800;

    background: #ff6800;
}

.products-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    margin-left: 12px;
    padding: 8px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.products-menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    margin-top: 6px;
    margin-bottom: 6px;

    background: #ffffff;
}


/* ==========================================================
   04. HERO
========================================================== */

.products-hero {
    position: relative;

    width: 100%;
    min-height: 520px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #070b10;
}

.products-hero-image {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.products-hero-overlay {
    position: absolute;

    top: 0;
    left: 0;

    z-index: 1;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        rgba(3, 7, 12, 0.95) 0%,
        rgba(3, 7, 12, 0.78) 37%,
        rgba(3, 7, 12, 0.40) 70%,
        rgba(3, 7, 12, 0.12) 100%
    );
}

.products-hero-content {
    position: relative;

    z-index: 2;

    padding-top: 55px;
    padding-bottom: 55px;
}

.products-hero-content h1 {
    max-width: 760px;

    margin-top: 0;
    margin-bottom: 20px;

    color: #ffffff;

    font-size: 62px;
    line-height: 1.03;

    letter-spacing: -2px;

    font-weight: 700;
}

.products-hero-content p {
    max-width: 560px;

    margin-top: 0;
    margin-bottom: 31px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 16px;
    line-height: 1.55;
}

.products-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.products-hero-buttons .lux-button {
    margin-right: 13px;
    margin-bottom: 10px;
}


/* ==========================================================
   05. BOTONES GENERALES
========================================================== */

.lux-button {
    min-height: 48px;

    padding-left: 25px;
    padding-right: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.lux-button:hover {
    transform: translateY(-2px);
}

.lux-button-orange {
    border: 1px solid #ff6800;

    background: #ff6800;

    color: #ffffff;
}

.lux-button-orange:hover {
    border-color: #e85e00;

    background: #e85e00;
}

.lux-button-outline {
    border: 1px solid rgba(255, 255, 255, 0.58);

    background: transparent;

    color: #ffffff;
}

.lux-button-outline:hover {
    border-color: #ffffff;

    background: rgba(255, 255, 255, 0.08);
}


/* ==========================================================
   06. TECNOLOGIA SUIZA
========================================================== */

.products-intro {
    padding-top: 78px;
    padding-bottom: 72px;

    background: #ffffff;
}

.products-intro-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.products-intro-text {
    width: 39%;
}

.products-intro-image {
    width: 55%;
    min-height: 345px;

    overflow: hidden;

    border-radius: 11px;

    background: #e8ebed;

    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
}

.products-intro-text h2 {
    margin-top: 0;
    margin-bottom: 0;

    color: #171b1f;

    font-size: 42px;
    line-height: 1.08;

    letter-spacing: -1px;

    font-weight: 700;
}

.lux-orange-line {
    display: block;

    width: 48px;
    height: 3px;

    margin-top: 20px;
    margin-bottom: 24px;

    background: #ff6800;
}

.products-intro-text p {
    max-width: 525px;

    margin-top: 0;
    margin-bottom: 16px;

    color: #5e656c;

    font-size: 14px;
    line-height: 1.72;
}

.products-intro-image img {
    width: 100%;
    min-height: 345px;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.products-intro-image:hover img {
    transform: scale(1.025);
}


/* ==========================================================
   07. FRANJA TECNICA
========================================================== */

.products-features {
    padding-top: 46px;
    padding-bottom: 46px;

    background: #080d13;

    color: #ffffff;
}

.products-features-grid {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.feature-card {
    width: 25%;

    padding-left: 24px;
    padding-right: 24px;

    display: flex;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-card:first-child {
    padding-left: 0;
}

.feature-card:last-child {
    padding-right: 0;

    border-right: 0;
}

.feature-icon {
    width: 49px;
    min-width: 49px;
    height: 49px;

    margin-right: 16px;

    color: #ff6800;
}

.feature-icon svg {
    width: 47px;
    height: 47px;
}

.feature-icon-reflection svg {
    width: 50px;
    height: 50px;
}

.feature-content {
    flex: 1;
}

.feature-number {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 26px;
    line-height: 1;

    font-weight: 700;
}

.feature-content h3 {
    margin-top: 0;
    margin-bottom: 7px;

    color: #ff6800;

    font-size: 14px;
    line-height: 1.25;

    font-weight: 700;
}

.feature-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.74);

    font-size: 11px;
    line-height: 1.55;
}

.feature-content small {
    display: block;

    margin-top: 6px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 9px;
    line-height: 1.45;
}


/* ==========================================================
   08. PRODUCTOS
========================================================== */

.products-list {
    width: 100%;

    background: #ffffff;
}

.product-section {
    padding-top: 67px;
    padding-bottom: 67px;

    background: #ffffff;
}

.product-section + .product-section {
    border-top: 1px solid #e5e7e9;
}

.product-section-foil {
    background: #f7f8f9;
}

.product-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-copy {
    width: 31%;
}

.product-gallery {
    width: 63%;
}


/* ==========================================================
   09. TEXTO PRODUCTOS
========================================================== */

.product-label {
    display: inline-block;

    margin-bottom: 8px;

    color: #ff6800;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    font-size: 10px;
    font-weight: 800;
}

.product-copy h2 {
    margin-top: 0;
    margin-bottom: 0;

    color: #11161b;

    font-size: 45px;
    line-height: 1.04;

    letter-spacing: -1px;

    font-weight: 700;
}

.product-copy p {
    max-width: 455px;

    margin-top: 0;
    margin-bottom: 15px;

    color: #5e656c;

    font-size: 13px;
    line-height: 1.7;
}

.product-copy > .lux-button {
    margin-top: 13px;
}


/* ==========================================================
   10. GALERIA PRODUCTOS
========================================================== */

.product-gallery {
    display: flex;
    justify-content: space-between;
}

.product-image-card {
    width: 31.5%;

    margin: 0;

    cursor: pointer;

    outline: none;
}

.product-image-wrap {
    position: relative;

    width: 100%;
    height: 235px;

    overflow: hidden;

    border: 1px solid #dfe3e6;
    border-radius: 10px;

    background: #e7eaed;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.product-image-card:hover .product-image-wrap img {
    transform: scale(1.035);
}

.product-image-card figcaption {
    margin-top: 8px;

    color: #474e55;

    text-align: center;

    font-size: 10px;
    line-height: 1.4;

    font-weight: 500;
}


/* ==========================================================
   11. EXPANDER
========================================================== */

.expand-button {
    position: absolute;

    top: 10px;
    right: 10px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff6800;

    color: #ffffff;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);
}

.expand-button svg {
    width: 15px;
    height: 15px;
}

.product-image-card:hover .expand-button {
    background: #e85e00;
}


/* ==========================================================
   12. FOIL - ACABADOS
========================================================== */

.finish-title {
    margin-top: 24px;
    margin-bottom: 11px;

    color: #191f24;

    font-size: 13px;
    font-weight: 700;
}

.finish-buttons {
    display: flex;
    flex-wrap: wrap;

    margin-bottom: 15px;
}

.finish-button {
    min-height: 37px;

    margin-right: 7px;
    margin-bottom: 8px;

    padding-left: 14px;
    padding-right: 14px;

    border: 1px solid #cbd0d4;
    border-radius: 6px;

    background: #ffffff;

    color: #20262b;

    font-size: 10px;
    font-weight: 600;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.finish-button:hover,
.finish-button.active {
    border-color: #ff6800;

    background: #ff6800;

    color: #ffffff;
}


/* ==========================================================
   13. FAQ - DEFINITIVO OSCURO
========================================================== */

.products-faq {
    width: 100%;

    padding-top: 30px;
    padding-bottom: 34px;

    background: #0a1520;

    color: #ffffff;
}

.products-faq .products-container {
    width: 88%;
    max-width: 1240px;
}

.faq-heading {
    margin-bottom: 18px;

    text-align: center;
}

.products-faq h2,
.faq-heading h2 {
    margin-top: 0;
    margin-bottom: 7px;

    color: #ffffff;

    text-align: center;

    font-size: 18px;
    line-height: 1.2;

    font-weight: 600;

    letter-spacing: 0;
}

.faq-orange-line,
.lux-orange-line-center {
    display: block;

    width: 31px;
    height: 2px;

    margin-top: 7px;
    margin-right: auto;
    margin-bottom: 18px;
    margin-left: auto;

    background: #ff6800;
}

.faq-wrapper {
    width: 68%;
    max-width: 850px;

    margin-left: auto;
    margin-right: auto;

    border: 0;

    background: transparent;
}

.faq-item {
    width: 100%;

    margin-bottom: 7px;

    overflow: hidden;

    border: 1px solid #263746;
    border-radius: 7px;

    background: #132230;
}

.faq-question {
    width: 100%;
    min-height: 42px;

    padding-top: 9px;
    padding-right: 15px;
    padding-bottom: 9px;
    padding-left: 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 0;

    background: #132230;

    color: #ffffff;

    text-align: left;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;

    cursor: pointer;
}

.faq-question:hover,
.faq-question:focus {
    background: #182a39;

    color: #ffffff;
}

.faq-icon {
    width: 23px;
    min-width: 23px;
    height: 23px;

    margin-left: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ff6800;

    font-size: 20px;
    line-height: 23px;

    font-weight: 300;

    transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;

    padding-top: 0;
    padding-right: 45px;
    padding-bottom: 14px;
    padding-left: 15px;

    background: #132230;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    max-width: 760px;

    margin: 0;

    color: #b7c0c8;

    font-size: 10px;
    line-height: 1.6;
}


/* ==========================================================
   14. CTA PROYECTO
========================================================== */

.products-final-cta {
    position: relative;

    width: 100%;
    min-height: 165px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #111820;

    color: #ffffff;
}

.products-final-cta-background {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    opacity: 0.42;
}

.products-final-cta-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(6, 12, 18, 0.62);
}

.products-final-cta-inner {
    position: relative;

    z-index: 2;

    min-height: 165px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.final-cta-title {
    width: 30%;
}

.final-cta-title h2,
.products-final-cta h2 {
    margin: 0;

    color: #ffffff;

    font-size: 29px;
    line-height: 1.10;

    font-weight: 650;

    letter-spacing: -0.5px;
}

.final-cta-text {
    width: 38%;
}

.final-cta-text p,
.products-final-cta p {
    max-width: 400px;

    margin: 0;

    color: #d5dade;

    font-size: 11px;
    line-height: 1.65;
}

.final-cta-action {
    width: 24%;

    display: flex;
    justify-content: flex-end;
}

.final-cta-action .lux-button {
    min-width: 205px;
}


/* ==========================================================
   15. FOOTER CORPORATIVO
========================================================== */

.products-footer {
    width: 100%;

    padding-top: 55px;

    background: #070b11;

    color: #ffffff;
}

.products-footer-main,
.products-footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    padding-bottom: 48px;
}

.footer-column {
    width: 17%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand {
    width: 25%;
}

.footer-logo {
    display: block;

    margin-bottom: 24px;

    text-decoration: none;
}

.footer-logo img {
    width: 145px;
    height: auto;
}

.footer-address {
    max-width: 300px;

    margin-top: 0;
    margin-bottom: 20px;

    color: #afb3b9;

    font-size: 14px;
    line-height: 1.60;
}

.footer-column h3 {
    margin-top: 0;
    margin-bottom: 18px;

    color: #ff6800;

    text-transform: uppercase;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.4px;
}

.footer-column > a:not(.footer-logo):not(.footer-social-link) {
    margin-bottom: 14px;

    color: #b8bbc0;

    text-decoration: none;

    font-size: 14px;
    line-height: 1.3;

    transition: color 0.25s ease;
}

.footer-column > a:not(.footer-logo):not(.footer-social-link):hover {
    color: #ff6800;
}

.footer-social-icons {
    display: flex;
    align-items: center;
}

.footer-social-link {
    width: 43px;
    height: 43px;

    margin-right: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #39414a;
    border-radius: 50%;

    background: #0c1118;

    text-decoration: none;
}

.footer-social-link:hover {
    border-color: #ff6800;
}

.footer-social-link img {
    width: 18px;
    height: 18px;

    object-fit: contain;
}

.footer-bottom,
.products-footer-bottom {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 18px;
    padding-bottom: 18px;

    border-top: 1px solid #242a32;
}


.footer-bottom p,
.products-footer-bottom p {
    margin: 0;

    color: #8e939a;


    font-size: 11px;
    line-height: 1.5;
}


/* ==========================================================
   16. LIGHTBOX
========================================================== */

.lux-lightbox {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 5000;

    width: 100%;
    height: 100%;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 38px;
}

.lux-lightbox.is-open {
    display: flex;
}

.lux-lightbox-backdrop {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.92);
}

.lux-lightbox-dialog {
    position: relative;

    z-index: 2;

    width: 94%;
    max-width: 1100px;

    max-height: 90vh;
}

.lux-lightbox-content {
    width: 100%;

    text-align: center;
}

.lux-lightbox-content img {
    display: inline-block;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 86vh;

    border-radius: 10px;

    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.lux-lightbox-close {
    position: absolute;

    top: -20px;
    right: -20px;

    z-index: 3;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #ff6800;

    color: #ffffff;

    font-size: 30px;
    line-height: 46px;

    text-align: center;

    cursor: pointer;
}

.lux-lightbox-close:hover {
    background: #e85e00;
}


/* ==========================================================
   17. TABLET GRANDE
========================================================== */

@media screen and (max-width: 1120px) {

    .products-header-inner {
        width: 95%;
    }

    .products-nav a {
        margin-left: 18px;

        font-size: 10px;
    }

    .products-language {
        display: none;
    }

    .feature-card {
        width: 50%;

        margin-bottom: 28px;
    }

    .feature-card:nth-child(2) {
        border-right: 0;
    }

    .feature-card:nth-child(3),
    .feature-card:nth-child(4) {
        padding-top: 22px;

        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }

    .product-copy {
        width: 34%;
    }

    .product-gallery {
        width: 61%;
    }

    .product-image-wrap {
        height: 210px;
    }

}


/* ==========================================================
   18. TABLET / MOVIL
========================================================== */

@media screen and (max-width: 820px) {

    .products-container {
        width: 92%;
        max-width: 650px;
    }


    /* HEADER */

    .products-header {
        height: 68px;
    }

    .products-header-inner {
        width: 94%;
        height: 68px;
    }

    .products-logo img {
        width: 125px;
    }

    .products-header-cta {
        display: none;
    }

    .products-menu-button {
        display: block;
    }

/* =========================================
   MENU MOVIL OFF-CANVAS
========================================= */

.products-nav {
    position: fixed;

    top: 0;
    right: 0;
    left: auto;

    z-index: 2100;

    width: min(88vw, 390px);
    height: 100vh;
    margin: 0;
    padding: 0 26px 32px;

    display: block;

    overflow-y: auto;

    background: #070b10;

    box-shadow: -20px 0 55px rgba(0, 0, 0, 0.38);

    transform: translateX(105%);

    visibility: hidden;

    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.42s ease;
}

.products-nav.is-open {
    transform: translateX(0);
    visibility: visible;
}


/* CABECERA INTERNA */

.products-mobile-menu-head {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.products-mobile-menu-head img {
    width: 126px;
    height: auto;
}

.products-menu-close {
    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #ffffff;

    font-size: 34px;
    line-height: 1;

    font-weight: 200;

    cursor: pointer;
}


/* ENLACES */

.products-nav > a {
    position: relative;

    width: 100%;

    margin: 0;

    padding: 22px 2px;

    display: block;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

    color: rgba(255, 255, 255, 0.88);

    font-size: 13px;
    line-height: 1.2;

    font-weight: 600;

    letter-spacing: 0.7px;
}

.products-nav > a:hover,
.products-nav > a.active {
    color: #ff6800;
}

.products-nav a.active:after {
    display: none;
}


/* IDIOMAS DENTRO DEL PANEL */

.products-language-mobile {
    margin-top: 24px;

    padding-top: 18px !important;
    padding-bottom: 18px !important;

    display: flex !important;
    align-items: center;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.products-language-mobile .language-button {
    font-size: 12px;
}


/* FONDO OSCURO */

.products-menu-overlay {
    position: fixed;

    inset: 0;

    z-index: 2050;

    background: rgba(0, 0, 0, 0.62);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    transition:
        opacity 0.32s ease,
        visibility 0.32s ease;
}

.products-menu-overlay.is-open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* BLOQUEAR PAGINA CUANDO ABRE */

body.products-menu-open {
    overflow: hidden;
}


    /* HERO */

    .products-hero {
        min-height: 600px;

        align-items: flex-end;
    }

    .products-hero-image {
        object-position: 60% center;
    }

    .products-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(4, 8, 12, 0.18) 0%,
            rgba(4, 8, 12, 0.50) 45%,
            rgba(4, 8, 12, 0.96) 100%
        );
    }

    .products-hero-content {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .products-hero-content h1 {
        max-width: 560px;

        font-size: 46px;

        letter-spacing: -1px;
    }

    .products-hero-content p {
        font-size: 14px;
    }


    /* INTRO */

    .products-intro {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .products-intro-grid {
        display: block;
    }

    .products-intro-text,
    .products-intro-image {
        width: 100%;
    }

    .products-intro-text {
        margin-bottom: 35px;
    }

    .products-intro-text h2 {
        font-size: 34px;
    }

    .products-intro-image,
    .products-intro-image img {
        min-height: 300px;
    }


    /* FEATURES */

    .products-features {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .feature-card {
        width: 100%;

        margin: 0;

        padding-top: 20px;
        padding-right: 0;
        padding-bottom: 20px;
        padding-left: 0;

        border-top: 1px solid rgba(255, 255, 255, 0.10);
        border-right: 0;
    }

    .feature-card:first-child {
        padding-top: 0;

        border-top: 0;
    }


    /* PRODUCTOS */

    .product-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .product-layout {
        display: block;
    }

    .product-copy,
    .product-gallery {
        width: 100%;
    }

    .product-copy {
        margin-bottom: 34px;
    }

    .product-copy h2 {
        font-size: 40px;
    }

    .product-copy > .lux-button {
        width: 100%;
    }

    .product-gallery {
        overflow-x: auto;

        justify-content: flex-start;

        padding-bottom: 14px;
    }

    .product-image-card {
        width: 82%;
        min-width: 82%;

        margin-right: 13px;
    }

    .product-image-wrap {
        height: 295px;
    }

    .product-image-card figcaption {
        text-align: left;
    }


    /* FAQ */

    .products-faq {
        padding-top: 30px;
        padding-bottom: 32px;
    }

    .faq-wrapper {
        width: 100%;
    }


    /* CTA */

    .products-final-cta {
        min-height: 0;

        padding-top: 45px;
        padding-bottom: 45px;
    }

    .products-final-cta-inner {
        min-height: 0;

        display: block;
    }

    .final-cta-title,
    .final-cta-text,
    .final-cta-action {
        width: 100%;
    }

    .final-cta-title {
        margin-bottom: 18px;
    }

    .final-cta-title h2,
    .products-final-cta h2 {
        font-size: 33px;
    }

    .final-cta-text {
        margin-bottom: 22px;
    }

    .final-cta-text p {
        max-width: 500px;

        font-size: 12px;
    }

    .final-cta-action {
        justify-content: flex-start;
    }

    .final-cta-action .lux-button {
        width: 100%;
    }


    /* FOOTER */

    .products-footer-main,
    .products-footer-inner {
        flex-wrap: wrap;
    }

    .footer-brand {
        width: 100%;

        margin-bottom: 40px;
    }

    .footer-column {
        width: 23%;
    }

}


/* ==========================================================
   19. MOVIL
========================================================== */

@media screen and (max-width: 520px) {

    .products-container {
        width: 92%;
    }


    /* HERO */

    .products-hero {
        min-height: 610px;
    }

    .products-hero-content h1 {
        font-size: 37px;
        line-height: 1.04;
    }

    .products-hero-buttons {
        display: block;
    }

    .products-hero-buttons .lux-button {
        width: 100%;

        margin-right: 0;
        margin-bottom: 10px;
    }


    /* INTRO */

    .products-intro-text h2 {
        font-size: 30px;
    }

    .products-intro-image,
    .products-intro-image img {
        min-height: 260px;
    }


    /* PRODUCTOS */

    .product-copy h2 {
        font-size: 36px;
    }

    .product-image-card {
        width: 86%;
        min-width: 86%;
    }

    .product-image-wrap {
        height: 270px;
    }


    /* ACABADOS */

    .finish-buttons {
        display: block;
    }

    .finish-button {
        width: 100%;

        margin-right: 0;
        margin-bottom: 8px;

        font-size: 11px;
    }


    /* FAQ */

    .products-faq {
        padding-top: 27px;
        padding-bottom: 29px;
    }

    .products-faq h2,
    .faq-heading h2 {
        font-size: 17px;
    }

    .faq-wrapper {
        width: 100%;
    }

    .faq-question {
        min-height: 47px;

        padding-left: 13px;
        padding-right: 12px;

        font-size: 11px;
    }

    .faq-answer {
        padding-right: 32px;
        padding-left: 13px;
    }


    /* CTA */

    .final-cta-title h2,
    .products-final-cta h2 {
        font-size: 29px;
    }


    /* FOOTER */

    .products-footer {
        padding-top: 48px;
    }

    .products-footer-main,
    .products-footer-inner {
        display: block;

        padding-bottom: 30px;
    }

    .footer-brand,
    .footer-column {
        width: 100%;

        margin-bottom: 34px;
    }

    .footer-column h3 {
        margin-bottom: 13px;
    }

    .footer-column > a:not(.footer-logo):not(.footer-social-link) {
        margin-bottom: 11px;
    }

    .footer-bottom,
    .products-footer-bottom {
        display: block;

        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-bottom p,
    .products-footer-bottom p {
        margin-bottom: 7px;

        text-align: left;
    }


    /* LIGHTBOX */

    .lux-lightbox {
        padding: 17px;
    }

    .lux-lightbox-dialog {
        width: 100%;
    }

    .lux-lightbox-close {
        top: -15px;
        right: -5px;

        width: 42px;
        height: 42px;

        line-height: 42px;
    }

}
.faq-item.open .faq-answer {
    display: block;
}
/* ==========================================================
   CORRECCION FINAL HEADER + MENU MOBILE
========================================================== */

@media screen and (max-width: 820px) {

    /* LOGO A LA IZQUIERDA / MENU A LA DERECHA */

    .products-header-inner {
        width: 94%;
        max-width: none;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .products-logo {
        margin-right: 0;
    }

    .products-header-actions {
        margin-left: auto !important;

        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .products-menu-button {
        margin-left: 0 !important;
        margin-right: 0;

        width: 46px;
        height: 46px;
    }


    /* PANEL MOVIL */

    .products-nav {
        position: fixed !important;

        top: 0 !important;
        right: 0 !important;
        left: auto !important;

        width: min(88vw, 390px) !important;

        height: 100vh;
      

        z-index: 3000 !important;

        padding: 0 26px 32px !important;

        background: #070b10;

        transform: translateX(105%);

        overflow-y: auto;
    }

    .products-nav.is-open {
        transform: translateX(0) !important;
    }


    /* CABECERA DEL PANEL */

    .products-mobile-menu-head {
        width: 100%;
        min-height: 82px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .products-mobile-menu-head img {
        width: 128px;
    }

}
/* ==========================================================
   CARRUSEL PRODUCTOS MOBILE
========================================================== */

@media screen and (max-width: 820px) {

    .product-gallery {
        position: relative;

        width: 100%;

        display: flex;
        justify-content: flex-start;

        gap: 14px;

        overflow-x: auto;
        overflow-y: hidden;

        padding-bottom: 8px;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .product-gallery::-webkit-scrollbar {
        display: none;
    }


    /* TARJETAS */

    .product-gallery .product-image-card {
        flex: 0 0 86%;

        width: 86%;
        min-width: 86%;

        margin-right: 0;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }


    /* CONTROLES */

    .product-carousel-controls {
        width: 100%;

        margin-top: 14px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* INDICADORES */

    .product-carousel-dots {
        display: flex;
        align-items: center;

        gap: 9px;
    }

    .product-carousel-dot {
        width: 8px;
        height: 8px;

        padding: 0;

        border: 0;
        border-radius: 50%;

        background: #c9cdd1;

        cursor: pointer;

        transition:
            width 0.25s ease,
            border-radius 0.25s ease,
            background 0.25s ease;
    }

    .product-carousel-dot.active {
        width: 27px;

        border-radius: 20px;

        background: #ff6800;
    }


    /* FLECHAS */

    .product-carousel-arrows {
        display: flex;
        align-items: center;

        gap: 9px;
    }

    .product-carousel-arrow {
        width: 43px;
        height: 43px;

        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid #e0e3e6;
        border-radius: 50%;

        background: #f4f5f6;

        color: #171b1f;

        font-size: 23px;
        line-height: 1;

        cursor: pointer;

        transition:
            background 0.25s ease,
            color 0.25s ease,
            border-color 0.25s ease,
            transform 0.2s ease;
    }

    .product-carousel-arrow:active {
        transform: scale(0.94);
    }

    .product-carousel-arrow:hover {
        border-color: #ff6800;

        background: #ff6800;

        color: #ffffff;
    }

}


/* EN DESKTOP NO MOSTRAR CONTROLES */

@media screen and (min-width: 821px) {

    .product-carousel-controls {
        display: none !important;
    }

}
/* ==========================================================
   FOOTER MOBILE ACORDEON
========================================================== */

@media screen and (max-width: 520px) {

    .products-footer {
        padding-top: 40px;
    }


    /* MARCA */

    .footer-brand {
        margin-bottom: 28px;
    }


    /* COLUMNAS ACORDEON */

    .products-footer-main .footer-column:not(.footer-brand) {
        width: 100%;

        margin-bottom: 0;

        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .products-footer-main .footer-column:not(.footer-brand):last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }


    /* TITULO / BOTON */

    .products-footer-main .footer-column:not(.footer-brand) h3 {
        position: relative;

        width: 100%;

        margin: 0;

        padding: 20px 4px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        color: #ffffff;

        font-size: 13px;
        line-height: 1;

        font-weight: 650;

        letter-spacing: 0.9px;

        cursor: pointer;

        user-select: none;
    }


    /* SIGNO + */

    .products-footer-main .footer-column:not(.footer-brand) h3::after {
        content: "+";

        margin-left: 20px;

        color: #ff6800;

        font-size: 24px;
        line-height: 1;

        font-weight: 300;

        transition: transform 0.28s ease;
    }


    /* + SE CONVIERTE EN X */

    .products-footer-main .footer-column.footer-open h3::after {
        transform: rotate(45deg);
    }


    /* LINKS CERRADOS */

    .products-footer-main
    .footer-column:not(.footer-brand)
    > a:not(.footer-logo):not(.footer-social-link) {

        max-height: 0;

        margin: 0;

        padding-left: 4px;

        overflow: hidden;

        opacity: 0;

        transform: translateY(-5px);

        transition:
            max-height 0.30s ease,
            opacity 0.25s ease,
            transform 0.25s ease,
            margin 0.25s ease;
    }


    /* LINKS ABIERTOS */

    .products-footer-main
    .footer-column.footer-open
    > a:not(.footer-logo):not(.footer-social-link) {

        max-height: 50px;

        margin-bottom: 14px;

        opacity: 1;

        transform: translateY(0);
    }


    .products-footer-main
    .footer-column.footer-open
    > a:last-child {

        margin-bottom: 21px;
    }


    /* FRANJA FINAL */

    .footer-bottom,
    .products-footer-bottom {
        margin-top: 28px;

        padding-top: 22px;
        padding-bottom: 22px;
    }

    .footer-bottom p,
    .products-footer-bottom p {
        text-align: center;

        font-size: 10px;
        line-height: 1.6;
    }

}
/* ==========================================================
   AJUSTE FINAL BOTONES HERO
========================================================== */

.products-hero-buttons .lux-button {
    color: #ffffff !important;
}
/* ==========================================================
   INTRO - MOVIMIENTO DIRECCIONAL REVERSIBLE
========================================================== */

.products-intro .lux-intro-motion {
    opacity: 0;

    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform, opacity;
}


/* TITULO: movimiento hacia la derecha */

.products-intro .lux-intro-title-motion {
    transform: translateX(-48px);
}


/* PRIMER PARRAFO: movimiento hacia la izquierda */

.products-intro .lux-intro-p1-motion {
    transform: translateX(48px);
}


/* SEGUNDO PARRAFO: movimiento hacia arriba */

.products-intro .lux-intro-p2-motion {
    transform: translateY(38px);
}


/* IMAGEN: movimiento hacia abajo */

.products-intro .lux-intro-image-motion {
    transform: translateY(-38px);
}


/* POSICION FINAL */

.products-intro.is-intro-visible .lux-intro-motion {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* ==========================================================
   ACCESIBILIDAD - MOVIMIENTO REDUCIDO
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .products-intro .lux-intro-motion {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
