.servicos {
  font-family: 'Poppins', sans-serif;
  background-color: #bb2227;
  width: 100%;
  height: 740px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 35px 15px;
  box-sizing: border-box;
}

.servicos h1 {
  font-weight: 450;
  color: #fff;

}

.containerCarrossel {
  max-width: 1100px;
  width: 100%;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  box-sizing: border-box;
}


.carrossel {
  overflow: hidden;
  border-radius: 30px;
}

.faixaCarrossel {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.faixaCarrossel>div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  min-width: 100%;
  padding: 25px;
  box-sizing: border-box;

}

.faixaCarrossel img {
  width: 350px;
  height: auto;
  border-radius: 13px;
  object-fit: cover;
}

.faixaCarrossel h3 {
  color: #191919;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 450;
}

.faixaCarrossel p {
  color: #565656;
  font-size: 16px;
  line-height: 1.6;
}


.indicadores {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.indicadores button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}

.indicadores button.ativo {
  background-color: #565656;
}


.linhaBotoes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.linhaBotoes button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.linhaBotoes button img {
  width: 45px;
  height: 43px;
  transition: transform 0.2s;
}

.linhaBotoes button:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {

  /* seção serviços */
  .servicos {
    height: auto;
    padding: 30px 15px;
    text-align: center;
  }

  .servicos h1 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
  }

  /* branco */
  .containerCarrossel {
    padding: 30px 18px;
    border-radius: 26px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }


  .faixaCarrossel {
    display: flex;
    align-items: flex-start;
  }

  /* slide individual */
  .faixaCarrossel>div {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin: 0 auto;
    min-height: 430px;
    justify-content: flex-start;
  }


  .faixaCarrossel img {
    width: 100%;
    max-width: 370px;
    height: 255px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 12px;
  }


  .faixaCarrossel h3 {
    font-size: 18px;
    margin: 6px 0 4px;
    text-align: center;
  }

  .faixaCarrossel p {
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
    margin: 0 14px;
  }

  /*segundo slide */
  .faixaCarrossel>div:not(:first-child) h3 {
    font-size: 19px;
  }

  .faixaCarrossel>div:not(:first-child) p {
    font-size: 15.5px;
    line-height: 1.55;
  }

  /* botões */
  .linhaBotoes {
    margin-top: 24px;
    gap: 10px;
    display: flex;
    justify-content: center;
  }

  .linhaBotoes button img {
    width: 35px;
    height: 33px;
  }

  /* indicadores */
  .indicadores {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 6px;
  }

  .indicadores button {
    width: 10px;
    height: 10px;
  }
}