.elementor-kit-12{--e-global-color-primary:#4F544E;--e-global-color-secondary:#FFFFFF;--e-global-color-text:#6D6D6D;--e-global-color-accent:#8C9288;--e-global-color-f35e2bf:#C9CDC6;--e-global-color-bd92218:#4F544E;--e-global-color-406ce41:#E4E6E2;--e-global-typography-primary-font-family:"Inter Tight";--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 Tight";--e-global-typography-accent-font-weight:600;--e-global-typography-c24425b-font-family:"Inter Tight";--e-global-typography-c24425b-font-size:clamp(36px, 4vw + 20px, 80px);--e-global-typography-c24425b-font-weight:700;--e-global-typography-78c0b76-font-family:"Inter Tight";--e-global-typography-78c0b76-font-size:clamp(30px, 2.93vw + 20px, 64px);--e-global-typography-78c0b76-font-weight:700;--e-global-typography-fe1bd08-font-family:"Inter Tight";--e-global-typography-fe1bd08-font-size:clamp(24px, 1.87vw + 20px, 48px);--e-global-typography-fe1bd08-font-weight:700;--e-global-typography-92b5582-font-family:"Inter Tight";--e-global-typography-92b5582-font-size:clamp(20px, 1.07vw + 20px, 36px);--e-global-typography-92b5582-font-weight:600;--e-global-typography-0c3d82c-font-family:"Inter Tight";--e-global-typography-0c3d82c-font-size:clamp(18px, 0.4vw + 18px, 24px);--e-global-typography-0c3d82c-font-weight:600;--e-global-typography-f3a6ced-font-family:"Inter Tight";--e-global-typography-f3a6ced-font-size:clamp(16px, 0.13vw + 18px, 20px);--e-global-typography-f3a6ced-font-weight:500;--e-global-typography-158037d-font-family:"Inter";--e-global-typography-158037d-font-size:clamp(13px, 0.13vw + 12px, 14px);--e-global-typography-3bda55b-font-family:"Inter";--e-global-typography-3bda55b-font-size:clamp(15px, 0.13vw + 16px, 18px);--e-global-typography-9d51f76-font-family:"Inter";--e-global-typography-9d51f76-font-size:clamp(16px, 0.27vw + 16px, 20px);}.elementor-kit-12 e-page-transition{background-color:#FFBC7D;}.elementor-kit-12 a{color:var( --e-global-color-accent );}.elementor-kit-12 a:hover{color:var( --e-global-color-bd92218 );}.elementor-kit-12 img:hover{border-radius:30px 30px 30px 30px;opacity:2;}.elementor-kit-12 img{transition-duration:1s;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1440px;}.e-con{--container-max-width:1440px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.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);}@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 {
        scroll-behavior: auto;
    }


body {
        overflow-x: hidden;
    }

.scroll-container {
        overflow: visible;
        will-change: transform;
        transition: transform 0.2s ease; 
    }
 


 .sticky-section {
    transition: position 0.2s ease; 
    }
    



/* Butones*/

.st-btn-2 .elementor-button-icon {
  position: relative;
  display: inline-block;
}

.st-btn-2 .elementor-button-icon svg {
  opacity: 1;
  transform: translate(0, 0);
  transition: none;
  position: relative;
  z-index: 2;
}

/* Clon del icono para entrada (abajo izquierda) */
.st-btn-2 .elementor-button-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon points='7 7 15.586 7 5.293 17.293 6.707 18.707 17 8.414 17 17 19 17 19 5 7 5 7 7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon points='7 7 15.586 7 5.293 17.293 6.707 18.707 17 8.414 17 17 19 17 19 5 7 5 7 7'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  opacity: 0;
  transform: translate(-40%, 40%);
  transition: none;
  z-index: 1;
}

/* Animaciones en hover */
.st-btn-2 .elementor-button:hover .elementor-button-icon svg {
  animation: icon-exit-diagonal 0.3s ease forwards;
}

.st-btn-2 .elementor-button:hover .elementor-button-icon::after {
  animation: icon-enter-diagonal 0.3s ease 0.3s forwards;
}
@keyframes icon-exit-diagonal {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(45%, -45%);
  }
}

@keyframes icon-enter-diagonal {
  0% {
    opacity: 0;
    transform: translate(-40%, 40%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}/* End custom CSS */