#servicos {
  background: #fdf8eb; /* tom claro que combina com dourado */
  color: #2e084b;
  padding: 60px 20px;
}

.servicos-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.servicos-container .title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #d4af37;
}

.carrossel-wrapper {
  overflow: hidden;
  position: relative;
}

.carrossel-servicos {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.servico-card {
  flex: 0 0 100%;
  max-width: 100%;
  background: white;
  border-radius: 12px;
  margin: 0 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.servico-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.servico-card h3 {
  font-size: 1.3rem;
  color: #d4af37;
  margin: 15px 10px 5px;
}

.servico-card p {
  font-size: 1rem;
  color: #434343;
  margin: 0 10px 20px;
}

.botoes-carrossel {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.botao {
  background-color: #d4af37;
  color: white;
  border: none;
  font-size: 1.2rem;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.botao:hover {
  background-color: #b8962f;
}

/* Responsivo */
@media (max-width: 768px) {
  .servico-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 769px) {
  .servico-card {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media (min-width: 1025px) {
  .servico-card {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
