body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
}

/* ========================= */
/* 🔹 Navbar                 */
/* ========================= */
.navbar {
  padding: 0.8rem 0;
}

.navbar .nav-link {
  margin-left: 20px;
  transition: 0.2s;
  color: #333 !important;
}

.navbar .nav-link:hover {
  color: #198754 !important;
}

.logo-img {
  height: 46px;
  transition: 0.3s;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* ========================= */
/* 🔹 Hero Section           */
/* ========================= */
.hero {
  background: linear-gradient(135deg, #1ac770, #17a2b8);
  color: #fff;
  padding: 38px 0;
}

.hero .title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .title i {
  font-size: 2rem;
}

/* ========================= */
/* 🔹 Filtros                */
/* ========================= */
.filter-box {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  margin-top: -20px;
}

.filter-box .form-select, 
.filter-box .form-control {
  border-radius: 12px;
}

.result-meta {
  color: #64748b;
  font-size: .95rem;
}

/* ========================= */
/* 🔹 Card de Empresas       */
/* ========================= */
.empresa-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,.06);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.25s ease;
}

.empresa-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,.1);
}

/* Coluna esquerda */
.info-esquerda {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.empresa-nome {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.empresa-logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #e9ecef;
}

.letra-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
}

/* Coluna central */
.empresa-local,
.empresa-email {
  font-size: 0.9rem;
  color: #6c757d;
}

.empresa-local i,
.empresa-email i {
  color: #1ac770;
  margin-right: 4px;
}

/* Coluna direita (botões) */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 6px 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.btn-whatsapp:hover {
  background: #1fb65a;
  color: #fff;
}

.btn-ghost {
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  padding: 6px 16px;
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s ease;
}

.btn-ghost:hover {
  background: #f3f4f6;
}

/* ========================= */
/* 🔸 Responsividade Mobile  */
/* ========================= */
@media (max-width: 768px) {
  .empresa-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px;
  }

  .info-esquerda {
    align-items: center;
    margin-bottom: 10px;
  }

  .empresa-nome {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .empresa-logo, .letra-logo {
    width: 80px;
    height: 80px;
  }

  .empresa-local,
  .empresa-email {
    font-size: 0.85rem;
  }

  .empresa-card .d-flex.flex-column.align-items-end {
    align-items: center !important;
    justify-content: center;
    margin-top: 12px;
  }

  .btn-whatsapp, .btn-ghost {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
  }
}

/* ========================= */
/* 🔸 Ícones no celular      */
/* ========================= */
@media (max-width: 768px) {
  .btn-whatsapp span,
  .btn-ghost span {
    display: none; /* Oculta texto, mostra só ícone */
  }

  .btn-whatsapp i,
  .btn-ghost i {
    font-size: 1.4rem;
  }

  .btn-whatsapp,
  .btn-ghost {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .empresa-card .d-flex.flex-column.align-items-end {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 12px;
  }
}

/* ========================= */
/* 🔹 Rodapé                 */
/* ========================= */
footer {
  background: #1ac770;
  color: #fff;
  text-align: center;
  padding: 14px;
  margin-top: 50px;
  font-size: .9rem;
}
