/* Grid de cards */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 1rem;
}

/* Estilo dos cards – versão premium */
.activity-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.activity-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.activity-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.activity-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}

.activity-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.activity-prices {
  margin-top: 0.5rem;
}

.price-starting {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.installments {
  font-size: 0.9rem;
  color: #888;
}

.activity-description {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.4;
}

.btn-see-more {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.7rem 1.2rem;
  background: var(--button-color);
  color: var(--button-text-color);
  border-radius: 4px;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-see-more:hover {
  background: var(--button-hover);
  transform: scale(1.02);
}

/* Outros estilos mantidos... (formulários, autocomplete, etc.) */

/* Estilos para a nova estrutura dos resultados */
.results-wrapper {
  display: flex;
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
  gap: 1rem;
}

.filters-panel {
  width: 280px;
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.results-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.name-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.name-search input {
  flex: 1;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.name-search button {
  background: var(--button-color);
  color: var(--button-text-color);
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.name-search button:hover {
  background: var(--button-hover);
}
