@import url("/assets/gold-ui.css");

body {
  background: radial-gradient(circle at 10% 0%, #171717 0%, #050505 40%);
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  z-index: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 3px 3px;
}

.glass {
  backdrop-filter: blur(12px);
}

/* Loading overlay (Lottie + fallback) */
#app-loading {
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#app-loading.app-loading--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Marca: Lottie 200×200 (ver /assets/lottie/loading.json) */
#app-loading-lottie {
  width: min(72vw, 220px);
  height: min(72vw, 220px);
  max-width: 220px;
  max-height: 220px;
}
#app-loading-lottie svg {
  width: 100% !important;
  height: 100% !important;
}

@keyframes testimonial-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.testimonial-marquee-track {
  animation: testimonial-marquee 55s linear infinite;
}
.marquee-wrap:hover .testimonial-marquee-track {
  animation-play-state: paused;
}

.carousel-star-deco {
  transform-origin: center center;
  will-change: transform;
}

/* Serviços: hover = só gradiente CSS opaco (full-bleed, sem SVG / blend) */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  background: linear-gradient(
    119deg,
    #b58c5d 3.86%,
    #caa36d 45.18%,
    #ffe2aa 67.6%,
    #a37e52 91.77%
  );
}
.service-card:hover::before {
  opacity: 1;
}
.service-card__text {
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}
.service-card:hover .service-card__text {
  color: #000;
}
