/*
Theme Name: Shopdesign Pro
Template: Divi
Author: LK Asociados
Version: 0.1
*/

/*Estilos formulario*/

#ui-datepicker-div.ui-datepicker.forminator-calendar--default {
    width: 24%;
    z-index: 20000000;
    margin: 0;
    padding: 1px 0;
    border: 0;
    border-radius: 0;
    background-color: #555555d1 !important;
}

.forminator-select.forminator-select-dropdown-container--open .forminator-select-dropdown.forminator-dropdown--default {
    border-width: 1px;
    background-color: white;
}



/*Estilos banner principal - Home

/* --- CONTENEDOR PRINCIPAL --- */
/* --- CONTENEDOR --- */
.home-hero-wrapper.main-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    background-color: #0b111a; /* Base azul muy oscuro */
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

/* --- SLIDER --- */
.home-hero-swiper { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; 
}
.hero-bg-image {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transform: scale(1); /* Sin zoom */
}

/* --- GRADIENTE AZUL (CORREGIDO) --- */
.hero-overlay-gradient {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2;
    /* Degradado usando el azul corporativo oscuro (#0b111a) en lugar de negro puro */
    background: linear-gradient(to top, rgba(11, 17, 26, 0.95) 0%, rgba(11, 17, 26, 0.6) 40%, rgba(11, 17, 26, 0) 100%);
    pointer-events: none; /* Dejar pasar clics */
}

/* --- CONTENIDO --- */
.hero-fixed-content {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Alinear abajo */
    padding-bottom: 140px; /* Espacio para que no choque con la flecha */
    padding-left: 8%; /* Margen izquierdo */
    
    /* TRUCO PARA LOS DOTS: */
    /* Hacemos que este contenedor sea transparente a los clics */
    pointer-events: none; 
}

.hero-content-inner { 
    max-width: 800px;
    /* Reactivamos los clics solo en el texto y botones */
    pointer-events: auto; 
}

/* Tipografía */
.hero-h1-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.hero-main-title {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 72px; 
    line-height: 1.1;
    margin: 0 0 30px 0;
    color: #fff;
    text-shadow: 0 10px 40px rgba(0,0,0,0.5); 
}

.hero-desc-group p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 550px;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #fff;
}

/* Botón CTA */
.hero-cta-link {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid #fff;
    padding-bottom: 6px;
    font-weight: 700;
    transition: 0.3s;
}
.hero-cta-link:hover { color: #ccc; border-color: #ccc; }


/* --- PAGINACIÓN (DOTS) --- */
.hero-pagination-dots {
    position: absolute;
    right: 40px !important; /* Pegados a la derecha */
    top: 50% !important;
    transform: translateY(-50%);
    left: auto !important; bottom: auto !important;
    
    /* Z-INDEX ALTO para estar encima de todo */
    z-index: 50 !important; 
    
    display: flex;
    flex-direction: column; 
    gap: 15px;
    width: auto !important;
    
    /* Asegurar que reciban clics */
    pointer-events: auto !important;
}

.hero-pagination-dots .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5); 
    opacity: 1;
    margin: 0 !important;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-pagination-dots .swiper-pagination-bullet-active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.3);
}


/* --- FLECHA SCROLL (AZUL) --- */
.hero-scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%; transform: translateX(-50%);
    width: 24px; height: 60px;
    
    /* CAMBIO DE COLOR A AZUL CIAN */
    color: #3b82f6; /* Puedes cambiar este hex por tu azul exacto */
    
    z-index: 10;
    animation: bounceHero 2s infinite;
    pointer-events: none;
}
@keyframes bounceHero {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}


/* --- RESPONSIVE --- */
@media screen and (max-width: 1024px) {
    .hero-main-title { font-size: 52px; }
    .hero-fixed-content { padding-left: 6%; padding-bottom: 120px; }
}

@media screen and (max-width: 768px) {
    .hero-fixed-content { 
        padding: 0 30px 100px 30px; 
        align-items: flex-start;
        justify-content: flex-end;
        text-align: left;
    }
    
    .hero-h1-title { font-size: 10px; margin-bottom: 15px; }
    .hero-main-title { font-size: 40px; margin-bottom: 20px; }
    
    .hero-desc-group p { 
        font-size: 14px; 
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-pagination-dots { right: 15px !important; }
    
    .hero-scroll-arrow { bottom: 30px; height: 35px; }
}

/*Estilos banner diferneciador - Home */

/* --- CONTENEDOR PRINCIPAL --- */
.int-brands-banner-wrapper {
    position: relative;
    width: 100%;
    height: 85vh; /* Altura ajustada */
    min-height: 550px;
    background-color: #0b111a;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #fff !important; /* Forzar blanco global */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Header arriba, Footer abajo */
    padding: 80px 6%; /* Espaciado lateral */
    box-sizing: border-box;
}

/* Imagen de Fondo */
.ibb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: auto;
    background-position-x: 80%;
    background-position-y: 75%;
    z-index: 1;
}

/* Overlay (Gradiente para contraste) */
.ibb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(0 0 0 / 75%) 0%, rgb(0 0 0 / 50%) 30%, rgb(0 0 0 / 50%) 70%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

/* --- HEADER (Arriba Centro) --- */
.ibb-header {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    margin-top: 20px;
}

.ibb-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px!important;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    color: #ffffff;
    font-weight: 500;
    opacity: 0.9;
}

.ibb-title {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 56px; /* Reducido para elegancia */
    line-height: 1.1;
    margin: 0;
    color: #ffffff; /* Blanco puro */
    font-weight: 400;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}


/* --- FOOTER CONTENT (Textos Abajo) --- */
.ibb-footer-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    gap: 15%; /* Separación central */
    margin-bottom: 20px;
}

.ibb-text-col {
    width: 25%; /* Bloques de texto */
}

.ibb-text-col p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; /* Texto fino y pequeño */
    line-height: 1.8;
    font-weight: 400; /* Peso normal/ligero */
    margin: 0;
    color: #ffffff; /* Blanco puro */
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Alineaciones */
.ibb-text-col.left { text-align: left; }
.ibb-text-col.right { text-align: left; } /* Ambos a la izquierda en su bloque */


/* --- RESPONSIVE --- */
@media screen and (max-width: 1024px) {
    .ibb-title { font-size: 42px; }
    .int-brands-banner-wrapper { height: 70vh; min-height: 500px; padding: 60px 5%; }
}

@media screen and (max-width: 768px) {
    .int-brands-banner-wrapper {
        height: auto; /* Altura flexible */
        min-height: 600px;
        padding: 60px 30px;
        justify-content: center; /* Centrar contenido verticalmente */
        gap: 50px;
    }
    
    .ibb-header { margin-top: 0; }
    .ibb-subtitle { font-size: 10px; margin-bottom: 15px; }
    .ibb-title { font-size: 34px; }
    
    .ibb-footer-content {
        flex-direction: column; /* Uno debajo del otro */
        gap: 30px;
        margin-bottom: 0;
    }
    
    .ibb-text-col { width: 100%; }
    .ibb-text-col p { font-size: 13px; opacity: 1; }
}

/*Estilos diferenciador - Home*/

/* --- CONTENEDOR PRINCIPAL --- */
.distinctive-seal-wrapper {
    width: 100%;
    height: 98vh;
    background-color: #fff;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

/* --- TÍTULO (Alineado al grid del sitio) --- */
.seal-header-container {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 80px;
    box-sizing: border-box;
}

.seal-main-title {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 64px;
    color: #1a2b40;
    line-height: 1.1;
    margin: 0;
}

/* --- ESTRUCTURA FLEX (Layout Asimétrico) --- */
.seal-content-flex {
    display: flex;
    width: 100%;
    align-items: flex-start; /* Alineación superior para controlar la bajada con márgenes */
    justify-content: space-between;
}

/* Columna Imagen (Izquierda) */
.seal-col-image {
    width: 60%;
    position: relative;
    margin-top: 100px;
    height: 700px;
    z-index: 2;
}

.seal-img-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Columna Texto (Derecha - Fondo Azul Cielo) */
.seal-col-text {
    width: 45%;
    position: relative;
    background-color: #F4F8FB;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 0;
    min-height: 600px;
    padding: 290px 3%;
    box-sizing: border-box;
    z-index: 0;
}

.seal-text-inner {
    position: relative;
    z-index: 2;
    max-width: 450px;
}

.seal-text-inner p {
    font-size: 15px;
    line-height: 2;
    color: #555;
    font-weight: 300;
    margin: 0;
    text-align: left;
}

/* --- GRÁFICO "DESIGN" --- */
.seal-watermark-graphic {
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60%;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

.seal-watermark-graphic img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- RESPONSIVE (Móvil y Tablet) --- */
@media screen and (max-width: 1024px) {
    
    /* 1. Contenedor: Quitamos la altura fija de 100vh para que no corte contenido */
    .distinctive-seal-wrapper {
        height: auto; 
        min-height: auto;
        padding-top: 60px;
    }

    /* Título más pequeño */
    .seal-main-title { 
        font-size: 42px; 
        margin-bottom: 40px; 
    }

    .seal-header-container {
    width: 100%;
    padding-left: 0%;
    padding-right: 5%;
    margin-bottom: 0px;
    box-sizing: border-box;
    }
    
    /* Apilar columnas */
    .seal-content-flex { 
        flex-direction: column; 
    }
    
    /* 2. Imagen: Arriba, centrada con margen y superpuesta a la caja de abajo */
    .seal-col-image { 
        width: 90%; 
        margin-left: 5%; /* Centrado visual */
        margin-top: 0; 
        height: 350px; /* Altura controlada para móvil */
        z-index: 2; /* Encima de la caja azul */
    }
    
    /* 3. Texto: Caja azul abajo */
    .seal-col-text { 
        width: 100%; /* Ancho completo */
        
        /* Padding Superior GRANDE para compensar que la foto le cayó encima */
        padding: 120px 30px 60px 30px; 
        
        min-height: auto;
        margin-top: 0;
        z-index: 1; /* Debajo de la foto */
    }
    
    /* Ajuste de texto para lectura */
    .seal-text-inner p {
        font-size: 14px;
        line-height: 1.8;
    }
    
    /* Marca de agua más discreta en móvil */
    .seal-watermark-graphic {
        width: 50%;
        bottom: 10px;
        right: -10px;
        opacity: 0.5;
    }
}

/*Estilos modulo inspiracion por estilo*/

/* --- PISTA DE SCROLL (Contenedor Alto) --- */
.scroll-sticky-track {
    width: 100%;
    position: relative;
    background-color: #000;
    /* La altura se define en línea en el HTML */
}

/* --- VIEWPORT FIJO (Lo que ve el usuario) --- */
.sticky-viewport {
    width: 100%;
    height: 100vh; /* Ocupa toda la pantalla */
    position: sticky; /* SE PEGA AL TECHO */
    top: 0;
    overflow: hidden;
}

/* --- SWIPER --- */
.vertical-sync-swiper {
    width: 100%;
    height: 100%;
}

.v-slide-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

/* Fondo */
.v-slide-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    z-index: 1;
}

/* Overlay (Para contraste del texto) */
.v-slide-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

/* --- CONTENIDO --- */
.v-slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 5% 50px 5%;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* COLUMNAS */
.v-slide-col.title-col { width: 35%; text-align: left; }
.v-slide-col.arrow-col { width: 30%; display: flex; justify-content: center; padding-bottom: 10px; }
.v-slide-col.desc-col  { width: 35%; text-align: right; }

/* Título (BLANCO PURO) */
.title-col h2 {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 56px;
    line-height: 1.1;
    margin: 0;
    color: #ffffff !important; /* Forzado */
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* Descripción (BLANCO PURO) */
.desc-col p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
    color: #ffffff !important; /* Forzado */
    opacity: 0.95;
}

/* Flecha Animada */
.smooth-arrow svg {
    width: 20px;
    height: 50px;
    color: #fff;
    opacity: 0.9;
    animation: floatArrow 2s ease-in-out infinite;
}

@keyframes floatArrow {
    0% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media screen and (max-width: 1024px) {
    .v-slide-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 80px;
        gap: 25px;
    }
    
    .v-slide-col.title-col, 
    .v-slide-col.arrow-col, 
    .v-slide-col.desc-col { 
        width: 100%; 
        text-align: center; 
    }
    
    .title-col { order: 1; }
    .desc-col  { order: 2; }
    .arrow-col { order: 3; }
    
    .title-col h2 { font-size: 38px; }
}

/*Estilos banner principal - Servicio */

/* Contenedor Principal */
/* --- ESTRUCTURA BASE --- */
.hero-swiper-container {
    position: relative;
    width: 100%;
    height: 130vh;
    overflow: hidden;
    background-color: #000;
}

.hero-swiper {
    width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 1;
}
.hero-swiper .swiper-slide {
    background-size: cover; background-position: center; width: 100%; height: 100%;
}

/* OVERLAY */
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(10, 20, 35, 0.6) 70%, rgba(10, 20, 35, 0.95) 100%);
    z-index: 5; pointer-events: none;
}

/* --- PAGINACIÓN (DOTS) --- */
/* Ajustado para asegurar visibilidad a la derecha */
.hero-pagination {
    position: absolute;
    right: 40px !important; /* Separación del borde derecho */
    top: 50% !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateY(-50%);
    z-index: 20 !important; /* Muy alto para estar sobre el overlay */
    display: flex;
    flex-direction: column; 
    gap: 15px;
    width: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px; height: 10px;
    border: 2px solid #fff;
    background: transparent;
    opacity: 0.5;
    margin: 0 !important;
    display: block;
    transition: 0.3s;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: #fff; opacity: 1; transform: scale(1.2);
}

/* --- TEXTO PRINCIPAL --- */
.hero-text {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    left: 8%;
    color: #fff;
    max-width: 800px;
    z-index: 10;
}

.hero-text h1 {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    color:#fff;
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-text p {
    font-family: 'Montserrat';
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px; /* Espacio antes del botón */
    font-weight: 300;
    width: 450px;
}

/* --- BOTÓN ESTILO "LINK" (CORREGIDO) --- */
/* Ya no es una caja, es texto subrayado */
.hero-btn {
    display: inline-block;
    padding: 0 0 5px 0; /* Solo padding abajo para la línea */
    border: none;
    border-bottom: 2px solid #fff; /* La línea blanca */
    background: transparent;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    transition: 0.3s;
}

.hero-btn:hover {
    background: transparent;
    color: #ccc;
    border-color: #ccc;
    transform: translateY(-2px);
}

/* --- FLECHA (SVG FLOTANTE) --- */
.hero-scroll-down {
    position: absolute;
    /* La subimos para separarla del texto de abajo */
    bottom: 20%; 
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 50px;
    color: #2ea3f2; /* Azul Cyan */
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
    font-size: 0; /* Ocultar cualquier texto residual */
}
.hero-scroll-down svg { width: 100%; height: 100%; stroke: currentColor; }

/* --- TEXTO FOOTER --- */
.hero-footer-text {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 650px;
    text-align: center;
    color: #fff;
    z-index: 10;
    opacity: 0.9;
}

.hero-footer-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 300;
    margin: 0;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
  40% {transform: translateX(-50%) translateY(-10px);}
  60% {transform: translateX(-50%) translateY(-5px);}
}

/* --- RESPONSIVE OPTIMIZADO (MÓVIL) --- */
@media screen and (max-width: 768px) {
    /* 1. Ajuste de Altura del Contenedor */
    .hero-swiper-container {
        height: 100vh; /* Altura estándar de móvil */
        min-height: 600px; /* Evitar que se aplaste en pantallas muy pequeñas */
    }

    /* 2. Ajuste de Texto Principal */
    .hero-text {
    left: 5%;
    width: 90%;
    max-width: 100%;
    top: 70%;
    transform: translateY(-50%);
    text-align: center;
    }

    .hero-text h1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 15px;
    }

    .hero-text p {
        width: 100%; /* Ancho completo */
        font-size: 14px; /* Texto más legible */
        line-height: 1.5;
        margin-bottom: 25px;
        margin-left: auto; margin-right: auto; /* Centrar si usas text-align center */
    }

    /* 3. Ajuste de Botón */
    .hero-btn {
        font-size: 11px;
        padding-bottom: 3px;
    }

    /* 4. Ajuste de Paginación (Dots) */
    .hero-pagination {
        right: 10px !important; /* Más pegado al borde */
        gap: 10px; /* Puntos más juntos */
    }
    
    /* 5. Flecha */
    .hero-scroll-down {
    bottom: 100px;
    height: 30px;
    width: 15px;
    }

    /* 6. Texto Footer */
    .hero-footer-text {
    bottom: 20px;
    width: 90%;
    }
    .hero-footer-text p {
    font-size: 12px;
    line-height: 1.4;
    }
}

/*Estilos de descripcion de servicio - Servicio*/
/* --- CONTENEDOR PRINCIPAL --- */
.features-overlay-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* Altura generosa en escritorio */
    min-height: 600px;
    background-color: #000;
    overflow: hidden;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* Fondo */
.features-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    z-index: 1;
}

/* Degradado (Oscuro abajo para el texto) */
.features-gradient {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 60%; /* Solo ocupa el 60% inferior */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    z-index: 2;
}

/* --- GRID DE CONTENIDO (ESCRITORIO) --- */
.features-grid-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    display: flex; /* 4 Columnas lado a lado */
    justify-content: space-between;
    padding: 0 5% 60px 5%; /* Márgenes laterales y abajo */
    box-sizing: border-box;
    gap: 30px;
}

/* Columna Individual */
.feature-col {
    flex: 1; /* Todas del mismo ancho */
    padding-top: 20px;
}

/* Títulos (Serif Italic como la marca) */
.feat-title {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
}

.feat-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}


/* --- RESPONSIVE (MEJORA UX) --- */
@media screen and (max-width: 1024px) {
    .features-overlay-wrapper {
        height: 100vh;
    }
    
    .features-grid-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        
        /* Ajuste de márgenes para que se vea la siguiente tarjeta */
        padding: 0 20px 40px 20px; /* Padding lateral */
        gap: 15px; /* Espacio entre tarjetas */
        
        -webkit-overflow-scrolling: touch;
        
        /* Hacemos visible el scrollbar pero estilizado */
        scrollbar-width: thin; 
        scrollbar-color: rgba(255,255,255,0.5) transparent;
    }

    /* Estilo de la barra de scroll (Webkit/Chrome) */
    .features-grid-container::-webkit-scrollbar {
        height: 4px; /* Barra fina horizontal */
        display: block; /* La mostramos */
    }
    .features-grid-container::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.1);
        margin: 0 20px; /* Margen para que no toque los bordes */
    }
    .features-grid-container::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.6);
        border-radius: 4px;
    }

    .feature-col {
        /* Hacemos las tarjetas un poco más angostas para que la siguiente se asome */
        min-width: 85%; 
        scroll-snap-align: center; /* Centrar al soltar */
        
        /* Borde visual */
        border-top: 1px solid rgba(255,255,255,0.6); 
        padding-top: 15px;
        
        /* Pequeño fade si no es el activo (opcional, avanzado) */
        opacity: 0.9;
        transition: opacity 0.3s;
    }
    
    .feat-title { font-size: 22px; margin-bottom: 10px; }
    .feat-desc { font-size: 14px; line-height: 1.5; }
}


/* --- CONTENEDOR GENERAL --- */
.gallery-module-wrapper {
    width: 100%;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    color: #1a2b40;
}

/* --- 1. ENCABEZADO (TEXTO) --- */
.gallery-header {
    background-color: #f4f8ff; /* Fondo azul muy claro de la referencia */
    padding: 80px 8%; /* Margen lateral y vertical generoso */
    display: flex;
    justify-content: space-between; /* Separa Izq y Der */
    align-items: flex-end; /* Alinea los textos abajo */
    gap: 40px;
}

/* Columna Izquierda (Títulos) */
.gh-left {
    max-width: 600px;
}

.gh-subtitle {
    display: block;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #666;
}

.gh-title {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 48px;
    line-height: 1.1;
    color: #1a2b40;
    margin: 0;
}

/* Columna Derecha (Descripción y Link) */
.gh-right {
    max-width: 450px;
    text-align: right;
    padding-bottom: 5px; /* Ajuste óptico */
}

.gh-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
}

.gh-link {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a2b40;
    text-decoration: none;
    border-bottom: 1px solid #1a2b40;
    padding-bottom: 3px;
    letter-spacing: 1px;
    transition: 0.3s;
}
.gh-link:hover { color: #42A6FF; border-color: #42A6FF; }


/* --- 2. GALERÍA (IMÁGENES) --- */
.gallery-swiper-container {
    width: 100%;
    height: 80vh; /* Altura de la galería */
    position: relative;
}

.gallery-swiper {
    width: 100%; height: 100%;
}
.gallery-swiper .swiper-slide {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
}

/* Dots (Sobre la imagen) */
.gallery-pagination {
    position: absolute;
    left: 40px !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: auto !important;
}

.gallery-pagination .swiper-pagination-bullet {
    width: 10px; height: 10px;
    background: transparent;
    border: 2px solid #fff; /* Blanco porque está sobre la foto */
    opacity: 0.6;
    margin: 0 !important;
    display: block;
    transition: 0.3s;
}
/* Activo */
.gallery-pagination .swiper-pagination-bullet-active {
    background: #fff; opacity: 1; transform: scale(1.2);
}


/* --- RESPONSIVE --- */
@media screen and (max-width: 1024px) {
    /* En Tablet/Móvil apilamos el texto */
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 5%;
    }
    
    .gh-right {
        text-align: left; /* Alineamos a izquierda para leer mejor */
        max-width: 100%;
    }
    
    .gh-title { font-size: 36px; }
    
    .gallery-swiper-container {
        height: 50vh; /* Menos altura en móvil para ver algo del texto */
    }
    
    .gallery-pagination { left: 20px !important; }
}

/* --- CONTENEDOR PRINCIPAL --- */
.split-brands-container {
    display: flex;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* --- DIVISIÓN 50% --- */
.split-half {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.split-half .swiper {
    width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 3;
}

.brand-bg {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 10s ease;
    position: relative; /* Para el pseudo-elemento overlay */
}
.swiper-slide-active .brand-bg { transform: scale(1.05); }

/* --- NUEVO OVERLAY DE IMAGEN (Para que resalten logos) --- */
.brand-bg::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Oscurecimiento general */
    z-index: 1;
}

.split-half::after {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%);
    z-index: 2; /* Este quedará ahora detrás del swiper */
    pointer-events: none;
}


/* --- PLACA CENTRAL FLOTANTE (REDISEÑADA) --- */
.center-brand-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: 600px;
    max-width: 90%;
    background-color: rgb(17 24 35 / 70%);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
}

/* Cuerpo Superior */
.badge-body {
    padding: 50px 40px 30px 40px;
}

.badge-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.6); /* Gris claro */
    display: block;
    margin-bottom: 20px;
}

.badge-title {
    font-family: 'DM Serif Text', serif;
    font-size: 46px; /* Título Grande */
    line-height: 1.1;
    margin: 0;
    font-style: italic;
    color: #fff; /* Blanco puro */
}

.badge-separator {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 30px auto 0 auto;
}

/* Footer de la Placa (Separado) */
.badge-bottom-bar {
    /* Fondo ligeramente distinto o solo padding */
    background-color: rgba(0,0,0,0.2); /* Un poco más oscuro */
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.badge-footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    display: block;
}


/* --- CONTENIDO FIJO INFERIOR --- */
.static-overlay {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 20;
    color: #fff;
    max-width: 350px;
}

.section-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.8;
    font-weight: 700;
}

.section-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.brand-link {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 4px;
    transition: 0.3s;
    font-weight: 600;
}
.brand-link:hover { opacity: 0.7; }


/* --- FLECHAS (Misma posición que definimos antes) --- */
.custom-nav-prev, .custom-nav-next {
    position: absolute;
    bottom: 220px; 
    z-index: 30;
    width: 40px; height: 20px;
    cursor: pointer;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s;
}
.custom-nav-prev:hover, .custom-nav-next:hover { color: #fff; transform: scale(1.1); }

.swiper-nav-int-prev, .swiper-nav-ext-prev { left: 50px; }
.swiper-nav-int-next, .swiper-nav-ext-next { left: 110px; }


/* --- LOGO DINÁMICO --- */
.brand-logo-floating {
    position: absolute;
    bottom: 50px;
    right: 50px;
    max-width: 140px;
    height: auto;
    z-index: 5;
    filter: brightness(0) invert(1);
    opacity: 1; /* <--- CAMBIO: Antes era 0.9. Ahora es blanco puro. */
}


/* --- RESPONSIVE --- */
@media screen and (max-width: 1024px) {
    .split-brands-container { flex-direction: column; height: auto; }
    .split-half { width: 100%; height: 70vh; }

    .center-brand-badge {
        position: relative;
        top: auto; left: auto; transform: none;
        width: 100%; max-width: none;
        background: #1e293b; /* Color sólido en móvil */
        box-shadow: none;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .badge-body { padding: 40px 20px 20px 20px; }
    .badge-title { font-size: 32px; }
    
    .static-overlay { left: 20px; bottom: 30px; max-width: 80%; }
    
    .custom-nav-prev, .custom-nav-next { bottom: 200px; } 
    .swiper-nav-int-prev, .swiper-nav-ext-prev { left: 20px; }
    .swiper-nav-int-next, .swiper-nav-ext-next { left: 80px; }
    
    /* Ajuste Logo Móvil */
    .brand-logo-floating {
        max-width: 80px; /* Logo pequeño */
        bottom: 30px;
        right: 20px;
    }
}

/*Acordeon proyectos*/

/* --- CONTENEDOR PRINCIPAL --- */
.projects-accordion-wrapper {
    background-color: #F4F8FF;
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

/* --- ENCABEZADO --- */
.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    max-width: 1600px;
    margin-left: auto; margin-right: auto;
}
.header-title {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 42px;
    color: #1a2b40;
    line-height: 1.1;
}
.header-right { text-align: right; max-width: 400px; }
.header-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.header-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a2b40;
    text-decoration: none;
    border-bottom: 1px solid #1a2b40;
    padding-bottom: 3px;
    transition: 0.3s;
}
.header-link:hover { color: #42A6FF; border-color: #42A6FF; }


/* --- ACORDEÓN --- */
.projects-accordion {
    display: flex;
    width: 100%;
    height: 600px;
    /* Borde superior e inferior opcional para limpieza */
    border-top: 1px solid rgba(26, 43, 64, 0.1);
    border-bottom: 1px solid rgba(26, 43, 64, 0.1);
}

.project-tab {
    flex: 1; /* Todos inician igual */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); /* Animación suave */
    border-right: 1px solid #fff; /* Separador blanco entre pestañas */
}
.project-tab:last-child { border-right: none; }

/* ESTADO ACTIVO: Se expande */
.project-tab.active {
    flex: 6; /* Se hace mucho más ancho que los demás */
    cursor: default;
}


/* --- BARRA DE ETIQUETA (VERTICAL) --- */
.tab-label {
    position: absolute;
    top: 0; left: 0; 
    width: 100%; 
    height: 100%;
    
    /* ESTADO INACTIVO (Normal) */
    background-color: #142963; /* Azul Oscuro Corporativo */
    color: #fff; /* Texto blanco */
    
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s ease;
}

/* Texto vertical */
.tab-label span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 3px;
    font-size: 30px;
    font-family: 'DM SERIF TEXT';
    font-style: italic;
    font-weight: 400;
    white-space: nowrap;
}

/* --- ESTADO ACTIVO DE LA BARRA (GLASS + TEXTO AZUL) --- */
.project-tab.active .tab-label {
    width: 90px;
    background-color: rgb(255 255 255 / 45%);
    backdrop-filter: blur(10px);
    color: #142963;
}


/* --- CONTENIDO DE FOTO (FONDO) --- */
.tab-content {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; /* Oculto cuando está cerrado */
    transform: scale(1.1);
    transition: all 0.6s ease;
    z-index: 1; /* Detrás de la etiqueta */
}

.project-tab.active .tab-content {
    opacity: 1; /* Visible al activar */
    transform: scale(1);
}

/* Sombra degradada para que se lea el texto abajo */
.tab-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
}


/* --- INFO DEL PROYECTO (PEQUEÑA Y ABAJO) --- */
.project-info {
    position: absolute;
    bottom: 40px;
    left: 120px;
    z-index: 20;
    text-align: left;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

/* Aparece solo cuando está activo */
.project-tab.active .project-info {
    opacity: 1;
    transform: translateY(0);
}

.project-title {
    font-family: 'Montserrat';
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.2;
    color: #fff;
}

.project-city {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    opacity: 0.9;
}


/* --- FOOTER DEL MÓDULO --- */
.projects-footer-desc {
    margin-top: 30px;
    padding: 0 100px;
    max-width: 1600px;
    margin-left: auto; margin-right: auto;
    display: flex; justify-content: center;
}
.projects-footer-desc p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    text-align: center;
}

/* --- RESPONSIVE (MÓVIL / TABLET) --- */
@media screen and (max-width: 1024px) {
    
    /* 1. Ajuste de Contenedor General */
    .projects-accordion-wrapper {
        padding: 40px 0; /* Menos padding vertical */
    }

    /* 2. Encabezado más limpio */
    .projects-header {
        flex-direction: column; /* Apilar elementos */
        padding: 0 20px;
        margin-bottom: 30px;
        text-align: left; /* Alinear a la izquierda para mejor lectura */
    }
    
    .header-title {
        font-size: 32px; /* Título más pequeño */
        margin-bottom: 20px;
    }
    
    .header-right {
        text-align: left; /* Texto descriptivo a la izquierda */
        max-width: 100%;
    }
    
    .header-desc {
        margin-bottom: 20px;
    }

    /* 3. Acordeón Vertical (Stack) */
    .projects-accordion {
        flex-direction: column; /* Apilar pestañas una sobre otra */
        height: auto; /* Altura automática según contenido */
        min-height: 500px; /* Altura mínima para que no colapse */
    }
    
    /* Pestaña Individual (Barra Horizontal en móvil) */
    .project-tab { 
        width: 100%;
        height: 60px; /* Altura de la barra cerrada */
        flex: none; /* Quitar flex-grow del escritorio */
        border-right: none; 
        border-bottom: 1px solid rgba(255,255,255,0.2); /* Línea divisoria */
        transition: height 0.4s ease; /* Animación suave de altura */
    }
    
    /* Pestaña Activa (Expandida) */
    .project-tab.active { 
        height: 350px; /* Altura suficiente para ver la foto */
        flex: none; /* Asegurar que no intente crecer lateralmente */
    }
    
    /* 4. Etiqueta (Barra de Título) */
    .tab-label { 
        width: 100%; 
        height: 100%; /* Llena el contenedor (60px cuando cerrado) */
        justify-content: space-between; /* Texto a la izquierda, icono (si hubiera) a la derecha */
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .tab-label span {
        writing-mode: horizontal-tb; /* Texto horizontal */
        transform: none;
        font-size: 16px; /* Letra legible */
        letter-spacing: 1px;
    }
    
    /* Etiqueta Activa (Barra superior más delgada o diferente) */
    .project-tab.active .tab-label {
        height: 50px; /* Se queda como barra de título arriba */
        width: 100%;
        background-color: #fff; /* Fondo blanco para resaltar */
        color: #1a2b40; /* Texto azul */
        justify-content: flex-start; /* Alinear título al inicio */
        backdrop-filter: none; /* Quitar glass en móvil por rendimiento */
    }
    
    /* 5. Contenido (Foto) */
    .tab-content {
        top: 50px; /* Empieza debajo de la barra de título activa */
        height: calc(100% - 50px); /* Resto de la altura */
    }
    
    /* Info del Proyecto (Sobre la foto) */
    .project-info {
        left: 20px; 
        bottom: 20px;
        opacity: 1; /* Siempre visible si está activo */
        transform: none;
    }
    
    .project-title { font-size: 20px; }
    
    /* Footer Descripción */
    .projects-footer-desc {
        padding: 0 20px;
        margin-top: 30px;
    }
}

/*Estilos testimoniales*/

/* --- CONTENEDOR PRINCIPAL --- */
.testimonial-section-container {
    width: 100%;
    /* Quitamos height fijo, dejamos que el contenido mande */
    position: relative;
    padding: 20px 0; /* Un poco de aire general */
}

.testimonial-swiper {
    width: 100%;
    /* ESPACIO PARA LOS PUNTOS ABAJO */
    padding-bottom: 60px !important; 
    overflow: hidden;
}

/* --- TARJETA BASE --- */
.testimonial-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 85vh; /* Altura fija para las tarjetas */
}

/* Imagen de fondo */
.card-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.testimonial-card:hover .card-bg {
    transform: scale(1.1);
}

/* --- ESTADO 1: DEFAULT (BOTÓN GLASS) --- */
.card-front {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.05); 
    transition: opacity 0.4s ease;
    z-index: 2;
}

.testimonial-card:hover .card-front {
    opacity: 0;
}

.glass-btn-wrapper {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .glass-btn-wrapper {
    transform: scale(0.9);
}

.glass-btn-text {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Sombra para leer mejor sobre fotos claras */
}


/* --- ESTADO 2: HOVER (INFORMACIÓN) --- */
.card-back {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(26, 43, 64, 0.95); /* Azul oscuro sólido */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.testimonial-card:hover .card-back {
    opacity: 1;
}

.testimonial-content {
    color: #fff;
    max-width: 450px;
    transform: translateY(20px); 
    transition: transform 0.4s ease;
}
.testimonial-card:hover .testimonial-content {
    transform: translateY(0);
}

/* Textos */
.author-name {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.author-role, .author-loc {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    opacity: 0.8;
    line-height: 1.4;
    font-weight: 300;
}

.project-name {
    color: #fff;
    font-family: 'DM Serif Text', serif;
    font-size: 26px;
    margin: 20px 0 15px 0;
    line-height: 1.2;
}

.separator-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto 20px auto;
}

.quote-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.9;
}

.hover-icon {
    margin-top: 25px;
    font-size: 12px;
    opacity: 0.5;
    transform: rotate(90deg);
}


/* --- PAGINACIÓN (DOTS AFUERA) --- */
.testimonial-pagination {
    position: absolute;
    bottom: 10px !important; /* Pegado al fondo del padding */
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    width: 100%;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc; /* Gris inactivo (ya que el fondo es blanco) */
    opacity: 1;
    margin: 0 8px !important;
    transition: all 0.3s;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: #1a2b40; /* Azul oscuro activo */
    transform: scale(1.2);
}

/*Estilos banner principal - Por que curaduria*/

/* --- CONTENEDOR PRINCIPAL --- */
.internal-hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

/* SWIPER */
.internal-hero-swiper {
    width: 100%; height: 100%;
    position: absolute; top: 0; left: 0; z-index: 1;
}
.internal-hero-swiper .swiper-slide {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
}

/* OVERLAY (Degradado Oscuro Abajo) */
.internal-hero-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 75%, rgba(0,0,0,0.95) 100%);
    z-index: 2; pointer-events: none;
}

/* --- WRAPPER DE CONTENIDO (GRID 2 COLUMNAS) --- */
.internal-hero-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between; /* Separa Izq y Der */
    align-items: flex-end; /* Alinea al fondo */
    padding: 0 5% 100px 5%; /* Padding lateral y espacio inferior */
    box-sizing: border-box;
    pointer-events: none; /* Dejar pasar clicks al fondo si es necesario */
}

/* COLUMNA IZQUIERDA */
.hero-col-left {
    width: 55%;
    color: #fff;
    pointer-events: auto;
}

.hero-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.8;
}

.hero-title {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 550px;
    opacity: 0.9;
}


/* COLUMNA DERECHA */
.hero-col-right {
    width: 35%;
    color: #fff;
    pointer-events: auto;
    padding-bottom: 10px; /* Pequeño ajuste visual */
}

.hero-desc-right {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-link {
    display: inline-block;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}
.hero-link:hover { opacity: 0.7; }


/* --- FLECHA FINA (Minimalista) --- */
.internal-scroll-arrow {
    position: absolute;
    bottom: 30px; /* Pegada al fondo */
    left: 50%;
    transform: translateX(-50%);
    width: 20px; /* Ancho fino */
    height: 50px; /* Alta */
    color: #2ea3f2; /* Azul Cyan */
    z-index: 4;
    cursor: pointer;
    animation: bounceFine 2s infinite;
}

/* Animación de rebote suave */
@keyframes bounceFine {
  0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
  40% {transform: translateX(-50%) translateY(-10px);}
  60% {transform: translateX(-50%) translateY(-5px);}
}

/* --PROYECTOS SUBPÁGINA-- */
/* grid de proyectos */
.grupo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.item {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 50vh;
}

.item.grande {
    min-height: 50vh;
}

.overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: #fff;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}
.banner-principal{
    height:100vh;
    display:flex;align-items:end;
    padding:10% 5%;
    background-size:cover;
}
.banner-principal .banner-principal-content{
    width:50%;
    z-index:1;
}
.enfoque-section{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:50px;
}
.enfoque-section .enfoque-wrapper{
    display:flex;
    width:90%;
}
.enfoque-section .enfoque-wrapper >div{
    width:50%;
}
.enfoque-section .enfoque-col.derecha{
    text-align:right;
}
.enfoque-section .enfoque-full{
    width:100%;
    height:50vh;
    background-size:cover;
    background-position: center;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}
.enfoque-full .enfoque-frase{
    z-index:5;
    width:30%;
    text-align:center;
}
@media screen and (max-width:900px){
    .enfoque-full .enfoque-frase{
    width:80%;
    }
}

.proyectosSwiper *{
    z-index:5!important;
    position:relative;
}
.proyectosSwiper .item{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:40px 60px;
}
.proyectosSwiper .proyecto-info{
    width:30%;
    display:flex;
    flex-direction:column;
    gap:20px;
}

@media (min-width: 768px) {
    .grupo-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .item.grande {
        grid-column: span 2;
    }

}


/* --- RESPONSIVE --- */
@media screen and (max-width: 1024px) {
    .internal-hero-wrapper {
        flex-direction: column; /* Apilar en vertical */
        justify-content: flex-end;
        padding-bottom: 80px;
    }
    
    .hero-col-left, .hero-col-right {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-title { font-size: 36px; }
    .hero-col-right { padding-bottom: 40px; } /* Espacio para la flecha */
}

/*Marcas grid*/
@media screen and (min-width:1000px){
    .titulo-galeria-proyectos-row{
    padding:0% 20%!important;
}
}
.titulo-galeria-proyectos-row h2{
    text-align:center;
}
/* galería de proyectos móvil */
@media screen and (max-width:1000px){
.banner-principal .banner-principal-content{
    width:100%;
    margin-bottom:80px;
}
.enfoque-section .enfoque-wrapper{
    flex-direction:column;
    width:100%;
    padding:0 20px;
    gap:10px;
}
.enfoque-section .enfoque-wrapper > div{
    width:100%;
}
.proyectosSwiper .proyecto-info{
    width:100%!important;
}
}

/* --- CONTENEDOR GENERAL --- */
.brands-module-wrapper {
    width: 100%;
    padding: 50px 0;
    font-family: 'Montserrat', sans-serif;
}

/* --- NIVEL 1: TABS PRINCIPALES (Texto azul y gris) --- */
.main-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee; /* Línea base sutil */
    padding-bottom: 10px;
}

.main-tab {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ccc; /* Gris inactivo */
    cursor: pointer;
    padding-bottom: 10px;
    position: relative;
    transition: 0.3s;
}

.main-tab.active {
    color: #1a2b40; /* Azul oscuro activo */
}

/* Línea azul debajo del activo */
.main-tab.active::after {
    content: '';
    position: absolute;
    bottom: -12px; /* Ajuste para cubrir la línea gris */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1a2b40;
}

/* --- NIVEL 2: BARRA AZUL DE SUB-FILTROS --- */
.sub-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Para móviles */
    gap: 0; /* Sin espacio porque son bordes pegados */
    background-color: #fff; /* Fondo blanco inicial */
    margin-bottom: 50px;
    border: 1px solid #1a2b40; /* Borde azul general */
}

.sub-btn {
    background: #fff;
    color: #1a2b40;
    border: none;
    border-right: 1px solid #1a2b40;
    padding: 15px 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1; /* Todos del mismo ancho */
}

.sub-btn:last-child {
    border-right: none;
}

/* ESTADO ACTIVO: AZUL */
.sub-btn.active, .sub-btn:hover {
    background-color: #1a2b40; /* Azul fondo */
    color: #fff; /* Texto blanco */
}


/* --- GRID DE MARCAS (3 COLUMNAS) --- */
.brands-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    gap: 20px; /* Espacio entre cuadros */
    margin: 0 auto;
    padding: 0 20px;
}

.brand-grid-item {
    aspect-ratio: 1 / 1; /* Cuadrado perfecto */
    position: relative;
    overflow: hidden;
    opacity: 0; /* Para animación de entrada JS */
    transition: opacity 0.5s ease;
}

.brand-item-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* --- HOVER EFFECT (Overlay + Texto) --- */
.brand-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3); /* Oscurecimiento base */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.brand-name {
    color: #fff;
    font-family: 'DM Serif Text', serif; /* Fuente serif para elegancia */
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.brand-cta {
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0; /* Oculto inicialmente */
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Acciones Hover */
.brand-grid-item:hover .brand-overlay {
    background: rgba(0,0,0,0.6); /* Más oscuro al pasar */
}
.brand-grid-item:hover .brand-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Enlace completo */
.brand-full-link {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 5;
}


/* --- BOTÓN MOSTRAR MÁS --- */
.brands-load-more-container {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    background: transparent;
    color: #1a2b40;
    border: none;
    border-bottom: 1px solid #1a2b40;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.load-more-btn:hover {
    color: #42A6FF;
    border-color: #42A6FF;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .brands-grid-container {
        grid-template-columns: repeat(1, 1fr); /* 1 columna en móvil */
    }
    .sub-filter-bar {
        flex-direction: column; /* Botones apilados en móvil */
    }
    .sub-btn {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .main-filter-tabs {
        gap: 20px;
    }
    .main-tab {
        font-size: 11px;
    }
}

/*Estilos de marcas exclusivas*/

/* --- CONTENEDOR PRINCIPAL --- */
.exclusive-brands-wrapper {
    width: 100%;
    padding: 60px 0;
    background-color: #0d1b2a; /* Fondo oscuro por si acaso */
}

/* --- GRID DE 3 COLUMNAS --- */
.exclusive-grid {
    display: grid;
    /* 3 columnas iguales */
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; /* Espacio entre cuadros */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- ITEM INDIVIDUAL --- */
.exclusive-item {
    position: relative;
    height: 350px; /* Altura estándar de las tarjetas */
    overflow: hidden;
    /* border-radius: 4px; Opcional */
    transition: transform 0.3s ease;
    cursor: pointer;
}

.exclusive-item:hover {
    transform: translateY(-5px); /* Pequeña elevación al hover */
    z-index: 2;
}

/* --- FONDO --- */
.ex-bg {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.exclusive-item:hover .ex-bg {
    transform: scale(1.1); /* Zoom al fondo */
}

/* --- OVERLAY OSCURO --- */
.ex-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3); /* Oscurecimiento base */
    transition: background 0.3s ease;
}
.exclusive-item:hover .ex-overlay {
    background: rgba(0,0,0,0.5); /* Más oscuro al hover */
}

/* --- LOGO --- */
.ex-logo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    max-width: 180px; /* Tamaño máximo del logo */
    width: 80%;
    height: auto;
    z-index: 10;
    filter: brightness(0) invert(1); /* Vuelve blancos los logos negros (opcional) */
    transition: transform 0.3s ease;
}
.exclusive-item:hover .ex-logo {
    transform: translate(-50%, -50%) scale(1.05);
}

/* --- ENLACE COMPLETO --- */
.ex-link {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 20;
}


/* --- LA MAGIA: EL ÚLTIMO ELEMENTO (NÚMERO 7) --- */
/* Le decimos: Si eres el 7mo hijo, ocupa desde la linea 1 hasta la final (-1) */
.exclusive-item:nth-child(7) {
    grid-column: 1 / -1; 
    height: 450px; /* Opcional: hacerlo un poco más alto para mayor impacto */
}

/* También funciona con :last-child si quieres que SIEMPRE el último (sea 7, 4, 10) sea ancho */
/*
.exclusive-item:last-child {
    grid-column: 1 / -1;
}
*/


/* --- RESPONSIVE --- */
@media screen and (max-width: 1024px) {
    .exclusive-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablet */
    }
    /* En tablet (2 col), el 7mo elemento (impar) quedaría solo, así que está bien que sea full width */
}

@media screen and (max-width: 768px) {
    .exclusive-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
    }
    /* En móvil todos son full width naturalmente */
    .exclusive-item:nth-child(7) {
        height: 350px; /* Regresamos a altura normal */
    }
}

/* Ventajas de marcas exclusivas*/

/* --- CONTENEDOR PRINCIPAL --- */
.advantages-module-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Altura generosa */
    min-height: 600px;
    background-color: #000;
    overflow: hidden;
}

/* --- CAPA FIJA (H2) --- */
.advantages-static-header {
    position: absolute;
    top: 35%; /* Posicionado visualmente encima del título cambiante */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Encima del slider */
    width: 100%;
    text-align: center;
    pointer-events: none; /* Dejar pasar clicks */
}

.advantages-static-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px!important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
    padding: 0 20px;
}

/* --- SWIPER --- */
.advantages-swiper {
    width: 100%;
    height: 100%;
}

.advantages-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; /* Centrado vertical */
    justify-content: center; /* Centrado horizontal */
}

/* Fondo */
.adv-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease; /* Efecto zoom lento */
}
.swiper-slide-active .adv-bg {
    transform: scale(1.05);
}

/* Overlay (Degradado para que el texto blanco resalte) */
.adv-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); /* Oscurecimiento general */
    z-index: 1;
}

/* --- CONTENIDO CAMBIANTE --- */
.adv-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: #fff;
    margin-top: 40px; /* Para separarse del H2 fijo */
}

.adv-title {
    font-family: 'DM Serif Text', serif;
    color: #fff;
    font-style: italic;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.adv-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto; /* Centrado */
    opacity: 0.9;
}

/* --- PAGINACIÓN (DOTS) --- */
.advantages-pagination {
    position: absolute;
    bottom: 40px !important;
    left: 0 !important;       /* Pegado a la izquierda */
    width: 100% !important;   /* Ocupa todo el ancho disponible */
    text-align: center !important; /* Centra los puntos internamente */
    display: flex !important;
    justify-content: center !important; /* Refuerzo Flexbox para centrar */
    z-index: 10;
}

.advantages-pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    margin: 0 6px !important;
    transition: 0.3s;
}

.advantages-pagination .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.3);
}

/* --- RESPONSIVE --- */
@media screen and (max-width: 768px) {
    .adv-title { font-size: 32px; }
    .advantages-static-header { top: 25%; } /* Subir un poco en móvil */
    .adv-content { margin-top: 60px; }
}

/*Estilos showroom*/

/* --- CONTENEDOR PRINCIPAL --- */
.showroom-gallery-wrapper {
    width: 100%;
    position: relative;
    padding-top: 80px;
    padding-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    color: #1a2b40;
    overflow: hidden;
}

/* =========================================
   ESTILOS HEADER (TEXTO ESCALONADO)
   ========================================= */
.showroom-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alineamos arriba para poder bajar el derecho manualmente */
    margin-bottom: 60px;
    padding: 0 5%; /* Margen lateral SOLO para el texto */
    width: 100%;
    box-sizing: border-box;
}

/* Izquierda */
.sh-left {
    max-width: 85%;
}

.sh-subtitle-small {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 15px;
}

.sh-title {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 56px; 
    line-height: 1.1;
    color: #1a2b40;
    margin: 0;
}

/* Derecha (Bajada forzada) */
.sh-right {
    max-width: 600px;
    text-align: right;
    
    /* TRUCO: Bajar el bloque derecho para que empiece donde termina el título izquierdo */
    margin-top: 130px; 
}

.sh-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.sh-desc strong {
    color: #1a2b40;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

.sh-link {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a2b40;
    text-decoration: none;
    border-bottom: 2px solid #1a2b40;
    padding-bottom: 4px;
    font-weight: 700;
    transition: 0.3s;
}
.sh-link:hover { color: #42A6FF; border-color: #42A6FF; }


/* =========================================
   ESTILOS CARRUSEL (TU CÓDIGO RESTAURADO)
   ========================================= */

/* SLIDER - SIN PADDING EXTRA */
.showroom-swiper {
    width: 100%;
    overflow: hidden;
    padding: 0 !important; /* <--- IMPORTANTE: Sin padding para que llegue a los bordes */
}

.showroom-slide {
    height: 80vh;
    overflow: hidden;
}

.showroom-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.showroom-slide:hover .showroom-img {
    transform: scale(1.05);
}

/* CONTROLES */
.showroom-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding: 0 20px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.showroom-prev, .showroom-next {
    width: 40px; height: 20px;
    cursor: pointer;
    color: #1a2b40;
    transition: color 0.3s, transform 0.3s;
    display: flex; align-items: center;
}

.showroom-prev:hover { transform: translateX(-5px); color: #2ea3f2; }
.showroom-next:hover { transform: translateX(5px); color: #2ea3f2; }

.showroom-prev svg, .showroom-next svg {
    width: 100%; height: 100%; stroke: currentColor;
}

/* PAGINACIÓN */
.showroom-pagination {
    position: relative !important;
    width: auto !important;
    text-align: center;
    display: flex; gap: 10px;
    bottom: auto !important; left: auto !important;
    transform: none !important;
}

.showroom-pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: #ccc; opacity: 1;
    margin: 0 !important; transition: all 0.3s;
}

.showroom-pagination .swiper-pagination-bullet-active {
    background: #1a2b40; transform: scale(1.3);
}


/* --- RESPONSIVE --- */
@media screen and (max-width: 1024px) {
    .showroom-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .sh-right {
        text-align: left;
        max-width: 100%;
        margin-top: 0; /* En móvil quitamos el margen para que se apile normal */
    }
    
    .sh-title { font-size: 42px; }
}


:root{
    --blue: #42A6FF; 
  --dark-blue:#1f2837;
  --dark-gradient:#1f2837;
  --title:#181E28;
  --text:#000000;
  --fs-xs: clamp(0.8rem, 1vw, 1rem);
  --fs-sm: clamp(1rem, 1.2vw, 1.3rem);
  --fs-base: clamp(1rem, 1vw, 1.5rem);
  --fs-lg: clamp(1.4rem, 2vw, 2.2rem);
  --fs-xl: clamp(2rem, 3vw, 3.4rem);
  --fs-xxl: clamp(3rem, 5vw, 5rem);
}

.ff-dm{
    font-family: 'DM Serif Text',Georgia,"Times New Roman",serif!important;
}
.ff-mon{
    font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif!important;
}
.white{
    color:white!important;
}
.italic{
    font-style: italic;
}
.dark-blue{
    color:var(--dark-blue)!important;
}
.title{
    color:var(--title)!important;
}
.text{
    color:var(--text)!important;
}

.shopd-gradient:after{
    background:linear-gradient(0deg,var(--dark-gradient) 2%,transparent);
    height:100%;
    width:100%;
    content:"";
    position:absolute;
    left:0px;
    top:0px;
    z-index:0;
}

.proyecto-tipo-title{
  font-size:var(--fs-lg);
  position:absolute;
  top:10%;
  left:10%;
}
.shopd-font-xs *,
.fa-xs *,
.fa-xs{
    font-size:var(--fs-xs)!important;
  line-height:var(--fs-xs)!important;
}
.shopd-font-sm *,
.fs-sm *,
.fs-sm{
    font-size:var(--fs-sm)!important;
  line-height:var(--fs-sm)!important;
}
.shopd-font-base *,
.fs-base *,
.fs-base{
    font-size:var(--fs-base)!important;
  line-height:var(--fs-base)!important;
}
.shopd-font-lg *,
.fs-lg *,
.fs-lg{
    font-size:var(--fs-lg)!important;
  line-height:var(--fs-lg)!important;
}
.shopd-font-xl *,
.fs-xl *,
.fs-xl{
    font-size:var(--fs-xl)!important;
  line-height:var(--fs-xl)!important;
}
.shopd-font-xxl *,
.fs-xxl *,
.fa-xxl{
    font-size:var(--fs-xxl)!important;
  line-height:var(--fs-xxl)!important;
}
h1 {
  font-size: clamp(2rem, 3vw, 6rem);
}
h2 {
  font-size: clamp(1.5rem, 2.5vw, 5rem)!important;
  line-height: clamp(1.5rem, 2.5vw, 5rem)!important;
}

.vertical-center {
    display:flex;
    align-items:center;
}
.vertical-bottom{
    display:flex;
    align-items:end;
  padding-bottom:100px;
}
.vertical-bottom .et_pb_row,
.vertical-center .et_pb_row{
    margin-top:0px;
    margin-bottom:0px;
}
.arrow-row{
    position:absolute;
    bottom:0px;
    left:50%;
    transform:translateX(-50%);
}
.shopd-btn, .shopd-btn:hover{
    border:0px!important;
    border-bottom:1px solid white!important;
  font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
  font-size:16px;
    padding:2px 10px;
    text-transform:uppercase;
    transition: all 300ms ease 0ms;
}
.shopd-btn.blue{
    color:var(--dark-blue);
    border-color:var(--dark-blue)!important;
}
.shopd-btn.white{
    color:white;
    border-color:white!important;
}
.shopd-btn.dark-blue{
    color:var(--dark-blue);
    border-color:var(--dark-blue)!important;
}
.shopd-linedown:after{
    height:100%;
    width:1px;
    content:"";
    position:absolute;
    top:0px;
    right:0px;
    background:white;
}

.shopd-btn:hover{
    background-color: rgba(0,0,0,.05);
}

/* TIPOS DE PROYECTOS - GRID */
.proyectos-tipos-wrapper {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.proyecto-tipo-item{
    position:relative;
}
.proyecto-tipo-thumb:after{
    background:black;
  opacity:0.3;
    content:"";
    position:absolute;
    height:100%;
    width:100%;
    top:0px;
    left:0px;
    z-index:-10;
}
.proyecto-tipo-thumb {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    /* border-radius: 12px; */
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #ddd;
    z-index:2;
}

.proyecto-tipo-title {
    margin: 0 0 10px;
    font-size: 2em;
    color:white;
    font-style:italic;
    /* font-weight: 700; */
    font-family: 'DM Serif Text',Georgia,"Times New Roman",serif;
}

.proyecto-tipo-btn{
    color: #ffffff!important;
    border-radius: 0px;
    font-size: 16px;
    font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif!important;
    width:fit-content;
    text-transform:uppercase;
}
a.proyecto-tipo-btn.shopd-btn {
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    /* background:red; */
}
a.proyecto-tipo-btn.shopd-btn:before{
    background:transparent;
    height:100%;
    width:100%;
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    padding:20px 30px;
    backdrop-filter: blur(8px);
    z-index:-10;
}
a.proyecto-tipo-btn.shopd-btn:after{
    width:100%;
    height:1px;
    content:"";
    background:white;
    position:absolute;
    left:0px;
    bottom:0px;
}
/*BLOG SWIPER*/
.blog-swiper .swiper-wrapper{
    height:100%;
}
.blog-swiper .swiper-slide{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:start;
    height:auto;
    gap:5px;
}
.blog-swiper .blog-thumb{
    height:200px;
    margin-bottom:16px;
}
.blog-swiper .blog-thumb img{
    height:100%;
    object-fit:cover;
}
.blog-swiper .blog-title {
    font-family: 'DM Serif Text',Georgia,"Times New Roman",serif;
    color:var(--title);
}
.blog-swiper .blog-excerpt{
    color:var(--text);
    font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
}

.blog-section .swiper-slide{
    height:60vh;
    background-size:cover;
    padding:6% 0 4% 0;
    align-items:center;
}
.blog-section .swiper-slide:after,
.dark-overlay:after{
    content:"";
    background:var(--dark-gradient);
    height:100%;
    width:100%;
    position:absolute;
    top:0px;
    left:0px;
    opacity:0.5;
    z-index:3;
}
.blog-section .swiper-slide .blog-content{
    width:80%;
    text-align:center;
 }
.blog-section .swiper-slide .blog-content,
.blog-section .swiper-slide a{
    z-index:5;
}
.blog-section .swiper-slide .blog-content h3{
    margin-bottom:10px;
}
.blog-section .swiper .swiper-slide h3,
.blog-section .swiper p{
    color:white!important;
}
.blog-section .blog-arrows,
.proyectos-arrows{
    display:flex;
    height:10vh;
    align-items:center;
    justify-content:center;
}
.blog-section .blog-arrows > div,
.proyectos-arrows > div{
    position:relative;
    top:auto;
}
.blog-arrows .swiper-pagination,
.proyectos-arrows .swiper-pagination{
    width:50%;
}
.blog-section .blog-arrows .swiper-button-next:after,
.proyectos-arrows .swiper-button-next:after{
    font-family: 'ETMODULES';
    content:"\24";
    font-size:60px;
    color:var(--dark-blue);
}
.blog-section .blog-arrows .swiper-button-prev:after,
.proyectos-arrows .swiper-button-prev:after{
    font-family: 'ETMODULES';
    content:"\23";
    color:var(--dark-blue);
}
.blog-section .blog-arrows .swiper-pagination-bullet,
.proyectos-arrows .swiper-pagination-bullet{
    height:10px;
    width:10px;
    margin:0px 8px;
    background:var(--dark-blue);
}


/* --- RESPONSIVE --- */
@media screen and (max-width: 768px) {
    .showroom-slide {
        height: 350px; /* Menor altura en móvil */
    }
    .showroom-controls {
        max-width: 100%; /* Ocupar todo el ancho en móvil */
        padding: 0 10px;
    }
}

/* --- CONTENEDOR GLOBAL --- */
.spotlight-wrapper {
    width: 100%;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden; /* Seguridad para evitar scroll horizontal de página */
}

/* --- 1. HERO (BANNER PRINCIPAL) --- */
.spotlight-hero {
    position: relative;
    width: 100%;
    height: 80vh; 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.spotlight-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.spotlight-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 8%;
    max-width: 700px;
    color: #fff;
}

.hero-cat-label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ccc;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-title {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-link {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    transition: 0.3s;
}
.hero-link:hover { color: #42A6FF; border-color: #42A6FF; }


/* --- 2. TOOLBAR (CORREGIDO) --- */
.spotlight-toolbar {
    background-color: #fff;
    width: 100%;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    position: sticky; top: 0; z-index: 50;
}

.toolbar-inner {
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* LISTA DE CATEGORÍAS (Scroll seguro) */
.categories-scroll-wrapper {
    flex: 1; /* Ocupa el espacio disponible */
    overflow: hidden; /* Oculta lo que se salga del contenedor padre */
    min-width: 0; /* Truco flexbox para permitir que el hijo se encoja */
}

.categories-list {
    display: flex;
    gap: 10px;
    overflow-x: auto; /* Scroll horizontal interno */
    padding-bottom: 5px; 
    
    /* Scroll suave en iOS */
    -webkit-overflow-scrolling: touch;
    
    /* Ocultar scrollbar */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}
.categories-list::-webkit-scrollbar { display: none; }

.cat-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 25px; /* Botones más cómodos */
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; /* Evita que el texto se rompa */
    flex-shrink: 0; /* Evita que el botón se aplaste */
}

.cat-btn:hover, .cat-btn.active {
    background-color: #1a2b40;
    border-color: #1a2b40;
    color: #fff;
}

/* BUSCADOR (AMPLIADO) */
.spotlight-search {
    position: relative;
    /* Ajuste Desktop: Más ancho para que se vea bien */
    width: 320px; 
    flex-shrink: 0; /* No permitas que se encoja */
}

.spotlight-search input {
    width: 100%;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 12px 40px 12px 20px; /* Padding más cómodo */
    font-size: 13px;
    outline: none;
    box-sizing: border-box; /* Asegura que el padding no sume al ancho */
    transition: all 0.3s;
}
.spotlight-search input:focus {
    background: #fff;
    border-color: #1a2b40;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.search-icon {
    position: absolute; right: 15px; top: 50%; transform: translateY(-50%);
    width: 16px; color: #999;
}


/* --- 3. GRID DE ARTÍCULOS --- */
.spotlight-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
    margin: 60px auto;
    padding: 0 5%;
}

.article-card {
    display: flex; 
    flex-direction: column;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-image-wrap {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    position: relative;
    display: block;
}

.card-bg {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.5s ease;
}
.article-card:hover .card-bg { transform: scale(1.05); }

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.card-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a2b40;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.card-title {
    font-family: 'DM Serif Text', serif;
    font-size: 28px;
    font-style: italic;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 15px;
    margin-top: 0;
    color: #1a2b40;
}

.card-title a { color: #1a2b40; text-decoration: none; }
.card-title a:hover { color: #42A6FF; }

.card-excerpt {
    font-size: 13px; color: #666; line-height: 1.6;
    margin-bottom: 20px; flex-grow: 1;
}

.card-read-more {
    font-size: 11px; font-weight: 700; color: #1a2b40;
    text-decoration: none; text-transform: uppercase;
}
.card-read-more:hover { text-decoration: underline; color: #42A6FF; }


/* --- BOTÓN CARGAR MÁS --- */
.spotlight-load-more { text-align: center; margin-bottom: 80px; }
#load-more-articles {
    background: transparent; border: 1px solid #1a2b40;
    color: #1a2b40; padding: 12px 30px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    cursor: pointer; transition: 0.3s;
}
#load-more-articles:hover { background: #1a2b40; color: #fff; }


/* --- RESPONSIVE (MÓVIL) --- */
@media screen and (max-width: 1024px) {
    /* Hero */
    .spotlight-hero { height: 400px; }
    .hero-title { font-size: 32px; }
    .spotlight-hero-content { padding-left: 20px; padding-right: 20px; }

    /* TOOLBAR MÓVIL CORREGIDO */
    .spotlight-toolbar { padding: 20px 0; }
    
    .toolbar-inner { 
        flex-direction: column; /* Apilar elementos */
        gap: 20px; 
        align-items: stretch; /* Ancho completo */
        padding: 0 20px;
    }
    
    /* Buscador Ancho Completo en Móvil */
    .spotlight-search { width: 100%; }
    
    /* Scroll horizontal de categorías contenido al ancho de pantalla */
    .categories-scroll-wrapper {
        width: 100%;
        max-width: 100vw; /* Asegura que no rompa la pantalla */
        margin-left: -20px; /* Romper el padding del padre para sangrado completo */
        margin-right: -20px;
        padding-left: 20px; /* Restaurar el padding visual */
        padding-right: 20px;
    }

    /* Grid */
    .spotlight-grid-container {
        grid-template-columns: 1fr; /* 1 Columna */
        gap: 40px;
        margin: 40px auto;
        padding: 0 20px;
    }
}

/* PROYECTO INDIVIDUAL */
.proyecto-banner-principal{
    flex-direction:column;
    justify-content:end;
}

.proyecto-info-section .right-column {
    display:flex;
    flex-wrap:wrap;
    gap:5%;
}
.proyecto-info-section strong{
    font-family:'DM Serif Text',Georgia,"Times New Roman",serif!important;
    font-style:italic;
}
.proyecto-info-section .right-column .solucion{
    width:100%;
}
.proyecto-info-section .right-column .logistica{
    width:65%;
}
.proyecto-info-section .right-column .ejecucion{
    width:30%;
}

.acf-galeria-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; /* ajusta a tu gusto */
}

.acf-galeria-wrapper .acf-galeria-item{
    width:100%;
    height:50vh!important;
}
.acf-galeria-wrapper .acf-galeria-item img{
  width: 100%;
    height:100%;
  display: block;
  object-fit: cover;
}

/* Cada tercer elemento ocupa las dos columnas */
.acf-galeria-wrapper .acf-galeria-item:nth-child(3n) {
  grid-column: span 2;
}


/* --- RESPONSIVE --- */
@media screen and (max-width: 1024px) {
    .spotlight-grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas Tablet */
    }
}

@media screen and (max-width: 768px) {
    .hero-title { font-size: 36px; }
    .spotlight-hero { height: 60vh; }
    
    .toolbar-inner { flex-direction: column; align-items: flex-start; }
    .spotlight-search { width: 100%; }
    
    .spotlight-grid-container {
        grid-template-columns: 1fr; /* 1 columna Móvil */
    }
}

/* --- CONTENEDOR PRINCIPAL --- */
.experience-video-wrapper {
    position: relative;
    width: 100%;
    height: 115vh;
    min-height: 500px;
    background-color: #000;
    overflow: hidden;
}

/* VIDEO */
.hero-video {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    object-fit: cover;
}

/* --- ESTADO INICIAL (OVERLAY + BOTÓN GRANDE) --- */
.video-overlay-initial {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); /* Oscuro inicial */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
    z-index: 10;
}

.video-content {
    text-align: center; color: #fff;
}

/* Botón Grande Central */
.custom-play-btn {
    width: 90px; height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    margin: 0 auto 15px auto;
}
.custom-play-btn:hover { background: rgba(255,255,255,0.3); transform: scale(1.1); }
.custom-play-btn svg { width: 40px; height: 40px; fill: #fff; margin-left: 5px; }

.play-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; font-weight: 600;
}


/* --- LOGICA DE ACTIVACIÓN --- */
/* Cuando se añade la clase .is-active via JS */
.experience-video-wrapper.is-active .video-overlay-initial {
    opacity: 0;
    pointer-events: none;
}

.experience-video-wrapper.is-active .video-controls-bar {
    opacity: 1;
    transform: translateY(0);
}


/* --- BARRA DE CONTROLES (Bottom) --- */
.video-controls-bar {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    height: 70px;
    
    /* Efecto Glass */
    background: rgba(10, 15, 25, 0.85); /* Azul muy oscuro casi negro */
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    
    display: flex;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
    gap: 20px;
    z-index: 20;
    
    /* Oculto inicialmente */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s; /* Delay pequeño para que entre elegante */
}

/* Botones de la barra */
.ctrl-btn {
    background: none; border: none;
    color: #fff; cursor: pointer;
    padding: 10px;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.3s;
}
.ctrl-btn:hover { color: #142963; /* Dorado al hover */ }
.ctrl-btn svg { width: 24px; height: 24px; }

/* Barra de Progreso */
.ctrl-progress-track {
    flex-grow: 1; /* Ocupa el espacio disponible */
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.ctrl-progress-fill {
    height: 100%;
    width: 0%;
    background: #142963; /* Dorado de progreso */
    transition: width 0.1s linear;
}

/* Grupo Derecha (Volumen + Fullscreen) */
.ctrl-group-right {
    display: flex; align-items: center; gap: 15px;
}

/* Slider de Volumen */
.volume-container {
    display: flex; align-items: center; gap: 5px;
}
#ctrl-volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
}
#ctrl-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px; height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}


/* --- RESPONSIVE --- */
@media screen and (max-width: 768px) {
    .video-controls-bar { padding: 0 15px; height: 60px; }
    .volume-container input { width: 50px; } /* Slider más chico */
    .play-label { display: none; } /* Solo icono en móvil */
}

/*Estilos procesos de curaduria - Experiencia*/

/* --- CONTENEDOR PRINCIPAL (FULL SCREEN) --- */
.process-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* Altura forzada al 100% de la ventana */
    min-height: 700px; /* Evita que se corte en pantallas muy chatas */
    background-color: #000;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

/* --- 1. CAPA ESTÁTICA (HEADER) --- */
.process-static-header {
    position: absolute;
    top: 80px; /* Separación superior */
    left: 10%; /* ALINEACIÓN GLOBAL IZQUIERDA */
    z-index: 10;
    max-width: 800px;
    pointer-events: none; 
}

.static-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    display: block;
    margin-bottom: 20px;
}

.static-main-title {
    font-family: 'DM Serif Text', serif;
    color: #fff;
    font-style: italic;
    font-size: 52px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}


/* --- 2. SWIPER (FONDO) --- */
.process-swiper {
    width: 100%; height: 100%;
    position: absolute; top: 0; left: 0; z-index: 1;
}

.process-slide {
    width: 100%; height: 100%; position: relative;
}

/* Imagen */
.process-bg {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 8s ease; 
}
.swiper-slide-active .process-bg { transform: scale(1.05); }

/* Overlay (Gradiente más fuerte a la izquierda) */
.process-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Gradiente horizontal para oscurecer la zona de texto */
    background: linear-gradient(90deg, rgba(15, 23, 33, 0.95) 0%, rgba(15, 23, 33, 0.7) 40%, rgba(15, 23, 33, 0) 100%);
    z-index: 2;
}


/* --- CONTENIDO DINÁMICO (AJUSTADO) --- */
.process-dynamic-content {
    position: absolute;
    bottom: 140px; /* Un poco más arriba para dar aire a las flechas */
    left: 10%; 
    z-index: 5;
    max-width: 500px;
    
    /* Flexbox Column para alineación perfecta */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.process-number {
    font-family: 'DM Serif Text', serif;
    font-size: 64px; /* Reducido de 90px a 64px para elegancia */
    color: #2ea3f2; /* Azul Cyan */
    line-height: 1; 
    display: block;
    margin-bottom: 15px; /* Más pegado al título (antes 25px) */
    
    /* AJUSTE ÓPTICO DE ALINEACIÓN */
    /* Las fuentes grandes suelen tener un espacio vacío a la izquierda. */
    /* Esto lo empuja un poquito atrás para que se alinee perfecto con el texto. */
    margin-left: -3px; 
}

.process-step-title {
    font-size: 11px; /* Un poco más fino */
    text-transform: uppercase;
    letter-spacing: 3px; /* Más espaciado entre letras */
    font-weight: 700;
    margin-bottom: 20px; /* Espacio antes de la descripción */
    color: #fff;
}

.process-desc {
    font-size: 15px;
    line-height: 1.8; /* Más altura de línea para mejor lectura */
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    max-width: 450px;
}


/* --- 3. CONTROLES (FLECHAS) --- */
.process-nav-container {
    position: absolute;
    bottom: 60px; /* Pegado al fondo */
    left: 10%; /* ALINEACIÓN GLOBAL IZQUIERDA */
    z-index: 20;
    display: flex;
    gap: 40px; /* Separación entre flechas */
}

.process-prev, .process-next {
    width: 50px;
    height: 20px;
    cursor: pointer;
    color: rgba(255,255,255,0.6); /* Color inicial sutil */
    transition: color 0.3s, transform 0.3s;
}

.process-prev:hover, .process-next:hover {
    color: #fff; /* Blanco al hover */
    transform: scale(1.1);
}

.process-prev svg, .process-next svg {
    width: 100%; height: 100%; stroke: currentColor;
}


/* --- RESPONSIVE --- */
@media screen and (max-width: 768px) {
    .process-static-header { top: 40px; left: 5%; width: 90%; }
    .static-main-title { font-size: 34px; }
    
    .process-dynamic-content { 
        bottom: 100px; 
        left: 5%; 
        width: 90%; 
    }
    .process-number { font-size: 70px; margin-bottom: 15px; }
    
    .process-nav-container { bottom: 40px; left: 5%; }
    
    /* Fondo más oscuro en móvil para leer */
    .process-overlay {
        background: linear-gradient(180deg, rgba(15,23,33,0.7) 0%, rgba(15,23,33,0.95) 70%);
    }
}

/*Estilos diferenciales - Experiencia*/

/* --- CONTENEDOR GLOBAL --- */
.diff-module-container {
    width: 100%;
    background-color: #fff;
    padding-top: 80px; /* Un poco más de aire arriba */
    padding-bottom: 0;
}

/* --- TÍTULO PRINCIPAL --- */
.diff-main-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.diff-main-title {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 48px; /* Un poco más grande para igualar referencia */
    color: #1a2b40;
    line-height: 1.1;
    margin: 0;
}


/* --- WRAPPER DE LAS COLUMNAS --- */
.diff-grid-wrapper {
    display: flex;
    width: 100%;
    height: 700px; /* Altura más generosa como en la referencia */
    background: #000;
}

/* --- ÍTEM INDIVIDUAL --- */
.diff-item {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.diff-item:last-child { border-right: none; }

/* IMAGEN DE FONDO */
.diff-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.8s ease;
}
.diff-item:hover .diff-bg {
    transform: scale(1.05);
}

/* OVERLAY */
.diff-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Oscuro sólido para que solo se vea texto inicialmente */
    background-color: rgba(13, 23, 33, 0.7); 
    transition: background-color 0.5s ease;
    z-index: 1;
}
.diff-item:hover .diff-overlay {
    background-color: rgba(13, 23, 33, 0.3); /* Se aclara al hover */
}

/* --- CONTENIDO INTERNO (CORRECCIÓN DESKTOP) --- */
.diff-content {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    
    /* CAMBIO CLAVE: Espacio entre elementos para empujar Título arriba y Texto abajo */
    justify-content: space-between; 
    
    padding: 100px 50px; /* Padding generoso arriba y abajo */
    box-sizing: border-box;
    text-align: center;
}

.diff-title {
    font-family: 'DM Serif Text', serif;
    font-size: 32px;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    /* Eliminamos transiciones de movimiento excesivas */
    transform: translateY(0); 
}

.diff-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    font-weight: 400;
    
    /* En desktop, la referencia muestra el texto siempre visible o sutil */
    opacity: 0.8; 
    transform: none;
    max-width: 100%;
}

/* Al hover en desktop, solo aclaramos la opacidad al 100% */
.diff-item:hover .diff-desc {
    opacity: 1;
}


/* --- RESPONSIVE (MANTENIENDO LO QUE YA FUNCIONA) --- */
@media screen and (max-width: 1024px) {
    
    .diff-main-title { font-size: 32px; }

    .diff-grid-wrapper {
        flex-direction: column;
        height: 800px; /* Altura automática */
    }
    
    .diff-item {
        width: 100%;
        height: 450px; /* Altura fija móvil */
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .diff-content {
        /* En móvil sí queremos el texto abajo */
        justify-content: flex-end; 
        padding: 40px 30px;
        gap: 20px;
    }
    
    .diff-title {
        font-size: 26px;
        margin-bottom: 0;
    }

    .diff-desc {
        opacity: 0.9;
        font-size: 13px;
    }
    
    .diff-overlay {
        background-color: rgba(13, 23, 33, 0.5);
    }
}

/*Estilos contacto calendario*/

/* --- CONTENEDOR PRINCIPAL --- 
.google-booking-wrapper {
    position: relative;
    width: 100%;
    min-height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    box-sizing: border-box;
}

.booking-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: 1;
}
.booking-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); z-index: 2;
    backdrop-filter: blur(5px);
}


.calendar-card-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.booking-tabs {
    display: flex;
    background: #f4f7fa; /* Gris muy claro para diferenciar header 
    border-bottom: 1px solid #e0e0e0;
}

.bk-tab {
    flex: 1; 
    padding: 20px;
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent; /* Línea inactiva 
}

.bk-tab:hover {
    background: rgba(0,0,0,0.02);
    color: #555;
}

.bk-tab.active {
    color: #1a2b40; /* Azul Corporativo 
    background: #fff;
    border-bottom: 3px solid #1a2b40; /* Línea activa 
}

.tab-icon {
    margin-right: 8px;
    font-size: 16px;
}

.calendars-viewport {
    background: #fff;
    padding: 10px;
    min-height: 650px;
}

.calendar-frame {
    transition: opacity 0.3s ease;
}


@media screen and (max-width: 600px) {
    .booking-tabs { flex-direction: column; }
    .bk-tab { width: 100%; border-bottom: 1px solid #eee; }
    .bk-tab.active { border-left: 4px solid #1a2b40; border-bottom: 1px solid #eee; }
}*/

/* --- CONTENEDOR HERO --- */
.contact-hero-wrapper {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    padding: 80px 20px;
    box-sizing: border-box;
}

/* Overlay oscuro */
.contact-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Oscuridad para contraste */
    z-index: 1;
}

/* Contenido */
.contact-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 70px;
}

/* Título */
.ch-title {
    font-family: 'DM Serif Text', serif;
    font-size: 64px;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 400;
}


/* =======================================================
   FORMINATOR ESTILOS TRANSPARENTES (GLASS)
   ======================================================= */

/* Contenedor del Formulario */
.ch-form-container {
    margin-bottom: 60px;
}

/* Forzar Grid Layout para los campos */
.ch-form-container .forminator-custom-form {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columnas */
    gap: 20px;
}

/* INPUTS, SELECTS Y TEXTAREAS */
.ch-form-container input.forminator-input,
.ch-form-container select.forminator-select--field,
.ch-form-container textarea.forminator-textarea,
.ch-form-container .forminator-input-time {
    background: rgba(255, 255, 255, 0.05) !important; /* Transparente */
    border: 1px solid rgba(255, 255, 255, 0.3) !important; /* Borde sutil */
    border-radius: 10px !important; /* Bordes redondeados como la imagen */
    color: #fff !important;
    padding: 15px 20px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    outline: none !important;
    width: 100% !important;
    box-sizing: border-box;
}

/* Placeholder color */
.ch-form-container input::placeholder,
.ch-form-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Focus */
.ch-form-container input:focus,
.ch-form-container select:focus,
.ch-form-container textarea:focus {
    border-color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* --- MANEJO DE FILAS Y COLUMNAS --- */
/* Forminator envuelve inputs en divs. Hacemos que esos divs ocupen el grid */
.ch-form-container .forminator-row {
    margin-bottom: 0 !important;
}

/* Excepciones para campos de ancho completo (Textarea, Select, Submit) */
/* Si el campo es el Select (usualmente el último antes del botón) o Textarea */
.ch-form-container .forminator-select,
.ch-form-container .forminator-textarea {
    grid-column: span 2; /* Ocupa las 2 columnas */
}

/* Ocultar Labels si queremos el look 100% limpio de la imagen (Solo placeholders) */
.ch-form-container label.forminator-label {
    display: none !important;
}

/* --- BOTÓN DE ENVIAR (Estilo Link Subrayado o Botón Minimal) --- */
.ch-form-container .forminator-button-submit {
    grid-column: span 2; /* Centrado abajo */
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #fff !important; /* Subrayado */
    border-radius: 0 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    padding: 10px 5px !important;
    width: auto !important;
    margin: 30px auto 0 auto !important; /* Centrado con margen arriba */
    cursor: pointer !important;
    box-shadow: none !important;
    transition: 0.3s;
}

.ch-form-container .forminator-button-submit:hover {
    color: #0077b5 !important; /* Dorado al hover */
    border-color: #0077b5 !important;
}


/* =======================================================
   FOOTER ACTIONS (WHATSAPP / LLÁMANOS)
   ======================================================= */
.ch-footer-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.ch-action-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.ch-action-link svg { width: 18px; height: 18px; fill: #fff; }
.ch-action-link:hover { color: #0077b5; }
.ch-action-link:hover svg { fill: #0077b5; }

/* Línea divisoria vertical */
.ch-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255,255,255,0.5);
}


/* --- RESPONSIVE --- */
@media screen and (max-width: 768px) {
    .ch-title { font-size: 42px; }
    
    /* En móvil, todo a 1 columna */
    .ch-form-container .forminator-custom-form {
        grid-template-columns: 1fr;
    }
    
    .ch-form-container .forminator-select,
    .ch-form-container .forminator-textarea,
    .ch-form-container .forminator-button-submit {
        grid-column: span 1;
    }
    
    .ch-footer-actions {
        flex-direction: column;
        gap: 15px;
    }
    .ch-divider {
        width: 40px; height: 1px; /* Línea horizontal en móvil */
    }
}

/* --- CONTENEDOR GENERAL --- */
.marcasSwiper {
    padding-bottom: 60px; /* Espacio para las flechas abajo */
}

.marcasSwiper .swiper-slide {
    height: auto;
    display: flex; /* Para igualar alturas */
}

/* --- TARJETA --- */
.marcasSwiper .repetidor-item {
    position: relative;
    width: 100%;
    min-height: 450px; /* Altura mínima fija */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Contenido arriba */
    padding: 40px 30px;
    box-sizing: border-box;
    border-bottom: 3px solid #1a2b40; /* Detalle azul abajo (opcional) */
}

/* --- OVERLAY OSCURO --- */
.marcasSwiper .repetidor-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(11,17,26,0.7) 0%, rgba(11,17,26,0.9) 100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.marcasSwiper .repetidor-item:hover .repetidor-overlay {
    background: linear-gradient(to bottom, rgba(11,17,26,0.5) 0%, rgba(11,17,26,0.95) 100%);
}

/* --- WRAPPER DE CONTENIDO (Encima del overlay) --- */
.marcasSwiper .repetidor-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* --- TÍTULO DE MARCA (Estilo Premium) --- */
.marca-titulo-texto {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 36px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 25px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.3); /* Línea separadora */
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* --- LISTA DE MUEBLES (Bullets) --- */
.muebles-contenido {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
}

.muebles-contenido ul {
    list-style: none !important; /* Quitamos default */
    padding: 0;
    margin: 0;
}

.muebles-contenido ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}

/* Bullet personalizado (Punto o Guion) */
.muebles-contenido ul li::before {
    content: "•";
    color: #0077b5;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* --- FLECHAS DE NAVEGACIÓN --- */
.proyectos-arrows-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.swiper-button-prev, .swiper-button-next {
    position: static; /* Ya no absolutos */
    color: #1a2b40;
    margin: 0;
}
.swiper-button-prev::after, .swiper-button-next::after {
    font-size: 20px;
}


/*Estilos footer*/

/* --- FOOTER GLOBAL --- */
.shopdesign-footer {
    background-color: #1E2937; 
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    padding-top: 80px; 
    position: relative;
    width: 100%;
    overflow: hidden; 
}

/* --- GRID PRINCIPAL --- */
.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr; 
    gap: 40px; 
    max-width: 1600px; 
    margin: 0 auto;
    padding: 0 5%;
    padding-bottom: 100px;
    box-sizing: border-box;
}

/* --- TIPOGRAFÍA Y ENLACES --- */
.footer-heading {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 18px; 
    color: #fff;
    margin-top: 0; 
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 400;
}

.shopdesign-footer ul.footer-list {
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-list li {
    margin-bottom: 12px; 
    padding-left: 0 !important;
}

.footer-list a, .footer-list li.address-item {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.6;
    transition: color 0.3s;
    font-weight: 400;
    display: block;
}

.footer-list a:hover { color: #fff; }

.footer-logo {
    max-width: 140px;
    height: auto;
}


/* --- REDES SOCIALES --- */
.footer-social-block {
    margin-top: 40px; 
}
.heading-social {
    margin-bottom: 15px;
    font-size: 18px; 
    font-family: 'DM Serif Text', serif;
    font-style: italic;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    color: #fff;
    transition: opacity 0.3s;
}
.social-icons a:hover { opacity: 0.7; }
.social-icons svg { width: 18px; height: 18px; }


/* --- CAJA AZUL (AGENDAR) - DESKTOP --- */
.footer-cta-box {
    position: absolute;
    bottom: 45px; 
    left: 0;
    background-color: #1a3b6e; 
    padding: 25px 40px 25px 5%; 
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Para separar texto de flecha */
    gap: 30px;
    transition: width 0.3s ease;
    z-index: 10;
    min-width: 320px; /* Un poco más ancha para que quepa bien */
}

.footer-cta-box:hover { background-color: #234b8a; }

.cta-text-group {
    display: flex;
    flex-direction: column;
}

.cta-box-title, .cta-box-subtitle {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 24px;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    font-weight: 400;
}

/* NUEVO: Estilo para la Flecha Derecha PNG */
.cta-arrow-img {
    width: 50px; /* Tamaño ajustado para la flecha larga */
    height: auto;
    display: block;
}


/* --- VOLVER AL INICIO (Derecha) --- */
.back-to-top {
    position: absolute;
    right: 5%;
    bottom: 70px;
    display: flex;
    text-decoration: none;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-direction: row-reverse;
    align-items: flex-end;
}

.back-to-top span{
    text-decoration-line: underline;
}

/* NUEVO: Estilo para la Flecha Arriba PNG */
.back-to-top-img {
    width: 20px; /* Flecha fina vertical */
    height: auto;
    order: -1; /* Pone la imagen arriba del texto */
}


/* --- COPYRIGHT --- */
.footer-copyright {
    background-color: #191F28;
    padding: 10px 0px;
    width: 100%;
    text-align: center;
}
.footer-copyright p {
    font-size: 10px;
    color: rgb(255, 255, 255);
    margin: 0;
}


/* =========================================
   RESPONSIVE (MÓVIL AJUSTADO)
   ========================================= */
@media screen and (max-width: 1024px) {
    .shopdesign-footer {
    padding-top: 0px;
    padding-bottom: 0;
    }
    .footer-main-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding-bottom: 0; 
    }

    /* Logo Centrado */
    .col-logo {
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-logo { max-width: 160px; }

    /* Columnas alineadas al centro */
    .footer-col {
        width: 100%;
        text-align: center;
    }

    .footer-social-block { 
        margin-top: 20px; 
        padding-bottom: 30px; 
    }

    .social-icons {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    /* --- CAJA AZUL MÓVIL --- */
    .footer-cta-box {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    box-sizing: border-box;
    padding: 30px 20px;
    margin-top: 0px;
    margin-bottom: 50px;
    background-color: #1a3b6e;
    border-top: 1px solid rgba(255,255,255,0.1);
    justify-content: space-between;
    }
    
    .cta-box-title, .cta-box-subtitle { font-size: 22px; }
    
    /* Ocultamos volver arriba en móvil si estorba, o lo dejamos */
    .back-to-top { display: none; }

    .footer-copyright {
        width: 100%;
        background-color: #080c12;
        padding: 20px;
        border-top: none;
        box-sizing: border-box;
    }
}

/* --- CONTENEDOR PRINCIPAL --- */
.editorial-v4-grid {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 100vh;
    padding: 0px 0 0 5%;
    box-sizing: border-box;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    gap: 0%;
    overflow: hidden;
}

/* --- COLUMNAS --- */
.ed-col-left {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.ed-col-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    /* Aseguramos que empiece arriba */
    justify-content: flex-start;
}


/* === IZQUIERDA === */

.ed-header {
    margin-top: 70px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.ed-subtitle {
    font-size: 11px!important;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 25px;
    display: block;
    font-weight: 500;
}

.ed-title {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 56px;
    line-height: 1.1;
    color: #1a2b40;
    margin: 0;
}

/* --- BLOQUE DE COMPOSICIÓN (ARCO + CAJA) --- */
.ed-arch-wrapper {
    position: relative;
    width: 90%;
    margin-left: 10%;
    margin-top: 50px;
    height: 110vh;
    min-height: 800px;
}

/* La Imagen del Arco (Fondo) */
.ed-arch-img {
    position: relative;
    left: 20%;
    top: 15%;
    width: 80%;
    height: 80%;
    background-size: cover;
    background-position: bottom;
}

/* La Caja Blanca (Flotante Anclada) */
.ed-white-card {
    position: absolute;
    top: -50px;
    left: 5%;
    background-color: #F4F9FE;
    padding: 60px 130px;
    width: 95%;
    height: 500px;
}

.ed-white-card p {
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}


/* === DERECHA === */

/* Imagen Sillas */
.ed-chairs-wrapper {
    width: 100%;
    /* Altura relativa a pantalla para que siempre se vea grande */
    height: 90vh; 
    min-height: 600px;
    margin-bottom: 15vh; /* Espacio flexible abajo */
}

.ed-chairs-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Texto Descriptivo */
.ed-text-body {
    width: 60%;
    align-self: flex-end; /* Alineado a la derecha */
    text-align: left;
    margin-bottom: 20vh; /* Espacio flexible */
    padding-right: 5%;
}
.ed-text-body p {
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Caja Oscura */
.ed-dark-box {
    background-color: #131b26;
    padding: 100px 80px;
    width: 110%; /* Sangrado */
    margin-right: -10%;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

.ed-dark-text {
    font-family: 'DM Serif Text', serif;
    font-size: 34px;
    color: #fff;
    line-height: 1.25;
    font-weight: 400;
    margin: 0;
    max-width: 600px;
}

/* --- RESPONSIVE (TABLET Y MÓVIL) --- */
@media screen and (max-width: 1024px) {
    
    /* 1. Contenedor Principal: Apilar Verticalmente */
    .editorial-v4-grid {
        flex-direction: column;
        padding: 50px 20px; /* Padding estándar de móvil */
        height: auto !important; /* Forzar altura automática */
        min-height: auto;
        gap: 40px; /* Espacio entre bloques */
    }
    
    /* 2. Columnas al 100% */
    .ed-col-left, .ed-col-right {
        width: 100%;
        display: block; /* Quitar flex si estorba */
    }
    
    /* --- IZQUIERDA --- */
    
    /* Títulos */
    .ed-header {
        margin-top: 0; /* Quitar el margen gigante de desktop */
        margin-bottom: 30px;
    }
    
    .ed-subtitle {
        margin-top: 0;
        font-size: 10px !important;
        margin-bottom: 15px;
    }
    
    .ed-title {
        font-size: 32px; /* Tamaño legible en móvil */
        margin-bottom: 30px;
    }
    
    /* Resetear el Wrapper del Arco */
    .ed-arch-wrapper {
        width: 100%;
        height: auto;
        min-height: auto;
        margin: 0;
        margin-top: 0;
        display: flex;
        flex-direction: column; /* Texto arriba, foto abajo */
    }
    
    /* Caja Blanca: Ya no flota, es un bloque normal */
    .ed-white-card {
        position: relative; /* Regresa al flujo normal */
        top: auto; left: auto;
        width: 100%;
        height: auto !important; /* Importante: quitar la altura fija de 500px */
        padding: 30px;
        box-sizing: border-box;
        margin-bottom: 20px;
        background-color: #F4F9FE;
    }
    
    /* Imagen Arco */
    .ed-arch-img {
        position: relative;
        left: auto; top: auto;
        width: 100%;
        height: 400px; /* Altura controlada */
        margin-left: 0;
        margin-top: 0;
        background-position: center;
    }
    
    
    /* --- DERECHA --- */
    
    /* Imagen Sillas */
    .ed-chairs-wrapper {
        height: 350px; /* Altura visualmente agradable */
        min-height: auto;
        margin-bottom: 40px;
        margin-top: 0;
    }
    
    /* Texto Descriptivo */
    .ed-text-body {
        width: 100%;
        margin-bottom: 40px;
        padding-right: 0;
        text-align: left;
    }
    
    /* Caja Oscura */
    .ed-dark-box {
        width: 100%;
        margin-right: 0;
        padding: 40px 30px;
        border-radius: 0; /* Opcional: bordes rectos */
    }
    
    .ed-dark-text {
        font-size: 22px; /* Tamaño adecuado para lectura */
        line-height: 1.4;
    }
}

/*Estilos estadisticas*/
/* --- CONTENEDOR PRINCIPAL (Fondo completo) --- */
.sd-stats-module-wrapper {
    display: flex;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    justify-content: flex-end;
}

/* --- COLUMNA IZQUIERDA (Espacio vacío) --- */
.sd-stats-spacer {
    width: 50%;
    height: 100%;
    /* Transparente para ver la foto limpia */
}

/* --- COLUMNA DERECHA (Panel de Vidrio) --- */
.sd-stats-glass-panel {
    width: 35%;
    height: 100%;
    background: rgb(255 255 255 / 15%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    box-sizing: border-box;
    text-align: center;
    align-items: center;
}

.sd-stats-content-inner {
    max-width: 480px;
    width: 100%;
}


/* --- BLOQUES DE ESTADÍSTICA --- */
.sd-stat-block {
    margin-bottom: 70px;
    
    /* Estado inicial para animación (Oculto y abajo) */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
/* Estado visible (activado por JS) */
.sd-stat-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sd-stat-block:last-child {
    margin-bottom: 0;
}

/* Etiquetas */
.sd-stat-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
}

/* Números (Contenedor para alinear el +) */
.number-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: #011754!important;
    line-height: 1;
    margin-bottom: 10px;
}

.plus-sign {
    font-family: 'DM Serif Text', serif;
    font-size: 50px;
    margin-right: 2px;
    color: #011754!important;
}

.sd-stat-number {
    font-family: 'DM Serif Text', serif;
    font-size: 80px;
    margin: 0;
    font-weight: 400;
    color: #011754!important;
}

/* Descripción */
.sd-stat-desc {
    font-size: 18px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    max-width: 340px;
    margin: 0 auto;
}


/* --- RESPONSIVE (MÓVIL) --- */
@media screen and (max-width: 1024px) {
    .sd-stats-module-wrapper {
    flex-direction: column;
    height: auto;
    background-attachment: fixed;
    background-position: top!important;
}

    /* El hueco de arriba para ver la foto */
    .sd-stats-spacer {
        width: 100%;
        height: 50vh; /* Ocupa la mitad de la pantalla */
        min-height: 350px; /* Altura mínima segura */
    }

    /* El panel de contenido */
    .sd-stats-glass-panel {
    width: 100%;
    height: auto;
    padding: 60px 30px;
    background: #ffffff8a;
    backdrop-filter: blur(10px);
    border: none;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    }   

    /* --- CORRECCIÓN DE COLORES (CRÍTICO) --- */
    /* Como el fondo es blanco, el texto debe ser oscuro */
    .sd-stats-glass-panel .sd-stat-label {
        color: #000000;
    }
    
    .sd-stats-glass-panel .sd-stat-desc { 
        color: #333; /* Gris oscuro para leer bien */
    }

    /* Ajustes de tamaño */
    .sd-stat-number { font-size: 60px; }
    .plus-sign { font-size: 40px; }
    .sd-stat-block { margin-bottom: 50px; }
    
    /* El número ya es azul (#011754), así que ese se ve bien */
}

/*Estilos por que curaduria*/
/* --- CONTENEDOR PRINCIPAL --- */
.curatorship-banner-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* Altura inmersiva */
    min-height: 600px;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

/* Imagen de Fondo */
.curatorship-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* --- CAJA GLASS (VIDRIO OSCURO) --- */
.curatorship-glass-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    max-width: 700px;
    background: rgb(0 0 0 / 10%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 80px 60px;
    box-sizing: border-box;
    z-index: 10;
}

/* Tipografía */
.curatorship-subtitle {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    font-weight: 500;
}

.curatorship-title {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 48px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 30px 0;
}

/* Separador visual opcional */
.curatorship-separator {
    width: 60px;
    height: 1px;
    background-color: rgba(255,255,255,0.3);
    margin-bottom: 30px;
}

.curatorship-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9); /* Blanco casi puro para lectura */
    font-weight: 300;
    margin: 0;
}


/* --- RESPONSIVE --- */
@media screen and (max-width: 1024px) {
    .curatorship-banner-wrapper {
        height: 80vh;
    }

    .curatorship-glass-box {
        width: 70%; /* Más ancho en tablets */
        padding: 50px 40px;
    }
    
    .curatorship-title { font-size: 36px; }
}

@media screen and (max-width: 768px) {
    .curatorship-banner-wrapper {
        height: auto; /* Altura automática en móvil */
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    /* En móvil separamos la foto del texto para mejor lectura */
    .curatorship-bg {
        position: relative;
        height: 400px; /* Altura de la foto */
        width: 100%;
    }

    .curatorship-glass-box {
        position: relative;
        width: 100%;
        max-width: none;
        background: #0b111a; /* Fondo sólido oscuro en móvil (mejor contraste) */
        backdrop-filter: none;
        padding: 40px 30px;
        border: none;
    }
    
    .curatorship-title { font-size: 32px; }
    .curatorship-desc { font-size: 14px; }
}

/*Estilos Banner seleccion - por que?*/

/* --- CONTENEDOR PRINCIPAL --- */
.selection-bases-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* Altura inmersiva pero no pantalla completa total */
    min-height: 600px;
    display: flex;
    align-items: center; /* Centrado Vertical */
    justify-content: center; /* Centrado Horizontal */
    overflow: hidden;
    background-color: #000;
}

/* Imagen de Fondo */
.sb-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Overlay (Sombra para que se lea el texto blanco) */
.sb-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Degradado sutil desde arriba y abajo hacia el centro */
    background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

/* --- CONTENIDO --- */
.sb-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 800px; /* Ancho máximo para que no se desparrame */
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Subimos un poco el contenido ópticamente */
    margin-top: -50px; 
}

/* Subtítulo Superior */
.sb-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
    font-weight: 500;
}

/* Título Principal */
.sb-title {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 64px;
    line-height: 1.1;
    margin: 0 0 30px 0;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Sombra suave */
}

/* Descripción */
.sb-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px; /* Texto compacto */
    margin: 0 auto 50px auto;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
}

/* --- BOTÓN CON EFECTO GLASS --- */
.sb-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    /* El estilo de la "caja" borrosa detrás del texto */
    background: rgba(0, 0, 0, 0.2); 
    padding: 15px 40px;
    backdrop-filter: blur(5px); /* Desenfoque detrás del botón */
    transition: all 0.3s ease;
}

.sb-btn:hover {
    background: #fff;
    color: #1a2b40; /* Azul oscuro al hover */
    border-color: #fff;
}


/* --- RESPONSIVE --- */
@media screen and (max-width: 1024px) {
    .sb-title { font-size: 48px; }
}

@media screen and (max-width: 768px) {
    .selection-bases-wrapper {
        height: 70vh; /* Menos alto en móvil */
        min-height: 500px;
    }
    
    .sb-content { margin-top: 0; }
    
    .sb-title { font-size: 36px; margin-bottom: 20px; }
    
    .sb-desc { font-size: 14px; margin-bottom: 40px; width: 100%; }
    
    .sb-subtitle { font-size: 10px; margin-bottom: 15px; }
}

/* estilos firma internacional - experiencia*/
/* --- CONTENEDOR PRINCIPAL --- */
.firms-split-blur-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* Altura pantalla completa */
    min-height: 600px;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

/* Imagen de Fondo (Cubre todo) */
.firms-bg-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* --- PANEL DERECHO (EFECTO BLUR) --- */
.firms-blur-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgb(0 0 0 / 5%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 130px;
}

/* Contenedor del Texto */
.firms-content-inner {
    max-width: 550px;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Tipografía */
.firms-title {
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 52px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.firms-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    margin: 0 0 50px 0; /* Espacio antes del botón */
}

/* Botón estilo Enlace */
.firms-link {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 4px;
    font-weight: 600;
    transition: 0.3s;
}
.firms-link:hover {
    color: #ccc;
    border-color: #ccc;
}


/* --- RESPONSIVE (MÓVIL Y TABLET) --- */
@media screen and (max-width: 1024px) {
    .firms-split-blur-wrapper {
        height: auto; /* Altura libre */
        min-height: auto;
        display: flex;
        flex-direction: column; /* Apilar elementos */
    }

    /* Imagen arriba (Banner) */
    .firms-bg-layer {
        position: relative; /* Ya no absoluta */
        height: 400px; /* Altura fija visual */
        width: 100%;
        background-attachment: scroll;
    }

    /* Panel de Texto abajo */
    .firms-blur-panel {
        position: relative; /* Ya no absoluta */
        width: 100%;
        height: auto;
        right: auto;
        
        /* En móvil, usamos un fondo sólido oscuro para máxima legibilidad 
           ya que el blur sobre nada no funciona */
        background: #151e2b; /* Azul oscuro corporativo */
        backdrop-filter: none;
        border: none;
        
        padding: 60px 30px;
    }
    
    .firms-content-inner {
        padding: 0;
        max-width: 100%;
    }

    .firms-title {
        font-size: 36px; /* Ajuste de tamaño */
    }
    
    .firms-desc {
        font-size: 14px;
    }
}

/*Estilos de articulo individual*/

/* =========================================
   1. ESTILOS PARA EL META (CATEGORÍA | TIEMPO)
   ========================================= */
.shop-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; /* Tamaño legible */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff; /* Blanco porque va sobre foto oscura */
    margin-bottom: 20px;
}

.shop-meta-badge .meta-cat {
    color: #42A6FF; /* Azul claro acento para la categoría */
}

.shop-meta-badge .meta-sep {
    opacity: 0.6;
}


/* =========================================
   2. ESTILOS PARA EL CONTENIDO (CUERPO)
   ========================================= */
.shop-content-layout {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 60px auto 0px auto;
    gap: 40px;
    font-family: 'Montserrat', sans-serif;
}

/* --- COLUMNA IZQUIERDA (TEXTO) --- */
.shop-entry-content {
    width: 100%;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    background-color: #f4f7f9;
    padding: 30px;
    margin-top: -20%;
}

.shop-entry-content p {
    margin-bottom: 25px;
}

/* Letra Capital (Estilo Editorial) */
.shop-entry-content > p:first-of-type::first-letter {
    float: left;
    font-family: 'DM Serif Text', serif;
    font-size: 3.8em;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 5px;
    font-weight: 400; /* Serif itálico se ve mejor regular */
    color: #1a2b40; /* Azul oscuro */
}

/* Títulos dentro del artículo */
.shop-entry-content h2, 
.shop-entry-content h3 {
    font-family: 'DM Serif Text', serif;
    color: #1a2b40;
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.shop-entry-content h2 { font-size: 32px; }
.shop-entry-content h3 { font-size: 24px; }

/* Citas (Blockquotes) */
.shop-entry-content blockquote {
    background: #f9f9f9;
    border-left: 4px solid #42A6FF; /* Azul ShopDesign */
    margin: 40px 0;
    padding: 30px;
    font-family: 'DM Serif Text', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: #1a2b40;
}

/* Imágenes */
.shop-entry-content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
}


/* --- COLUMNA DERECHA (SIDEBAR STICKY) --- */
.shop-entry-sidebar {
    width: 20%;
    position: relative;
}

.sticky-share-box {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}

.share-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a2b40;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.share-buttons-list {
    display: flex;
    flex-direction: row; /* Iconos uno al lado del otro (o column si prefieres) */
    gap: 10px;
}

.share-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    background-color: #e6e6e6; /* Gris claro */
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.share-btn svg { width: 16px; height: 16px; fill: #666; }

/* Colores al Hover */
.share-btn:hover { transform: translateY(-3px); }
.share-btn:hover svg { fill: #fff; }

.share-btn.fb:hover { background-color: #3b5998; }
.share-btn.li:hover { background-color: #0077b5; }
.share-btn.tw:hover { background-color: #000; }

header .et_builder_inner_content  .et_pb_section{
    padding:0px!important;
}

header.et-l.et-l--header {
    position:absolute;
    width:100%;
}
body{
    overflow-x:hidden ;
}

/* --- RESPONSIVE (MÓVIL) --- */
@media screen and (max-width: 980px) {
    .shop-content-layout {
        flex-direction: column; /* Apilar contenido */
        margin: 40px auto;
    }
    
    .shop-entry-content { width: 100%; }
    
    /* El sidebar pasa a ser un footer de compartir abajo */
    .shop-entry-sidebar {
        width: 100%;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }
    
    .sticky-share-box {
        position: relative; top: 0;
        flex-direction: row; /* Título e iconos en línea */
        justify-content: space-between;
        width: 100%;
    }
    
    .share-title { margin-bottom: 0; }

    /* página - proyectos */
    .proyectos-tipos-wrapper{
    display:flex;
    flex-direction:column;
    }
    .proyecto-tipo-item .proyecto-tipo-thumb{
        height:50vh!important;
    }
}
