.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the color and transparency as needed */
  display: none;
  z-index: 999; /* Ensure the overlay is on top of other content */
}

@keyframes MoveBackgroundPosition {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.title-large {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(247, 247, 247, 0.5);
  font-family: "Syne", sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: none;
}
@media (max-width: 576px) {
  .title-large {
    font-size: 3.2rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .title-large {
    font-size: 3.6rem;
  }
}

.title-medium {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(247, 247, 247, 0.5);
  font-family: "Syne", sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: none;
}
@media (max-width: 576px) {
  .title-medium {
    font-size: 2.4rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .title-medium {
    font-size: 2.7rem;
  }
}

.title-small {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(247, 247, 247, 0.5);
  font-family: "Syne", sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: none;
}
@media (max-width: 576px) {
  .title-small {
    font-size: 1.6rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .title-small {
    font-size: 1.8rem;
  }
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #202020;
  overflow-x: hidden !important;
}

a {
  text-decoration: none;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(247, 247, 247, 0.5);
  font-family: "Syne", sans-serif;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: none;
}
@media (max-width: 576px) {
  .section-title {
    font-size: 2.4rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .section-title {
    font-size: 2.7rem;
  }
}

.secondary-title {
  color: rgba(247, 247, 247, 0.5);
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.55rem;
  color: rgb(247, 247, 247);
}
@media (max-width: 768px) {
  .secondary-title {
    font-size: 2rem;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .secondary-mob {
    font-size: 1.5rem;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .secondary-title-mob {
    font-size: 1.25rem;
    line-height: 1.75rem;
    text-align: center;
  }
}

.title-spacing {
  padding: 1.5rem 0;
}
@media (max-width: 576px) {
  .title-spacing {
    font-size: 2rem;
    padding: 0.5rem 0;
    line-height: 2rem;
  }
}

.content-text-style {
  color: rgba(247, 247, 247, 0.6);
  font-feature-settings: "clig" off, "liga" off;
  font-family: "Vastago Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}

@media (max-width: 992px) {
  .content-text-mob {
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
  }
}

section {
  padding-left: 4rem;
  padding-right: 4rem;
}
@media (max-width: 768px) {
  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.section-global {
  background-image: url("../../../assets/img/bg_preto%201.webp?h=e3e72e618c51d05a0189a2a9c8156f65");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: auto;
  padding: 5rem 0;
}