:root {
  --jrpa-bg: #05070c;
  --jrpa-surface: #0b1220;
  --jrpa-border: rgba(255,255,255,.10);
  --jrpa-text: rgba(255,255,255,.92);
  --jrpa-muted: rgba(255,255,255,.70);
  --jrpa-cta: #ffcc3a;
  --jrpa-cta-hover: #ffd35a;
  --streak-1: rgba(170, 70, 255, .85);
  --streak-2: rgba(70, 170, 255, .85);
  --streak-3: rgba(60, 255, 170, .80);
  --streak-4: rgba(255, 210, 80, .70);
}

/* Force dark regardless of BSS theme switching */

html, body {
  height: 100%;
}

body {
  background: var(--jrpa-bg);
  color: var(--jrpa-text);
}

.promo-bar {
  background: var(--jrpa-cta);
  color: #111;
  font-weight: 600;
  font-size: .95rem;
}

.promo-bar a {
  color: #111;
  text-decoration: underline;
}

.jrpa-navbar {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.jrpa-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  letter-spacing: .2px;
}

.jrpa-badge {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,204,58,.95), rgba(90,180,255,.85));
  box-shadow: 0 14px 40px rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #101018;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.streaks {
  position: absolute;
  inset: -20%;
  z-index: 1;
  filter: blur(10px);
  opacity: .95;
  transform: rotate(-8deg);
  pointer-events: none;
}

.streak {
  position: absolute;
  width: 1200px;
  height: 140px;
  border-radius: 999px;
  mix-blend-mode: screen;
  opacity: .85;
  animation: streakMove 9s linear infinite;
}

.streak.s1 {
  top: 30%;
  left: 35%;
  background: linear-gradient(90deg, transparent, var(--streak-1), var(--streak-2), var(--streak-3), transparent);
}

.streak.s2 {
  top: 38%;
  left: 45%;
  height: 110px;
  opacity: .75;
  background: linear-gradient(90deg, transparent, var(--streak-2), var(--streak-3), var(--streak-4), transparent);
  animation-duration: 11s;
  animation-direction: reverse;
}

.streak.s3 {
  top: 55%;
  left: 35%;
  height: 90px;
  opacity: .65;
  background: linear-gradient(90deg, transparent, var(--streak-1), var(--streak-4), transparent);
  animation-duration: 13s;
}

@keyframes streakMove {
  0% {
    transform: translateX(-35%) translateY(0);
  }
  50% {
    transform: translateX(10%) translateY(1.5%);
  }
  100% {
    transform: translateX(-35%) translateY(0);
  }
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: .10;
  -webkit-mask-image: radial-gradient(ellipse at 30% 25%, rgba(0,0,0,1) 35%, rgba(0,0,0,.2) 70%, transparent 100%);
  mask-image: radial-gradient(ellipse at 30% 25%, rgba(0,0,0,1) 35%, rgba(0,0,0,.2) 70%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 64px 0;
}

.kicker {
  color: rgba(255,204,58,.95);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .95rem;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero p {
  color: var(--jrpa-muted);
  font-size: 1.15rem;
  max-width: 38rem;
}

.btn-cta {
  background: var(--jrpa-cta);
  color: #111;
  border: none;
  font-weight: 800;
  border-radius: 999px;
  padding: .85rem 1.4rem;
  box-shadow: 0 16px 45px rgba(0,0,0,.45);
}

.btn-cta:hover {
  background: var(--jrpa-cta-hover);
  color: #111;
}

.award {
  width: 130px;
  height: 54px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
}

.icon-cloud {
  position: relative;
  height: 480px;
}

.app-icon {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translateZ(0);
  animation: float 5.8s ease-in-out infinite;
}

.app-icon::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), transparent 55%);
  opacity: .55;
}

.app-icon .label {
  position: absolute;
  bottom: 8px;
  font-size: .7rem;
  color: rgba(255,255,255,.82);
}

.app-icon svg {
  width: 46px;
  height: 46px;
  z-index: 1;
  opacity: .95;
}

.i-sap {
  top: 42%;
  left: 18%;
  animation-duration: 6.3s;
}

.i-excel {
  top: 58%;
  left: 42%;
  width: 104px;
  height: 104px;
  animation-duration: 5.4s;
}

.i-pdf {
  top: 22%;
  left: 55%;
  width: 112px;
  height: 112px;
  animation-duration: 6.8s;
}

.i-mail {
  top: 40%;
  left: 62%;
  width: 78px;
  height: 78px;
  animation-duration: 5.9s;
}

.i-web {
  top: 68%;
  left: 70%;
  width: 86px;
  height: 86px;
  animation-duration: 6.1s;
}

.i-db {
  top: 30%;
  left: 38%;
  width: 74px;
  height: 74px;
  animation-duration: 5.2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

.spark {
  position: absolute;
  color: rgba(255,255,255,.55);
  font-size: 20px;
  z-index: 2;
  animation: sparkle 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sparkle {
  0%, 100% {
    transform: translateY(0);
    opacity: .4;
  }
  50% {
    transform: translateY(-10px);
    opacity: .9;
  }
}

.sp1 {
  top: 18%;
  left: 52%;
  animation-delay: .2s;
}

.sp2 {
  top: 36%;
  left: 20%;
  animation-delay: 1.0s;
}

.sp3 {
  top: 72%;
  left: 58%;
  animation-delay: .6s;
}

.sp4 {
  top: 62%;
  left: 84%;
  animation-delay: 1.4s;
}

.sp5 {
  top: 44%;
  left: 82%;
  animation-delay: .9s;
}

@media (min-width: 992px) {
  .hero-content {
    padding: 84px 0;
  }
}

@media (min-width: 992px) {
  .icon-cloud {
    height: 520px;
  }
}

.jrpa-news {
  background: #07090f;
  color: #fff;
}

/* Title */

.jrpa-kicker {
  color: #ffcc3a;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: .9rem;
  margin-bottom: 12px;
}

/* Card container */

.jrpa-card-news {
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  color: #000;
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
  transition: transform .25s ease;
  height: 100%;
}

.jrpa-card-news:hover {
  transform: translateY(-6px);
}

/* Image area */

.jrpa-card-img {
  background: #ddd;
  height: 230px;
  overflow: hidden;
}

.jrpa-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Body */

.jrpa-card-body {
  padding: 24px;
  position: relative;
  min-height: 180px;
}

/* Tag */

.jrpa-card-tag {
  font-size: .8rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 8px;
}

/* Title */

.jrpa-card-title {
  font-weight: 800;
  line-height: 1.2;
}

/* Arrow button */

.jrpa-card-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.jrpa-feature-carousel {
  background: #07090f;
}

/* Reaproveite o kicker do seu padrão */

.jrpa-kicker {
  color: #ffcc3a;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: .9rem;
  margin-bottom: 12px;
}

/* Card claro estilo TechSmith */

.jrpa-card-lite {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
  transition: transform .25s ease;
}

.jrpa-card-lite:hover {
  transform: translateY(-6px);
}

.jrpa-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.jrpa-icon-badge i {
  font-size: 26px;
  color: #111;
}

.jrpa-card-title {
  font-weight: 900;
  margin-bottom: 10px;
  color: #0b0f14;
}

.jrpa-card-text {
  color: rgba(0,0,0,.70);
  margin-bottom: 0;
  line-height: 1.45;
}

/* Controls no estilo círculo com borda */

.jrpa-carousel-btn {
  width: auto;
  opacity: 1;
}

.jrpa-carousel-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0,0,0,.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.jrpa-carousel-icon i {
  font-size: 18px;
}

/* Posição das setas como no print */

.carousel-control-prev {
  left: auto;
  right: 62px;
  top: -72px;
  bottom: auto;
}

.carousel-control-next {
  right: 10px;
  top: -72px;
  bottom: auto;
}

/* Evita o ícone default do Bootstrap */

.carousel-control-prev-icon, .carousel-control-next-icon {
  display: none;
}

