
        body {
            font-family: 'Inter', sans-serif;
        }
        .hero-bg {
            background-image: url(images/back_patitas.jpg);
            background-size: cover;
            background-position: center;
        }
        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .cta-button {
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .cta-button:hover {
            transform: scale(1.05);
        }
		.custom-cursor {
		  cursor: url('https://sentidocanino.cl/images/cursor.png') 16 16, auto;
		}
