/* ==========================================
   BOTÕES DE PERFIL (CIDADÃO, EMPRESA, SERVIDOR)
   ========================================== */
.btn-perfil-cidadao,
.btn-perfil-empresa,
.btn-perfil-servidor {
  background-color: #003D7A !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.btn-perfil-cidadao:hover,
.btn-perfil-empresa:hover,
.btn-perfil-servidor:hover {
  background-color: #002855 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 61, 122, 0.3) !important;
}

.style-texto-perfil {
  font-size: 1.15rem;
}

/* ==========================================
   MODAL DE SERVIÇOS E CARDS
   ========================================== */
.modal-perfil-backdrop {
  background-color: rgba(0, 24, 55, 0.88);
  backdrop-filter: blur(6px);
}

.card-servico-moderno {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 28px 16px;
  border-radius: 12px;
  text-decoration: none !important;
  text-align: center;
  height: 100%;
  min-height: 160px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-servico-moderno:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.card-servico-moderno i {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.card-servico-moderno h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a252f;
  margin-bottom: 4px;
}

.card-servico-moderno p {
  font-size: 0.78rem;
  color: #6c757d;
  margin: 0;
}

/* ==========================================
   AJUSTE RESPONSIVO MOBILE (DISCRETO E COMPACTO)
   ========================================== */
@media (max-width: 768px) {
  /* Reduz o texto no celular para não estourar */
  .style-texto-perfil {
    font-size: 0.75rem !important;
  }

  /* Ajusta os botões para ficarem elegantes lado a lado */
  .btn-perfil-cidadao,
  .btn-perfil-empresa,
  .btn-perfil-servidor {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  /* Reduz o espaçamento geral da seção */
  .secao-perfis {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}