﻿/* =========================================================
   InspireWeb — WOW (shared)
   - Ambient cursor glow (premium)
   - Animated hero lines (same on Home + Oferta)
   ========================================================= */

/* Ambient cursor glow */
.iw-cursor-glow{
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .92;
  mix-blend-mode: screen;
  --gx: 50%;
  --gy: 22%;
  background:
radial-gradient(300px circle at var(--gx) var(--gy), rgb(229 46 113 / 11%), transparent 60%), radial-gradient(520px circle at calc(var(--gx) + 120px) calc(var(--gy) + 160px), rgb(155 93 229 / 10%), transparent 62%), radial-gradient(620px circle at calc(var(--gx) - 120px) calc(var(--gy) + 220px), rgba(129, 34, 169, .10), transparent 66%);
}

/* Keep content above glow */
.iw-cursor-glow ~ main,
.iw-cursor-glow ~ footer.footer{ position: relative; z-index: 3; }

/* Animated hero lines */
.iw-hero-lines,
.offer-lines{
  position:absolute;
  inset: -20% -10% -10% -10%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 46px);
  mask-image: radial-gradient(circle at 30% 20%, rgba(0,0,0,.9), transparent 60%);
  opacity: .55;
  transform: skewY(-8deg);
  animation: iwLinesMove 10s linear infinite;
}

@keyframes iwLinesMove{
  0%{ background-position: 0 0, 0 0; }
  100%{ background-position: 260px 0, 0 180px; }
}

@media (prefers-reduced-motion: reduce){
  .iw-cursor-glow{ display:none; }
  .iw-hero-lines,
  .offer-lines{ animation:none; }
}

@media (pointer: coarse){
  .iw-cursor-glow{ display:none; }
}

