/* === HEADER STICKY & TRANSICIONES === */
.elementor-location-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: transform 0.4s ease-in-out;
}

/* Ocultar header cuando se hace scroll hacia abajo */
.header-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

/* Para que no interfiera en el editor de Elementor */
body.elementor-editor-active .elementor-location-header {
    position: static !important;
    transform: none !important;
    pointer-events: all !important;
}
body.elementor-editor-active {
    padding-top: 0 !important;
}
