@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes revealText {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
@keyframes starBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes starExplode {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.whatsapp-float svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}
.whatsapp-float:active {
  transform: scale(1.05);
}
@media (max-width: 1020px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float:hover {
    transform: none;
  }
}

@keyframes bubbleOpen {
  0% {
    display: none;
    opacity: 0;
    transform: translate(100vw, -100vh);
    border-radius: 9999px;
  }
  1% {
    display: flex;
    opacity: 1;
  }
  60% {
    border-top-right-radius: 0;
  }
  80% {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
    border-radius: 0;
  }
}
@keyframes bubbleClose {
  0% {
    opacity: 1;
    transform: translate(0, 0);
    border-bottom-left-radius: 0;
    display: flex;
  }
  100% {
    display: none;
    opacity: 0;
    transform: translate(100vw, -100vh);
    border-bottom-left-radius: 9999px;
  }
}
@font-face {
  font-family: "Averta";
  src: url("../font/Averta PE Regular.otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Averta";
  src: url("../font/Averta PE Bold.otf");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Averta";
  src: url("../font/Averta PE ExtraBold.otf");
  font-style: normal;
  font-weight: 800;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-up,
  .reveal-text,
  .stars-canvas {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body,
main {
  font-family: "Averta", sans-serif;
  background: #111;
  min-height: 100vh;
  height: fit-content;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-text {
  opacity: 0;
  animation: revealText 1.2s ease-out forwards;
  animation-delay: 0.3s;
}

.stars-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

*:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
}

main {
  position: relative;
  overflow: hidden;
}
main .blue-glow {
  z-index: 1;
  position: absolute;
  width: 76vh;
  height: 76vh;
  left: -40vh;
  top: -10vh;
  opacity: 0.51;
  background: -webkit-linear-gradient(205.49deg, #9e00ff 5.75%, #00fff0 94.25%);
  background: -moz-linear-gradient(205.49deg, #9e00ff 5.75%, #00fff0 94.25%);
  background: -o-linear-gradient(205.49deg, #9e00ff 5.75%, #00fff0 94.25%);
  background: linear-gradient(205.49deg, #9e00ff 5.75%, #00fff0 94.25%);
  -webkit-filter: blur(150px);
  -moz-filter: blur(150px);
  -ms-filter: blur(150px);
  filter: blur(150px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
main .pink-glow {
  z-index: 0;
  position: absolute;
  width: 76vh;
  height: 76vh;
  background: red;
  right: -25vh;
  top: 35vh;
  opacity: 0.51;
  -webkit-filter: blur(250px);
  -moz-filter: blur(250px);
  -ms-filter: blur(250px);
  filter: blur(250px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  background: -webkit-linear-gradient(176.83deg, #69d7fc 7.43%, #ca4fc1 51.28%, #ff346d 95.59%);
  background: -moz-linear-gradient(176.83deg, #69d7fc 7.43%, #ca4fc1 51.28%, #ff346d 95.59%);
  background: -o-linear-gradient(176.83deg, #69d7fc 7.43%, #ca4fc1 51.28%, #ff346d 95.59%);
  background: linear-gradient(176.83deg, #69d7fc 7.43%, #ca4fc1 51.28%, #ff346d 95.59%);
}
main .orange-glow {
  z-index: 0;
  position: absolute;
  width: 76vh;
  height: 76vh;
  left: -19.5vw;
  top: 182vh;
  opacity: 0.51;
  background: -webkit-linear-gradient(180.48deg, #ea2f27 -2.95%, #ff9e00 97.05%);
  background: -moz-linear-gradient(180.48deg, #ea2f27 -2.95%, #ff9e00 97.05%);
  background: -o-linear-gradient(180.48deg, #ea2f27 -2.95%, #ff9e00 97.05%);
  background: linear-gradient(180.48deg, #ea2f27 -2.95%, #ff9e00 97.05%);
  -webkit-filter: blur(250px);
  -moz-filter: blur(250px);
  -ms-filter: blur(250px);
  filter: blur(250px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
main .form-glow {
  z-index: 1;
  position: absolute;
  bottom: 20vh;
  left: 0;
  width: 70vh;
  height: 70vh;
  opacity: 0.51;
  background: -webkit-linear-gradient(-12.66deg, #fd364a 9.15%, #0fbcba 92.13%);
  background: -moz-linear-gradient(-12.66deg, #fd364a 9.15%, #0fbcba 92.13%);
  background: -o-linear-gradient(-12.66deg, #fd364a 9.15%, #0fbcba 92.13%);
  background: linear-gradient(-12.66deg, #fd364a 9.15%, #0fbcba 92.13%);
  -webkit-filter: blur(123.5px);
  -moz-filter: blur(123.5px);
  -ms-filter: blur(123.5px);
  filter: blur(123.5px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
main .cases-glow {
  z-index: 1;
  position: absolute;
  bottom: 100vh;
  right: 0;
  width: 70vh;
  height: 70vh;
  opacity: 0.51;
  background: -webkit-linear-gradient(108.47deg, #354077 22.55%, #ff6f36 58.06%, #e33223 81.1%);
  background: -moz-linear-gradient(108.47deg, #354077 22.55%, #ff6f36 58.06%, #e33223 81.1%);
  background: -o-linear-gradient(108.47deg, #354077 22.55%, #ff6f36 58.06%, #e33223 81.1%);
  background: linear-gradient(108.47deg, #354077 22.55%, #ff6f36 58.06%, #e33223 81.1%);
  -webkit-filter: blur(80.5px);
  -moz-filter: blur(80.5px);
  -ms-filter: blur(80.5px);
  filter: blur(80.5px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@media screen and (min-height: 1200px) {
  main .cases-glow {
    bottom: 120vh;
  }
}
@media (max-width: 1020px) {
  main .blue-glow {
    width: 61vh;
    height: 61vh;
    left: -35vh;
    top: -15vh;
    -webkit-filter: blur(60px);
    -moz-filter: blur(60px);
    -ms-filter: blur(60px);
    filter: blur(60px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  main .pink-glow {
    width: 61vh;
    height: 61vh;
    top: 50vh;
    -webkit-filter: blur(60px);
    -moz-filter: blur(60px);
    -ms-filter: blur(60px);
    filter: blur(60px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background: -webkit-linear-gradient(176.83deg, #69d7fc 2.43%, #ca4fc1 41.28%, #ff346d 95.59%);
    background: -moz-linear-gradient(176.83deg, #69d7fc 2.43%, #ca4fc1 41.28%, #ff346d 95.59%);
    background: -o-linear-gradient(176.83deg, #69d7fc 2.43%, #ca4fc1 41.28%, #ff346d 95.59%);
    background: linear-gradient(176.83deg, #69d7fc 2.43%, #ca4fc1 41.28%, #ff346d 95.59%);
  }
  main .orange-glow {
    width: 61vh;
    height: 61vh;
    top: 610vw;
    left: -60vw;
    -webkit-filter: blur(60px);
    -moz-filter: blur(60px);
    -ms-filter: blur(60px);
    filter: blur(60px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  main .cases-glow {
    height: 200vh;
    width: 100vw;
    bottom: 130vh;
    -webkit-filter: blur(40px);
    -moz-filter: blur(40px);
    -ms-filter: blur(40px);
    filter: blur(40px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  main .form-glow {
    -webkit-filter: blur(60px);
    -moz-filter: blur(60px);
    -ms-filter: blur(60px);
    filter: blur(60px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 360px) {
  main .orange-glow {
    top: 390vh;
  }
}

section {
  z-index: 2;
}
section.heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 5%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
section.heading img {
  flex: 1;
  max-width: 36.6%;
}
section.heading div {
  flex: 1;
  max-width: 50%;
}
section.heading div h1 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.heading div h1 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.heading div h1 {
    font-size: 1.75rem;
  }
}
section.heading div h1 {
  font-size: 3.125rem;
}
section.heading div p {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.heading div p {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.heading div p {
  margin: 16px 0 24px;
  max-width: 90%;
}
section.heading div p strong {
  color: #fff;
  font-weight: 700;
  position: relative;
}
section.heading div p strong::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #9e00ff, #00fff0);
  opacity: 0.6;
}
@media (max-width: 1020px) {
  section.heading {
    padding: 93px 5.5% 0;
    min-height: auto;
  }
  section.heading img,
  section.heading div {
    max-width: 100%;
    flex: 1;
  }
  section.heading img {
    margin-top: 16px;
  }
  section.heading div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  section.heading div h1 {
    font-size: 1.8rem;
    text-align: center;
  }
  section.heading div p {
    text-align: center;
    max-width: 100%;
  }
}
@media (max-width: 360px) {
  section.heading div h1,
  section.heading div p {
    max-width: 100%;
  }
}
section.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 0 122px;
  height: fit-content;
  overflow-x: hidden;
}
section.intro h2 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.intro h2 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.intro h2 {
    font-size: 1.75rem;
  }
}
section.intro h2 {
  text-align: center;
}
section.intro p {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.intro p {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.intro p {
  text-align: center;
  max-width: 39vw;
}
@media (max-width: 1020px) {
  section.intro {
    margin: 65px 0;
    padding: 0 5%;
  }
  section.intro p {
    max-width: 100%;
  }
}
section.presentation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
}
section.presentation div {
  max-width: 27%;
}
section.presentation div h2 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.presentation div h2 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.presentation div h2 {
    font-size: 1.75rem;
  }
}
section.presentation div p {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.presentation div p {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.presentation ul {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
section.presentation ul li {
  display: flex;
  flex-direction: column;
  list-style: none;
}
section.presentation ul span:first-child {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.presentation ul span:first-child {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.presentation ul span:first-child {
    font-size: 1.75rem;
  }
}
section.presentation ul span:last-child {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.presentation ul span:last-child {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.presentation ul span:last-child {
  margin-top: unset;
}
@media (max-width: 1020px) {
  section.presentation {
    flex-direction: column;
    padding: 0;
  }
  section.presentation img {
    order: 0;
    margin: 0 3% 0 12%;
    max-width: 95vw;
  }
  section.presentation div {
    max-width: 88%;
    margin-top: 60px;
    order: 1;
  }
  section.presentation ul {
    order: 2;
    margin-top: 40px;
    flex-direction: row;
    padding: 0 3%;
    justify-content: space-evenly;
    gap: 2%;
    align-items: center;
  }
}
section.principles {
  padding: 74px 7% 170px;
  display: flex;
  flex-direction: column;
}
section.principles hr {
  width: 100%;
  border: 1px solid #4f4f4f;
}
section.principles img {
  width: 100%;
  height: 100%;
  max-width: 375px;
  max-height: 308px;
  margin: -45px 10px 0;
}
section.principles ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
section.principles ul li {
  list-style: none;
  border-bottom: 1px solid #4f4f4f;
  padding: 24px 0;
  display: flex;
  align-items: center;
}
section.principles ul li h3 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.principles ul li h3 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.principles ul li h3 {
    font-size: 1.75rem;
  }
}
section.principles ul li h3 {
  width: 35%;
}
section.principles ul li p {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.principles ul li p {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.principles ul li p {
  margin-top: unset;
  width: 45%;
}
section.principles div {
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 10%;
}
section.principles div div:first-child {
  width: 60%;
}
section.principles div div:last-child {
  flex-direction: column;
  flex-wrap: unset;
  width: 30%;
  height: fit-content;
  margin-top: 30px;
}
section.principles div div:last-child h3 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.principles div div:last-child h3 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.principles div div:last-child h3 {
    font-size: 1.75rem;
  }
}
section.principles div div:last-child h3 {
  font-size: 1.5rem;
  max-width: 65%;
}
@media (max-width: 1020px) {
  section.principles {
    padding: 64px 5.5% 60px;
  }
  section.principles div div:last-child,
  section.principles div div:first-child {
    width: 100%;
  }
  section.principles div div:last-child h3,
  section.principles div div:first-child h3 {
    max-width: 90%;
  }
  section.principles hr {
    margin-bottom: 27px;
  }
  section.principles ul li {
    align-items: flex-start;
    padding: 35px 0;
    flex-direction: column;
    max-width: 70%;
  }
  section.principles ul li p {
    margin-top: 10px;
    width: 100%;
  }
}
section.services {
  margin: 60px 0;
  position: relative;
}
section.services .marquee-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: transparent;
}
section.services .marquee-wrapper::before, section.services .marquee-wrapper::after {
  content: "";
  width: 93.7%;
  background: #4f4f4f;
  height: 1px;
  position: absolute;
}
section.services .marquee-wrapper::before {
  top: 0;
  right: 0;
}
section.services .marquee-wrapper::after {
  bottom: 0;
  left: 0;
}
section.services::before {
  content: "";
  width: 70vh;
  height: 70vh;
  position: absolute;
  top: 0;
  left: 50%;
  opacity: 0.51;
  border-radius: 999px;
  -webkit-filter: blur(33px);
  -moz-filter: blur(33px);
  -ms-filter: blur(33px);
  filter: blur(33px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transform: translateX(-50%);
  background: -webkit-linear-gradient(106.44deg, #69d7fc 19.43%, #ca4fc1 69.28%, #ff346d 95.59%);
  background: -moz-linear-gradient(106.44deg, #69d7fc 19.43%, #ca4fc1 69.28%, #ff346d 95.59%);
  background: -o-linear-gradient(106.44deg, #69d7fc 19.43%, #ca4fc1 69.28%, #ff346d 95.59%);
  background: linear-gradient(106.44deg, #69d7fc 19.43%, #ca4fc1 69.28%, #ff346d 95.59%);
}
section.services .marquee {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  margin: auto auto;
  white-space: nowrap;
  overflow: hidden;
  width: 200%;
  height: 100%;
  background: transparent;
}
section.services .marquee span {
  display: inline-block;
  z-index: 2;
  text-align: center;
  white-space: nowrap;
  font-weight: 800;
  height: 100%;
  line-height: 180px;
  font-size: 96px;
  animation: marquee 20s linear infinite;
  color: #313131;
  background: transparent;
  mix-blend-mode: color-dodge;
  flex-shrink: 0;
  padding-right: 0;
}
section.services .services-presentation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0 9.3%;
}
section.services .services-presentation h2 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.services .services-presentation h2 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.services .services-presentation h2 {
    font-size: 1.75rem;
  }
}
section.services .services-presentation p {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.services .services-presentation p {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.services .services-presentation p {
  margin-top: unset;
  margin-bottom: 90px;
  max-width: 575px;
}
section.services .services-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 62px 9% 0;
  gap: 35px;
}
section.services .service-container {
  flex: 0;
  background: rgba(49, 49, 49, 0.24);
  backdrop-filter: blur(38px);
  width: 100%;
  height: 100%;
  min-height: 404px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 32px;
}
section.services .service-container div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
section.services .service-container div span {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.services .service-container div span {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.services .service-container div span {
    font-size: 1.75rem;
  }
}
section.services .service-container div span {
  color: #4f4f4f;
  cursor: pointer;
}
section.services .service-container div h3 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.services .service-container div h3 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.services .service-container div h3 {
    font-size: 1.75rem;
  }
}
section.services .service-container div h3 {
  color: #4f4f4f;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  cursor: pointer;
}
section.services .service-container p {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.services .service-container p {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.services .service-container p {
  display: none;
  margin-bottom: 92px;
}
section.services .service-container ul {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: space-between;
}
section.services .service-container ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.services .service-container ul li {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.services .service-container ul li {
  margin-top: unset;
  list-style: none;
}
section.services .service-container ul li img {
  margin-bottom: 16px;
}
section.services .service-active {
  flex: 2;
  max-width: 706px;
  padding: 30px min(3.6vw, 50px);
  border: 1px solid;
  border-image-slice: 1;
  border-width: 1px;
  border-image-source: linear-gradient(to left, rgba(255, 255, 255, 0.2392156863), rgba(255, 255, 255, 0));
}
section.services .service-active div {
  align-items: flex-start;
  justify-content: center;
  height: fit-content;
}
section.services .service-active div span,
section.services .service-active div h3 {
  color: #fff;
  transform: none;
  writing-mode: initial;
  text-transform: capitalize;
}
section.services .service-active p {
  display: block;
}
section.services .service-active ul {
  display: flex;
}
@media (max-width: 1020px) {
  section.services .services-presentation p {
    margin-top: 8px;
  }
  section.services::before {
    width: 87vw;
    height: 87vw;
    top: 10%;
  }
  section.services .services-wrapper {
    flex-direction: column;
    gap: 16px;
    padding: 35px 20px;
  }
  section.services .service-container {
    min-height: unset;
    padding: 30px 16px;
  }
  section.services .service-container div {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  section.services .service-container div h3 {
    writing-mode: initial;
  }
  section.services .service-container div span {
    writing-mode: vertical-lr;
    margin-right: 16px;
  }
  section.services .service-container p {
    margin-bottom: 60px;
  }
  section.services .service-container ul {
    flex-direction: column;
  }
  section.services .service-container ul li {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  section.services .service-container ul li img {
    width: 24px;
    height: 24px;
    margin: 0;
    margin-right: 16px;
    object-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.services .service-active div span {
    writing-mode: initial;
  }
}
section.portfolio {
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  position: relative;
}
section.portfolio h2 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.portfolio h2 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.portfolio h2 {
    font-size: 1.75rem;
  }
}
section.portfolio p {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.portfolio p {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.portfolio p {
  margin: 16px 0 32px;
  max-width: 548px;
}
section.portfolio .portfolio-filters {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
section.portfolio .portfolio-filters .filter-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #c4c4c4;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-family: "Averta", sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
section.portfolio .portfolio-filters .filter-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
section.portfolio .portfolio-filters .filter-btn.active {
  background: #fff;
  color: #111;
  border-color: #fff;
}
section.portfolio .portfolio-filters .filter-btn:focus, section.portfolio .portfolio-filters .filter-btn:active, section.portfolio .portfolio-filters .filter-btn:focus-visible {
  outline: none !important;
}
section.portfolio .portfolio-filters .filter-btn::before, section.portfolio .portfolio-filters .filter-btn::after {
  display: none;
}
section.portfolio .project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 90%;
  max-width: 900px;
}
section.portfolio .project {
  width: 100%;
  max-width: 433px;
  height: 215px;
  background: #111;
  cursor: pointer;
  z-index: 2;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: block;
  line-height: 0;
  font-size: 0;
}
section.portfolio .project:hover {
  transform: translateY(-8px);
}
section.portfolio .project:hover img {
  transform: scale(1.05);
}
section.portfolio .project:hover .project-overlay {
  opacity: 1;
}
section.portfolio .project.hidden {
  display: none;
}
section.portfolio .project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease, opacity 0.3s ease;
  display: block;
  vertical-align: top;
}
section.portfolio .project .project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
section.portfolio .project .project-overlay h4 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.portfolio .project .project-overlay h4 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.portfolio .project .project-overlay h4 {
    font-size: 1.75rem;
  }
}
section.portfolio .project .project-overlay h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
section.portfolio .project .project-overlay p {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.portfolio .project .project-overlay p {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.portfolio .project .project-overlay p {
  margin: 0;
  font-size: 0.875rem;
}
section.portfolio .star-container {
  position: absolute;
  top: 45%;
  right: 20%;
}
section.portfolio .cases-container {
  position: absolute;
  top: 30%;
  right: 25px;
}
@media (max-width: 1020px) {
  section.portfolio {
    padding: 0 24px 90px;
  }
  section.portfolio .portfolio-filters {
    gap: 8px;
  }
  section.portfolio .portfolio-filters .filter-btn {
    font-size: 12px;
    padding: 6px 16px;
  }
  section.portfolio .project-grid {
    width: 100%;
  }
  section.portfolio .project:hover {
    transform: translateY(-4px);
  }
  section.portfolio .star-container {
    transform: rotate(-90deg);
    bottom: -90px;
    top: unset;
    right: unset;
    left: 100px;
  }
  section.portfolio .cases-container {
    bottom: -185px;
    top: unset;
    right: -10px;
    transform: scale(0.3);
  }
}
section.project-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
section.project-modal.active {
  display: flex;
}
section.project-modal .modal-content {
  position: relative;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(30, 30, 30, 0.95));
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalFadeIn 0.4s ease-out;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
section.project-modal .modal-close {
  position: sticky;
  top: 20px;
  float: right;
  margin: 20px 20px -64px 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: background 0.3s ease, transform 0.3s ease;
  line-height: 1;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
section.project-modal .modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: rotate(90deg);
}
section.project-modal .modal-close:focus, section.project-modal .modal-close:active, section.project-modal .modal-close:focus-visible {
  outline: none !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}
section.project-modal .modal-close::before, section.project-modal .modal-close::after {
  display: none;
}
section.project-modal .modal-body {
  display: flex;
  flex-direction: column;
  clear: both;
}
section.project-modal .modal-body .modal-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
section.project-modal .modal-body .modal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.project-modal .modal-body .modal-image-wrapper .modal-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(17, 17, 17, 0.95));
}
section.project-modal .modal-body .modal-info {
  padding: 40px;
  padding-top: 24px;
}
section.project-modal .modal-body .modal-info .modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
section.project-modal .modal-body .modal-info .modal-header h3 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.project-modal .modal-body .modal-info .modal-header h3 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.project-modal .modal-body .modal-info .modal-header h3 {
    font-size: 1.75rem;
  }
}
section.project-modal .modal-body .modal-info .modal-header h3 {
  font-size: 2.25rem;
  margin: 0;
}
section.project-modal .modal-body .modal-info .modal-header .modal-category {
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(158, 0, 255, 0.2), rgba(0, 255, 240, 0.2));
  border: 1px solid rgba(158, 0, 255, 0.4);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}
section.project-modal .modal-body .modal-info .modal-subtitle {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.project-modal .modal-body .modal-info .modal-subtitle {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.project-modal .modal-body .modal-info .modal-subtitle {
  font-size: 1.1rem;
  margin: 0 0 32px;
  opacity: 0.9;
}
section.project-modal .modal-body .modal-info .modal-section {
  margin-bottom: 32px;
}
section.project-modal .modal-body .modal-info .modal-section h4 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.project-modal .modal-body .modal-info .modal-section h4 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.project-modal .modal-body .modal-info .modal-section h4 {
    font-size: 1.75rem;
  }
}
section.project-modal .modal-body .modal-info .modal-section h4 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  color: #fff;
  position: relative;
  padding-left: 16px;
}
section.project-modal .modal-body .modal-info .modal-section h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, #9e00ff, #00fff0);
  border-radius: 2px;
}
section.project-modal .modal-body .modal-info .modal-section p {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.project-modal .modal-body .modal-info .modal-section p {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.project-modal .modal-body .modal-info .modal-section p {
  margin: 0;
  line-height: 1.7;
}
section.project-modal .modal-body .modal-info .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
section.project-modal .modal-body .modal-info .tech-tags .tech-tag {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}
section.project-modal .modal-body .modal-info .tech-tags .tech-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(158, 0, 255, 0.5);
  transform: translateY(-2px);
}
section.project-modal .modal-body .modal-info .modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #9e00ff, #00fff0);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(158, 0, 255, 0.3);
}
section.project-modal .modal-body .modal-info .modal-cta svg {
  transition: transform 0.3s ease;
}
section.project-modal .modal-body .modal-info .modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(158, 0, 255, 0.5);
}
section.project-modal .modal-body .modal-info .modal-cta:hover svg {
  transform: translateX(4px);
}
@media (max-width: 1020px) {
  section.project-modal {
    padding: 0;
  }
  section.project-modal .modal-content {
    border-radius: 0;
    max-height: 100vh;
    height: 100vh;
  }
  section.project-modal .modal-close {
    top: 12px;
    margin: 12px 12px -56px 0;
    -webkit-tap-highlight-color: transparent;
  }
  section.project-modal .modal-body .modal-image-wrapper {
    height: 250px;
  }
  section.project-modal .modal-body .modal-info {
    padding: 24px 20px;
  }
  section.project-modal .modal-body .modal-info .modal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  section.project-modal .modal-body .modal-info .modal-header h3 {
    font-size: 1.75rem;
  }
  section.project-modal .modal-body .modal-info .modal-subtitle {
    font-size: 1rem;
  }
  section.project-modal .modal-body .modal-info .modal-section {
    margin-bottom: 24px;
  }
  section.project-modal .modal-body .modal-info .modal-section h4 {
    font-size: 1.1rem;
  }
}
section.skyio-voices {
  margin: 120px 0;
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
section.skyio-voices .voices-header {
  text-align: center;
  margin-bottom: 64px;
}
section.skyio-voices .voices-header h2 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.skyio-voices .voices-header h2 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.skyio-voices .voices-header h2 {
    font-size: 1.75rem;
  }
}
section.skyio-voices .voices-header h2 {
  font-size: 2.5rem;
}
section.skyio-voices .voices-header p {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.skyio-voices .voices-header p {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.skyio-voices .voices-header p {
  max-width: 600px;
  margin: 16px auto 0;
}
section.skyio-voices .voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 768px) {
  section.skyio-voices .voices-grid {
    grid-template-columns: 1fr;
  }
}
section.skyio-voices .voice-card {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
section.skyio-voices .voice-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
section.skyio-voices .voice-card:nth-child(1)::before {
  background: radial-gradient(circle at 50% 0%, rgba(158, 0, 255, 0.15), transparent 70%);
}
section.skyio-voices .voice-card:nth-child(1) .voice-icon {
  color: #9e00ff;
}
section.skyio-voices .voice-card:nth-child(2)::before {
  background: radial-gradient(circle at 50% 0%, rgba(0, 255, 240, 0.15), transparent 70%);
}
section.skyio-voices .voice-card:nth-child(2) .voice-icon {
  color: #00fff0;
}
section.skyio-voices .voice-card:nth-child(3)::before {
  background: radial-gradient(circle at 50% 0%, rgba(255, 52, 109, 0.15), transparent 70%);
}
section.skyio-voices .voice-card:nth-child(3) .voice-icon {
  color: #ff346d;
}
section.skyio-voices .voice-card:nth-child(4)::before {
  background: radial-gradient(circle at 50% 0%, rgba(255, 159, 28, 0.15), transparent 70%);
}
section.skyio-voices .voice-card:nth-child(4) .voice-icon {
  color: #ff9f1c;
}
section.skyio-voices .voice-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
section.skyio-voices .voice-card:hover::before {
  opacity: 1;
}
section.skyio-voices .voice-card:hover .voice-icon {
  transform: scale(1.1) rotate(-5deg);
}
section.skyio-voices .voice-card:hover .voice-link {
  transform: translateX(8px);
  opacity: 1;
}
section.skyio-voices .voice-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section.skyio-voices .voice-card .voice-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.4s ease;
}
section.skyio-voices .voice-card .voice-icon svg {
  width: 32px;
  height: 32px;
}
section.skyio-voices .voice-card h3 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.skyio-voices .voice-card h3 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.skyio-voices .voice-card h3 {
    font-size: 1.75rem;
  }
}
section.skyio-voices .voice-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin: 8px 0 0;
  line-height: 1.3;
}
section.skyio-voices .voice-card p {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.skyio-voices .voice-card p {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.skyio-voices .voice-card p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}
section.skyio-voices .voice-card .voice-link {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.skyio-voices .voice-card .voice-link {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.skyio-voices .voice-card .voice-link {
  color: #fff;
  margin: 8px 0 0;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: all 0.3s ease;
}
@media (max-width: 1020px) {
  section.skyio-voices {
    margin: 80px 0;
    padding: 0 5%;
  }
  section.skyio-voices .voices-header {
    margin-bottom: 48px;
  }
  section.skyio-voices .voices-header h2 {
    font-size: 2rem;
  }
  section.skyio-voices .voices-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  section.skyio-voices .voice-card {
    padding: 24px;
  }
  section.skyio-voices .voice-card h3 {
    font-size: 1.25rem;
  }
}
section.separation {
  padding: 34px 0;
  margin: 230px 0 164px;
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.separation::before, section.separation::after {
  content: "";
  width: 63.5%;
  background: #4f4f4f;
  height: 1px;
  position: absolute;
}
section.separation::before {
  top: 0;
  left: 0;
}
section.separation::after {
  bottom: 0;
  right: 0;
}
section.separation p {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  section.separation p {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
section.separation p {
  margin-top: unset;
  max-width: 27%;
}
section.separation .skyio-container {
  position: absolute;
  height: 20vw;
  max-height: 260px;
  width: 20vw;
  max-width: 260px;
  top: -5vw;
  left: 10%;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.separation .skyio-container img:first-child {
  width: 100%;
  animation: rotate 10s linear infinite;
}
section.separation .skyio-container img:last-child {
  position: absolute;
  width: 55%;
  height: 55%;
}
@media (max-width: 1020px) {
  section.separation {
    padding: 140px 0 34px;
    margin: 110px 0 80px;
  }
  section.separation p {
    max-width: 80%;
  }
  section.separation .skyio-container {
    width: 160px;
    height: 160px;
    left: 20px;
    top: -15%;
  }
}
section.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
section.contact h2 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.contact h2 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.contact h2 {
    font-size: 1.75rem;
  }
}
section.contact h2 {
  margin-bottom: 36px;
}
section.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 910px;
  width: 90%;
  margin-bottom: 110px;
}
section.contact form div {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: start;
}
section.contact form fieldset {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
  border: none;
}
section.contact form label {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  section.contact form label {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  section.contact form label {
    font-size: 1.75rem;
  }
}
section.contact form label {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 2px;
}
section.contact .upper-star {
  position: absolute;
  top: 26px;
  right: 45px;
}
section.contact .lower-star {
  position: absolute;
  bottom: 80px;
  right: 115px;
}
@media (max-width: 1020px) {
  section.contact h2 {
    font-size: 2rem;
  }
  section.contact fieldset {
    flex-wrap: wrap;
  }
  section.contact .upper-star,
  section.contact .lower-star {
    display: none;
  }
}

button {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  button {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
button {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 50px;
  padding: 12px 40px;
  cursor: pointer;
  transition: background ease-in-out 2s;
  z-index: 5;
  transition: all ease-in-out 250ms;
  position: relative;
}
button:hover {
  transform: scale(1.1);
}
button:active {
  background: rgba(255, 255, 255, 0.5019607843);
}
button:active::after {
  content: "";
  position: absolute;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 4px solid white;
  top: -9px;
  left: -9px;
  border-radius: 50px;
}

input,
textarea {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Averta", sans-serif;
  padding: 12px;
  background: rgba(255, 255, 255, 0.24);
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  border: none;
  outline: none;
}
input::placeholder,
textarea::placeholder {
  color: #b4b4b4;
}

textarea {
  padding: 20px 15px;
  height: 150px;
  resize: none;
  margin-bottom: 16px;
}

footer {
  width: 100%;
  padding: 0 8.5% 45px;
}
footer hr {
  width: 100%;
  border: 1px solid #313131;
  margin-bottom: 58px;
}
footer .logo {
  width: 56px;
}
footer div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer div div {
  width: fit-content;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 283px;
}
footer div div:last-child {
  align-items: flex-end;
  max-width: unset;
  margin-top: 32px;
}
footer div div p {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  footer div div p {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  footer div div p {
    font-size: 1.75rem;
  }
}
footer div div p {
  font-size: 2rem;
  margin-top: 24px;
}
footer div ul {
  display: flex;
  flex-direction: column;
}
footer div ul li {
  list-style: none;
  margin-bottom: 8px;
}
footer div ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
footer div ul li span {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  footer div ul li span {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
footer div ul li span {
  color: #fff;
  margin-top: unset;
}
footer div ul li img {
  margin-left: 12px;
}
footer .footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
footer span {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  footer span {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
footer span {
  color: #fff;
  margin-top: unset;
}
footer .cnpj {
  font-size: 0.875rem;
  opacity: 0.7;
}
footer .footer-contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  margin-top: 4px;
}
footer .footer-contact-info a {
  color: #c4c4c4;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .footer-contact-info a:hover {
  color: #fff;
}
footer .footer-contact-info .separator {
  color: #c4c4c4;
  opacity: 0.5;
}
@media (max-width: 1020px) {
  footer {
    padding: 0 7% 28px;
  }
  footer div div p {
    margin-top: 16px;
  }
  footer div div:last-child {
    align-items: flex-start;
  }
  footer div div ul {
    flex-direction: row;
  }
  footer div div ul a span {
    display: none;
  }
  footer div div ul li:first-child img {
    margin-left: unset;
  }
  footer .footer-info {
    align-items: flex-start;
  }
  footer .cnpj {
    font-size: 0.75rem;
  }
  footer .footer-contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 0.8rem;
  }
  footer .footer-contact-info .separator {
    display: none;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 7%;
  transition: all ease-in-out 250ms;
}
header svg {
  z-index: 999;
  transition: all ease-in-out 250ms;
  cursor: pointer;
  mix-blend-mode: difference;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
header svg:nth-child(2) {
  mix-blend-mode: unset;
}
header svg #complete_logo {
  height: 40px;
}
header.active {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12.5px);
}
header #menu-container {
  position: fixed;
  z-index: 998;
  width: 100vw;
  min-height: 100vh;
  height: fit-content;
  top: 0;
  right: 0;
  opacity: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
header #menu-container svg {
  mix-blend-mode: difference;
}
header #menu-container ul {
  width: 100%;
  padding-bottom: 15%;
  border-top: 1px solid #d8d8d8;
}
header #menu-container ul li {
  width: 100%;
  border-bottom: 1px solid #d8d8d8;
  list-style: none;
  padding: 16px 7%;
}
header #menu-container ul li a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header #menu-container ul li a h2 {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  font-size: 2.25rem;
}
@media (max-width: 1020px) {
  header #menu-container ul li a h2 {
    line-height: 120%;
  }
}
@media (max-width: 360px) {
  header #menu-container ul li a h2 {
    font-size: 1.75rem;
  }
}
header #menu-container ul li a h2 {
  color: #111;
}
header #menu-container ul li a p {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  header #menu-container ul li a p {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
header #menu-container ul li a p {
  margin-top: 0;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
header #menu-container ul li a p img {
  margin-left: 16px;
  height: 24px;
}
header #menu-container div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 7%;
}
header #menu-container div ul {
  display: flex;
  gap: 12px;
  padding: 0;
  border: none;
  width: fit-content;
}
header #menu-container div ul li {
  width: fit-content;
  border: none;
  padding: 0;
}
header #menu-container div img {
  filter: invert(100%);
}
header #menu-container div > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  width: fit-content;
  max-width: 50%;
}
header #menu-container div span {
  font-size: 1rem;
  line-height: 150%;
  color: #c4c4c4;
  margin-top: 16px;
}
@media (max-width: 360px) {
  header #menu-container div span {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
header #menu-container div span {
  margin-top: unset;
  color: #111;
}
header #menu-container div span:last-child {
  font-size: 0.875rem;
  opacity: 0.7;
}
header #menu-container.open {
  display: flex;
  background: white;
  animation: bubbleOpen 1s ease-in-out;
}
header #menu-container.close {
  animation: bubbleClose 1s ease-in-out;
}
@media (max-width: 1020px) {
  header #menu-container {
    justify-content: flex-start;
    padding-top: 95px;
  }
  header #menu-container ul {
    padding-bottom: unset;
  }
  header #menu-container ul li a {
    align-items: flex-start;
    flex-direction: column;
  }
  header #menu-container ul li a p {
    margin-top: 16px;
  }
}

.facebook:hover,
.linkedin:hover,
.instagram:hover {
  opacity: 0.5;
}

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