.elementor-kit-6{--e-global-color-primary:#138B9D;--e-global-color-secondary:#222F1C;--e-global-color-text:#ED746C;--e-global-color-accent:#14A29F;--e-global-color-d459cd5:#83CCD9;--e-global-color-d694832:#718E93;--e-global-color-5fb66eb:#F1E7DB;--e-global-color-ad2bcd7:#F7F6F5;--e-global-color-ca3ec89:#E5AA98;--e-global-typography-primary-font-family:"Lato";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Lato";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Lato";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Lato";--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){margin-block-end: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 */html, body {
  overflow-x: hidden !important;
}

/* Inicialmente transparente */
.sticky-header {
    --header-height: 75px;
    --opacity: 0;
    --shrink-me: 0.92;
    --sticky-background-color: #F7F6F5;
    --transition: .3s ease-in-out;

    background-color: transparent; /* Fondo transparente */
    transition: background-color var(--transition), 
                opacity var(--transition),
                backdrop-filter var(--transition),
                transform var(--transition);
}

/* Cambiar a color al hacer scroll */
.sticky-header.elementor-sticky--effects {
    background-color: var(--sticky-background-color) !important; /* Fondo con color */
    opacity: 1 !important;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

/* Transiciones para el contenedor */
.sticky-header > .elementor-container {
    transition: min-height var(--transition);
}

.sticky-header.elementor-sticky--effects > .elementor-container {
    min-height: calc(var(--header-height) * var(--shrink-me)) !important;
    height: calc(var(--header-height) * var(--shrink-me));
}

/* Transiciones para el logo */
.sticky-header .logo img {
    transition: transform var(--transition), opacity var(--transition);
}

.sticky-header.elementor-sticky--effects .logo img {
    transform: scale(.8); /* Escala más pequeña en sticky */
    opacity: 1;
}

/* Ajustes para pantallas móviles */
@media only screen and (max-width: 600px) {
    .sticky-header {
       header-height: 70px;
    }
}/* End custom CSS */