.hero {
  background: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    url(../images/hero.webp);
  background-position: 35% center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 10rem;
  height: calc(100vh - 96px);
  margin-top: 96px;
}

.hero h1 {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -3.84px;
  max-width: 600px;
  margin-bottom: 24px;
}

.hero p {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.72px;
  max-width: 430px;
  margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .hero {
    height: calc(85vh - 96px);
  }
}

@media screen and (min-width: 1024px) {
  .hero {
    margin-top: 140px;
    height: calc(85vh - 140px);
  }
}

/* CLIENTES */
.clientes {
  padding: 5rem 0;
  transform: translateY(-96px);
  background-color: #f7f7f7;
  margin-bottom: -96px;
}

.marquee {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  gap: 7.5rem;
  position: relative;
  user-select: none;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
  gap: 7.5rem;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 7.5rem));
  }
}

.scroll {
  animation: scroll 20s linear infinite;
}

.scroll.paused {
  animation-play-state: paused;
}

.clientes-empresa {
  padding: 5rem 0;
}

.clientes-empresa .clientes {
  padding: 0;
  transform: none;
  margin-top: 40px;
}

.clientes-empresa .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.clientes-empresa .section-title {
  max-width: 825px;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .clientes {
    border-radius: 100px 100px 0px 0px;
  }
}

/* QUEM SOMOS */
.quem-somos {
  background-color: #f7f7f7;
  padding: 2.5rem 0 5rem;
}

.quem-somos .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  place-items: center;
}

.quem-somos-content {
  order: 1;
}

.quem-somos-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.quem-somos-cards__card {
  padding: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quem-somos-cards__card svg {
  margin-bottom: 20px;
}

.quem-somos-cards__card h3 {
  color: #000;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 139%;
  letter-spacing: -0.64px;
}

@media screen and (min-width: 1024px) {
  .quem-somos .container {
    grid-template-columns: 1fr 1fr;
  }
  .quem-somos-content {
    order: 0;
  }
}

@media screen and (min-width: 475px) {
  .quem-somos-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* SERVICOS */
.servicos {
  padding: 5rem 0;
}

.servicos .servicos-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

@media screen and (min-width: 1024px) {
  .servicos .servicos-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
  }
  .servicos .servicos-header__content {
    max-width: 535px;
  }
}

/* SERVICOS SWIPER */
.swiper-wrapper {
  margin-top: 80px;
  height: 500px;
  margin-bottom: 48px;
}

.swiper-slide {
  width: 405px;
  text-decoration: none;
}

.swiper-slide .swiper-slide-content {
  background-color: #fff;
  padding: 24px 48px;
  transform: translateY(-16px);
  width: 90%;
  margin: 0 auto;
  border-radius: 5px;
}

.swiper-slide .swiper-slide-content h3 {
  color: #000;
  font-family: "Raleway", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.swiper-slide .swiper-slide-content p {
  color: #4e4e4e;
  font-family: "Raleway", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: -0.56px;
  margin-bottom: 24px;
}

.swiper-slide .swiper-slide-content span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 50px;
  background: #e9eff5;
}

.servicosSwiper .swiper-pagination-bullet-active {
  background-color: var(--primary-highlight-foreground);
}

/* DIFERENCIAIS */
.diferenciais {
  padding: 5rem 0;
  background: linear-gradient(
    245deg,
    #0c2238 10.87%,
    #21629f 31.79%,
    #ee5c35 78.87%,
    #532013 94.57%
  );
}

.diferenciais-container {
  padding: 2.5rem;
  border-radius: 10px;
  background: #f7f7f7;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.diferenciais-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.diferenciais-cards__card {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.diferenciais-cards__card h3 {
  color: #0c2238;
  font-family: "Raleway", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.96px;
}

@media screen and (min-width: 1280px) {
  .diferenciais-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 768px) {
  .diferenciais-cards {
    grid-template-columns: 1fr 1fr;
  }
  .diferenciais-container {
    padding: 64px 80px;
    border-radius: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .diferenciais {
    background: #f7f7f7;
  }

  .diferenciais .container {
    background: linear-gradient(
      245deg,
      #0c2238 10.87%,
      #21629f 31.79%,
      #ee5c35 78.87%,
      #532013 94.57%
    );
    padding: 7.5rem 5rem;
    border-radius: 10px;
  }
}

@media screen and (min-width: 1280px) {
  .diferenciais-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* INFORMAÇÕES */
.informacoes {
  padding: 5rem 0;
  background-color: #f7f7f7;
}

.informacoes .informacoes-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.informacoes .informacoes-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 80px;
}

.informacoes .informacoes-cards__card {
  max-width: 400px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin: 0 auto;
  border-radius: 5px;
}

.informacoes .informacoes-cards__card-content {
  padding: 40px;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
}

.informacoes .informacoes-cards__card-content h3 {
  color: #191a19;
  font-family: "Raleway", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}

.informacoes .informacoes-cards__card-content p {
  color: #595959;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: -0.64px;
  margin-bottom: 32px;
}

.informacoes .informacoes-cards__card-content span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #21629f;
  font-family: "Raleway", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

@media screen and (min-width: 768px) {
  .informacoes .informacoes-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .informacoes .informacoes-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
  }
  .informacoes .informacoes-header__content {
    max-width: 535px;
  }
  .informacoes .informacoes-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
