body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  color: var(--text-color-light);
}

.services-section {
  text-align: center;
  padding: 50px 0;
  margin-top: 30px;
}

.services-section h1 {
  font-size: 26px;
  font-weight: 600;
}

.titleServices {
  bottom: 10px;
}

.col-md-4 {
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.alinhamento{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: -8px;
}

/* .row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
} */

.card {
  width: 280px;
  height: 280px;
  perspective: 1000px;
  margin: 15px;
  position: relative;
}

.card-front,
.card-back {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  backface-visibility: hidden;
  transition: transform 0.6s;
}

.card-front {
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.card-title {
  width: 100%;
  background-color: #518daf;
  color: #fff;
  padding: 10px;
  border-radius: 0 0 10px 10px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

.card-back {
  background-color: #403c59;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
  padding: 20px;
  box-sizing: border-box;
}

.card-back p {
  margin: 0 0 10px;
}

.card:hover .card-front {
  transform: rotateY(-180deg);
}

.card:hover .card-back {
  transform: rotateY(0deg);
}

.button {
  border-radius: 10px;
}

@media (max-width: 767px) {
  .col-md-4 {
    /* flex: 0 0 100%; */
    max-width: 100%;

    padding-right: 0px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .col-md-4 {
    /* flex: 0 0 50%; */
    max-width: 50%;
    padding-right: 0px;
  }
}

body.dark .card-title,
body.dark .card-back {
  background-color: #444444;
}

body.dark .footer {
  background-color: #1e1e1e;
}

body.dark .footer a,
body.dark .footer p {
  color: #e0e0e0;
} 