.geral {
  margin: 0 auto;
  width: 95%;
  min-height: 40vh;
}

.form-title {
  background-color: #051791;
  border-radius: 10px;
  margin-top: 20px;
  padding: 10px;
}

.form-title h3 {
  color: #fff;
  font-size: 1.5em;
  text-align: center;
}

.cards-container {
  display: flex;
  margin: 0 auto;
  gap: 10px;
  justify-content: center;
}

.services-inner {
  border: 2px solid #00a2ff;
  border-radius: 10px;
  text-align: center;
  height: 230px;
  margin-top: 40px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.services-inner:hover {
  transform: scale(1.02);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
}

.our-services-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.our-services-text i {
  font-size: 48px;
  color: #00a2ff;
  margin-bottom: 10px;
}

/* cadastrovacinacaocovid19new.php / agendacovid19.php / alteracovid19.php */

.title {
  background-color: #051791;
  border-radius: 10px 10px 0 0;
  margin-top: 20px;
  padding: 10px;
}

.title h4 {
  color: #fff;
  font-size: 1.5em;
  text-align: center;
}

.container-form {
  border-radius: 0 0 10px 10px;
  padding: 20px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}

.link-vacinaja h4 {
  color: red;
  text-align: center;
  font-size: 1.2em;
  transition: all 0.3s ease;
}

.link-vacinaja h4:hover {
  color: red;
  text-decoration: underline;
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .geral {
    width: 100%;
  }

  .form-title h3 {
    font-size: 1.2em;
  }

  .title h4 {
    font-size: 1.2em;
  }

  .cards-container {
    flex-direction: column;
  }

}