/* EFECTOS PREMIUM */

/* Zoom en fotos */
.efecto-zoom { overflow: hidden; }
.efecto-zoom img { transition: transform 0.6s; }
.efecto-zoom:hover img { transform: scale(1.05); }

/* Brillo dorado */
.efecto-brillo { transition: box-shadow 0.3s; }
.efecto-brillo:hover { box-shadow: 0 0 30px rgba(201,168,76,0.3); }

/* Elevación */
.efecto-elevate { transition: transform 0.3s, box-shadow 0.3s; }
.efecto-elevate:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

/* Glassmorphism */
.glass { background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); border: 1px solid rgba(201,168,76,0.2); }

/* Shimmer */
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.shimmer { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); background-size: 200% 100%; animation: shimmer 2s infinite; }

/* Revelar al scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
