/* Página inicial — layout amplo */

/* --- Hero ------------------------------------------------------------------ */
.home-hero {
  position: relative;
  padding-block: calc(var(--header-h) + 2rem) 2rem;
  overflow: hidden;
}

.home-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 15% 40%, rgba(124, 92, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 45% 40% at 85% 25%, rgba(167, 139, 250, 0.1), transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(11, 13, 20, 0.95), transparent);
  animation: home-glow-breathe 9s ease-in-out infinite;
}

@keyframes home-glow-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.03); }
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1.12fr);
    gap: 3rem 4rem;
    min-height: min(72vh, 640px);
  }
}

.home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.home-hero__title em {
  font-style: normal;
  background: linear-gradient(
    120deg,
    var(--color-accent-soft) 0%,
    var(--color-accent) 40%,
    #c4b5fd 50%,
    var(--color-accent) 60%,
    var(--color-accent-soft) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: home-shimmer 6s ease-in-out infinite;
}

@keyframes home-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.home-hero__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-muted);
  line-height: 1.65;
  max-width: 34rem;
  margin-bottom: 1.25rem;
}

.home-hero__list {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  max-width: 36rem;
}

.home-hero__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.home-hero__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent-glow);
}

.home-hero__list li:last-child {
  margin-bottom: 0;
}

.home-hero__badge {
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
}

.home-hero__badge-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.home-hero__cta .arena-btn span[aria-hidden] {
  display: inline-block;
  margin-left: 0.15rem;
  transition: transform 0.25s var(--ease-out);
}

.home-hero__cta .arena-btn:hover span[aria-hidden] {
  transform: translate(2px, -2px);
}

.home-hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.home-hero__trust svg {
  flex-shrink: 0;
  color: var(--color-accent-soft);
  opacity: 0.9;
}

.home-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 28rem;
}

@media (min-width: 520px) {
  .home-hero__stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
  }
}

.home-hero__stats li {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease;
}

.home-hero__stats li:hover {
  border-color: rgba(124, 92, 255, 0.25);
}

.home-hero__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.home-hero__stats span {
  font-size: 0.7rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Showcase visual */
.home-showcase {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
}

.home-showcase--video {
  max-width: min(100%, 620px);
  width: 100%;
}

@media (min-width: 960px) {
  .home-showcase--video {
    max-width: min(100%, 680px);
  }
}

@media (min-width: 1200px) {
  .home-showcase--video {
    max-width: min(100%, 760px);
  }
}

.home-showcase__frame {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(124, 92, 255, 0.08),
    0 0 80px rgba(124, 92, 255, 0.12);
}

.home-showcase__frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-showcase__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b0d14;
}

.home-showcase__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Hero — vídeo MP4 local */
.home-showcase__frame--media {
  position: relative;
}

.home-showcase--video .home-showcase__frame--media {
  overflow: hidden;
  border: none;
  border-radius: 1rem;
  padding: 2px;
  background: linear-gradient(
    145deg,
    rgba(167, 139, 250, 0.55) 0%,
    rgba(124, 92, 255, 0.35) 35%,
    rgba(59, 130, 246, 0.2) 70%,
    rgba(124, 92, 255, 0.4) 100%
  );
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 72px rgba(124, 92, 255, 0.18);
}

.home-showcase--video .home-showcase__frame--media::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: calc(1rem - 2px);
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-showcase__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0b0d14;
  overflow: hidden;
}

.home-showcase--video .home-showcase__media {
  aspect-ratio: 16 / 9;
  min-height: 220px;
  border-radius: calc(1rem - 2px);
  background: #080a10;
}

.home-showcase__player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-showcase--video .home-showcase__player {
  object-fit: contain;
  object-position: center center;
}

.home-showcase__media-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(124, 92, 255, 0.35), transparent 55%),
    linear-gradient(180deg, transparent 60%, rgba(11, 13, 20, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.home-showcase__frame.is-video-intro .home-showcase__player {
  transform: scale(1.04);
  animation: hero-video-zoom-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-showcase__frame.is-video-intro .home-showcase__media-fx {
  animation: hero-video-intro-fx 1.1s ease-out forwards;
}

.home-showcase__frame.is-loop-pulse .home-showcase__player {
  animation: hero-video-loop-zoom 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-showcase__frame.is-loop-pulse .home-showcase__media-fx {
  animation: hero-video-loop-fx 0.52s ease-out;
}

@keyframes hero-video-zoom-in {
  0% {
    transform: scale(1.08);
    filter: brightness(1.35);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

@keyframes hero-video-intro-fx {
  0% {
    opacity: 0.85;
    background-color: rgba(124, 92, 255, 0.12);
  }
  100% {
    opacity: 1;
    background-color: transparent;
  }
}

@keyframes hero-video-loop-zoom {
  0% {
    transform: scale(1.025);
    filter: brightness(1.2);
  }
  45% {
    transform: scale(0.995);
    filter: brightness(0.92);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

@keyframes hero-video-loop-fx {
  0% {
    opacity: 0.7;
    box-shadow: inset 0 0 40px rgba(167, 139, 250, 0.35);
  }
  100% {
    opacity: 1;
    box-shadow: none;
  }
}

.home-showcase__controls {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 5;
  pointer-events: none;
}

/* Botão som do hero — um ícone, sem salto de layout */
.hero-audio-toggle {
  pointer-events: auto;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 0.55rem;
  min-width: 7.25rem;
  padding: 0.45rem 0.9rem 0.45rem 0.55rem;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(12, 14, 22, 0.88);
  color: #e2e8f0;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-audio-toggle:hover {
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(22, 20, 36, 0.94);
  color: #fff;
}

.hero-audio-toggle:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 3px;
}

.hero-audio-toggle.is-muted {
  color: #94a3b8;
}

.hero-audio-toggle:not(.is-muted) {
  border-color: rgba(167, 139, 250, 0.55);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.55) 0%, rgba(91, 61, 240, 0.4) 100%);
  color: #fff;
  box-shadow:
    0 8px 28px rgba(124, 92, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-audio-toggle__icon {
  position: relative;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.hero-audio-toggle__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-audio-toggle.is-muted .hero-audio-toggle__svg--on {
  opacity: 0;
  transform: scale(0.5);
}

.hero-audio-toggle.is-muted .hero-audio-toggle__svg--off {
  opacity: 1;
  transform: scale(1);
}

.hero-audio-toggle:not(.is-muted) .hero-audio-toggle__svg--off {
  opacity: 0;
  transform: scale(0.5);
}

.hero-audio-toggle:not(.is-muted) .hero-audio-toggle__svg--on {
  opacity: 1;
  transform: scale(1);
}

.hero-audio-toggle__label {
  text-align: left;
  white-space: nowrap;
}

@media (max-width: 380px) {
  .hero-audio-toggle {
    min-width: 0;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border-radius: 50%;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .hero-audio-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

.home-showcase__frame--float {
  animation: home-float-slow 7s ease-in-out infinite;
}

.home-showcase__card--float {
  animation: home-float-card 5s ease-in-out infinite;
}

.home-showcase__card--float-delay {
  animation-delay: 0.8s;
}

.home-showcase__card--float-delay-2 {
  animation-delay: 1.6s;
}

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

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

body.is-ready .home-hero__content .arena-kicker {
  animation: home-fade-up 0.65s var(--ease-out) 0.05s backwards;
}

body.is-ready .home-hero__content .home-hero__title {
  animation: home-fade-up 0.7s var(--ease-out) 0.12s backwards;
}

body.is-ready .home-hero__content .home-hero__lead {
  animation: home-fade-up 0.7s var(--ease-out) 0.2s backwards;
}

body.is-ready .home-hero__content .home-hero__list {
  animation: home-fade-up 0.7s var(--ease-out) 0.26s backwards;
}

body.is-ready .home-hero__content .home-hero__cta {
  animation: home-fade-up 0.7s var(--ease-out) 0.32s backwards;
}

body.is-ready .home-hero__content .home-hero__trust {
  animation: home-fade-up 0.7s var(--ease-out) 0.34s backwards;
}

body.is-ready .home-hero__stats li {
  animation: home-fade-up 0.55s var(--ease-out) backwards;
}

body.is-ready .home-hero__stats li:nth-child(1) { animation-delay: 0.38s; }
body.is-ready .home-hero__stats li:nth-child(2) { animation-delay: 0.46s; }
body.is-ready .home-hero__stats li:nth-child(3) { animation-delay: 0.54s; }
body.is-ready .home-hero__stats li:nth-child(4) { animation-delay: 0.62s; }

@keyframes home-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-showcase__card {
  position: absolute;
  padding: 0.65rem 0.9rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 7rem;
}

.home-showcase__label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-bottom: 0.15rem;
}

.home-showcase__card strong {
  font-size: 0.875rem;
  font-weight: 600;
}

.home-showcase__card--tl {
  top: 8%;
  left: -4%;
}

.home-showcase__card--br {
  bottom: 12%;
  right: -2%;
}

.home-showcase__card--bl {
  bottom: 8%;
  left: 6%;
}

@media (max-width: 959px) {
  .home-showcase__card--tl {
    left: 0;
  }
  .home-showcase__card--br {
    right: 0;
  }
}

/* --- Trust marquee --------------------------------------------------------- */
.home-trust {
  border-block: 1px solid var(--color-border);
  background: color-mix(in srgb, var(--color-surface) 90%, transparent);
  padding-block: 0.85rem;
  overflow: hidden;
}

.home-trust__marquee {
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.home-trust__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: home-trust-scroll 32s linear infinite;
}

.home-trust__marquee:hover .home-trust__track {
  animation-play-state: paused;
}

@keyframes home-trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.home-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.home-trust__icon {
  display: flex;
  color: var(--color-accent-soft);
}

.home-trust__item strong {
  color: var(--color-text);
  font-weight: 600;
}

/* --- Services on home ------------------------------------------------------ */
.arena-body--home #services {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.arena-body--home #services .arena-head {
  max-width: 46rem;
}

.arena-body--home #services .arena-head__highlight {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.arena-kicker--online .arena-kicker__dot {
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.65);
}

.home-reviews__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.65rem;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.home-reviews__stars {
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 45%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.35));
}

.home-reviews__card {
  display: flex;
  flex-direction: column;
}

.home-reviews__card-stars {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-reviews__card p {
  position: relative;
  z-index: 1;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(248, 250, 252, 0.92);
}

.home-reviews__card footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(124, 92, 255, 0.12);
  position: relative;
  z-index: 1;
}

.home-reviews__card cite {
  margin-bottom: 0;
  color: var(--color-accent-soft);
  font-weight: 600;
}

.home-reviews__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #86efac;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.28);
  border-radius: var(--radius-pill);
}

/* --- Bento serviços (home): 3 colunas iguais, card clicável ---------------- */
.arena-bento--home {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 2.5vw, 1.25rem);
  align-items: stretch;
}

.arena-body--home .arena-bento--home .arena-bento__card {
  --bento-enter-y: 28px;
  --bento-enter-scale: 0.95;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(20.5rem, 48vw, 24rem);
  height: 100%;
  padding: clamp(1.15rem, 3vw, 1.5rem);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.08);
  transition:
    border-color 0.35s ease,
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.arena-body--home .arena-bento--home .home-bento__anim {
  opacity: 0;
  transform: translate3d(0, var(--bento-enter-y), 0) scale(var(--bento-enter-scale));
  filter: blur(4px);
  transition: none;
}

.arena-body--home .arena-bento--home .home-bento__anim.is-visible {
  animation: home-bento-card-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--bento-i, 0) * 0.11s);
}

.arena-body--home .arena-bento--home .home-bento__anim.is-visible.is-animated {
  filter: none;
}

@keyframes home-bento-card-in {
  0% {
    opacity: 0;
    transform: translate3d(0, var(--bento-enter-y), 0) scale(var(--bento-enter-scale));
    filter: blur(4px);
  }
  70% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.arena-body--home .arena-bento--home .home-bento__anim .arena-bento__top,
.arena-body--home .arena-bento--home .home-bento__anim h3,
.arena-body--home .arena-bento--home .home-bento__anim .arena-bento__desc,
.arena-body--home .arena-bento--home .home-bento__anim .arena-bento__features,
.arena-body--home .arena-bento--home .home-bento__anim .arena-bento__cta {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
}

.arena-body--home .arena-bento--home .home-bento__anim.is-visible .arena-bento__top {
  animation: home-bento-piece-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--bento-i, 0) * 0.11s + 0.2s);
}

.arena-body--home .arena-bento--home .home-bento__anim.is-visible h3 {
  animation: home-bento-piece-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--bento-i, 0) * 0.11s + 0.28s);
}

.arena-body--home .arena-bento--home .home-bento__anim.is-visible .arena-bento__desc {
  animation: home-bento-piece-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--bento-i, 0) * 0.11s + 0.36s);
}

.arena-body--home .arena-bento--home .home-bento__anim.is-visible .arena-bento__features {
  animation: home-bento-piece-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--bento-i, 0) * 0.11s + 0.42s);
}

.arena-body--home .arena-bento--home .home-bento__anim.is-visible .arena-bento__cta {
  animation: home-bento-piece-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--bento-i, 0) * 0.11s + 0.5s);
}

@keyframes home-bento-piece-in {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.arena-bento__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    108deg,
    transparent 38%,
    rgba(255, 255, 255, 0.07) 48%,
    rgba(167, 139, 250, 0.12) 52%,
    transparent 62%
  );
  transform: translateX(-130%) skewX(-12deg);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.arena-body--home .arena-bento--home .arena-bento__card::before {
  transition:
    opacity 0.5s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Premier: bg-premier.png (wide) — preenche o card inteiro, proporção mantida */
.arena-body--home .arena-bento--home .arena-bento__card--featured::before {
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.32;
  transform-origin: center center;
}

.arena-body--home .arena-bento--home .arena-bento__card--featured::after {
  background: linear-gradient(
    155deg,
    rgba(8, 9, 14, 0.94) 0%,
    rgba(8, 9, 14, 0.72) 38%,
    rgba(12, 10, 22, 0.55) 62%,
    rgba(18, 18, 26, 0.82) 100%
  );
}

@media (min-width: 640px) {
  .arena-body--home .arena-bento--home .arena-bento__card--featured::before {
    background-position: 52% center;
    opacity: 0.3;
  }
}

@media (min-width: 1024px) {
  .arena-body--home .arena-bento--home .arena-bento__card--featured::before {
    background-position: 50% center;
    opacity: 0.28;
  }
}

.arena-body--home .arena-bento--home .arena-bento__logo {
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.arena-body--home .arena-bento--home .arena-bento__card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.arena-body--home .arena-bento--home .arena-bento__card h3 {
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  margin-top: 0.85rem;
  margin-bottom: 0.65rem;
}

.arena-body--home .arena-bento--home .arena-bento__desc,
.arena-body--home .arena-bento--home .arena-bento__card p {
  font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.88);
  margin-bottom: 0.85rem;
}

.arena-body--home .arena-bento--home .arena-bento__features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  flex-grow: 1;
}

.arena-body--home .arena-bento--home .arena-bento__features li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  color: rgba(226, 232, 240, 0.92);
  line-height: 1.5;
  margin-bottom: 0.45rem;
}

.arena-body--home .arena-bento--home .arena-bento__features li:last-child {
  margin-bottom: 0;
}

.arena-body--home .arena-bento--home .arena-bento__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent-glow);
}

.arena-body--home .arena-bento--home .arena-bento__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  font-weight: 600;
  color: var(--color-accent-soft);
  transition: color 0.3s ease;
}

.arena-body--home .arena-bento--home .arena-bento__cta span[aria-hidden] {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.arena-body--home .arena-bento--home .arena-bento__top {
  margin-bottom: 0;
}

.arena-body--home .arena-bento--home .arena-bento__top--solo {
  justify-content: flex-start;
}

/* Hover: desktop com mouse */
@media (hover: hover) and (pointer: fine) {
  .arena-body--home .arena-bento--home .home-bento__anim.is-animated:hover {
    transform: translate3d(0, -10px, 0) scale(1.02);
    border-color: rgba(124, 92, 255, 0.45);
    box-shadow:
      0 22px 50px rgba(0, 0, 0, 0.48),
      0 0 44px rgba(124, 92, 255, 0.16);
  }

  .arena-body--home .arena-bento--home .home-bento__anim.is-animated:hover::before {
    opacity: 0.36;
    transform: scale(1.08);
  }

  .arena-body--home .arena-bento--home .home-bento__anim.is-animated:hover .arena-bento__shine {
    opacity: 1;
    animation: home-bento-shine 0.75s ease forwards;
  }

  .arena-body--home .arena-bento--home .home-bento__anim.is-animated:hover .arena-bento__logo {
    transform: scale(1.1) rotate(-4deg);
  }

  .arena-body--home .arena-bento--home .home-bento__anim.is-animated:hover .arena-bento__cta {
    color: var(--color-text);
  }

  .arena-body--home .arena-bento--home .home-bento__anim.is-animated:hover .arena-bento__cta span[aria-hidden] {
    transform: translateX(5px);
  }
}

/* Toque: celular e tablet */
@media (hover: none) {
  .arena-body--home .arena-bento--home .home-bento__anim.is-animated:active {
    transform: scale(0.985);
    border-color: rgba(124, 92, 255, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  }
}

@keyframes home-bento-shine {
  from {
    transform: translateX(-130%) skewX(-12deg);
  }
  to {
    transform: translateX(130%) skewX(-12deg);
  }
}

@media (min-width: 640px) {
  .arena-bento--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .arena-body--home .arena-bento--home .arena-bento__card--featured {
    grid-column: 1 / -1;
  }

  .arena-body--home .arena-bento--home .arena-bento__card {
    --bento-enter-y: 24px;
    min-height: clamp(18rem, 28vw, 20.5rem);
  }
}

@media (min-width: 1024px) {
  .arena-bento--home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .arena-body--home .arena-bento--home .arena-bento__card--featured {
    grid-column: auto;
  }

  .arena-body--home .arena-bento--home .arena-bento__card {
    --bento-enter-y: 32px;
    min-height: 22rem;
  }

  .arena-body--home .arena-bento--home .arena-bento__desc,
  .arena-body--home .arena-bento--home .arena-bento__card p {
    font-size: 1.0625rem;
    line-height: 1.7;
  }
}

/* --- Reviews preview ------------------------------------------------------- */
.home-reviews {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 5.5rem);
  background:
    radial-gradient(ellipse 75% 70% at 50% 100%, rgba(124, 92, 255, 0.14), transparent 62%),
    radial-gradient(ellipse 40% 50% at 0% 40%, rgba(167, 139, 250, 0.07), transparent 55%),
    radial-gradient(ellipse 40% 50% at 100% 60%, rgba(91, 61, 240, 0.08), transparent 55%),
    linear-gradient(180deg, color-mix(in srgb, var(--color-surface) 35%, transparent), var(--color-bg));
  border-block: 1px solid rgba(124, 92, 255, 0.14);
  overflow: hidden;
}

.home-reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
    90deg,
    rgba(124, 92, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 48px 100%;
  opacity: 0.5;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}

.home-reviews__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
}

.home-reviews__recomenda {
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  background: linear-gradient(135deg, #e9d5ff 0%, var(--color-accent-soft) 40%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-reviews__marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-inline: calc(-1 * var(--gutter));
  padding-block: 0.65rem;
  padding-inline: var(--gutter);
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.home-reviews__marquee::before,
.home-reviews__marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.5rem, 10vw, 5.5rem);
  z-index: 2;
  pointer-events: none;
}

.home-reviews__marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg) 15%, transparent);
}

.home-reviews__marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-bg) 15%, transparent);
}

.home-reviews__track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  padding-block: 0.25rem;
  animation: home-reviews-scroll 52s linear infinite;
  will-change: transform;
}

.home-reviews__marquee:hover .home-reviews__track {
  animation-play-state: paused;
}

@keyframes home-reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.home-reviews__marquee .arena-reviews__card.home-reviews__card {
  flex: 0 0 min(88vw, 24rem);
  width: min(88vw, 24rem);
  height: auto;
  min-height: 12rem;
  margin-bottom: 0;
  padding: 1.35rem 1.25rem 1.15rem;
  background: linear-gradient(
    155deg,
    rgba(30, 27, 48, 0.92) 0%,
    rgba(18, 21, 31, 0.98) 55%,
    rgba(14, 16, 24, 1) 100%
  );
  border: 1px solid rgba(124, 92, 255, 0.22);
  border-radius: var(--radius-xl);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.home-reviews__marquee .arena-reviews__card.home-reviews__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-accent) 20%,
    var(--color-accent-soft) 50%,
    #c4b5fd 80%,
    transparent
  );
  opacity: 0.9;
}

.home-reviews__marquee .arena-reviews__card.home-reviews__card::after {
  content: '\201C';
  position: absolute;
  top: 0.35rem;
  right: 0.85rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(124, 92, 255, 0.12);
  pointer-events: none;
}

.home-reviews__marquee .arena-reviews__card.home-reviews__card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(124, 92, 255, 0.18),
    0 0 0 1px rgba(167, 139, 250, 0.15) inset;
}

.home-reviews__marquee .arena-reviews__card.home-reviews__card:hover::before {
  opacity: 1;
  background: linear-gradient(
    90deg,
    var(--color-accent),
    var(--color-accent-soft),
    #ddd6fe
  );
}

@media (min-width: 700px) {
  .home-reviews__marquee .arena-reviews__card.home-reviews__card {
    flex-basis: 21.5rem;
    width: 21.5rem;
  }
}

.home-reviews__marquee .arena-reviews__card.home-reviews__card p {
  margin-bottom: 0.5rem;
}

/* --- Fechamento (benefícios + resultados + CTA) ----------------------------- */
.home-closing {
  padding-block: clamp(3rem, 8vw, 5rem);
  border-top: 1px solid var(--color-border);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124, 92, 255, 0.08), transparent 55%),
    var(--color-bg);
}

.home-closing__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.home-closing__benefits {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .home-closing__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .home-closing__benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.home-closing__card {
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition:
    border-color 0.25s ease,
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}

.home-closing__card:hover {
  border-color: rgba(124, 92, 255, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(124, 92, 255, 0.1);
}

.home-closing__card-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(124, 92, 255, 0.22), rgba(91, 61, 240, 0.08));
  color: #ddd6fe;
  box-shadow:
    0 4px 16px rgba(124, 92, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    background 0.3s ease,
    transform 0.35s var(--ease-out),
    box-shadow 0.3s ease,
    color 0.25s ease;
  animation: home-card-icon-float 4.5s ease-in-out infinite;
}

.home-closing__card-icon::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.5),
    rgba(124, 92, 255, 0.15),
    rgba(167, 139, 250, 0.35)
  );
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  animation: home-card-icon-border 5s ease infinite;
  pointer-events: none;
}

.home-closing__card-icon svg {
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease-out), filter 0.3s ease;
}

.home-closing__card:nth-child(1) .home-closing__card-icon {
  animation-delay: 0s;
}

.home-closing__card:nth-child(2) .home-closing__card-icon {
  animation-delay: 0.6s;
}

.home-closing__card:nth-child(3) .home-closing__card-icon {
  animation-delay: 1.2s;
}

.home-closing__card:nth-child(4) .home-closing__card-icon {
  animation-delay: 1.8s;
}

.home-closing__card:hover .home-closing__card-icon {
  background: linear-gradient(145deg, rgba(139, 109, 255, 0.38), rgba(91, 61, 240, 0.18));
  transform: translateY(-3px) scale(1.08);
  color: #f5f3ff;
  box-shadow:
    0 10px 28px rgba(124, 92, 255, 0.32),
    0 0 24px rgba(124, 92, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home-closing__card:hover .home-closing__card-icon::before {
  opacity: 1;
}

.home-closing__card:hover .home-closing__card-icon svg {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.55));
}

@keyframes home-card-icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes home-card-icon-border {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.home-closing__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--color-text);
}

.home-closing__card p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.home-closing__results {
  text-align: center;
}

.home-closing__results .home-closing__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
  padding: 0.4rem 1rem 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #e9d5ff;
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.2) 0%,
    rgba(91, 61, 240, 0.1) 100%
  );
  border: 1px solid rgba(167, 139, 250, 0.35);
  box-shadow:
    0 4px 20px rgba(124, 92, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-closing__kicker .arena-kicker__dot {
  width: 8px;
  height: 8px;
  background: #a78bfa;
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.85);
  animation: home-closing-kicker-dot 2s ease-in-out infinite;
}

@keyframes home-closing-kicker-dot {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(167, 139, 250, 0.7);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 16px rgba(196, 181, 253, 0.95);
  }
}

.home-closing__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 52rem;
  margin-inline: auto;
}

@media (max-width: 520px) {
  .home-closing__stats {
    grid-template-columns: 1fr;
    max-width: 14rem;
  }
}

.home-closing__stats li {
  padding: 1.1rem 1rem;
  background: var(--color-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease;
}

.home-closing__stats li:hover {
  border-color: rgba(124, 92, 255, 0.28);
}

.home-closing__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-closing__stats span {
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.35;
}

.home-closing__banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 4vw, 2rem);
  background: var(--color-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.home-closing__banner::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(124, 92, 255, 0.06) 45%,
    rgba(167, 139, 250, 0.04) 55%,
    transparent 100%
  );
}

.home-closing__banner > * {
  position: relative;
  z-index: 1;
}

.home-closing__banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(124, 92, 255, 0.28), rgba(91, 61, 240, 0.12));
  color: #e9d5ff;
  box-shadow:
    0 0 24px rgba(124, 92, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.home-closing__bolt {
  display: block;
  filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.5));
  transform-origin: center;
  animation: home-bolt-flash 2.2s ease-in-out infinite;
}

@keyframes home-bolt-flash {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 4px rgba(250, 204, 21, 0.35));
    opacity: 1;
  }
  12% {
    transform: scale(1.12) rotate(-6deg);
    filter: drop-shadow(0 0 14px rgba(250, 204, 21, 0.85));
    opacity: 1;
  }
  24% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 6px rgba(167, 139, 250, 0.5));
  }
  48% {
    transform: scale(1.06) rotate(4deg);
    filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.65));
  }
}

.home-closing__banner-copy {
  flex: 1 1 12rem;
  min-width: 0;
}

.home-closing__banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.home-closing__banner-lead {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.home-closing__banner-btn {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: linear-gradient(145deg, #9b7dff 0%, #6d4aff 48%, #5b3df0 100%) !important;
  box-shadow:
    0 8px 28px rgba(124, 92, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: home-banner-btn-glow 3s ease-in-out infinite;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.home-closing__banner-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 75%
  );
  transform: translateX(-120%);
  animation: home-cta-shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes home-banner-btn-glow {
  0%, 100% {
    box-shadow:
      0 8px 28px rgba(124, 92, 255, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 10px 36px rgba(124, 92, 255, 0.58),
      0 0 32px rgba(124, 92, 255, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
}

.home-closing__banner-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 12px 36px rgba(124, 92, 255, 0.55),
    0 0 40px rgba(124, 92, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.home-closing__banner-btn span[aria-hidden] {
  display: inline-block;
  margin-left: 0.15rem;
  transition: transform 0.25s var(--ease-out);
}

.home-closing__banner-btn:hover span[aria-hidden] {
  transform: translate(3px, -3px);
}

@media (max-width: 639px) {
  .home-closing__banner-btn {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }
}

/* --- CTA band (legado — outras páginas podem usar) ------------------------- */
.home-cta {
  margin-bottom: 0;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  background:
    linear-gradient(135deg, rgba(124, 92, 255, 0.15) 0%, transparent 50%),
    var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.home-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--color-elevated);
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.home-cta__inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(124, 92, 255, 0.5) 45%,
    rgba(167, 139, 250, 0.35) 55%,
    transparent 80%
  );
  background-size: 220% 100%;
  animation: home-cta-border 5s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes home-cta-border {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.home-cta__inner > * {
  position: relative;
  z-index: 1;
}

.home-cta__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.home-cta__copy p {
  color: var(--color-muted);
  font-size: 0.9375rem;
  max-width: 28rem;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* --- Motion extra (home) --------------------------------------------------- */
.arena-body--home .reveal {
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.arena-body--home .reveal.is-visible {
  transform: translateY(0) scale(1);
}

.arena-body--home .reveal--from-left {
  transform: translateX(-24px) translateY(8px);
}

.arena-body--home .reveal--from-left.is-visible {
  transform: translateX(0) translateY(0);
}

.home-hero__glow {
  transform: translateY(var(--home-glow-shift, 0));
}

.home-hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.home-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.45;
  animation: home-orb-drift 14s ease-in-out infinite;
}

.home-hero__orb--1 {
  width: 220px;
  height: 220px;
  top: 12%;
  left: 8%;
  background: rgba(124, 92, 255, 0.35);
}

.home-hero__orb--2 {
  width: 160px;
  height: 160px;
  top: 55%;
  right: 12%;
  background: rgba(167, 139, 250, 0.22);
  animation-delay: -4s;
  animation-duration: 18s;
}

.home-hero__orb--3 {
  width: 120px;
  height: 120px;
  bottom: 18%;
  left: 42%;
  background: rgba(99, 102, 241, 0.2);
  animation-delay: -7s;
  animation-duration: 12s;
}

@keyframes home-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -18px) scale(1.06); }
  66% { transform: translate(-10px, 10px) scale(0.94); }
}

.home-hero__badge-icon {
  animation: home-badge-pulse 2.8s ease-in-out infinite;
}

@keyframes home-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 92, 255, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(124, 92, 255, 0); }
}

.home-hero__cta-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-hero__cta-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: home-cta-shine 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes home-cta-shine {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

body.is-ready .home-hero__visual {
  animation: home-fade-up 0.85s var(--ease-out) 0.18s backwards;
}

.home-showcase[data-home-tilt] {
  transform: translateY(var(--home-parallax-y, 0))
    perspective(900px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition: transform 0.35s var(--ease-out);
  transform-style: preserve-3d;
}

.home-showcase__frame--float {
  animation: home-float-slow 7s ease-in-out infinite, home-frame-glow 5s ease-in-out infinite;
}

@keyframes home-frame-glow {
  0%, 100% {
    box-shadow:
      0 32px 64px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(124, 92, 255, 0.08),
      0 0 60px rgba(124, 92, 255, 0.1);
  }
  50% {
    box-shadow:
      0 36px 72px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(124, 92, 255, 0.18),
      0 0 90px rgba(124, 92, 255, 0.2);
  }
}

.home-showcase__card strong {
  transition: color 0.2s ease;
}

.home-showcase__card:hover strong {
  color: var(--color-accent-soft);
}

.home-trust__icon {
  transition: transform 0.35s var(--ease-out), color 0.25s ease;
}

.home-trust__item:hover .home-trust__icon {
  transform: scale(1.12) rotate(-4deg);
  color: var(--color-accent);
}

.home-reviews__recomenda {
  background-size: 200% auto;
  animation: home-shimmer 5s ease-in-out infinite;
}

.arena-body--home #services .arena-head__title em {
  background-size: 200% auto;
  animation: home-shimmer 7s ease-in-out infinite;
}

.arena-body--home .arena-bento--home .arena-bento__card:hover {
  transform: translateY(-6px);
}

.home-closing__banner--live::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    transparent 15%,
    rgba(124, 92, 255, 0.45) 45%,
    rgba(167, 139, 250, 0.3) 55%,
    transparent 85%
  );
  background-size: 220% 100%;
  animation: home-cta-border 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.home-closing__banner--live .home-closing__banner-icon {
  animation: home-icon-pulse 2.4s ease-in-out infinite;
}

@keyframes home-icon-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 20px rgba(124, 92, 255, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: scale(1.04);
    box-shadow:
      0 0 28px rgba(124, 92, 255, 0.38),
      0 0 16px rgba(250, 204, 21, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

.reveal-stagger > .reveal-stagger__item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger > .reveal-stagger__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.arena-main--home {
  position: relative;
}

.arena-main--home::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.arena-main--home > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .home-trust__track,
  .home-reviews__track,
  .home-hero__glow,
  .home-hero__title em,
  .home-hero__orb,
  .home-hero__badge-icon,
  .home-hero__cta-primary::after,
  .home-showcase__frame--float,
  .home-showcase__card--float,
  .home-reviews__recomenda,
  .arena-body--home #services .arena-head__title em,
  .home-closing__banner--live::after,
  .home-closing__banner--live .home-closing__banner-icon,
  .home-closing__bolt,
  .home-closing__banner-btn,
  .home-closing__banner-btn::after,
  .home-closing__card-icon,
  .home-closing__card-icon::before,
  .home-closing__kicker .arena-kicker__dot,
  .home-cta__inner::before {
    animation: none;
  }

  .home-closing__card:hover .home-closing__card-icon {
    transform: scale(1.05);
  }

  .home-showcase[data-home-tilt] {
    transform: none !important;
  }

  body.is-ready .home-hero__visual {
    animation: none;
  }

  body.is-ready .home-hero__content > *,
  body.is-ready .home-hero__stats li,
  .arena-body--home .arena-bento--home .home-bento__anim,
  .arena-body--home .arena-bento--home .home-bento__anim.is-visible,
  .arena-body--home .arena-bento--home .home-bento__anim.is-visible .arena-bento__top,
  .arena-body--home .arena-bento--home .home-bento__anim.is-visible h3,
  .arena-body--home .arena-bento--home .home-bento__anim.is-visible .arena-bento__desc,
  .arena-body--home .arena-bento--home .home-bento__anim.is-visible .arena-bento__features,
  .arena-body--home .arena-bento--home .home-bento__anim.is-visible .arena-bento__cta {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}
