.elementor-kit-6{--e-global-color-primary:#0D0D0E;--e-global-color-secondary:#E7E7E721;--e-global-color-text:#F7F7F7;--e-global-color-accent:#F32F3D;--e-global-color-d67b8bf:#0D0D0E;--e-global-color-d6cc9f8:#E7E7E721;--e-global-color-ed82c0f:#F7F7F7;--e-global-color-d27cd40:#F32F3D;--e-global-typography-primary-font-family:"Open Sans";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Open Sans";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Open Sans";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Open Sans";--e-global-typography-accent-font-weight:500;--e-page-transition-entrance-animation:e-page-transition-slide-out-right;--e-page-transition-exit-animation:e-page-transition-slide-in-left;--e-page-transition-animation-duration:300ms;--e-preloader-animation:bounce;--e-preloader-animation-duration:1500ms;--e-preloader-delay:0ms;--e-preloader-width:3%;}.elementor-kit-6 e-page-transition{background-color:var( --e-global-color-d67b8bf );}.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;}.elementor-kit-6{--e-preloader-width:11%;}}/* Start custom CSS *//* === GENERALES === */
html, body {
  overflow-x: hidden;
}

.grecaptcha-badge {
  opacity: 0;
}


/* 
==== ORIGINAL CIRCULAR CURSOR (COMENTADO) ====

@media only screen and (min-width: 1000px) {
  body {
    cursor: none;
  }

  #cursorz {
    z-index: 1000000;
    pointer-events: none;
    width: 1.3rem;
    height: 1.3rem;
    will-change: transform;
    background: #f1f1f1;
    position: absolute;
    mix-blend-mode: difference;
    border-radius: 50%;
    animation: grow-shrink 4s infinite alternate;
  }

  #cursorz.cursor-link {
    animation-duration: 0.3s;
  }

  @keyframes grow-shrink {
    0% {
      transform: scale(1.0);
    }
    25% {
      transform: scale(0.9);
    }
    50% {
      transform: scale(1.0);
    }
    75% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }
}
*/


/* === CURSOR PERSONALIZADO SVG === */
@media only screen and (min-width: 1000px) {
  body:not(.elementor-editor-active) * {
    cursor: none !important;
  }

  #cursorz {
    position: fixed;
    top: 0;
    left: 0;
    width: 1.3rem;
    height: 1.3rem;
    pointer-events: none;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center;
    transition: transform 0.2s ease-in-out;
    mix-blend-mode: difference;
  }

  #cursorz.hovering {
    transform: translate(-50%, -50%) scale(2);
  }

  #cursorz svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
    pointer-events: none;
    animation: pulse 1.5s ease-in-out infinite;
    transition: transform 0.2s ease-in-out;
  }

  #cursorz.hovering svg {
    animation: none;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.15);
    }
  }
}

/* === Oculta completamente el cursor en móviles === */
@media only screen and (max-width: 999px) {
  #cursorz {
    display: none !important;
  }
}/* End custom CSS */