:root {
  --cursor-x: 50%;
  --cursor-y: 50%;
}

body {
  background:
    radial-gradient(
      circle at top left,
      rgba(168, 85, 247, 0.18),
      transparent 28%
    ),
    linear-gradient(180deg, #09040f 0%, #050505 100%);
  color: white;
  font-family: "Plus Jakarta Sans", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    320px circle at var(--cursor-x) var(--cursor-y),
    rgba(192, 132, 252, 0.12),
    transparent 60%
  );
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.text-gradient {
  background: linear-gradient(135deg, #fff 30%, #c084fc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tilt-card {
  transition: transform 0.2s ease-out;
  transform-style: preserve-3d;
}

/* Garante que o container do slide respeite o aspect ratio e overflow */
.slider-container {
  position: relative;
  overflow: hidden;
}

/* O wrapper segura as imagens e faz a transição */
.slider-wrapper {
  display: flex;
  height: 100%;
  width: 100%;
  /* A transição é controlada via JS alterando o 'transform: translateX()' */
  transition: transform 0.5s ease-in-out;
}

/* Cada slide individual ocupa 100% da largura do container */
.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
