/* Estilos para las tarjetas de categoría */
.category-card {
  transition: all 0.3s ease;
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.category-card .aspect-ratio-box {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #c2af5f 0%, #d4c470 100%);
}

.category-card .aspect-ratio-box ion-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: white;
  transition: all 0.3s ease;
}

.category-card:hover .aspect-ratio-box ion-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

.category-card .p-6 {
  padding: 1.5rem;
}

.category-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.category-card p {
  color: #4a5568;
  margin-bottom: 1rem;
}

.category-card .mt-auto {
  color: #c2af5f;
  font-weight: 500;
  transition: color 0.3s ease;
}

.category-card:hover .mt-auto {
  color: #a89650;
}

/* Estilos para el footer */
footer {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #e2e8f0;
}

footer a {
  color: #cbd5e0;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #c2af5f;
  text-decoration: none;
}

/* Estilos para los íconos del footer */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #c2af5f;
  transform: translateY(-2px);
}
