/* ============================================================================
 * DESTACADOS MASAJISTAS - CSS (CORREGIDO PARA 1 FILA)
 * ============================================================================ */

.relaxmo-destacados-placeholder {
    padding: 30px;
    text-align: center;
    font-size: 1.5em;
    color: #888;
    border: 2px dashed #aaa;
    border-radius: 12px;
    background: #f9f9f9;
    margin: 10px 0;
}

.destacados-section {
  margin: 40px 0;
  padding: 25px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
}

.destacados-header {
  text-align: center;
  margin-bottom: 32px;
}

.destacados-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  position: relative;
}

.destacados-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4a5baa, #8e6fce);
  border-radius: 2px;
}

.destacados-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  margin: 20px 0 0 0;
}

/* GRID CORREGIDO - 1 fila, 4 columnas */
.destacados-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Responsive - mantener 4 columnas en desktop, ajustar en móviles */
@media (max-width: 1200px) {
  .destacados-grid {
    gap: 16px;
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .destacados-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .destacados-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }
}

/* Card Premium */
.card-masajista-premium {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.card-masajista-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #4a5baa;
}

/* Badge Premium */
.premium-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #92400e;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* Imagen */
.card-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.destacados-section .card-masajista-premium .card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
}

.destacados-section .card-masajista-premium:hover .card-image-container img {
  transform: scale(1.05);
}

/* Overlay gradient */
.card-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

/* Contenido */
.card-content-premium {
  padding: 20px;
}

.card-title-premium {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.card-location-premium {
  display: flex;
  align-items: center;
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.card-location-premium .location-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  opacity: 0.7;
}

.card-rating-premium {
  margin-bottom: 16px;
}

.card-price-premium {
  font-size: 1.1rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 16px;
  text-align: center;
  padding: 8px;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 8px;
}

.btn-profile-premium {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #4a5baa, #8e6fce);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-profile-premium:hover {
  background: linear-gradient(135deg, #3a4b9a, #7e5fbe);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(74, 91, 170, 0.3);
}

/* Estado vacío */
.destacados-empty {
  text-align: center;
  padding: 40px 20px;
  color: #64748b;
}

.destacados-empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.destacados-empty-text {
  font-size: 1.1rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .destacados-section {
    margin: 20px 0;
    padding: 24px 0;
    border-radius: 12px;
  }

  .destacados-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .destacados-title::after {
    bottom: -8px;
  }

  .destacados-subtitle {
    margin-top: 16px;
  }

  .card-image-container {
    height: 180px;
  }

  .card-content-premium {
    padding: 16px;
  }
}
