/* ===== HERO BASE ===== */
.hero-creators {
  background: #0f0f14;
  position: relative;
}

/* ===== FUNDO ===== */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.bg-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  opacity: 0.35;
  background: radial-gradient(
    circle,
    rgba(109, 56, 252, 0.9) 0%,
    rgba(109, 56, 252, 0.4) 30%,
    transparent 70%
  );
  animation: blobFloat 14s ease-in-out infinite;
}

.blob-left {
  width: 320px;
  height: 320px;
  top: 80px;
  left: 40px;
}

.blob-right {
  width: 460px;
  height: 460px;
  bottom: 60px;
  right: 40px;
  animation-delay: 4s;
}

@keyframes blobFloat {
  0% { transform: scale(1); }
  50% { transform: scale(1.15) translateY(-20px); }
  100% { transform: scale(1); }
}

/* ===== IMAGEM ===== */
.hero-image-wrap {
  position: relative;
}

.hero-glow {
  position: absolute;
  inset: -16px;
  background: rgba(109, 56, 252, 0.35);
  filter: blur(80px);
  border-radius: 24px;
  z-index: 0;
}

/* .hero-image-wrap {
 max-width: 500px;
} */

/* ===== CARD ===== */
.hero-info-card {
  background: #1c1c1c;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(109, 56, 252, 0.5);
  box-shadow: 0 10px 40px rgba(109, 56, 252, 0.3);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #6d38fc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number {
  color: #6d38fc;
  font-weight: 700;
  font-size: 1.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: #cfcfcf;
}

/* ===== STATS ===== */
.hero-stats {
  /* margin-top: 5rem; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
  margin: 0 auto;
  max-width: 870px;
  padding-top: 5rem;
}

.hero-stat-number {
  color: #6d38fc;
  font-size: 1.75rem;
  font-weight: 700;
}

.hero-stat-label {
  color: #cfcfcf;
  font-size: 0.875rem;
}

/* ===== CTA ===== */
.hero-cta {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  background: #6d38fc;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(109, 56, 252, 0.4);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(109, 56, 252, 0.6);
}

/* ===== BASE ===== */
.creators-real {
  background: #0d0d0d;
  position: relative;
}

/* ===== FUNDO ===== */
.real-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.real-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(109,56,252,0.9) 0%,
    rgba(109,56,252,0.5) 30%,
    transparent 70%
  );
  filter: blur(100px);
  opacity: 0.35;
  animation: floatBlob 16s ease-in-out infinite;
}

.blob-left {
  top: 80px;
  left: 40px;
}

.blob-right {
  bottom: 60px;
  right: 40px;
  animation-delay: 6s;
}

@keyframes floatBlob {
  0% { transform: scale(1); }
  50% { transform: scale(1.15) translateY(-30px); }
  100% { transform: scale(1); }
}

/* ===== IMAGENS ===== */
.creator-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid #2a2a2a;
  box-shadow: 0 10px 40px rgba(109,56,252,0.25);
}

/* ===== CARDS ===== */
.real-card {
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(109,56,252,0.35);
}

.real-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.real-number {
  color: #6d38fc;
  font-size: 1.5rem;
  font-weight: 700;
}

.real-label {
  font-size: 0.875rem;
  color: #cfcfcf;
}

/* ===== ÍCONE FLUTUANTE ===== */
.real-float-icon {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #1c1c1c;
  border-radius: 999px;
  padding: 1rem;
  border: 1px solid rgba(109,56,252,0.5);
  box-shadow: 0 10px 40px rgba(109,56,252,0.4);
  font-size: 1.5rem;
  animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-10px) rotate(6deg); }
}

/* ===== CTA ===== */
.real-cta {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  background: #6d38fc;
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(109,56,252,0.4);
}

.real-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(109,56,252,0.6);
}

/* ===== TAGS ===== */
.real-tag {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #1c1c1c;
  border: 1px solid rgba(109,56,252,0.5);
  color: #6d38fc;
  font-size: 0.875rem;
  font-weight: 500;
}


   /* ROCKSTAR TEAM SECTION */

.rockstar-section {
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}

/* FUNDO PONTILHADO */
.rockstar-bg-dots {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle, #6d38fc 1px, transparent 1px);
  background-size: 50px 50px;
}

/* BADGE SUPERIOR */
.rockstar-badge {
  background: #1c1c1c;
  border: 1px solid rgba(109, 56, 252, 0.5);
  backdrop-filter: blur(6px);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.rockstar-badge span {
  color: #6d38fc;
  font-weight: 500;
  font-size: 0.875rem;
}

/* CARDS */
.rockstar-card {
  background: #1c1c1c;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #2a2a2a;
  transition: all 0.35s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.rockstar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 56, 252, 0.5);
  box-shadow: 0 30px 70px rgba(109,56,252,0.25);
}

/* ÍCONE DO CARD */
.rockstar-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(109,56,252,0.12);
  border: 1px solid rgba(109,56,252,0.25);
}

.rockstar-icon svg {
  width: 32px;
  height: 32px;
  color: #6d38fc;
}

/* TEXTO */
.rockstar-card p {
  color: #cfcfcf;
  font-size: 1rem;
  line-height: 1.7;
}

/* TÍTULO */
.rockstar-title {
  color: #ffffff;
  font-weight: 700;
}

/* DESCRIÇÃO */
.rockstar-desc {
  color: #d3d3d3;
  max-width: 48rem;
  margin-inline: auto;
}

/* Conteúdo que inspira */

.creators-section {
  position: relative;
  padding: 80px 20px;
  background: #0d0d0d;
  overflow: hidden;
}

/* FUNDOS BLUR */
.bg-blur {
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(109, 56, 252, 0.12);
  filter: blur(120px);
  border-radius: 50%;
  z-index: 0;
}

.bg-blur-top {
  top: -80px;
  left: 20%;
}

.bg-blur-bottom {
  bottom: -80px;
  right: 20%;
}

/* CONTAINER */
.creators-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

/* HEADER */
.creators-header {
  text-align: center;
  margin-bottom: 64px;
}

.creators-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: #fff;
  font-weight: 700;
}

.creators-header p {
  color: #d3d3d3;
  font-size: 1.2rem;
  max-width: 720px;
  margin: 16px auto 0;
}

/* GRID */
.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* CARD */
.creator-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: all .35s ease;
}

.creator-card:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 56, 252, 0.6);
  box-shadow: 0 30px 60px rgba(109, 56, 252, 0.25);
}

.creator-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.4),
    transparent
  );
}

/* PLAY */
.play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  width: 80px;
  height: 80px;
  margin: auto;
  background: #6d38fc;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(109,56,252,.6);
  transition: all .3s ease;
}

.creator-card:hover .play-button {
  background: #8b5cff;
  transform: scale(1.05);
}

/* INFO */
.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.card-info span {
  font-size: .9rem;
  color: #fff;
  opacity: .85;
}

.card-info h3 {
  margin-top: 6px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}

/* GRADIENTES POR CARD */
.gradient-pink::before,
.gradient-orange::before,
.gradient-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
}

.gradient-pink::before {
  background: linear-gradient(to top, #ec4899, #a855f7);
}

.gradient-orange::before {
  background: linear-gradient(to top, #f97316, #ef4444);
}

.gradient-blue::before {
  background: linear-gradient(to top, #3b82f6, #06b6d4);
}

/* Mais benefícios */

.benefits-section {
  background: #121212;
  padding: 100px 20px;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* BADGE */
.benefits-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #1c1c1c;
  border: 1px solid rgba(109,56,252,.5);
  color: #6d38fc;
  font-weight: 500;
}

.benefits-badge svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}

/* TEXTOS */
.benefits-content h2 {
  margin: 24px 0;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: #fff;
}

.benefits-lead {
  font-size: 1.25rem;
  color: #d3d3d3;
  line-height: 1.6;
}

.benefits-sub {
  margin-top: 12px;
  color: #cfcfcf;
}

/* CARDS */
.benefits-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.benefit-card {
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 24px;
  transition: .3s;
}

.benefit-card:hover {
  border-color: rgba(109,56,252,.6);
  box-shadow: 0 0 30px rgba(109,56,252,.25);
}

.benefit-card h3 {
  margin: 12px 0 6px;
  color: #fff;
}

.benefit-card p {
  font-size: .9rem;
  color: #cfcfcf;
}

/* DESTAQUE */
.benefits-highlight {
  margin-top: 40px;
  padding: 20px;
  border: 2px solid #6d38fc;
  border-radius: 20px;
  background: linear-gradient(to right, rgba(109,56,252,.15), transparent);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* IMAGEM */
.benefits-image {
  position: relative;
}

.benefits-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 30px 60px rgba(109,56,252,.25);
}

/* CARD FLUTUANTE */
.creator-stats {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #1c1c1c;
  border: 1px solid rgba(109,56,252,.6);
  border-radius: 20px;
  padding: 24px;
  width: 260px;
}

.creator-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.creator-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6d38fc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.creator-header small {
  color: #8a8a8a;
}

.creator-header strong {
  display: block;
  color: #fff;
}

/* MÉTRICAS */
.creator-metrics {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}

.creator-metrics strong {
  color: #6d38fc;
  font-size: 1.2rem;
}

.creator-metrics span {
  font-size: .75rem;
  color: #cfcfcf;
}

/* CTA */
.benefits-cta {
  text-align: center;
  margin-top: 80px;
}

.benefits-cta a {
  display: inline-block;
  padding: 16px 36px;
  background: #6d38fc;
  color: #fff;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(109,56,252,.4);
  transition: .3s;
}

.benefits-cta a:hover {
  box-shadow: 0 30px 60px rgba(109,56,252,.6);
  transform: translateY(-2px);
}

/* O que dizem nossos criadores */
.creators-testimonials {
  position: relative;
  background: #121212;
  padding: 100px 20px;
  overflow: hidden;
}

.creators-testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* GLOWS */
.glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(109,56,252,.18);
  filter: blur(120px);
  border-radius: 50%;
}

.glow-top {
  top: 15%;
  right: 20%;
}

.glow-bottom {
  bottom: 15%;
  left: 20%;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  margin-bottom: 20px;
}

.section-header p {
  color: #d3d3d3;
  font-size: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

/* GRID */
.creators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .creators-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.creator-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: #1c1c1c;
  border: 2px solid rgba(109,56,252,.3);
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
  transition: .35s;
}

.creator-card:hover {
  border-color: #6d38fc;
  box-shadow: 0 30px 60px rgba(109,56,252,.45);
}

.creator-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAYS */
.overlay {
  position: absolute;
  inset: 0;
  transition: .3s;
}

.overlay.dark {
  background: rgba(0,0,0,.4);
}

.creator-card:hover .overlay.dark {
  background: rgba(0,0,0,.3);
}

.gradient-purple {
  background: linear-gradient(to top, rgba(168,85,247,.35), rgba(236,72,153,.35));
}

.gradient-blue {
  background: linear-gradient(to top, rgba(59,130,246,.35), rgba(34,211,238,.35));
}

.gradient-orange {
  background: linear-gradient(to top, rgba(249,115,22,.35), rgba(239,68,68,.35));
}

/* PLAY */
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  backdrop-filter: blur(6px);
  transition: .3s;
}

.creator-card:hover .play-btn {
  background: rgba(255,255,255,.3);
  border-color: rgba(255,255,255,.65);
}

/* INFO */
.creator-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,.95), rgba(0,0,0,.75), transparent);
}

.creator-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.creator-info h3 {
  color: #fff;
  font-size: 1.1rem;
}

.creator-info span {
  color: #d3d3d3;
  font-size: .85rem;
}

/* FOLLOWERS */
.followers {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(109,56,252,.85);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
}

/* Como começar? */
.how-start-section {
  position: relative;
  background: #0d0d0d;
  padding: 100px 20px;
  overflow: hidden;
}

.how-bg-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  opacity: .1;
  background-image: radial-gradient(circle, #6d38fc 2px, transparent 2px);
  background-size: 40px 40px;
}

.how-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.how-header {
  text-align: center;
  margin-bottom: 80px;
}

.how-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
}

.how-subtitle,
.how-desc {
  color: #cfcfcf;
  max-width: 700px;
  margin: 16px auto 0;
}

.how-socials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.how-card {
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  transition: .3s;
}

.how-card:hover {
  border-color: #6d38fc;
  box-shadow: 0 0 30px rgba(109,56,252,.2);
}

.how-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(109,56,252,.1);
}

.how-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.instagram { color: #e4405f; }
.youtube   { color: #ff0000; }
.tiktok    { color: #6d38fc; }

.how-card h3 {
  color: #fff;
  font-size: 20px;
}

.how-benefits {
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid #2a2a2a;
}

.how-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(13,13,13,.6);
  border: 1px solid rgba(109,56,252,.3);
  margin-bottom: 16px;
}

.benefit-dot {
  width: 14px;
  height: 14px;
  background: #6d38fc;
  border-radius: 50%;
  flex-shrink: 0;
}

.how-benefit p {
  color: #fff;
  font-size: 18px;
}

.how-cta {
  text-align: center;
  margin-top: 40px;
}

.how-cta a {
  display: inline-block;
  background: #6d38fc;
  color: #fff;
  padding: 16px 40px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 0 30px rgba(109,56,252,.4);
  transition: .3s;
}

.how-cta a:hover {
  box-shadow: 0 0 50px rgba(109,56,252,.6);
}

/* final */
.brands-section {
  position: relative;
  background: #121212;
  padding: 100px 20px;
  overflow: hidden;
}

.brands-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%) rotate(210deg);
  background: radial-gradient(circle, #6d38fc 0%, transparent 70%);
  opacity: .2;
}

.brands-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.brands-header {
  text-align: center;
  margin-bottom: 80px;
}

.brands-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(109,56,252,.5);
  background: #1c1c1c;
  margin-bottom: 24px;
}

.brands-badge svg {
  width: 18px;
  height: 18px;
  fill: #6d38fc;
}

.brands-badge span {
  color: #6d38fc;
  font-size: 14px;
  font-weight: 500;
}

.brands-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  margin-bottom: 16px;
}

.brands-header p {
  color: #d3d3d3;
  font-size: 20px;
  max-width: 720px;
  margin: auto;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 80px;
}

.brand-card {
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 24px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.brand-card:hover {
  border-color: #6d38fc;
  box-shadow: 0 0 30px rgba(109,56,252,.25);
}

.brand-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: brightness(1.1);
}

.brands-cta {
  text-align: center;
}

.brands-cta p {
  color: #cfcfcf;
  margin-bottom: 24px;
  font-size: 18px;
}

.brands-cta a {
  display: inline-block;
  padding: 16px 48px;
  background: #6d38fc;
  color: #fff;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 0 30px rgba(109,56,252,.4);
  transition: .3s;
}

.brands-cta a:hover {
  box-shadow: 0 0 50px rgba(109,56,252,.6);
}
