.service-main {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0% 5% 0% 5%;
  gap: 20px;
  width: 100%;
}

.service-main a {
  text-decoration: none !important;
  color: #464e5c;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 193px;
  height: 179px;
  border-radius: 4px;
  padding: 10px;
  flex: 1 0 0;
  align-self: stretch;
  text-align: center;
  background-color: white;
  flex: 1 1 calc(33.33% - 20px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.service-card:hover {
  border: solid 1px #1474ff;
}

.service-card img {
  max-width: 67px;
  max-height: 77px;
}

.service-card span {
  text-transform: uppercase;
  margin: 10px;
}

.more-services-btn {
  margin: 10px;
  display: flex;
  justify-content: start;
}

.more-services-btn button {
  margin-left: 35px;
  margin-top: 10px;
  border-radius: 5px;
  background-color: #0f57bf;
}

.service-filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.service-filter-buttons .filtro-btn {
  min-width: 120px;
  padding: 10px 20px;
  font-size: 16px;
}

.service-filter-buttons .filtro-btn.ativo {
  background-color: #0f57bf;
  color: white;
  border-color: #0f57bf;
}

.banner {
  margin-left: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 4px;
  margin-bottom: 15px;
}

.banner-image {
  width: 610px;
  border-radius: 5px;
  height: 180px !important;
  object-fit: cover;
}

.banner-card {
  width: 100%;
  text-align: center;
  padding: 10px;
}

.banner-card img.banner-img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1600px) {

  .service-main {
    justify-content: center;
  }

  .banner {
    width: 450px !important;
    height: 150px !important;
  }

  .banner-image {
    width: 450px !important;
    height: 150px !important;
    object-fit: cover;
  }

  .more-services-btn {
    justify-content: center;
  }

  .service-card {
    width: 150px;
    height: 150px;
  }

  .service-card span {
    color: #464e5c;
    font-size: 15px;
    line-height: 20px;
    margin: 10px;
  }

}

@media screen and (max-width: 1167px) {
  .service-main {
    justify-content: center;
  }

  .more-services-btn {
    justify-content: center;
  }

  .more-services-btn button {
    margin-left: 0px;
  }
}

@media screen and (max-width: 500px) {

  .banner {
    width: 330px !important;
    height: 100px !important;
  }

  .banner-image {
    width: 330px !important;
    height: 100px !important;
    object-fit: cover;
  }

  .service-main {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0% 0% 0% 0%;
    gap: 15px;
    width: 100%;
  }

  .service-card img {
    max-width: 50px;
    max-height: 50px;
  }

  .service-card {
    width: 110px;
    height: 110px;
  }

  .service-card span {
    color: #464e5c;
    font-size: 12px;
    line-height: 15px;
    margin: 2px;
  }

  .service-filter-buttons {
    flex-direction: column;
    align-items: center;
  }

  .service-filter-buttons .filtro-btn {
    width: 100%;
    max-width: 225px;
  }
}

:root {
  --seduc-card-radius: 12px;
  --seduc-card-border: #e5e7eb;
  --seduc-card-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  --seduc-input-border: #d1d5db;
  --seduc-text-strong: #111827;
  --seduc-primary: #1a73e8;
  --seduc-primary-hover: #1669c1;
}

.seduc-admin-card {
  background: #fff;
  border: 1px solid var(--seduc-card-border);
  border-radius: var(--seduc-card-radius);
  box-shadow: var(--seduc-card-shadow);
  padding: 16px;
}

.seduc-admin-main {
  margin: 0 0 16px;
}

.seduc-admin-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 160px;
  gap: 16px;
  align-items: end;
}

@media (max-width: 991px) {
  .seduc-admin-grid {
    grid-template-columns: 1fr;
  }
}

.seduc-admin-label {
  display: block;
  font-weight: 600;
  color: var(--seduc-text-strong);
  margin-bottom: 6px;
}

.seduc-admin-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--seduc-input-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .03);
}

.seduc-admin-file {
  padding: 7px 8px;
}

.seduc-admin-btn {
  display: inline-block;
  width: 100%;
  padding: 10px 16px;
  border-radius: 8px;
  border: 0;
  background: var(--seduc-primary);
  color: #fff;
  cursor: pointer;
}

.seduc-admin-btn:hover {
  background: var(--seduc-primary-hover);
}

.seduc-banner-preview {
  max-width: 940px;
}

.seduc-banner-img {
  max-height: 300px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}