.hero {
  background: linear-gradient(
      180deg,
      rgba(0, 25, 24, 0) 0%,
      rgba(0, 25, 24, 0.91) 82.21%
    ),
    url(../images/hero.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
  min-height: 675px;
  margin-top: 110px;
}

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

.hero-badge {
  padding: 10px 16px;
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;

  width: fit-content;

  display: flex;
  align-items: center;
  gap: 10px;

  border-radius: 50px;
  border: 1px solid #00fff5;
  background: #003432;
  margin: 0 auto;
}

.hero h1 {
  color: #fff;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -1.92px;
  text-align: center;
  margin: 32px auto;
  max-width: 1100px;
}

.hero h1 span {
  color: #00fff5;
  font-weight: 600;
}

.hero p {
  color: #fff;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.64px;
  margin-bottom: 32px;
  text-align: center;
}

.hero p strong {
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1280px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero {
    margin-top: 199px;
  }
}

/* SOBRE NOS */
.sobre-nos {
  padding: 5rem 0;
}

.sobre-nos .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.sobre-nos .sobre-nos-badge {
  color: #464646;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;

  width: fit-content;
  display: block;
  padding: 10px 24px;
  border-radius: 50px;
  background: #e6f4f4;
  margin-bottom: 32px;
}

.sobre-nos-content p {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 32px;
}

.sobre-nos .primary-btn {
  padding: 16px 32px;
}

.sobre-nos-image {
  position: relative;
}

.sobre-nos-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.sobre-nos-image__content {
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: fit-content;
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.sobre-nos-image__content h3 {
  color: #121212;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.sobre-nos-image__content p {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 143%;
  letter-spacing: -0.64px;
}

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

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

.servicosSwiper .swiper-slide {
  max-width: 405px;
  text-decoration: none;
  border-radius: 20px;
  border: 1px solid #dedede;
  background: #fff;
  padding: 32px;
}

.servicosSwiper .swiper-slide-icon {
  width: 80px;
  height: 80px;
  padding: 16px;
  border-radius: 50px;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.servicosSwiper .swiper-slide h3 {
  color: #000;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 32px 0;
}

.servicosSwiper .swiper-slide p {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 32px;
}

.servicosSwiper .swiper-slide .primary-btn {
  width: 100%;
  padding: 16px 32px;
}

.servicosSwiper {
  height: 525px;
  margin-top: 80px;
}

.servicosSwiper .swiper-wrapper {
  height: fit-content;
}

.servicosSwiper .swiper-pagination-bullet {
  background-color: #eaeaea;
  opacity: 1;
}

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

.servicosSwiper .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 20px;
}

.servicosSwiper .swiper-next,
.servicosSwiper .swiper-prev {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50px;
  border: 1px solid #dedede;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  cursor: pointer;
}

.servicosSwiper .swiper-next {
  left: 75%;
}

.servicosSwiper .swiper-prev {
  left: 25%;
}

.swiper-next.swiper-button-disabled svg path,
.swiper-prev.swiper-button-disabled svg path {
  stroke: #b0b0b0;
}

@media screen and (min-width: 768px) {
  .servicosSwiper .swiper-next {
    left: 65%;
  }
  .servicosSwiper .swiper-prev {
    left: 35%;
  }
  .servicosSwiper {
    height: 470px;
  }
}

@media screen and (min-width: 992px) {
  .servicos {
    background-color: #f7f7f7;
    padding: 5rem 0;
  }
  .servicos .container {
    padding: 5rem;
    background-color: #fff;
    border-radius: 20px;
  }
  .servicosSwiper .swiper-next {
    left: 60%;
  }
  .servicosSwiper .swiper-prev {
    left: 40%;
  }
}

@media screen and (min-width: 1280px) {
  .servicos {
    background-color: #f7f7f7;
    padding: 5rem 0;
  }
  .servicos .container {
    padding: 5rem;
    background-color: #fff;
    border-radius: 20px;
  }
  .servicosSwiper .swiper-next {
    left: 57.5%;
  }
  .servicosSwiper .swiper-prev {
    left: 42.5%;
  }
}

/* DEMONSTRACOES */
.demonstracoes {
  padding: 2.5rem 0;
  background-color: #f7f7f7;
}

.demonstracoes .container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.demonstracoes-demo {
  display: grid;
  grid-template-columns: 1fr;
}

.demonstracoes-demo__content {
  padding: 24px;
  flex: 1;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
}

.demonstracoes-demo__content-icon {
  width: 52px;
  height: 52px;
  padding: 16px;
  border-radius: 50px;
  background: #e6f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.demonstracoes-demo__content h3 {
  color: #121212;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -1.08px;
  margin: 48px 0;
}

.demonstracoes-demo__content h3 span {
  color: var(--primary-color);
}

.demonstracoes-demo__content p {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 48px;
}

.demonstracoes-demo__content ul {
  list-style-type: none;
}

.demonstracoes-demo__content li {
  color: #121212;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;

  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.demonstracoes-demo__image {
  flex: 1;
}

.demonstracoes-demo__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
  max-height: 325px;
}

@media screen and (min-width: 768px) {
  .demonstracoes-demo__content {
    padding: 48px;
  }
  .demonstracoes-demo__content h3 {
    font-size: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .demonstracoes-demo {
    grid-template-columns: 1fr 1fr;
  }
  .demonstracoes-demo__content {
    border-radius: 20px 0 0 20px;
    padding: 64px;
  }
  .demonstracoes-demo__content h3 {
    font-size: 2.25rem;
  }
  .demonstracoes-demo__image img {
    max-height: 100%;
    border-radius: 0 20px 20px 0;
  }
}
