/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  position: relative;
  width: 90%;
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  font-size: clamp(32px, 8vw, 110px);
  line-height: 0.9;
  color: var(--primary);
}

.hero-content p {
  margin-left: 5px;
  font-size: clamp(16px, 4vw, 45px);
  color: var(--primary);
}

.hero-img {
  position: relative;
}

.hero-img::before {
  content: "";
  position: absolute;
  width: 85%;
  height: 90%;
  background: var(--accent);
  border-radius: 100px;
  left: 28%;
  top: -8%;
  z-index: 0;
}

.hero-img img {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

/* SHAPES */
.shape {
  position: absolute;
  border: 2px solid var(--accent);
  border-radius: 60px;
}

.shape-top {
  width: 100vw;
  height: 220px;
  top: -100px;
  right: calc(100% + 20px);
  border-radius: 100px;
}

.shape-right {
  width: 75%;
  height: 80%;
  left: 45%;
  top: -15%;
  border-radius: 80px;
}

.shape-bottom {
  width: 280px;
  height: 140px;
  bottom: -60px;
  right: 60px;
}

.shape-about {
  position: absolute;
  width: 100vw;
  height: 140px;
  top: -40px;
  left: -80px;
  z-index: 1;
  border: 4px solid var(--accent);
  border-radius: 80px;
  pointer-events: none;
}

.clients .shape-about {
  width: 40vw !important;
  height: 240px !important;
  top: -150px;
  left: -250px;
}

.areas .shape-about {
  width: 40vw !important;
  height: 240px !important;
  bottom: -150px;
  right: -250px;
  top: inherit;
  left: inherit;
}

/* BUTTON */
.btn-primary {
  background: linear-gradient(135deg, #ff5a3c, #e74c3c);
  border: none;
  padding: 14px 26px;
  border-radius: 8px;
  color: white;
  margin-top: 15px;
  text-decoration: none;
  display: inline-block;
}

/* ABOUT */
.about {
  width: 100%;
  position: relative;
  background: transparent;
  overflow: visible;
}

.about-container {
  width: 100%;
  background: var(--primary);
  padding: 40px 0%;
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-content {
  max-width: 1920px;
  width: 100%;
  padding: 20px 6%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-content h2,
.about-content h3 {
  font-size: 20px;
  text-align: center;
  color: var(--accent);
}

.about-container p {
  font-size: 13px;
  text-align: center;
}

.about-box {
  display: flex;
  gap: 60px;
  margin-top: 40px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.about-text p {
  text-align: left !important;
}


.btn-yellow {
  background: var(--accent);
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  font-size: 18px;
  color: var(--primary);
  font-family: 'Open Sans', sans-serif;
  font-weight: 900;
  margin-top: 15px;
  text-decoration: none;
  display: inline-block;
}

/* ÁREAS */
.areas {
  width: 100%;
  position: relative;
  background: transparent;
  overflow: visible;
}

.areas-content {
  padding: 50px 0%;
  text-align: center;
  background-color: #F8FFFF;
  width: 100%;
  border-bottom: 4px solid var(--primary);
  z-index: 2;
  position: relative;
}

/* LINHAS AMARELAS */
.section-title {
  position: relative;
  margin-bottom: 50px;
}

.section-title h2 {
  display: inline-block;
  background-color: #F8FFFF;
  color: var(--primary);
  padding: 0 20px;
  position: relative;
  line-height: 2;
  margin-bottom: 20px;
  z-index: 2;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38%;
  height: 2px;
  background: var(--danger);
  transform: translateY(-50%);
}

.section-title::before {
  left: 0;
}

.section-title::after {
  right: 0;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

/* cada item */
.areas-grid>div {
  width: 110px;
  /* largura fixa do bloco */
  text-align: center;
}

.areas-grid div {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.area {
  width: 110px;
  height: 110px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.area img {
  width: 60%;
}

.area:hover {
  background: var(--danger);
}

/* ASSIST */
.assist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
}

.assist .assist-text {
  color: var(--primary);
  font-size: 40px;
  font-family: 'Open Sans', sans-serif;
}

.assist .assist-text a {
  font-size: 1.3rem;
}

.assist .assist-text strong {
  font-weight: 900;
}

.assist .assist-text button {
  border-radius: 80px;
  font-weight: 900;
  font-size: 18px;
}

/* CLIENTS */
.clients {
  width: 100%;
  position: relative;
  background: transparent;
  overflow: visible;
}

.client-content {
  width: 100%;
  background: var(--accent);
  padding: 40px 0%;
  position: relative;
  z-index: 2;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.client-content h2 {
  margin: 10px 0 40px 0;
}

.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.carousel i {
  font-size: 30px;
  cursor: pointer;
}

.dots {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
  scroll-behavior: smooth;
  max-width: 1300px;
  width: clamp(102px, 75%, 1300px);
}

.dots div {
  width: 102px !important;
  height: 102px !important;
  background: #eee;
  border-radius: 50%;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.dots div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 1030px) {
  .hero {
    margin-top: 40px;
  }
}

/* RESPONSIVO */
@media (max-width: 1020px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 80px;
    padding: 40px 8% 170px 8%;
  }
}



@media (max-width: 768px) {
  .hero-img::before {
    width: 75%;
    height: 80%;
    border-radius: 70px;
  }

  .shape-right {
    width: 65%;
    height: 75%;
    border-radius: 70px;
  }

  .hero-img img {
    width: 100%;
  }

}

@media (max-width: 750px) {
  .about-box {
    flex-direction: column;
    text-align: justify;
  }

  .about-box img {
    width: 100%;
  }

  .about-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-text p {
    text-align: center !important;
  }

  .areas-grid {
    padding: 0 10px;
  }

  .assist {
    flex-direction: column;
  }

  .assist img {
    width: 100%;
  }

  .assist-text {
    text-align: center;
  }
}

