/* ================================================================
   SECCION EXPLORAR CONFORT - ESTILOS (FONDO BLANCO)
   ================================================================ */

.explore {
  padding: 80px 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.explore::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(234, 179, 8, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.explore__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header de la sección */
.explore__header-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section__subheader {
  color: #22c55e;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section__header {
  color: #000000;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section__description {
  color: #4a4a4a;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Filtros */
.explore__filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter__btn {
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #000000;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter__btn i {
  font-size: 18px;
  color: #4a4a4a;
  transition: color 0.3s ease;
}

.filter__btn:hover {
  background: rgba(34, 197, 94, 0.05);
  border-color: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.filter__btn:hover i {
  color: #22c55e;
}

.filter__btn.active {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-color: #22c55e;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.filter__btn.active i {
  color: #ffffff;
}

/* Grid de tarjetas */
.explore__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Tarjetas */
.explore__card {
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.explore__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.03) 0%, rgba(234, 179, 8, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.explore__card:hover::before {
  opacity: 1;
}

.explore__card:hover {
  transform: translateY(-10px);
  border-color: #22c55e;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 40px rgba(34, 197, 94, 0.15);
}

/* Icono de la tarjeta */
.card__icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.card__icon-wrapper i {
  font-size: 40px;
  color: #22c55e;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.card__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.explore__card:hover .card__icon-wrapper i {
  color: #eab308;
  transform: scale(1.2) rotate(5deg);
}

.explore__card:hover .card__glow {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.3) 0%, transparent 70%);
}

/* Título de la tarjeta */
.explore__card h3 {
  color: #000000;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.explore__card:hover h3 {
  color: #22c55e;
}

/* Descripción de la tarjeta */
.explore__card p {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.explore__card:hover p {
  color: #2a2a2a;
}

/* Efecto hover adicional */
.card__hover-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #22c55e 0%, #eab308 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.explore__card:hover .card__hover-effect {
  transform: scaleX(1);
}

/* Animación de aparición */
.explore__card.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.explore__card.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

/* Responsive */
@media (max-width: 768px) {
  .explore {
    padding: 60px 15px;
  }

  .section__header {
    font-size: 32px;
  }

  .explore__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .explore__filters {
    gap: 10px;
  }

  .filter__btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .explore__card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .section__header {
    font-size: 28px;
  }

  .filter__btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 140px;
  }

  .card__icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .card__icon-wrapper i {
    font-size: 35px;
  }
}

/* Animaciones personalizadas */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.explore__card:hover .card__icon-wrapper {
  animation: float 2s ease-in-out infinite;
}