/* Seção Imóveis em Destaque Especiais */
.imoveis-destaque-especiais {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.imoveis-destaque-especiais h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 50px;
  position: relative;
}

.imoveis-destaque-especiais h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #0c549f, #1e88e5);
  border-radius: 2px;
}

.destaque-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.destaque-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.destaque-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destaque-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.destaque-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destaque-item:hover .destaque-image img {
  transform: scale(1.05);
}

.destaque-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(12, 84, 159, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.destaque-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.destaque-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.3;
}

.destaque-location {
  color: #0c549f;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
}

.destaque-price {
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.destaque-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.destaque-features {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.destaque-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
}

.destaque-features i {
  color: #0c549f;
  font-size: 1rem;
}

.destaque-actions {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.btn-destaque {
  flex: 1;
  background: linear-gradient(135deg, #0c549f, #1e88e5);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-destaque:hover {
  background: linear-gradient(135deg, #0a4a8a, #1976d2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(12, 84, 159, 0.3);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  min-width: 120px;
  justify-content: center;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
  .imoveis-destaque-especiais {
    padding: 60px 0;
  }
  
  .imoveis-destaque-especiais h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .destaque-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  
  .destaque-item {
    margin: 0 10px;
  }
  
  .destaque-content {
    padding: 25px;
  }
  
  .destaque-content h3 {
    font-size: 1.2rem;
  }
  
  .destaque-features {
    gap: 15px;
  }
  
  .destaque-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-destaque,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .destaque-grid {
    padding: 0 10px;
  }
  
  .destaque-item {
    margin: 0 5px;
  }
  
  .destaque-content {
    padding: 20px;
  }
  
  .destaque-image {
    height: 200px;
  }
}
