@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

a {
  all: unset;
}

body {
  background: #202327;
}

#parallax-header {
  height: 100vh;
  background-image: url(/assets/img/header/bg-image.png);
  background-size: cover;
  background-position: center 0px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Animación de escribir */
  /* Animación del cursor de máquina de escribir */
}
#parallax-header .typewriter {
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
  border-right: 0.15em solid rgb(0, 166, 255); /* Cursor de máquina de escribir */
  margin: 0 auto;
  color: white;
  margin-left: 1rem;
  letter-spacing: 0.15em;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
#parallax-header .typewriter #typed-h1 {
  font-size: 20px;
  white-space: nowrap; /* Evitar que el mensaje se divida en varias líneas por defecto */
}
#parallax-header .typewriter #typed-h4 {
  font-size: 8px;
  white-space: nowrap;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: rgb(0, 166, 255);
  }
}

#about-us {
  background: #292d3e;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-direction: column;
}
#about-us #navBar-corp {
  position: sticky;
  top: 20px; /* Distancia desde la parte superior donde se vuelve fijo */
  z-index: 100;
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: end;
  align-items: center;
}
#about-us #navBar-corp nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
#about-us #navBar-corp nav ul {
  font-size: 12px;
  opacity: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: 0.5s ease-in-out;
}
#about-us #navBar-corp nav ul li {
  position: relative;
  cursor: pointer;
  height: 50px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #2ab5ff;
  transition: 0.2s ease-in-out;
  padding: 1rem;
}
#about-us #navBar-corp nav ul li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #b99af7;
  transition: width 0.3s ease, background-color 0.3s ease;
}
#about-us #navBar-corp nav ul li:hover {
  color: rgb(88, 136, 255);
}
#about-us #navBar-corp nav ul li:hover::before {
  width: 100%;
}
#about-us #navBar-corp nav ul:hover {
  opacity: 1;
  transition: 0.5s ease-in-out;
}
#about-us .conteiner-grid {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-content: center;
  gap: 10px;
}
#about-us .conteiner-grid .item {
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  border-radius: 25px;
  height: 250px;
  width: 170px;
  background: linear-gradient(#202327, #171c24, #202327);
  display: flex;
  justify-content: center;
  align-items: center;
}
#about-us .conteiner-grid .item .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s ease-in-out;
}
#about-us .conteiner-grid .item .content img {
  transition: 0.5s ease-in-out;
  filter: grayscale(100%);
  width: 60%;
}
#about-us .conteiner-grid .item .content .hide {
  transition: 0.5s ease-in-out;
  display: none;
  color: white;
}
#about-us .conteiner-grid .item .content .hide h5 {
  font-weight: 200;
  transition: 0.5s ease-in-out;
}
#about-us .conteiner-grid .item .content .hide span {
  filter: blur(3px);
  transition: 1s ease-in-out;
}
#about-us .conteiner-grid .item:hover {
  transform: translateY(-25px);
  transition: 0.5s ease-in-out;
  box-shadow: 0 0 10px #6c5f95;
}
#about-us .conteiner-grid .item:hover img {
  transition: 0.5s ease-in-out;
  filter: grayscale(0);
  transform: scale(1.1);
}
#about-us .conteiner-grid .item:hover .hide {
  transition: 0.5s ease-in-out;
  display: flex;
  transform: translateY(50px);
}
#about-us .conteiner-grid .item:hover .hide span {
  filter: blur(0px);
  transition: 1s ease-in;
}
#about-us .acerca {
  width: 100%;
  padding: 2rem;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
#about-us .acerca a {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#about-us .acerca a img {
  width: 90px;
}

#divisiones {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#divisiones span {
  color: #2576a1;
}
#divisiones h2 {
  color: #ababab;
  font-weight: 400;
  font-size: 12px;
}

.Text-LineEffect {
  position: relative;
  font-size: 1.9rem;
  font-weight: 100;
  padding-bottom: 10px;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}
.Text-LineEffect::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: #b99af7;
  transition: left 0.8s;
}
.Text-LineEffect:hover::after {
  left: 0;
}

#footer {
  width: 100%;
}
#footer .content-footer {
  display: flex;
  justify-content: start;
}
#footer .content-footer .redes {
  height: 50px;
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
#footer .content-footer .redes .item i {
  font-size: 30px;
  color: #2ab5ff;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
#footer .content-footer .redes .item i:hover {
  color: #86d0ff;
  transform: translateY(-3px);
}
#footer .copyright-footer {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 5px;
}
#footer .copyright-footer p {
  color: #ffffff;
  font-size: 10px;
}
#footer .copyright-footer img {
  display: flex;
  width: 70px;
}

.icono-fijo {
  position: fixed;
  bottom: 10px;
  right: 4%;
}
.icono-fijo i {
  font-size: 4rem;
  transition: 0.2s ease-in-out;
  background: #1ec275;
  border-radius: 50%;
  padding: 0.5rem;
  color: white;
}
.icono-fijo i:hover {
  transform: scale(1.1);
}

#go-home {
  width: 100%;
  background: #2ab5ff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
}
#go-home a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
#go-home a:hover {
  background: #202327;
}
#go-home a:hover i {
  color: #2ab5ff;
}
#go-home i {
  color: white;
  font-size: 30px;
}

#container-about {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #202327;
  padding: 1rem;
}
#container-about h1 {
  color: #fff;
  font-size: medium;
}
#container-about #contenido-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 0.5rem;
}
#container-about #contenido-text .item-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 15px;
  background: #86d0ff;
  padding: 0.5rem;
  width: 100%;
  height: auto;
  border-radius: 10px;
  text-align: justify;
}
#container-about #contenido-text .item-about p {
  padding: 15px;
}
#container-about #contenido-text .item-about span {
  font-size: large;
  font-weight: bold;
}
#container-about #contenido-text .item-about .reya {
  border-left: 2px solid black;
}
#container-about #contenido-text .quienes-mision-vision {
  background-image: url(/assets/img/header/bg-image.png);
  background-size: cover;
  background-position: center 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

#container-about #contenido-text .dark {
  background: #171c24;
  color: #fff;
  overflow: hidden;
}
#container-about #contenido-text .dark img {
  width: 100%;
  transform: scale(1.2);
}

@media only screen and (min-width: 1024px) {
  #parallax-header {
    height: 100vh;
    background-image: url(/assets/img/header/bg-image.png);
    background-size: cover;
    background-position: center 0px;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  #parallax-header .typewriter {
    width: 100vw;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    border-right: 0.15em solid rgb(0, 166, 255); /* Cursor de máquina de escribir */
    margin: 0 auto;
    color: white;
    margin-left: 3rem;
    letter-spacing: 0.15em;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
  }
  #parallax-header .typewriter #typed-h1 {
    font-size: 35px;
    white-space: nowrap; /* Evitar que el mensaje se divida en varias líneas por defecto */
  }
  #parallax-header .typewriter #typed-h4 {
    font-size: 18px;
    white-space: nowrap;
  }
  #about-us {
    height: 100vh;
    background: #292d3e;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-direction: column;
  }
  #about-us #navBar-corp {
    position: sticky;
    top: 20px; /* Distancia desde la parte superior donde se vuelve fijo */
    z-index: 100;
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: end;
    align-items: center;
  }
  #about-us #navBar-corp nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #about-us #navBar-corp nav ul {
    opacity: 0.2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.5s ease-in-out;
    font-size: 18px;
  }
  #about-us #navBar-corp nav ul li {
    position: relative;
    cursor: pointer;
    height: 50px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #2ab5ff;
    transition: 0.2s ease-in-out;
    padding: 1rem;
  }
  #about-us #navBar-corp nav ul li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #b99af7;
    transition: width 0.3s ease, background-color 0.3s ease;
  }
  #about-us #navBar-corp nav ul li:hover {
    color: rgb(88, 136, 255);
  }
  #about-us #navBar-corp nav ul li:hover::before {
    width: 100%;
  }
  #about-us #navBar-corp nav ul:hover {
    opacity: 1;
    transition: 0.5s ease-in-out;
  }
  #about-us .conteiner-grid {
    display: grid;
    height: 100vh;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: center;
    align-content: center;
    gap: 20px;
  }
  #about-us .conteiner-grid .item {
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s ease-in-out;
    border-radius: 25px;
    height: 375px;
    width: 250px;
    background: linear-gradient(#202327, #171c24, #202327);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #about-us .conteiner-grid .item .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s ease-in-out;
  }
  #about-us .conteiner-grid .item .content img {
    transition: 0.5s ease-in-out;
    filter: grayscale(100%);
    width: 60%;
  }
  #about-us .conteiner-grid .item .content .hide {
    transition: 0.5s ease-in-out;
    display: none;
    color: white;
  }
  #about-us .conteiner-grid .item .content .hide h5 {
    font-weight: 200;
    transition: 0.5s ease-in-out;
  }
  #about-us .conteiner-grid .item .content .hide span {
    filter: blur(3px);
    transition: 1s ease-in-out;
  }
  #about-us .conteiner-grid .item:hover {
    transform: translateY(-25px);
    transition: 0.5s ease-in-out;
    box-shadow: 0 0 10px #6c5f95;
  }
  #about-us .conteiner-grid .item:hover img {
    transition: 0.5s ease-in-out;
    filter: grayscale(0);
    transform: scale(1.1);
  }
  #about-us .conteiner-grid .item:hover .hide {
    transition: 0.5s ease-in-out;
    display: flex;
    transform: translateY(50px);
  }
  #about-us .conteiner-grid .item:hover .hide span {
    filter: blur(0px);
    transition: 1s ease-in;
  }
  #about-us .acerca {
    width: 100%;
    padding: 2rem;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: start;
    align-items: center;
  }
  #about-us .acerca a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  #divisiones {
    justify-content: start;
    padding-left: 2rem;
  }
  #divisiones h2 {
    font-size: 20px;
  }
  #container-about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #202327;
    padding: 3rem;
  }
  #container-about h1 {
    color: #fff;
    font-size: 25px;
  }
  #container-about #contenido-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 2rem;
  }
  #container-about #contenido-text .item-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 15px;
    background: #86d0ff;
    padding: 0.5rem;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    text-align: justify;
  }
  #container-about #contenido-text .quienes-mision-vision {
    background-image: url(/assets/img/header/bg-image.png);
    background-size: cover;
    background-position: center 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}/*# sourceMappingURL=styles.css.map */