@charset "UTF-8";
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --p-bc: #0f172a;
  --s-bc: #17263e;
  --p-text-c: #ffffff;
  --s-text-c: #8892b0;
  --p-font-family: "Montserrat", sans-serif;
  --s-font-family: "Orbitron", sans-serif;
  --mobile-title-font-size: 36px;
  --mobile-text-font-size: 16px;
  --desktop-title-font-size: 50px;
  --desktop-text-font-size: 22px;
  --nav-height: 70px;
  --nav-sidebar-width: 75vw;
}

.button {
  width: auto;
  height: 40px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--p-font-family);
  font-size: 13px;
  text-decoration: none;
  text-align: center;
  /*outline: none;*/
  border: none;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  cursor: pointer;
}
.button--full-width {
  width: 100%;
}
.button--primary {
  background: linear-gradient(90deg, #4915F8 0%, #49FFBD 100%);
  color: #fff;
  transition: 0.5s;
}
.button--primary:hover {
  background-size: 200% auto;
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}
.button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #cecece;
}
.button--danger {
  background-color: red;
  color: #fff;
}
.button--success {
  background-color: #6ab04c;
  color: #fff;
}
.button--default {
  background-color: #EFEFEF;
  color: #000000;
}
.button--disabled {
  opacity: 0.5;
}

html {
  scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
  width: 22px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  box-shadow: inset 0 0 10px 10px var(--s-text-c);
  border: solid 7px transparent;
}

body {
  background-attachment: fixed;
  background-image: radial-gradient(ellipse 100% 80% at 0% 0%, color-mix(in oklab, #3b82f6 20%, transparent) 0px, transparent 70%), radial-gradient(ellipse 90% 70% at 100% 100%, color-mix(in oklab, #1e3a8a 15%, transparent) 0px, transparent 60%), linear-gradient(135deg, color-mix(in oklab, #17263e 8%, transparent) 0%, transparent 50%);
  background-color: var(--p-bc);
  font-family: var(--p-font-family);
  line-height: 1.5;
}
body.lock {
  overflow: hidden;
}

.nav-header {
  width: 100%;
  height: var(--nav-height);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(15, 23, 42, 0.85);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 10;
  transition: top 0.3s;
  -webkit-transition: top 0.3s;
  -moz-transition: top 0.3s;
  -ms-transition: top 0.3s;
  -o-transition: top 0.3s;
}
.nav-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-bar__logo {
  font-family: var(--s-font-family);
  font-size: 16px;
}
.nav-bar__logo a {
  text-decoration: none;
  color: var(--p-text-c);
}
.nav-bar__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-bar__item {
  list-style-type: none;
  font-family: var(--p-font-family);
  margin: 0 15px;
}
.nav-bar__item a {
  text-decoration: none;
  color: var(--s-text-c);
  padding: 10px;
}
.nav-bar__item a:hover {
  color: var(--p-text-c);
}
.nav-bar__item a:focus {
  color: var(--p-text-c);
}
.nav-bar__toggle {
  color: var(--s-text-c);
  background-color: transparent;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 9;
}
.nav-bar__toggle:hover {
  color: var(--p-text-c);
}
.nav-panel {
  width: var(--nav-sidebar-width);
  height: 100vh;
  position: fixed;
  top: 0;
  right: calc(var(--nav-sidebar-width) * -1);
  background-color: var(--s-bc);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 8;
  transition: all 0.25s;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
}
.nav-panel--active {
  right: 0;
}
.nav-sidebar {
  width: 100%;
}
.nav-sidebar__items {
  width: 100%;
}
.nav-sidebar__item {
  width: 100%;
  list-style-type: none;
  font-family: var(--p-font-family);
  margin-bottom: 10px;
}
.nav-sidebar__item a {
  width: 100%;
  padding: 20px;
  text-align: center;
  display: block;
  color: var(--p-text-c);
  text-decoration: none;
}

.main.blur {
  filter: blur(5px);
  -webkit-filter: blur(5px);
}

.cover {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cover__logo {
  font-family: var(--s-font-family);
  color: var(--p-text-c);
  font-weight: normal;
}
.cover__title {
  color: var(--s-text-c);
  font-family: var(--p-font-family);
  text-align: center;
}

.section-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-container__title {
  font-family: var(--s-font-family);
  color: #4b546d;
  text-align: center;
}
.section-container__description {
  width: 100%;
  font-family: var(--p-font-family);
  color: var(--p-text-c);
}

.services {
  width: 100%;
}
.services__info {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background-attachment: fixed;
  background-image: radial-gradient(ellipse 100% 80% at 0% 0%, color-mix(in oklab, #3b82f6 20%, transparent) 0px, transparent 70%), radial-gradient(ellipse 90% 70% at 100% 100%, color-mix(in oklab, #1e3a8a 15%, transparent) 0px, transparent 60%), linear-gradient(135deg, color-mix(in oklab, #17263e 8%, transparent) 0%, transparent 50%);
  background-color: var(--p-bc);
}
.services__images {
  width: 100%;
}

.service__title {
  color: var(--p-text-c);
  font-weight: bold;
}
.service__description {
  color: var(--s-text-c);
}
.service__images {
  position: relative;
  width: 100%;
  height: 100vh;
}
.service__img {
  position: absolute;
}
.service__img--opt1-vphone1 {
  bottom: 0;
  right: 5vw;
  transform: translateY(40%);
  -webkit-transform: translateY(40%);
  -moz-transform: translateY(40%);
  -ms-transform: translateY(40%);
  -o-transform: translateY(40%);
}
.service__img--opt1-vphone2 {
  bottom: 0;
  right: 4vw;
  transform: translateY(200%);
  -webkit-transform: translateY(200%);
  -moz-transform: translateY(200%);
  -ms-transform: translateY(200%);
  -o-transform: translateY(200%);
}
.service__img--opt1-vphone3 {
  bottom: 0;
  left: 3vw;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
}
.service__img--opt2-vtablet {
  bottom: 0;
  left: 4vw;
  transform: translateY(180%);
  -webkit-transform: translateY(180%);
  -moz-transform: translateY(180%);
  -ms-transform: translateY(180%);
  -o-transform: translateY(180%);
}
.service__img--opt2-vphone1 {
  bottom: 0;
  right: 3vw;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
}
.service__img--opt2-vphone2 {
  bottom: 0;
  left: 2vw;
  transform: translateY(40%);
  -webkit-transform: translateY(40%);
  -moz-transform: translateY(40%);
  -ms-transform: translateY(40%);
  -o-transform: translateY(40%);
}
.service__img--opt3-htablet {
  bottom: 0;
  left: 1vw;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
}
.service__img--opt3-laptop {
  bottom: 0;
  right: 1vw;
  transform: translateY(120%);
  -webkit-transform: translateY(120%);
  -moz-transform: translateY(120%);
  -ms-transform: translateY(120%);
  -o-transform: translateY(120%);
}
.service__img--opt4-vtablet {
  bottom: 0;
  left: 1vw;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
}
.service__img--opt4-laptop {
  bottom: 0;
  right: 1vw;
  transform: translateY(120%);
  -webkit-transform: translateY(120%);
  -moz-transform: translateY(120%);
  -ms-transform: translateY(120%);
  -o-transform: translateY(120%);
}
.service__img--opt5-vphone1 {
  bottom: 0;
  left: 4vw;
  transform: translateY(180%);
  -webkit-transform: translateY(180%);
  -moz-transform: translateY(180%);
  -ms-transform: translateY(180%);
  -o-transform: translateY(180%);
}
.service__img--opt5-vphone2 {
  bottom: 0;
  right: 3vw;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
}
.service__img--opt5-vphone3 {
  bottom: 0;
  left: 2vw;
  transform: translateY(40%);
  -webkit-transform: translateY(40%);
  -moz-transform: translateY(40%);
  -ms-transform: translateY(40%);
  -o-transform: translateY(40%);
}

.projects {
  width: 100%;
  height: auto;
}
.projects-list {
  list-style-type: none;
}

.project-card {
  width: 100%;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
}
.project-card__image {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  z-index: 1;
}
.project-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.project-card__info {
  color: var(--p-text-c);
  position: relative;
  z-index: 5;
}
.project-card__title {
  font-size: 22px;
  font-weight: bold;
}
.project-card__description {
  margin-top: 20px;
}
.project-card__button {
  margin-top: 20px;
}

.contact {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact__title {
  text-align: center;
  font-size: var(--mobile-title-font-size);
  color: var(--p-text-c);
}
.contact__description {
  text-align: center;
  font-size: var(--mobile-text-font-size);
  color: var(--s-text-c);
  margin-bottom: 20px;
}

.form {
  width: 100%;
  padding: 20px;
  position: relative;
}
.form--card {
  background-color: var(--s-bc);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.form__input {
  font-family: var(--p-font-family);
  width: 100%;
  height: 50px;
  border: 1px solid white;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  outline: none;
  background-color: transparent;
  padding-left: 15px;
  color: white;
}
.form__input::-moz-placeholder {
  color: var(--s-text-c);
}
.form__input::placeholder {
  color: var(--s-text-c);
}
.form__input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--s-text-c);
}
.form__input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--s-text-c);
}
.form__input--textarea {
  color: white;
  padding-top: 15px;
  height: 150px;
  resize: none;
}

.footer {
  width: 100%;
  height: auto;
  color: var(--s-text-c);
}
.footer span {
  font-family: var(--s-font-family);
}
.footer__contact {
  width: 100%;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.footer__logo {
  width: 350px;
  height: auto;
}
.footer__link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  color: var(--s-text-c);
  font-size: 24px;
}
.footer__list {
  list-style-type: none;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

@keyframes cursorBlink {
  0% {
    border-right-color: white;
  }
  to {
    border-right-color: transparent;
  }
}
/* Media queries para dispositivos móviles */
@media (max-width: 1024px) {
  .nav-header {
    padding: 0 20px;
  }
  .nav-bar__items {
    display: none;
  }
  .main {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .cover {
    height: 50vh;
  }
  .cover__logo {
    font-size: 52px;
  }
  .cover__title {
    font-size: var(--mobile-text-font-size);
  }
  .section-container {
    height: 50vh;
  }
  .section-container__title {
    font-size: var(--mobile-title-font-size);
  }
  .section-container__description {
    font-size: var(--mobile-text-font-size);
  }
  .services__info {
    width: 100%;
    padding: var(--nav-height) 20px 20px 20px;
  }
  .services__images {
    width: 100%;
  }
  .service__icon {
    font-size: 36px;
  }
  .service__title {
    margin-top: 10px;
    font-size: var(--mobile-title-font-size);
  }
  .service__description {
    margin-top: 10px;
    font-size: var(--mobile-text-font-size);
  }
  .service__images {
    margin-top: 50vh;
  }
  .service__img--opt1-vphone1 {
    height: 50vh;
  }
  .service__img--opt1-vphone2 {
    height: 35vh;
  }
  .service__img--opt1-vphone3 {
    height: 50vh;
  }
  .service__img--opt2-vtablet {
    height: 45vh;
  }
  .service__img--opt2-vphone1 {
    height: 50vh;
  }
  .service__img--opt2-vphone2 {
    height: 50vh;
  }
  .service__img--opt3-htablet {
    height: 30vh;
  }
  .service__img--opt3-laptop {
    height: 20vh;
  }
  .service__img--opt4-vtablet {
    height: 40vh;
  }
  .service__img--opt4-laptop {
    height: 20vh;
  }
  .service__img--opt5-vphone1 {
    height: 35vh;
  }
  .service__img--opt5-vphone2 {
    height: 50vh;
  }
  .service__img--opt5-vphone3 {
    height: 50vh;
  }
  .projects {
    margin-top: 40vh;
  }
  .project-card {
    background-color: var(--s-bc);
    margin-bottom: 40px;
  }
  .project-card__image {
    width: 100%;
    opacity: 0.1;
  }
  .project-card__button {
    width: 100%;
  }
  .img-gallery {
    width: 100%;
    height: auto;
    vertical-align: middle;
    overflow: clip;
  }
}
/* Media queries para escritorio */
@media (min-width: 1025px) {
  .nav-header {
    padding: 0 50px;
  }
  .nav-bar__mobile-opts {
    display: none;
  }
  .main {
    padding-left: 150px;
    padding-right: 150px;
  }
  .cover {
    height: 100vh;
  }
  .cover__logo {
    font-family: var(--s-font-family);
    color: var(--p-text-c);
    font-size: 180px;
  }
  .cover__title {
    font-size: var(--desktop-text-font-size);
  }
  .section-container {
    height: 100vh;
    position: relative;
  }
  .section-container__title {
    font-size: 150px;
    margin-bottom: 10%;
  }
  .section-container__description {
    font-size: var(--desktop-text-font-size);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
  .services {
    width: 100%;
    display: flex;
  }
  .services__info {
    width: 50%;
    padding: 100px 40px 10px 100px;
  }
  .services__images {
    width: 50%;
    margin-left: 50%;
  }
  .service__icon {
    font-size: 50px;
  }
  .service__title {
    margin-top: 30px;
    font-size: var(--desktop-title-font-size);
  }
  .service__description {
    margin-top: 30px;
    font-size: var(--desktop-text-font-size);
  }
  .service__images {
    margin-top: 100vh;
  }
  .service__img--opt1-vphone1 {
    height: 70vh;
  }
  .service__img--opt1-vphone2 {
    height: 60vh;
  }
  .service__img--opt1-vphone3 {
    height: 70vh;
  }
  .service__img--opt2-vtablet {
    height: 65vh;
  }
  .service__img--opt2-vphone1 {
    height: 70vh;
  }
  .service__img--opt2-vphone2 {
    height: 70vh;
  }
  .service__img--opt3-htablet {
    height: 50vh;
  }
  .service__img--opt3-laptop {
    height: 40vh;
  }
  .service__img--opt4-vtablet {
    height: 60vh;
  }
  .service__img--opt4-laptop {
    height: 40vh;
  }
  .service__img--opt5-vphone1 {
    height: 55vh;
  }
  .service__img--opt5-vphone2 {
    height: 70vh;
  }
  .service__img--opt5-vphone3 {
    height: 70vh;
  }
  .projects-list {
    margin-top: 50px;
  }
  .project-card {
    background-color: transparent;
    margin-bottom: 100px;
  }
  .project-card--mirror {
    display: flex;
    flex-direction: column;
    align-items: end;
  }
  .project-card__image {
    width: 50%;
    left: 50%;
    opacity: 1;
    overflow: hidden;
  }
  .project-card__image--mirror {
    left: inherit;
    right: 50%;
  }
  .project-card__info {
    width: 55%;
  }
  .project-card__info--mirror {
    display: flex;
    flex-direction: column;
    align-items: end;
  }
  .project-card__description {
    padding: 20px;
    background-color: var(--s-bc);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  .project-card__button {
    width: 50%;
  }
  .form {
    width: 50%;
  }
  .img-gallery {
    width: 49%;
    height: auto;
    vertical-align: middle;
    overflow: clip;
  }
}/*# sourceMappingURL=styles.css.map */