.inicio-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 95px;
}

.inicio-header {
  margin-bottom: 22px;
}

.inicio-hero {
  margin-bottom: 18px;
}

.busca-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fffdfb;
  border-radius: 18px;
  padding: 14px 16px;
  max-width: 520px;
  margin-top: 20px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.09);
}

.busca-box span {
  font-size: 18px;
}

.busca-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: var(--texto);
  background: transparent;
}

.busca-box input::placeholder {
  color: #9a93aa;
}

.resumo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.resumo-card {
  background: var(--card);
  border: 1px solid var(--borda);
  border-radius: 24px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--sombra-card);
}

.resumo-card strong {
  display: block;
  font-size: 24px;
  color: var(--rosa-principal);
  font-weight: 950;
}

.resumo-card span {
  font-size: 12px;
  color: var(--texto-suave);
  font-weight: 800;
}

.section-topo {
  margin-bottom: 14px;
}

.section-topo h2 {
  font-size: 24px;
  font-weight: 950;
  color: var(--texto);
  margin-bottom: 4px;
}

.section-topo p {
  font-size: 14px;
  color: var(--texto-suave);
}

.grid-negocios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.card-negocio {
  background: var(--card);
  border: 1px solid var(--borda);
  border-radius: 26px;
  padding: 14px;
  box-shadow: var(--sombra-card);
  cursor: pointer;
  transition: 0.24s ease;
  overflow: hidden;
}

.card-negocio:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(217, 111, 176, 0.16);
}

.card-negocio img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #f6ecfb;
}

.card-negocio h3 {
  font-size: 17px;
  font-weight: 950;
  color: var(--texto);
  margin-bottom: 5px;
}

.card-negocio .local {
  font-size: 13px;
  color: var(--texto-suave);
  margin-bottom: 8px;
  display: block;
  font-weight: 800;
}

.card-negocio .descricao {
  font-size: 13px;
  color: var(--texto-suave);
  line-height: 1.35;
  margin-bottom: 12px;
}

.areas-card {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.areas-card span {
  background: #f6ecfb;
  color: #8a5bb0;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 900;
}

.btn-card-agendar {
  margin-top: 14px;
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 12px;
  background: var(--gradiente-marca);
  color: white;
  font-weight: 950;
  cursor: pointer;
}

.mensagem-home {
  margin: 12px 0;
  font-weight: 800;
  color: #e63946;
}

.estado-vazio {
  grid-column: 1 / -1;
  text-align: center;
  background: var(--card);
  border: 1px dashed var(--borda);
  border-radius: 22px;
  padding: 22px;
  color: var(--texto-suave);
  font-weight: 800;
}

.hidden {
  display: none;
}

@media (max-width: 720px) {
  .inicio-page {
    padding: 16px;
    padding-bottom: 92px;
  }

  .resumo-cards {
    grid-template-columns: 1fr;
  }

  .section-topo h2 {
    font-size: 22px;
  }
}
.foto-card-negocio,
.avatar-negocio-card {
  width: 100%;
  height: 160px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 14px;
}

.avatar-negocio-card {
  background: #e7abd1;
  color: white;
  font-size: 54px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}