.elementor-20770 .elementor-element.elementor-element-7a013dd{--display:flex;--margin-top:-9px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-20770 .elementor-element.elementor-element-7a013dd:not(.elementor-motion-effects-element-type-background), .elementor-20770 .elementor-element.elementor-element-7a013dd > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for html, class: .elementor-element-dadfeb3 */.modern-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55vh; /* Puedes ajustar a 60vh si prefieres más altura */
    
    /* --- TRUCO ANCHO COMPLETO (FULL WIDTH) --- */
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* --------------------------------------- */

    overflow: hidden;
    font-family: "montserrat", Sans-Serif;
    color: #ffffff;
    box-sizing: border-box;
    
    /* IMAGEN DE FONDO ACTUALIZADA + DEGRADADO CORPORATIVO */
    background-image: 
        linear-gradient(135deg, rgba(18, 52, 152, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('https://consultoradeasesoriaempresarialjb.com/wp-content/uploads/2026/02/alianzas-banner.webp');
    
    background-size: cover;
    background-position: center;
    background-attachment: scroll; 
}

.banner-content {
    width: 100%;
    max-width: 1100px; 
    padding: 0 40px;
    box-sizing: border-box;
    text-align: center;
    z-index: 1; 
    
    /* Animación de entrada suave */
    animation: fadeInUp 1.2s ease-out;
}

.banner-content .title {
    color: #ffffff;
    margin: 0 auto;
    
    /* Tipografía */
    font-size: 3.5rem; 
    font-weight: 800; 
    line-height: 1.1;
    max-width: 800px;
    
    /* Estilo Premium */
    text-transform: uppercase;
    letter-spacing: 3px;       
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); 
    position: relative;
    padding-bottom: 25px; /* Espacio para la línea */
}

/* Línea Decorativa Naranja */
.banner-content .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: #F46F0B; /* Naranja Corporativo */
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(244, 111, 11, 0.4);
}

/* Definición de la animación */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .banner-content .title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .modern-banner {
        height: 60vh;
    }
    .banner-content {
        padding: 0 20px;
    }
    .banner-content .title {
        font-size: 2rem;
        letter-spacing: 1px;
        max-width: 100%;
        padding-bottom: 20px;
    }
    /* Ajustamos la línea en móvil */
    .banner-content .title::after {
        width: 60px;
        height: 4px;
    }
}/* End custom CSS */