* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #f7f7f7;
}

a {
  text-decoration: none;
  display: block;
}

img {
  max-height: 100%;
  display: block;
}

ul {
  list-style: none;
}

p {
  font-size: 1.2rem;
}

.titulo {
  font-size: 2.5rem;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.subtitulo {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}


.header-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.header ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 1rem;
}

.logo {
  width: 80%;
}

.nav li a {
  padding: 10px 20px;
  color: #092517;
  font-weight: bold;
}

.nav li a:hover {
  color: #87c931;
}

nav li a.ativo {
  color: #87c931;
}

.servicos {
  background: #f7f7f7;
  text-align: center;
  padding: 4rem 0;
}

.servicos-container {
  max-width: 1200px;
  margin: 0 auto;
}

.servicos-container-item {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 25px;
  margin-top: 40px;
}

.serv-item {
  transition: transform 0.3s ease-in-out;
}

.serv-item:hover {
  transform: scale(1.05);
}

.serv-item img {
  width: 100%;
  border-radius: 10px;
}

.botaoa {
  background: #85c731;
  color: #092517;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 20px;
  transition: .3s;
}

.footer {
  background-color: #222222;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.footer-content {
  text-align: center;
}

.footer-contato {
  display: flex;
  gap: 3rem;
  justify-content: center;
  padding: 3rem 0;
  flex-wrap: wrap;
}

.footer-copy-bg {
  background-color: #111111;
}

.footer-copy {
  text-align: center;
  font-size: 1.2rem;
  padding: 2rem 0;
  color: #d1d1d1;
  max-width: 1200px;
  margin: 0 auto;
}

.contato-item i {
  font-size: 2rem;
  color: #87c931;
}

.contato-item a {
  margin-top: 1rem;
  color: #e5e5e5;
  font-size: 1.2rem;
  font-weight: bold;
}



.clientes{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-bottom: 65px;
}

.clienteslogo {
  max-width: 150px;
  height: auto;
  margin: 10px;
}

.logoclientes {
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}


.depoimentos {
  position: relative;
  overflow: hidden;
  max-width: 90%;
  margin: 0 auto;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 100px;
}

.depoimento {
  background-color: #87c931;
  color: #092517;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 20px;
  padding: 30px;
  max-width: 400px;
  width: 100%;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.depoimento img {
  width: 100px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 20px;
}

.mensagem {
  font-size: 18px;
  margin-bottom: 20px;
}

.autor {
  font-style: italic;
  font-size: 16px;
  text-align: right;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  color: #092517;
  font-size: 24px;
  cursor: pointer;
  z-index: 1;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.depoimento:hover {
  transform: scale(1.05);
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #85c731;
  padding: 20px;
  margin-right: 10px;
  border-radius: 10px;
  width: 400px;
}

.card:last-child {
  background-color: #092517;
  margin-right: 0;
}

h2 {
  margin: 0;
  color: #fff;
  text-align: center;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.serv-item {
  margin: 10px;
  transition: transform 0.3s ease-in-out;
}

.serv-item:hover {
  transform: scale(1.1);
}

.serv-item img {
  width: 100%;
  border-radius: 10px;
}

.btn1 {
  margin-top: 20px;
  font-size: 16px;
  padding: 10px 20px;
  background-color: #092517;
  color: #85c731;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn1:hover {
  background: #e5e5e5;
  color:#111111
}


.btn2 {
  margin-top: 20px;
  font-size: 16px;
  padding: 10px 20px;
  background-color: #85c731;
  color: #092517;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn2:hover {
  background: #e5e5e5;
  color:#111111
}

.btn:hover {
  background-color: #f2f2f2;
}

.miniaturaserviço{
  cursor: pointer;
}

.botaoa {
  background: #85c731;
  color: #092517;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 20px;
  transition: .3s;
}
