@charset "UTF-8";
@font-face {
  font-family: "Clash Grotesk";
  src: url("fonts/ClashGrotesk-Light.woff2") format("woff2"), url("fonts/ClashGrotesk-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Grotesk";
  src: url("fonts/ClashGrotesk-Medium.woff2") format("woff2"), url("fonts/ClashGrotesk-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newake";
  src: url("fonts/Newake.woff2") format("woff2"), url("fonts/Newake.woff") format("woff");
  font-weight: light;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Grotesk";
  src: url("fonts/ClashGrotesk-Semibold.woff2") format("woff2"), url("fonts/ClashGrotesk-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Frastha";
  src: url("fonts/Frastha-Bold.woff2") format("woff2"), url("fonts/Frastha-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Grotesk";
  src: url("fonts/ClashGrotesk-Regular.woff2") format("woff2"), url("fonts/ClashGrotesk-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  text-decoration: none;
  list-style: none;
  background: transparent;
  outline: none;
}

body {
  background: #000;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.container .wrapper {
  max-width: 90%;
  width: 100%;
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
  transition: ease-in-out 320ms;
  margin-top: 120px;
}
@media screen and (max-width: 990px) {
  header {
    margin-top: 60px;
  }
}
header .wrapper {
  max-width: 90%;
  width: 100%;
  transition: ease-in-out 320ms;
}
header .header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 990px) {
  header .header .logo img {
    max-width: 100px;
  }
}
header .language-buttons {
  display: flex;
  gap: 10px;
  flex: 1;
  justify-content: center;
}
@media screen and (max-width: 990px) {
  header .language-buttons {
    justify-content: flex-end;
  }
}
header .language-btn {
  color: #fff;
  opacity: 0.5;
  font-family: "Clash Grotesk", serif;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
header .language-btn.active {
  color: #ECB6E7;
  opacity: 1;
}
header .logo img {
  transition: ease-in-out 320ms;
}
header .logo .mostra {
  display: none;
}
header nav {
  background: #ECB6E7;
  display: flex;
  align-items: center;
  padding: 8px 8px 8px 30px;
  border-radius: 50px;
  transition: ease-in-out 320ms;
}
@media screen and (max-width: 990px) {
  header nav {
    display: none;
  }
}
header nav:hover {
  background: #FFF;
}
header nav p {
  font-family: "Clash Grotesk", serif;
  font-weight: 500;
  cursor: pointer;
}
header nav .message {
  margin-left: 30px;
  display: flex;
  gap: 4px;
}
header nav .message a {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border-radius: 50px;
  color: #FFF;
  font-size: 20px;
  transition: ease-in-out 320ms;
}
header nav .message a:hover {
  background: #ECB6E7;
  font-size: 24px;
}

nav.navbar-mobile {
  background: #ECB6E7;
  display: flex;
  align-items: center;
  padding: 8px 8px 8px 30px;
  transition: ease-in-out 320ms;
  display: none;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 11;
  width: 100%;
}
@media screen and (max-width: 990px) {
  nav.navbar-mobile {
    display: flex;
  }
}
nav.navbar-mobile p {
  font-family: "Clash Grotesk", serif;
  font-weight: 500;
  cursor: pointer;
}
nav.navbar-mobile .message {
  margin-left: 30px;
  display: flex;
  gap: 4px;
}
nav.navbar-mobile .message a {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border-radius: 50px;
  color: #FFF;
  font-size: 20px;
  transition: ease-in-out 320ms;
}
nav.navbar-mobile .message a:hover {
  background: #ECB6E7;
  font-size: 24px;
}

#sentinel {
  height: 1px; /* Tamanho mínimo para ser detectado */
  width: 100%;
  background: transparent;
}

.header-hidden {
  position: sticky;
  top: 0;
  padding: 15px 0px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform: translateY(0%); /* Esconde o header */
  transition: ease-in-out 320ms;
  z-index: 10;
}
.header-hidden a.logo img {
  max-width: 150px;
}
.header-hidden .message a {
  width: 45px;
  height: 45px;
}

.hero {
  margin-top: 180px;
}
@media screen and (max-width: 990px) {
  .hero {
    margin-top: 120px;
  }
}
.hero .hero-text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 990px) {
  .hero .hero-text {
    align-items: flex-start;
  }
}
@media screen and (max-width: 990px) {
  .hero .hero-text .we-are-worldwide img {
    max-width: 15px;
  }
}

.hero-content span {
  font-family: "Frastha", serif;
  font-weight: bold;
  font-size: 30px;
  color: #ECB6E7;
  margin-top: -20px;
  display: flex;
}
.hero-content h1 {
  font-family: "Newake";
  color: #FFF;
  letter-spacing: 3px;
  font-size: 55px;
  max-width: 840px;
  width: 100%;
}
@media screen and (max-width: 990px) {
  .hero-content h1 {
    max-width: 90%;
    font-size: 44px;
  }
}
.hero-content .available {
  margin-top: 100px;
  display: flex;
  color: #FFF;
  align-items: center;
  position: relative;
  height: 30px;
  font-family: "Clash Grotesk", serif;
  font-weight: 500;
  --background: 236, 182, 231;
  --size: 3rem;
  --duration: 3s;
  --scale: 2;
  --opacity: 0.4;
}
@media screen and (max-width: 990px) {
  .hero-content .available {
    margin-top: 50px;
  }
}
.hero-content .available .status__icon {
  width: 15px;
  height: 15px;
  background: rgb(var(--background));
  border-radius: 100%;
  position: relative;
  animation: pulse-shadow var(--duration) calc(2 * var(--duration) / 3) linear infinite;
}
.hero-content .available .status__icon::after, .hero-content .available .status__icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgb(var(--background));
  border-radius: 100px;
}
.hero-content .available .status__icon::after {
  animation: pulse var(--duration) linear infinite;
}
.hero-content .available .status__icon::before {
  animation: pulse var(--duration) calc(var(--duration) / 3) linear infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: var(--opacity);
  }
  100% {
    transform: scale(var(--scale));
    opacity: 0;
  }
}
@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--background), var(--opacity));
  }
  100% {
    box-shadow: 0 0 0 calc((var(--scale) - 1) * var(--size) / 2) rgba(var(--background), 0);
  }
}
.hero-content .available span {
  display: flex;
  width: 10px;
  height: 10px;
  background: #ECB6E7;
  border-radius: 50px;
  margin: 0;
  margin-right: 15px;
}
@media screen and (max-width: 990px) {
  .hero-content .available p {
    max-width: 200px;
  }
}

.mySwiperPortfolio {
  margin-top: 180px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 990px) {
  .mySwiperPortfolio {
    margin-top: 60px;
  }
}
.mySwiperPortfolio .carousel {
  width: 100%;
  gap: 15px;
}
.mySwiperPortfolio .carousel .glider-track {
  height: 461px;
}
.mySwiperPortfolio .carousel .glider-slide {
  height: 100%;
  overflow: hidden;
  margin: 0 10px;
}
.mySwiperPortfolio .carousel .glider-slide img {
  max-width: 100%;
  height: auto;
}

#who-we-are {
  margin-top: 180px;
}
@media screen and (max-width: 990px) {
  #who-we-are {
    margin-top: 60px;
  }
}

.who-we-are {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 990px) {
  .who-we-are {
    flex-direction: column;
  }
}
.who-we-are .hero-content h1 {
  max-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 990px) {
  .who-we-are .hero-content h1 {
    font-size: 34px;
  }
}
@media screen and (max-width: 990px) {
  .who-we-are .link {
    margin-top: 30px;
    display: flex;
  }
}
.who-we-are a {
  color: #ECB6E7;
  font-size: 22px;
  font-family: "Frastha", serif;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 990px) {
  .who-we-are a {
    margin-right: 20px;
  }
}
.who-we-are a img {
  margin-left: 10px;
}

@media screen and (max-width: 990px) {
  .mySwiperPortfolio {
    margin-top: 150px;
  }
}

.gliderClientes {
  background: #ECB6E7 !important;
  height: fit-content !important;
  padding: 50px 0;
}
.gliderClientes .glider-track {
  height: unset !important;
}
.gliderClientes .glider-slide {
  height: unset !important;
  display: flex;
  justify-content: center;
  width: 100%;
}
.gliderClientes .glider-slide img {
  max-width: 100%;
  height: auto;
}

.services {
  margin-top: 180px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 990px) {
  .services {
    margin-top: 80px;
  }
}
.services .service {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #ECB6E7;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 990px) {
  .services .service {
    flex-direction: column;
  }
}
.services .service .service-name {
  font-size: 30px;
  font-family: "Newake", serif;
  flex: 1.2;
}
@media screen and (max-width: 990px) {
  .services .service .service-name {
    width: 100%;
    margin-bottom: 8px;
  }
}
.services .service .service-description {
  font-size: 20px;
  font-family: "Clash Grotesk", serif;
  color: #FFF;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.services .service .service-description .plataforms {
  margin-top: 10px;
  display: flex;
  background: #232323;
  padding: 10px;
  flex-direction: column;
  width: fit-content;
  border-left: 5px solid #ECB6E7;
  padding-left: 10px;
}
.services .service .service-description .plataforms p {
  color: #FFF;
  font-size: 14px;
}
.services .service .service-description .plataforms .imagens-plataformas {
  display: flex;
  margin-top: 10px;
  align-items: center;
  gap: 18px;
}
.services .service .service-description .plataforms .imagens-plataformas img {
  max-width: 70px;
  height: auto;
}
.services .service .service-description .plataforms .imagens-plataformas img:nth-child(2) {
  max-width: 80px;
}
.services .service .service-link {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 990px) {
  .services .service .service-link {
    display: none;
  }
}

footer {
  width: 100%;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
  position: relative;
  z-index: 9;
}
footer .footer {
  width: 100%;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 990px) {
  footer .footer {
    flex-direction: column;
  }
}
footer .footer .footer-column {
  display: flex;
  flex-direction: column;
}
footer .footer .column1 {
  max-width: 600px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 990px) {
  footer .footer .column1 {
    max-width: 100%;
    height: 20vh;
    padding-left: 5%;
  }
}
footer .footer .column1 .logo-footer {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 990px) {
  footer .footer .column1 .logo-footer {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
footer .footer .column1 .logo-footer img {
  max-width: 130px;
  width: 100%;
}
footer .footer .column1 .logo-footer p {
  color: #FFF;
  font-size: 18px;
  margin-top: 15px;
  max-width: 300px;
  width: 100%;
  line-height: 24px;
}
footer .footer .column2 {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 990px) {
  footer .footer .column2 {
    padding-left: 5%;
    flex: unset;
  }
}
footer .footer .column2 .contato {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 990px) {
  footer .footer .column2 .contato {
    height: 60vh;
  }
}
footer .footer .column2 .contato h6 {
  font-weight: normal;
  color: #ECB6E7;
  font-size: 26px;
  font-weight: bold;
  font-family: "Frastha", serif;
}
@media screen and (max-width: 990px) {
  footer .footer .column2 .contato h6 {
    font-size: 24px;
  }
}
footer .footer .column2 .contato .links-para-contato {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  gap: 15px;
}
footer .footer .column2 .contato .links-para-contato a {
  font-size: 62px;
  font-weight: bold;
  color: #fff;
  font-family: "Newake", serif;
  letter-spacing: 3px;
}
@media screen and (max-width: 990px) {
  footer .footer .column2 .contato .links-para-contato a {
    font-size: 36px;
  }
}
@media screen and (max-width: 390px) {
  footer .footer .column2 .contato .links-para-contato a {
    font-size: 32px;
  }
}
footer .footer .column2 .contato .links-para-contato a:hover {
  color: #ECB6E7;
}
footer .footer .column2 .contato .social {
  margin-top: 150px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 990px) {
  footer .footer .column2 .contato .social {
    margin-top: 80px;
    flex-direction: column;
    align-items: flex-start;
  }
}
footer .footer .column2 .contato .social > a {
  margin-left: 5%;
  color: #ECB6E7;
  font-family: "Clash Grotesk", serif;
}
@media screen and (max-width: 990px) {
  footer .footer .column2 .contato .social > a {
    margin-top: 100px;
    margin-left: 0;
  }
}
footer .footer .column2 .contato .social ul {
  display: flex;
  gap: 15px;
}
footer .footer .column2 .contato .social ul li {
  list-style: none;
  border-radius: 50px;
  background: #fff;
  transition: ease-in-out 320ms;
}
footer .footer .column2 .contato .social ul li:hover {
  background: #ECB6E7;
}
footer .footer .column2 .contato .social ul li:hover a i {
  color: #000;
}
footer .footer .column2 .contato .social ul li a {
  transition: ease-in-out 320ms;
  width: 50px;
  border-radius: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer .column2 .contato .social ul li a i {
  font-size: 22px;
  color: #232323;
  transition: ease-in-out 320ms;
}

.politics {
  margin-top: 180px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 990px) {
  .politics {
    margin-top: 80px;
  }
}
.politics .text {
  color: #FFF;
  max-width: 990px;
}
.politics .text h2 {
  font-size: 32px;
  font-family: "Newake", serif;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.politics .text h3 {
  font-size: 22px;
  font-family: "Newake", serif;
  letter-spacing: 2px;
  color: #ECB6E7;
}
.politics .text h4, .politics .text h5, .politics .text h6, .politics .text h7, .politics .text h8, .politics .text h9 {
  font-size: 18px;
  font-family: "Newake", serif;
  letter-spacing: 1px;
  color: #ECB6E7;
}
.politics .text p {
  font-size: 18px;
  font-family: "Clash Grotesk", serif;
  font-weight: 500;
  margin-top: 3px;
}
.politics .text .politica-intro {
  margin-bottom: 30px;
}
.politics .text .politica1 {
  margin-bottom: 30px;
}

.who-we-are-page {
  margin-top: 180px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 990px) {
  .who-we-are-page {
    margin-top: 80px;
  }
}
.who-we-are-page .who-we-are-intro {
  display: flex;
  flex-direction: column;
  max-width: 990px;
}
.who-we-are-page .who-we-are-intro h2 {
  font-size: 32px;
  font-family: "Clash Grotesk Semibold", serif;
  margin: 0;
  color: #FFF;
  width: 100%;
}
.who-we-are-page .who-we-are-intro p {
  font-size: 24px;
  font-family: "Clash Grotesk", serif;
  font-weight: 500;
  width: 100%;
  margin-top: 5px;
  color: #FFF;
  opacity: 0.7;
}
.who-we-are-page .who-we-are-bloco {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 80px;
  max-width: 990px;
}
.who-we-are-page .who-we-are-bloco h3 {
  font-size: 24px;
  font-family: "Frastha", serif;
  margin: 0;
  color: #ECB6E7;
}
.who-we-are-page .who-we-are-bloco p {
  font-size: 18px;
  font-family: "Clash Grotesk", serif;
  font-weight: 500;
  max-width: 990px;
  margin-top: 5px;
  color: #FFF;
}

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