.contato-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contato-card__badge img {
  display: block;
  max-width: 54px;
}

.contato-card__text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.contato-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.contato-card__icon img {
  width: 16px;
  height: 22px;
}

.contato-card__link,
.contato-card__link:hover,
.contato-card__link:focus {
  color: #ffffff;
  text-decoration: none;
}

.contato-card__social {
  margin-top: 1rem;
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  transition: all 0.25s ease;
}

.social__icon:hover,
.social__icon:focus {
  color: #212529;
  background: #f6c143;
  border-color: transparent;
}

.contato-form-card {
  min-height: 100%;
}

.contato-form-card .form-control,
.contato-form-card .form-select,
.contato-form-card .form-check-label a {
  border-radius: 12px;
}

.contato-form-card .form-control:focus,
.contato-form-card .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(246, 193, 67, 0.2);
}

.btn-contato {
  background: #f6c143;
  color: #212529;
  border: none;
  padding: 0.95rem 1.25rem;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-contato:hover,
.btn-contato:focus {
  background: #e5b536;
  color: #212529;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(246, 193, 67, 0.22);
}

.contato-form-card .form-check-input {
  width: 1.15rem;
  height: 1.15rem;
}

.contato-map {
  width: 100%;
  min-height: 400px;
  border: none;
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767.98px) {

  .contato-card,
  .contato-form-card {
    border-radius: 1.5rem;
  }

  .social__icon {
    width: 42px;
    height: 42px;
  }
}