/* ==== ESTILOS SECCIÓN EXPLORAR ==== */
.explore {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.section__subheader {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ff6b35;
  margin-bottom: 5px;
}

.section__header {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}

.explore__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas por defecto */
  gap: 25px;
}

.explore__card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  text-align: center;
  animation: floatUp 0.8s ease forwards; /* Animación al cargar */
}

@keyframes floatUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== Hover efecto adicional ===== */
.explore__card:hover {
  transform: translateY(-10px) scale(1.03); /* Sube y hace un poco más grande */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.explore__card:hover i {
  color: #ff884d;
  transform: rotate(10deg) scale(1.2); /* Icono gira y crece un poco */
  transition: transform 0.3s ease, color 0.3s ease;
}

.explore__card i {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 15px;
}

.explore__card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.explore__card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Hover effect */
.explore__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.explore__card:hover i {
  color: #ff884d;
}

/* ==== RESPONSIVE ==== */

/* Tablets: 2 columnas */
@media (max-width: 992px) {
  .explore__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section__header {
    font-size: 1.8rem;
  }

  .explore__card {
    padding: 22px;
  }

  .explore__card i {
    font-size: 2.2rem;
  }
}

/* Móviles: 1 columna */
@media (max-width: 768px) {
  .explore__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .section__header {
    font-size: 1.6rem;
  }

  .explore__card {
    padding: 20px;
  }

  .explore__card i {
    font-size: 2rem;
  }
}

/* Pequeños móviles: ajustar textos y espaciado */
@media (max-width: 480px) {
  .section__header {
    font-size: 1.4rem;
  }

  .section__subheader {
    font-size: 1rem;
  }

  .explore__card {
    padding: 15px;
  }

  .explore__card i {
    font-size: 1.8rem;
  }
}
