/* ============================================
   BOTONES DE COMPARTIR PREMIUM - ARA PROPIEDADES
   ============================================

/* Contenedor del botón de compartir en tarjeta */
.share-button-container {
  position: relative;
  display: inline-block;
}

/* Botón principal de compartir */
.share-btn-main {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.share-btn-main:hover {
  background: linear-gradient(135deg, #0052a3 0%, #004080 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
}

.share-btn-main svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Menú de opciones de compartir */
.share-menu {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 12px;
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
}

.share-menu.active {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Flechita del menú */
.share-menu::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
/* BOTONES DORADOS - COLOR ORIGINAL */
.property-card .btn,
.property-card .share-btn-main {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.property-card .btn:hover,
.property-card .share-btn-main:hover {
  background: linear-gradient(135deg, #B8860B 0%, #996515 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
}

.property-card .action-buttons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  width: 100%;
  flex-wrap: wrap;
}

.property-card .action-buttons .btn {
  flex: 1;
}

.property-card .share-container {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: white;
}

/* Opciones del menú */
.share-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.share-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}

.share-option:hover {
  background: #f5f5f5;
  transform: translateX(4px);
}

.share-option svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Colores específicos de cada red */
.share-option.whatsapp:hover {
  background: #e8f5e9;
  color: #25D366;
}

.share-option.facebook:hover {
  background: #e7f3ff;
  color: #1877F2;
}

.share-option.linkedin:hover {
  background: #e7f3ff;
  color: #0A66C2;
}

.share-option.email:hover {
  background: #fff3e0;
  color: #FF6B35;
}

.share-option.copy:hover {
  background: #f3e5f5;
  color: #9C27B0;
}

/* Iconos SVG */
.share-icon {
  width: 20px;
  height: 20px;
}

/* Notificación de "Link copiado" */
.share-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #000;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
}

.share-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Estilos de acción en tarjetas de propiedades */
.property-card .action-buttons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  width: 100%;
  flex-wrap: wrap;
}

.property-card .action-buttons .btn {
  flex: 1;
  padding: 12px 20px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.property-card .action-buttons .btn:hover {
  background: linear-gradient(135deg, #0052a3 0%, #004080 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
}

.property-card .share-container {
  flex: 1;
  width: 100%;
}

.property-card .share-button-container {
  width: 100%;
}

.property-card .share-btn-main {
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.property-card .share-btn-main:hover {
  background: linear-gradient(135deg, #0052a3 0%, #004080 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
}

.property-card .share-container {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Responsive */
@media (max-width: 768px) {
  .share-menu {
    min-width: 180px;
    left: 50%;
  }
  
  .share-option {
    padding: 10px 12px;
    font-size: 13px;
  }
}
