#locations-list {
  height: 350px;
  overflow-y: auto;
  border-bottom: 1px solid var(--bs-secondary-bg-subtle);
}

#map {
  min-height: 400px;
  transition: all 0.5s ease-in-out;
}

.location-item {
  border: 1px solid var(--bs-gray-400);
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-radius: 7px;
}

.location-item p {
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
}

.location-item h4 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bs-primary);
}

.location-item.highlighted {
  border: 1px solid var(--bs-primary);
  background-color: var(--bs-light);
}

/* .location-item:hover {
  background-color: lightblue;
  cursor: pointer;
} */

/* Estilos para os itens de localização */

.location-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.location-item:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.location-main {
  padding: 15px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* .highlighted .location-main {
    background-color: #f0f7ff;
    border-left: 4px solid #0078d4;
} */

.location-main h4 {
  margin: 0 0 5px 0;
  color: #333;
}

.location-main p {
  margin: 0;
  color: #666;
}

.toggle-details {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #0078d4;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.toggle-details:hover {
  background-color: #f0f0f0;
}

.location-details {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  background-color: #f9f9f9;
}

.location-details:not(.hidden) {
  max-height: 200px;
  transition: max-height 0.5s ease-in;
}

.details-content {
  padding: 8px;
  border-top: 1px solid #eaeaea;
}

.details-content p {
  margin: 8px 0;
}

.details-content a {
  color: #0078d4;
  text-decoration: none;
}

.details-content a:hover {
  text-decoration: underline;
}

.landing-link {
  display: inline-block;
  background-color: #0078d4;
  color: white !important;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none !important;
  margin-top: 10px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

/* .landing-link:hover {
  background-color: #005a9e;
} */

/* Estilos para os badges de contato */

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  color: white;
}

.badge {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 50px;
  text-decoration: none;
  color: white !important;
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge svg {
  margin-right: 6px;
}

.whatsapp-badge {
  background-color: #25D366;
}

.whatsapp-badge:hover {
  background-color: #20bd5a;
}

.instagram-badge {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-badge:hover {
  filter: brightness(1.1);
}

.website-badge {
  background-color: #0078d4;
}

.website-badge:hover {
  background-color: #005a9e;
}

.badge a {
  color: white !important;
  text-decoration: none;
}

