:root{
  --font-default: "Raleway";
  --font-secondary: "Segoe UI";
  --title-dark: #00effe;
  --bg-color-dark: black;  /* rgba(27, 47, 69, 1); */
  --bg-color-light: #edf0f5;
}


html, body {
    background-color: #edf0f5;
    width: 100%;
    height: fit-content;
    overflow-x: hidden;
}

img {
  max-width: 400px;
}

h2.dark {
  margin: 0;
  font-size: 68px;
  font-weight: 900;
  line-height: 69px;
  color: var(--bs-body-color);
  text-align: center;
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

h2.light {
  margin: 0;
  font-size: 68px;
  font-weight: 900;
  line-height: 69px;
  color: #FFF;
  text-align: center;
  font-family: var(--font-secondary);
  text-transform: uppercase;
}


h3.dark {
  font-size: 48px;
  line-height: 49px;
}

h3.light {
  font-size: 48px;
  line-height: 49px;
}

.link-cme {
  text-decoration: none;
  color: inherit;
  font-weight: 900;
  text-transform: uppercase;
  font-family: var(--font-secondary);
}

.link-cme:hover {
  color: #ffc705;
}


.line-divider
{
	position: relative;
	margin: 5px;
	height: 10px;
  opacity: 0.56;
  z-index: 1;
  mix-blend-mode: screen;
}

.div-transparent:before
{
	content: "";
	position: absolute;
	top: 0;
	left: 5%;
	right: 5%;
	width: 90%;
	height: 1px;
	background-image: linear-gradient(to right, transparent, rgb(185, 185, 185), transparent);
}

.div-arrow-down:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: -7px;
	left: calc(50% - 7px);
	width: 14px;
	height: 14px;
	transform: rotate(45deg);
	background-color: black;
	border-bottom: 1px solid rgb(185, 185, 185);
	border-right: 1px solid rgb(185, 185, 185);
}

.div-tab-down:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: calc(50% - 10px);
	width: 20px;
	height: 14px;
	background-color: black;
	border-bottom: 1px solid rgb(48,49,51);
	border-left: 1px solid rgb(48,49,51);
	border-right: 1px solid rgb(48,49,51);
	border-radius: 0 0 8px 8px;
}




.div-gray {
  mix-blend-mode:normal !important;
}

.div-gray:before {
	content: "";
	background-image: linear-gradient(to right, transparent, rgb(117, 117, 117), transparent) !important;
  mix-blend-mode:normal !important;
}






.div-stopper:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: -6px;
	left: calc(50% - 7px);
	width: 14px;
	height: 12px;
	background-color: whiblackte;
	border-left: 1px solid rgb(48,49,51);
	border-right: 1px solid rgb(48,49,51);
}

.div-dot:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: -9px;
	left: calc(50% - 9px);
	width: 18px;
	height: 18px;
	background-color: goldenrod;
	border: 1px solid rgb(48,49,51);
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px white,
					0 0 0 4px white;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    background: rgb(14, 15, 17);
}
  
  .hero .background {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    background-image: var(--hero-bg-desktop);
    background-size: cover;
    background-position: center top;
    margin: 0 auto;
    opacity: 0.65;
    /*mix-blend-mode: luminosity;*/
  }

  .hero .hero-banner-controls {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 6;
    transition: opacity 0.25s ease;
  }

  .hero .hero-banner-controls.is-hidden {
    opacity: 0;
    pointer-events: none;
  }

  .hero .hero-banner-btn,
  .hero .hero-banner-preview-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  }

  .hero .hero-banner-btn:hover,
  .hero .hero-banner-preview-btn:hover {
    transform: scale(1.08);
    background: rgba(255, 199, 5, 0.92);
    color: #111;
  }

  .hero .hero-banner-btn.is-active {
    background: rgba(255, 199, 5, 0.98);
    color: #111;
    border-color: rgba(255, 199, 5, 1);
  }


  .hero h2 {
    margin: 0;
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-align: center;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    padding-top: 100px;
  }
  
  .hero blockquote {
    color: #ffc705;
    font-size: 48px;
    font-family: var(--font-secondary);
    font-weight: 900;
    margin: 60px 0px 80px;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px black;
  }

  /* Keep AOS animations while ensuring Lighthouse can detect an LCP candidate in hero */
  .hero .lcp-safe[data-aos^="fade"],
  .hero .lcp-safe[data-aos^="zoom"] {
    opacity: 1 !important;
  }

  @media (min-width: 992px) {
    .hero {
      --hero-bg-offset-x-desktop: 90px;
    }

    .hero .background {
      background-position: calc(50% + var(--hero-bg-offset-x-desktop)) top;
    }

    .hero h2 {
      padding-top: 180px;
    }
  }

  @media (min-width: 577px) and (max-width: 991.98px) {
    .hero {
      --hero-bg-offset-x-tablet: 60px;
      --hero-bg-offset-y-tablet: -10px;
    }

    .hero .background {
      background-position: calc(50% + var(--hero-bg-offset-x-tablet)) calc(0% + var(--hero-bg-offset-y-tablet)) !important;
    }
  }

 
  
  
  @media (max-width: 1367px) {
    .hero {
      background-attachment: fixed;
    }

    .hero h2 {
      font-size: 80px;
    }

    .hero blockquote {
      font-size: 38px;
      margin: 30px 0px 40px;
    }
  }

  @media (max-width: 576px) {

    .hero {
        min-height: 90vh;
        position: relative;
        padding: 50px 0;
        --hero-bg-offset-y-mobile: -30px;
    }
    
    .hero h2 {
      font-size: 38px;
      letter-spacing: -1px;
      padding-top: 280px !important;
    }

    .hero blockquote {
      font-size: 28px;
      line-height: 30px;
      margin: 20px 0px 20px;
    }

    .hero .btn-principal {
      margin-bottom: 90px;
    }

    .hero .background {
        background-image: var(--hero-bg-mobile) !important;
        background-size: 180% !important;
        background-repeat: no-repeat !important;
        background-position: center calc(0% + var(--hero-bg-offset-y-mobile)) !important;

    }

    .hero .hero-banner-controls {
      right: 12px;
      top: 22px;
      transform: none;
      gap: 8px;
    }

    .hero .hero-banner-btn,
    .hero .hero-banner-preview-btn {
      width: 34px;
      height: 34px;
      font-size: 14px;
    }
  }

  @media (max-width: 390px) {
    .hero {
      --hero-bg-zoom-small: 200%;
      --hero-bg-offset-x-small: 0px;
      --hero-bg-offset-y-small: -30px;
    }

    .hero .background {
      background-repeat: no-repeat !important;
      background-size: var(--hero-bg-zoom-small) auto !important;
      background-position: calc(50% + var(--hero-bg-offset-x-small)) calc(0% + var(--hero-bg-offset-y-small)) !important;
    }
  }
  
  .mouse_scroll {
    position: absolute;
    width: 34px;
    height: 100px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-17px);
  }
  
    .m_scroll_arrows
  {
    display: block;
    width: 5px;
    height: 5px;
    -ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    transform: rotate(45deg);
     
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    margin: 0 0 3px 4px;
    
    width: 16px;
    height: 16px;
  }
  
  .arrow-container {
    width: 34px;
    position: relative;
    margin: 0 auto;
  }
  
  .unu
  {
    margin-top: 1px;
  }
  
  .unu, .doi, .trei
  {
      -webkit-animation: mouse-scroll 1s infinite;
      -moz-animation: mouse-scroll 1s infinite;
      animation: mouse-scroll 1s infinite;
    
  }
  
  .unu
  {
    -webkit-animation-delay: .1s;
    -moz-animation-delay: .1s;
    -webkit-animation-direction: alternate;
    
    animation-direction: alternate;
    animation-delay: alternate;
  }
  
  .doi
  {
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -webkit-animation-direction: alternate;
    
    animation-delay: .2s;
    animation-direction: alternate;
    
    margin-top: -6px;
  }
  
  .trei
  {
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    -webkit-animation-direction: alternate;
    
    animation-delay: .3s;
    animation-direction: alternate;
    
    
    margin-top: -6px;
  }
  
  .mouse {
    height: 52px;
    width: 34px;
    border-radius: 14px;
    transform: none;
    border: 2px solid white;
    left: -5px;
    position: relative;
    margin:0 auto;
  }
  
  .wheel {
    height: 9px;
    width: 3px;
    display: block;
    margin: 5px auto;
    background: white;
    position: relative;
    
    height: 12px;
    width: 6px;
    border: 2px solid #fff;
    -webkit-border-radius: 8px;
            border-radius: 8px;
  }
  
  .wheel {
    -webkit-animation: mouse-wheel 0.6s linear infinite;
    -moz-animation: mouse-wheel 0.6s linear infinite;
    animation: mouse-wheel 0.6s linear infinite;
  }
  
  @-webkit-keyframes mouse-wheel{
     0% {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
  
    100% {
      opacity: 0;
      -webkit-transform: translateY(12px);
      -ms-transform: translateY(12px);
      transform: translateY(12px);
    }
  }
  @-moz-keyframes mouse-wheel {
    0% { top: 1px; }
    25% { top: 2px; }
    50% { top: 3px;}
    75% { top: 2px;}
    100% { top: 1px;}
  }
  @-o-keyframes mouse-wheel {
  
     0% { top: 1px; }
    25% { top: 2px; }
    50% { top: 3px;}
    75% { top: 2px;}
    100% { top: 1px;}
  }
  @keyframes mouse-wheel {
  
     0% { top: 1px; }
    25% { top: 2px; }
    50% { top: 3px;}
    75% { top: 2px;}
    100% { top: 1px;}
  }
  
  @-webkit-keyframes mouse-scroll {
  
    0%   { opacity: 0;}
    50%  { opacity: .5;}
    100% { opacity: 1;}
  }
  @-moz-keyframes mouse-scroll {
  
    0%   { opacity: 0; }
    50%  { opacity: .5; }
    100% { opacity: 1; }
  }
  @-o-keyframes mouse-scroll {
  
    0%   { opacity: 0; }
    50%  { opacity: .5; }
    100% { opacity: 1; }
  }
  @keyframes mouse-scroll {
  
    0%   { opacity: 0; }
    50%  { opacity: .5; }
    100% { opacity: 1; }
  }

  



/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: linear-gradient(to bottom, #ffde05 5%, #ffc705 100%);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: black;
    line-height: 0;
}

.scroll-top:hover {
    background: rgba(86, 184, 230, 0.8);
    color: #fff;
    transition: all 0.4s;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--color-primary);
    border-top-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }

  
  .btn-principal {
    overflow: hidden;
    box-shadow: inset 0px -3px 7px 0px #ffde05;
    background: linear-gradient(to bottom, #ffde05 5%, #ffc705 100%);
    letter-spacing: 1px;
    border-width: 0px;
    width: 100%;
    border-radius: 60px;
    cursor: pointer;
    color: #000 !important;
    font-size: 46px !important;
    padding: 9px 52px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    font-weight: 900;
    width: fit-content;
    height: 92px;
    animation: bounceIn;
    animation-duration: 1s;
    transition-duration: 0.2s;
}

@media (max-width: 576px) {
  .btn-principal {
    letter-spacing: 0px;
    font-size: 23px !important;
    padding: 9px 25px;
    width: fit-content;
    height: 58px;
    animation: bounceIn;
    animation-duration: 1s;
    transition-duration: 0.2s;
}
}

.btn-principal.btn-sweep-to-right {
  overflow: hidden
}

.btn-principal.center {
    left: 50%;
    transform: translateX(-50%);
}
  
.btn-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: .3s;
  transition-duration: .3s
}

.btn-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out
}

.btn-sweep-to-right:active:before,.btn-sweep-to-right:focus:before,.btn-sweep-to-right:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.btn-container {
  width: fit-content;
  transform: scale(1);
  animation-duration: 1s;
  transition-duration: 0.2s;
  margin: 0 auto;
}

.btn-container:hover {
  transform: scale(1.1);
  animation-duration: 1s;
  transition-duration: 0.2s;
  
}

.btn-container:hover a {
  color: white !important;
}

.btn-container:hover a.dark {
  color: black !important;
}

.btn-container.btn-no-hover {
  transform: scale(1) !important;
}

.btn-principal.btn-no-hover.btn-sweep-to-right:before {
  -webkit-transform: scaleX(0) !important;
  transform: scaleX(0) !important;
}

.btn-container.btn-no-hover:hover a,
.btn-container.btn-no-hover:hover a.dark {
  color: inherit !important;
}

.btn-principal.btn-no-hover:hover .shake-text,
.btn-principal.btn-no-hover.dark:hover .shake-text {
  display: block !important;
  animation: none !important;
}

.shake-text {
  position: relative;
}

.btn-sweep-to-right:hover .shake-text {
  animation: shake 0.5s 1; /* Cambia 'infinite' a '1' para que se ejecute una vez */
  display: none;
  color: white;
}

.btn-sweep-to-right.dark:hover .shake-text {
  animation: shake 0.5s 1; /* Cambia 'infinite' a '1' para que se ejecute una vez */
  display: none;
  color: black;
}

.btn-sweep-to-right:before {
  background: rgba(0,0,0,1);
}

.btn-sweep-to-right.dark:before {
  background: white;
}

.btn-sweep-to-right:hover a {
  color: white !important;
}

.btn-sweep-to-right.dark:hover a {
  color: black !important;
}



@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}


.wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title-aprende {
    width: 100%;
    font-size: 52px;
    font-family: var(--font-secondary);
    font-weight: 900;
    margin: 20px 0px 40px;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px rgba(0,0,0, 0.3);
}
.title-aprende.yellow {
  color: #ffc705 !important; 
}

@media (max-width: 576px) {
  .title-aprende {
    width: 100%;
    font-size: 32px;
    line-height: 32px;
  }
}
/*.glitch {
  position: relative;
  animation: glitch-skew 10s infinite linear alternate-reverse;
}

.glitch::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  left: 2px;
  text-shadow: -2px 0 #ff00c1;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 10s infinite linear alternate-reverse;
}
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  left: -2px;
  text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
  animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip: rect(28px, 9999px, 192px, 0);
    transform: skew(0.98deg);
  }
  5% {
    clip: rect(34px, 9999px, 1px, 0);
    transform: skew(0.99deg);
  }
  10% {
    clip: rect(84px, 9999px, 86px, 0);
    transform: skew(0.51deg);
  }
  15% {
    clip: rect(74px, 9999px, 195px, 0);
    transform: skew(0.83deg);
  }
  20% {
    clip: rect(2px, 9999px, 95px, 0);
    transform: skew(0.65deg);
  }
  25% {
    clip: rect(71px, 9999px, 59px, 0);
    transform: skew(0.13deg);
  }
  30% {
    clip: rect(69px, 9999px, 186px, 0);
    transform: skew(0.13deg);
  }
  35% {
    clip: rect(80px, 9999px, 19px, 0);
    transform: skew(0.07deg);
  }
  40% {
    clip: rect(7px, 9999px, 96px, 0);
    transform: skew(0.3deg);
  }
  45% {
    clip: rect(96px, 9999px, 19px, 0);
    transform: skew(0.04deg);
  }
  50% {
    clip: rect(48px, 9999px, 84px, 0);
    transform: skew(0.93deg);
  }
  55% {
    clip: rect(62px, 9999px, 37px, 0);
    transform: skew(0.96deg);
  }
  60% {
    clip: rect(64px, 9999px, 82px, 0);
    transform: skew(0.86deg);
  }
  65% {
    clip: rect(7px, 9999px, 120px, 0);
    transform: skew(0.72deg);
  }
  70% {
    clip: rect(10px, 9999px, 92px, 0);
    transform: skew(0.91deg);
  }
  75% {
    clip: rect(20px, 9999px, 92px, 0);
    transform: skew(0.49deg);
  }
  80% {
    clip: rect(69px, 9999px, 17px, 0);
    transform: skew(0.96deg);
  }
  85% {
    clip: rect(87px, 9999px, 83px, 0);
    transform: skew(0.57deg);
  }
  90% {
    clip: rect(9px, 9999px, 142px, 0);
    transform: skew(1deg);
  }
  95% {
    clip: rect(33px, 9999px, 90px, 0);
    transform: skew(0.71deg);
  }
  100% {
    clip: rect(81px, 9999px, 74px, 0);
    transform: skew(0.41deg);
  }
}

@keyframes glitch-anim2 {
  0% {
    clip: rect(62px, 9999px, 65px, 0);
    transform: skew(0.24deg);
  }
  5% {
    clip: rect(2px, 9999px, 62px, 0);
    transform: skew(0.19deg);
  }
  10% {
    clip: rect(6px, 9999px, 171px, 0);
    transform: skew(0.18deg);
  }
  15% {
    clip: rect(81px, 9999px, 52px, 0);
    transform: skew(0.06deg);
  }
  20% {
    clip: rect(47px, 9999px, 63px, 0);
    transform: skew(0.49deg);
  }
  25% {
    clip: rect(95px, 9999px, 77px, 0);
    transform: skew(0.56deg);
  }
  30% {
    clip: rect(58px, 9999px, 178px, 0);
    transform: skew(0.9deg);
  }
  35% {
    clip: rect(55px, 9999px, 56px, 0);
    transform: skew(0.28deg);
  }
  40% {
    clip: rect(59px, 9999px, 58px, 0);
    transform: skew(0.73deg);
  }
  45% {
    clip: rect(12px, 9999px, 76px, 0);
    transform: skew(0.46deg);
  }
  50% {
    clip: rect(27px, 9999px, 34px, 0);
    transform: skew(0.52deg);
  }
  55% {
    clip: rect(25px, 9999px, 47px, 0);
    transform: skew(0.5deg);
  }
  60% {
    clip: rect(50px, 9999px, 26px, 0);
    transform: skew(0.1deg);
  }
  65% {
    clip: rect(49px, 9999px, 67px, 0);
    transform: skew(0.53deg);
  }
  70% {
    clip: rect(60px, 9999px, 97px, 0);
    transform: skew(0.37deg);
  }
  75% {
    clip: rect(84px, 9999px, 99px, 0);
    transform: skew(0.52deg);
  }
  80% {
    clip: rect(23px, 9999px, 90px, 0);
    transform: skew(0.64deg);
  }
  85% {
    clip: rect(77px, 9999px, 99px, 0);
    transform: skew(0.05deg);
  }
  90% {
    clip: rect(24px, 9999px, 38px, 0);
    transform: skew(0.15deg);
  }
  95% {
    clip: rect(1px, 9999px, 2px, 0);
    transform: skew(0.52deg);
  }
  100% {
    clip: rect(86px, 9999px, 24px, 0);
    transform: skew(0.5deg);
  }
}
@keyframes glitch-skew {
  0% {
    transform: skew(5deg);
  }
  10% {
    transform: skew(3deg);
  }
  20% {
    transform: skew(-4deg);
  }
  30% {
    transform: skew(-3deg);
  }
  40% {
    transform: skew(4deg);
  }
  50% {
    transform: skew(1deg);
  }
  60% {
    transform: skew(-1deg);
  }
  70% {
    transform: skew(-1deg);
  }
  80% {
    transform: skew(-3deg);
  }
  90% {
    transform: skew(2deg);
  }
  100% {
    transform: skew(-4deg);
  }
}
*/
