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

* {
  margin: 0;
  padding: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture, svg, video, canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition: none;
  }
}
body, html {
  height: 100%;
  scroll-behavior: smooth;
}

/* Fonts */
@font-face {
  font-family: "rma";
  src: url("../fonts/BwFusionaAlts-45Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "rma";
  src: url("../fonts/BwFusionaAlts-45RegularItalic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
body, html {
  font-family: "rma", sans-serif;
  color: #faeff0;
  background-color: #02081b;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

a {
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.all {
  height: 100vh;
  width: 100%;
}

@media only screen and (max-width: 560px) {
  body {
    font-size: 0.65em;
  }
}

.bckg {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (max-width: 560px) {
  .bckg {
    height: 100vw;
    bottom: auto;
    position: absolute;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(359deg);
  }
}
.bckg .blur {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: url("/img/ball_01.png") no-repeat center center;
  background-size: auto 100%;
  animation: rotate 140s infinite;
}
@media only screen and (max-width: 560px) {
  .bckg .blur {
    animation-duration: 60s;
    background-size: 100% auto;
    bottom: auto;
    height: 100vw;
  }
}

.logo-rma {
  position: absolute;
  z-index: 4;
  left: 60px;
  top: 60px;
  background: url(/img/logo_01.png) no-repeat 0 0;
  background-size: contain;
  width: 120px;
  height: 80px;
  mix-blend-mode: lighten;
}
@media only screen and (max-width: 560px) {
  .logo-rma {
    left: 20px;
    top: 20px;
    width: 80px;
    height: 60px;
  }
}

.contact {
  position: fixed;
  z-index: 6;
  right: 60px;
  bottom: 60px;
}
@media only screen and (max-width: 560px) {
  .contact {
    right: 20px;
    bottom: 30px;
  }
}
.contact a {
  text-decoration: none;
  color: #faeff0;
  background-color: rgba(2.55, 10.2, 28.05, 0.5);
  backdrop-filter: blur(5px);
  border: 1px solid;
  padding: 0.75em 1.5em;
  border-radius: 999px;
}
@media only screen and (min-width: 900px) {
  .contact a:hover {
    color: #02081b;
    background-color: #faeff0;
    border-color: #faeff0;
  }
}

section {
  height: 100vh;
  position: relative;
  z-index: 2;
  overflow-x: hidden;
}
@media only screen and (max-width: 560px) {
  section {
    height: auto;
    min-height: 100vh;
  }
}

h1, h2, h3, h4 {
  font-weight: normal;
  line-height: 100%;
  margin-bottom: 0.5em;
}

p {
  line-height: 120%;
  text-wrap: balance;
}
p + p {
  margin-top: 0.5em;
}
p a {
  color: #36b2a4;
}
p strong {
  color: #f52963;
}

.title {
  font-size: 3em;
}
@media only screen and (max-width: 560px) {
  .title {
    font-size: 2.8em;
  }
}

.subtitle {
  font-size: 3em;
}
@media only screen and (max-width: 560px) {
  .subtitle {
    font-size: 2em;
  }
}

.point.pink {
  color: #f52963;
}
.point.orange {
  color: #ff7c00;
}
.point.green {
  color: #36b2a4;
}

.menu {
  position: fixed;
  right: 0;
  width: 40px;
  top: 50%;
  z-index: 100;
}
@media only screen and (max-width: 560px) {
  .menu {
    width: 30px;
  }
}
.menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 20px;
  rotate: -90deg;
}
@media only screen and (max-width: 560px) {
  .menu ul {
    gap: 0;
  }
}
.menu ul li {
  list-style: none;
}
.menu ul li a {
  color: #faeff0;
  text-decoration: none;
}
@media only screen and (max-width: 560px) {
  .menu ul li {
    padding: 10px;
    background-color: rgba(2.55, 10.2, 28.05, 0.5);
    backdrop-filter: blur(5px);
  }
}

section {
  padding: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media only screen and (max-width: 560px) {
  section {
    padding: 30px 20px;
  }
}

.intro {
  position: relative;
  z-index: 12;
}
.intro .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 60px calc(50vw - 60px) 60px 60px;
  padding: 60px;
  background-color: rgba(2.55, 10.2, 28.05, 0.5);
  backdrop-filter: blur(5px);
}
@media only screen and (min-width: 560px) {
  .intro .text {
    min-width: 770px;
  }
}
@media only screen and (max-width: 560px) {
  .intro .text {
    margin: 30vh 0 0 0;
    padding: 30px 20px 20px;
  }
}
.intro .text p {
  font-size: 1.8em;
}

.servicios {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  background: url(../img/ball_02.png) no-repeat center center;
  background-attachment: fixed;
  background-size: auto 200%;
}
@media only screen and (min-width: 800px) and (max-width: 1025px) {
  .servicios {
    grid-template-columns: 1fr;
    height: auto;
    background-size: auto 140%;
    background-attachment: scroll;
  }
}
@media only screen and (max-width: 560px) {
  .servicios {
    grid-template-columns: 1fr;
    background-size: auto 140%;
    background-attachment: scroll;
  }
}
.servicios .servicio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}
@media only screen and (max-width: 560px) {
  .servicios .servicio {
    display: block;
  }
}
.servicios .servicio .image {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #02081b;
}
@media only screen and (max-width: 560px) {
  .servicios .servicio .image {
    aspect-ratio: 8/6;
  }
}
.servicios .servicio .image img, .servicios .servicio .image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
}
.servicios .servicio .text {
  background-color: rgba(2.55, 10.2, 28.05, 0.5);
  backdrop-filter: blur(5px);
  padding: 60px 60px 60px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
@media only screen and (min-width: 560px) {
  .servicios .servicio .text {
    transform: translateY(100%);
  }
}
@media only screen and (max-width: 560px) {
  .servicios .servicio .text {
    padding: 30px 20px;
  }
}
.servicios .servicio .text .subtitle {
  font-size: 2em;
  margin-bottom: 0.2em;
}
.servicios .servicio .text p {
  font-size: 1.4em;
}
@media only screen and (min-width: 800px) and (max-width: 1025px) {
  .servicios .servicio.inv .image {
    order: 0;
  }
  .servicios .servicio.inv .text {
    order: 1;
  }
}
@media only screen and (min-width: 560px) {
  .servicios .servicio.inv .image {
    order: 1;
  }
  .servicios .servicio.inv .text {
    order: 0;
  }
}
@media only screen and (min-width: 800px) and (max-width: 1025px) {
  .servicios .servicio:nth-child(2n) .image {
    order: 1;
  }
  .servicios .servicio:nth-child(2n) .text {
    order: 0;
  }
}
@media only screen and (max-width: 560px) {
  .servicios .servicio:nth-child(2n) .image {
    order: 1;
  }
  .servicios .servicio:nth-child(2n) .text {
    order: 0;
  }
}
@media only screen and (min-width: 800px) and (max-width: 1025px) {
  .servicios .servicio:nth-child(3) .image {
    order: 0;
  }
  .servicios .servicio:nth-child(3) .text {
    order: 1;
  }
}

.about {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  height: auto;
  overflow: visible;
}
@media only screen and (min-width: 800px) and (max-width: 1025px) {
  .about {
    grid-template-columns: repeat(1, 1fr);
    background: #02081b;
  }
}
@media only screen and (max-width: 560px) {
  .about {
    grid-template-columns: repeat(1, 1fr);
    background: #02081b;
  }
}
.about .title {
  margin-bottom: 0.2em;
  font-size: 2.5em;
}
.about .text {
  padding: 60px;
  background-color: rgba(2.55, 10.2, 28.05, 0.5);
  backdrop-filter: blur(5px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 560px) {
  .about .text {
    opacity: 0;
  }
}
@media only screen and (max-width: 560px) {
  .about .text {
    padding: 30px 20px 30px;
    order: 0;
    background: none;
  }
}
.about .text p {
  font-size: 1.2em;
}
.about .text p:nth-of-type(1), .about .text p:nth-of-type(2) {
  font-size: 1.6em;
}
.about .text p + .title {
  margin-top: 1em;
}
.about .tns-outer > button {
  display: none;
}
.about .tns-outer .tns-nav {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 4px;
}
.about .tns-outer .tns-nav button {
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 0;
  background-color: #02081b;
}
.about .tns-outer .tns-nav button.tns-nav-active {
  background-color: #faeff0;
}
@media only screen and (min-width: 560px) {
  .about .image {
    position: sticky;
    top: 0;
  }
}
@media only screen and (max-width: 560px) {
  .about .image {
    order: 1;
    position: relative;
  }
}
.about .image,
.about .slider {
  height: 66vh;
}
@media only screen and (min-width: 800px) and (max-width: 1025px) {
  .about .image,
  .about .slider {
    height: 45vh;
  }
}
@media only screen and (max-width: 560px) {
  .about .image,
  .about .slider {
    height: 50vh;
  }
}
.about .tns-item {
  height: 66vh;
  background-color: #02081b;
}
@media only screen and (min-width: 800px) and (max-width: 1025px) {
  .about .tns-item {
    height: 45vh;
  }
}
@media only screen and (max-width: 560px) {
  .about .tns-item {
    height: 50vh;
  }
}
.about .tns-item img {
  height: 66vh;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: luminosity;
}
@media only screen and (min-width: 800px) and (max-width: 1025px) {
  .about .tns-item img {
    height: 45vh;
  }
}
@media only screen and (max-width: 560px) {
  .about .tns-item img {
    height: 50vh;
  }
}

.clientes {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 120px 30px;
  background-color: rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 560px) {
  .clientes {
    min-height: 0;
    padding: 60px 20px;
    margin-top: -25px;
  }
}
.clientes .title {
  margin-bottom: 0.75em;
}
.clientes .logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 400px;
}
@media only screen and (max-width: 560px) {
  .clientes .logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.clientes .logos .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clientes .logos .logo img {
  max-width: 93px;
  max-height: 46px;
}
.clientes .grid-clientes {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 560px) {
  .clientes .grid-clientes {
    padding-inline: 10px;
  }
}
@media only screen and (max-width: 1200px) {
  .clientes .grid-clientes {
    grid-template-columns: 1fr;
  }
}
.clientes .grid-clientes .pie {
  font-size: 0.7em;
  color: #faeff0;
  padding: 0.5em 0;
}
.clientes .grid-clientes .pie::before {
  content: "↑";
  margin-right: 0.5em;
}
.clientes .grid-clientes .pie a {
  color: inherit;
}

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