/* --- RESET GENERAL --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-texto-principal: #1a1a1a;
            --color-texto-secundario: #6e6e6e;
            --color-texto-blanco: #ffffff;
            --color-lineas: #e5e0db;
            --color-oro-fino: #c5a880; 
            --fuente-serif: 'Playfair Display', serif;
            --fuente-sans: 'Inter', sans-serif;
            --color-fondo-solido: #f7f5f2;
            --header-height: 120px;
        }

        body, html {
            width: 100%;
            font-family: var(--fuente-sans);
            background-color: var(--color-fondo-solido);
            color: var(--color-texto-principal);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* --- CONTENEDOR HERO (SECCIÓN 1) --- */
        .hero-container {
            width: 100vw;
            min-height: 860px;
            height: 96vh;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 0 100px 40px 100px;
            overflow: hidden;
        }

        .hero-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: var(--color-fondo-solido);
            z-index: 1;
            pointer-events: none;
        }

        .hero-container::after {
            content: '';
            position: absolute;
            top: var(--header-height);
            left: 0;
            width: 45%;
            height: calc(100% - var(--header-height));
            background: linear-gradient(to right, rgba(247, 245, 242, 1) 0%, rgba(247, 245, 242, 0.98) 35%, rgba(247, 245, 242, 0.85) 65%, rgba(247, 245, 242, 0.4) 85%, transparent 100%);
            z-index: 1;
            pointer-events: none;
        }

        .hero-slide-bg {
            position: absolute;
            inset: var(--header-height) 0 0 0;
            background-size: cover;
            background-position: center right;
            opacity: 0;
            transform: scale(1.02);
            transition: opacity 0.7s ease, transform 1.2s ease;
            z-index: 0;
        }

        .hero-slide-bg.active {
            opacity: 1;
            transform: scale(1);
        }

        .navbar {
            position: relative;
            z-index: 10;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            height: var(--header-height);
        }

        .brand-link { display: flex; align-items: center; width: 300px; height: 120px; flex-shrink: 0; text-decoration: none; }
        .brand-logo { width: 300px; height: 120px; object-fit: contain; display: block; }
        .nav-actions { display: flex; align-items: center; gap: 42px; }
        .nav-links { display: flex; gap: 34px; }
        .nav-links a { font-size: 11px; text-transform: uppercase; text-decoration: none; color: var(--color-texto-principal); letter-spacing: 3px; font-weight: 400; transition: opacity 0.3s; }
        .nav-links a:hover { opacity: 0.6; }

        .btn-asesoramiento {
            border: 1px solid #1a1a1a;
            padding: 10px 24px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--color-texto-principal);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }
        .btn-asesoramiento:hover { background-color: var(--color-texto-principal); color: #ffffff; }
        .menu-hamburger { display: none; font-size: 0; background: none; border: none; color: var(--color-texto-principal); cursor: pointer; z-index: 20; }
        .menu-hamburger::before {
            content: '';
            width: 20px;
            height: 2px;
            background: currentColor;
            box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
        }
        body.menu-open .menu-hamburger::before {
            content: '×';
            width: auto;
            height: auto;
            background: transparent;
            box-shadow: none;
            font-size: 28px;
            line-height: 1;
        }
        body.menu-open .menu-hamburger {
            position: fixed;
            top: 22px;
            right: auto;
            left: min(calc(100vw - 70px), 320px);
            z-index: 1000;
            width: 44px;
            height: 44px;
            background: var(--color-fondo-solido);
            border: 1px solid var(--color-lineas);
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }
        body.menu-open .navbar {
            z-index: 1001;
            pointer-events: none;
        }
        body.menu-open .brand-link {
            visibility: hidden;
        }
        body.menu-open .menu-hamburger {
            pointer-events: auto;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--color-fondo-solido);
            z-index: 30;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 30px;
            transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .mobile-menu.active { right: 0; }
        .mobile-menu a { font-size: 18px; text-transform: uppercase; text-decoration: none; color: var(--color-texto-principal); letter-spacing: 4px; }

        .main-wrapper { display: flex; align-items: center; position: relative; flex: 1; z-index: 5; margin-top: 40px; }
        .pagination-container { display: flex; flex-direction: column; gap: 20px; margin-right: 60px; position: relative; }
        .page-num { font-size: 11px; color: #bfae9e; cursor: pointer; transition: color 0.25s ease, transform 0.25s ease; }
        .page-num:hover { transform: translateX(3px); }
        .page-num.active { color: var(--color-texto-principal); font-weight: 600; }

        .main-content { max-width: 650px; }
        .category-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 3.5px; color: var(--color-texto-secundario); margin-bottom: 30px; }
        .title { font-family: var(--fuente-serif); font-size: 72px; font-weight: 400; line-height: 1.1; color: var(--color-texto-principal); margin-bottom: 50px; letter-spacing: 0; }

        .cta-wrapper { display: flex; align-items: center; }
        .cta-link { display: inline-flex; align-items: center; font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--color-texto-principal); text-decoration: none; position: relative; padding-bottom: 12px; }
        .cta-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 140px; height: 1px; background-color: #1a1a1a; }
        .cta-link::before { content: ''; position: absolute; bottom: 0; left: 0; width: 1px; height: 4px; background-color: #1a1a1a; }
        .cta-arrow { margin-left: 20px; font-size: 16px; transform: translateY(-5px); }
        .scroll-hint {
            position: absolute;
            left: 100px;
            right: auto;
            bottom: 42px;
            z-index: 8;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 12px 16px;
            color: var(--color-texto-principal);
            background: rgba(247, 245, 242, 0.92);
            border: 1px solid rgba(26, 26, 26, 0.16);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 10px;
            letter-spacing: 2.4px;
            font-weight: 600;
        }

        .scroll-hint-kicker {
            color: var(--color-texto-secundario);
        }

        .scroll-hint-text {
            white-space: nowrap;
        }

        .scroll-hint-line {
            position: relative;
            width: 1px;
            height: 46px;
            background: rgba(26, 26, 26, 0.28);
            overflow: hidden;
        }

        .scroll-hint-line::after {
            content: '';
            position: absolute;
            top: -18px;
            left: 0;
            width: 1px;
            height: 18px;
            background: var(--color-texto-principal);
            animation: scrollHint 1.8s ease-in-out infinite;
        }

        @keyframes scrollHint {
            0% { transform: translateY(0); opacity: 0; }
            35% { opacity: 1; }
            100% { transform: translateY(64px); opacity: 0; }
        }

        /* ==========================================================================
           --- SECCIÓN 2: COLECCIONES ---
           ========================================================================== */
        .collections-section { width: 100vw; background-color: #ffffff; display: flex; align-items: center; padding: 60px 100px 40px 100px; position: relative; z-index: 10; }
        .collections-container { display: grid; grid-template-columns: 1fr 3fr; gap: 60px; width: 100%; align-items: center; }
        .collections-sidebar { max-width: 320px; }
        .sidebar-tag { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--color-texto-secundario); margin-bottom: 20px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
        .sidebar-tag::before { content: ''; width: 15px; height: 1px; background-color: var(--color-texto-secundario); }
        .sidebar-title { font-family: var(--fuente-serif); font-size: 42px; font-weight: 400; line-height: 1.25; color: var(--color-texto-principal); }

        .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
        .collection-card { aspect-ratio: 1 / 1; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; background-size: cover; background-position: center; color: var(--color-texto-blanco); text-decoration: none; }
        .collection-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.05) 50%, transparent 100%); z-index: 1; transition: opacity 0.4s ease; }
        .collection-card:hover::before { opacity: 0.6; }
        .card-content { position: relative; z-index: 2; }
        .card-title { font-size: 18px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 8px; }
        .card-desc { font-size: 13px; font-weight: 300; line-height: 1.4; opacity: 0.85; margin-bottom: 25px; max-width: 200px; }
        .card-arrow-btn { width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.3s ease; }
        .collection-card:hover .card-arrow-btn { background-color: var(--color-texto-blanco); color: #1a1a1a; border-color: var(--color-texto-blanco); }

        .card-pisos { background-image: url('assets-fast/piso.jpg'); }
        .card-puertas { background-image: url('assets-fast/puerta.jpg'); }
        .card-revestimientos { background-image: url('assets-fast/revesti.jpg'); }

        /* ==========================================================================
           --- SECCIÓN 3: PRODUCTO DESTACADO ---
           ========================================================================= */
        .featured-section { width: 100vw; background-color: #ffffff; padding: 40px 100px 40px 100px; position: relative; z-index: 10; }
        .featured-container { display: grid; grid-template-columns: 1.1fr 1.8fr 1.1fr; gap: 50px; width: 100%; align-items: flex-start; }
        .featured-info { display: flex; flex-direction: column; padding-top: 20px; }
        .featured-tag { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--color-texto-secundario); margin-bottom: 25px; font-weight: 600; }
        .featured-title { font-family: var(--fuente-serif); font-size: 42px; font-weight: 400; line-height: 1.15; color: var(--color-texto-principal); margin-bottom: 25px; }
        .featured-description { font-size: 13px; color: var(--color-texto-secundario); line-height: 1.6; margin-bottom: 45px; max-width: 280px; }

        .benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 60px; }
        .benefit-item { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
        .benefit-icon { width: 22px; height: 22px; color: var(--color-texto-secundario); }
        .benefit-text { font-size: 10px; line-height: 1.3; color: var(--color-texto-secundario); }

        .featured-image-wrapper { width: 100%; overflow: hidden; }
        .featured-img { width: 100%; height: auto; aspect-ratio: 1.17 / 1; object-fit: cover; display: block; }

        .featured-specs { display: flex; flex-direction: column; padding-top: 20px; }
        .spec-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--color-lineas); font-size: 12px; }
        .spec-label { color: #9c9c9c; font-weight: 400; }
        .spec-value { color: var(--color-texto-principal); font-weight: 500; text-align: right; }

        .color-sampler { display: flex; gap: 15px; margin-top: 35px; margin-bottom: 65px; }
        .color-dot { width: 26px; height: 26px; border-radius: 50%; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
        .color-dot:hover { transform: scale(1.15); }
        .dot-1 { background-color: #ccb097; }
        .dot-2 { background-color: #a48a73; }
        .dot-3 { background-color: #614631; }
        .dot-4 { background-color: #241d1a; }

        /* ==========================================================================
           --- SECCIÓN 4: PROYECTOS RECIENTES ---
           ========================================================================== */
        .projects-section { width: 100vw; background-color: #ffffff; padding: 60px 100px 40px 100px; position: relative; z-index: 10; }
        .projects-header { margin-bottom: 40px; }
        .projects-tag { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--color-texto-secundario); font-weight: 600; display: flex; align-items: center; gap: 10px; }
        .projects-tag::before { content: ''; width: 15px; height: 1px; background-color: var(--color-texto-secundario); }

        .carousel-wrapper { position: relative; width: 100%; display: flex; align-items: center; }
        .projects-slider-container { width: 100%; overflow: hidden; }
        .projects-grid { display: flex; gap: 20px; width: 100%; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }

        .project-card { flex: 0 0 calc(25% - 15px); aspect-ratio: 1.35 / 1; background-size: cover; background-position: center; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; text-decoration: none; overflow: hidden; }
        .project-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 40%, transparent 100%); z-index: 1; }

        .project-card-content { position: relative; z-index: 2; color: var(--color-texto-blanco); }
        .project-name { font-size: 16px; font-weight: 600; margin-bottom: 6px; letter-spacing: 0.5px; }
        .project-location { font-size: 12px; font-weight: 300; opacity: 0.85; margin-bottom: 4px; }
        .project-details { font-size: 11px; font-weight: 300; opacity: 0.7; }

        .carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border: 1px solid var(--color-lineas); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--color-texto-secundario); background-color: #ffffff; cursor: pointer; z-index: 12; transition: all 0.3s ease; }
        .carousel-arrow:hover { border-color: var(--color-texto-secundario); color: var(--color-texto-principal); transform: translateY(-50%) scale(1.05); }
        .arrow-left { left: -22px; }
        .arrow-right { right: -22px; }

        .projects-footer { width: 100%; display: flex; justify-content: center; margin-top: 50px; }

        /* ==========================================================================
           --- SECCIÓN 5: EXPERIENCIA COMPLETA ---
           ========================================================================== */
        .experience-section { width: 100vw; background-color: var(--color-fondo-solido); padding: 90px 100px 60px 100px; position: relative; z-index: 10; }
        .experience-container { display: grid; grid-template-columns: 1fr 3.4fr; gap: 40px; width: 100%; align-items: flex-start; }
        .experience-intro { max-width: 260px; padding-top: 5px; }
        .experience-headline { font-family: var(--fuente-serif); font-size: 38px; font-weight: 400; line-height: 1.15; color: var(--color-texto-principal); margin-bottom: 25px; }
        .experience-sub { font-size: 13px; line-height: 1.6; color: var(--color-texto-secundario); }

        .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; }
        .step-cell { padding: 0 35px; display: flex; align-items: flex-start; gap: 20px; position: relative; }
        .step-cell:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 5%; width: 1px; height: 90%; background-color: var(--color-lineas); }
        .step-cell:first-child { padding-left: 0; }
        .step-icon-wrapper { flex-shrink: 0; color: var(--color-texto-principal); padding-top: 2px; }
        .step-icon { width: 32px; height: 32px; stroke-width: 1.0; }
        .step-text-block { display: flex; flex-direction: column; align-items: flex-start; }
        .step-meta { font-size: 10px; color: #a1958a; margin-bottom: 8px; font-weight: 500; }
        .step-title { font-size: 14px; font-weight: 600; color: var(--color-texto-principal); margin-bottom: 12px; letter-spacing: 0.1px; }
        .step-desc { font-size: 12px; line-height: 1.5; color: var(--color-texto-secundario); font-weight: 300; }

        /* ==========================================================================
           --- SECCIÓN 6: CONFIGURADOR INTERACTIVO ---
           ========================================================================== */
        .configurator-section { width: 100vw; background-color: #ffffff; padding: 80px 100px; position: relative; z-index: 10; }
        .floor-renewal-container { display: grid; grid-template-columns: minmax(250px, 0.7fr) minmax(0, 2.3fr); gap: clamp(40px, 5vw, 90px); width: 100%; align-items: center; }
        .config-cta-block { display: flex; flex-direction: column; align-items: flex-start; }
        .config-tag { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--color-texto-secundario); margin-bottom: 25px; font-weight: 600; }
        .config-title { font-family: var(--fuente-serif); font-size: 38px; font-weight: 400; line-height: 1.2; color: var(--color-texto-principal); margin-bottom: 25px; }
        .config-desc { font-size: 13px; line-height: 1.6; color: var(--color-texto-secundario); margin-bottom: 38px; max-width: 320px; }
        .btn-black-config { background-color: var(--color-texto-principal); color: #ffffff; padding: 16px 36px; font-size: 11px; text-transform: uppercase; letter-spacing: 2.5px; text-decoration: none; display: inline-flex; align-items: center; gap: 20px; font-weight: 400; transition: opacity 0.3s ease; }
        .btn-black-config:hover { opacity: 0.9; }

        .floor-renewal-comparison { min-width: 0; }
        .split-slider-frame { width: 100%; aspect-ratio: 2.15 / 1; position: relative; overflow: hidden; user-select: none; cursor: ew-resize; touch-action: pan-y; background: #eceae6; box-shadow: 0 12px 35px rgba(24, 28, 35, 0.12); }
        .split-layer-bg { width: 100%; height: 100%; background-image: url('despues.png'); background-size: cover; background-position: center; }
        .split-layer-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; clip-path: inset(0 50% 0 0); background-image: url('antes.png'); background-size: cover; background-position: center; background-repeat: no-repeat; z-index: 2; }
        .split-handle { position: absolute; top: 0; left: 50%; width: 2px; height: 100%; background-color: #ffffff; z-index: 3; cursor: ew-resize; transform: translateX(-50%); }
        .split-handle-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; background-color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--color-texto-principal); box-shadow: 0 4px 10px rgba(0,0,0,0.1); pointer-events: none; }
        .comparison-label { position: absolute; bottom: 18px; z-index: 4; padding: 8px 12px; background: rgba(255, 255, 255, 0.9); color: #24272d; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; pointer-events: none; white-space: nowrap; }
        .comparison-label-before { left: 18px; }
        .comparison-label-after { right: 18px; }
        /* ==========================================================================
           --- SECCIÓN 7: OPINIONES ---
           ========================================================================== */
        .reviews-section { width: 100vw; background-color: #ffffff; padding: 80px 0 40px 0; position: relative; z-index: 10; display: flex; flex-direction: column; gap: 25px; overflow: hidden; }
        .reviews-section::before { content: ''; position: absolute; top: 0; left: 0; width: 250px; height: 100%; background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0.95) 25%, rgba(255,255,255,0.6) 60%, transparent 100%); z-index: 12; pointer-events: none; }
        .reviews-section::after { content: ''; position: absolute; top: 0; right: 0; width: 250px; height: 100%; background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0.95) 25%, rgba(255,255,255,0.6) 60%, transparent 100%); z-index: 12; pointer-events: none; }
        .reviews-marquee-row { display: flex; width: max-content; height: 205px; align-items: center; }
        .marquee-to-left { animation: scrollLeft 35s linear infinite; }
        .marquee-to-right { animation: scrollRight 35s linear infinite; }
        .reviews-marquee-row:hover { animation-play-state: paused; }
        .reviews-group { display: flex; gap: 25px; padding-right: 25px; }

        .review-card { width: 380px; height: 185px; background-color: #ffffff; border: 1px solid #eee; padding: 25px 30px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 0px; }
        .review-stars { display: flex; gap: 3px; color: var(--color-oro-fino); margin-bottom: 12px; }
        .star-icon { width: 13px; height: 13px; fill: currentColor; }
        .review-body { font-size: 13px; line-height: 1.55; color: var(--color-texto-principal); font-weight: 300; }
        .review-author-info { display: flex; align-items: center; gap: 8px; padding-top: 12px; }
        .review-author { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--color-texto-principal); }

        @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        @keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

        /* ==========================================================================
           --- SECCIÓN 8: PREGUNTAS FRECUENTES (FAQ) ---
           ========================================================================== */
        .faq-section { width: 100vw; background-color: #ffffff; padding: 60px 100px 100px 100px; position: relative; z-index: 10; }
        .faq-container { display: grid; grid-template-columns: 1fr 2.5fr; gap: 60px; width: 100%; }
        .faq-sidebar { max-width: 300px; }
        .faq-tag { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--color-texto-secundario); margin-bottom: 20px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
        .faq-tag::before { content: ''; width: 15px; height: 1px; background-color: var(--color-texto-secundario); }
        .faq-title { font-family: var(--fuente-serif); font-size: 42px; font-weight: 400; line-height: 1.2; color: var(--color-texto-principal); }
        
        .faq-accordion-wrapper { width: 100%; display: flex; flex-direction: column; }
        .faq-item { border-bottom: 1px solid var(--color-lineas); width: 100%; }
        .faq-trigger { width: 100%; background: none; border: none; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; text-align: left; cursor: pointer; color: var(--color-texto-principal); font-family: var(--fuente-sans); font-size: 15px; font-weight: 500; letter-spacing: 0.2px; transition: color 0.3s; }
        .faq-trigger:hover { color: var(--color-texto-secundario); }
        .faq-icon-status { font-size: 18px; font-weight: 300; color: var(--color-texto-principal); transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
        .faq-response-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
        .faq-response-content { font-size: 13.5px; line-height: 1.6; color: var(--color-texto-secundario); font-weight: 300; padding-bottom: 24px; max-width: 680px; }
        .faq-item.active .faq-icon-status { transform: rotate(45deg); }


        /* ==========================================================================
           --- REDISEÑO ABSOLUTO: SECCIÓN 9: FOOTER EDITORIAL DE ALTA GAMA ---
           ========================================================================== */
        footer {
            width: 100vw;
            background-color: var(--color-fondo-solido); 
            padding: 120px 100px 60px 100px; /* Mucho aire tipográfico */
            position: relative;
            z-index: 10;
            border-top: 1px solid var(--color-lineas);
        }

        .footer-main-layout {
            display: grid;
            grid-template-columns: 2fr 1fr; /* Bloque izquierdo enorme, derecho compacto */
            gap: 100px;
            width: 100%;
            margin-bottom: 100px;
        }

        /* Bloque Izquierdo: Titular imponente */
        .footer-headline-block {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-big-title {
            font-family: var(--fuente-serif);
            font-size: 56px;
            font-weight: 400;
            line-height: 1.15;
            color: var(--color-texto-principal);
            max-width: 600px;
            margin-bottom: 40px;
        }

        /* Bloque Derecho: Columnas de datos planos ordenados */
        .footer-data-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            width: 100%;
        }

        .footer-info-cell {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-info-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: #1a1a1a;
            font-weight: 700;
        }

        .footer-info-value {
            font-size: 13.5px;
            line-height: 1.6;
            color: var(--color-texto-secundario);
            font-weight: 300;
            text-decoration: none;
        }

        /* --- CORRECCIÓN: REDES TEXTUALES SIN ICONOS GENÉRICOS --- */
        .footer-text-socials {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-social-link {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-texto-secundario);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .footer-social-link:hover {
            color: var(--color-texto-principal);
        }

        /* Barra de Cierre Fina */
        .footer-bottom-bar {
            width: 100%;
            border-top: 1px solid var(--color-lineas);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            color: #a49c94;
            font-weight: 300;
            letter-spacing: 0.3px;
        }

        .footer-legal-links {
            display: flex;
            gap: 30px;
        }

        .footer-legal-links a {
            color: #a49c94;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-legal-links a:hover { color: var(--color-texto-principal); }

        /* --- PÁGINAS BASE DE CATÁLOGO --- */
        .page-navbar {
            padding: 0 100px;
            background-color: var(--color-fondo-solido);
            border-bottom: 1px solid var(--color-lineas);
        }

        .catalog-page {
            min-height: calc(100vh - var(--header-height));
            background-color: #ffffff;
            padding: 80px 100px 100px 100px;
        }

        .catalog-hero {
            display: grid;
            grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
            gap: 70px;
            align-items: end;
            margin-bottom: 60px;
        }

        .catalog-kicker {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--color-texto-secundario);
            font-weight: 600;
            margin-bottom: 18px;
        }

        .catalog-title {
            font-family: var(--fuente-serif);
            font-size: 56px;
            font-weight: 400;
            line-height: 1.1;
            color: var(--color-texto-principal);
        }

        .catalog-intro {
            font-size: 15px;
            line-height: 1.7;
            color: var(--color-texto-secundario);
            max-width: 620px;
        }

        .catalog-stage {
            border-top: 1px solid var(--color-lineas);
            padding-top: 34px;
        }

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

        .catalog-slot {
            min-height: 260px;
            border: 1px solid var(--color-lineas);
            background: #fbfaf8;
            display: flex;
            align-items: flex-end;
            padding: 28px;
        }

        .catalog-slot-title {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-texto-principal);
            font-weight: 600;
        }

        /* --- CATÁLOGO DE PUERTAS --- */
        .door-catalog-page {
            background: #ffffff;
            padding-top: 58px;
        }

        .door-catalog-hero {
            grid-template-columns: 220px 1fr;
            gap: 46px;
            align-items: start;
            margin-bottom: 34px;
        }

        .door-catalog-layout {
            display: grid;
            grid-template-columns: 230px minmax(0, 1fr);
            gap: 42px;
            align-items: start;
        }

        .door-filters {
            position: sticky;
            top: 24px;
            align-self: start;
            display: flex;
            flex-direction: column;
            gap: 18px;
            padding-top: 4px;
        }

        .door-filter-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 4px;
        }

        .door-filter-head h2 {
            font-size: 13px;
            font-weight: 600;
            color: var(--color-texto-principal);
        }

        .door-filter-clear {
            border: 0;
            background: transparent;
            color: #a8a8a8;
            font-family: var(--fuente-sans);
            font-size: 11px;
            cursor: pointer;
        }

        .door-filter-clear:hover { color: var(--color-texto-principal); }

        .door-filter-group {
            display: flex;
            flex-direction: column;
            gap: 11px;
        }

        .door-filter-toggle {
            width: 100%;
            height: 36px;
            border: 1px solid #1a1a1a;
            background: #ffffff;
            color: var(--color-texto-principal);
            font-family: var(--fuente-sans);
            font-size: 11px;
            text-align: left;
            padding: 0 12px;
            text-transform: uppercase;
            letter-spacing: 1.4px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .door-filter-toggle::after {
            content: '+';
            font-size: 14px;
            line-height: 1;
        }

        .door-check {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 12px;
            line-height: 1.2;
            color: var(--color-texto-secundario);
            cursor: pointer;
        }

        .door-check input {
            width: 14px;
            height: 14px;
            accent-color: #1a1a1a;
        }

        .door-filter-apply {
            height: 44px;
            border: 1px solid #1a1a1a;
            background: #1a1a1a;
            color: #ffffff;
            font-family: var(--fuente-sans);
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease;
        }

        .door-filter-apply:hover {
            background: #ffffff;
            color: #1a1a1a;
        }

        .door-results-top {
            min-height: 26px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-bottom: 14px;
            color: var(--color-texto-secundario);
            font-size: 12px;
        }

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

        .door-card {
            border: 0;
            background: transparent;
            padding: 0;
            display: block;
            width: 100%;
            text-align: left;
            color: var(--color-texto-principal);
            font-family: var(--fuente-sans);
            cursor: pointer;
        }

        .door-card[hidden] {
            display: none;
        }

        .door-card-media {
            background: #f5f5f5;
            aspect-ratio: 1 / 1.26;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            padding: 26px;
        }

        .door-card-media::before {
            content: '';
            position: absolute;
            left: 18%;
            right: 18%;
            bottom: 12%;
            height: 22%;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
            filter: blur(7px);
            opacity: 0.75;
            pointer-events: none;
        }

        .door-card-media img {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            transition: transform 0.35s ease;
        }

        .door-card:hover .door-card-media img {
            transform: scale(1.035);
        }

        .door-card-code {
            display: block;
            margin-top: 14px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .door-card-meta {
            margin-top: 5px;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            font-size: 11px;
            color: var(--color-texto-secundario);
            text-transform: capitalize;
        }

        .door-empty {
            margin-top: 30px;
            color: var(--color-texto-secundario);
            font-size: 14px;
        }

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

        .door-preview-modal {
            position: fixed;
            inset: 0;
            z-index: 100;
            display: grid;
            place-items: center;
            padding: 34px;
        }

        .door-preview-backdrop {
            position: absolute;
            inset: 0;
            border: 0;
            background: rgba(16, 16, 16, 0.55);
            cursor: pointer;
        }

        .door-preview-dialog {
            position: relative;
            z-index: 1;
            width: min(1120px, 100%);
            max-height: min(760px, calc(100vh - 68px));
            background: #ffffff;
            display: grid;
            grid-template-columns: minmax(0, 1.45fr) 320px;
            overflow: hidden;
            box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
        }

        .door-preview-close {
            position: absolute;
            top: 18px;
            right: 18px;
            z-index: 3;
            width: 38px;
            height: 38px;
            border: 1px solid rgba(26, 26, 26, 0.18);
            background: #ffffff;
            color: #1a1a1a;
            font-size: 26px;
            line-height: 1;
            cursor: pointer;
        }

        .door-preview-scene {
            min-height: 620px;
            position: relative;
            overflow: hidden;
            background-image: url('assets-fast/pisopuerta1.jpg');
            background-size: cover;
            background-position: center;
        }

        .door-preview-scene::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(255,255,255,0.05), rgba(255,255,255,0.16));
            pointer-events: none;
        }

        .door-preview-img {
            position: absolute;
            right: 8%;
            bottom: 4%;
            z-index: 2;
            width: 34%;
            height: 82%;
            object-fit: contain;
            object-position: center bottom;
            filter: drop-shadow(0 24px 34px rgba(0,0,0,0.18));
        }

        .door-preview-info {
            padding: 72px 34px 34px 34px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            border-left: 1px solid var(--color-lineas);
        }

        .door-preview-info h2 {
            font-family: var(--fuente-serif);
            font-size: 38px;
            line-height: 1.1;
            font-weight: 400;
            margin-bottom: 16px;
        }

        .door-preview-info p:last-child {
            color: var(--color-texto-secundario);
            font-size: 13px;
            text-transform: capitalize;
        }

        /* --- CATÁLOGO DE PISOS --- */
        .floor-catalog-page {
            background: #ffffff;
            padding-top: 58px;
        }

        .floor-catalog-hero {
            grid-template-columns: 220px 1fr;
            gap: 46px;
            align-items: start;
            margin-bottom: 34px;
        }

        .floor-catalog-layout {
            display: grid;
            grid-template-columns: 230px minmax(0, 1fr);
            gap: 42px;
            align-items: start;
        }

        .floor-filters {
            position: sticky;
            top: 24px;
            align-self: start;
            display: flex;
            flex-direction: column;
            gap: 18px;
            padding-top: 4px;
        }

        .floor-filter-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 4px;
        }

        .floor-filter-head h2 {
            font-size: 13px;
            font-weight: 600;
            color: var(--color-texto-principal);
        }

        .floor-filter-clear {
            border: 0;
            background: transparent;
            color: #a8a8a8;
            font-family: var(--fuente-sans);
            font-size: 11px;
            cursor: pointer;
        }

        .floor-filter-clear:hover { color: var(--color-texto-principal); }

        .floor-filter-group {
            display: flex;
            flex-direction: column;
            gap: 11px;
        }

        .floor-filter-toggle {
            width: 100%;
            height: 36px;
            border: 1px solid #1a1a1a;
            background: #ffffff;
            color: var(--color-texto-principal);
            font-family: var(--fuente-sans);
            font-size: 11px;
            text-align: left;
            padding: 0 12px;
            text-transform: uppercase;
            letter-spacing: 1.4px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .floor-filter-toggle::after {
            content: '+';
            font-size: 14px;
            line-height: 1;
        }

        .floor-check {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 12px;
            line-height: 1.2;
            color: var(--color-texto-secundario);
            cursor: pointer;
        }

        .floor-check input {
            width: 14px;
            height: 14px;
            accent-color: #1a1a1a;
        }

        .floor-filter-apply {
            height: 44px;
            border: 1px solid #1a1a1a;
            background: #1a1a1a;
            color: #ffffff;
            font-family: var(--fuente-sans);
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease;
        }

        .floor-filter-apply:hover {
            background: #ffffff;
            color: #1a1a1a;
        }

        .floor-results-top {
            min-height: 26px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-bottom: 14px;
            color: var(--color-texto-secundario);
            font-size: 12px;
        }

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

        .floor-card {
            color: var(--color-texto-principal);
        }

        .floor-card[hidden] {
            display: none;
        }

        .floor-card-media {
            background: #f5f5f5;
            aspect-ratio: 1 / 1.05;
            overflow: hidden;
        }

        .floor-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.35s ease;
        }

        .floor-card:hover .floor-card-media img {
            transform: scale(1.035);
        }

        .floor-card-title {
            margin-top: 14px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .floor-card-meta {
            margin-top: 5px;
            font-size: 11px;
            color: var(--color-texto-secundario);
        }

        .floor-empty {
            margin-top: 30px;
            color: var(--color-texto-secundario);
            font-size: 14px;
        }



        /* --- PÁGINA DE PROYECTOS --- */
        .projects-gallery-body {
            background: #ececeb;
        }

        .projects-gallery-page {
            min-height: calc(100vh - var(--header-height));
            background: #ececeb;
            padding: 58px 0 96px 0;
        }

        .projects-gallery-shell {
            width: min(1460px, calc(100vw - 120px));
            margin: 0 auto;
            background: #ffffff;
            padding: 56px 58px 68px 58px;
            box-shadow: 0 24px 70px rgba(36, 29, 23, 0.12);
        }

        .projects-gallery-intro {
            display: grid;
            grid-template-columns: minmax(250px, 0.9fr) minmax(320px, 1.1fr);
            gap: 42px;
            align-items: end;
            padding-bottom: 34px;
        }

        .projects-gallery-kicker {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--color-texto-secundario);
            margin-bottom: 16px;
            font-weight: 600;
        }

        .projects-gallery-title {
            font-family: var(--fuente-serif);
            font-size: clamp(52px, 6vw, 92px);
            font-weight: 400;
            line-height: 0.96;
            color: var(--color-texto-principal);
            letter-spacing: 0;
        }

        .projects-gallery-copy {
            color: var(--color-texto-secundario);
            font-size: 14px;
            line-height: 1.8;
            max-width: 520px;
            margin-left: auto;
        }

        .projects-masonry {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            grid-auto-flow: dense;
            gap: 14px;
        }

        .project-gallery-item {
            position: relative;
            overflow: hidden;
            background: #f2efeb;
            min-height: 180px;
        }

        .project-gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255, 255, 255, 0.5);
            pointer-events: none;
        }

        .project-gallery-img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .project-gallery-item:hover .project-gallery-img {
            transform: scale(1.035);
        }

        .project-gallery-item.is-square {
            grid-column: span 2;
            aspect-ratio: 1 / 1;
        }

        .project-gallery-item.is-large {
            grid-column: span 3;
            grid-row: span 2;
            aspect-ratio: 1 / 1;
        }

        .project-gallery-item.is-wide {
            grid-column: span 4;
            aspect-ratio: 1.58 / 1;
        }

        .project-gallery-item.is-landscape {
            grid-column: span 3;
            aspect-ratio: 1.42 / 1;
        }

        .project-gallery-item.is-tall,
        .project-gallery-item.is-portrait {
            grid-column: span 2;
            grid-row: span 2;
            aspect-ratio: 0.72 / 1;
        }

        /* --- GLOBAL ANIMATION CLASSES --- */
        .animate-fade-left, .animate-fade-right, .animate-fade-up { opacity: 0; transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1); }
        .animate-fade-left { transform: translateX(-30px); }
        .animate-fade-right { transform: translateX(30px); }
        .animate-fade-up { transform: translateY(40px); }
        .animated { opacity: 1; transform: translate(0); }

        .catalog-page .animate-fade-left,
        .catalog-page .animate-fade-right,
        .catalog-page .animate-fade-up {
            opacity: 1;
            transform: none;
        }

        /* --- RESPONSIVE GENERAL --- */
        @media (max-width: 1200px) {
            :root { --header-height: 100px; }
            .brand-link, .brand-logo { width: 250px; height: 100px; }
            .nav-actions { gap: 26px; }
            .nav-links { gap: 22px; }
            .nav-links a, .btn-asesoramiento { letter-spacing: 2px; }
            .collections-container, .experience-container, .floor-renewal-container, .faq-container { grid-template-columns: 1fr; gap: 40px; }
            .collections-section, .featured-section, .projects-section, .experience-section, .configurator-section, .faq-section, footer { padding: 40px; }
            .projects-gallery-page { padding: 40px 0 76px 0; }
            .projects-gallery-shell { width: calc(100vw - 80px); padding: 42px 40px 52px 40px; }
            .projects-masonry { grid-template-columns: repeat(6, minmax(0, 1fr)); }
            .project-gallery-item.is-square, .project-gallery-item.is-tall, .project-gallery-item.is-portrait { grid-column: span 2; }
            .project-gallery-item.is-large, .project-gallery-item.is-wide, .project-gallery-item.is-landscape { grid-column: span 4; }
            .featured-container { grid-template-columns: 1fr; gap: 40px; }
            .project-card { flex: 0 0 calc(50% - 10px); } 
            .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
            .config-panel-controls { padding-left: 0; }
            .reviews-section { padding: 50px 0; }
            .reviews-section::before, .reviews-section::after { width: 120px; } 

            .footer-main-layout { grid-template-columns: 1fr; gap: 60px; margin-bottom: 60px; }
            .page-navbar { padding: 0 40px; }
            .catalog-page { padding: 60px 40px 80px 40px; }
            .catalog-hero { grid-template-columns: 1fr; gap: 24px; }
            .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .door-catalog-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 30px; }
            .door-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .door-preview-dialog { grid-template-columns: 1fr; overflow-y: auto; }
            .door-preview-scene { min-height: 520px; }
            .door-preview-info { border-left: 0; border-top: 1px solid var(--color-lineas); padding: 34px; }
            .floor-catalog-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 30px; }
            .floor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }

        @media (max-width: 900px) {
            :root { --header-height: 86px; }
            .hero-container { min-height: 720px; height: 90vh; padding: 0 30px 86px 30px; }
            .brand-link, .brand-logo { width: 190px; height: 76px; }
            .hero-slide-bg { background-position: 65% center; }
            .hero-container::after { width: 100%; background: linear-gradient(to bottom, rgba(247, 245, 242, 0.95) 0%, rgba(247, 245, 242, 0.85) 60%, transparent 100%); }
            .nav-actions { display: none; }
            .menu-hamburger {
                position: fixed;
                top: 22px;
                right: auto;
                left: min(calc(100vw - 70px), 320px);
                z-index: 1000;
                width: 44px;
                height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--color-fondo-solido);
                border: 1px solid var(--color-lineas);
                line-height: 1;
            }
            .main-wrapper { margin-top: 20px; }
            .scroll-hint {
            position: absolute;
            left: 100px;
            right: auto;
            bottom: 42px;
            z-index: 8;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 12px 16px;
            color: var(--color-texto-principal);
            background: rgba(247, 245, 242, 0.92);
            border: 1px solid rgba(26, 26, 26, 0.16);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 10px;
            letter-spacing: 2.4px;
            font-weight: 600;
        }

        .scroll-hint-kicker {
            color: var(--color-texto-secundario);
        }

        .scroll-hint-text {
            white-space: nowrap;
        }

        .scroll-hint-line { height: 38px; }
            .projects-gallery-shell { width: calc(100vw - 36px); padding: 30px 18px 34px 18px; box-shadow: 0 16px 44px rgba(36, 29, 23, 0.12); }
            .projects-gallery-intro { grid-template-columns: 1fr; gap: 18px; padding-bottom: 24px; }
            .projects-gallery-copy { margin-left: 0; font-size: 13px; }
            .projects-masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
            .project-gallery-item.is-square, .project-gallery-item.is-large, .project-gallery-item.is-wide, .project-gallery-item.is-landscape, .project-gallery-item.is-tall, .project-gallery-item.is-portrait { grid-column: span 1; grid-row: auto; }
            .pagination-container { margin-right: 25px; }
            .title { font-size: 38px; margin-bottom: 35px; }
            .category-tag { font-size: 10px; margin-bottom: 15px; letter-spacing: 2px; }

            .cards-grid { grid-template-columns: 1fr; gap: 20px; }
            .collection-card { padding: 30px; }
            .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            
            .carousel-arrow { width: 36px; height: 36px; font-size: 14px; }
            .arrow-left { left: -10px; }
            .arrow-right { right: -10px; }
            .projects-grid { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 15px; }
            .project-card { flex: 0 0 280px; scroll-snap-align: start; }

            .steps-grid { grid-template-columns: 1fr; gap: 30px 0; }
            .step-cell { padding: 0; }
            .step-cell:first-child { padding-left: 0; }
            
            .reviews-marquee-row { height: 180px; }
            .review-card { width: 310px; height: 160px; padding: 20px; }
            .reviews-section::before, .reviews-section::after { width: 60px; } 

            .faq-title { font-size: 32px; }
            .faq-trigger { padding: 18px 0; font-size: 14px; }

            .footer-big-title { font-size: 36px; margin-bottom: 30px; }
            .footer-data-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom-bar { flex-direction: column; gap: 20px; text-align: center; }
            .page-navbar { padding: 0 30px; }
            .catalog-page { padding: 44px 30px 70px 30px; }
            .catalog-title { font-size: 40px; }
            .catalog-grid { grid-template-columns: 1fr; }
            .catalog-slot { min-height: 180px; }
            .door-catalog-hero { margin-bottom: 28px; }
            .door-catalog-layout { grid-template-columns: 1fr; gap: 34px; }
            .door-filters { position: static; }
            .door-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 16px; }
            .door-results-top { justify-content: flex-start; }
            .door-preview-modal { padding: 18px; }
            .door-preview-dialog { max-height: calc(100vh - 36px); }
            .door-preview-scene { min-height: 430px; }
            .door-preview-img { right: 7%; width: 42%; height: 78%; }
            .floor-catalog-hero { margin-bottom: 28px; }
            .floor-catalog-layout { grid-template-columns: 1fr; gap: 34px; }
            .floor-filters { position: static; }
            .floor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 16px; }
            .floor-results-top { justify-content: flex-start; }
        }

        @media (max-width: 560px) {
            .hero-container { min-height: 680px; height: 88vh; }
            .projects-gallery-page { padding: 24px 0 58px 0; }
            .projects-gallery-title { font-size: 44px; }
            .project-gallery-item { min-height: 142px; }
            .door-grid { grid-template-columns: 1fr; }
            .door-card-media { aspect-ratio: 1 / 1.12; }
            .door-preview-scene { min-height: 360px; }
            .door-preview-info h2 { font-size: 30px; }
            .floor-grid { grid-template-columns: 1fr; }
        }

        /* --- AJUSTE FINAL BANNER MOBILE --- */
        @media (max-width: 900px) {
            .scroll-hint {
                left: 30px !important;
                right: auto !important;
                bottom: 26px !important;
                display: inline-flex !important;
                gap: 12px !important;
                padding: 11px 13px !important;
                letter-spacing: 1.8px !important;
                background: rgba(247, 245, 242, 0.94) !important;
            }

            .scroll-hint-kicker {
                display: none !important;
            }
        }

/* --- PROYECTOS EDITORIAL V4 --- */
.projects-gallery-body {
    background: #e9e1d8;
}

.projects-gallery-body .projects-topbar {
    width: min(1180px, calc(100vw - 96px));
    margin: 54px auto 0 auto;
    padding: 0 56px;
    background: #ffffff;
    border-bottom: 0;
    box-shadow: 0 16px 45px rgba(42, 34, 27, 0.08);
}

.projects-board-page {
    background: #e9e1d8;
    padding: 0 0 90px 0;
}

.projects-board-sheet {
    width: min(1180px, calc(100vw - 96px));
    margin: 0 auto;
    background: #ffffff;
    padding: 44px 56px 64px 56px;
    box-shadow: 0 24px 70px rgba(42, 34, 27, 0.14);
}

.projects-board-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 12px;
}

.projects-board-copy {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 46px 34px 0;
}

.projects-board-kicker {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-texto-secundario);
    font-weight: 600;
    margin-bottom: 18px;
}

.projects-board-title {
    font-family: var(--fuente-serif);
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--color-texto-principal);
    margin-bottom: 22px;
}

.projects-board-text {
    max-width: 470px;
    font-size: 13px;
    line-height: 1.8;
    color: var(--color-texto-secundario);
}

.projects-board-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.project-shot {
    width: 100%;
    aspect-ratio: 1.48 / 1;
    margin: 0;
    overflow: hidden;
    background: #f2efeb;
}

.project-shot img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 900px) {
    .projects-gallery-body .projects-topbar {
        width: calc(100vw - 28px);
        margin-top: 22px;
        padding: 0 22px;
    }

    .projects-board-page {
        padding-bottom: 44px;
    }

    .projects-board-sheet {
        width: calc(100vw - 28px);
        padding: 24px 14px 28px 14px;
    }

    .projects-board-hero {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 10px;
    }

    .projects-board-copy {
        min-height: auto;
        padding: 24px 10px 18px 10px;
    }

    .projects-board-title {
        font-size: 42px;
    }

    .projects-board-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .project-shot {
        aspect-ratio: 1.18 / 1;
    }
}

@media (max-width: 520px) {
    .projects-board-grid {
        gap: 7px;
    }

    .projects-board-text {
        font-size: 12px;
    }
}

/* --- PROYECTOS FULL PAGE V6 --- */
.projects-gallery-body {
    background: #ffffff !important;
}

.projects-gallery-body .projects-topbar {
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 100px !important;
    background: #ffffff !important;
    border-bottom: 1px solid var(--color-lineas) !important;
    box-shadow: none !important;
}

.projects-board-page {
    width: 100vw !important;
    min-height: calc(100vh - var(--header-height)) !important;
    background: #ffffff !important;
    padding: 0 !important;
}

.projects-board-sheet {
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 72px 100px 96px 100px !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

.projects-board-hero {
    display: grid !important;
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr) !important;
    gap: 24px !important;
    align-items: stretch !important;
    margin-bottom: 24px !important;
}

.projects-board-copy {
    min-height: 420px !important;
    padding: 42px 7vw 42px 0 !important;
}

.projects-board-text {
    max-width: 560px !important;
}

.projects-board-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    width: 100% !important;
}

.project-shot {
    aspect-ratio: 1.35 / 1 !important;
    background: #f2efeb !important;
}

.project-shot-featured {
    aspect-ratio: 1.35 / 1 !important;
}

@media (max-width: 1200px) {
    .projects-gallery-body .projects-topbar {
        padding: 0 40px !important;
    }

    .projects-board-sheet {
        padding: 54px 40px 74px 40px !important;
    }

    .projects-board-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }
}

@media (max-width: 900px) {
    .projects-gallery-body .projects-topbar {
        width: 100vw !important;
        margin: 0 !important;
        padding: 0 30px !important;
    }

    .projects-board-sheet {
        width: 100vw !important;
        padding: 34px 18px 52px 18px !important;
    }

    .projects-board-hero {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
    }

    .projects-board-copy {
        min-height: auto !important;
        padding: 24px 10px 20px 10px !important;
    }

    .projects-board-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .project-shot,
    .project-shot-featured {
        aspect-ratio: 1.12 / 1 !important;
    }
}
/* --- SCROLL HINT SUTIL V9 --- */
.scroll-hint {
    position: absolute !important;
    left: 100px !important;
    right: auto !important;
    bottom: 70px !important;
    z-index: 8 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(26, 26, 26, 0.62) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-size: 10px !important;
    line-height: 1 !important;
    letter-spacing: 2.2px !important;
    font-weight: 500 !important;
}

.scroll-hint-kicker,
.scroll-hint-line {
    display: none !important;
}

.scroll-hint-text {
    white-space: nowrap !important;
}

.scroll-hint:hover {
    color: var(--color-texto-principal) !important;
}

@media (max-width: 900px) {
    .scroll-hint {
        left: 30px !important;
        bottom: 58px !important;
        font-size: 9px !important;
        letter-spacing: 1.7px !important;
        background: transparent !important;
        padding: 0 !important;
        border: 0 !important;
    }
}
/* --- MOBILE HEADER Y BARRA INFERIOR V10 --- */
.mobile-bottom-nav {
    display: none;
}

.menu-hamburger .hamburger-line {
    display: none;
}

@media (max-width: 900px) {
    body {
        padding-bottom: calc(96px + env(safe-area-inset-bottom));
    }

    .navbar,
    .page-navbar {
        justify-content: center !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .navbar .brand-link,
    .page-navbar .brand-link {
        margin: 0 auto !important;
        width: 190px !important;
        height: 76px !important;
        justify-content: center !important;
    }

    .navbar .brand-logo,
    .page-navbar .brand-logo {
        width: 190px !important;
        height: 76px !important;
    }

    .nav-actions {
        display: none !important;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 50%;
        bottom: calc(10px + env(safe-area-inset-bottom));
        transform: translateX(-50%);
        z-index: 990;
        display: grid;
        grid-template-columns: 1fr 86px 1fr;
        align-items: center;
        width: min(360px, calc(100vw - 22px));
        height: 66px;
        padding: 0 14px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(26, 26, 26, 0.08);
        border-radius: 26px;
        box-shadow: 0 18px 46px rgba(20, 22, 32, 0.18);
        backdrop-filter: blur(14px);
    }

    .mobile-bottom-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        min-width: 0;
        height: 100%;
        color: #252736;
        text-decoration: none;
        text-transform: none;
        font-size: 9px;
        line-height: 1;
        letter-spacing: 0;
        font-weight: 600;
    }

    .mobile-bottom-center-space {
        display: block;
        width: 86px;
        height: 1px;
    }

    .mobile-bottom-icon {
        position: relative;
        display: block;
        width: 19px;
        height: 19px;
        color: currentColor;
    }

    .mobile-bottom-home::before {
        content: '';
        position: absolute;
        left: 4px;
        bottom: 3px;
        width: 11px;
        height: 9px;
        border: 2px solid currentColor;
        border-top: 0;
        border-radius: 2px;
    }

    .mobile-bottom-home::after {
        content: '';
        position: absolute;
        left: 4px;
        top: 2px;
        width: 10px;
        height: 10px;
        border-left: 2px solid currentColor;
        border-top: 2px solid currentColor;
        transform: rotate(45deg);
        border-radius: 2px 0 0 0;
    }

    .mobile-bottom-contact::before {
        content: '';
        position: absolute;
        inset: 3px;
        border: 2px solid currentColor;
        border-radius: 50%;
    }

    .mobile-bottom-contact::after {
        content: '';
        position: absolute;
        right: 2px;
        bottom: 2px;
        width: 6px;
        height: 6px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(20deg);
        border-radius: 0 0 5px 0;
    }

    .menu-hamburger {
        position: fixed !important;
        top: auto !important;
        right: auto !important;
        left: 50% !important;
        bottom: calc(20px + env(safe-area-inset-bottom)) !important;
        transform: translateX(-50%) !important;
        z-index: 1002 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 64px !important;
        height: 64px !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 50% !important;
        background: #2d3145 !important;
        color: #ffffff !important;
        box-shadow: 0 16px 34px rgba(45, 49, 69, 0.32) !important;
        font-size: 0 !important;
        line-height: 1 !important;
        cursor: pointer !important;
    }

    .menu-hamburger::before {
        display: none !important;
        content: none !important;
    }

    .menu-hamburger .hamburger-line {
        position: absolute;
        left: 50%;
        display: block !important;
        height: 6px;
        background: #ffffff;
        border-radius: 999px;
        transform: translateX(-50%);
        transition: top 0.22s ease, width 0.22s ease, transform 0.22s ease, opacity 0.18s ease;
    }

    .hamburger-line-top {
        top: 17px;
        width: 34px;
    }

    .hamburger-line-middle {
        top: 29px;
        width: 46px;
    }

    .hamburger-line-bottom {
        top: 41px;
        width: 34px;
    }

    body.menu-open .menu-hamburger {
        top: auto !important;
        bottom: calc(20px + env(safe-area-inset-bottom)) !important;
        left: 50% !important;
        width: 64px !important;
        height: 64px !important;
        background: #202435 !important;
        border: 0 !important;
        transform: translateX(-50%) !important;
    }

    body.menu-open .hamburger-line-top {
        top: 29px;
        width: 38px;
        transform: translateX(-50%) rotate(45deg);
    }

    body.menu-open .hamburger-line-middle {
        opacity: 0;
    }

    body.menu-open .hamburger-line-bottom {
        top: 29px;
        width: 38px;
        transform: translateX(-50%) rotate(-45deg);
    }

    body.menu-open .navbar {
        z-index: 10 !important;
        pointer-events: auto !important;
    }

    body.menu-open .brand-link {
        visibility: visible !important;
    }

    .mobile-menu {
        top: auto !important;
        right: 14px !important;
        bottom: calc(94px + env(safe-area-inset-bottom)) !important;
        left: 14px !important;
        z-index: 980 !important;
        width: auto !important;
        height: auto !important;
        max-height: calc(100vh - 148px);
        padding: 30px 22px 28px !important;
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98) !important;
        border: 1px solid rgba(26, 26, 26, 0.08);
        border-radius: 28px;
        box-shadow: 0 22px 60px rgba(20, 22, 32, 0.20);
        justify-content: flex-start !important;
        gap: 0 !important;
        opacity: 0;
        pointer-events: none;
        transform: translateY(18px) scale(0.98);
        transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .mobile-menu.active {
        right: 14px !important;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .mobile-menu a {
        display: block;
        width: 100%;
        padding: 15px 10px;
        border-bottom: 1px solid rgba(26, 26, 26, 0.08);
        color: var(--color-texto-principal) !important;
        font-size: 12px !important;
        letter-spacing: 2.4px !important;
        text-align: center;
    }

    .mobile-menu a:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 420px) {
    .mobile-bottom-nav {
        grid-template-columns: 1fr 78px 1fr;
        height: 64px;
        border-radius: 24px;
    }

    .mobile-bottom-center-space {
        width: 78px;
    }

    .menu-hamburger,
    body.menu-open .menu-hamburger {
        width: 60px !important;
        height: 60px !important;
    }
}
/* --- MOBILE DOCK HAMBURGUESA V11 --- */
@media (max-width: 900px) {
    body {
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .mobile-bottom-nav {
        position: fixed !important;
        left: 50% !important;
        bottom: calc(12px + env(safe-area-inset-bottom)) !important;
        transform: translateX(-50%) !important;
        z-index: 990 !important;
        display: block !important;
        width: min(278px, calc(100vw - 70px)) !important;
        height: 64px !important;
        padding: 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        border-radius: 999px !important;
        background: radial-gradient(circle at 50% 0px, transparent 0 40px, rgba(13, 26, 54, 0.78) 41px) !important;
        box-shadow: 0 18px 44px rgba(12, 20, 40, 0.24) !important;
        backdrop-filter: blur(16px) !important;
        pointer-events: none !important;
        overflow: visible !important;
    }

    .mobile-bottom-dock {
        position: absolute;
        inset: 0;
        display: block;
        border-radius: inherit;
    }

    .mobile-bottom-link,
    .mobile-bottom-center-space,
    .mobile-bottom-icon {
        display: none !important;
    }

    .menu-hamburger {
        bottom: calc(29px + env(safe-area-inset-bottom)) !important;
        width: 58px !important;
        height: 58px !important;
        background: rgba(250, 250, 248, 0.96) !important;
        color: #16213d !important;
        border: 1px solid rgba(255, 255, 255, 0.72) !important;
        box-shadow: 0 14px 30px rgba(12, 20, 40, 0.25) !important;
    }

    .menu-hamburger .hamburger-line {
        height: 5px !important;
        background: #16213d !important;
        border-radius: 999px !important;
    }

    .hamburger-line-top {
        top: 15px !important;
        width: 30px !important;
    }

    .hamburger-line-middle {
        top: 26.5px !important;
        width: 42px !important;
    }

    .hamburger-line-bottom {
        top: 38px !important;
        width: 30px !important;
    }

    body.menu-open .menu-hamburger {
        bottom: calc(29px + env(safe-area-inset-bottom)) !important;
        width: 58px !important;
        height: 58px !important;
        background: rgba(250, 250, 248, 0.98) !important;
        border: 1px solid rgba(255, 255, 255, 0.76) !important;
        box-shadow: 0 14px 30px rgba(12, 20, 40, 0.30) !important;
    }

    body.menu-open .hamburger-line-top {
        top: 26.5px !important;
        width: 34px !important;
        transform: translateX(-50%) rotate(45deg) !important;
    }

    body.menu-open .hamburger-line-middle {
        opacity: 0 !important;
    }

    body.menu-open .hamburger-line-bottom {
        top: 26.5px !important;
        width: 34px !important;
        transform: translateX(-50%) rotate(-45deg) !important;
    }

    .mobile-menu {
        bottom: calc(92px + env(safe-area-inset-bottom)) !important;
    }
}

@media (max-width: 420px) {
    .mobile-bottom-nav {
        width: min(252px, calc(100vw - 58px)) !important;
        height: 62px !important;
        background: radial-gradient(circle at 50% 0px, transparent 0 38px, rgba(13, 26, 54, 0.78) 39px) !important;
    }

    .menu-hamburger,
    body.menu-open .menu-hamburger {
        width: 56px !important;
        height: 56px !important;
        bottom: calc(29px + env(safe-area-inset-bottom)) !important;
    }
}
/* --- HAMBURGUESA SIEMPRE V12 --- */
@media (max-width: 900px) {
    body.menu-open .hamburger-line-top {
        top: 15px !important;
        width: 30px !important;
        opacity: 1 !important;
        transform: translateX(-50%) !important;
    }

    body.menu-open .hamburger-line-middle {
        top: 26.5px !important;
        width: 42px !important;
        opacity: 1 !important;
        transform: translateX(-50%) !important;
    }

    body.menu-open .hamburger-line-bottom {
        top: 38px !important;
        width: 30px !important;
        opacity: 1 !important;
        transform: translateX(-50%) !important;
    }
}

@media (max-width: 420px) {
    body.menu-open .hamburger-line-top {
        top: 15px !important;
    }

    body.menu-open .hamburger-line-middle {
        top: 26.5px !important;
    }

    body.menu-open .hamburger-line-bottom {
        top: 38px !important;
    }
}
/* --- MOBILE HEADER RESTAURADO V14 --- */
@media (max-width: 900px) {
    body {
        padding-bottom: 0 !important;
    }

    .mobile-bottom-nav,
    .mobile-bottom-dock,
    .mobile-bottom-link,
    .mobile-bottom-center-space,
    .mobile-bottom-icon {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .navbar,
    .page-navbar {
        justify-content: space-between !important;
        align-items: center !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .navbar .brand-link,
    .page-navbar .brand-link {
        margin: 0 !important;
        width: 190px !important;
        height: 76px !important;
        justify-content: flex-start !important;
    }

    .navbar .brand-logo,
    .page-navbar .brand-logo {
        width: 190px !important;
        height: 76px !important;
    }

    .nav-actions {
        display: none !important;
    }

    .menu-hamburger,
    body.menu-open .menu-hamburger {
        position: fixed !important;
        top: 22px !important;
        right: 28px !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 1002 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: center !important;
        width: 54px !important;
        height: 46px !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 14px !important;
        background: rgba(31, 35, 56, 0.92) !important;
        color: #ffffff !important;
        box-shadow: 0 14px 28px rgba(31, 35, 56, 0.24) !important;
        font-size: 0 !important;
        line-height: 1 !important;
        cursor: pointer !important;
    }

    .menu-hamburger::before,
    body.menu-open .menu-hamburger::before {
        display: none !important;
        content: none !important;
    }

    .menu-hamburger .hamburger-line,
    body.menu-open .hamburger-line {
        position: absolute !important;
        left: 50% !important;
        display: block !important;
        height: 6px !important;
        background: #ffffff !important;
        border-radius: 999px !important;
        opacity: 1 !important;
        transform: translateX(-50%) !important;
        box-shadow: 0 1px 5px rgba(255, 255, 255, 0.34) !important;
        transition: opacity 0.18s ease, width 0.18s ease, top 0.18s ease !important;
    }

    .hamburger-line-top,
    body.menu-open .hamburger-line-top {
        top: 10px !important;
        width: 32px !important;
    }

    .hamburger-line-middle,
    body.menu-open .hamburger-line-middle {
        top: 20px !important;
        width: 24px !important;
    }

    .hamburger-line-bottom,
    body.menu-open .hamburger-line-bottom {
        top: 30px !important;
        width: 32px !important;
    }

    body.menu-open .navbar {
        z-index: 1001 !important;
        pointer-events: auto !important;
    }

    body.menu-open .brand-link {
        visibility: visible !important;
    }

    .mobile-menu {
        position: fixed !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        max-height: none !important;
        padding: 120px 34px 44px !important;
        z-index: 980 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 28px !important;
        overflow-y: auto !important;
        background: rgba(247, 245, 242, 0.98) !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateX(100%) !important;
        transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
    }

    .mobile-menu.active {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

    .mobile-menu a {
        display: block !important;
        width: auto !important;
        padding: 0 !important;
        border: 0 !important;
        color: var(--color-texto-principal) !important;
        font-size: 18px !important;
        letter-spacing: 4px !important;
        text-align: center !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
    }
}

@media (max-width: 560px) {
    .menu-hamburger,
    body.menu-open .menu-hamburger {
        top: 20px !important;
        right: 22px !important;
        width: 52px !important;
        height: 44px !important;
    }
}
/* --- HAMBURGUESA SOLO LINEAS V15 --- */
@media (max-width: 900px) {
    .menu-hamburger,
    body.menu-open .menu-hamburger {
        position: fixed !important;
        top: 24px !important;
        right: 26px !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 1002 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 46px !important;
        height: 36px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        outline: 0 !important;
        color: #ffffff !important;
        font-size: 0 !important;
        line-height: 1 !important;
        cursor: pointer !important;
    }

    .menu-hamburger::before,
    body.menu-open .menu-hamburger::before {
        display: none !important;
        content: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .menu-hamburger .hamburger-line,
    body.menu-open .hamburger-line {
        position: absolute !important;
        left: 50% !important;
        display: block !important;
        height: 6px !important;
        background: #ffffff !important;
        border-radius: 999px !important;
        opacity: 1 !important;
        transform: translateX(-50%) !important;
        box-shadow: none !important;
    }

    .hamburger-line-top,
    body.menu-open .hamburger-line-top {
        top: 5px !important;
        width: 34px !important;
    }

    .hamburger-line-middle,
    body.menu-open .hamburger-line-middle {
        top: 15px !important;
        width: 24px !important;
    }

    .hamburger-line-bottom,
    body.menu-open .hamburger-line-bottom {
        top: 25px !important;
        width: 34px !important;
    }
}

@media (max-width: 560px) {
    .menu-hamburger,
    body.menu-open .menu-hamburger {
        top: 24px !important;
        right: 22px !important;
        width: 44px !important;
        height: 36px !important;
    }
}
/* --- HAMBURGUESA SOLO LINEAS VISIBLE V16 --- */
@media (max-width: 900px) {
    .menu-hamburger,
    body.menu-open .menu-hamburger {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        outline: 0 !important;
    }

    .menu-hamburger .hamburger-line,
    body.menu-open .hamburger-line {
        background: #1f2338 !important;
        box-shadow: none !important;
    }
}
/* --- HAMBURGUESA GRIS CON SOMBRA V17 --- */
@media (max-width: 900px) {
    .menu-hamburger,
    body.menu-open .menu-hamburger {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        outline: 0 !important;
    }

    .menu-hamburger .hamburger-line,
    body.menu-open .hamburger-line {
        background: #5f6269 !important;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.58), 0 3px 9px rgba(0, 0, 0, 0.34) !important;
    }
}
/* --- HAMBURGUESA ESTILO REFERENCIA V18 --- */
@media (max-width: 900px) {
    .menu-hamburger,
    body.menu-open .menu-hamburger {
        position: fixed !important;
        top: 24px !important;
        right: 24px !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 1002 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 48px !important;
        height: 42px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        outline: 0 !important;
        font-size: 0 !important;
        line-height: 1 !important;
        cursor: pointer !important;
    }

    .menu-hamburger::before,
    body.menu-open .menu-hamburger::before {
        display: none !important;
        content: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .menu-hamburger .hamburger-line,
    body.menu-open .hamburger-line {
        position: absolute !important;
        left: 50% !important;
        display: block !important;
        height: 6px !important;
        background: #1c2a3f !important;
        border-radius: 999px !important;
        opacity: 1 !important;
        transform: translateX(-50%) !important;
        box-shadow: 0 2px 5px rgba(28, 42, 63, 0.18) !important;
    }

    .hamburger-line-top,
    body.menu-open .hamburger-line-top {
        top: 7px !important;
        width: 32px !important;
    }

    .hamburger-line-middle,
    body.menu-open .hamburger-line-middle {
        top: 18px !important;
        width: 42px !important;
    }

    .hamburger-line-bottom,
    body.menu-open .hamburger-line-bottom {
        top: 29px !important;
        width: 32px !important;
    }
}
/* --- HAMBURGUESA MUY VISIBLE V19 --- */
@media (max-width: 1100px), (hover: none) and (pointer: coarse) {
    .nav-actions {
        display: none !important;
    }

    .menu-hamburger,
    body.menu-open .menu-hamburger {
        position: fixed !important;
        top: 24px !important;
        right: 22px !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 9999 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: center !important;
        width: 54px !important;
        height: 44px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        outline: 0 !important;
        font-size: 0 !important;
        line-height: 1 !important;
        cursor: pointer !important;
    }

    .menu-hamburger::before,
    body.menu-open .menu-hamburger::before {
        display: none !important;
        content: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .menu-hamburger .hamburger-line,
    body.menu-open .hamburger-line {
        position: absolute !important;
        left: 50% !important;
        display: block !important;
        height: 7px !important;
        background: #101827 !important;
        border-radius: 999px !important;
        opacity: 1 !important;
        transform: translateX(-50%) !important;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82), 0 4px 10px rgba(0, 0, 0, 0.42) !important;
    }

    .hamburger-line-top,
    body.menu-open .hamburger-line-top {
        top: 6px !important;
        width: 36px !important;
    }

    .hamburger-line-middle,
    body.menu-open .hamburger-line-middle {
        top: 18px !important;
        width: 46px !important;
    }

    .hamburger-line-bottom,
    body.menu-open .hamburger-line-bottom {
        top: 30px !important;
        width: 36px !important;
    }
}
/* --- HAMBURGUESA CONTRASTE REAL V20 --- */
@media (max-width: 1200px), (hover: none) and (pointer: coarse) {
    .nav-actions {
        display: none !important;
    }

    .menu-hamburger,
    body.menu-open .menu-hamburger {
        position: fixed !important;
        top: 22px !important;
        right: 22px !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 2147483647 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 58px !important;
        height: 48px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        outline: 0 !important;
        font-size: 0 !important;
        line-height: 1 !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    .menu-hamburger::before,
    .menu-hamburger::after,
    body.menu-open .menu-hamburger::before,
    body.menu-open .menu-hamburger::after {
        display: none !important;
        content: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .menu-hamburger .hamburger-line,
    body.menu-open .hamburger-line {
        position: absolute !important;
        left: 50% !important;
        display: block !important;
        height: 8px !important;
        background: #0f172a !important;
        border-radius: 999px !important;
        opacity: 1 !important;
        transform: translateX(-50%) !important;
        border: 1px solid rgba(255, 255, 255, 0.92) !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.42) !important;
    }

    .hamburger-line-top,
    body.menu-open .hamburger-line-top {
        top: 4px !important;
        width: 40px !important;
    }

    .hamburger-line-middle,
    body.menu-open .hamburger-line-middle {
        top: 18px !important;
        width: 52px !important;
    }

    .hamburger-line-bottom,
    body.menu-open .hamburger-line-bottom {
        top: 32px !important;
        width: 40px !important;
    }
}
/* --- HAMBURGUESA SVG VISIBLE V21 --- */
@media (max-width: 1200px), (hover: none) and (pointer: coarse) {
    .nav-actions {
        display: none !important;
    }

    .menu-hamburger,
    body.menu-open .menu-hamburger {
        position: fixed !important;
        top: 22px !important;
        right: 22px !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 2147483647 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: center !important;
        width: 58px !important;
        height: 48px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        outline: 0 !important;
        font-size: 0 !important;
        line-height: 1 !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    .menu-hamburger::before,
    .menu-hamburger::after,
    body.menu-open .menu-hamburger::before,
    body.menu-open .menu-hamburger::after,
    .menu-hamburger .hamburger-line {
        display: none !important;
        content: none !important;
    }

    .hamburger-icon,
    body.menu-open .hamburger-icon {
        display: block !important;
        width: 58px !important;
        height: 44px !important;
        overflow: visible !important;
        filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.38)) !important;
    }

    .hamburger-stroke {
        fill: none !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
        opacity: 1 !important;
    }

    .hamburger-stroke.halo {
        stroke: rgba(255, 255, 255, 0.96) !important;
        stroke-width: 10 !important;
    }

    .hamburger-stroke.core {
        stroke: #111827 !important;
        stroke-width: 6.5 !important;
    }
}
/* --- HEADER MOBILE TABLET FINAL V22 --- */
@media (max-width: 1200px), (hover: none) and (pointer: coarse) {
    .navbar,
    .page-navbar {
        justify-content: space-between !important;
        align-items: center !important;
        padding-left: clamp(18px, 5vw, 34px) !important;
        padding-right: clamp(18px, 5vw, 34px) !important;
    }

    .navbar .brand-link,
    .page-navbar .brand-link {
        margin: 0 !important;
        width: 190px !important;
        height: 76px !important;
        justify-content: flex-start !important;
    }

    .navbar .brand-logo,
    .page-navbar .brand-logo {
        width: 190px !important;
        height: 76px !important;
        object-fit: contain !important;
        object-position: left center !important;
    }

    .nav-actions {
        display: none !important;
    }

    .menu-hamburger,
    body.menu-open .menu-hamburger {
        position: fixed !important;
        top: 22px !important;
        right: clamp(18px, 5vw, 34px) !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 1002 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: center !important;
        width: 62px !important;
        height: 48px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        outline: 0 !important;
        font-size: 0 !important;
        line-height: 1 !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    body.menu-open .menu-hamburger {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .menu-hamburger::before,
    .menu-hamburger::after,
    body.menu-open .menu-hamburger::before,
    body.menu-open .menu-hamburger::after,
    .menu-hamburger .hamburger-line {
        display: none !important;
        content: none !important;
    }

    .hamburger-icon {
        display: block !important;
        width: 62px !important;
        height: 46px !important;
        overflow: visible !important;
        filter: drop-shadow(0 3px 7px rgba(16, 24, 39, 0.55)) !important;
    }

    .hamburger-stroke {
        fill: none !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
        opacity: 1 !important;
    }

    .hamburger-stroke.halo {
        stroke: rgba(16, 24, 39, 0.76) !important;
        stroke-width: 10 !important;
    }

    .hamburger-stroke.core {
        stroke: #eef1f4 !important;
        stroke-width: 6.4 !important;
    }

    .mobile-menu {
        position: fixed !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        max-height: none !important;
        padding: 118px clamp(30px, 8vw, 82px) 52px !important;
        z-index: 980 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 0 !important;
        overflow-y: auto !important;
        background: rgba(247, 245, 242, 0.985) !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateX(100%) !important;
        transition: opacity 0.28s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
    }

    .mobile-menu.active {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

    .mobile-menu-close {
        position: fixed !important;
        top: 28px !important;
        right: clamp(22px, 6vw, 46px) !important;
        z-index: 1003 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: #5f6269 !important;
        font-family: var(--fuente-sans) !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        letter-spacing: 2.4px !important;
        line-height: 1 !important;
        text-transform: uppercase !important;
        cursor: pointer !important;
    }

    .mobile-menu a {
        display: block !important;
        width: 100% !important;
        padding: 17px 0 !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(26, 26, 26, 0.10) !important;
        color: var(--color-texto-principal) !important;
        font-size: clamp(18px, 4.8vw, 28px) !important;
        font-weight: 500 !important;
        letter-spacing: 3px !important;
        line-height: 1.1 !important;
        text-align: left !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
    }

    .mobile-menu a:last-child {
        border-bottom: 0 !important;
    }
}

@media (max-width: 560px) {
    .navbar .brand-link,
    .page-navbar .brand-link,
    .navbar .brand-logo,
    .page-navbar .brand-logo {
        width: 168px !important;
        height: 68px !important;
    }

    .menu-hamburger {
        top: 20px !important;
        width: 58px !important;
        height: 46px !important;
    }

    .hamburger-icon {
        width: 58px !important;
        height: 44px !important;
    }

    .mobile-menu {
        padding-top: 106px !important;
    }
}
/* --- PUERTAS PNG Y AMBIENTE SEPARADOS V23 --- */
.door-preview-scene {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f4f0ea !important;
    background-image: none !important;
    min-height: 620px !important;
}

.door-preview-scene::after {
    display: none !important;
}

.door-preview-img {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 620px !important;
    max-width: 100% !important;
    max-height: min(760px, calc(100vh - 68px)) !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    z-index: 1 !important;
    padding: 0 !important;
}

@media (max-width: 900px) {
    .door-preview-scene {
        min-height: 430px !important;
    }

    .door-preview-img {
        min-height: 430px !important;
        max-height: 62vh !important;
    }
}

@media (max-width: 560px) {
    .door-preview-scene {
        min-height: 340px !important;
    }

    .door-preview-img {
        min-height: 340px !important;
        max-height: 58vh !important;
    }
}

        @media (max-width: 900px) {
            .floor-renewal-container { grid-template-columns: 1fr; gap: 34px; }
            .floor-renewal-section .config-desc { max-width: 520px; }
            .split-slider-frame { aspect-ratio: 1.5 / 1; }
        }

        @media (max-width: 600px) {
            .floor-renewal-section { padding-left: 20px !important; padding-right: 20px !important; }
            .floor-renewal-section .config-title { font-size: 34px; }
            .floor-renewal-section .btn-black-config { width: 100%; justify-content: center; padding-left: 18px; padding-right: 18px; }
            .split-slider-frame { aspect-ratio: 1.1 / 1; }
            .comparison-label { bottom: 12px; padding: 7px 9px; font-size: 9px; }
            .comparison-label-before { left: 12px; }
            .comparison-label-after { right: 12px; }
        }
/* --- AJUSTES HEADER FIJO Y PUERTAS V25 --- */
.navbar,
.page-navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
    background: rgba(247, 245, 242, 0.96) !important;
    border-bottom: 1px solid rgba(229, 224, 219, 0.86) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

.navbar {
    padding-left: 100px !important;
    padding-right: 100px !important;
}

.catalog-page {
    padding-top: calc(var(--header-height) + 80px) !important;
}

.door-card-meta {
    display: none !important;
}

.door-preview-info p:last-child,
#doorPreviewMeta {
    text-transform: none !important;
    color: var(--color-texto-secundario) !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    max-width: 280px !important;
}

@media (max-width: 1200px) {
    .navbar,
    .page-navbar {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .catalog-page {
        padding-top: calc(var(--header-height) + 60px) !important;
    }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .navbar,
    .page-navbar {
        height: var(--header-height) !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding-left: clamp(18px, 5vw, 30px) !important;
        padding-right: clamp(18px, 5vw, 30px) !important;
    }

    .navbar .brand-link,
    .page-navbar .brand-link {
        margin: 0 !important;
        width: 178px !important;
        height: 72px !important;
        justify-content: flex-start !important;
    }

    .navbar .brand-logo,
    .page-navbar .brand-logo {
        width: 178px !important;
        height: 72px !important;
        object-fit: contain !important;
        object-position: left center !important;
    }

    .menu-hamburger,
    body.menu-open .menu-hamburger {
        position: fixed !important;
        top: calc((var(--header-height) - 46px) / 2) !important;
        right: clamp(18px, 5vw, 30px) !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 1002 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 58px !important;
        height: 46px !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        pointer-events: auto !important;
    }

    .hamburger-icon,
    body.menu-open .hamburger-icon {
        display: block !important;
        width: 58px !important;
        height: 44px !important;
        filter: drop-shadow(0 3px 7px rgba(16, 24, 39, 0.45)) !important;
    }

    .hamburger-stroke.halo {
        stroke: rgba(16, 24, 39, 0.72) !important;
        stroke-width: 10 !important;
    }

    .hamburger-stroke.core {
        stroke: #eef1f4 !important;
        stroke-width: 6.4 !important;
    }

    .mobile-menu {
        top: 0 !important;
        padding-top: calc(var(--header-height) + 30px) !important;
    }

    .catalog-page {
        padding-top: calc(var(--header-height) + 44px) !important;
    }
}

@media (max-width: 560px) {
    .navbar .brand-link,
    .page-navbar .brand-link,
    .navbar .brand-logo,
    .page-navbar .brand-logo {
        width: 158px !important;
        height: 64px !important;
    }

    .catalog-page {
        padding-top: calc(var(--header-height) + 34px) !important;
    }
}
/* --- COMPENSACION PROYECTOS HEADER FIJO V25 --- */
.projects-board-page {
    padding-top: calc(var(--header-height) + 44px) !important;
}

@media (max-width: 1200px) {
    .projects-board-page {
        padding-top: calc(var(--header-height) + 34px) !important;
    }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .projects-board-page {
        padding-top: calc(var(--header-height) + 28px) !important;
    }
}

@media (max-width: 560px) {
    .projects-board-page {
        padding-top: calc(var(--header-height) + 24px) !important;
    }
}
/* --- HAMBURGUESA GRIS VISIBLE V26 --- */
@media (max-width: 1200px), (hover: none) and (pointer: coarse) {
    .menu-hamburger,
    body.menu-open .menu-hamburger {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .hamburger-icon,
    body.menu-open .hamburger-icon {
        filter: drop-shadow(0 2px 5px rgba(15, 23, 42, 0.28)) !important;
    }

    .hamburger-stroke.halo,
    body.menu-open .hamburger-stroke.halo {
        stroke: rgba(255, 255, 255, 0.96) !important;
        stroke-width: 10.5 !important;
    }

    .hamburger-stroke.core,
    body.menu-open .hamburger-stroke.core {
        stroke: #6f737a !important;
        stroke-width: 6.8 !important;
    }
}
/* --- HAMBURGUESA Y MENU MOBILE FINAL V27 --- */
@media (max-width: 1200px), (hover: none) and (pointer: coarse) {
    .menu-hamburger,
    body.menu-open .menu-hamburger {
        position: fixed !important;
        top: calc((var(--header-height) - 44px) / 2) !important;
        right: clamp(18px, 5vw, 30px) !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 2147483647 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 56px !important;
        height: 44px !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        pointer-events: auto !important;
    }

    .menu-hamburger::before,
    .menu-hamburger::after,
    body.menu-open .menu-hamburger::before,
    body.menu-open .menu-hamburger::after,
    .menu-hamburger .hamburger-line {
        display: none !important;
        content: none !important;
    }

    .hamburger-icon,
    body.menu-open .hamburger-icon {
        display: block !important;
        width: 56px !important;
        height: 42px !important;
        overflow: visible !important;
        opacity: 1 !important;
        filter: drop-shadow(0 1px 2px rgba(255,255,255,0.92)) drop-shadow(0 2px 4px rgba(0,0,0,0.22)) !important;
    }

    .hamburger-stroke,
    body.menu-open .hamburger-stroke {
        fill: none !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
        opacity: 1 !important;
    }

    .hamburger-stroke.halo,
    body.menu-open .hamburger-stroke.halo {
        stroke: rgba(255, 255, 255, 0.98) !important;
        stroke-width: 11 !important;
    }

    .hamburger-stroke.core,
    body.menu-open .hamburger-stroke.core {
        stroke: #3f444b !important;
        stroke-width: 7.4 !important;
    }

    .mobile-menu {
        padding-top: calc(var(--header-height) + 26px) !important;
        background: rgba(247, 245, 242, 0.985) !important;
    }

    .mobile-menu a {
        font-family: var(--fuente-sans) !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        line-height: 1.35 !important;
        letter-spacing: 3px !important;
        text-transform: uppercase !important;
        text-align: left !important;
        padding: 14px 0 !important;
        color: var(--color-texto-principal) !important;
    }

    .mobile-menu-close {
        font-family: var(--fuente-sans) !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        letter-spacing: 2.8px !important;
        color: #4b4f56 !important;
        text-transform: uppercase !important;
    }
}

@media (max-width: 420px) {
    .menu-hamburger,
    body.menu-open .menu-hamburger {
        width: 52px !important;
        height: 42px !important;
    }

    .hamburger-icon,
    body.menu-open .hamburger-icon {
        width: 52px !important;
        height: 40px !important;
    }

    .mobile-menu a {
        font-size: 11px !important;
        letter-spacing: 2.6px !important;
        padding: 13px 0 !important;
    }
}
/* --- HAMBURGUESA CSS PURO V28 --- */
@media (max-width: 1200px), (hover: none) and (pointer: coarse) {
    .menu-hamburger,
    body.menu-open .menu-hamburger {
        position: fixed !important;
        top: calc((var(--header-height) - 42px) / 2) !important;
        right: clamp(18px, 5vw, 30px) !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 2147483647 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 54px !important;
        height: 42px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background-color: transparent !important;
        background-image: linear-gradient(#4c5158, #4c5158) !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-size: 30px 5px !important;
        pointer-events: auto !important;
    }

    .hamburger-icon,
    body.menu-open .hamburger-icon,
    .hamburger-stroke,
    body.menu-open .hamburger-stroke {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .menu-hamburger::before,
    .menu-hamburger::after,
    body.menu-open .menu-hamburger::before,
    body.menu-open .menu-hamburger::after {
        content: '' !important;
        position: absolute !important;
        left: 50% !important;
        display: block !important;
        width: 38px !important;
        height: 5px !important;
        border-radius: 999px !important;
        background: #4c5158 !important;
        box-shadow: 0 1px 2px rgba(255,255,255,0.95), 0 2px 5px rgba(0,0,0,0.18) !important;
        transform: translateX(-50%) !important;
    }

    .menu-hamburger::before,
    body.menu-open .menu-hamburger::before {
        top: 8px !important;
    }

    .menu-hamburger::after,
    body.menu-open .menu-hamburger::after {
        top: 29px !important;
    }

    .mobile-menu a {
        font-family: var(--fuente-sans) !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        line-height: 1.35 !important;
        letter-spacing: 3px !important;
        text-transform: uppercase !important;
        text-align: left !important;
        padding: 13px 0 !important;
        color: var(--color-texto-principal) !important;
    }

    .mobile-menu-close {
        font-family: var(--fuente-sans) !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        letter-spacing: 2.8px !important;
        color: #4c5158 !important;
        text-transform: uppercase !important;
    }
}

@media (max-width: 420px) {
    .menu-hamburger,
    body.menu-open .menu-hamburger {
        width: 50px !important;
        height: 40px !important;
        background-size: 28px 4px !important;
    }

    .menu-hamburger::before,
    .menu-hamburger::after,
    body.menu-open .menu-hamburger::before,
    body.menu-open .menu-hamburger::after {
        width: 35px !important;
        height: 4px !important;
    }

    .menu-hamburger::before,
    body.menu-open .menu-hamburger::before {
        top: 8px !important;
    }

    .menu-hamburger::after,
    body.menu-open .menu-hamburger::after {
        top: 28px !important;
    }

    .mobile-menu a {
        font-size: 11px !important;
        letter-spacing: 2.6px !important;
    }
}
/* --- HAMBURGUESA SUTIL V29 --- */
@media (max-width: 1200px), (hover: none) and (pointer: coarse) {
    .menu-hamburger,
    body.menu-open .menu-hamburger {
        position: fixed !important;
        top: calc((var(--header-height) - 30px) / 2) !important;
        right: clamp(20px, 5vw, 32px) !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 2147483647 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 36px !important;
        height: 30px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background-color: transparent !important;
        background-image: linear-gradient(#62666d, #62666d) !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-size: 24px 3px !important;
        pointer-events: auto !important;
    }

    .hamburger-icon,
    body.menu-open .hamburger-icon,
    .hamburger-stroke,
    body.menu-open .hamburger-stroke {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .menu-hamburger::before,
    .menu-hamburger::after,
    body.menu-open .menu-hamburger::before,
    body.menu-open .menu-hamburger::after {
        content: '' !important;
        position: absolute !important;
        left: 50% !important;
        display: block !important;
        width: 28px !important;
        height: 3px !important;
        border-radius: 999px !important;
        background: #62666d !important;
        box-shadow: 0 1px 1px rgba(255,255,255,0.75) !important;
        transform: translateX(-50%) !important;
    }

    .menu-hamburger::before,
    body.menu-open .menu-hamburger::before {
        top: 6px !important;
    }

    .menu-hamburger::after,
    body.menu-open .menu-hamburger::after {
        top: 21px !important;
    }
}

@media (max-width: 420px) {
    .menu-hamburger,
    body.menu-open .menu-hamburger {
        width: 34px !important;
        height: 28px !important;
        background-size: 22px 2.5px !important;
    }

    .menu-hamburger::before,
    .menu-hamburger::after,
    body.menu-open .menu-hamburger::before,
    body.menu-open .menu-hamburger::after {
        width: 26px !important;
        height: 2.5px !important;
    }

    .menu-hamburger::before,
    body.menu-open .menu-hamburger::before {
        top: 6px !important;
    }

    .menu-hamburger::after,
    body.menu-open .menu-hamburger::after {
        top: 20px !important;
    }
}
/* --- OPINIONES REALES V30 --- */
.reviews-marquee-row {
    height: 260px !important;
}

.review-card {
    width: 420px !important;
    height: 235px !important;
    padding: 24px 28px !important;
}

.review-body {
    font-size: 13px !important;
    line-height: 1.48 !important;
}

.review-author-info {
    padding-top: 14px !important;
}

@media (max-width: 900px) {
    .reviews-marquee-row {
        height: 245px !important;
    }

    .review-card {
        width: 340px !important;
        height: 220px !important;
        padding: 22px !important;
    }

    .review-body {
        font-size: 12px !important;
        line-height: 1.45 !important;
    }
}

@media (max-width: 560px) {
    .reviews-marquee-row {
        height: 250px !important;
    }

    .review-card {
        width: 305px !important;
        height: 226px !important;
        padding: 20px !important;
    }
}

/* --- HERO MOBILE FULL SCREEN V34 --- */
@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .hero-container {
        width: 100vw !important;
        height: 100svh !important;
        min-height: 100svh !important;
        padding: var(--header-height) clamp(22px, 6vw, 34px) 0 !important;
        justify-content: stretch !important;
        overflow: hidden !important;
    }

    .hero-slide-bg {
        inset: 0 !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .hero-container::before {
        height: var(--header-height) !important;
        background: rgba(247, 245, 242, 0.92) !important;
        z-index: 1 !important;
    }

    .hero-container::after {
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(
            to bottom,
            rgba(247, 245, 242, 0.78) 0%,
            rgba(247, 245, 242, 0.58) 30%,
            rgba(247, 245, 242, 0.42) 58%,
            rgba(247, 245, 242, 0.86) 100%
        ) !important;
        z-index: 1 !important;
    }

    .hero-container .navbar,
    .hero-container .page-navbar,
    .navbar,
    .page-navbar {
        height: var(--header-height) !important;
    }

    .navbar .brand-link,
    .page-navbar .brand-link,
    .hero-container .brand-link {
        width: 205px !important;
        height: 82px !important;
        margin: 0 !important;
        justify-content: flex-start !important;
    }

    .navbar .brand-logo,
    .page-navbar .brand-logo,
    .hero-container .brand-logo {
        width: 205px !important;
        height: 82px !important;
        object-fit: contain !important;
        object-position: left center !important;
    }

    .main-wrapper {
        flex: 1 1 auto !important;
        width: 100% !important;
        height: calc(100svh - var(--header-height)) !important;
        min-height: calc(100svh - var(--header-height)) !important;
        margin-top: 0 !important;
        padding: 0 0 96px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .pagination-container {
        display: none !important;
    }

    .main-content {
        width: min(100%, 520px) !important;
        max-width: 92vw !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .category-tag {
        font-size: 11px !important;
        line-height: 1.25 !important;
        letter-spacing: 3px !important;
        margin-bottom: 18px !important;
        text-align: center !important;
    }

    .title {
        font-size: clamp(48px, 13vw, 64px) !important;
        line-height: 1.03 !important;
        margin: 0 auto 34px !important;
        max-width: 9.5em !important;
        text-align: center !important;
    }

    .cta-wrapper {
        justify-content: center !important;
    }

    .cta-link {
        font-size: 11px !important;
        letter-spacing: 3px !important;
    }

    .scroll-hint {
        left: 50% !important;
        right: auto !important;
        bottom: calc(22px + env(safe-area-inset-bottom)) !important;
        transform: translateX(-50%) !important;
        z-index: 8 !important;
        display: inline-flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: var(--color-texto-principal) !important;
        font-size: 10px !important;
        line-height: 1 !important;
        letter-spacing: 2.8px !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        animation: mobileHintFloat 1.55s ease-in-out infinite !important;
    }

    .scroll-hint::after {
        content: '' !important;
        display: block !important;
        width: 1px !important;
        height: 34px !important;
        background: currentColor !important;
        opacity: 0.78 !important;
        transform-origin: top center !important;
        animation: mobileHintLine 1.55s ease-in-out infinite !important;
    }

    .scroll-hint::before {
        content: '' !important;
        position: absolute !important;
        left: 50% !important;
        bottom: -1px !important;
        width: 8px !important;
        height: 8px !important;
        border-right: 1px solid currentColor !important;
        border-bottom: 1px solid currentColor !important;
        transform: translateX(-50%) rotate(45deg) !important;
        opacity: 0.9 !important;
        animation: mobileHintArrow 1.55s ease-in-out infinite !important;
    }
}

@keyframes mobileHintFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.82; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

@keyframes mobileHintLine {
    0%, 100% { transform: scaleY(0.72); opacity: 0.45; }
    50% { transform: scaleY(1); opacity: 0.88; }
}

@keyframes mobileHintArrow {
    0%, 100% { transform: translateX(-50%) translateY(-6px) rotate(45deg); opacity: 0.35; }
    50% { transform: translateX(-50%) translateY(2px) rotate(45deg); opacity: 1; }
}

@media (max-width: 430px) {
    .navbar .brand-link,
    .page-navbar .brand-link,
    .hero-container .brand-link,
    .navbar .brand-logo,
    .page-navbar .brand-logo,
    .hero-container .brand-logo {
        width: 192px !important;
        height: 77px !important;
    }

    .title {
        font-size: clamp(44px, 12.4vw, 56px) !important;
        max-width: 9em !important;
    }

    .main-wrapper {
        padding-bottom: 92px !important;
    }
}

@media (max-width: 370px) {
    .navbar .brand-link,
    .page-navbar .brand-link,
    .hero-container .brand-link,
    .navbar .brand-logo,
    .page-navbar .brand-logo,
    .hero-container .brand-logo {
        width: 178px !important;
        height: 71px !important;
    }

    .title {
        font-size: 42px !important;
    }
}
/* --- PUERTAS TARJETAS BLANCAS V52 --- */
.door-card {
    background: #ffffff !important;
}

.door-card-media {
    background: #ffffff !important;
    box-shadow: none !important;
}

.door-card-media::before {
    background: transparent !important;
    filter: none !important;
    opacity: 0 !important;
}

.door-card-media img {
    background: #ffffff !important;
    mix-blend-mode: normal !important;
}

.door-card-code {
    background: #ffffff !important;
}
/* --- AMBIENTE PUERTAS IMAGEN COMPLETA V53 --- */
.door-preview-scene {
    position: relative !important;
    overflow: hidden !important;
    background: #ffffff !important;
    padding: 0 !important;
}

.door-preview-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    filter: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
}

@media (max-width: 900px) {
    .door-preview-img {
        height: 100% !important;
        min-height: 100% !important;
        max-height: none !important;
    }
}
/* --- FOOTER VISIBLE RESTAURADO V55 --- */
:root {
    --color-texto-principal: #1a1a1a;
    --color-texto-secundario: #6e6e6e;
    --color-texto-blanco: #ffffff;
    --color-lineas: #e5e0db;
    --color-oro-fino: #c5a880;
    --color-fondo-solido: #f7f5f2;
}

footer.site-footer,
#contacto.site-footer {
    display: block !important;
    position: relative !important;
    z-index: 20 !important;
    width: 100% !important;
    min-height: 260px !important;
    background: var(--color-fondo-solido) !important;
    color: var(--color-texto-principal) !important;
    padding: clamp(58px, 7vw, 82px) clamp(28px, 8vw, 100px) 34px !important;
    border-top: 1px solid var(--color-lineas) !important;
    overflow: visible !important;
}

.footer-compact-layout {
    display: grid !important;
    grid-template-columns: minmax(260px, 1.35fr) minmax(190px, 0.7fr) minmax(160px, 0.55fr) !important;
    gap: clamp(34px, 6vw, 82px) !important;
    width: 100% !important;
    margin: 0 0 40px 0 !important;
    align-items: start !important;
}

.footer-brand-block,
.footer-info-cell {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 13px !important;
}

.footer-logo-link {
    display: inline-flex !important;
    width: 132px !important;
    height: 54px !important;
    align-items: center !important;
    text-decoration: none !important;
}

.footer-logo {
    width: 132px !important;
    height: 54px !important;
    object-fit: contain !important;
    display: block !important;
    filter: none !important;
}

.footer-brand-copy,
.footer-info-value,
.footer-follow-note {
    margin: 0 !important;
    color: var(--color-texto-secundario) !important;
    font-size: 12px !important;
    line-height: 1.72 !important;
    font-weight: 300 !important;
    text-decoration: none !important;
}

.footer-brand-copy {
    max-width: 410px !important;
}

.footer-info-label {
    margin: 0 0 4px 0 !important;
    color: var(--color-texto-principal) !important;
    font-size: 10px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    letter-spacing: 3.2px !important;
    font-weight: 700 !important;
}

.footer-info-value:hover {
    color: var(--color-texto-principal) !important;
}

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

.footer-social-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--color-texto-principal) !important;
    color: var(--color-texto-blanco) !important;
    text-decoration: none !important;
    transition: transform 0.25s ease, background 0.25s ease !important;
}

.footer-social-icon:hover {
    transform: translateY(-2px) !important;
    background: var(--color-oro-fino) !important;
}

.footer-social-icon svg {
    width: 17px !important;
    height: 17px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
}

.footer-bottom-bar {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    width: 100% !important;
    padding-top: 22px !important;
    border-top: 1px solid var(--color-lineas) !important;
}

.footer-bottom-line,
.footer-legal-links,
.footer-big-title,
.footer-headline-block .cta-wrapper,
.footer-text-socials {
    display: none !important;
}

.footer-dev-logo {
    width: 328px !important;
    height: auto !important;
    display: block !important;
    opacity: 0.9 !important;
    filter: none !important;
}

@media (max-width: 900px) {
    footer.site-footer,
    #contacto.site-footer {
        min-height: 0 !important;
        padding: 52px 26px 30px !important;
    }

    .footer-compact-layout {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        margin-bottom: 34px !important;
    }

    .footer-bottom-bar {
        justify-content: flex-start !important;
    }
}
/* --- SCROLL DOWN EN BANNER SUTIL V63 --- */
.hero-container .scroll-down {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: clamp(46px, 8vh, 82px) !important;
    transform: translateX(-50%) !important;
    z-index: 18 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: auto !important;
    min-width: 118px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    pointer-events: none !important;
    opacity: 0.86 !important;
    visibility: visible !important;
    overflow: visible !important;
}

.hero-container .scroll-down svg {
    display: block !important;
    width: 40px !important;
    height: auto !important;
    min-width: 40px !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.28)) !important;
}

.hero-container .scroll-down polyline {
    stroke: #ffffff !important;
    stroke-width: 3.4 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.hero-container .scroll-down span {
    display: block !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 9px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    text-align: center !important;
    white-space: nowrap !important;
    opacity: 0.88 !important;
    visibility: visible !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.32) !important;
}

.hero-container .scroll-down .ch1 {
    animation: wave 1.4s ease-in-out infinite 0s !important;
}

.hero-container .scroll-down .ch2 {
    animation: wave 1.4s ease-in-out infinite 0.18s !important;
}

.hero-container .scroll-down .ch3 {
    animation: wave 1.4s ease-in-out infinite 0.36s !important;
}

@media (max-width: 900px) {
    .hero-container .scroll-down {
        bottom: calc(50px + env(safe-area-inset-bottom)) !important;
        gap: 8px !important;
    }

    .hero-container .scroll-down svg {
        width: 38px !important;
        min-width: 38px !important;
    }

    .hero-container .scroll-down span {
        font-size: 9px !important;
    }
}
/* --- HERO TEXTOS A LA IZQUIERDA V64 --- */
.hero-container .main-content {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    align-items: flex-start !important;
}

.hero-container .category-tag,
.hero-container .title {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.hero-container .cta-wrapper {
    justify-content: flex-start !important;
}

@media (max-width: 900px) {
    .hero-container .main-wrapper {
        justify-content: flex-start !important;
        align-items: center !important;
        padding-left: clamp(30px, 8vw, 52px) !important;
        padding-right: clamp(22px, 6vw, 38px) !important;
    }

    .hero-container .main-content {
        width: min(100%, 520px) !important;
        max-width: min(84vw, 520px) !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        text-align: left !important;
    }

    .hero-container .category-tag,
    .hero-container .title {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-container .title {
        max-width: 9.5em !important;
    }

    .hero-container .cta-wrapper {
        justify-content: flex-start !important;
    }
}
/* --- ANTES Y DESPUES COMO REFERENCIA V65 --- */
.before-after-section {
    width: 100vw !important;
    background: #ffffff !important;
    padding: clamp(44px, 5.2vw, 72px) clamp(28px, 4.2vw, 74px) !important;
    position: relative !important;
    z-index: 10 !important;
}

.before-after-grid {
    display: grid !important;
    grid-template-columns: minmax(210px, 0.9fr) minmax(0, 1.72fr) minmax(185px, 0.72fr) !important;
    align-items: stretch !important;
    gap: clamp(20px, 2.4vw, 34px) !important;
    width: 100% !important;
    max-width: 1520px !important;
    margin: 0 auto !important;
}

.before-after-copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    min-width: 0 !important;
}

.before-after-kicker {
    margin: 0 0 18px !important;
    color: #8b827a !important;
    font-size: clamp(10px, 0.86vw, 13px) !important;
    font-weight: 500 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
}

.before-after-title {
    margin: 0 0 22px !important;
    color: #151515 !important;
    font-family: var(--fuente-serif) !important;
    font-size: clamp(44px, 4.3vw, 72px) !important;
    font-weight: 400 !important;
    line-height: 1.02 !important;
    letter-spacing: 0 !important;
}

.before-after-text {
    margin: 0 0 34px !important;
    color: #4f4b47 !important;
    font-size: clamp(13px, 1.04vw, 17px) !important;
    line-height: 1.55 !important;
    font-weight: 300 !important;
    max-width: 420px !important;
}

.before-after-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;
    min-height: 56px !important;
    padding: 0 30px !important;
    background: #12131a !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 2.4px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    box-shadow: 0 16px 30px rgba(18, 19, 26, 0.12) !important;
}

.before-after-visual {
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.before-after-slider,
.before-after-section .split-slider-frame {
    width: 100% !important;
    aspect-ratio: 1.86 / 1 !important;
    min-height: 250px !important;
    max-height: 96px !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #eceae6 !important;
    box-shadow: none !important;
    user-select: none !important;
    cursor: ew-resize !important;
    touch-action: pan-y !important;
}

.before-after-section .split-layer-bg,
.before-after-section .split-layer-overlay {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.before-after-section .split-layer-bg {
    background-image: url('despues.png') !important;
    z-index: 1 !important;
}

.before-after-section .split-layer-overlay {
    background-image: url('antes.png') !important;
    clip-path: inset(0 50% 0 0) !important;
    overflow: hidden !important;
    z-index: 2 !important;
}

.before-after-section .split-handle {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    width: 2px !important;
    height: 100% !important;
    background: rgba(255, 255, 255, 0.96) !important;
    z-index: 4 !important;
    transform: translateX(-50%) !important;
    cursor: ew-resize !important;
}

.before-after-section .split-handle-button {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 42px !important;
    height: 42px !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #12131a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 19px !important;
    letter-spacing: -3px !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12) !important;
    pointer-events: none !important;
}

.before-after-section .comparison-label {
    position: absolute !important;
    top: 18px !important;
    bottom: auto !important;
    z-index: 5 !important;
    padding: 11px 16px !important;
    border-radius: 5px !important;
    background: rgba(18, 19, 26, 0.78) !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    pointer-events: none !important;
    white-space: nowrap !important;
}

.before-after-section .comparison-label-before {
    left: 18px !important;
}

.before-after-section .comparison-label-after {
    right: 18px !important;
    background: rgba(255, 255, 255, 0.70) !important;
    color: #ffffff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35) !important;
}

.before-after-stats {
    align-self: center !important;
    min-width: 0 !important;
    width: 100% !important;
    height: min(100%, 360px) !important;
    background: #fbfaf8 !important;
    border: 1px solid #f0ede8 !important;
    border-radius: 8px !important;
    padding: 14px 24px !important;
    box-shadow: 0 18px 40px rgba(24, 28, 35, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.before-after-stat {
    display: grid !important;
    grid-template-columns: 32px minmax(0, 1fr) !important;
    gap: 16px !important;
    align-items: center !important;
    flex: 1 1 0 !important;
    min-height: 68px !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid #e8e2dc !important;
}

.before-after-stat:last-child {
    border-bottom: 0 !important;
}

.before-after-icon {
    width: 28px !important;
    height: 28px !important;
    color: #857c74 !important;
}

.before-after-stat strong {
    display: block !important;
    color: #171717 !important;
    font-size: clamp(16px, 1.24vw, 22px) !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    margin: 0 0 4px !important;
}

.before-after-stat span {
    display: block !important;
    color: #5f5953 !important;
    font-size: clamp(10px, 0.82vw, 13px) !important;
    line-height: 1.32 !important;
}

@media (max-width: 860px) {
    .before-after-section {
        padding: 52px 22px !important;
    }

    .before-after-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .before-after-title {
        font-size: clamp(44px, 13vw, 62px) !important;
    }

    .before-after-button {
        width: 100% !important;
        justify-content: space-between !important;
    }

    .before-after-slider,
    .before-after-section .split-slider-frame {
        aspect-ratio: 1 / 0.82 !important;
        min-height: 260px !important;
        max-height: none !important;
    }

    .before-after-stats {
        height: auto !important;
        padding: 10px 22px !important;
    }

    .before-after-stat {
        min-height: 72px !important;
    }
}
/* --- ANTES Y DESPUES MOVIMIENTO V66 --- */
.before-after-section .split-slider-frame {
    cursor: ew-resize !important;
}

.before-after-section .split-layer-overlay,
.before-after-section .split-handle {
    will-change: clip-path, left !important;
}

.before-after-section .split-slider-frame.is-dragging,
.before-after-section .split-slider-frame.is-dragging * {
    cursor: ew-resize !important;
}
/* --- METRICAS Y PROYECTOS RESTAURADOS V67 --- */
.before-after-stats {
    overflow: visible !important;
}

.before-after-stat {
    overflow: visible !important;
}

.before-after-stat strong {
    color: #171717 !important;
    font-size: clamp(17px, 1.28vw, 22px) !important;
    line-height: 1.12 !important;
    font-weight: 700 !important;
    white-space: normal !important;
}

.before-after-stat span {
    color: #514c47 !important;
    font-size: clamp(11px, 0.86vw, 13px) !important;
    line-height: 1.35 !important;
    white-space: normal !important;
}

.project-card {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
/* --- TIPOGRAFIA WEB EN ANTES Y DESPUES V68 --- */
.before-after-section {
    font-family: var(--fuente-sans) !important;
}

.before-after-kicker {
    font-family: var(--fuente-sans) !important;
    color: var(--color-texto-secundario) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
}

.before-after-title {
    font-family: var(--fuente-serif) !important;
    color: var(--color-texto-principal) !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.before-after-text {
    font-family: var(--fuente-sans) !important;
    color: var(--color-texto-secundario) !important;
    font-weight: 300 !important;
    letter-spacing: 0 !important;
}

.before-after-button {
    font-family: var(--fuente-sans) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 2.5px !important;
}

.before-after-stat strong {
    font-family: var(--fuente-sans) !important;
    color: var(--color-texto-principal) !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
}

.before-after-stat span {
    font-family: var(--fuente-sans) !important;
    color: var(--color-texto-secundario) !important;
    font-weight: 300 !important;
    letter-spacing: 0 !important;
}
/* --- COLECCIONES COMPACTAS V71 --- */
.collections-section {
    padding: clamp(46px, 5vw, 66px) clamp(28px, 6vw, 96px) clamp(42px, 5vw, 60px) !important;
}

.collections-container {
    grid-template-columns: minmax(230px, 0.74fr) minmax(0, 1.26fr) !important;
    gap: clamp(30px, 4.4vw, 62px) !important;
    align-items: center !important;
    max-width: 1160px !important;
    margin: 0 auto !important;
}

.collections-sidebar {
    max-width: 330px !important;
}

.collections-section .sidebar-title {
    font-size: clamp(34px, 3vw, 42px) !important;
    line-height: 1.18 !important;
}

.collections-section .cards-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(220px, 300px)) !important;
    gap: clamp(16px, 1.8vw, 24px) !important;
    justify-content: start !important;
    align-items: stretch !important;
    width: auto !important;
    max-width: 630px !important;
}

.collections-section .collection-card {
    aspect-ratio: 1.18 / 1 !important;
    min-height: 238px !important;
    max-height: 285px !important;
    border-radius: 8px !important;
    padding: 28px !important;
}

.collections-section .card-title {
    font-size: 15px !important;
    letter-spacing: 2.2px !important;
}

.collections-section .card-desc {
    font-size: 12px !important;
    line-height: 1.45 !important;
    margin-bottom: 20px !important;
    max-width: 175px !important;
}

.collections-section .card-arrow-btn {
    width: 38px !important;
    height: 38px !important;
}

.collections-section .card-revestimientos {
    display: none !important;
}

@media (max-width: 980px) {
    .collections-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .collections-section .cards-grid {
        grid-template-columns: repeat(2, minmax(210px, 1fr)) !important;
        max-width: 700px !important;
    }
}

@media (max-width: 640px) {
    .collections-section {
        padding: 44px 22px 38px !important;
    }

    .collections-section .cards-grid {
        grid-template-columns: 1fr !important;
        max-width: none !important;
    }

    .collections-section .collection-card {
        aspect-ratio: 1.45 / 1 !important;
        min-height: 220px !important;
        max-height: none !important;
        padding: 26px !important;
    }
}
/* --- HERO FULL SCREEN Y ANIMACION V72 --- */
.hero-container {
    min-height: 100svh !important;
    height: 100svh !important;
    max-height: none !important;
    overflow: hidden !important;
    isolation: isolate !important;
}

@supports not (height: 100svh) {
    .hero-container {
        min-height: 100vh !important;
        height: 100vh !important;
    }
}

.hero-slide-bg {
    transform-origin: center right !important;
    will-change: transform, opacity !important;
}

.hero-slide-bg.active {
    animation: heroImageBreath 12s ease-in-out infinite alternate !important;
}

.hero-slide-bg:not(.active) {
    animation: none !important;
}

.main-content .category-tag,
.main-content .title,
.main-content .cta-wrapper {
    animation: heroCopyReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

.main-content .category-tag {
    animation-delay: 0.08s !important;
}

.main-content .title {
    animation-delay: 0.18s !important;
}

.main-content .cta-wrapper {
    animation-delay: 0.3s !important;
}

.cta-wrapper:hover .cta-arrow,
.cta-arrow {
    animation: heroArrowNudge 1.9s ease-in-out infinite !important;
}

.page-num.active {
    animation: heroPagePulse 2.2s ease-in-out infinite !important;
}


@keyframes heroImageBreath {
    0% {
        transform: scale(1.01);
    }

    100% {
        transform: scale(1.07);
    }
}

@keyframes heroCopyReveal {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroArrowNudge {
    0%,
    100% {
        transform: translate(0, -5px);
    }

    50% {
        transform: translate(7px, -5px);
    }
}

@keyframes heroPagePulse {
    0%,
    100% {
        opacity: 1;
        transform: translateX(0);
    }

    50% {
        opacity: 0.68;
        transform: translateX(5px);
    }
}


@media (max-width: 900px) {
    .hero-container {
        min-height: 100svh !important;
        height: 100svh !important;
    }

    .hero-container .main-wrapper {
        min-height: calc(100svh - var(--header-height)) !important;
        height: calc(100svh - var(--header-height)) !important;
        margin-top: 0 !important;
    }

    .hero-slide-bg.active {
        animation-duration: 10s !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide-bg.active,
    .main-content .category-tag,
    .main-content .title,
    .main-content .cta-wrapper,
    .cta-arrow,
    .page-num.active {
        animation: none !important;
    }
}
/* --- HERO FOTO FIJA V73 --- */
.hero-slide-bg,
.hero-slide-bg.active,
.hero-slide-bg:not(.active) {
    animation: none !important;
}

.hero-slide-bg {
    transform: none !important;
    transition: opacity 0.7s ease !important;
}

.hero-slide-bg.active {
    transform: none !important;
}
/* --- OPINIONES LIMPIAS Y MOBILE COMPACTO V74 --- */
.review-author-info,
.review-author {
    display: none !important;
}

.review-card {
    justify-content: flex-start !important;
    gap: 12px !important;
}

.footer-logo-link {
    width: 148px !important;
    height: 64px !important;
}

.footer-logo {
    width: 148px !important;
    height: 64px !important;
    object-fit: contain !important;
}

@media (max-width: 900px) {
    :root {
        --header-height: 78px !important;
    }

    .navbar,
    .page-navbar {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    .navbar .brand-link,
    .page-navbar .brand-link,
    .hero-container .brand-link,
    .navbar .brand-logo,
    .page-navbar .brand-logo,
    .hero-container .brand-logo {
        width: 170px !important;
        height: 68px !important;
    }

    .hero-container .main-wrapper {
        padding-left: 28px !important;
        padding-right: 22px !important;
    }

    .title {
        font-size: clamp(42px, 12vw, 58px) !important;
        line-height: 1.05 !important;
        margin-bottom: 34px !important;
    }

    .category-tag,
    .cta-link,
    .page-num,
    .sidebar-tag,
    .faq-tag,
    .before-after-kicker {
        font-size: 9px !important;
        letter-spacing: 2.4px !important;
    }

    .collections-section,
    .services-section,
    .featured-section,
    .floor-renewal-section,
    .projects-section,
    .experience-section,
    .faq-section,
    .before-after-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .collections-section {
        padding-top: 38px !important;
        padding-bottom: 34px !important;
    }

    .collections-section .sidebar-title,
    .services-title,
    .projects-title,
    .experience-title,
    .faq-title,
    .before-after-title,
    .floor-renewal-section .config-title {
        font-size: clamp(30px, 9.5vw, 42px) !important;
        line-height: 1.12 !important;
    }

    .collections-section .collection-card {
        min-height: 176px !important;
        padding: 22px !important;
    }

    .collections-section .card-title {
        font-size: 13px !important;
        letter-spacing: 1.8px !important;
    }

    .collections-section .card-desc {
        font-size: 11px !important;
        line-height: 1.35 !important;
        margin-bottom: 14px !important;
    }

    .reviews-section {
        padding: 44px 0 24px !important;
        gap: 12px !important;
    }

    .reviews-marquee-row {
        height: 184px !important;
    }

    .review-card {
        width: 292px !important;
        height: 162px !important;
        padding: 18px 19px !important;
        gap: 10px !important;
    }

    .review-stars {
        margin-bottom: 10px !important;
    }

    .star-icon {
        width: 11px !important;
        height: 11px !important;
    }

    .review-body {
        font-size: 11px !important;
        line-height: 1.42 !important;
    }

    .faq-trigger {
        font-size: 13px !important;
        padding: 15px 0 !important;
    }

    .faq-response-content,
    .before-after-text,
    .footer-brand-copy,
    .footer-info-value,
    .footer-follow-note {
        font-size: 12px !important;
        line-height: 1.55 !important;
    }

    footer.site-footer,
    #contacto.site-footer {
        padding: 38px 22px 24px !important;
    }

    .footer-main-layout,
    .footer-compact-layout {
        gap: 26px !important;
    }

    .footer-logo-link,
    .footer-logo {
        width: 126px !important;
        height: 54px !important;
    }
}

@media (max-width: 420px) {
    .title {
        font-size: clamp(38px, 11vw, 48px) !important;
    }

    .navbar .brand-link,
    .page-navbar .brand-link,
    .hero-container .brand-link,
    .navbar .brand-logo,
    .page-navbar .brand-logo,
    .hero-container .brand-logo {
        width: 154px !important;
        height: 62px !important;
    }

    .review-card {
        width: 278px !important;
        height: 156px !important;
        padding: 17px 18px !important;
    }
}
/* --- SERVICIOS CINCO ITEMS V77 --- */
.steps-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

@media (max-width: 1200px) {
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        row-gap: 34px !important;
    }
}

@media (max-width: 700px) {
    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}
/* --- AJUSTES ANTES DESPUES Y NOSOTROS V78 --- */
.before-after-button,
.before-after-section .comparison-label {
    display: none !important;
}

.before-after-title {
    font-size: clamp(34px, 3.15vw, 52px) !important;
    line-height: 1.08 !important;
    margin-bottom: 18px !important;
}

.before-after-text {
    font-size: clamp(12px, 0.94vw, 15px) !important;
    line-height: 1.58 !important;
    margin-bottom: 0 !important;
}

.before-after-stats {
    font-family: var(--fuente-sans) !important;
    background: #ffffff !important;
    border-color: #ece7e1 !important;
}

.before-after-stat {
    grid-template-columns: 28px minmax(0, 1fr) !important;
    gap: 14px !important;
}

.before-after-icon {
    width: 24px !important;
    height: 24px !important;
    color: #81776e !important;
}

.before-after-stat strong {
    font-family: var(--fuente-sans) !important;
    font-size: clamp(14px, 1.02vw, 18px) !important;
    font-weight: 500 !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
}

.before-after-stat span {
    font-family: var(--fuente-sans) !important;
    font-size: clamp(10px, 0.78vw, 12px) !important;
    font-weight: 300 !important;
    line-height: 1.34 !important;
    letter-spacing: 0 !important;
}

.footer-dev-logo {
    width: 328px !important;
    max-height: 96px !important;
    object-fit: contain !important;
}

.about-body {
    background: #ffffff !important;
}

.about-page {
    width: 100vw !important;
    padding: calc(var(--header-height) + 24px) 0 0 !important;
    background: #ffffff !important;
}

.about-story-hero {
    width: min(1180px, calc(100vw - 64px)) !important;
    min-height: clamp(320px, 42vh, 470px) !important;
    margin: 0 auto clamp(54px, 6vw, 86px) !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: flex-end !important;
    padding: clamp(34px, 5vw, 64px) !important;
    background-image: linear-gradient(90deg, rgba(10, 16, 24, 0.66), rgba(10, 16, 24, 0.18)), url('pisoingeniero.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

.about-story-hero::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 42% !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.46), transparent) !important;
    pointer-events: none !important;
}

.about-hero-copy {
    position: relative !important;
    z-index: 1 !important;
    width: min(620px, 100%) !important;
    color: #ffffff !important;
    animation: aboutHeroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

.about-kicker {
    margin: 0 0 16px !important;
    font-family: var(--fuente-sans) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: inherit !important;
    opacity: 0.78 !important;
}

.about-hero-copy h1,
.about-story-intro h2,
.about-service-panel h2 {
    font-family: var(--fuente-serif) !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.about-hero-copy h1 {
    margin: 0 0 20px !important;
    font-size: clamp(42px, 5.8vw, 78px) !important;
    line-height: 0.98 !important;
}

.about-hero-copy p:last-child {
    max-width: 530px !important;
    margin: 0 !important;
    font-size: clamp(14px, 1.15vw, 18px) !important;
    line-height: 1.6 !important;
    font-weight: 300 !important;
}

.about-story-section {
    width: min(1120px, calc(100vw - 64px)) !important;
    margin: 0 auto clamp(48px, 6vw, 78px) !important;
    display: grid !important;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr) !important;
    gap: clamp(34px, 6vw, 90px) !important;
    align-items: start !important;
}

.about-story-intro {
    color: var(--color-texto-principal) !important;
}

.about-story-intro h2 {
    margin: 0 !important;
    font-size: clamp(34px, 4vw, 56px) !important;
    line-height: 1.08 !important;
}

.about-story-copy {
    display: grid !important;
    gap: 20px !important;
    color: var(--color-texto-secundario) !important;
    font-size: clamp(14px, 1vw, 17px) !important;
    line-height: 1.72 !important;
    font-weight: 300 !important;
}

.about-story-copy p,
.about-service-panel p {
    margin: 0 !important;
}

.about-service-band {
    width: 100vw !important;
    padding: clamp(46px, 6vw, 82px) clamp(28px, 6vw, 94px) !important;
    background: #f7f5f2 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1px !important;
}

.about-service-panel {
    min-height: 330px !important;
    padding: clamp(30px, 4vw, 54px) !important;
    background: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    border: 1px solid #eee8e0 !important;
}

.about-service-panel span {
    font-family: var(--fuente-sans) !important;
    font-size: 10px !important;
    letter-spacing: 3px !important;
    color: #9b9188 !important;
}

.about-service-panel h2 {
    margin: 0 !important;
    color: var(--color-texto-principal) !important;
    font-size: clamp(28px, 3vw, 44px) !important;
    line-height: 1.1 !important;
}

.about-service-panel p {
    color: var(--color-texto-secundario) !important;
    font-size: 13px !important;
    line-height: 1.68 !important;
    font-weight: 300 !important;
}

.about-service-panel strong {
    color: var(--color-texto-principal) !important;
    font-weight: 500 !important;
}

@keyframes aboutHeroIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .before-after-title {
        font-size: clamp(30px, 9vw, 42px) !important;
    }

    .before-after-stat strong {
        font-size: 14px !important;
    }

    .about-page {
        padding-top: calc(var(--header-height) + 16px) !important;
    }

    .about-story-hero {
        width: calc(100vw - 36px) !important;
        min-height: 390px !important;
        padding: 34px 26px !important;
        margin-bottom: 48px !important;
    }

    .about-hero-copy h1 {
        font-size: clamp(40px, 12vw, 58px) !important;
    }

    .about-story-section {
        width: calc(100vw - 40px) !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .about-story-intro h2 {
        font-size: clamp(32px, 9vw, 44px) !important;
    }

    .about-service-band {
        grid-template-columns: 1fr !important;
        padding: 34px 20px !important;
    }

    .about-service-panel {
        min-height: 0 !important;
        padding: 30px 24px !important;
    }
}
/* --- NOSOTROS BANNER CORTO V79 --- */
.about-page {
    padding: calc(var(--header-height) + 18px) 0 0 !important;
    background: #ffffff !important;
}

.about-story-hero {
    width: min(1180px, calc(100vw - 64px)) !important;
    height: clamp(210px, 28vh, 330px) !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
    position: relative !important;
    overflow: hidden !important;
    background-image: url('pisoingeniero.jpg') !important;
    background-size: cover !important;
    background-position: center 58% !important;
}

.about-story-hero::before,
.about-story-hero::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    pointer-events: none !important;
}

.about-story-hero::before {
    top: 0 !important;
    bottom: auto !important;
    height: 100% !important;
    background: linear-gradient(90deg, rgba(12, 20, 30, 0.16), rgba(12, 20, 30, 0.02) 46%, rgba(255, 255, 255, 0.1)) !important;
    z-index: 1 !important;
}

.about-story-hero::after {
    top: auto !important;
    bottom: 0 !important;
    height: 46% !important;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.78) 62%, #ffffff 100%) !important;
    z-index: 2 !important;
}

.about-hero-copy {
    display: none !important;
}

.about-story-start,
.about-story-section {
    width: min(1120px, calc(100vw - 64px)) !important;
    margin: clamp(-42px, -3.8vw, -26px) auto clamp(46px, 5.5vw, 72px) !important;
    padding-top: clamp(34px, 4.2vw, 58px) !important;
    position: relative !important;
    z-index: 3 !important;
    display: grid !important;
    grid-template-columns: minmax(250px, 0.86fr) minmax(0, 1.14fr) !important;
    gap: clamp(34px, 5.4vw, 82px) !important;
    align-items: start !important;
    background: linear-gradient(to bottom, rgba(255,255,255,0.96), #ffffff 76px) !important;
}

.about-story-intro h1,
.about-story-intro h2 {
    margin: 0 0 20px !important;
    font-family: var(--fuente-serif) !important;
    font-size: clamp(38px, 4.45vw, 66px) !important;
    line-height: 1.02 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    color: var(--color-texto-principal) !important;
}

.about-story-lead {
    margin: 0 !important;
    max-width: 520px !important;
    font-family: var(--fuente-sans) !important;
    font-size: clamp(13px, 1.04vw, 16px) !important;
    line-height: 1.62 !important;
    font-weight: 300 !important;
    color: var(--color-texto-secundario) !important;
}

.about-story-section .about-kicker {
    color: var(--color-texto-secundario) !important;
    opacity: 1 !important;
}

.about-story-copy {
    padding-top: 8px !important;
}

.about-service-band {
    margin-top: 0 !important;
}

@media (max-width: 900px) {
    .about-page {
        padding-top: calc(var(--header-height) + 12px) !important;
    }

    .about-story-hero {
        width: calc(100vw - 32px) !important;
        height: clamp(190px, 28vh, 270px) !important;
        background-position: center !important;
    }

    .about-story-start,
    .about-story-section {
        width: calc(100vw - 40px) !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: -30px !important;
        padding-top: 36px !important;
    }

    .about-story-intro h1,
    .about-story-intro h2 {
        font-size: clamp(34px, 10vw, 48px) !important;
    }
}
/* --- NOSOTROS FULL WIDTH V80 --- */
.about-page {
    padding-top: var(--header-height) !important;
}

.about-story-hero {
    width: 100vw !important;
    height: clamp(230px, 30vh, 350px) !important;
    margin: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 0 !important;
}

.about-story-start,
.about-story-section {
    width: 100vw !important;
    max-width: none !important;
    margin: -28px 0 clamp(46px, 5.5vw, 72px) !important;
    padding: clamp(42px, 5vw, 70px) clamp(32px, 7vw, 118px) 0 !important;
    box-sizing: border-box !important;
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr) !important;
    background: linear-gradient(to bottom, rgba(255,255,255,0.98), #ffffff 86px) !important;
}

.about-story-intro,
.about-story-copy {
    min-width: 0 !important;
}

.about-story-intro h1,
.about-story-intro h2 {
    max-width: 720px !important;
}

.about-story-lead {
    max-width: 640px !important;
}

.about-story-copy {
    max-width: 760px !important;
}

@media (max-width: 900px) {
    .about-story-hero {
        width: 100vw !important;
        height: clamp(210px, 30vh, 300px) !important;
    }

    .about-story-start,
    .about-story-section {
        width: 100vw !important;
        margin-top: -24px !important;
        padding: 38px 22px 0 !important;
        grid-template-columns: 1fr !important;
    }

    .about-story-intro h1,
    .about-story-intro h2,
    .about-story-lead,
    .about-story-copy {
        max-width: none !important;
    }
}
/* --- LOGO ARS Y FOTO NOSOTROS V81 --- */
.footer-dev-logo {
    width: 328px !important;
    height: auto !important;
    max-height: 96px !important;
    object-fit: contain !important;
    display: block !important;
    opacity: 1 !important;
    filter: none !important;
    background: #182238 !important;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 28px rgba(18, 28, 44, 0.16) !important;
}

.footer-bottom-bar {
    align-items: center !important;
}

.about-story-hero {
    background-image: url('fotopisobanner.jpeg') !important;
    background-position: center 62% !important;
}

@media (max-width: 900px) {
    .footer-dev-logo {
        width: 328px !important;
        padding: 7px 12px !important;
    }

    .about-story-hero {
        background-position: center !important;
    }
}

/* --- NOSOTROS TEXTO CONTINUO V86 --- */
.about-story-start {
    grid-template-columns: 1fr !important;
    gap: clamp(18px, 2.4vw, 30px) !important;
    padding-top: clamp(44px, 5vw, 72px) !important;
}

.about-story-start .about-story-intro,
.about-story-start .about-story-copy {
    max-width: 980px !important;
}

.about-story-start .about-story-intro h1 {
    max-width: 940px !important;
    margin-bottom: 0 !important;
}

.about-story-start .about-story-copy {
    padding-top: 0 !important;
}

.about-story-start .about-story-lead {
    max-width: 980px !important;
    font-size: clamp(15px, 1.22vw, 19px) !important;
    line-height: 1.72 !important;
}

@media (max-width: 900px) {
    .about-story-start {
        gap: 18px !important;
        padding-top: 40px !important;
    }

    .about-story-start .about-story-lead {
        font-size: 15px !important;
        line-height: 1.66 !important;
    }
}
/* --- FOOTER LOGO DESARROLLADOR SOLO PNG V87 --- */
.footer-dev-logo {
    display: block !important;
    width: 118px !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    filter: none !important;
    opacity: 1 !important;
}

.footer-bottom-bar {
    background: transparent !important;
    box-shadow: none !important;
}

@media (max-width: 900px) {
    .footer-dev-logo {
        width: 104px !important;
        padding: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
    }
}
/* --- FOOTER LOGO DESARROLLADOR TAMANO CHICO V88 --- */
.footer-dev-logo {
    width: 92px !important;
    height: auto !important;
    max-height: 96px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    object-fit: contain !important;
}

@media (max-width: 900px) {
    .footer-dev-logo {
        width: 328px !important;
        max-height: 96px !important;
    }
}
/* --- PROYECTOS SOLO IMAGENES V93 --- */
.projects-gallery-body,
.projects-board-page {
    background: #ffffff !important;
}

.projects-gallery-body .projects-topbar {
    background: rgba(247, 245, 242, 0.96) !important;
    border-bottom: 1px solid rgba(229, 224, 219, 0.86) !important;
    box-shadow: none !important;
}

.projects-board-page {
    padding-top: var(--header-height) !important;
    padding-bottom: 0 !important;
}

.projects-board-sheet {
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

.projects-board-hero,
.projects-board-copy,
.projects-board-kicker,
.projects-board-title,
.projects-board-text,
.project-shot-featured {
    display: none !important;
}

.projects-board-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100vw !important;
    padding: 0 !important;
    margin: 0 !important;
}

.project-shot {
    width: 100% !important;
    aspect-ratio: 1.35 / 1 !important;
    margin: 0 !important;
    background: #f2efeb !important;
    overflow: hidden !important;
}

.project-shot img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

@media (max-width: 900px) {
    .projects-board-page {
        padding-top: var(--header-height) !important;
    }

    .projects-board-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 6px !important;
    }

    .project-shot {
        aspect-ratio: 1.08 / 1 !important;
    }
}
/* --- OPINIONES REALES COMPACTAS V94 --- */
.reviews-section {
    padding: 58px 0 34px 0 !important;
    gap: 16px !important;
}

.reviews-marquee-row {
    height: 196px !important;
}

.reviews-group {
    gap: 16px !important;
    padding-right: 16px !important;
}

.review-card {
    width: 365px !important;
    height: 176px !important;
    padding: 16px 18px !important;
    justify-content: flex-start !important;
    gap: 8px !important;
}

.review-stars {
    margin-bottom: 8px !important;
}

.star-icon {
    width: 11px !important;
    height: 11px !important;
}

.review-body {
    font-size: 11.4px !important;
    line-height: 1.34 !important;
}

@media (max-width: 900px) {
    .reviews-section {
        padding: 42px 0 24px 0 !important;
    }

    .reviews-marquee-row {
        height: 174px !important;
    }

    .review-card {
        width: 292px !important;
        height: 154px !important;
        padding: 14px 15px !important;
    }

    .review-body {
        font-size: 10.4px !important;
        line-height: 1.3 !important;
    }
}
/* --- AJUSTES FINALES EXPERIENCIA OPINIONES PROYECTOS V95 --- */
.reviews-marquee-row.marquee-to-left {
    animation-duration: 62s !important;
}

.projects-board-page {
    background: #ffffff !important;
    min-height: calc(100vh - var(--header-height)) !important;
}

.projects-board-grid {
    align-items: stretch !important;
}

.project-shot {
    display: block !important;
    min-height: 220px !important;
}

.project-shot img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: inherit !important;
    object-fit: cover !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 900px) {
    .reviews-marquee-row.marquee-to-left {
        animation-duration: 68s !important;
    }

    .project-shot {
        min-height: 168px !important;
    }
}
/* --- PROYECTOS DESTACADOS IMAGEN REAL V97 --- */
.project-card {
    background-image: none !important;
    background-color: #d8d2ca !important;
    isolation: isolate !important;
}

.project-card-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 0 !important;
    filter: saturate(1.08) contrast(1.08) brightness(0.92) !important;
}

.project-card::before {
    z-index: 1 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.48) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.02) 100%) !important;
}

.project-card-content {
    position: relative !important;
    z-index: 2 !important;
}
/* --- AJUSTES FINALES HERO SERVICIOS V101 --- */
.main-content {
    min-height: 390px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.category-tag {
    min-height: 18px !important;
}

.title {
    min-height: 3.35em !important;
}

.experience-section .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .main-content {
        min-height: 330px !important;
        align-items: flex-start !important;
        text-align: left !important;
        margin: 0 !important;
    }

    .category-tag,
    .title {
        text-align: left !important;
    }

    .title {
        min-height: 3.1em !important;
    }

    .experience-section .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
}
/* --- LINKEDIN FOOTER V102 --- */
.footer-social-icon[aria-label*="LinkedIn"] svg {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.65 !important;
}
/* --- AJUSTES HERO PISOS Y MODAL V107 --- */
.hero-container .main-content {
    min-height: 410px !important;
    justify-content: flex-start !important;
}

.hero-container .category-tag {
    min-height: 24px !important;
    color: #2f2b27 !important;
    opacity: 1 !important;
    font-weight: 600 !important;
    letter-spacing: 3.2px !important;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.58) !important;
}

.hero-container .title {
    min-height: 3.35em !important;
}

.navbar .brand-link,
.page-navbar .brand-link,
.hero-container .brand-link {
    width: 330px !important;
    height: 120px !important;
}

.navbar .brand-logo,
.page-navbar .brand-logo,
.hero-container .brand-logo {
    width: 330px !important;
    height: 120px !important;
    object-fit: contain !important;
    object-position: left center !important;
}

.footer-logo-link,
.footer-logo {
    width: 168px !important;
    height: 72px !important;
}

.door-preview-modal {
    z-index: 3200 !important;
    padding: clamp(26px, 4vh, 44px) clamp(24px, 4vw, 54px) !important;
}

.door-preview-dialog {
    width: min(1080px, calc(100vw - 72px)) !important;
    max-height: calc(100vh - 96px) !important;
}

.door-preview-scene {
    min-height: clamp(430px, 64vh, 680px) !important;
    background: #ffffff !important;
}

.door-preview-img {
    object-fit: contain !important;
    object-position: center center !important;
    background: #ffffff !important;
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .hero-container .main-content {
        min-height: 340px !important;
    }

    .hero-container .category-tag {
        min-height: 22px !important;
        color: #2f2b27 !important;
        font-size: 10px !important;
        letter-spacing: 2.6px !important;
    }

    .hero-container .brand-link,
    .navbar .brand-link,
    .page-navbar .brand-link,
    .hero-container .brand-logo,
    .navbar .brand-logo,
    .page-navbar .brand-logo {
        width: 184px !important;
        height: 74px !important;
    }

    .door-preview-modal {
        padding: 18px !important;
    }

    .door-preview-dialog {
        width: min(100%, calc(100vw - 36px)) !important;
        max-height: calc(100vh - 36px) !important;
    }

    .door-preview-scene {
        min-height: 390px !important;
    }
}

@media (max-width: 560px) {
    .hero-container .brand-link,
    .navbar .brand-link,
    .page-navbar .brand-link,
    .hero-container .brand-logo,
    .navbar .brand-logo,
    .page-navbar .brand-logo {
        width: 170px !important;
        height: 68px !important;
    }

    .door-preview-scene {
        min-height: 330px !important;
    }

    .footer-logo-link,
    .footer-logo {
        width: 138px !important;
        height: 60px !important;
    }
}
/* --- HERO ALTURA TEXTO ESTABLE V108 --- */
.hero-container .main-content {
    min-height: 420px !important;
    height: 420px !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

.hero-container .category-tag,
#heroCategory {
    display: block !important;
    min-height: 18px !important;
    height: 18px !important;
    line-height: 18px !important;
    margin: 0 0 30px 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    color: #25221f !important;
    opacity: 1 !important;
}

.hero-container .title,
#heroTitle {
    display: block !important;
    min-height: 3.35em !important;
    height: 3.35em !important;
    max-height: 3.35em !important;
    margin: 0 0 50px 0 !important;
    overflow: visible !important;
}

.hero-container .cta-wrapper {
    margin-top: 0 !important;
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .hero-container .main-content {
        min-height: 350px !important;
        height: 350px !important;
    }

    .hero-container .category-tag,
    #heroCategory {
        min-height: 16px !important;
        height: 16px !important;
        line-height: 16px !important;
        margin-bottom: 20px !important;
        font-size: clamp(8px, 2.45vw, 10px) !important;
        letter-spacing: clamp(1.5px, 0.55vw, 2.4px) !important;
        white-space: nowrap !important;
    }

    .hero-container .title,
    #heroTitle {
        min-height: 3.25em !important;
        height: 3.25em !important;
        max-height: 3.25em !important;
        margin-bottom: 34px !important;
    }
}

@media (max-width: 380px) {
    .hero-container .category-tag,
    #heroCategory {
        font-size: 8px !important;
        letter-spacing: 1.35px !important;
    }
}
/* --- AMBIENTE PUERTAS LLENA CONTENEDOR V109 --- */
.door-preview-scene {
    position: relative !important;
    overflow: hidden !important;
    background: #ffffff !important;
    padding: 0 !important;
}

.door-preview-img,
#doorPreviewImage {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    background: #ffffff !important;
    padding: 0 !important;
    margin: 0 !important;
}
/* --- MODAL AMBIENTE MACBOOK ESTABLE V112 --- */
@media (min-width: 901px) {
    .door-preview-modal {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        padding: calc(var(--header-height) + 24px) clamp(30px, 4vw, 58px) 32px !important;
    }

    .door-preview-dialog {
        width: min(1080px, calc(100vw - 88px)) !important;
        max-height: calc(100vh - var(--header-height) - 56px) !important;
    }

    .door-preview-scene {
        min-height: min(540px, calc(100vh - var(--header-height) - 56px)) !important;
    }

    .door-preview-img,
    #doorPreviewImage {
        object-fit: cover !important;
        object-position: center center !important;
    }
}

.door-preview-modal[data-door-code="MPE-0001"] .door-preview-img,
.door-preview-modal[data-door-code="MPE-0001"] #doorPreviewImage {
    transform: scale(1.08) !important;
    transform-origin: center center !important;
}
/* --- CORRECCION HERO Y MODAL OCULTO V113 --- */
.hero-container .main-content {
    height: auto !important;
    min-height: clamp(430px, 46vh, 540px) !important;
    justify-content: flex-start !important;
}

.hero-container .category-tag,
#heroCategory {
    height: auto !important;
    min-height: 20px !important;
    line-height: 1.2 !important;
    margin: 0 0 28px 0 !important;
    white-space: nowrap !important;
}

.hero-container .title,
#heroTitle {
    height: auto !important;
    max-height: none !important;
    min-height: 4.35em !important;
    overflow: visible !important;
    margin: 0 0 44px 0 !important;
}

.hero-container .cta-wrapper {
    position: relative !important;
    z-index: 4 !important;
    margin-top: 0 !important;
}

.door-preview-modal[hidden] {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.door-preview-modal:not([hidden]) {
    visibility: visible !important;
    pointer-events: auto !important;
}

@media (min-width: 901px) {
    .door-preview-modal:not([hidden]) {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        padding: calc(var(--header-height) + 24px) clamp(30px, 4vw, 58px) 32px !important;
    }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .hero-container .main-content {
        height: auto !important;
        min-height: 360px !important;
    }

    .hero-container .category-tag,
    #heroCategory {
        height: auto !important;
        min-height: 16px !important;
        margin-bottom: 20px !important;
    }

    .hero-container .title,
    #heroTitle {
        height: auto !important;
        max-height: none !important;
        min-height: 3.85em !important;
        margin-bottom: 30px !important;
    }
}
/* --- MPE 0001 BLANCA AJUSTE SUAVE V118 --- */
.door-preview-modal[data-door-code="MPE-0001"] .door-preview-img,
.door-preview-modal[data-door-code="MPE-0001"] #doorPreviewImage {
    transform: none !important;
}

.door-card[data-code="MPE-0001"][data-color="blanco"] .door-card-media {
    overflow: hidden !important;
}

.door-card[data-code="MPE-0001"][data-color="blanco"] .door-card-media img {
    transform: scale(1.16) !important;
    transform-origin: center center !important;
    object-fit: contain !important;
    object-position: center center !important;
}

.door-card[data-code="MPE-0001"][data-color="blanco"]:hover .door-card-media img {
    transform: scale(1.19) !important;
}
/* --- ANTES DESPUES FOTOS NUEVAS V119 --- */
.before-after-section .split-layer-bg {
    background-image: url('despues.png') !important;
}

.before-after-section .split-layer-overlay {
    background-image: url('antes.png') !important;
}
/* --- FOOTER LOGO Y SERVICIOS FINALES V120 --- */
.footer-logo-link,
.footer-logo {
    width: 210px !important;
    height: 90px !important;
}

@media (max-width: 900px) {
    .footer-logo-link,
    .footer-logo {
        width: 164px !important;
        height: 70px !important;
    }
}
/* --- SERVICIOS SIN ICONOS Y FOOTER LOGO XL V121 --- */
.experience-section .step-icon-wrapper,
.experience-section .step-icon {
    display: none !important;
}

.experience-section .step-cell {
    grid-template-columns: 1fr !important;
}

.footer-logo-link,
.footer-logo {
    width: 260px !important;
    height: 112px !important;
}

@media (max-width: 900px) {
    .footer-logo-link,
    .footer-logo {
        width: 190px !important;
        height: 82px !important;
    }
}
/* --- AJUSTES FINALES WHATSAPP COLECCIONES SERVICIOS V124 --- */
.collections-section .sidebar-tag {
    display: none !important;
}

.experience-section .step-icon-wrapper,
.experience-section .step-icon {
    display: none !important;
}

.experience-section .step-cell {
    grid-template-columns: 1fr !important;
}

.footer-logo-link,
.footer-logo {
    width: 320px !important;
    height: 138px !important;
}

.whatsapp-float {
    position: fixed !important;
    right: clamp(18px, 2.5vw, 34px) !important;
    bottom: calc(22px + env(safe-area-inset-bottom)) !important;
    z-index: 2600 !important;
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #25d366 !important;
    color: #ffffff !important;
    box-shadow: 0 14px 34px rgba(20, 50, 35, 0.28) !important;
    text-decoration: none !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease !important;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 18px 42px rgba(20, 50, 35, 0.34) !important;
}

.whatsapp-float svg {
    width: 32px !important;
    height: 32px !important;
    display: block !important;
    fill: currentColor !important;
}

@media (max-width: 900px) {
    .footer-logo-link,
    .footer-logo {
        width: 230px !important;
        height: 98px !important;
    }

    .whatsapp-float {
        width: 52px !important;
        height: 52px !important;
        right: 18px !important;
        bottom: calc(18px + env(safe-area-inset-bottom)) !important;
    }

    .whatsapp-float svg {
        width: 29px !important;
        height: 29px !important;
    }
}
/* --- WHATSAPP CONTACTANOS POPUP V125 --- */
.whatsapp-float {
    right: clamp(22px, 2.8vw, 42px) !important;
    bottom: calc(28px + env(safe-area-inset-bottom)) !important;
    isolation: isolate !important;
    animation: whatsappButtonPulse 3.2s ease-in-out infinite !important;
}

.whatsapp-float::before {
    content: "Contactanos" !important;
    position: absolute !important;
    right: calc(100% + 14px) !important;
    top: 50% !important;
    transform: translateY(-50%) translateX(8px) !important;
    z-index: -1 !important;
    min-width: 118px !important;
    padding: 10px 15px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    color: #162033 !important;
    box-shadow: 0 12px 30px rgba(22, 32, 51, 0.16) !important;
    font-family: var(--font-sans) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
    animation: whatsappBubblePop 5.2s ease-in-out infinite !important;
}

.whatsapp-float::after {
    content: "" !important;
    position: absolute !important;
    inset: -7px !important;
    z-index: -2 !important;
    border-radius: 50% !important;
    border: 1px solid rgba(37, 211, 102, 0.42) !important;
    opacity: 0 !important;
    transform: scale(0.78) !important;
    animation: whatsappRing 3.2s ease-out infinite !important;
    pointer-events: none !important;
}

@keyframes whatsappBubblePop {
    0%, 12%, 86%, 100% {
        opacity: 0;
        transform: translateY(-50%) translateX(8px);
    }

    20%, 70% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes whatsappRing {
    0% {
        opacity: 0.48;
        transform: scale(0.78);
    }

    70%, 100% {
        opacity: 0;
        transform: scale(1.34);
    }
}

@keyframes whatsappButtonPulse {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@media (max-width: 900px) {
    .whatsapp-float {
        right: 20px !important;
        bottom: calc(28px + env(safe-area-inset-bottom)) !important;
        width: 54px !important;
        height: 54px !important;
    }

    .whatsapp-float::before {
        right: 0 !important;
        top: auto !important;
        bottom: calc(100% + 12px) !important;
        min-width: 112px !important;
        padding: 9px 13px !important;
        font-size: 11px !important;
        transform: translateY(8px) !important;
    }

    @keyframes whatsappBubblePop {
        0%, 12%, 86%, 100% {
            opacity: 0;
            transform: translateY(8px);
        }

        20%, 70% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
/* --- WHATSAPP CONSERVADO LIMPIO V131 --- */
.whatsapp-widget {
    position: fixed !important;
    right: clamp(18px, 2.8vw, 40px) !important;
    bottom: calc(26px + env(safe-area-inset-bottom)) !important;
    z-index: 3200 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    pointer-events: none !important;
}

.whatsapp-widget .whatsapp-bubble {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 38px !important;
    padding: 0 15px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    color: #172033 !important;
    box-shadow: 0 12px 32px rgba(14, 25, 38, 0.18) !important;
    font-family: var(--font-sans) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    animation: whatsappBubbleSoft 4.4s ease-in-out infinite !important;
}

.whatsapp-widget .whatsapp-float {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 58px !important;
    height: 58px !important;
    flex: 0 0 58px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #25d366 !important;
    color: #ffffff !important;
    box-shadow: 0 16px 34px rgba(20, 50, 35, 0.28) !important;
    text-decoration: none !important;
    pointer-events: auto !important;
    animation: whatsappButtonPulse 3s ease-in-out infinite !important;
}

.whatsapp-widget .whatsapp-float svg {
    width: 31px !important;
    height: 31px !important;
    fill: currentColor !important;
}

.whatsapp-float::before,
.whatsapp-float::after {
    display: none !important;
    content: none !important;
}

@keyframes whatsappBubbleSoft {
    0%, 100% { opacity: 0.84; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(-4px); }
}

@media (max-width: 700px) {
    .whatsapp-widget {
        right: 14px !important;
        bottom: calc(14px + env(safe-area-inset-bottom)) !important;
    }

    .whatsapp-widget .whatsapp-bubble {
        display: none !important;
    }

    .whatsapp-widget .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        flex-basis: 50px !important;
    }

    .whatsapp-widget .whatsapp-float svg {
        width: 27px !important;
        height: 27px !important;
    }
}
/* --- PROYECTOS DESTACADOS INDIVIDUALES V132 --- */
.project-detail-body {
    background: #ffffff !important;
    color: var(--color-texto-principal) !important;
}

.project-detail-page {
    min-height: 100vh !important;
    padding: calc(var(--header-height) + 54px) clamp(28px, 6vw, 96px) 84px !important;
    background: #ffffff !important;
}

.project-detail-hero {
    display: grid !important;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr) !important;
    gap: clamp(34px, 5.5vw, 86px) !important;
    align-items: end !important;
    max-width: 1280px !important;
    margin: 0 auto clamp(34px, 5vw, 72px) !important;
}

.project-back-link {
    display: inline-flex !important;
    margin-bottom: 34px !important;
    color: var(--color-texto-secundario) !important;
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
}

.project-detail-kicker {
    margin: 0 0 16px !important;
    color: var(--color-texto-secundario) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.32em !important;
    text-transform: uppercase !important;
}

.project-detail-title {
    max-width: 520px !important;
    margin: 0 0 22px !important;
    font-family: var(--fuente-serif) !important;
    font-size: clamp(46px, 6vw, 82px) !important;
    font-weight: 400 !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
}

.project-detail-lead {
    max-width: 430px !important;
    margin: 0 !important;
    color: var(--color-texto-secundario) !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
}

.project-detail-cover {
    width: 100% !important;
    aspect-ratio: 1.45 / 1 !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #f7f5f2 !important;
}

.project-detail-cover img,
.project-detail-photo img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

.project-detail-gallery {
    max-width: 1280px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: clamp(14px, 1.8vw, 22px) !important;
}

.project-detail-photo {
    grid-column: span 6 !important;
    min-height: clamp(260px, 34vw, 470px) !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #f7f5f2 !important;
}

.project-detail-photo:nth-child(3n + 1) {
    grid-column: span 7 !important;
}

.project-detail-photo:nth-child(3n + 2) {
    grid-column: span 5 !important;
}

.project-detail-photo:nth-child(4n) {
    min-height: clamp(340px, 42vw, 560px) !important;
}

@media (max-width: 900px) {
    .project-detail-page {
        padding: calc(var(--header-height) + 34px) 22px 58px !important;
    }

    .project-detail-hero {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        margin-bottom: 34px !important;
    }

    .project-back-link {
        margin-bottom: 24px !important;
    }

    .project-detail-title {
        font-size: clamp(38px, 11vw, 54px) !important;
    }

    .project-detail-cover {
        aspect-ratio: 1.12 / 1 !important;
    }

    .project-detail-gallery {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .project-detail-photo,
    .project-detail-photo:nth-child(n) {
        grid-column: auto !important;
        min-height: 280px !important;
        aspect-ratio: 1.15 / 1 !important;
    }
}
/* --- PROYECTOS DESTACADOS BENTO V133 --- */
.project-collection-body {
    background: #f4f3f1 !important;
}

.project-collection-page {
    min-height: 100vh !important;
    padding: calc(var(--header-height) + 22px) clamp(10px, 1.8vw, 22px) 22px !important;
    background: #f4f3f1 !important;
}

.project-collection-back {
    margin: 0 0 12px 4px !important;
}

.project-collection-label-top {
    width: 100% !important;
    margin: 0 0 16px !important;
    color: #57524d !important;
    font-size: 11px !important;
    line-height: 1 !important;
    text-align: center !important;
    letter-spacing: 0.02em !important;
}

.project-collection-bento {
    display: grid !important;
    grid-template-columns: 1.08fr 0.74fr 0.33fr !important;
    grid-template-rows: minmax(265px, 1fr) minmax(265px, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 1320px !important;
    min-height: min(72vh, 690px) !important;
    margin: 0 auto !important;
}

.project-collection-tile,
.project-collection-dark-card {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 7px !important;
    margin: 0 !important;
    background: #101112 !important;
}

.project-collection-tile img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.project-collection-tile:hover img,
.project-collection-tile:focus-within img {
    transform: scale(1.045) !important;
}

.project-collection-hero-tile {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 3 !important;
}

.project-collection-wide-tile {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 2 !important;
}

.project-collection-bottom-tile {
    grid-column: 3 / 4 !important;
    grid-row: 2 / 3 !important;
}

.project-collection-dark-card:nth-of-type(3) {
    grid-column: 3 / 4 !important;
    grid-row: 1 / 2 !important;
}

.project-collection-dark-card:nth-of-type(4) {
    grid-column: 2 / 3 !important;
    grid-row: 2 / 3 !important;
    max-width: 200px !important;
}

.project-collection-name-card {
    position: absolute !important;
    left: clamp(18px, 2vw, 28px) !important;
    bottom: clamp(18px, 2vw, 28px) !important;
    z-index: 3 !important;
    width: min(178px, 42%) !important;
    min-height: 132px !important;
    padding: 19px 20px !important;
    border-radius: 5px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    color: #111111 !important;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12) !important;
}

.project-collection-name-card h1 {
    margin: 0 0 10px !important;
    font-size: 21px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
}

.project-collection-name-card p {
    margin: 0 0 16px !important;
    color: #77716a !important;
    font-size: 9.5px !important;
    line-height: 1.45 !important;
}

.project-collection-name-card a,
.project-collection-dark-card a {
    color: inherit !important;
    font-size: 10px !important;
    line-height: 1 !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
}

.project-collection-dark-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: clamp(20px, 2vw, 28px) !important;
    color: #f6f1e8 !important;
    isolation: isolate !important;
}

.project-collection-dark-card::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: -1 !important;
    background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.08), transparent 36%), linear-gradient(135deg, #111213 0%, #08090a 100%) !important;
}

.project-video-slot::after {
    content: "" !important;
    position: absolute !important;
    inset: -40% !important;
    z-index: -1 !important;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.08) 45%, transparent 58%) !important;
    transform: translateX(-42%) !important;
    animation: projectVideoSweep 5.8s ease-in-out infinite !important;
}

.project-collection-dark-card h2 {
    margin: 0 !important;
    color: #f6f1e8 !important;
    font-size: 20px !important;
    line-height: 1.1 !important;
    font-weight: 500 !important;
}

.project-collection-dark-card p {
    max-width: 168px !important;
    margin: auto 0 24px !important;
    color: rgba(246, 241, 232, 0.62) !important;
    font-size: 11px !important;
    line-height: 1.6 !important;
}

@keyframes projectVideoSweep {
    0%, 32% { transform: translateX(-42%); opacity: 0; }
    48% { opacity: 1; }
    70%, 100% { transform: translateX(42%); opacity: 0; }
}

@media (max-width: 980px) {
    .project-collection-bento {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto !important;
        min-height: 0 !important;
    }

    .project-collection-hero-tile,
    .project-collection-wide-tile,
    .project-collection-bottom-tile,
    .project-collection-dark-card:nth-of-type(3),
    .project-collection-dark-card:nth-of-type(4) {
        grid-column: auto !important;
        grid-row: auto !important;
        max-width: none !important;
        min-height: 280px !important;
    }

    .project-collection-hero-tile {
        grid-column: span 2 !important;
        min-height: 460px !important;
    }
}

@media (max-width: 640px) {
    .project-collection-page {
        padding: calc(var(--header-height) + 18px) 10px 16px !important;
    }

    .project-collection-bento {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .project-collection-hero-tile,
    .project-collection-wide-tile,
    .project-collection-bottom-tile,
    .project-collection-dark-card:nth-of-type(3),
    .project-collection-dark-card:nth-of-type(4) {
        grid-column: auto !important;
        min-height: 320px !important;
    }

    .project-collection-hero-tile {
        min-height: 520px !important;
    }

    .project-collection-dark-card {
        min-height: 260px !important;
    }

    .project-collection-name-card {
        width: min(180px, calc(100% - 34px)) !important;
    }
}
/* --- PROYECTOS BENTO FULLSCREEN Y REVEAL V134 --- */
.project-collection-body .page-navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: var(--header-height) !important;
    transform: none !important;
    z-index: 5000 !important;
    background: rgba(247, 245, 242, 0.96) !important;
    border-bottom: 1px solid rgba(229, 224, 219, 0.86) !important;
}

.project-collection-body {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100svh !important;
    background: #f4f3f1 !important;
}

.project-collection-page {
    width: 100vw !important;
    min-height: 100svh !important;
    padding: calc(var(--header-height) + 10px) 8px 8px !important;
    background: #f4f3f1 !important;
    overflow-x: hidden !important;
}

.project-collection-back {
    display: inline-flex !important;
    margin: 0 0 8px 4px !important;
    position: relative !important;
    z-index: 2 !important;
}

.project-collection-label-top {
    margin: 0 0 8px !important;
    height: 14px !important;
    line-height: 14px !important;
}

.project-collection-bento {
    width: 100% !important;
    max-width: none !important;
    height: calc(100svh - var(--header-height) - 50px) !important;
    min-height: 620px !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.74fr) minmax(150px, 0.33fr) !important;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 8px !important;
}

.project-collection-hero-tile {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 3 !important;
}

.project-collection-wide-tile {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 2 !important;
}

.project-video-slot[data-video-slot="1"] {
    grid-column: 3 / 4 !important;
    grid-row: 1 / 2 !important;
}

.project-video-slot[data-video-slot="2"] {
    grid-column: 2 / 3 !important;
    grid-row: 2 / 3 !important;
    width: min(210px, 42%) !important;
    min-width: 180px !important;
    justify-self: start !important;
}

.project-collection-bottom-tile {
    grid-column: 2 / 4 !important;
    grid-row: 2 / 3 !important;
    margin-left: min(218px, 44%) !important;
}

.project-collection-tile,
.project-collection-dark-card {
    height: 100% !important;
    min-height: 0 !important;
}

.project-reveal {
    opacity: 0 !important;
    transform: translateY(34px) scale(0.985) !important;
    transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: opacity, transform !important;
}

.project-reveal.animated {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

.project-collection-bento .project-reveal:nth-child(1) { transition-delay: 80ms !important; }
.project-collection-bento .project-reveal:nth-child(2) { transition-delay: 180ms !important; }
.project-collection-bento .project-reveal:nth-child(3) { transition-delay: 280ms !important; }
.project-collection-bento .project-reveal:nth-child(4) { transition-delay: 380ms !important; }
.project-collection-bento .project-reveal:nth-child(5) { transition-delay: 480ms !important; }

.project-collection-bento::after {
    content: "" !important;
    position: absolute !important;
    pointer-events: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .project-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 980px) {
    .project-collection-page {
        min-height: 100svh !important;
        padding: calc(var(--header-height) + 10px) 8px 8px !important;
    }

    .project-collection-bento {
        height: auto !important;
        min-height: calc(100svh - var(--header-height) - 42px) !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto !important;
    }

    .project-collection-hero-tile,
    .project-collection-wide-tile,
    .project-collection-bottom-tile,
    .project-video-slot[data-video-slot="1"],
    .project-video-slot[data-video-slot="2"] {
        grid-column: auto !important;
        grid-row: auto !important;
        width: auto !important;
        min-width: 0 !important;
        justify-self: stretch !important;
        margin-left: 0 !important;
        min-height: 280px !important;
    }

    .project-collection-hero-tile {
        grid-column: span 2 !important;
        min-height: min(58svh, 520px) !important;
    }
}

@media (max-width: 640px) {
    .project-collection-page {
        padding: calc(var(--header-height) + 8px) 8px 8px !important;
    }

    .project-collection-back {
        margin-bottom: 8px !important;
    }

    .project-collection-label-top {
        margin-bottom: 8px !important;
    }

    .project-collection-bento {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .project-collection-hero-tile,
    .project-collection-wide-tile,
    .project-collection-bottom-tile,
    .project-video-slot[data-video-slot="1"],
    .project-video-slot[data-video-slot="2"] {
        grid-column: auto !important;
        min-height: 72svh !important;
        width: auto !important;
        margin: 0 !important;
    }

    .project-collection-dark-card {
        min-height: 58svh !important;
    }
}


/* --- PROYECTOS MAS IMAGENES Y SIDE REVEAL V135 --- */
.project-collection-body .page-navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: var(--header-height) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 100px !important;
    background: rgba(247, 245, 242, 0.96) !important;
    border-bottom: 1px solid rgba(229, 224, 219, 0.86) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    transform: none !important;
    z-index: 5000 !important;
}

.project-collection-body .page-navbar .brand-link {
    margin: 0 !important;
    justify-content: flex-start !important;
}

.project-collection-body .page-navbar .nav-actions {
    display: flex !important;
}

.project-collection-page {
    padding-top: calc(var(--header-height) + 12px) !important;
}

.project-collection-bento {
    height: calc(100svh - var(--header-height) - 54px) !important;
    min-height: 650px !important;
}

.project-collection-more {
    width: 100% !important;
    max-width: none !important;
    margin: 8px 0 0 !important;
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 0 0 8px !important;
}

.project-extra-card {
    position: relative !important;
    min-height: clamp(260px, 31vw, 500px) !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #111 !important;
}

.project-extra-card:nth-child(6n + 1),
.project-extra-card:nth-child(6n + 5) {
    grid-column: span 5 !important;
}

.project-extra-card:nth-child(6n + 2),
.project-extra-card:nth-child(6n + 6) {
    grid-column: span 4 !important;
}

.project-extra-card:nth-child(6n + 3),
.project-extra-card:nth-child(6n + 4) {
    grid-column: span 3 !important;
}

.project-extra-card:nth-child(4n + 2) {
    min-height: clamp(340px, 42vw, 640px) !important;
}

.project-extra-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1), filter 850ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.project-extra-card:hover img {
    transform: scale(1.045) !important;
    filter: saturate(1.04) contrast(1.03) !important;
}

.project-reveal-left {
    opacity: 0 !important;
    transform: translateX(-58px) scale(0.985) !important;
}

.project-reveal-right {
    opacity: 0 !important;
    transform: translateX(58px) scale(0.985) !important;
}

.project-reveal-left.animated,
.project-reveal-right.animated {
    opacity: 1 !important;
    transform: translateX(0) scale(1) !important;
}

.project-collection-more .project-reveal:nth-child(1) { transition-delay: 60ms !important; }
.project-collection-more .project-reveal:nth-child(2) { transition-delay: 130ms !important; }
.project-collection-more .project-reveal:nth-child(3) { transition-delay: 200ms !important; }
.project-collection-more .project-reveal:nth-child(4) { transition-delay: 90ms !important; }
.project-collection-more .project-reveal:nth-child(5) { transition-delay: 160ms !important; }
.project-collection-more .project-reveal:nth-child(6) { transition-delay: 230ms !important; }
.project-collection-more .project-reveal:nth-child(7) { transition-delay: 110ms !important; }
.project-collection-more .project-reveal:nth-child(8) { transition-delay: 180ms !important; }

@media (max-width: 980px) {
    .project-collection-body .page-navbar {
        padding-left: clamp(18px, 5vw, 30px) !important;
        padding-right: clamp(18px, 5vw, 30px) !important;
    }

    .project-collection-body .page-navbar .nav-actions {
        display: none !important;
    }

    .project-collection-more {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .project-extra-card,
    .project-extra-card:nth-child(n) {
        grid-column: span 1 !important;
        min-height: 320px !important;
    }
}

@media (max-width: 640px) {
    .project-collection-body .page-navbar {
        height: var(--header-height) !important;
        padding-left: clamp(18px, 5vw, 24px) !important;
        padding-right: clamp(18px, 5vw, 24px) !important;
    }

    .project-collection-body .page-navbar .brand-logo {
        width: min(178px, 45vw) !important;
        height: auto !important;
    }

    .project-collection-bento {
        min-height: 0 !important;
    }

    .project-collection-more {
        grid-template-columns: 1fr !important;
    }

    .project-extra-card,
    .project-extra-card:nth-child(n) {
        grid-column: auto !important;
        min-height: 72svh !important;
    }
}

/* --- PROYECTOS ORDENADOS HEADER REAL Y WHATSAPP V136 --- */
.project-story-body .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: var(--header-height) !important;
    z-index: 5000 !important;
    background-color: var(--color-fondo-solido) !important;
    border-bottom: 1px solid var(--color-lineas) !important;
    transform: none !important;
}

.project-story-body .navbar .nav-actions {
    display: flex !important;
}

.project-story-body .menu-hamburger {
    z-index: 5100 !important;
}

.project-story-page {
    width: 100% !important;
    min-height: 100svh !important;
    padding: calc(var(--header-height) + 34px) clamp(10px, 1.4vw, 22px) 10px !important;
    background: #f4f3f1 !important;
    overflow-x: hidden !important;
}

.project-story-page .project-collection-back {
    margin: 0 0 12px 4px !important;
    color: #2b2926 !important;
    font-size: 11px !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
}

.project-story-hero {
    position: relative !important;
    min-height: calc(100svh - var(--header-height) - 70px) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #111 !important;
    display: flex !important;
    align-items: flex-end !important;
    isolation: isolate !important;
}

.project-story-hero::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(90deg, rgba(0,0,0,0.62), rgba(0,0,0,0.18) 54%, rgba(0,0,0,0.06)) !important;
}

.project-story-hero img,
.project-story-card img,
.project-gallery-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.project-story-hero img {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
}

.project-story-hero-copy {
    position: relative !important;
    z-index: 2 !important;
    width: min(560px, calc(100% - 44px)) !important;
    margin: 0 0 clamp(34px, 5vw, 72px) clamp(28px, 5vw, 86px) !important;
    color: #fff !important;
}

.project-story-hero-copy p {
    margin: 0 0 14px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.34em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.76) !important;
}

.project-story-hero-copy h1 {
    margin: 0 0 18px !important;
    color: #fff !important;
    font-family: var(--font-display) !important;
    font-size: clamp(44px, 7vw, 98px) !important;
    line-height: 0.95 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.project-story-hero-copy span {
    display: block !important;
    max-width: 430px !important;
    color: rgba(255,255,255,0.86) !important;
    font-size: clamp(16px, 1.4vw, 21px) !important;
    line-height: 1.55 !important;
}

.project-story-flow,
.project-story-gallery {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 10px !important;
}

.project-story-card,
.project-gallery-card {
    position: relative !important;
    min-height: clamp(320px, 36vw, 620px) !important;
    overflow: hidden !important;
    border-radius: 10px !important;
    background: #111 !important;
    grid-column: span 6 !important;
}

.project-story-card-wide {
    grid-column: span 8 !important;
}

.project-story-flow .project-story-card:nth-child(2),
.project-story-flow .project-story-card:nth-child(3) {
    grid-column: span 4 !important;
}

.project-story-card::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(0deg, rgba(0,0,0,0.62), rgba(0,0,0,0.04) 62%) !important;
    z-index: 1 !important;
}

.project-story-card img,
.project-gallery-card img {
    transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1), filter 850ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.project-story-card:hover img,
.project-gallery-card:hover img {
    transform: scale(1.045) !important;
    filter: saturate(1.04) contrast(1.03) !important;
}

.project-story-card-caption {
    position: absolute !important;
    left: clamp(22px, 3vw, 44px) !important;
    right: clamp(22px, 3vw, 44px) !important;
    bottom: clamp(24px, 3vw, 46px) !important;
    z-index: 2 !important;
    color: #fff !important;
}

.project-story-card-caption span,
.project-gallery-card figcaption {
    display: inline-flex !important;
    margin-bottom: 10px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.24em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.72) !important;
}

.project-story-card-caption h2 {
    margin: 0 0 8px !important;
    color: #fff !important;
    font-size: clamp(24px, 3vw, 46px) !important;
    line-height: 1 !important;
    font-weight: 500 !important;
}

.project-story-card-caption p {
    margin: 0 !important;
    max-width: 440px !important;
    color: rgba(255,255,255,0.78) !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}

.project-gallery-card {
    grid-column: span 3 !important;
    min-height: clamp(240px, 25vw, 460px) !important;
}

.project-gallery-card:nth-child(7n + 1),
.project-gallery-card:nth-child(7n + 5) {
    grid-column: span 5 !important;
}

.project-gallery-card:nth-child(7n + 2),
.project-gallery-card:nth-child(7n + 6) {
    grid-column: span 4 !important;
}

.project-gallery-card figcaption {
    position: absolute !important;
    left: 18px !important;
    bottom: 16px !important;
    z-index: 2 !important;
    margin: 0 !important;
    color: rgba(255,255,255,0.82) !important;
}

.project-gallery-card::after {
    content: "" !important;
    position: absolute !important;
    inset: 55% 0 0 !important;
    background: linear-gradient(0deg, rgba(0,0,0,0.42), transparent) !important;
    z-index: 1 !important;
}

.project-reveal-left {
    opacity: 0 !important;
    transform: translateX(-64px) scale(0.985) !important;
}

.project-reveal-right {
    opacity: 0 !important;
    transform: translateX(64px) scale(0.985) !important;
}

.project-reveal-left.animated,
.project-reveal-right.animated {
    opacity: 1 !important;
    transform: translateX(0) scale(1) !important;
}

.project-story-page .whatsapp-widget,
.project-story-body .whatsapp-widget {
    z-index: 5200 !important;
}

@media (max-width: 1200px) {
    .project-story-body .navbar {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .project-story-body .navbar {
        justify-content: space-between !important;
        align-items: center !important;
        padding-left: clamp(18px, 5vw, 30px) !important;
        padding-right: clamp(18px, 5vw, 30px) !important;
    }

    .project-story-body .navbar .nav-actions {
        display: none !important;
    }

    .project-story-body .navbar .brand-link,
    .project-story-body .navbar .brand-logo {
        width: 178px !important;
        height: 72px !important;
        margin: 0 !important;
        object-fit: contain !important;
        object-position: left center !important;
    }

    .project-story-page {
        padding: calc(var(--header-height) + 22px) 10px 10px !important;
    }

    .project-story-flow,
    .project-story-gallery {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .project-story-card,
    .project-story-card-wide,
    .project-story-flow .project-story-card:nth-child(n),
    .project-gallery-card,
    .project-gallery-card:nth-child(n) {
        grid-column: auto !important;
        min-height: 68svh !important;
    }

    .project-story-hero {
        min-height: 76svh !important;
        border-radius: 8px !important;
    }

    .project-story-hero-copy {
        width: calc(100% - 42px) !important;
        margin: 0 21px 34px !important;
    }

    .project-story-hero-copy h1 {
        font-size: clamp(42px, 13vw, 58px) !important;
    }

    .project-story-card-caption h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 560px) {
    .project-story-body .navbar .brand-link,
    .project-story-body .navbar .brand-logo {
        width: 158px !important;
        height: 64px !important;
    }

    .project-story-card,
    .project-story-card-wide,
    .project-story-flow .project-story-card:nth-child(n),
    .project-gallery-card,
    .project-gallery-card:nth-child(n) {
        min-height: 60svh !important;
    }

    .project-story-hero {
        min-height: 72svh !important;
    }
}

/* --- PROYECTOS DESTACADOS EDITORIAL MOTION V137 --- */
.project-editorial-body {
    margin: 0 !important;
    background: #faf8f5 !important;
    color: #1f1d1a !important;
}

.project-editorial-body .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: var(--header-height) !important;
    z-index: 5000 !important;
    background: #faf8f5 !important;
    border-bottom: 1px solid #ece7e1 !important;
    box-shadow: none !important;
    transform: none !important;
}

.project-editorial-body .navbar .nav-actions {
    display: flex !important;
}

.project-editorial-page {
    width: min(1560px, calc(100vw - 56px)) !important;
    margin: 0 auto !important;
    padding: calc(var(--header-height) + 44px) 0 18px !important;
    overflow-x: hidden !important;
}

.editorial-back {
    display: inline-flex !important;
    margin: 0 0 32px !important;
    color: #777069 !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.24em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
}

.editorial-cover {
    display: grid !important;
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr) !important;
    gap: clamp(34px, 5vw, 86px) !important;
    align-items: end !important;
    min-height: calc(100svh - var(--header-height) - 110px) !important;
    padding-bottom: clamp(26px, 4vw, 62px) !important;
    border-bottom: 1px solid #e8e1d8 !important;
}

.editorial-cover-copy {
    max-width: 560px !important;
    padding-bottom: clamp(4px, 4vw, 70px) !important;
}

.editorial-eyebrow,
.editorial-intro > p {
    margin: 0 0 18px !important;
    color: #7f786f !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.34em !important;
    text-transform: uppercase !important;
}

.editorial-cover-copy h1 {
    margin: 0 !important;
    color: #20201e !important;
    font-family: var(--fuente-serif) !important;
    font-size: clamp(64px, 8vw, 132px) !important;
    line-height: 0.9 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.editorial-lead {
    max-width: 470px !important;
    margin: 28px 0 0 !important;
    color: #5f5952 !important;
    font-size: clamp(16px, 1.24vw, 20px) !important;
    line-height: 1.75 !important;
    font-weight: 300 !important;
}

.editorial-line {
    display: block !important;
    width: min(230px, 42vw) !important;
    height: 1px !important;
    margin-top: 28px !important;
    background: #c9b89e !important;
    transform-origin: left center !important;
    transform: scaleX(0) !important;
    transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1) 180ms !important;
}

.animated .editorial-line,
.editorial-intro.animated .editorial-line {
    transform: scaleX(1) !important;
}

.editorial-cover-media {
    margin: 0 !important;
    align-self: stretch !important;
    min-height: clamp(430px, 62vh, 760px) !important;
}

.editorial-cover-media figcaption,
.editorial-gallery-item figcaption {
    margin-top: 12px !important;
    color: #948b82 !important;
    font-size: 10px !important;
    letter-spacing: 0.24em !important;
    text-transform: uppercase !important;
}

.editorial-image-mask {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    background: #ece7e1 !important;
    isolation: isolate !important;
}

.editorial-image-mask::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background: #faf8f5 !important;
    transform-origin: right center !important;
    transform: scaleX(1) !important;
    transition: transform 980ms cubic-bezier(0.76, 0, 0.24, 1) 160ms !important;
}

.editorial-from-left .editorial-image-mask::after {
    transform-origin: left center !important;
}

.project-reveal.animated .editorial-image-mask::after {
    transform: scaleX(0) !important;
}

.editorial-image-mask img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transform: scale(1.055) !important;
    transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1), filter 1200ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.project-reveal.animated .editorial-image-mask img,
.editorial-panel:hover .editorial-image-mask img,
.editorial-gallery-item:hover .editorial-image-mask img {
    transform: scale(1) !important;
}

.editorial-intro {
    display: grid !important;
    grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.78fr) minmax(120px, 0.22fr) !important;
    gap: clamp(24px, 4vw, 70px) !important;
    align-items: start !important;
    padding: clamp(70px, 9vw, 132px) 0 clamp(44px, 6vw, 86px) !important;
    border-bottom: 1px solid #e8e1d8 !important;
}

.editorial-intro h2 {
    margin: 0 !important;
    max-width: 860px !important;
    color: #25221f !important;
    font-family: var(--fuente-serif) !important;
    font-size: clamp(42px, 4.8vw, 82px) !important;
    line-height: 0.98 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.editorial-grid,
.editorial-gallery {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: clamp(18px, 2vw, 34px) !important;
    padding: clamp(42px, 6vw, 86px) 0 !important;
    border-bottom: 1px solid #e8e1d8 !important;
}

.editorial-panel {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.42fr) !important;
    gap: clamp(20px, 3vw, 52px) !important;
    align-items: end !important;
    grid-column: span 6 !important;
    min-height: clamp(390px, 40vw, 680px) !important;
}

.editorial-panel-wide {
    grid-column: span 8 !important;
}

.editorial-panel-tall {
    grid-column: span 4 !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
}

.editorial-panel-normal {
    grid-column: span 4 !important;
    grid-template-columns: 1fr !important;
}

.editorial-panel .editorial-image-mask {
    min-height: inherit !important;
}

.editorial-panel-copy {
    padding: 0 0 6px !important;
}

.editorial-panel-copy span {
    display: block !important;
    margin-bottom: 18px !important;
    color: #a09282 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.28em !important;
    text-transform: uppercase !important;
}

.editorial-panel-copy h2 {
    margin: 0 0 18px !important;
    color: #24221f !important;
    font-family: var(--fuente-serif) !important;
    font-size: clamp(32px, 3.4vw, 60px) !important;
    line-height: 0.98 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.editorial-panel-copy p {
    margin: 0 !important;
    color: #666059 !important;
    font-size: 14px !important;
    line-height: 1.76 !important;
    font-weight: 300 !important;
}

.editorial-gallery {
    padding-bottom: 18px !important;
    border-bottom: 0 !important;
}

.editorial-gallery-item {
    grid-column: span 3 !important;
    margin: 0 !important;
    min-height: clamp(280px, 25vw, 470px) !important;
}

.editorial-gallery-item:nth-child(8n + 1),
.editorial-gallery-item:nth-child(8n + 6) {
    grid-column: span 5 !important;
}

.editorial-gallery-item:nth-child(8n + 2),
.editorial-gallery-item:nth-child(8n + 7) {
    grid-column: span 4 !important;
}

.editorial-gallery-item:nth-child(4n + 3) {
    min-height: clamp(360px, 34vw, 620px) !important;
}

.project-editorial-body .project-reveal {
    opacity: 0 !important;
    transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: opacity, transform !important;
}

.project-editorial-body .editorial-from-up { transform: translateY(34px) scale(0.985) !important; }
.project-editorial-body .editorial-from-left { transform: translateX(-46px) scale(0.985) !important; }
.project-editorial-body .editorial-from-right { transform: translateX(46px) scale(0.985) !important; }

.project-editorial-body .project-reveal.animated {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

.editorial-grid .project-reveal:nth-child(1) { transition-delay: 80ms !important; }
.editorial-grid .project-reveal:nth-child(2) { transition-delay: 170ms !important; }
.editorial-grid .project-reveal:nth-child(3) { transition-delay: 260ms !important; }
.editorial-grid .project-reveal:nth-child(4) { transition-delay: 350ms !important; }
.editorial-gallery .project-reveal:nth-child(3n + 1) { transition-delay: 60ms !important; }
.editorial-gallery .project-reveal:nth-child(3n + 2) { transition-delay: 150ms !important; }
.editorial-gallery .project-reveal:nth-child(3n + 3) { transition-delay: 240ms !important; }

.projects-section .project-card {
    opacity: 0;
    transform: translateY(34px) scale(0.975);
    clip-path: inset(0 0 12% 0);
    transition: opacity 780ms cubic-bezier(0.22, 1, 0.36, 1), transform 780ms cubic-bezier(0.22, 1, 0.36, 1), clip-path 880ms cubic-bezier(0.76, 0, 0.24, 1);
}

.projects-section .project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background: #faf8f5;
    transform-origin: right center;
    transform: scaleX(1);
    transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1) 120ms;
    pointer-events: none;
}

.projects-section .project-card.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0);
}

.projects-section .project-card.animated::after {
    transform: scaleX(0);
}

.projects-section .project-card:nth-child(2) { transition-delay: 90ms; }
.projects-section .project-card:nth-child(3) { transition-delay: 180ms; }
.projects-section .project-card:nth-child(4) { transition-delay: 270ms; }

@media (max-width: 1100px) {
    .editorial-cover,
    .editorial-intro {
        grid-template-columns: 1fr !important;
    }

    .editorial-panel,
    .editorial-panel-wide,
    .editorial-panel-tall,
    .editorial-panel-normal {
        grid-column: span 6 !important;
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .project-editorial-body .navbar {
        justify-content: space-between !important;
        align-items: center !important;
        padding-left: clamp(18px, 5vw, 30px) !important;
        padding-right: clamp(18px, 5vw, 30px) !important;
    }

    .project-editorial-body .navbar .nav-actions {
        display: none !important;
    }

    .project-editorial-body .navbar .brand-link,
    .project-editorial-body .navbar .brand-logo {
        width: 178px !important;
        height: 72px !important;
        margin: 0 !important;
        object-fit: contain !important;
        object-position: left center !important;
    }

    .project-editorial-page {
        width: calc(100vw - 28px) !important;
        padding-top: calc(var(--header-height) + 26px) !important;
    }

    .editorial-cover {
        min-height: auto !important;
        gap: 34px !important;
    }

    .editorial-cover-media {
        min-height: 62svh !important;
    }

    .editorial-grid,
    .editorial-gallery {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .editorial-panel,
    .editorial-panel-wide,
    .editorial-panel-tall,
    .editorial-panel-normal,
    .editorial-gallery-item,
    .editorial-gallery-item:nth-child(n) {
        grid-column: auto !important;
        min-height: auto !important;
    }

    .editorial-panel .editorial-image-mask,
    .editorial-gallery-item .editorial-image-mask {
        min-height: 58svh !important;
    }

    .editorial-intro {
        padding-top: 64px !important;
    }
}

@media (max-width: 560px) {
    .project-editorial-body .navbar .brand-link,
    .project-editorial-body .navbar .brand-logo {
        width: 158px !important;
        height: 64px !important;
    }

    .editorial-cover-copy h1 {
        font-size: clamp(48px, 17vw, 72px) !important;
    }

    .editorial-intro h2 {
        font-size: clamp(36px, 12vw, 54px) !important;
    }

    .editorial-panel .editorial-image-mask,
    .editorial-gallery-item .editorial-image-mask {
        min-height: 48svh !important;
    }
}

/* --- PROYECTOS DESTACADOS BENTO LIMPIO VIDEOS V138 --- */
.project-bento-body {
    background: #f4f3ef !important;
}

.project-bento-body .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: var(--header-height) !important;
    z-index: 5000 !important;
    background: #faf8f5 !important;
    border-bottom: 1px solid #ece7e1 !important;
    box-shadow: none !important;
    transform: none !important;
}

.project-bento-body .navbar .nav-actions {
    display: flex !important;
}

.project-bento-page {
    width: 100% !important;
    min-height: 100svh !important;
    padding: calc(var(--header-height) + 8px) 8px 8px !important;
    background: #f4f3ef !important;
    overflow-x: hidden !important;
}

.project-bento-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    grid-auto-rows: minmax(150px, 15.5vw) !important;
    gap: 8px !important;
    grid-auto-flow: dense !important;
}

.bento-tile {
    position: relative !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #111 !important;
}

.bento-hero {
    grid-column: span 6 !important;
    grid-row: span 4 !important;
}

.bento-wide {
    grid-column: span 4 !important;
    grid-row: span 2 !important;
}

.bento-small {
    grid-column: span 3 !important;
    grid-row: span 2 !important;
}

.bento-tall {
    grid-column: span 3 !important;
    grid-row: span 4 !important;
}

.bento-video-tile {
    grid-column: span 2 !important;
    grid-row: span 4 !important;
    background: #0d0e10 !important;
    border: 1px solid rgba(255,255,255,0.04) !important;
    isolation: isolate !important;
}

.bento-video-tile::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 45%), #0d0e10 !important;
    z-index: 0 !important;
}

.bento-video-tile::after {
    content: "" !important;
    position: absolute !important;
    inset: 18px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 18px !important;
    opacity: 0.55 !important;
    z-index: 1 !important;
}

.project-bento-grid .editorial-image-mask {
    height: 100% !important;
    min-height: 100% !important;
    border-radius: inherit !important;
}

.project-bento-grid .editorial-image-mask::after {
    background: #f4f3ef !important;
}

.project-bento-grid .editorial-image-mask img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.bento-project-label {
    position: absolute !important;
    left: clamp(18px, 2vw, 32px) !important;
    bottom: clamp(18px, 2vw, 32px) !important;
    z-index: 4 !important;
    width: min(210px, calc(100% - 38px)) !important;
    min-height: 116px !important;
    padding: 22px 22px 18px !important;
    display: flex !important;
    align-items: flex-end !important;
    background: rgba(255,255,255,0.94) !important;
    border-radius: 8px !important;
    box-shadow: 0 18px 46px rgba(15, 18, 22, 0.13) !important;
    opacity: 0 !important;
    transform: translateY(16px) scale(0.98) !important;
    transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1) 520ms, transform 640ms cubic-bezier(0.22, 1, 0.36, 1) 520ms !important;
}

.project-reveal.animated .bento-project-label {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

.bento-project-label h1 {
    margin: 0 !important;
    color: #171717 !important;
    font-family: var(--fuente-sans) !important;
    font-size: clamp(18px, 1.2vw, 24px) !important;
    line-height: 1.05 !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
}

.project-bento-body .project-reveal {
    opacity: 0 !important;
    transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: opacity, transform !important;
}

.project-bento-body .editorial-from-left { transform: translateX(-44px) scale(0.985) !important; }
.project-bento-body .editorial-from-right { transform: translateX(44px) scale(0.985) !important; }
.project-bento-body .project-reveal.animated { opacity: 1 !important; transform: translate(0,0) scale(1) !important; }

.project-bento-grid .project-reveal:nth-child(3n + 1) { transition-delay: 50ms !important; }
.project-bento-grid .project-reveal:nth-child(3n + 2) { transition-delay: 135ms !important; }
.project-bento-grid .project-reveal:nth-child(3n + 3) { transition-delay: 220ms !important; }
.project-bento-grid .project-reveal:nth-child(5n) { transition-delay: 300ms !important; }

@media (max-width: 1100px) {
    .project-bento-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
        grid-auto-rows: minmax(130px, 22vw) !important;
    }
    .bento-hero { grid-column: span 5 !important; grid-row: span 4 !important; }
    .bento-wide { grid-column: span 4 !important; grid-row: span 2 !important; }
    .bento-small { grid-column: span 4 !important; grid-row: span 2 !important; }
    .bento-tall, .bento-video-tile { grid-column: span 3 !important; grid-row: span 4 !important; }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .project-bento-body .navbar {
        justify-content: space-between !important;
        align-items: center !important;
        padding-left: clamp(18px, 5vw, 30px) !important;
        padding-right: clamp(18px, 5vw, 30px) !important;
    }
    .project-bento-body .navbar .nav-actions { display: none !important; }
    .project-bento-body .navbar .brand-link,
    .project-bento-body .navbar .brand-logo {
        width: 178px !important;
        height: 72px !important;
        margin: 0 !important;
        object-fit: contain !important;
        object-position: left center !important;
    }
    .project-bento-page { padding: calc(var(--header-height) + 8px) 8px 8px !important; }
    .project-bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: minmax(170px, 46vw) !important;
        gap: 8px !important;
    }
    .bento-hero,
    .bento-wide,
    .bento-small,
    .bento-tall {
        grid-column: span 2 !important;
        grid-row: span 2 !important;
    }
    .bento-video-tile {
        grid-column: span 1 !important;
        grid-row: span 3 !important;
        min-height: 360px !important;
    }
}

@media (max-width: 560px) {
    .project-bento-body .navbar .brand-link,
    .project-bento-body .navbar .brand-logo {
        width: 158px !important;
        height: 64px !important;
    }
    .project-bento-grid { grid-auto-rows: minmax(150px, 52vw) !important; }
    .bento-project-label { min-height: 94px !important; width: min(176px, calc(100% - 32px)) !important; padding: 18px !important; }
}

/* --- PROYECTOS DESTACADOS BENTO SIN VERTICALES V139 --- */
.project-bento-body {
    background: #f7f5f2 !important;
}

.project-bento-page {
    width: 100% !important;
    min-height: 100svh !important;
    padding: calc(var(--header-height) + 10px) 10px 10px !important;
    background: #f7f5f2 !important;
    overflow-x: hidden !important;
}

.project-bento-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    grid-auto-rows: minmax(132px, 12.8vw) !important;
    gap: 10px !important;
    grid-auto-flow: dense !important;
}

.bento-tile {
    position: relative !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: 9px !important;
    border: 1px solid rgba(31, 29, 26, 0.12) !important;
    background: #fbfaf8 !important;
    box-shadow: none !important;
}

.bento-hero {
    grid-column: span 6 !important;
    grid-row: span 4 !important;
}

.bento-wide {
    grid-column: span 6 !important;
    grid-row: span 2 !important;
}

.bento-medium {
    grid-column: span 4 !important;
    grid-row: span 2 !important;
}

.bento-small {
    grid-column: span 3 !important;
    grid-row: span 2 !important;
}

.project-bento-grid .editorial-image-mask {
    height: 100% !important;
    min-height: 100% !important;
    border-radius: inherit !important;
}

.project-bento-grid .editorial-image-mask::after {
    background: #f7f5f2 !important;
}

.project-bento-grid .editorial-image-mask img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.bento-project-label {
    position: absolute !important;
    left: clamp(18px, 2vw, 32px) !important;
    bottom: clamp(18px, 2vw, 32px) !important;
    z-index: 4 !important;
    width: min(210px, calc(100% - 38px)) !important;
    min-height: 112px !important;
    padding: 22px !important;
    display: flex !important;
    align-items: flex-end !important;
    background: rgba(255,255,255,0.95) !important;
    border: 1px solid rgba(31, 29, 26, 0.08) !important;
    border-radius: 8px !important;
    box-shadow: 0 16px 38px rgba(15, 18, 22, 0.10) !important;
    opacity: 0 !important;
    transform: translateY(14px) scale(0.985) !important;
    transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1) 520ms, transform 640ms cubic-bezier(0.22, 1, 0.36, 1) 520ms !important;
}

.project-reveal.animated .bento-project-label {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

.bento-project-label h1 {
    margin: 0 !important;
    color: #171717 !important;
    font-family: var(--fuente-sans) !important;
    font-size: clamp(18px, 1.2vw, 24px) !important;
    line-height: 1.05 !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
}

.bento-video-tile {
    display: none !important;
}

@media (max-width: 1100px) {
    .project-bento-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
        grid-auto-rows: minmax(130px, 21vw) !important;
    }
    .bento-hero { grid-column: span 5 !important; grid-row: span 4 !important; }
    .bento-wide { grid-column: span 4 !important; grid-row: span 2 !important; }
    .bento-medium { grid-column: span 4 !important; grid-row: span 2 !important; }
    .bento-small { grid-column: span 4 !important; grid-row: span 2 !important; }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .project-bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: minmax(164px, 45vw) !important;
        gap: 10px !important;
    }
    .bento-hero,
    .bento-wide,
    .bento-medium,
    .bento-small {
        grid-column: span 2 !important;
        grid-row: span 2 !important;
    }
}

@media (max-width: 560px) {
    .project-bento-page {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .project-bento-grid {
        grid-auto-rows: minmax(150px, 52vw) !important;
        gap: 8px !important;
    }
    .bento-project-label {
        min-height: 94px !important;
        width: min(176px, calc(100% - 32px)) !important;
        padding: 18px !important;
    }
}

/* --- PROYECTOS BENTO DELICADO ADAPTADO PC V140 --- */
.project-bento-page {
    padding: calc(var(--header-height) + 8px) 8px 8px !important;
}

.project-bento-grid {
    gap: 8px !important;
    grid-auto-rows: clamp(96px, calc((100svh - var(--header-height) - 48px) / 4), 168px) !important;
    align-items: stretch !important;
}

.bento-tile {
    border: 0 !important;
    outline: 0 !important;
    border-radius: 7px !important;
    box-shadow: none !important;
    background: transparent !important;
}

.bento-project-label {
    border: 0 !important;
    box-shadow: 0 14px 36px rgba(18, 18, 18, 0.09) !important;
}

.bento-hero {
    grid-row: span 4 !important;
}

.bento-wide,
.bento-medium,
.bento-small {
    grid-row: span 2 !important;
}

@media (min-width: 1200px) {
    .project-bento-grid {
        grid-auto-rows: clamp(112px, calc((100svh - var(--header-height) - 50px) / 4), 175px) !important;
    }
}

@media (min-width: 1500px) {
    .project-bento-grid {
        grid-auto-rows: clamp(120px, calc((100svh - var(--header-height) - 52px) / 4), 188px) !important;
    }
}

@media (max-width: 1100px) {
    .project-bento-grid {
        grid-auto-rows: minmax(130px, 21vw) !important;
    }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .project-bento-grid {
        grid-auto-rows: minmax(164px, 45vw) !important;
        gap: 8px !important;
    }
}

/* --- PROYECTOS MOBILE 6 CARPETAS WSP V141 --- */
.whatsapp-widget {
    align-items: center !important;
    gap: 12px !important;
}

.whatsapp-widget .whatsapp-float,
a.whatsapp-float {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 0 !important;
    font-size: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.whatsapp-widget .whatsapp-float svg,
a.whatsapp-float svg {
    width: 30px !important;
    height: 30px !important;
    display: block !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    transform: none !important;
    fill: currentColor !important;
}

.whatsapp-float > span {
    display: none !important;
}

.projects-section .projects-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 16px !important;
    transform: none !important;
}

.projects-section .project-card {
    flex: none !important;
    width: auto !important;
    min-width: 0 !important;
}

@media (max-width: 1300px) {
    .projects-section .projects-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 760px) {
    .projects-section .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }
}

@media (max-width: 480px) {
    .projects-section .projects-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 700px) {
    .project-bento-page {
        padding: calc(var(--header-height) + 8px) 8px 8px !important;
    }

    .project-bento-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        grid-auto-rows: clamp(84px, 24vw, 118px) !important;
        gap: 8px !important;
    }

    .bento-hero {
        grid-column: span 4 !important;
        grid-row: span 4 !important;
    }

    .bento-wide {
        grid-column: span 4 !important;
        grid-row: span 2 !important;
    }

    .bento-medium {
        grid-column: span 2 !important;
        grid-row: span 2 !important;
    }

    .bento-small {
        grid-column: span 2 !important;
        grid-row: span 2 !important;
    }

    .bento-project-label {
        left: 16px !important;
        bottom: 16px !important;
        min-height: 84px !important;
        width: min(168px, calc(100% - 32px)) !important;
        padding: 16px !important;
        border-radius: 7px !important;
    }

    .bento-project-label h1 {
        font-size: 17px !important;
        line-height: 1.08 !important;
    }

    .whatsapp-widget {
        right: 16px !important;
        bottom: calc(16px + env(safe-area-inset-bottom)) !important;
        gap: 8px !important;
    }

    .whatsapp-widget .whatsapp-bubble {
        min-height: 32px !important;
        padding: 0 11px !important;
        font-size: 10px !important;
    }

    .whatsapp-widget .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        flex-basis: 50px !important;
    }

    .whatsapp-widget .whatsapp-float svg,
    a.whatsapp-float svg {
        width: 27px !important;
        height: 27px !important;
    }
}

/* --- NUESTRAS ESPECIALIDADES PREMIUM Y WSP CENTRADO V142 --- */
.collections-section.specialties-section {
    width: 100vw !important;
    background: #F8F6F2 !important;
    padding: 100px 80px !important;
    display: block !important;
    overflow: hidden !important;
}

.specialties-container {
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: 32px !important;
    align-items: center !important;
}

.specialties-copy {
    grid-column: 1 / span 4 !important;
    width: min(380px, 100%) !important;
    max-width: 380px !important;
}

.specialties-kicker {
    margin: 0 0 18px !important;
    color: #7A746C !important;
    font-family: var(--fuente-sans) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 8px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

.specialties-title {
    margin: 0 0 20px !important;
    color: #1F1F1F !important;
    font-family: var(--fuente-serif) !important;
    font-size: 74px !important;
    font-weight: 300 !important;
    line-height: 0.92 !important;
    letter-spacing: 0 !important;
}

.specialties-rule {
    display: block !important;
    width: 72px !important;
    height: 2px !important;
    margin: 0 0 34px !important;
    background: #C8B392 !important;
    border-radius: 999px !important;
}

.specialties-text {
    margin: 0 0 42px !important;
    color: #4B4B4B !important;
    font-family: var(--fuente-sans) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
}

.specialties-button {
    width: 250px !important;
    height: 58px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 24px !important;
    border-radius: 8px !important;
    background: #1F1F1F !important;
    color: #fff !important;
    font-family: var(--fuente-sans) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
}

.specialties-button:hover {
    background: #2F2F2F !important;
    transform: translateY(-2px) !important;
}

.specialties-cards {
    grid-column: 5 / span 8 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: none !important;
    justify-content: stretch !important;
}

.specialties-section .specialty-card {
    width: 100% !important;
    height: 340px !important;
    min-height: 340px !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    padding: 34px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    background-size: cover !important;
    background-position: center !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 18px 45px rgba(0,0,0,.08) !important;
}

.specialties-section .card-pisos {
    background-image: url('fotopisobanner.jpeg') !important;
}

.specialties-section .card-puertas {
    background-image: url('fotopuertabanner.jpeg') !important;
}

.specialties-section .specialty-card::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.28) 38%, rgba(0,0,0,0) 72%) !important;
    transition: opacity 0.3s ease !important;
}

.specialty-card-content {
    position: relative !important;
    z-index: 2 !important;
    width: min(320px, 100%) !important;
}

.specialties-section .card-title {
    margin: 0 0 16px !important;
    color: #fff !important;
    font-family: var(--fuente-sans) !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

.specialty-card-rule {
    display: none !important;
}

.specialties-section .card-desc {
    max-width: 300px !important;
    margin: 0 0 28px !important;
    color: rgba(255,255,255,.92) !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    opacity: 1 !important;
}

.specialties-section .card-arrow-btn {
    width: 58px !important;
    height: 58px !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    line-height: 1 !important;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease !important;
}

.specialties-section .specialty-card:hover .card-arrow-btn {
    background: #fff !important;
    color: #111 !important;
    transform: translateX(3px) !important;
}

.specialties-features {
    grid-column: 1 / -1 !important;
    min-height: 120px !important;
    margin-top: 48px !important;
    padding: 34px 40px !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    align-items: center !important;
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 16px 42px rgba(31, 29, 26, 0.05) !important;
}

.specialty-feature {
    min-height: 52px !important;
    padding: 0 22px !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    border-right: 1px solid #E7E1D8 !important;
}

.specialty-feature:last-child {
    border-right: 0 !important;
}

.specialty-feature-icon {
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
    border: 1.4px solid #8D8377 !important;
    border-radius: 8px !important;
    position: relative !important;
}

.specialty-feature-icon::after {
    content: '' !important;
    position: absolute !important;
    width: 9px !important;
    height: 9px !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    border: 1.4px solid #8D8377 !important;
    border-radius: 50% !important;
}

.specialty-feature p {
    margin: 0 !important;
    color: #333 !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
}

.whatsapp-widget {
    position: fixed !important;
    right: clamp(18px, 2.8vw, 40px) !important;
    bottom: calc(26px + env(safe-area-inset-bottom)) !important;
    z-index: 9000 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    pointer-events: none !important;
}

.whatsapp-widget .whatsapp-bubble {
    min-height: 38px !important;
    padding: 0 15px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.95) !important;
    color: #1f1f1f !important;
    box-shadow: 0 12px 34px rgba(20, 35, 25, 0.13) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    pointer-events: none !important;
}

.whatsapp-widget .whatsapp-float,
body > .whatsapp-float {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    min-height: 58px !important;
    flex: 0 0 58px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 0 !important;
    font-size: 0 !important;
    background: #25d366 !important;
    color: #fff !important;
    box-shadow: 0 14px 34px rgba(20, 120, 60, 0.28) !important;
    overflow: hidden !important;
    text-decoration: none !important;
    pointer-events: auto !important;
}

body > .whatsapp-float {
    position: fixed !important;
    right: clamp(18px, 2.8vw, 40px) !important;
    bottom: calc(26px + env(safe-area-inset-bottom)) !important;
    z-index: 9000 !important;
}

.whatsapp-widget .whatsapp-float svg,
body > .whatsapp-float svg {
    width: 30px !important;
    height: 30px !important;
    display: block !important;
    flex: 0 0 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    fill: currentColor !important;
}

.whatsapp-float > span,
.whatsapp-icon {
    display: none !important;
}

@media (max-width: 900px) {
    .collections-section.specialties-section {
        padding: 72px 28px 64px !important;
    }

    .specialties-container {
        display: block !important;
        max-width: 720px !important;
    }

    .specialties-copy {
        width: 100% !important;
        max-width: none !important;
        margin-bottom: 40px !important;
    }

    .specialties-button,
    .specialties-features {
        display: none !important;
    }

    .specialties-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        width: 100% !important;
        max-width: none !important;
    }

    .specialties-section .specialty-card {
        height: 240px !important;
        min-height: 240px !important;
        border-radius: 22px !important;
        padding: 32px !important;
        align-items: center !important;
        box-shadow: 0 12px 35px rgba(0,0,0,.08) !important;
    }

    .specialties-section .specialty-card::before {
        background: linear-gradient(90deg, rgba(248,246,242,0.96) 0%, rgba(248,246,242,0.88) 30%, rgba(248,246,242,0.60) 50%, rgba(248,246,242,0.00) 75%) !important;
    }

    .specialties-section .card-title {
        color: #202020 !important;
        font-size: 38px !important;
        letter-spacing: 1px !important;
        margin-bottom: 18px !important;
    }

    .specialty-card-rule {
        display: block !important;
        width: 55px !important;
        height: 2px !important;
        margin: 0 0 18px !important;
        background: #B89D74 !important;
    }

    .specialties-section .card-desc {
        max-width: 230px !important;
        margin-bottom: 30px !important;
        color: #444 !important;
        font-size: 18px !important;
        line-height: 1.5 !important;
    }

    .specialties-section .card-arrow-btn {
        width: 54px !important;
        height: 54px !important;
        border-color: #222 !important;
        color: #222 !important;
        font-size: 22px !important;
    }
}

@media (max-width: 560px) {
    .collections-section.specialties-section {
        padding: 56px 24px !important;
    }

    .specialties-kicker {
        margin-bottom: 12px !important;
        font-size: 12px !important;
        letter-spacing: 7px !important;
        color: #756E65 !important;
    }

    .specialties-title {
        margin-bottom: 18px !important;
        font-size: 58px !important;
        line-height: 0.9 !important;
    }

    .specialties-rule {
        width: 70px !important;
        margin-bottom: 34px !important;
        background: #CDB391 !important;
    }

    .specialties-text {
        margin-bottom: 36px !important;
        font-size: 19px !important;
        line-height: 1.55 !important;
        color: #474747 !important;
    }

    .whatsapp-widget {
        right: 14px !important;
        bottom: calc(14px + env(safe-area-inset-bottom)) !important;
        gap: 8px !important;
    }

    .whatsapp-widget .whatsapp-bubble {
        min-height: 32px !important;
        padding: 0 11px !important;
        font-size: 10px !important;
    }

    .whatsapp-widget .whatsapp-float,
    body > .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        flex-basis: 50px !important;
    }

    .whatsapp-widget .whatsapp-float svg,
    body > .whatsapp-float svg {
        width: 27px !important;
        height: 27px !important;
        flex-basis: 27px !important;
    }
}

/* --- CORRECCION ESPECIALIDADES EXACTA Y WSP V143 --- */
.collections-section.specialties-section {
    width: 100vw !important;
    background: #F8F6F2 !important;
    padding: clamp(64px, 7vw, 92px) clamp(24px, 7vw, 80px) clamp(54px, 7vw, 82px) !important;
    display: block !important;
    overflow: hidden !important;
}

.collections-section.specialties-section .specialties-container {
    width: min(100%, 1180px) !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    align-items: start !important;
}

.collections-section.specialties-section .specialties-copy {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: minmax(320px, 0.92fr) minmax(300px, 1fr) !important;
    column-gap: clamp(44px, 7vw, 96px) !important;
    row-gap: 0 !important;
    align-items: start !important;
    margin: 0 0 36px !important;
}

.specialties-kicker,
.specialties-title,
.specialties-rule {
    grid-column: 1 !important;
}

.specialties-kicker {
    margin: 0 0 10px !important;
    color: #756E65 !important;
    font-family: var(--fuente-sans) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 7px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

.specialties-title {
    margin: 0 0 18px !important;
    color: #1E1E1E !important;
    font-family: var(--fuente-serif) !important;
    font-size: clamp(56px, 6vw, 72px) !important;
    font-weight: 300 !important;
    line-height: 0.9 !important;
    letter-spacing: 0 !important;
}

.specialties-rule {
    width: 70px !important;
    height: 2px !important;
    margin: 0 !important;
    background: #CDB391 !important;
    border-radius: 999px !important;
}

.specialties-text {
    grid-column: 2 !important;
    grid-row: 1 / span 3 !important;
    align-self: center !important;
    max-width: 440px !important;
    margin: 0 !important;
    color: #2f302f !important;
    font-family: var(--fuente-sans) !important;
    font-size: clamp(17px, 1.45vw, 20px) !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
}

.specialties-button,
.specialties-features {
    display: none !important;
}

.specialties-cards {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    margin: 0 !important;
}

.specialties-section .specialty-card {
    width: 100% !important;
    height: clamp(230px, 24vw, 300px) !important;
    min-height: 230px !important;
    max-height: 300px !important;
    aspect-ratio: auto !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    padding: clamp(28px, 4vw, 52px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background-size: cover !important;
    background-position: center !important;
    color: #202020 !important;
    text-decoration: none !important;
    box-shadow: 0 12px 35px rgba(0,0,0,.08) !important;
}

.specialties-section .card-pisos {
    background-image: url('fotopisobanner.jpeg') !important;
    background-position: center center !important;
}

.specialties-section .card-puertas {
    background-image: url('fotopuertabanner.jpeg') !important;
    background-position: center center !important;
}

.specialties-section .specialty-card::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    opacity: 1 !important;
    background: linear-gradient(90deg, rgba(248,246,242,0.97) 0%, rgba(248,246,242,0.90) 28%, rgba(248,246,242,0.64) 50%, rgba(248,246,242,0.00) 74%) !important;
    transition: opacity .3s ease !important;
}

.specialty-card-content {
    position: relative !important;
    z-index: 2 !important;
    width: min(300px, 54%) !important;
    min-width: 230px !important;
    color: #202020 !important;
}

.specialties-section .card-title {
    margin: 0 0 18px !important;
    color: #202020 !important;
    font-family: var(--fuente-sans) !important;
    font-size: clamp(30px, 3.4vw, 42px) !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

.specialty-card-rule {
    display: block !important;
    width: 55px !important;
    height: 2px !important;
    margin: 0 0 18px !important;
    background: #B89D74 !important;
    border-radius: 99px !important;
}

.specialties-section .card-desc {
    max-width: 245px !important;
    margin: 0 0 30px !important;
    color: #444 !important;
    font-size: clamp(16px, 1.65vw, 19px) !important;
    font-weight: 400 !important;
    line-height: 1.48 !important;
    opacity: 1 !important;
}

.specialties-section .card-arrow-btn {
    width: 54px !important;
    height: 54px !important;
    border: 2px solid #222 !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: #222 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    line-height: 1 !important;
    transition: background .3s ease, color .3s ease, transform .3s ease !important;
}

.specialties-section .specialty-card:hover .card-arrow-btn {
    background: #222 !important;
    color: #fff !important;
    transform: translateX(3px) !important;
}

.whatsapp-widget {
    position: fixed !important;
    right: 18px !important;
    bottom: calc(18px + env(safe-area-inset-bottom)) !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    pointer-events: none !important;
}

.whatsapp-widget .whatsapp-bubble {
    height: 34px !important;
    min-height: 34px !important;
    padding: 0 13px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.96) !important;
    color: #1f1f1f !important;
    box-shadow: 0 10px 28px rgba(20, 35, 25, .14) !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    pointer-events: none !important;
}

.whatsapp-widget .whatsapp-float,
body > .whatsapp-float {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    flex: 0 0 54px !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    display: block !important;
    background: #25d366 !important;
    color: #fff !important;
    box-shadow: 0 14px 34px rgba(20,120,60,.28) !important;
    overflow: hidden !important;
    text-decoration: none !important;
    pointer-events: auto !important;
    line-height: 0 !important;
    font-size: 0 !important;
}

body > .whatsapp-float {
    position: fixed !important;
    right: 18px !important;
    bottom: calc(18px + env(safe-area-inset-bottom)) !important;
}

.whatsapp-widget .whatsapp-float svg,
body > .whatsapp-float svg {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 29px !important;
    height: 29px !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translate(-50%, -50%) !important;
    fill: currentColor !important;
}

.whatsapp-float > span,
.whatsapp-icon {
    display: none !important;
}

@media (max-width: 740px) {
    .collections-section.specialties-section {
        padding: 54px 24px 52px !important;
    }

    .collections-section.specialties-section .specialties-container {
        width: 100% !important;
        max-width: 390px !important;
    }

    .collections-section.specialties-section .specialties-copy {
        display: block !important;
        margin-bottom: 36px !important;
    }

    .specialties-title {
        font-size: 58px !important;
        line-height: .9 !important;
    }

    .specialties-text {
        max-width: none !important;
        margin-top: 34px !important;
        font-size: 19px !important;
        line-height: 1.55 !important;
    }

    .specialties-cards {
        gap: 22px !important;
    }

    .specialties-section .specialty-card {
        height: 240px !important;
        min-height: 240px !important;
        max-height: none !important;
        border-radius: 22px !important;
        padding: 32px !important;
    }

    .specialty-card-content {
        width: 58% !important;
        min-width: 210px !important;
    }

    .specialties-section .card-title {
        font-size: 38px !important;
    }

    .specialties-section .card-desc {
        max-width: 210px !important;
        font-size: 18px !important;
    }
}

@media (max-width: 420px) {
    .collections-section.specialties-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .specialties-title {
        font-size: 52px !important;
    }

    .specialty-card-content {
        width: 62% !important;
        min-width: 190px !important;
    }

    .specialties-section .card-title {
        font-size: 34px !important;
    }

    .specialties-section .card-desc {
        font-size: 16.5px !important;
        margin-bottom: 24px !important;
    }

    .specialties-section .card-arrow-btn {
        width: 50px !important;
        height: 50px !important;
    }

    .whatsapp-widget {
        right: 12px !important;
        bottom: calc(12px + env(safe-area-inset-bottom)) !important;
        gap: 7px !important;
    }

    .whatsapp-widget .whatsapp-bubble {
        height: 30px !important;
        min-height: 30px !important;
        padding: 0 10px !important;
        font-size: 9.5px !important;
    }

    .whatsapp-widget .whatsapp-float,
    body > .whatsapp-float {
        width: 49px !important;
        height: 49px !important;
        min-width: 49px !important;
        min-height: 49px !important;
        flex-basis: 49px !important;
    }

    .whatsapp-widget .whatsapp-float svg,
    body > .whatsapp-float svg {
        width: 26px !important;
        height: 26px !important;
    }
}
/* --- ESPECIALIDADES REFERENCIA FINAL V144 --- */
.collections-section.specialties-section {
    width: 100% !important;
    margin: 0 !important;
    background: #F8F6F2 !important;
    padding: clamp(76px, 7vw, 104px) clamp(28px, 6vw, 80px) clamp(74px, 7vw, 104px) !important;
    overflow: hidden !important;
}

.collections-section.specialties-section .specialties-container {
    width: min(100%, 1280px) !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(260px, 330px) minmax(0, 1fr) !important;
    gap: clamp(46px, 5.4vw, 72px) !important;
    align-items: center !important;
}

.collections-section.specialties-section .specialties-copy {
    width: 100% !important;
    max-width: 330px !important;
    display: block !important;
    margin: 0 !important;
}

.specialties-kicker {
    margin: 0 0 14px !important;
    font-family: var(--fuente-sans) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: 5px !important;
    text-transform: uppercase !important;
    color: #6F6861 !important;
}

.specialties-title {
    margin: 0 0 22px !important;
    font-family: var(--fuente-serif) !important;
    font-size: clamp(46px, 4.3vw, 66px) !important;
    font-weight: 400 !important;
    line-height: 0.94 !important;
    letter-spacing: 0 !important;
    color: #201F1D !important;
}

.specialties-rule {
    display: block !important;
    width: 64px !important;
    height: 2px !important;
    margin: 0 0 28px !important;
    border-radius: 999px !important;
    background: #C4AA82 !important;
}

.specialties-text {
    max-width: 335px !important;
    margin: 0 0 34px !important;
    font-family: var(--fuente-sans) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.75 !important;
    color: #34312E !important;
}

.specialties-button {
    width: 250px !important;
    min-height: 56px !important;
    padding: 0 20px 0 24px !important;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    background: #1F1D1B !important;
    color: #fff !important;
    font-family: var(--fuente-sans) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.3px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: background .3s ease, transform .3s ease !important;
}

.specialties-button:hover {
    background: #2D2A27 !important;
    transform: translateY(-2px) !important;
}

.collections-section.specialties-section .specialties-cards {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch !important;
    margin: 0 !important;
}

.specialties-section .specialty-card {
    width: 100% !important;
    height: clamp(260px, 20vw, 320px) !important;
    min-height: 260px !important;
    max-height: 320px !important;
    aspect-ratio: auto !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    padding: clamp(28px, 3vw, 40px) !important;
    border: 0 !important;
    border-radius: 12px !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    box-shadow: none !important;
    isolation: isolate !important;
    text-decoration: none !important;
    transform: translateZ(0) !important;
}

.specialties-section .card-pisos {
    background-image: url('fotopisobanner.jpeg') !important;
    background-position: center right !important;
}

.specialties-section .card-puertas {
    background-image: url('fotopuertabanner.jpeg') !important;
    background-position: center right !important;
}

.specialties-section .specialty-card::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(90deg, rgba(248,246,242,.96) 0%, rgba(248,246,242,.86) 34%, rgba(248,246,242,.42) 52%, rgba(248,246,242,0) 74%) !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

.specialties-section .specialty-card::after {
    content: none !important;
    display: none !important;
}

.specialty-card-content {
    position: relative !important;
    z-index: 2 !important;
    width: min(230px, 56%) !important;
    min-width: 190px !important;
    color: #24211F !important;
}

.specialties-section .card-title {
    margin: 0 0 12px !important;
    font-family: var(--fuente-sans) !important;
    font-size: clamp(24px, 2.1vw, 32px) !important;
    font-weight: 750 !important;
    letter-spacing: .3px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    color: #24211F !important;
}

.specialty-card-rule {
    display: block !important;
    width: 42px !important;
    height: 2px !important;
    margin: 0 0 22px !important;
    border-radius: 999px !important;
    background: #C2A06F !important;
}

.specialties-section .card-desc {
    max-width: 225px !important;
    margin: 0 0 28px !important;
    font-family: var(--fuente-sans) !important;
    font-size: clamp(16px, 1.42vw, 20px) !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #383532 !important;
    opacity: 1 !important;
}

.specialties-section .card-arrow-btn {
    width: 48px !important;
    height: 48px !important;
    border: 1.5px solid #24211F !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: #24211F !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    line-height: 1 !important;
    transition: transform .28s ease, background .28s ease, color .28s ease !important;
}

.specialties-section .specialty-card:hover {
    transform: translateY(-4px) !important;
}

.specialties-section .specialty-card:hover .card-arrow-btn {
    transform: rotate(45deg) !important;
    background: #24211F !important;
    color: #fff !important;
}

.specialties-features {
    display: none !important;
}

.whatsapp-widget {
    position: fixed !important;
    right: 22px !important;
    bottom: calc(22px + env(safe-area-inset-bottom)) !important;
    z-index: 999999 !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    pointer-events: none !important;
}

.whatsapp-widget .whatsapp-bubble {
    height: 34px !important;
    min-height: 34px !important;
    padding: 0 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.96) !important;
    color: #1F1D1B !important;
    box-shadow: 0 10px 26px rgba(20, 35, 25, .14) !important;
    font-family: var(--fuente-sans) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 1.3px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    transform: translateY(0) !important;
    animation: whatsappBubbleSoft 2.8s ease-in-out infinite !important;
    pointer-events: none !important;
}

.whatsapp-widget .whatsapp-float,
body > .whatsapp-float {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    flex: 0 0 56px !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 14px 34px rgba(37, 211, 102, .30) !important;
    line-height: 0 !important;
    font-size: 0 !important;
    overflow: hidden !important;
    pointer-events: auto !important;
    animation: whatsappButtonPulse 3.2s ease-in-out infinite !important;
}

body > .whatsapp-float {
    position: fixed !important;
    right: 22px !important;
    bottom: calc(22px + env(safe-area-inset-bottom)) !important;
}

.whatsapp-widget .whatsapp-float::before,
.whatsapp-widget .whatsapp-float::after,
body > .whatsapp-float::before,
body > .whatsapp-float::after {
    content: none !important;
    display: none !important;
}

.whatsapp-widget .whatsapp-float svg,
body > .whatsapp-float svg {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 30px !important;
    height: 30px !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translate(-50%, -50%) !important;
    transform-origin: center center !important;
    fill: currentColor !important;
}

.whatsapp-float > span,
.whatsapp-icon {
    display: none !important;
}

@media (max-width: 960px) {
    .collections-section.specialties-section {
        padding: 72px 28px 62px !important;
    }

    .collections-section.specialties-section .specialties-container {
        max-width: 820px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .collections-section.specialties-section .specialties-copy {
        max-width: none !important;
        display: grid !important;
        grid-template-columns: minmax(250px, .95fr) minmax(280px, 1fr) !important;
        column-gap: clamp(34px, 7vw, 74px) !important;
        align-items: start !important;
        margin: 0 0 34px !important;
    }

    .specialties-kicker,
    .specialties-title,
    .specialties-rule {
        grid-column: 1 !important;
    }

    .specialties-text {
        grid-column: 2 !important;
        grid-row: 1 / span 3 !important;
        align-self: start !important;
        max-width: 390px !important;
        margin-top: 2px !important;
        margin-bottom: 0 !important;
        font-size: 18px !important;
        line-height: 1.65 !important;
    }

    .specialties-button {
        display: none !important;
    }

    .collections-section.specialties-section .specialties-cards {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .specialties-section .specialty-card {
        height: 250px !important;
        min-height: 250px !important;
        max-height: none !important;
        border-radius: 12px !important;
        padding: 32px clamp(28px, 6vw, 56px) !important;
    }
}

@media (max-width: 620px) {
    .collections-section.specialties-section {
        padding: 64px 24px 58px !important;
    }

    .collections-section.specialties-section .specialties-container {
        max-width: 390px !important;
    }

    .collections-section.specialties-section .specialties-copy {
        display: block !important;
        margin-bottom: 36px !important;
    }

    .specialties-kicker {
        margin-bottom: 12px !important;
        font-size: 12px !important;
        letter-spacing: 6px !important;
    }

    .specialties-title {
        max-width: 320px !important;
        margin-bottom: 18px !important;
        font-size: clamp(48px, 13vw, 56px) !important;
        line-height: .9 !important;
    }

    .specialties-rule {
        width: 54px !important;
        margin-bottom: 24px !important;
    }

    .specialties-text {
        max-width: 335px !important;
        margin: 0 !important;
        font-size: 17px !important;
        line-height: 1.65 !important;
    }

    .specialties-section .specialty-card {
        height: 220px !important;
        min-height: 220px !important;
        border-radius: 14px !important;
        padding: 28px !important;
        background-size: cover !important;
    }

    .specialties-section .specialty-card::before {
        background: linear-gradient(90deg, rgba(248,246,242,.97) 0%, rgba(248,246,242,.90) 38%, rgba(248,246,242,.50) 57%, rgba(248,246,242,0) 80%) !important;
    }

    .specialty-card-content {
        width: 62% !important;
        min-width: 180px !important;
    }

    .specialties-section .card-title {
        margin-bottom: 12px !important;
        font-size: 28px !important;
    }

    .specialty-card-rule {
        width: 38px !important;
        margin-bottom: 18px !important;
    }

    .specialties-section .card-desc {
        max-width: 180px !important;
        margin-bottom: 22px !important;
        font-size: 16px !important;
        line-height: 1.45 !important;
    }

    .specialties-section .card-arrow-btn {
        width: 46px !important;
        height: 46px !important;
        font-size: 18px !important;
    }

    .whatsapp-widget {
        right: 14px !important;
        bottom: calc(14px + env(safe-area-inset-bottom)) !important;
        height: 52px !important;
        gap: 8px !important;
    }

    .whatsapp-widget .whatsapp-bubble {
        height: 31px !important;
        min-height: 31px !important;
        padding: 0 10px !important;
        font-size: 9.5px !important;
        letter-spacing: 1px !important;
    }

    .whatsapp-widget .whatsapp-float,
    body > .whatsapp-float {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        min-height: 52px !important;
        flex-basis: 52px !important;
    }

    .whatsapp-widget .whatsapp-float svg,
    body > .whatsapp-float svg {
        width: 28px !important;
        height: 28px !important;
    }
}

@media (max-width: 420px) {
    .collections-section.specialties-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .specialties-section .specialty-card {
        height: 216px !important;
        padding: 26px !important;
    }

    .specialty-card-content {
        width: 64% !important;
        min-width: 172px !important;
    }

    .whatsapp-widget {
        right: 12px !important;
        bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    }
}
/* --- FIN ESPECIALIDADES REFERENCIA FINAL V144 --- */
/* --- FIX GRID MOBILE ESPECIALIDADES Y WSP V145 --- */
@media (min-width: 961px) {
    .collections-section.specialties-section .specialties-copy,
    .collections-section.specialties-section .specialties-cards {
        grid-column: auto !important;
    }
}

@media (max-width: 960px) {
    .collections-section.specialties-section .specialties-container {
        display: block !important;
        grid-template-columns: none !important;
        width: min(100%, 820px) !important;
        max-width: 820px !important;
        margin: 0 auto !important;
    }

    .collections-section.specialties-section .specialties-copy,
    .collections-section.specialties-section .specialties-cards {
        grid-column: auto !important;
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        transform: none !important;
    }

    .collections-section.specialties-section .specialties-copy {
        display: grid !important;
        grid-template-columns: minmax(250px, .95fr) minmax(280px, 1fr) !important;
        column-gap: clamp(34px, 7vw, 74px) !important;
        align-items: start !important;
        margin-bottom: 34px !important;
    }

    .collections-section.specialties-section .specialties-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }
}

@media (max-width: 620px) {
    .collections-section.specialties-section .specialties-container {
        display: block !important;
        width: 100% !important;
        max-width: 390px !important;
    }

    .collections-section.specialties-section .specialties-copy {
        display: block !important;
        width: 100% !important;
        margin-bottom: 36px !important;
    }

    .collections-section.specialties-section .specialties-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 22px !important;
    }

    .specialties-title,
    .specialties-text,
    .specialties-kicker,
    .specialties-rule {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}
/* --- FIN FIX GRID MOBILE ESPECIALIDADES Y WSP V145 --- */
/* --- ESPECIALIDADES RESPONSIVE REFERENCIAS V146 --- */
.collections-section.specialties-section {
    width: 100% !important;
    margin: 0 !important;
    background: #F8F6F2 !important;
    padding: clamp(70px, 7vw, 96px) clamp(28px, 6vw, 80px) !important;
    overflow: hidden !important;
}

.collections-section.specialties-section .specialties-container {
    width: min(100%, 1280px) !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr) !important;
    gap: clamp(52px, 6vw, 78px) !important;
    align-items: center !important;
}

.collections-section.specialties-section .specialties-copy,
.collections-section.specialties-section .specialties-cards {
    grid-column: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
}

.collections-section.specialties-section .specialties-copy {
    display: block !important;
    margin: 0 !important;
}

.specialties-kicker {
    margin: 0 !important;
    font-family: var(--fuente-serif) !important;
    font-size: clamp(40px, 3.8vw, 54px) !important;
    font-weight: 400 !important;
    line-height: .96 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: #201F1D !important;
}

.specialties-title {
    margin: 0 0 26px !important;
    font-family: var(--fuente-serif) !important;
    font-size: clamp(40px, 3.8vw, 54px) !important;
    font-weight: 400 !important;
    line-height: .96 !important;
    letter-spacing: 0 !important;
    color: #201F1D !important;
}

.specialties-rule {
    display: none !important;
}

.specialties-text {
    max-width: 320px !important;
    margin: 0 0 30px !important;
    font-family: var(--fuente-sans) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.75 !important;
    color: #2F2D2A !important;
}

.specialties-button {
    width: 250px !important;
    height: 56px !important;
    padding: 0 20px 0 24px !important;
    border: 0 !important;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    background: #1F1D1B !important;
    color: #fff !important;
    font-family: var(--fuente-sans) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1.3px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.collections-section.specialties-section .specialties-cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch !important;
    margin: 0 !important;
}

.specialties-section .specialty-card {
    width: 100% !important;
    height: clamp(250px, 19.5vw, 300px) !important;
    min-height: 250px !important;
    max-height: 300px !important;
    aspect-ratio: auto !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    padding: clamp(28px, 3vw, 38px) !important;
    border: 0 !important;
    border-radius: 8px !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    box-shadow: none !important;
    isolation: isolate !important;
    text-decoration: none !important;
}

.specialties-section .card-pisos {
    background-image: url('fotopisobanner.jpeg') !important;
}

.specialties-section .card-puertas {
    background-image: url('fotopuertabanner.jpeg') !important;
}

.specialties-section .specialty-card::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(90deg, rgba(0,0,0,.50) 0%, rgba(0,0,0,.24) 42%, rgba(0,0,0,0) 76%) !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

.specialties-section .specialty-card::after {
    content: none !important;
    display: none !important;
}

.specialty-card-content {
    position: relative !important;
    z-index: 2 !important;
    width: min(230px, 60%) !important;
    min-width: 190px !important;
    color: #fff !important;
}

.specialties-section .card-title {
    margin: 0 0 14px !important;
    font-family: var(--fuente-sans) !important;
    font-size: clamp(21px, 1.8vw, 28px) !important;
    font-weight: 800 !important;
    letter-spacing: .3px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    color: #fff !important;
}

.specialty-card-rule {
    display: none !important;
}

.specialties-section .card-desc {
    max-width: 230px !important;
    margin: 0 0 24px !important;
    font-family: var(--fuente-sans) !important;
    font-size: clamp(15px, 1.34vw, 19px) !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
    color: rgba(255,255,255,.94) !important;
    opacity: 1 !important;
}

.specialties-section .card-arrow-btn {
    width: 48px !important;
    height: 48px !important;
    border: 1.5px solid rgba(255,255,255,.92) !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    line-height: 1 !important;
    transition: transform .28s ease, background .28s ease, color .28s ease !important;
}

.specialties-section .specialty-card:hover {
    transform: translateY(-4px) !important;
}

.specialties-section .specialty-card:hover .card-arrow-btn {
    transform: rotate(45deg) !important;
    background: #fff !important;
    color: #1F1D1B !important;
}

.specialties-features {
    display: none !important;
}

@media (max-width: 960px) {
    .collections-section.specialties-section {
        padding: 64px 28px 58px !important;
    }

    .collections-section.specialties-section .specialties-container {
        display: block !important;
        width: min(100%, 820px) !important;
        max-width: 820px !important;
        margin: 0 auto !important;
    }

    .collections-section.specialties-section .specialties-copy {
        display: grid !important;
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr) !important;
        column-gap: clamp(28px, 6vw, 64px) !important;
        align-items: start !important;
        margin: 0 0 32px !important;
        width: 100% !important;
    }

    .specialties-kicker {
        grid-column: 1 !important;
        grid-row: 1 !important;
        margin: 0 0 12px !important;
        font-family: var(--fuente-sans) !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        letter-spacing: 5px !important;
        text-transform: uppercase !important;
        color: #4B4640 !important;
    }

    .specialties-title {
        grid-column: 1 !important;
        grid-row: 2 !important;
        max-width: 320px !important;
        margin: 0 !important;
        font-size: clamp(48px, 10vw, 58px) !important;
        line-height: .9 !important;
    }

    .specialties-rule {
        display: none !important;
    }

    .specialties-text {
        grid-column: 2 !important;
        grid-row: 1 / span 2 !important;
        align-self: start !important;
        max-width: 360px !important;
        margin: 0 !important;
        font-size: clamp(14px, 2.3vw, 18px) !important;
        line-height: 1.6 !important;
        color: #282522 !important;
    }

    .specialties-button {
        display: none !important;
    }

    .collections-section.specialties-section .specialties-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 22px !important;
    }

    .specialties-section .specialty-card {
        height: clamp(220px, 31vw, 250px) !important;
        min-height: 220px !important;
        max-height: 250px !important;
        border-radius: 12px !important;
        padding: 32px clamp(28px, 6vw, 48px) !important;
        background-position: center right !important;
    }

    .specialties-section .specialty-card::before {
        background: linear-gradient(90deg, rgba(248,246,242,.97) 0%, rgba(248,246,242,.91) 36%, rgba(248,246,242,.48) 58%, rgba(248,246,242,0) 82%) !important;
    }

    .specialty-card-content {
        width: min(240px, 60%) !important;
        min-width: 190px !important;
        color: #24211F !important;
    }

    .specialties-section .card-title {
        margin-bottom: 12px !important;
        color: #24211F !important;
        font-size: clamp(24px, 4.2vw, 30px) !important;
    }

    .specialty-card-rule {
        display: block !important;
        width: 42px !important;
        height: 2px !important;
        margin: 0 0 20px !important;
        border-radius: 999px !important;
        background: #C2A06F !important;
    }

    .specialties-section .card-desc {
        max-width: 220px !important;
        margin-bottom: 24px !important;
        color: #383532 !important;
        font-size: clamp(15.5px, 2.8vw, 18px) !important;
        line-height: 1.45 !important;
    }

    .specialties-section .card-arrow-btn {
        width: 48px !important;
        height: 48px !important;
        border-color: #24211F !important;
        color: #24211F !important;
        font-size: 20px !important;
    }
}

@media (max-width: 520px) {
    .collections-section.specialties-section {
        padding: 58px 20px 54px !important;
    }

    .collections-section.specialties-section .specialties-container {
        max-width: 390px !important;
    }

    .collections-section.specialties-section .specialties-copy {
        grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr) !important;
        column-gap: 18px !important;
        margin-bottom: 30px !important;
    }

    .specialties-kicker {
        font-size: 11px !important;
        letter-spacing: 4px !important;
        margin-bottom: 10px !important;
    }

    .specialties-title {
        font-size: clamp(38px, 11.6vw, 48px) !important;
        line-height: .9 !important;
    }

    .specialties-text {
        font-size: clamp(12.5px, 3.45vw, 14px) !important;
        line-height: 1.55 !important;
        padding-top: 2px !important;
    }

    .specialties-section .specialty-card {
        height: 216px !important;
        min-height: 216px !important;
        border-radius: 12px !important;
        padding: 28px 26px !important;
    }

    .specialty-card-content {
        width: 62% !important;
        min-width: 170px !important;
    }

    .specialties-section .card-title {
        font-size: 26px !important;
    }

    .specialty-card-rule {
        width: 38px !important;
        margin-bottom: 18px !important;
    }

    .specialties-section .card-desc {
        max-width: 170px !important;
        margin-bottom: 22px !important;
        font-size: 15px !important;
    }

    .specialties-section .card-arrow-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 18px !important;
    }
}
/* --- FIN ESPECIALIDADES RESPONSIVE REFERENCIAS V146 --- */
/* --- PC ESPECIALIDADES EXACTO REFERENCIA V147 --- */
@media (min-width: 961px) {
    .collections-section.specialties-section {
        width: 100% !important;
        background: #E8E0DA !important;
        padding: 34px 80px 36px !important;
        min-height: 360px !important;
        display: flex !important;
        align-items: center !important;
        overflow: hidden !important;
    }

    .collections-section.specialties-section .specialties-container {
        width: min(100%, 1280px) !important;
        max-width: 1280px !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 300px minmax(0, 1fr) !important;
        gap: 58px !important;
        align-items: center !important;
    }

    .collections-section.specialties-section .specialties-copy {
        width: 300px !important;
        max-width: 300px !important;
        display: block !important;
        margin: 0 !important;
        grid-column: auto !important;
    }

    .specialties-kicker {
        margin: 0 !important;
        font-family: var(--fuente-serif) !important;
        font-size: 42px !important;
        font-weight: 400 !important;
        line-height: .98 !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
        color: #171615 !important;
    }

    .specialties-title {
        margin: 0 0 26px !important;
        font-family: var(--fuente-serif) !important;
        font-size: 42px !important;
        font-weight: 400 !important;
        line-height: .98 !important;
        letter-spacing: 0 !important;
        color: #171615 !important;
    }

    .specialties-rule {
        display: none !important;
    }

    .specialties-text {
        max-width: 290px !important;
        margin: 0 0 30px !important;
        font-family: var(--fuente-sans) !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        line-height: 1.72 !important;
        color: #23211F !important;
    }

    .specialties-button {
        width: 270px !important;
        height: 46px !important;
        min-height: 46px !important;
        padding: 0 20px 0 22px !important;
        border-radius: 2px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        background: #171514 !important;
        color: #fff !important;
        font-family: var(--fuente-sans) !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        letter-spacing: 1.2px !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        box-shadow: none !important;
    }

    .collections-section.specialties-section .specialties-cards {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
        align-items: stretch !important;
        grid-column: auto !important;
        margin: 0 !important;
    }

    .specialties-section .specialty-card {
        width: 100% !important;
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
        padding: 42px 36px !important;
        border: 0 !important;
        border-radius: 5px !important;
        box-shadow: none !important;
        align-items: center !important;
        background-size: cover !important;
        background-position: center center !important;
        overflow: hidden !important;
    }

    .specialties-section .specialty-card::before {
        background: linear-gradient(90deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.26) 43%, rgba(0,0,0,0) 78%) !important;
    }

    .specialty-card-content {
        width: 225px !important;
        min-width: 225px !important;
        color: #fff !important;
    }

    .specialties-section .card-title {
        margin: 0 0 12px !important;
        color: #fff !important;
        font-family: var(--fuente-sans) !important;
        font-size: 25px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        letter-spacing: .2px !important;
        text-transform: uppercase !important;
    }

    .specialty-card-rule {
        display: none !important;
    }

    .specialties-section .card-desc {
        max-width: 225px !important;
        margin: 0 0 22px !important;
        color: rgba(255,255,255,.94) !important;
        font-size: 18px !important;
        line-height: 1.45 !important;
        font-weight: 400 !important;
    }

    .specialties-section .card-arrow-btn {
        width: 43px !important;
        height: 43px !important;
        border: 1px solid rgba(255,255,255,.86) !important;
        color: #fff !important;
        background: transparent !important;
        font-size: 18px !important;
    }
}
/* --- FIN PC ESPECIALIDADES EXACTO REFERENCIA V147 --- */
/* --- MOBILE ESPECIALIDADES EXACTO REFERENCIA V148 --- */
@media (max-width: 960px) {
    .collections-section.specialties-section {
        background: #F8F6F2 !important;
        padding: 62px 28px 58px !important;
        display: block !important;
        min-height: auto !important;
    }

    .collections-section.specialties-section .specialties-container {
        display: block !important;
        width: min(100%, 760px) !important;
        max-width: 760px !important;
        margin: 0 auto !important;
    }

    .collections-section.specialties-section .specialties-copy {
        width: 100% !important;
        max-width: none !important;
        display: grid !important;
        grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr) !important;
        column-gap: clamp(22px, 5vw, 46px) !important;
        align-items: start !important;
        margin: 0 0 32px !important;
    }

    .specialties-kicker {
        grid-column: 1 !important;
        grid-row: 1 !important;
        margin: 0 0 11px !important;
        font-family: var(--fuente-sans) !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        letter-spacing: 5px !important;
        text-transform: uppercase !important;
        color: #403B36 !important;
    }

    .specialties-title {
        grid-column: 1 !important;
        grid-row: 2 !important;
        max-width: 100% !important;
        margin: 0 !important;
        font-family: var(--fuente-serif) !important;
        font-size: clamp(40px, 9.8vw, 52px) !important;
        font-weight: 400 !important;
        line-height: .9 !important;
        letter-spacing: 0 !important;
        color: #171615 !important;
    }

    .specialties-rule {
        display: none !important;
    }

    .specialties-text {
        grid-column: 2 !important;
        grid-row: 1 / span 2 !important;
        align-self: start !important;
        max-width: 360px !important;
        margin: 0 !important;
        padding-top: 1px !important;
        font-family: var(--fuente-sans) !important;
        font-size: clamp(14px, 2.5vw, 18px) !important;
        font-weight: 400 !important;
        line-height: 1.58 !important;
        color: #26231F !important;
    }

    .specialties-button {
        display: none !important;
    }

    .collections-section.specialties-section .specialties-cards {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin: 0 !important;
    }

    .specialties-section .specialty-card {
        width: 100% !important;
        height: clamp(176px, 28vw, 246px) !important;
        min-height: 176px !important;
        max-height: 246px !important;
        padding: clamp(28px, 5vw, 48px) clamp(24px, 5vw, 48px) !important;
        border-radius: 8px !important;
        align-items: center !important;
        background-size: cover !important;
        background-position: center right !important;
        box-shadow: none !important;
    }

    .specialties-section .specialty-card::before {
        background: linear-gradient(90deg, rgba(248,246,242,.98) 0%, rgba(248,246,242,.92) 34%, rgba(248,246,242,.58) 55%, rgba(248,246,242,0) 80%) !important;
    }

    .specialty-card-content {
        width: min(245px, 58%) !important;
        min-width: 180px !important;
        color: #24211F !important;
    }

    .specialties-section .card-title {
        margin: 0 0 11px !important;
        color: #24211F !important;
        font-family: var(--fuente-sans) !important;
        font-size: clamp(24px, 3.9vw, 28px) !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        letter-spacing: .1px !important;
        text-transform: uppercase !important;
    }

    .specialty-card-rule {
        display: block !important;
        width: 40px !important;
        height: 2px !important;
        margin: 0 0 18px !important;
        border-radius: 999px !important;
        background: #C2A06F !important;
    }

    .specialties-section .card-desc {
        max-width: 215px !important;
        margin: 0 0 22px !important;
        color: #383532 !important;
        font-size: clamp(15px, 2.7vw, 17px) !important;
        line-height: 1.48 !important;
        font-weight: 400 !important;
    }

    .specialties-section .card-arrow-btn {
        width: 44px !important;
        height: 44px !important;
        border: 1.25px solid #24211F !important;
        color: #24211F !important;
        background: transparent !important;
        font-size: 18px !important;
    }
}

@media (max-width: 520px) {
    .collections-section.specialties-section {
        padding: 54px 28px 52px !important;
    }

    .collections-section.specialties-section .specialties-copy {
        grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr) !important;
        column-gap: 18px !important;
        margin-bottom: 28px !important;
    }

    .specialties-kicker {
        font-size: 11px !important;
        letter-spacing: 4px !important;
        margin-bottom: 10px !important;
    }

    .specialties-title {
        font-size: clamp(36px, 10.2vw, 43px) !important;
        line-height: .9 !important;
    }

    .specialties-text {
        font-size: clamp(12.5px, 3.28vw, 14px) !important;
        line-height: 1.56 !important;
    }

    .collections-section.specialties-section .specialties-cards {
        gap: 18px !important;
    }

    .specialties-section .specialty-card {
        height: 174px !important;
        min-height: 174px !important;
        max-height: 174px !important;
        padding: 24px 22px 24px 44px !important;
        border-radius: 8px !important;
    }

    .specialty-card-content {
        width: 58% !important;
        min-width: 160px !important;
    }

    .specialties-section .card-title {
        font-size: 23px !important;
        margin-bottom: 9px !important;
    }

    .specialty-card-rule {
        width: 36px !important;
        margin-bottom: 15px !important;
    }

    .specialties-section .card-desc {
        max-width: 158px !important;
        margin-bottom: 16px !important;
        font-size: 14.5px !important;
        line-height: 1.38 !important;
    }

    .specialties-section .card-arrow-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 17px !important;
    }
}
/* --- FIN MOBILE ESPECIALIDADES EXACTO REFERENCIA V148 --- */
/* --- MOBILE TITULO ESPECIALIDADES SIN SUPERPONER V149 --- */
@media (max-width: 520px) {
    .collections-section.specialties-section .specialties-copy {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
        column-gap: 22px !important;
    }

    .specialties-kicker {
        font-size: 10.5px !important;
        letter-spacing: 4.2px !important;
        margin-bottom: 10px !important;
        color: #37322E !important;
    }

    .specialties-title {
        font-size: clamp(30px, 8.55vw, 34px) !important;
        line-height: .94 !important;
        max-width: 150px !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
        color: #171615 !important;
    }

    .specialties-text {
        font-size: clamp(12.5px, 3.25vw, 13.5px) !important;
        line-height: 1.55 !important;
        color: #26231F !important;
    }
}

@media (max-width: 390px) {
    .specialties-title {
        font-size: 32px !important;
        max-width: 146px !important;
    }
}
/* --- FIN MOBILE TITULO ESPECIALIDADES SIN SUPERPONER V149 --- */
/* --- MOBILE ESPECIALIDADES TIPOGRAFIA EXACTA V150 --- */
@media (max-width: 960px) {
    html body .collections-section.specialties-section .specialties-copy {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr) !important;
        column-gap: 24px !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        font-size: 32px !important;
        line-height: 1 !important;
        max-width: 145px !important;
        letter-spacing: 0 !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-kicker {
        font-size: 10.5px !important;
        letter-spacing: 4.2px !important;
        line-height: 1 !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-text {
        font-size: 12.8px !important;
        line-height: 1.55 !important;
        max-width: 180px !important;
    }
}

@media (max-width: 420px) {
    html body .collections-section.specialties-section .specialties-copy {
        grid-template-columns: 140px minmax(0, 1fr) !important;
        column-gap: 22px !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        font-size: 31px !important;
        max-width: 140px !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-text {
        font-size: 12.6px !important;
        max-width: none !important;
    }
}
/* --- FIN MOBILE ESPECIALIDADES TIPOGRAFIA EXACTA V150 --- */
/* --- MOBILE ESPECIALIDADES ADAPTA PANTALLA V151 --- */
@media (max-width: 620px) {
    html body .collections-section.specialties-section .specialties-copy {
        grid-template-columns: minmax(128px, 0.45fr) minmax(0, 1fr) !important;
        column-gap: clamp(18px, 5vw, 24px) !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        font-size: clamp(23px, 6.2vw, 30px) !important;
        line-height: 1 !important;
        max-width: 100% !important;
        width: 100% !important;
        white-space: nowrap !important;
        overflow: visible !important;
        letter-spacing: 0 !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-kicker {
        font-size: clamp(9.5px, 2.65vw, 11px) !important;
        letter-spacing: clamp(3.2px, .95vw, 4.2px) !important;
        white-space: nowrap !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-text {
        font-size: clamp(12px, 3.2vw, 13.5px) !important;
        line-height: 1.55 !important;
        max-width: none !important;
    }
}

@media (max-width: 360px) {
    html body .collections-section.specialties-section .specialties-copy {
        display: block !important;
        margin-bottom: 26px !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-kicker {
        margin-bottom: 10px !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        font-size: 34px !important;
        max-width: none !important;
        margin-bottom: 16px !important;
        white-space: normal !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-text {
        font-size: 13px !important;
        max-width: 280px !important;
    }
}
/* --- FIN MOBILE ESPECIALIDADES ADAPTA PANTALLA V151 --- */
/* --- MOBILE ESPECIALIDADES FIT REAL V152 --- */
@media (min-width: 361px) and (max-width: 620px) {
    html body .collections-section.specialties-section .specialties-copy {
        grid-template-columns: minmax(136px, 0.46fr) minmax(0, 1fr) !important;
        column-gap: clamp(18px, 5.2vw, 22px) !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        font-size: clamp(20px, 5.9vw, 29px) !important;
        line-height: 1 !important;
        max-width: none !important;
        width: auto !important;
        white-space: nowrap !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-text {
        font-size: clamp(12px, 3.18vw, 13.4px) !important;
        line-height: 1.55 !important;
    }
}
/* --- FIN MOBILE ESPECIALIDADES FIT REAL V152 --- */
/* --- MOBILE ESPECIALIDADES SIN CORTE NI SOLAPE V153 --- */
@media (min-width: 361px) and (max-width: 620px) {
    html body .collections-section.specialties-section .specialties-copy {
        grid-template-columns: minmax(150px, 0.48fr) minmax(0, 1fr) !important;
        column-gap: clamp(20px, 5.4vw, 24px) !important;
        align-items: start !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        font-size: clamp(19px, 5vw, 25px) !important;
        line-height: 1.03 !important;
        max-width: 150px !important;
        width: 150px !important;
        white-space: nowrap !important;
        letter-spacing: 0 !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-kicker {
        font-size: clamp(9px, 2.45vw, 10.5px) !important;
        letter-spacing: clamp(3px, .8vw, 4px) !important;
        white-space: nowrap !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-text {
        font-size: clamp(12px, 3.1vw, 13.2px) !important;
        line-height: 1.56 !important;
        max-width: none !important;
    }

    html body .collections-section.specialties-section .specialty-card {
        height: clamp(188px, 30vw, 246px) !important;
        min-height: 188px !important;
        padding-top: 26px !important;
        padding-bottom: 32px !important;
    }

    html body .collections-section.specialties-section .specialty-card-content {
        min-width: 156px !important;
    }

    html body .collections-section.specialties-section .card-desc {
        margin-bottom: 18px !important;
    }

    html body .collections-section.specialties-section .card-arrow-btn {
        flex: 0 0 auto !important;
        box-sizing: border-box !important;
        line-height: 1 !important;
        margin: 0 !important;
    }
}

@media (max-width: 420px) {
    html body .collections-section.specialties-section .specialties-copy {
        grid-template-columns: 150px minmax(0, 1fr) !important;
        column-gap: 20px !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        font-size: 20px !important;
        width: 150px !important;
        max-width: 150px !important;
    }

    html body .collections-section.specialties-section .specialty-card {
        height: 190px !important;
        min-height: 190px !important;
        max-height: 190px !important;
        padding: 26px 22px 32px 42px !important;
    }
}

@media (max-width: 360px) {
    html body .collections-section.specialties-section .specialties-copy {
        display: block !important;
        margin-bottom: 26px !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        font-size: 34px !important;
        width: auto !important;
        max-width: none !important;
        white-space: normal !important;
        margin-bottom: 16px !important;
    }
}
/* --- FIN MOBILE ESPECIALIDADES SIN CORTE NI SOLAPE V153 --- */
/* --- MOBILE ESPECIALIDADES CAPTURA Y WSP CENTRADO V154 --- */
@media (max-width: 620px) {
    html body .collections-section.specialties-section {
        background: #F8F6F2 !important;
        padding: 58px 14px 48px !important;
    }

    html body .collections-section.specialties-section .specialties-container {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
        display: block !important;
    }

    html body .collections-section.specialties-section .specialties-copy {
        display: block !important;
        width: 100% !important;
        margin: 0 0 24px !important;
        padding: 0 4px !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-kicker {
        display: block !important;
        margin: 0 0 10px !important;
        font-family: var(--fuente-sans) !important;
        font-size: clamp(11px, 3vw, 13px) !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        letter-spacing: 4.6px !important;
        text-transform: uppercase !important;
        color: #403A35 !important;
        white-space: nowrap !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 0 14px !important;
        font-family: var(--fuente-serif) !important;
        font-size: clamp(41px, 13vw, 56px) !important;
        font-weight: 400 !important;
        line-height: .92 !important;
        letter-spacing: 0 !important;
        color: #171615 !important;
        white-space: normal !important;
        overflow: visible !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-rule {
        display: block !important;
        width: 72px !important;
        height: 2px !important;
        margin: 0 !important;
        border-radius: 999px !important;
        background: #D6C6AE !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-text {
        display: none !important;
    }

    html body .collections-section.specialties-section .specialties-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        width: 100% !important;
        margin: 0 !important;
    }

    html body .collections-section.specialties-section .specialty-card {
        width: 100% !important;
        height: clamp(178px, 38vw, 210px) !important;
        min-height: 178px !important;
        max-height: 210px !important;
        padding: 28px 22px 26px 60px !important;
        border-radius: 8px !important;
        align-items: center !important;
        background-size: cover !important;
        background-position: center right !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    html body .collections-section.specialties-section .specialty-card::before {
        background: linear-gradient(90deg, rgba(248,246,242,.98) 0%, rgba(248,246,242,.92) 36%, rgba(248,246,242,.58) 58%, rgba(248,246,242,0) 82%) !important;
    }

    html body .collections-section.specialties-section .specialty-card-content {
        width: 170px !important;
        min-width: 170px !important;
        max-width: 170px !important;
        color: #24211F !important;
    }

    html body .collections-section.specialties-section .card-title {
        margin: 0 0 10px !important;
        font-family: var(--fuente-sans) !important;
        font-size: 25px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        letter-spacing: .1px !important;
        text-transform: uppercase !important;
        color: #24211F !important;
    }

    html body .collections-section.specialties-section .specialty-card-rule {
        display: block !important;
        width: 42px !important;
        height: 2px !important;
        margin: 0 0 16px !important;
        border-radius: 999px !important;
        background: #C2A06F !important;
    }

    html body .collections-section.specialties-section .card-desc {
        max-width: 170px !important;
        margin: 0 0 17px !important;
        font-size: 15.5px !important;
        line-height: 1.42 !important;
        color: #383532 !important;
    }

    html body .collections-section.specialties-section .card-arrow-btn {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        border: 1.35px solid #24211F !important;
        border-radius: 50% !important;
        color: #24211F !important;
        background: transparent !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        line-height: 1 !important;
        overflow: visible !important;
    }
}

@media (max-width: 380px) {
    html body .collections-section.specialties-section {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    html body .collections-section.specialties-section .specialty-card {
        padding-left: 44px !important;
    }
}

html body .whatsapp-widget {
    position: fixed !important;
    right: 16px !important;
    bottom: calc(16px + env(safe-area-inset-bottom)) !important;
    z-index: 999999 !important;
    height: 54px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    pointer-events: none !important;
}

html body .whatsapp-widget .whatsapp-float,
html body > .whatsapp-float {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    flex: 0 0 54px !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #25D366 !important;
    color: #fff !important;
    box-sizing: border-box !important;
    line-height: 0 !important;
    font-size: 0 !important;
    overflow: hidden !important;
    pointer-events: auto !important;
}

html body .whatsapp-widget .whatsapp-float svg,
html body > .whatsapp-float svg {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 29px !important;
    height: 29px !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translate(-50%, -50%) translate(0, -1px) !important;
    transform-origin: center center !important;
    fill: currentColor !important;
}

html body .whatsapp-widget .whatsapp-float::before,
html body .whatsapp-widget .whatsapp-float::after,
html body > .whatsapp-float::before,
html body > .whatsapp-float::after {
    content: none !important;
    display: none !important;
}

@media (max-width: 620px) {
    html body .whatsapp-widget {
        right: 12px !important;
        bottom: calc(12px + env(safe-area-inset-bottom)) !important;
        height: 50px !important;
        gap: 8px !important;
    }

    html body .whatsapp-widget .whatsapp-bubble {
        height: 30px !important;
        min-height: 30px !important;
        padding: 0 10px !important;
        font-size: 9px !important;
        letter-spacing: 1px !important;
    }

    html body .whatsapp-widget .whatsapp-float,
    html body > .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        flex-basis: 50px !important;
    }

    html body .whatsapp-widget .whatsapp-float svg,
    html body > .whatsapp-float svg {
        width: 27px !important;
        height: 27px !important;
        transform: translate(-50%, -50%) translate(0, -1px) !important;
    }
}
/* --- FIN MOBILE ESPECIALIDADES CAPTURA Y WSP CENTRADO V154 --- */
/* --- MOBILE ESPECIALIDADES FLECHAS Y WSP FINAL V155 --- */
@media (max-width: 620px) {
    html body .collections-section.specialties-section .specialty-card {
        height: clamp(190px, 39vw, 214px) !important;
        min-height: 190px !important;
        max-height: 214px !important;
        padding-top: 26px !important;
        padding-bottom: 28px !important;
    }

    html body .collections-section.specialties-section .card-title {
        margin-bottom: 8px !important;
    }

    html body .collections-section.specialties-section .specialty-card-rule {
        margin-bottom: 13px !important;
    }

    html body .collections-section.specialties-section .card-desc {
        margin-bottom: 12px !important;
        line-height: 1.34 !important;
    }

    html body .collections-section.specialties-section .card-arrow-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
    }

    html body .whatsapp-widget .whatsapp-float svg,
    html body > .whatsapp-float svg {
        transform: translate(-50%, -50%) !important;
    }
}

@media (max-width: 380px) {
    html body .collections-section.specialties-section .specialty-card {
        height: 194px !important;
        min-height: 194px !important;
        max-height: 194px !important;
    }
}
/* --- FIN MOBILE ESPECIALIDADES FLECHAS Y WSP FINAL V155 --- */
/* --- WSP ICONO OPTICO CENTRADO V156 --- */
html body .whatsapp-widget a.whatsapp-float,
html body > a.whatsapp-float {
    position: relative !important;
    overflow: visible !important;
}

html body .whatsapp-widget a.whatsapp-float svg,
html body > a.whatsapp-float svg {
    opacity: 0 !important;
    visibility: hidden !important;
}

html body .whatsapp-widget a.whatsapp-float::after,
html body > a.whatsapp-float::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 30px !important;
    height: 30px !important;
    transform: translate(-50%, -50%) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' transform='translate(1.55 -1.25)' d='M16 3.2A12.6 12.6 0 0 0 5.1 22.1L3.6 28.8l6.9-1.5A12.6 12.6 0 1 0 16 3.2Zm0 2.4a10.2 10.2 0 0 1 8.7 15.5 10.2 10.2 0 0 1-13.8 3.7l-.5-.3-3.7.8.8-3.6-.3-.6A10.2 10.2 0 0 1 16 5.6Zm-4.2 5.4c-.3 0-.8.1-1.2.6-.4.5-1.5 1.5-1.5 3.6s1.5 4.1 1.8 4.4c.2.3 3 4.7 7.4 6.3 3.6 1.4 4.4.9 5.2.8.8-.1 2.5-1 2.9-2 .4-1 .4-1.9.3-2.1-.1-.2-.4-.3-.9-.6l-2.7-1.3c-.4-.2-.7-.2-1 .2-.3.5-1.1 1.4-1.4 1.7-.3.3-.5.3-1 .1-.5-.2-2-.7-3.8-2.3-1.4-1.2-2.3-2.7-2.6-3.2-.3-.5 0-.7.2-1l.7-.8c.2-.3.3-.5.5-.8.2-.3.1-.6 0-.8l-1.2-2.8c-.3-.7-.7-.7-1-.7h-.7Z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: contain !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

@media (max-width: 620px) {
    html body .whatsapp-widget a.whatsapp-float::after,
    html body > a.whatsapp-float::after {
        width: 29px !important;
        height: 29px !important;
    }
}
/* --- FIN WSP ICONO OPTICO CENTRADO V156 --- */
/* --- WSP SIN ANIMACION ICONO CENTRADO FINAL V157 --- */
html body .whatsapp-widget,
html body .whatsapp-widget *,
html body .whatsapp-float,
html body .whatsapp-bubble {
    animation: none !important;
}

html body .whatsapp-widget {
    position: fixed !important;
    right: 16px !important;
    bottom: calc(16px + env(safe-area-inset-bottom)) !important;
    z-index: 999999 !important;
    height: 54px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    pointer-events: none !important;
    transform: none !important;
}

html body .whatsapp-widget .whatsapp-bubble {
    transform: none !important;
}

html body .whatsapp-widget a.whatsapp-float,
html body > a.whatsapp-float {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    flex: 0 0 54px !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #10D563 !important;
    color: #fff !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    pointer-events: auto !important;
    transform: none !important;
    box-shadow: 0 14px 34px rgba(16, 213, 99, .24) !important;
}

html body .whatsapp-widget a.whatsapp-float svg,
html body > a.whatsapp-float svg {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

html body .whatsapp-widget a.whatsapp-float::before,
html body > a.whatsapp-float::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 30px !important;
    height: 30px !important;
    transform: translate(-50%, -50%) translate(1px, -1px) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M13.601 2.326A7.854 7.854 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.933 7.933 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93a7.898 7.898 0 0 0-2.327-5.607zM7.994 14.521a6.573 6.573 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.557 6.557 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592zm3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.729.729 0 0 0-.529.247c-.182.198-.691.677-.691 1.654 0 .977.71 1.916.81 2.049.098.133 1.394 2.132 3.383 2.992.473.205.842.326 1.13.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: contain !important;
    z-index: 4 !important;
    pointer-events: none !important;
}

html body .whatsapp-widget a.whatsapp-float::after,
html body > a.whatsapp-float::after {
    content: none !important;
    display: none !important;
}

@media (max-width: 620px) {
    html body .whatsapp-widget {
        right: 12px !important;
        bottom: calc(12px + env(safe-area-inset-bottom)) !important;
        height: 50px !important;
        gap: 8px !important;
    }

    html body .whatsapp-widget a.whatsapp-float,
    html body > a.whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        flex-basis: 50px !important;
    }

    html body .whatsapp-widget a.whatsapp-float::before,
    html body > a.whatsapp-float::before {
        width: 29px !important;
        height: 29px !important;
        transform: translate(-50%, -50%) translate(1px, -1px) !important;
    }
}
/* --- FIN WSP SIN ANIMACION ICONO CENTRADO FINAL V157 --- */
/* --- WSP ELEMENTO REAL CENTRADO SIN ANIMACION V158 --- */
html body div.whatsapp-widget,
html body div.whatsapp-widget .whatsapp-bubble,
html body div.whatsapp-widget a.whatsapp-float.whatsapp-float,
html body a.whatsapp-float.whatsapp-float {
    animation: none !important;
    animation-name: none !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transform: none !important;
}

html body div.whatsapp-widget a.whatsapp-float.whatsapp-float,
html body a.whatsapp-float.whatsapp-float {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    flex: 0 0 54px !important;
    position: relative !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 50% !important;
    background: #10D563 !important;
    box-sizing: border-box !important;
}

html body div.whatsapp-widget a.whatsapp-float.whatsapp-float::before,
html body div.whatsapp-widget a.whatsapp-float.whatsapp-float::after,
html body a.whatsapp-float.whatsapp-float::before,
html body a.whatsapp-float.whatsapp-float::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    box-shadow: none !important;
    animation: none !important;
}

html body div.whatsapp-widget a.whatsapp-float.whatsapp-float svg,
html body a.whatsapp-float.whatsapp-float svg {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

html body div.whatsapp-widget a.whatsapp-float.whatsapp-float .whatsapp-icon-fixed,
html body a.whatsapp-float.whatsapp-float .whatsapp-icon-fixed {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) translate(1px, -1px) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M13.601 2.326A7.854 7.854 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.933 7.933 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93a7.898 7.898 0 0 0-2.327-5.607zM7.994 14.521a6.573 6.573 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.557 6.557 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592zm3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.729.729 0 0 0-.529.247c-.182.198-.691.677-.691 1.654 0 .977.71 1.916.81 2.049.098.133 1.394 2.132 3.383 2.992.473.205.842.326 1.13.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: contain !important;
    z-index: 5 !important;
    pointer-events: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    font-style: normal !important;
}

@media (max-width: 620px) {
    html body div.whatsapp-widget a.whatsapp-float.whatsapp-float,
    html body a.whatsapp-float.whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        flex-basis: 50px !important;
    }

    html body div.whatsapp-widget a.whatsapp-float.whatsapp-float .whatsapp-icon-fixed,
    html body a.whatsapp-float.whatsapp-float .whatsapp-icon-fixed {
        width: 29px !important;
        height: 29px !important;
        transform: translate(-50%, -50%) translate(1px, -1px) !important;
    }
}
/* --- FIN WSP ELEMENTO REAL CENTRADO SIN ANIMACION V158 --- */
/* --- AJUSTE ESPECIALIDADES BOTON INERTE Y WSP V160 --- */
html body .specialties-button {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
    cursor: default !important;
}

html body .specialties-section .card-pisos {
    background-image: url('pisopuerta1.png') !important;
    background-position: center center !important;
}

html body .specialties-section .card-puertas {
    background-image: url('pisopuerta10.png') !important;
    background-position: center center !important;
}

html body .specialties-section .specialty-card,
html body .specialties-section .specialty-card:hover,
html body .specialties-section .specialty-card:active,
html body .specialties-section .specialty-card:focus-visible {
    transform: none !important;
}

html body .specialties-section .card-arrow-btn,
html body .specialties-section .specialty-card:hover .card-arrow-btn,
html body .specialties-section .specialty-card:active .card-arrow-btn,
html body .specialties-section .specialty-card:focus-visible .card-arrow-btn {
    animation: none !important;
    transform: none !important;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease !important;
}

@media (min-width: 961px) {
    html body .specialties-section .card-arrow-btn,
    html body .specialties-section .specialty-card:hover .card-arrow-btn,
    html body .specialties-section .specialty-card:active .card-arrow-btn,
    html body .specialties-section .specialty-card:focus-visible .card-arrow-btn {
        border-color: rgba(255,255,255,.88) !important;
        background: transparent !important;
        color: #fff !important;
    }
}

@media (max-width: 960px) {
    html body .specialties-section .card-arrow-btn,
    html body .specialties-section .specialty-card:hover .card-arrow-btn,
    html body .specialties-section .specialty-card:active .card-arrow-btn,
    html body .specialties-section .specialty-card:focus-visible .card-arrow-btn {
        border-color: #24211F !important;
        background: transparent !important;
        color: #24211F !important;
    }
}

html body div.whatsapp-widget {
    position: fixed !important;
    right: clamp(14px, 3vw, 30px) !important;
    bottom: calc(18px + env(safe-area-inset-bottom)) !important;
    z-index: 9500 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
    transform: none !important;
    animation: none !important;
}

html body div.whatsapp-widget .whatsapp-bubble {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 38px !important;
    min-width: 0 !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.94) !important;
    color: #1F1F1F !important;
    box-shadow: 0 10px 28px rgba(22, 22, 22, .10) !important;
    font-family: var(--fuente-sans) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 1.7px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    pointer-events: none !important;
}

html body div.whatsapp-widget a.whatsapp-float.whatsapp-float,
html body a.whatsapp-float.whatsapp-float {
    position: relative !important;
    inset: auto !important;
    right: auto !important;
    bottom: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    flex: 0 0 54px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: #08D467 !important;
    color: #fff !important;
    box-shadow: 0 14px 34px rgba(8, 212, 103, .30) !important;
    overflow: hidden !important;
    transform: none !important;
    animation: none !important;
    line-height: 0 !important;
    isolation: isolate !important;
    pointer-events: auto !important;
}

html body div.whatsapp-widget a.whatsapp-float.whatsapp-float:hover,
html body div.whatsapp-widget a.whatsapp-float.whatsapp-float:active,
html body a.whatsapp-float.whatsapp-float:hover,
html body a.whatsapp-float.whatsapp-float:active {
    transform: none !important;
    animation: none !important;
}

html body div.whatsapp-widget a.whatsapp-float.whatsapp-float::before,
html body div.whatsapp-widget a.whatsapp-float.whatsapp-float::after,
html body a.whatsapp-float.whatsapp-float::before,
html body a.whatsapp-float.whatsapp-float::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

html body div.whatsapp-widget a.whatsapp-float.whatsapp-float svg:not(.whatsapp-icon-fixed),
html body a.whatsapp-float.whatsapp-float svg:not(.whatsapp-icon-fixed),
html body div.whatsapp-widget a.whatsapp-float.whatsapp-float .whatsapp-icon,
html body a.whatsapp-float.whatsapp-float .whatsapp-icon {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

html body div.whatsapp-widget a.whatsapp-float.whatsapp-float svg.whatsapp-icon-fixed,
html body a.whatsapp-float.whatsapp-float svg.whatsapp-icon-fixed {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
    min-height: 29px !important;
    opacity: 1 !important;
    visibility: visible !important;
    fill: #fff !important;
    color: #fff !important;
    background: none !important;
    transform: translate(-50%, -50%) !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

@media (max-width: 620px) {
    html body div.whatsapp-widget {
        right: 14px !important;
        bottom: calc(15px + env(safe-area-inset-bottom)) !important;
        gap: 8px !important;
    }

    html body div.whatsapp-widget .whatsapp-bubble {
        height: 34px !important;
        padding: 0 12px !important;
        font-size: 9px !important;
        letter-spacing: 1.4px !important;
    }

    html body div.whatsapp-widget a.whatsapp-float.whatsapp-float,
    html body a.whatsapp-float.whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        flex-basis: 50px !important;
    }

    html body div.whatsapp-widget a.whatsapp-float.whatsapp-float svg.whatsapp-icon-fixed,
    html body a.whatsapp-float.whatsapp-float svg.whatsapp-icon-fixed {
        width: 27px !important;
        height: 27px !important;
        min-width: 27px !important;
        min-height: 27px !important;
    }
}
/* --- FIN AJUSTE ESPECIALIDADES BOTON INERTE Y WSP V160 --- */
/* --- RESTAURA ESPECIALIDADES PC CAPTURA V161 --- */
@media (min-width: 961px) {
    html body .collections-section.specialties-section {
        width: 100% !important;
        background: #E8E0DA !important;
        padding: 34px 80px 36px !important;
        min-height: 360px !important;
        display: flex !important;
        align-items: center !important;
        overflow: hidden !important;
    }

    html body .collections-section.specialties-section .specialties-container {
        width: min(100%, 1280px) !important;
        max-width: 1280px !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 300px minmax(0, 1fr) !important;
        gap: 58px !important;
        align-items: center !important;
    }

    html body .collections-section.specialties-section .specialties-copy {
        width: 300px !important;
        max-width: 300px !important;
        display: block !important;
        margin: 0 !important;
        grid-column: auto !important;
    }

    html body .collections-section.specialties-section .specialties-kicker,
    html body .collections-section.specialties-section .specialties-title {
        margin: 0 !important;
        font-family: var(--fuente-serif) !important;
        font-size: 42px !important;
        font-weight: 400 !important;
        line-height: .98 !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
        color: #171615 !important;
        white-space: normal !important;
    }

    html body .collections-section.specialties-section .specialties-title {
        margin-bottom: 26px !important;
    }

    html body .collections-section.specialties-section .specialties-rule {
        display: none !important;
    }

    html body .collections-section.specialties-section .specialties-text {
        display: block !important;
        max-width: 290px !important;
        margin: 0 0 30px !important;
        font-family: var(--fuente-sans) !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        line-height: 1.72 !important;
        color: #23211F !important;
    }

    html body .collections-section.specialties-section .specialties-button {
        width: 270px !important;
        height: 46px !important;
        min-height: 46px !important;
        padding: 0 20px 0 22px !important;
        border-radius: 2px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        background: #171514 !important;
        color: #fff !important;
        font-family: var(--fuente-sans) !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        letter-spacing: 1.2px !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        box-shadow: none !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    html body .collections-section.specialties-section .specialties-cards {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
        align-items: stretch !important;
        grid-column: auto !important;
        margin: 0 !important;
    }

    html body .collections-section.specialties-section .specialty-card {
        width: 100% !important;
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
        padding: 42px 36px !important;
        border: 0 !important;
        border-radius: 5px !important;
        box-shadow: none !important;
        align-items: center !important;
        background-size: cover !important;
        background-position: center center !important;
        overflow: hidden !important;
        transform: none !important;
    }

    html body .collections-section.specialties-section .card-pisos {
        background-image: url('fotopisobanner.jpeg') !important;
    }

    html body .collections-section.specialties-section .card-puertas {
        background-image: url('fotopuertabanner.jpeg') !important;
    }

    html body .collections-section.specialties-section .specialty-card::before {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        background: linear-gradient(90deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.26) 43%, rgba(0,0,0,0) 78%) !important;
    }

    html body .collections-section.specialties-section .specialty-card-content {
        width: 225px !important;
        min-width: 225px !important;
        color: #fff !important;
        position: relative !important;
        z-index: 2 !important;
    }

    html body .collections-section.specialties-section .card-title {
        margin: 0 0 12px !important;
        color: #fff !important;
        font-family: var(--fuente-sans) !important;
        font-size: 25px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        letter-spacing: .2px !important;
        text-transform: uppercase !important;
    }

    html body .collections-section.specialties-section .specialty-card-rule {
        display: none !important;
    }

    html body .collections-section.specialties-section .card-desc {
        max-width: 225px !important;
        margin: 0 0 22px !important;
        color: rgba(255,255,255,.94) !important;
        font-size: 18px !important;
        line-height: 1.45 !important;
        font-weight: 400 !important;
    }

    html body .collections-section.specialties-section .card-arrow-btn,
    html body .collections-section.specialties-section .specialty-card:hover .card-arrow-btn,
    html body .collections-section.specialties-section .specialty-card:active .card-arrow-btn {
        width: 43px !important;
        height: 43px !important;
        border: 1px solid rgba(255,255,255,.86) !important;
        border-radius: 50% !important;
        color: #fff !important;
        background: transparent !important;
        font-size: 18px !important;
        transform: none !important;
        animation: none !important;
    }
}
/* --- FIN RESTAURA ESPECIALIDADES PC CAPTURA V161 --- */
/* --- ESPECIALIDADES IMAGENES Y FLECHA DELICADA V162 --- */
@media (min-width: 961px) {
    html body .collections-section.specialties-section .card-pisos {
        background-image: url('piso.png') !important;
        background-position: center center !important;
    }

    html body .collections-section.specialties-section .card-puertas {
        background-image: url('puerta.png') !important;
        background-position: center center !important;
    }

    html body .collections-section.specialties-section .specialty-card {
        padding: 42px 30px !important;
    }

    html body .collections-section.specialties-section .specialty-card-content {
        width: 220px !important;
        min-width: 220px !important;
    }

    html body .collections-section.specialties-section .card-desc {
        max-width: 218px !important;
    }

    html body .collections-section.specialties-section .card-arrow-btn,
    html body .collections-section.specialties-section .specialty-card:hover .card-arrow-btn,
    html body .collections-section.specialties-section .specialty-card:active .card-arrow-btn {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        border: 1px solid rgba(255,255,255,.82) !important;
        background: transparent !important;
        color: #fff !important;
        font-size: 16px !important;
        line-height: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

@media (max-width: 960px) {
    html body .collections-section.specialties-section .card-pisos {
        background-image: url('piso.png') !important;
    }

    html body .collections-section.specialties-section .card-puertas {
        background-image: url('puerta.png') !important;
    }
}
/* --- FIN ESPECIALIDADES IMAGENES Y FLECHA DELICADA V162 --- */
/* --- MOBILE ESPECIALIDADES EXACTO CAPTURA V163 --- */
@media (max-width: 620px) {
    html body .collections-section.specialties-section {
        background: #F8F6F2 !important;
        padding: 58px 14px 48px !important;
        overflow: hidden !important;
    }

    html body .collections-section.specialties-section .specialties-container {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
    }

    html body .collections-section.specialties-section .specialties-copy {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 0 22px !important;
        padding: 0 18px !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-kicker {
        display: block !important;
        margin: 0 0 9px !important;
        font-family: var(--fuente-sans) !important;
        font-size: clamp(11px, 3vw, 13px) !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        letter-spacing: 4.7px !important;
        text-transform: uppercase !important;
        color: #403A35 !important;
        white-space: nowrap !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 0 14px !important;
        font-family: var(--fuente-serif) !important;
        font-size: clamp(41px, 12.8vw, 54px) !important;
        font-weight: 400 !important;
        line-height: .92 !important;
        letter-spacing: 0 !important;
        color: #171615 !important;
        white-space: normal !important;
        overflow: visible !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-rule {
        display: block !important;
        width: 72px !important;
        height: 2px !important;
        margin: 0 !important;
        border-radius: 999px !important;
        background: #D6C6AE !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-text,
    html body .collections-section.specialties-section .specialties-copy .specialties-button {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    html body .collections-section.specialties-section .specialties-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
    }

    html body .collections-section.specialties-section .specialty-card {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        position: relative !important;
        width: 100% !important;
        height: clamp(150px, 41vw, 164px) !important;
        min-height: 150px !important;
        max-height: 164px !important;
        padding: 0 0 0 58px !important;
        border: 0 !important;
        border-radius: 8px !important;
        box-shadow: none !important;
        overflow: hidden !important;
        background-size: cover !important;
        background-position: center center !important;
        transform: none !important;
    }

    html body .collections-section.specialties-section .card-pisos {
        background-image: url('piso.png') !important;
    }

    html body .collections-section.specialties-section .card-puertas {
        background-image: url('puerta.png') !important;
    }

    html body .collections-section.specialties-section .specialty-card::before {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        background: linear-gradient(90deg, rgba(248,246,242,.97) 0%, rgba(248,246,242,.90) 31%, rgba(248,246,242,.58) 54%, rgba(248,246,242,0) 78%) !important;
        z-index: 1 !important;
    }

    html body .collections-section.specialties-section .specialty-card-content {
        position: relative !important;
        z-index: 2 !important;
        width: 142px !important;
        min-width: 142px !important;
        color: #252321 !important;
    }

    html body .collections-section.specialties-section .card-title {
        margin: 0 0 10px !important;
        color: #252321 !important;
        font-family: var(--fuente-sans) !important;
        font-size: 22px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        letter-spacing: .15px !important;
        text-transform: uppercase !important;
    }

    html body .collections-section.specialties-section .specialty-card-rule {
        display: block !important;
        width: 36px !important;
        height: 2px !important;
        margin: 0 0 14px !important;
        background: #C5AD8F !important;
        border-radius: 999px !important;
    }

    html body .collections-section.specialties-section .card-desc {
        max-width: 142px !important;
        margin: 0 0 17px !important;
        color: #4A4642 !important;
        font-family: var(--fuente-sans) !important;
        font-size: 16px !important;
        font-weight: 400 !important;
        line-height: 1.42 !important;
    }

    html body .collections-section.specialties-section .card-arrow-btn,
    html body .collections-section.specialties-section .specialty-card:hover .card-arrow-btn,
    html body .collections-section.specialties-section .specialty-card:active .card-arrow-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        margin: 0 !important;
        border: 1.4px solid #36322F !important;
        border-radius: 50% !important;
        background: transparent !important;
        color: #292623 !important;
        font-size: 17px !important;
        line-height: 1 !important;
        transform: none !important;
        animation: none !important;
        box-shadow: none !important;
    }
}
/* --- FIN MOBILE ESPECIALIDADES EXACTO CAPTURA V163 --- */
/* --- MOBILE ESPECIALIDADES CORRECCION POSICION REAL V164 --- */
@media (max-width: 620px) {
    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        font-size: clamp(40px, 12vw, 48px) !important;
        line-height: .94 !important;
        margin-bottom: 14px !important;
    }

    html body .collections-section.specialties-section .specialty-card {
        position: relative !important;
        display: block !important;
        height: clamp(156px, 41vw, 166px) !important;
        min-height: 156px !important;
        max-height: 166px !important;
        padding: 0 !important;
        border-radius: 8px !important;
        background-size: cover !important;
        background-position: center center !important;
        overflow: hidden !important;
    }

    html body .collections-section.specialties-section .specialty-card::before {
        background: linear-gradient(90deg, rgba(248,246,242,.90) 0%, rgba(248,246,242,.78) 31%, rgba(248,246,242,.42) 55%, rgba(248,246,242,0) 78%) !important;
    }

    html body .collections-section.specialties-section .specialty-card-content {
        position: absolute !important;
        left: 58px !important;
        top: 50% !important;
        z-index: 2 !important;
        width: 190px !important;
        min-width: 190px !important;
        max-width: 190px !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #252321 !important;
        transform: translateY(-50%) !important;
    }

    html body .collections-section.specialties-section .card-title {
        margin: 0 0 10px !important;
        color: #252321 !important;
        font-family: var(--fuente-sans) !important;
        font-size: 21px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        letter-spacing: 0 !important;
        text-transform: uppercase !important;
    }

    html body .collections-section.specialties-section .specialty-card-rule {
        display: block !important;
        width: 38px !important;
        height: 2px !important;
        margin: 0 0 14px !important;
        background: #C5AD8F !important;
        border-radius: 999px !important;
    }

    html body .collections-section.specialties-section .card-desc {
        max-width: 190px !important;
        margin: 0 0 16px !important;
        color: #38342F !important;
        font-family: var(--fuente-sans) !important;
        font-size: 16px !important;
        font-weight: 400 !important;
        line-height: 1.42 !important;
    }

    html body .collections-section.specialties-section .card-arrow-btn,
    html body .collections-section.specialties-section .specialty-card:hover .card-arrow-btn,
    html body .collections-section.specialties-section .specialty-card:active .card-arrow-btn {
        width: 37px !important;
        height: 37px !important;
        min-width: 37px !important;
        min-height: 37px !important;
        border: 1.35px solid #36322F !important;
        color: #292623 !important;
        background: transparent !important;
        font-family: var(--fuente-sans) !important;
        font-size: 17px !important;
        line-height: 1 !important;
        transform: none !important;
        animation: none !important;
        overflow: visible !important;
    }
}
/* --- FIN MOBILE ESPECIALIDADES CORRECCION POSICION REAL V164 --- */
/* --- MOBILE TITULO NUESTRAS ESPECIALIDADES UNIFORME V165 --- */
@media (max-width: 620px) {
    html body .collections-section.specialties-section .specialties-copy .specialties-kicker,
    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        font-family: var(--fuente-serif) !important;
        font-size: clamp(40px, 11.8vw, 48px) !important;
        font-weight: 400 !important;
        line-height: .94 !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
        color: #171615 !important;
        white-space: normal !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-kicker {
        margin: 0 !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        margin: 0 0 14px !important;
    }
}
/* --- FIN MOBILE TITULO NUESTRAS ESPECIALIDADES UNIFORME V165 --- */
/* --- MOBILE ESPECIALIDADES FINO Y MENOS BLANCO V166 --- */
@media (max-width: 620px) {
    html body .collections-section.specialties-section .specialties-copy .specialties-kicker,
    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        font-family: var(--fuente-serif) !important;
        font-size: clamp(34px, 9.6vw, 39px) !important;
        font-weight: 400 !important;
        line-height: .98 !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
        color: #171615 !important;
    }

    html body .collections-section.specialties-section .specialties-copy .specialties-title {
        margin-bottom: 13px !important;
    }

    html body .collections-section.specialties-section .specialty-card::before {
        background: linear-gradient(90deg, rgba(248,246,242,.76) 0%, rgba(248,246,242,.62) 30%, rgba(248,246,242,.25) 55%, rgba(248,246,242,0) 80%) !important;
    }

    html body .collections-section.specialties-section .specialty-card-content {
        left: 44px !important;
        width: 170px !important;
        min-width: 170px !important;
        max-width: 170px !important;
    }

    html body .collections-section.specialties-section .card-title {
        margin: 0 0 9px !important;
        color: #302C28 !important;
        font-size: 19px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        letter-spacing: .02em !important;
    }

    html body .collections-section.specialties-section .specialty-card-rule {
        width: 34px !important;
        height: 2px !important;
        margin: 0 0 12px !important;
        background: #C5AD8F !important;
    }

    html body .collections-section.specialties-section .card-desc {
        max-width: 160px !important;
        margin: 0 0 13px !important;
        color: #3F3A36 !important;
        font-size: 14.5px !important;
        font-weight: 400 !important;
        line-height: 1.36 !important;
    }

    html body .collections-section.specialties-section .card-arrow-btn,
    html body .collections-section.specialties-section .specialty-card:hover .card-arrow-btn,
    html body .collections-section.specialties-section .specialty-card:active .card-arrow-btn {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        min-height: 34px !important;
        border: 1.25px solid #3B3632 !important;
        color: #302C28 !important;
        font-size: 15.5px !important;
        line-height: 1 !important;
        transform: none !important;
        animation: none !important;
        overflow: visible !important;
    }
}
/* --- FIN MOBILE ESPECIALIDADES FINO Y MENOS BLANCO V166 --- */
/* --- MOBILE ESPECIALIDADES TEXTO MAS CENTRADO V167 --- */
@media (max-width: 620px) {
    html body .collections-section.specialties-section .specialty-card-content {
        left: 62px !important;
        width: 168px !important;
        min-width: 168px !important;
        max-width: 168px !important;
    }

    html body .collections-section.specialties-section .card-desc {
        max-width: 158px !important;
    }
}
/* --- FIN MOBILE ESPECIALIDADES TEXTO MAS CENTRADO V167 --- */

/* --- PROYECTOS DETALLE REVISTA PREMIUM V168 --- */
body.project-bento-body {
    background: #f4f0ea !important;
    color: #141414 !important;
}

.project-bento-body .navbar {
    background: #faf8f5 !important;
    border-bottom: 1px solid rgba(30, 30, 30, .08) !important;
    box-shadow: none !important;
}

.project-bento-page {
    width: 100% !important;
    min-height: 100svh !important;
    padding: calc(var(--header-height, 92px) + 26px) 0 74px !important;
    background: #f4f0ea !important;
}

.project-bento-grid {
    width: min(calc(100% - 56px), 1180px) !important;
    margin: 0 auto !important;
    padding: 16px !important;
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    grid-auto-rows: 120px !important;
    gap: 12px !important;
    align-items: stretch !important;
    background: #ffffff !important;
    border-radius: 22px !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.project-bento-grid .bento-tile {
    position: relative !important;
    min-height: 0 !important;
    height: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.project-bento-grid .bento-hero { grid-column: span 7 !important; grid-row: span 5 !important; }
.project-bento-grid .bento-wide { grid-column: span 5 !important; grid-row: span 3 !important; }
.project-bento-grid .bento-medium { grid-column: span 4 !important; grid-row: span 3 !important; }
.project-bento-grid .bento-small { grid-column: span 3 !important; grid-row: span 2 !important; }
.project-bento-grid .bento-tile:nth-child(6n + 6) { grid-column: span 6 !important; grid-row: span 3 !important; }
.project-bento-grid .bento-tile:nth-child(9n + 9) { grid-column: span 4 !important; grid-row: span 4 !important; }

.project-bento-grid .editorial-image-mask {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: #e9e3da !important;
    box-shadow: none !important;
}

.project-bento-grid .editorial-image-mask::after {
    display: none !important;
}

.project-bento-grid .editorial-image-mask img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: none !important;
    transform: none !important;
}

.project-bento-grid .bento-tile:hover .editorial-image-mask img {
    transform: scale(1.025) !important;
    transition: transform 700ms cubic-bezier(.22,1,.36,1) !important;
}

.bento-project-label {
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    z-index: 3 !important;
    width: min(52%, 420px) !important;
    min-height: 146px !important;
    padding: clamp(34px, 4vw, 56px) clamp(26px, 4vw, 48px) !important;
    display: flex !important;
    align-items: center !important;
    background: #ffffff !important;
    border: 0 !important;
    border-radius: 0 18px 0 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.bento-project-label h1 {
    margin: 0 !important;
    color: #111111 !important;
    font-family: var(--fuente-sans, Inter, sans-serif) !important;
    font-size: clamp(42px, 4.6vw, 68px) !important;
    font-weight: 400 !important;
    line-height: .98 !important;
    letter-spacing: -.035em !important;
    text-transform: none !important;
}

.project-bento-body .project-reveal {
    opacity: 0 !important;
    transition: opacity 760ms cubic-bezier(.22,1,.36,1), transform 760ms cubic-bezier(.22,1,.36,1), clip-path 760ms cubic-bezier(.22,1,.36,1) !important;
    will-change: opacity, transform, clip-path !important;
    clip-path: inset(0 0 8% 0) !important;
}

.project-bento-body .editorial-from-left { transform: translateX(-34px) scale(.985) !important; }
.project-bento-body .editorial-from-right { transform: translateX(34px) scale(.985) !important; }
.project-bento-body .project-reveal.animated {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
    clip-path: inset(0 0 0 0) !important;
}

.project-bento-grid .project-reveal:nth-child(3n + 1) { transition-delay: 40ms !important; }
.project-bento-grid .project-reveal:nth-child(3n + 2) { transition-delay: 120ms !important; }
.project-bento-grid .project-reveal:nth-child(3n + 3) { transition-delay: 200ms !important; }
.project-bento-grid .project-reveal:nth-child(5n) { transition-delay: 280ms !important; }

@media (max-width: 980px) {
    .project-bento-grid {
        width: min(calc(100% - 28px), 760px) !important;
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
        grid-auto-rows: 116px !important;
        gap: 10px !important;
        padding: 12px !important;
        border-radius: 18px !important;
    }

    .project-bento-grid .bento-hero { grid-column: 1 / -1 !important; grid-row: span 5 !important; }
    .project-bento-grid .bento-wide { grid-column: span 6 !important; grid-row: span 3 !important; }
    .project-bento-grid .bento-medium { grid-column: span 3 !important; grid-row: span 3 !important; }
    .project-bento-grid .bento-small { grid-column: span 3 !important; grid-row: span 2 !important; }
    .project-bento-grid .bento-tile:nth-child(6n + 6),
    .project-bento-grid .bento-tile:nth-child(9n + 9) { grid-column: span 6 !important; grid-row: span 3 !important; }
}

@media (max-width: 620px) {
    .project-bento-body .navbar {
        height: 96px !important;
        padding: 18px 22px !important;
    }

    .project-bento-page {
        padding: calc(var(--header-height, 96px) + 16px) 0 58px !important;
        background: #f4f0ea !important;
    }

    .project-bento-grid {
        width: 100% !important;
        margin: 0 !important;
        padding: 10px 10px 24px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: 138px !important;
        gap: 10px !important;
        background: #ffffff !important;
        border-radius: 0 !important;
        overflow: visible !important;
    }

    .project-bento-grid .bento-tile {
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    .project-bento-grid .editorial-image-mask {
        border-radius: inherit !important;
    }

    .project-bento-grid .bento-hero {
        grid-column: 1 / -1 !important;
        grid-row: span 5 !important;
        min-height: 690px !important;
    }

    .project-bento-grid .bento-wide,
    .project-bento-grid .bento-tile:nth-child(2),
    .project-bento-grid .bento-tile:nth-child(6n + 6),
    .project-bento-grid .bento-tile:nth-child(9n + 9) {
        grid-column: 1 / -1 !important;
        grid-row: span 3 !important;
    }

    .project-bento-grid .bento-medium,
    .project-bento-grid .bento-small {
        grid-column: span 1 !important;
        grid-row: span 2 !important;
    }

    .bento-project-label {
        width: min(52%, 214px) !important;
        min-height: 164px !important;
        padding: 26px 18px !important;
        border-radius: 0 16px 0 0 !important;
    }

    .bento-project-label h1 {
        font-family: var(--fuente-sans, Inter, sans-serif) !important;
        font-size: clamp(36px, 11.4vw, 50px) !important;
        font-weight: 400 !important;
        line-height: .98 !important;
        letter-spacing: -.04em !important;
    }
}

@media (max-width: 420px) {
    .project-bento-grid .bento-hero {
        min-height: 660px !important;
    }

    .project-bento-grid {
        grid-auto-rows: 128px !important;
    }

    .bento-project-label {
        width: 204px !important;
        min-height: 152px !important;
        padding: 24px 16px !important;
    }

    .bento-project-label h1 {
        font-size: 43px !important;
    }
}
/* --- FIN PROYECTOS DETALLE REVISTA PREMIUM V168 --- */

/* --- PROYECTOS DETALLE FULL WIDTH V169 --- */
body.project-bento-body {
    background: #ffffff !important;
}

.project-bento-page {
    width: 100% !important;
    max-width: none !important;
    padding: calc(var(--header-height, 92px) + 12px) 0 72px !important;
    margin: 0 !important;
    background: #ffffff !important;
    overflow-x: hidden !important;
}

.project-bento-grid {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: clamp(10px, 1.2vw, 18px) !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

.project-bento-grid .bento-tile,
.project-bento-grid .editorial-image-mask {
    border: 0 !important;
    box-shadow: none !important;
}

@media (min-width: 981px) {
    .project-bento-grid {
        grid-auto-rows: clamp(105px, 8.2vw, 145px) !important;
        gap: 12px !important;
    }

    .project-bento-grid .bento-hero {
        grid-column: span 7 !important;
        grid-row: span 5 !important;
    }

    .project-bento-grid .bento-wide {
        grid-column: span 5 !important;
        grid-row: span 3 !important;
    }

    .project-bento-grid .bento-medium {
        grid-column: span 4 !important;
        grid-row: span 3 !important;
    }

    .project-bento-grid .bento-small {
        grid-column: span 3 !important;
        grid-row: span 2 !important;
    }
}

@media (max-width: 620px) {
    .project-bento-page {
        padding: calc(var(--header-height, 96px) + 10px) 0 56px !important;
        background: #ffffff !important;
    }

    .project-bento-grid {
        width: 100% !important;
        padding: 10px 10px 24px !important;
        gap: 10px !important;
        border-radius: 0 !important;
        background: #ffffff !important;
    }
}
/* --- FIN PROYECTOS DETALLE FULL WIDTH V169 --- */

/* --- PROYECTOS DETALLE SIN HUECOS V170 --- */
.project-bento-grid {
    grid-auto-flow: dense !important;
    align-items: stretch !important;
    justify-items: stretch !important;
    gap: 10px !important;
    padding: 10px !important;
}

.project-bento-grid .bento-tile {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.project-bento-grid .editorial-image-mask {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: #f2eee8 !important;
}

.project-bento-grid .editorial-image-mask img {
    object-fit: cover !important;
    object-position: center center !important;
}

.bento-project-label {
    left: 0 !important;
    bottom: 0 !important;
    width: min(48%, 390px) !important;
    min-height: 132px !important;
    padding: clamp(30px, 3vw, 48px) clamp(26px, 3.4vw, 44px) !important;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #ffffff !important;
}

.bento-project-label h1 {
    font-size: clamp(38px, 4.2vw, 62px) !important;
    line-height: .96 !important;
    letter-spacing: -.04em !important;
}

@media (min-width: 981px) {
    .project-bento-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
        grid-auto-rows: clamp(118px, 8.8vw, 156px) !important;
    }

    .project-bento-grid .bento-hero { grid-column: span 6 !important; grid-row: span 5 !important; }
    .project-bento-grid .bento-wide { grid-column: span 6 !important; grid-row: span 3 !important; }
    .project-bento-grid .bento-medium { grid-column: span 4 !important; grid-row: span 3 !important; }
    .project-bento-grid .bento-small { grid-column: span 3 !important; grid-row: span 2 !important; }
    .project-bento-grid .bento-tile:nth-child(4n) { grid-column: span 3 !important; grid-row: span 3 !important; }
    .project-bento-grid .bento-tile:nth-child(5n) { grid-column: span 5 !important; grid-row: span 3 !important; }
    .project-bento-grid .bento-tile:nth-child(7n) { grid-column: span 4 !important; grid-row: span 2 !important; }
}

@media (max-width: 980px) {
    .project-bento-grid {
        grid-auto-flow: dense !important;
    }
}

@media (max-width: 620px) {
    .project-bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: 126px !important;
        gap: 8px !important;
        padding: 8px 8px 22px !important;
    }

    .project-bento-grid .bento-hero {
        grid-column: 1 / -1 !important;
        grid-row: span 5 !important;
        min-height: 0 !important;
        border-radius: 7px !important;
    }

    .project-bento-grid .bento-wide,
    .project-bento-grid .bento-tile:nth-child(2),
    .project-bento-grid .bento-tile:nth-child(6n + 6),
    .project-bento-grid .bento-tile:nth-child(9n + 9) {
        grid-column: 1 / -1 !important;
        grid-row: span 3 !important;
    }

    .project-bento-grid .bento-medium,
    .project-bento-grid .bento-small,
    .project-bento-grid .bento-tile:nth-child(4n),
    .project-bento-grid .bento-tile:nth-child(5n),
    .project-bento-grid .bento-tile:nth-child(7n) {
        grid-column: span 1 !important;
        grid-row: span 2 !important;
    }

    .bento-project-label {
        width: 50% !important;
        min-height: 132px !important;
        padding: 22px 16px !important;
        border-radius: 0 !important;
    }

    .bento-project-label h1 {
        font-size: clamp(32px, 10vw, 42px) !important;
        line-height: .98 !important;
    }
}
/* --- FIN PROYECTOS DETALLE SIN HUECOS V170 --- */

/* --- PROYECTOS DESTACADOS COLLAGE EDITORIAL PC V172 --- */
.project-bento-grid .editorial-image-mask,
.project-image,
.projects-section .project-card {
    position: relative !important;
    overflow: hidden !important;
}

.project-bento-grid .editorial-image-mask img,
.project-image img,
.projects-section .project-card-img {
    filter: brightness(.88) contrast(1.04) saturate(.92) !important;
}

.project-bento-grid .editorial-image-mask::after,
.project-image::after,
.projects-section .project-card::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    display: block !important;
    background: linear-gradient(to bottom, rgba(0,0,0,.03), rgba(0,0,0,.10)) !important;
    z-index: 1 !important;
}

.project-bento-grid .bento-project-label {
    z-index: 3 !important;
}

@media (min-width: 981px) {
    body.project-bento-body {
        background: #17130f !important;
    }

    .project-bento-page {
        width: 100% !important;
        min-height: 100svh !important;
        padding: var(--header-height, 92px) 0 0 !important;
        background: #17130f !important;
    }

    .project-bento-grid {
        width: 100% !important;
        max-width: none !important;
        min-height: calc(100svh - var(--header-height, 92px)) !important;
        margin: 0 !important;
        padding: 0 !important;
        display: grid !important;
        grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
        grid-auto-rows: clamp(118px, 9.1vw, 168px) !important;
        grid-auto-flow: dense !important;
        gap: 2px !important;
        background: #eee8dc !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    .project-bento-grid .bento-tile,
    .project-bento-grid .editorial-image-mask {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        outline: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: #201913 !important;
    }

    .project-bento-grid .editorial-image-mask img {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        object-fit: cover !important;
        object-position: center center !important;
        transform: none !important;
        transition: transform 900ms cubic-bezier(.22,1,.36,1), filter 400ms ease !important;
    }

    .project-bento-grid .bento-tile:hover .editorial-image-mask img {
        transform: scale(1.018) !important;
    }

    .project-bento-grid .bento-hero {
        grid-column: 1 / -1 !important;
        grid-row: span 4 !important;
        min-height: clamp(440px, 51svh, 620px) !important;
    }

    .project-bento-grid .bento-hero .editorial-image-mask img {
        object-position: center center !important;
    }

    .bento-project-label {
        position: absolute !important;
        inset: 0 auto 0 0 !important;
        width: min(34vw, 470px) !important;
        height: 100% !important;
        min-height: 0 !important;
        padding: clamp(54px, 6vw, 96px) clamp(42px, 5vw, 78px) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        background: linear-gradient(90deg, rgba(41,34,27,.78) 0%, rgba(41,34,27,.58) 68%, rgba(41,34,27,0) 100%) !important;
        border: 0 !important;
        border-radius: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;
        color: #f4ecdf !important;
    }

    .bento-project-label h1 {
        margin: 0 !important;
        max-width: 320px !important;
        color: #f4ecdf !important;
        font-family: var(--fuente-serif, 'Playfair Display', serif) !important;
        font-size: clamp(48px, 4.65vw, 74px) !important;
        font-weight: 400 !important;
        line-height: .96 !important;
        letter-spacing: -.045em !important;
        text-transform: none !important;
        text-shadow: 0 1px 18px rgba(0,0,0,.18) !important;
    }

    .bento-project-label h1::after {
        content: "" !important;
        display: block !important;
        width: 54px !important;
        height: 1px !important;
        margin: 38px 0 24px !important;
        background: rgba(244,236,223,.76) !important;
    }

    .bento-project-label::after {
        content: "PROYECTOS DESTACADOS" !important;
        position: static !important;
        display: block !important;
        color: rgba(244,236,223,.86) !important;
        font-family: var(--fuente-sans, Inter, sans-serif) !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        line-height: 1 !important;
        letter-spacing: .42em !important;
        text-transform: uppercase !important;
        background: transparent !important;
        pointer-events: none !important;
    }

    .project-bento-grid .bento-tile:not(.bento-hero) {
        min-height: 0 !important;
    }

    .project-bento-grid .bento-tile:nth-child(2) { grid-column: span 2 !important; grid-row: span 2 !important; }
    .project-bento-grid .bento-tile:nth-child(3) { grid-column: span 3 !important; grid-row: span 2 !important; }
    .project-bento-grid .bento-tile:nth-child(4) { grid-column: span 2 !important; grid-row: span 2 !important; }
    .project-bento-grid .bento-tile:nth-child(5) { grid-column: span 2 !important; grid-row: span 2 !important; }
    .project-bento-grid .bento-tile:nth-child(6) { grid-column: span 3 !important; grid-row: span 2 !important; }
    .project-bento-grid .bento-tile:nth-child(7) { grid-column: span 3 !important; grid-row: span 2 !important; }
    .project-bento-grid .bento-tile:nth-child(8) { grid-column: span 3 !important; grid-row: span 2 !important; }
    .project-bento-grid .bento-tile:nth-child(9) { grid-column: span 2 !important; grid-row: span 2 !important; }
    .project-bento-grid .bento-tile:nth-child(10) { grid-column: span 4 !important; grid-row: span 2 !important; }
    .project-bento-grid .bento-tile:nth-child(11),
    .project-bento-grid .bento-tile:nth-child(12),
    .project-bento-grid .bento-tile:nth-child(13),
    .project-bento-grid .bento-tile:nth-child(14),
    .project-bento-grid .bento-tile:nth-child(15),
    .project-bento-grid .bento-tile:nth-child(16) { grid-column: span 2 !important; grid-row: span 2 !important; }
    .project-bento-grid .bento-tile:nth-child(n+17) { grid-column: span 3 !important; grid-row: span 2 !important; }
}
/* --- FIN PROYECTOS DESTACADOS COLLAGE EDITORIAL PC V172 --- */

/* --- PROYECTOS MOBILE EDITORIAL Y SIN ZOOM V173 --- */
.project-bento-grid .bento-tile:hover .editorial-image-mask img,
.project-bento-grid .bento-tile:active .editorial-image-mask img {
    transform: none !important;
}

.project-bento-grid .bento-project-label { z-index: 4 !important; }
.bento-project-kicker, .bento-project-subtitle { display: block !important; }
.bento-project-kicker {
    margin: 0 0 30px !important;
    color: rgba(244,236,223,.88) !important;
    font-family: var(--fuente-sans, Inter, sans-serif) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: .38em !important;
    text-transform: uppercase !important;
}
.bento-project-kicker::after {
    content: "" !important;
    display: block !important;
    width: 52px !important;
    height: 1px !important;
    margin-top: 28px !important;
    background: rgba(244,236,223,.62) !important;
}
.bento-project-subtitle {
    max-width: 330px !important;
    margin: 30px 0 0 !important;
    color: rgba(244,236,223,.88) !important;
    font-family: var(--fuente-sans, Inter, sans-serif) !important;
    font-size: clamp(16px, 1.35vw, 19px) !important;
    font-weight: 400 !important;
    line-height: 1.58 !important;
    letter-spacing: 0 !important;
}
.bento-project-label h1::after,
.bento-project-label::after {
    display: none !important;
    content: none !important;
}

@media (min-width: 981px) {
    .project-bento-body .project-reveal {
        opacity: 0 !important;
        transform: translateY(28px) !important;
        transition: opacity 780ms cubic-bezier(.22,1,.36,1), transform 780ms cubic-bezier(.22,1,.36,1), clip-path 780ms cubic-bezier(.22,1,.36,1) !important;
        clip-path: inset(8% 0 0 0) !important;
    }
    .project-bento-body .project-reveal.animated {
        opacity: 1 !important;
        transform: translateY(0) !important;
        clip-path: inset(0 0 0 0) !important;
    }
    .bento-project-label {
        padding-top: clamp(48px, 5vw, 84px) !important;
        padding-bottom: clamp(48px, 5vw, 84px) !important;
        justify-content: center !important;
    }
}

@media (max-width: 620px) {
    body.project-bento-body { background: #17130f !important; }
    .project-bento-page {
        padding: var(--header-height, 96px) 0 0 !important;
        background: #17130f !important;
    }
    .project-bento-grid {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: clamp(178px, 51vw, 228px) !important;
        grid-auto-flow: dense !important;
        gap: 2px !important;
        background: #e8dfd2 !important;
        border-radius: 0 !important;
        overflow: hidden !important;
    }
    .project-bento-grid .bento-tile,
    .project-bento-grid .editorial-image-mask {
        border-radius: 0 !important;
        height: 100% !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }
    .project-bento-grid .bento-hero {
        grid-column: 1 / -1 !important;
        grid-row: span 3 !important;
        min-height: 530px !important;
    }
    .project-bento-grid .bento-wide,
    .project-bento-grid .bento-tile:nth-child(6n + 6),
    .project-bento-grid .bento-tile:nth-child(9n + 9) {
        grid-column: 1 / -1 !important;
        grid-row: span 2 !important;
    }
    .project-bento-grid .bento-medium,
    .project-bento-grid .bento-small {
        grid-column: span 1 !important;
        grid-row: span 2 !important;
    }
    .project-bento-grid .bento-tile:nth-child(2),
    .project-bento-grid .bento-tile:nth-child(3),
    .project-bento-grid .bento-tile:nth-child(4),
    .project-bento-grid .bento-tile:nth-child(5) {
        grid-column: span 1 !important;
        grid-row: span 2 !important;
    }
    .project-bento-grid .bento-tile:nth-child(6) {
        grid-column: 1 / -1 !important;
        grid-row: span 2 !important;
    }
    .bento-project-label {
        position: absolute !important;
        inset: 0 auto 0 0 !important;
        width: min(66%, 270px) !important;
        height: 100% !important;
        min-height: 0 !important;
        padding: 58px 24px 44px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        background: linear-gradient(90deg, rgba(34,27,21,.78) 0%, rgba(34,27,21,.57) 72%, rgba(34,27,21,0) 100%) !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    .bento-project-kicker {
        margin-bottom: 22px !important;
        font-size: 10px !important;
        letter-spacing: .32em !important;
    }
    .bento-project-kicker::after {
        width: 38px !important;
        margin-top: 20px !important;
    }
    .bento-project-label h1 {
        max-width: 220px !important;
        color: #f4ecdf !important;
        font-family: var(--fuente-serif, 'Playfair Display', serif) !important;
        font-size: clamp(43px, 12.8vw, 55px) !important;
        font-weight: 400 !important;
        line-height: .98 !important;
        letter-spacing: -.045em !important;
        text-shadow: none !important;
    }
    .bento-project-subtitle {
        max-width: 218px !important;
        margin-top: 28px !important;
        color: rgba(244,236,223,.88) !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
    }
    .project-bento-body .project-reveal {
        opacity: 0 !important;
        transform: translateY(26px) !important;
        clip-path: inset(8% 0 0 0) !important;
        transition: opacity 720ms cubic-bezier(.22,1,.36,1), transform 720ms cubic-bezier(.22,1,.36,1), clip-path 720ms cubic-bezier(.22,1,.36,1) !important;
    }
    .project-bento-body .project-reveal.animated {
        opacity: 1 !important;
        transform: translateY(0) !important;
        clip-path: inset(0 0 0 0) !important;
    }
}
/* --- FIN PROYECTOS MOBILE EDITORIAL Y SIN ZOOM V173 --- */

/* --- VIDEO PROYECTOS AUTOPLAY V175 --- */
.project-bento-grid .editorial-image-mask video {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    filter: brightness(.88) contrast(1.04) saturate(.92) !important;
    transform: none !important;
    pointer-events: none !important;
    background: #17130f !important;
}

.project-bento-grid .bento-tile:hover .editorial-image-mask video,
.project-bento-grid .bento-tile:active .editorial-image-mask video {
    transform: none !important;
}
/* --- FIN VIDEO PROYECTOS AUTOPLAY V175 --- */
/* --- FOOTER LOGO MOBILE ALINEADO V182 --- */
@media (max-width: 620px) {
    footer.site-footer .footer-brand-block {
        align-items: flex-start !important;
        text-align: left !important;
    }

    footer.site-footer .footer-logo-link {
        width: 250px !important;
        height: 104px !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        justify-content: flex-start !important;
    }

    footer.site-footer .footer-logo {
        width: 250px !important;
        height: 104px !important;
        object-fit: contain !important;
        object-position: left center !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        display: block !important;
    }
}
/* --- FIN FOOTER LOGO MOBILE ALINEADO V182 --- */
/* --- HERO MOBILE EDITORIAL COMPACTO V183 --- */
@media (max-width: 700px) {
    :root {
        --header-height: 92px !important;
    }

    .hero-container {
        width: 100vw !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding: var(--header-height) 0 0 !important;
        display: block !important;
        overflow: visible !important;
        background: #faf8f5 !important;
        isolation: isolate !important;
    }

    .hero-container::before {
        height: var(--header-height) !important;
        background: #faf8f5 !important;
        border-bottom: 1px solid #ece7e1 !important;
        z-index: 5 !important;
    }

    .hero-container::after {
        content: '' !important;
        position: absolute !important;
        top: var(--header-height) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: clamp(500px, 68svh, 590px) !important;
        background: linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.38) 45%, rgba(0,0,0,.08) 100%) !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }

    .hero-slide-bg {
        top: var(--header-height) !important;
        right: 0 !important;
        bottom: auto !important;
        left: 0 !important;
        width: 100% !important;
        height: clamp(500px, 68svh, 590px) !important;
        min-height: 0 !important;
        background-size: cover !important;
        background-position: 64% center !important;
        transform: none !important;
        animation: none !important;
        transition: opacity .7s ease !important;
        z-index: 0 !important;
    }

    .hero-container .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: var(--header-height) !important;
        padding: 0 24px !important;
        background: #faf8f5 !important;
        border-bottom: 1px solid #ece7e1 !important;
        z-index: 50 !important;
    }

    .hero-container .main-wrapper {
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        height: clamp(500px, 68svh, 590px) !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 58px 24px 54px !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .hero-container .main-content {
        width: min(100%, 330px) !important;
        max-width: 330px !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left !important;
        color: #fff !important;
    }

    .hero-container .category-tag,
    #heroCategory {
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 0 22px !important;
        color: rgba(255,255,255,.9) !important;
        font-family: var(--fuente-sans, 'Inter', sans-serif) !important;
        font-size: 11px !important;
        line-height: 1.25 !important;
        font-weight: 600 !important;
        letter-spacing: 3px !important;
        text-transform: uppercase !important;
        text-shadow: 0 1px 14px rgba(0,0,0,.35) !important;
        white-space: normal !important;
    }

    .hero-container .title,
    #heroTitle {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        max-width: 9.6em !important;
        margin: 0 !important;
        overflow: visible !important;
        color: #fff !important;
        font-family: var(--fuente-sans, 'Inter', sans-serif) !important;
        font-size: clamp(34px, 9.4vw, 42px) !important;
        line-height: 1.08 !important;
        font-weight: 700 !important;
        letter-spacing: .01em !important;
        text-transform: uppercase !important;
        text-shadow: 0 2px 18px rgba(0,0,0,.35) !important;
    }

    .hero-container .cta-wrapper {
        display: none !important;
    }

    .hero-container .pagination-container {
        position: absolute !important;
        left: 50% !important;
        right: auto !important;
        bottom: 42px !important;
        top: auto !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        z-index: 3 !important;
    }

    .hero-container .page-num {
        width: 8px !important;
        height: 8px !important;
        min-width: 8px !important;
        border-radius: 50% !important;
        border: 1px solid rgba(255,255,255,.62) !important;
        background: transparent !important;
        color: transparent !important;
        font-size: 0 !important;
        opacity: 1 !important;
        padding: 0 !important;
    }

    .hero-container .page-num.active {
        background: #fff !important;
        border-color: #fff !important;
    }

    .hero-container .scroll-down {
        display: none !important;
    }
}

@media (max-width: 390px) {
    .hero-container .main-wrapper {
        padding-left: 22px !important;
        padding-right: 20px !important;
    }

    .hero-container .title,
    #heroTitle {
        font-size: clamp(31px, 9vw, 36px) !important;
        max-width: 9.2em !important;
    }
}
/* --- FIN HERO MOBILE EDITORIAL COMPACTO V183 --- */
/* --- HERO MOBILE TIPOGRAFIA EDITORIAL V184 --- */
@media (max-width: 700px) {
    .hero-container {
        height: auto !important;
        min-height: 0 !important;
        padding-top: var(--header-height) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 0 !important;
        background: #faf8f5 !important;
        overflow: visible !important;
    }

    .hero-slide-bg {
        top: var(--header-height) !important;
        height: clamp(455px, 61svh, 535px) !important;
        background-size: cover !important;
        background-position: 62% center !important;
        filter: brightness(.92) contrast(1.03) saturate(.94) !important;
    }

    .hero-container::after {
        top: var(--header-height) !important;
        height: clamp(455px, 61svh, 535px) !important;
        background:
            linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.34) 46%, rgba(0,0,0,.08) 100%),
            linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.12) 100%) !important;
    }

    .hero-container .main-wrapper {
        height: clamp(455px, 61svh, 535px) !important;
        min-height: 0 !important;
        padding: clamp(58px, 10svh, 78px) 26px 58px !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .hero-container .main-content {
        width: min(100%, 330px) !important;
        max-width: 330px !important;
        height: auto !important;
        min-height: 0 !important;
        gap: 0 !important;
    }

    .hero-container .category-tag,
    #heroCategory {
        margin: 0 0 18px 0 !important;
        color: rgba(255,255,255,.86) !important;
        font-family: var(--fuente-sans, 'Inter', sans-serif) !important;
        font-size: 10px !important;
        line-height: 1.35 !important;
        font-weight: 500 !important;
        letter-spacing: 3.4px !important;
        text-transform: uppercase !important;
        text-shadow: 0 1px 14px rgba(0,0,0,.42) !important;
    }

    .hero-container .title,
    #heroTitle {
        width: 100% !important;
        max-width: 7.4em !important;
        margin: 0 !important;
        color: rgba(255,255,255,.94) !important;
        font-family: var(--fuente-serif, 'Playfair Display', serif) !important;
        font-size: clamp(42px, 12.1vw, 52px) !important;
        line-height: .98 !important;
        font-weight: 400 !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
        text-shadow: 0 2px 20px rgba(0,0,0,.38) !important;
        overflow: visible !important;
        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;
    }

    .hero-container .cta-wrapper {
        display: none !important;
    }

    .hero-container .pagination-container {
        bottom: 34px !important;
    }

    .hero-container .page-num {
        width: 7px !important;
        height: 7px !important;
        min-width: 7px !important;
        border-color: rgba(255,255,255,.55) !important;
    }

    .hero-container .page-num.active {
        background: rgba(255,255,255,.94) !important;
        border-color: rgba(255,255,255,.94) !important;
    }
}

@media (max-width: 390px) {
    .hero-container .main-wrapper {
        padding-left: 24px !important;
        padding-right: 20px !important;
    }

    .hero-container .title,
    #heroTitle {
        font-size: clamp(39px, 11.4vw, 46px) !important;
        max-width: 7.2em !important;
    }
}
/* --- FIN HERO MOBILE TIPOGRAFIA EDITORIAL V184 --- */
/* --- HERO MOBILE TEXTO CENTRADO V185 --- */
@media (max-width: 700px) {
    .hero-container .main-wrapper {
        padding: 0 26px 44px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-container .main-content {
        width: min(100%, 335px) !important;
        max-width: 335px !important;
        margin: 0 auto !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        transform: translateY(-10px) !important;
    }

    .hero-container .category-tag,
    #heroCategory {
        width: 100% !important;
        margin: 0 0 16px 0 !important;
        text-align: center !important;
        font-size: 9.5px !important;
        letter-spacing: 3px !important;
    }

    .hero-container .title,
    #heroTitle {
        width: 100% !important;
        max-width: 7.8em !important;
        margin: 0 auto !important;
        text-align: center !important;
        font-size: clamp(36px, 10.4vw, 46px) !important;
        line-height: 1.02 !important;
    }

    .hero-container .pagination-container {
        bottom: 30px !important;
    }
}

@media (max-width: 390px) {
    .hero-container .main-wrapper {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    .hero-container .main-content {
        max-width: 315px !important;
    }

    .hero-container .title,
    #heroTitle {
        font-size: clamp(33px, 9.8vw, 40px) !important;
        max-width: 7.6em !important;
    }
}
/* --- FIN HERO MOBILE TEXTO CENTRADO V185 --- */
/* --- FOOTER COMPACTO Y LOGO DUMAS V188 --- */
footer.site-footer,
#contacto.site-footer {
    padding-top: clamp(54px, 5.5vw, 82px) !important;
    padding-bottom: clamp(24px, 3vw, 38px) !important;
}

.footer-main-layout,
.footer-compact-layout {
    margin-bottom: clamp(22px, 3vw, 34px) !important;
    gap: clamp(24px, 4vw, 58px) !important;
}

footer.site-footer .footer-logo-link,
footer.site-footer .footer-logo {
    width: 340px !important;
    height: 146px !important;
}

.footer-info-cell {
    gap: 9px !important;
}

.footer-bottom-bar {
    padding-top: 18px !important;
}

@media (max-width: 900px) {
    footer.site-footer,
    #contacto.site-footer {
        padding: 34px 24px 22px !important;
    }

    .footer-main-layout,
    .footer-compact-layout {
        gap: 20px !important;
        margin-bottom: 24px !important;
    }

    footer.site-footer .footer-logo-link,
    footer.site-footer .footer-logo {
        width: 270px !important;
        height: 112px !important;
    }

    .footer-info-cell {
        gap: 8px !important;
    }

    .footer-bottom-bar {
        padding-top: 16px !important;
    }
}

@media (max-width: 420px) {
    footer.site-footer,
    #contacto.site-footer {
        padding: 30px 22px 20px !important;
    }

    footer.site-footer .footer-logo-link,
    footer.site-footer .footer-logo {
        width: 262px !important;
        height: 108px !important;
    }
}
/* --- FIN FOOTER COMPACTO Y LOGO DUMAS V188 --- */
/* --- HERO MOBILE IZQUIERDA COMPACTO V190 --- */
@media (max-width: 700px) {
    .hero-container {
        height: auto !important;
        min-height: 0 !important;
        padding: var(--header-height) 0 0 !important;
        overflow: visible !important;
        background: #faf8f5 !important;
    }

    .hero-slide-bg {
        top: var(--header-height) !important;
        height: clamp(400px, 52svh, 470px) !important;
        min-height: 0 !important;
        background-size: cover !important;
        background-position: 62% center !important;
        filter: brightness(.9) contrast(1.04) saturate(.94) !important;
    }

    .hero-container::after {
        top: var(--header-height) !important;
        height: clamp(400px, 52svh, 470px) !important;
        background:
            linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.36) 48%, rgba(0,0,0,.10) 100%),
            linear-gradient(to bottom, rgba(0,0,0,.06), rgba(0,0,0,.12)) !important;
    }

    .hero-container .main-wrapper {
        height: clamp(400px, 52svh, 470px) !important;
        min-height: 0 !important;
        padding: 34px 24px 42px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .hero-container .main-content {
        width: min(100%, 318px) !important;
        max-width: 318px !important;
        margin: 0 !important;
        padding: 0 !important;
        align-items: flex-start !important;
        justify-content: center !important;
        text-align: left !important;
        transform: translateY(-4px) !important;
    }

    .hero-container .category-tag,
    #heroCategory {
        width: 100% !important;
        margin: 0 0 15px 0 !important;
        text-align: left !important;
        color: rgba(255,255,255,.86) !important;
        font-family: var(--fuente-sans, 'Inter', sans-serif) !important;
        font-size: 9.5px !important;
        line-height: 1.35 !important;
        font-weight: 500 !important;
        letter-spacing: 3px !important;
        text-transform: uppercase !important;
        text-shadow: 0 1px 14px rgba(0,0,0,.42) !important;
    }

    .hero-container .title,
    #heroTitle {
        width: 100% !important;
        max-width: 7.15em !important;
        margin: 0 !important;
        text-align: left !important;
        color: rgba(255,255,255,.95) !important;
        font-family: var(--fuente-serif, 'Playfair Display', serif) !important;
        font-size: clamp(35px, 10vw, 44px) !important;
        line-height: 1 !important;
        font-weight: 400 !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
        text-shadow: 0 2px 20px rgba(0,0,0,.38) !important;
        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .hero-container .cta-wrapper,
    .hero-container .scroll-down {
        display: none !important;
    }

    .hero-container .pagination-container {
        bottom: 24px !important;
    }
}

@media (max-width: 390px) {
    .hero-container .main-wrapper {
        padding-left: 22px !important;
        padding-right: 20px !important;
    }

    .hero-container .main-content {
        max-width: 300px !important;
    }

    .hero-container .title,
    #heroTitle {
        font-size: clamp(32px, 9.4vw, 38px) !important;
        max-width: 7.05em !important;
    }
}
/* --- FIN HERO MOBILE IZQUIERDA COMPACTO V190 --- */
/* --- LIGHTBOX IMAGENES PROYECTOS DESTACADOS V191 --- */
.project-bento-body .project-bento-grid .editorial-image-mask img {
    cursor: zoom-in !important;
}

body.project-lightbox-open {
    overflow: hidden !important;
}

.project-lightbox[hidden] {
    display: none !important;
}

.project-lightbox {
    position: fixed !important;
    inset: 0 !important;
    z-index: 100000 !important;
    display: grid !important;
    place-items: center !important;
    padding: clamp(18px, 4vw, 54px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 220ms ease !important;
}

.project-lightbox.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.project-lightbox-backdrop {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(12, 11, 10, .86) !important;
    backdrop-filter: blur(8px) !important;
}

.project-lightbox-dialog {
    position: relative !important;
    z-index: 1 !important;
    width: min(94vw, 1320px) !important;
    max-height: 88vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.project-lightbox-image {
    display: block !important;
    max-width: 100% !important;
    max-height: 88vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    box-shadow: 0 26px 80px rgba(0, 0, 0, .42) !important;
    background: #15120f !important;
}

.project-lightbox-close {
    position: absolute !important;
    top: -18px !important;
    right: -18px !important;
    z-index: 2 !important;
    width: 46px !important;
    height: 46px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #faf8f5 !important;
    color: #171615 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 32px !important;
    line-height: 1 !important;
    font-weight: 300 !important;
    cursor: pointer !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .28) !important;
}

@media (max-width: 700px) {
    .project-lightbox {
        padding: 12px !important;
    }

    .project-lightbox-dialog {
        width: 100% !important;
        max-height: 86svh !important;
    }

    .project-lightbox-image {
        max-height: 86svh !important;
        border-radius: 6px !important;
    }

    .project-lightbox-close {
        top: 10px !important;
        right: 10px !important;
        width: 44px !important;
        height: 44px !important;
        background: rgba(250, 248, 245, .95) !important;
    }
}
/* --- FIN LIGHTBOX IMAGENES PROYECTOS DESTACADOS V191 --- */
/* --- FOOTER LOGO ALINEADO CON CONTACTO V198 --- */
@media (min-width: 901px) {
    footer.site-footer .footer-main-layout.footer-compact-layout {
        align-items: flex-start !important;
    }

    footer.site-footer .footer-brand-block {
        align-self: flex-start !important;
        justify-content: flex-start !important;
        transform: translateY(-34px) !important;
    }
}
/* --- FIN FOOTER LOGO ALINEADO CON CONTACTO V198 --- */
/* --- SERVICIOS TITULOS ALINEADOS V199 --- */
.experience-section .steps-grid {
    align-items: stretch !important;
}

.experience-section .step-cell {
    align-items: flex-start !important;
}

.experience-section .step-text-block {
    display: grid !important;
    grid-template-rows: 18px minmax(42px, auto) auto !important;
    align-content: start !important;
    height: 100% !important;
}

.experience-section .step-meta {
    margin: 0 !important;
    line-height: 1 !important;
}

.experience-section .step-title {
    margin: 0 !important;
    padding-top: 8px !important;
    line-height: 1.22 !important;
    min-height: 42px !important;
    display: flex !important;
    align-items: flex-start !important;
}

.experience-section .step-desc {
    margin: 0 !important;
}

@media (max-width: 900px) {
    .experience-section .step-text-block {
        grid-template-rows: auto !important;
        gap: 12px !important;
    }

    .experience-section .step-title {
        min-height: 0 !important;
        padding-top: 0 !important;
    }
}
/* --- FIN SERVICIOS TITULOS ALINEADOS V199 --- */
/* --- LOGO DESARROLLADOR CENTRADO SUTIL V203 --- */
.footer-bottom-bar {
    position: relative !important;
    justify-content: center !important;
    align-items: center !important;
    padding-top: 18px !important;
}

.footer-bottom-line {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    width: 100% !important;
    flex: none !important;
}

.footer-dev-logo {
    width: 328px !important;
    height: auto !important;
    max-height: 96px !important;
    object-fit: contain !important;
    display: block !important;
    opacity: .82 !important;
    visibility: visible !important;
    flex: 0 0 auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    filter: none !important;
}

@media (max-width: 900px) {
    .footer-dev-logo {
        width: 328px !important;
        max-height: 96px !important;
    }
}
/* --- FIN LOGO DESARROLLADOR CENTRADO SUTIL V203 --- */
/* --- FOOTER MAS COMPACTO V205 --- */
footer.site-footer,
#contacto.site-footer {
    padding-top: clamp(34px, 3.5vw, 52px) !important;
    padding-bottom: clamp(16px, 2vw, 24px) !important;
}

.footer-main-layout,
.footer-compact-layout {
    margin-bottom: clamp(12px, 1.8vw, 20px) !important;
    gap: clamp(18px, 3vw, 42px) !important;
}

footer.site-footer .footer-brand-block {
    transform: translateY(-18px) !important;
}

.footer-bottom-bar {
    padding-top: 10px !important;
    min-height: 0 !important;
}

@media (max-width: 900px) {
    footer.site-footer,
    #contacto.site-footer {
        padding: 24px 22px 16px !important;
    }

    .footer-main-layout,
    .footer-compact-layout {
        margin-bottom: 14px !important;
        gap: 14px !important;
    }

    footer.site-footer .footer-brand-block {
        transform: translateY(-8px) !important;
    }

    .footer-bottom-bar {
        padding-top: 8px !important;
    }
}
/* --- FIN FOOTER MAS COMPACTO V205 --- */
/* --- LOGO DESARROLLADOR DOBLE V207 --- */
.footer-dev-logo {
    width: 352px !important;
    max-height: 104px !important;
}

@media (max-width: 900px) {
    .footer-dev-logo {
        width: 328px !important;
        max-height: 96px !important;
    }
}
/* --- FIN LOGO DESARROLLADOR DOBLE V207 --- */
/* --- LOGO DESARROLLADOR MAS GRANDE V208 --- */
.footer-dev-logo {
    width: 390px !important;
    max-height: 116px !important;
}

@media (max-width: 900px) {
    .footer-dev-logo {
        width: 350px !important;
        max-height: 104px !important;
    }
}
/* --- FIN LOGO DESARROLLADOR MAS GRANDE V208 --- */
