.services_container {
  padding: 4rem 1.5rem;

  margin: 0 auto;
  background: var(--cor-secundaria);
  color: #1f2937;
}

.services_container>h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #111827;
}

.services_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.services_card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.services_card-img{
width: 600px;
height: 300px;
}


.services_card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;

}

.services_card-body p {
  margin-bottom: 1rem;
}

.btn {
  width: 100%;
  background-color: var(--cor-primaria);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--cor-primaria);
}