* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  background: #d9d9d9;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.header {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  background: #fff;
  padding: 40px 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px 20px 0 0;
}
.header__titulo {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.header__menu {
  display: flex;
  gap: 50px;
}
.header__link {
  font-weight: 600;
  color: #000;
}
.header__link:hover {
  color: #255ecd;
}

.hero {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  min-height: 500px;
  display: grid;
  grid-template-columns: 55% 45%;
}
.hero__info {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 65px;
}
.hero__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__titulo {
  font-size: 34px;
  font-weight: 700;
  display: inline-block;
  position: relative;
}
.hero__subtitulo {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
  color: #255ecd;
}
.hero__cursor {
  display: none;
  height: 34px;
  width: 34px;
  color: #8b8b8b;
  position: absolute;
  top: 4px;
  right: -30px;
}
.hero__cursor--visible {
  display: block;
}
.hero__cursor--active {
  animation: cursor 0.8s linear 0s infinite alternate;
}
@keyframes cursor {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero__cursor-icono {
  height: 100%;
  width: 100%;
}
.hero__resumen {
  line-height: 24px;
  font-size: 16px;
  color: #8c8c8c;
  margin-bottom: 20px;
}
.hero__redes {
  display: flex;
  gap: 10px;
}
.hero__red {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 40px;
}
.hero__red--github {
  background: #656565;
}
.hero__red--linkedin {
  background: #0077b5;
}
.hero__red--email {
  background: #656565;
}
.hero__icono {
  width: 100%;
  height: 100%;
  color: #fff;
}
.hero__contenedor-foto {
  position: relative;
}
.hero__foto {
  vertical-align: top;
  width: 100%;
}
.hero__burbuja {
  background: #000;
  padding: 20px;
  border-radius: 100px;
  color: #fff;
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  user-select: none;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  bottom: -50px;
  opacity: 0;
}
.hero__burbuja--naranja {
  transition: 1s ease-in-out all;
  width: 100px;
  background: #e49318;
  left: -50px;
}
.hero__burbuja--azul {
  transition: 1s ease-in-out all 0.2s;
  width: 200px;
  background: #255ecd;
  right: -50px;
}
.hero__burbuja--active-1 {
  transform: translateY(-100px);
  opacity: 1;
}
.hero__burbuja--active-2 {
  transform: translateY(-170px);
  opacity: 1;
}

.trabajos {
  background: #0d0e26;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 40px 65px;
}
.trabajos__header {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
.trabajos__titulo {
  margin-bottom: 10px;
}
.trabajos__trabajo {
  opacity: 0;
  transition: 0.5s ease all;
}
.trabajos__trabajo--visible {
  opacity: 1;
}
.trabajos__imagenes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.trabajos__imagen {
  width: 100%;
}

.comentarios {
  background: #f1f1f1;
  padding: 40px 0 40px 65px;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  text-align: center;
  border-radius: 0 0 15px 15px;
}
.comentarios__header {
  margin-bottom: 40px;
}
.comentarios__titulo {
  margin-bottom: 10px;
}
.comentarios__slider {
  display: grid;
  grid-template-rows: 1fr;
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  user-select: none;
  padding-right: 20px;
}
.comentarios__review {
  min-width: 400px;
  padding-bottom: 10px;
  position: relative;
}
.comentarios__contenedor-foto {
  position: relative;
  top: 40px;
  margin-top: -40px;
}
.comentarios__contenedor-textos {
  background: #fff;
  padding: 60px 20px 20px 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comentarios__foto {
  width: 80px;
  height: 80px;
  border-radius: 80px;
}
.comentarios__texto {
  font-size: 14px;
  color: #6f6f6f;
  margin-bottom: 20px;
}
.comentarios__autor {
  color: #255ecd;
  font-weight: 600;
  font-size: 14px;
}
.comentarios__empresa {
  font-size: 14px;
}

.footer {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  text-align: center;
  padding: 40px 0px;
}
.footer__titulo {
  margin-bottom: 10px;
  font-size: 24px;
}
.footer__subtitulo {
  margin-bottom: 40px;
}
.footer__redes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer__red {
  width: 70px;
  height: 70px;
  border-radius: 70px;
  color: #fff;
  padding: 24px;
}
.footer__red--github {
  background: #1da1f2;
}
.footer__red--linkedin {
  background: #0077b5;
}
.footer__red--email {
  background: #656565;
}
.footer__icono {
  width: 100%;
  height: 100%;
}

.ventana {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
}
.ventana--active {
  display: block;
}
.ventana__overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ventana__correo {
  width: 90%;
  max-width: 600px;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  position: relative;
}
.ventana__btn-cerrar {
  position: absolute;
  right: -40px;
  top: -40px;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  pointer-events: initial;
}
.ventana__icono-cerrar {
  width: 100%;
  height: 100%;
}
.ventana__titulo {
  font-size: 24px;
}
.ventana__imagen-correo {
  width: 300px;
}
.ventana__hint {
  font-size: 16px;
  color: #8c8c8c;
}
.ventana__body {
  background: #fff;
  padding: 5px;
  width: 90%;
  max-width: 900px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  position: relative;
  pointer-events: initial;
}
.ventana__imagen {
  width: 100%;
  border-radius: 5px;
  vertical-align: top;
}
.ventana__fecha {
  font-size: 14px;
  color: #8c8c8c;
}
.ventana__parrafo {
  line-height: 24px;
}
.ventana__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}
.ventana__website {
  pointer-events: initial;
}
.ventana__github {
  pointer-events: initial;
}

/*# sourceMappingURL=bundle.css.map */
