.elementor-kit-6{--e-global-color-primary:#3F8CE2;--e-global-color-secondary:#3369B0;--e-global-color-text:#2E2E2E;--e-global-color-accent:#61C1CE;--e-global-color-0b40ece:#FFFFFF;--e-global-color-317e5b9:#10345B;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Montserrat";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Montserrat";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Montserrat";--e-global-typography-accent-font-weight:700;overscroll-behavior:auto;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* === SOLUCIÓN DEFINITIVA DOBLE SCROLL === */

/* 1. Define quién manda: HTML es el único que puede tener scroll */
html {
    overflow-y: auto !important;   /* RECOMENDADO: 'auto' es mejor que 'visible' aquí */
    overflow-x: hidden !important;
    height: 100% !important;
}

/* 2. Body: Flexible, sin barra propia, y con fondo COMPLETO (Escritorio) */
body {
    overflow-y: visible !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    
    /* Fondo para escritorio: Imagen + Degradado */
    background-image: 
      url('https://mente-logistica.com/wp-content/uploads/2025/11/fondo-blanco-scaled.webp'),
      linear-gradient(-0.3deg, rgba(36, 73, 122, 1) 0%, rgba(31, 67, 114, 1) 38.79%, rgba(16, 52, 91, 1) 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: center center, center center;
    background-size: cover, cover;
    background-attachment: fixed;
}

/* 3. CLAVE: Desbloquea contenedores internos */
.elementor-template-canvas,
.elementor-page,
.elementor-section-wrap,
.elementor {
    overflow-y: hidden !important; /* 'visible' es más seguro que 'hidden' para no cortar contenido */
    height: auto !important;
}

/* === AJUSTE MÓVIL (SOLO DEGRADADO) === */
@media (max-width: 767px) {
  body {
    /* 1. Sobrescribimos para dejar SOLO el degradado */
    background-image: linear-gradient(-0.3deg, rgba(36, 73, 122, 1) 0%, rgba(31, 67, 114, 1) 38.79%, rgba(16, 52, 91, 1) 100%) !important;
    
    /* 2. Ajustamos el resto de propiedades para una sola capa */
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important; /* Mejor rendimiento en móvil */
  }
}/* End custom CSS */