.elementor-kit-12{--e-global-color-primary:#111111;--e-global-color-text:#2A2A2A;--e-global-color-accent:#C8AA78;--e-global-color-secondary:#55452A;--e-global-color-ad8d68c:#C8AA78;--e-global-color-8c2ac40:#000000;--e-global-color-13ea906:#FFFFFF;--e-global-color-4b9451a:#FAF9F6;--e-global-color-be7479c:#D8D8D8;--e-global-typography-text-font-family:"Open Sans";--e-global-typography-text-font-size:1rem;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:180%;--e-global-typography-accent-font-family:"Open Sans";--e-global-typography-accent-font-size:1rem;--e-global-typography-accent-font-weight:600;--e-global-typography-accent-line-height:180%;--e-global-typography-02a9344-font-family:"Inter";--e-global-typography-02a9344-font-size:3rem;--e-global-typography-02a9344-font-weight:700;--e-global-typography-02a9344-line-height:125%;--e-global-typography-861e159-font-family:"Inter";--e-global-typography-861e159-font-size:2rem;--e-global-typography-861e159-font-weight:600;--e-global-typography-861e159-line-height:125%;color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );line-height:var( --e-global-typography-text-line-height );}.elementor-kit-12 a{color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-size:var( --e-global-typography-accent-font-size );font-weight:var( --e-global-typography-accent-font-weight );line-height:var( --e-global-typography-accent-line-height );}.elementor-kit-12 a:hover{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-size:var( --e-global-typography-accent-font-size );font-weight:var( --e-global-typography-accent-font-weight );line-height:var( --e-global-typography-accent-line-height );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1400px;}.e-con{--container-max-width:1400px;--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){--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:1366px){.elementor-kit-12{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}.elementor-kit-12 a{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}.elementor-kit-12 a:hover{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:95%;}.e-con{--container-max-width:95%;}}@media(max-width:1024px){.elementor-kit-12{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}.elementor-kit-12 a{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}.elementor-kit-12 a:hover{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:95%;}.e-con{--container-max-width:95%;}}@media(max-width:767px){.elementor-kit-12{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}.elementor-kit-12 a{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}.elementor-kit-12 a:hover{font-size:var( --e-global-typography-accent-font-size );line-height:var( --e-global-typography-accent-line-height );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:95%;}.e-con{--container-max-width:95%;}}/* Start custom CSS *//* === HEADERS BASE === */

.header-transparent,
.header-white {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* Header transparente visible al inicio */
.header-transparent {
  z-index: 20;
}

/* Header blanco por encima (lo controlará GSAP) */
.header-white {
  z-index: 21;
}

/* === NG | Button Shine - TU VERSIÓN ORIGINAL + ANTI-ESPACIO === */

/* 1. EL BOTÓN */
.ng-shine-btn .elementor-button {
  position: relative;
  z-index: 1;

  /* ESTA ES LA ÚNICA LÍNEA MIA: El seguro de vida. */
  /* Hace que aunque usemos tu width 200%, el navegador recorte lo que sobra */
  /* IMPORTANTE: Si tu botón es redondo, pon 'round 50px' o lo que corresponda */
  clip-path: inset(0 0 0 0 round 0px); 
}

/* 2. EL BRILLO (EXACTAMENTE TU CÓDIGO ORIGINAL) */
.ng-shine-btn .elementor-button::after {
  content: "";
  position: absolute;
  
  /* Tus dimensiones originales */
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;

  /* Tu degradado original exacto */
  background: linear-gradient(
    135deg,
    transparent 45%,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.05) 100%,
    transparent 55%
  );

  opacity: 0;
  
  /* Tus coordenadas de inicio */
  transform: translate(0, 0);
  
  /* Tus tiempos originales */
  transition: transform 1.1s ease, opacity 0.6s ease;
  
  pointer-events: none;
  will-change: transform, opacity;
  z-index: 0;
}

/* 3. HOVER (TU ANIMACIÓN ORIGINAL) */
.ng-shine-btn .elementor-button:hover::after {
  opacity: 1;
  /* Tu movimiento original */
  transform: translate(60%, 60%);
}

/* 4. ZOOM AL TEXTO (TU PREFERENCIA 1.05) */
.ng-shine-btn .elementor-button-content-wrapper {
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease;
}

.ng-shine-btn .elementor-button:hover .elementor-button-content-wrapper {
  transform: scale(1.05);
}

/* 5. SOPORTE MÓVIL */
@media (hover: none) and (pointer: coarse) {
  .ng-shine-btn .elementor-button:active::after {
    opacity: 1;
    transform: translate(60%, 60%);
  }
  .ng-shine-btn .elementor-button:active .elementor-button-content-wrapper {
    transform: scale(1);
  }
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/open-sans-v44-latin-300.woff2') format('woff2');
}
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 300;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/open-sans-v44-latin-300italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/open-sans-v44-latin-regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: normal;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/open-sans-v44-latin-italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/open-sans-v44-latin-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 500;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/open-sans-v44-latin-500italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/open-sans-v44-latin-600.woff2') format('woff2');
}
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 600;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/open-sans-v44-latin-600italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/open-sans-v44-latin-700.woff2') format('woff2');
}
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 700;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/open-sans-v44-latin-700italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 800;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/open-sans-v44-latin-800.woff2') format('woff2');
}
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 800;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/open-sans-v44-latin-800italic.woff2') format('woff2');
}
/* End Custom Fonts CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 100;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-100.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: italic;
	font-weight: 100;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-100italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 200;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-200.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: italic;
	font-weight: 200;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-200italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 300;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-300.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: italic;
	font-weight: 300;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-300italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: italic;
	font-weight: normal;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: italic;
	font-weight: 500;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-500italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-600.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: italic;
	font-weight: 600;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-600italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-700.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: italic;
	font-weight: 700;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-700italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 800;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-800.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: italic;
	font-weight: 800;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-800italic.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 900;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-900.woff2') format('woff2');
}
@font-face {
	font-family: 'Inter';
	font-style: italic;
	font-weight: 900;
	font-display: auto;
	src: url('https://test.namlaprojects.com/wp-content/uploads/inter-v20-latin-900italic.woff2') format('woff2');
}
/* End Custom Fonts CSS */