.elementor-4036 .elementor-element.elementor-element-3de0cb0{--display:flex;}/* Start custom CSS for html, class: .elementor-element-852068a *//* --- CONTENEDOR PRINCIPAL LUMINOSO --- */
.lmb-editorial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background: #fff;
}

/* --- TIPOGRAFÍA DE IMPACTO (Bebas Neue) --- */
.lmb-editorial-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    /* Tamaño dinámico gigante pero limpio */
    font-size: clamp(4rem, 10vw, 7rem);
    line-height: 0.9;
    color: #222;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.lmb-editorial-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #bdb700; /* Tu color dorado */
    margin: 0 0 50px 0;
    font-weight: 400;
    letter-spacing: 1px;
}

/* --- GRID PRINCIPAL (Layout tipo Revista) --- */
.lmb-layout-grid {
    display: grid;
    /* Dos columnas: Contenido (60%) e Imagen decorativa (40%) */
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

/* Columna de texto */
.lmb-intro-text-styled {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 4px solid #bdb700; /* Pequeño acento lateral */
}

/* Columna de Imagen Lateral (La innovación visual) */
.lmb-side-image-box {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

/* Placeholder de la imagen - ¡CÁMBIALA POR UNA TUYA! */
/* He usado una imagen de oficina luminosa y profesional */
.lmb-side-image-placeholder {
    background-image: url('https://lemornebrabant.com/wp-content/uploads/2013/09/quejas-le-morne-brabant.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    /* Filtro dorado superpuesto para imagen de marca */
    position: absolute;
    top:0; left:0;
    z-index: 1;
}
/* Capa de color dorado translúcido sobre la imagen */
.lmb-side-image-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(189, 183, 0, 0.15); /* Tu color con transparencia */
    z-index: 2;
}


/* --- SECCIÓN DE OPCIONES (Limpia y blanca) --- */
.lmb-options-clean-label {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #222;
}

.lmb-clean-modules {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lmb-clean-module-item {
    background: #fcfcfc; /* Gris casi blanco */
    border: 2px solid #f0f0f0;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Al pasar el ratón, se ilumina en dorado */
.lmb-clean-module-item:hover {
    border-color: #bdb700;
    box-shadow: 0 10px 20px rgba(189, 183, 0, 0.1);
    background: #fff;
}

.lmb-clean-module-item li {
    list-style: none;
    line-height: 1.6;
    color: #666;
}

/* --- CTA DE EMAIL (El Héroe Blanco) --- */
/* En lugar de negro, es una caja blanca con presencia */
.lmb-email-white-hero {
    background: #ffffff;
    padding: 60px 40px;
    text-align: center;
    border: 4px solid #bdb700; /* Borde dorado grueso */
    border-radius: 0px; /* Esquinas rectas para más seriedad */
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.lmb-email-hero-intro {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #bdb700;
    margin-bottom: 15px;
    display: block;
}

.lmb-email-hero-link {
    font-family: 'Bebas Neue', sans-serif;
    /* Email gigante */
    font-size: clamp(2rem, 7vw, 5rem);
    line-height: 1;
    color: #222;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    word-break: break-all; /* Evita que se salga en móviles */
}

.lmb-email-hero-link:hover {
    color: #bdb700; /* Cambio de color al pasar el ratón */
}

/* --- Footer sutil --- */
.lmb-editorial-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .lmb-layout-grid {
        grid-template-columns: 1fr; /* Una sola columna */
        gap: 40px;
    }
    /* La imagen se hace más pequeña en móvil y va debajo del texto */
    .lmb-side-image-box {
        min-height: 250px;
        order: 2; /* Mueve la imagen debajo del contenido principal */
    }
    .lmb-content-column {
        order: 1;
    }
    .lmb-editorial-wrapper {
        padding: 40px 20px;
    }
}/* End custom CSS */