.elementor-kit-6{--e-global-color-primary:#FFFFFF;--e-global-color-secondary:#155B63;--e-global-color-text:#FFFFFF;--e-global-color-accent:#3ABFA1;--e-global-color-e5f60c1:#8F96A3;--e-global-color-02dfa2f:#0C0E13;--e-global-color-bdd0b25:#2B303B;--e-global-typography-primary-font-family:"Inter";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Inter";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-weight:500;}.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);}@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 *//* 1. Fondo base y Cuadrícula GLOBAL */
body {
    background-color: #0C0E13; /* Color de fondo si falla la carga */
    position: relative;
    min-height: 100vh;
}

/* 2. La Cuadrícula (FIJA detrás de todo) */
body::before {
    content: "";
    position: fixed; /* Se queda quieta al hacer scroll */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    
    /* El dibujo de la cuadrícula */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    
    pointer-events: none;
    z-index: -10; /* Muy al fondo */
}

/* 3. El Resplandor/Luz (FIJO detrás de todo) */
body::after {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200vw;
    height: 200vh;
    
    /* Tu degradado verde */
    background: radial-gradient(circle at center, rgba(87, 190, 176, 0.12) 0%, transparent 50%);
    filter: blur(80px);
    pointer-events: none;
    z-index: -9; /* Justo delante de la cuadrícula */
    
    animation: movimiento-fondo 20s ease-in-out infinite;
}

/* Animación suave */
@keyframes movimiento-fondo {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

/* 4. TRUCO DE COMPATIBILIDAD:
   Hacemos transparentes los contenedores principales del tema
   para que se vea el body, PERO NO tocamos las secciones individuales. */
#page, .site-content, .site-main, .elementor-section-wrap {
    background-color: transparent;
}/* End custom CSS */