/* Cards profesionales para Explora Nuestros Diseños */
.example-card {
  max-width: 400px;
  margin: auto;
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 185, 164, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.example-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: rgba(212, 185, 164, 0.3);
}

.example-card:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.example-card-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.example-card-cover {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.85);
  transition: all 0.3s ease;
}

.example-card:hover .example-card-cover {
  filter: brightness(1);
  transform: scale(1.05);
}

.example-card-icon {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d4b9a4, #c9b299);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(212, 185, 164, 0.25);
  border: 3px solid white;
  z-index: 2;
  transition: all 0.3s ease;
}

.example-card:hover .example-card-icon {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(212, 185, 164, 0.35);
}

.example-card-content {
  padding: 50px 30px 30px;
  text-align: center;
}

.example-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #2a2520;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.example-card-desc {
  color: #6b5d54;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 25px 0;
}

.example-card-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4b9a4, #c9b299);
  color: white;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(212, 185, 164, 0.2);
}

.example-card:hover .example-card-btn {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 185, 164, 0.35);
}

.example-card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.example-card:hover .example-card-gradient {
  opacity: 1;
}

/* Responsive móvil */
@media (max-width: 768px) {
  .example-card {
    max-width: 100%;
  }
  
  .example-card-header {
    height: 150px;
  }
  
  .example-card-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    bottom: -25px;
  }
  
  .example-card-content {
    padding: 40px 20px 25px;
  }
  
  .example-card-title {
    font-size: 1.5rem;
  }
  
  .example-card-desc {
    font-size: 0.9rem;
  }
}
