.elementor-kit-3828{--e-global-color-primary:#1B1B1B;--e-global-color-secondary:#F0F1F1;--e-global-color-text:#1B1B1B;--e-global-color-accent:#A4F100;--e-global-color-c8b53aa:#1B1B1B;--e-global-typography-primary-font-family:"Playfair";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Playfair";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-3828 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){--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: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: auto;
  height: auto;
}


.bienvenida {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #000; /* o el color que quieras */
  
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOut 1s ease-in-out 3s forwards;
}

.pregunta {
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  animation: fadeIn 1s ease-in-out 4s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    visibility: visible;
  }
}




#preloader-repo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1B1B1B;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 1s ease;
}

#preloader-repo .loader-text {
  font-family: 'Blink Twice', sans-serif;
  font-size: 24px;
  color: #F0F1F1;
  animation: fadeIn 1s ease-in-out infinite alternate;
}

body.noscroll {
  overflow: hidden;
}

@keyframes fadeIn {
  from { opacity: 0.4; }
  to { opacity: 1; }
}/* End custom CSS */