@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

/* ─── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
  --dark:        #28241E;
  --dark-card:   #332F28;
  --yellow:      #FEDA02;
  --yellow-dim:  #e8c800;
  --light:       #FFFBF7;
  --overlay:     rgba(40, 36, 30, 0.72);
  --radius:      12px;
  --ease:        0.25s ease;
  --max-w:       1200px;
}

/* ─── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}
a { text-decoration: none; }
ul { list-style: none; }
img { display: block; }

/* ─── HEADER ──────────────────────────────────────────────────────────────── */
#header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  background: rgba(40, 36, 30, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(254, 218, 2, 0.12);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 0.12em;
}

/* ─── CTA BUTTON ──────────────────────────────────────────────────────────── */
.btn-cta {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-cta:hover {
  background: var(--yellow-dim);
  transform: translateY(-2px);
}
.btn-cta-lg {
  font-size: 1.1rem;
  padding: 0.9rem 2.4rem;
  border-radius: 8px;
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 75vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 2rem;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--light);
}
.hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 251, 247, 0.82);
  margin-bottom: 2.25rem;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 2.25rem;
}
.highlight { color: var(--yellow); }

/* ─── SECTION SHARED ──────────────────────────────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5.5rem 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.section-header p {
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.65;
  max-width: 560px;
  margin-inline: auto;
}

/* ─── PARCERIAS ───────────────────────────────────────────────────────────── */
#parcerias { background: var(--dark); }

.counter-block {
  text-align: center;
  margin-bottom: 4.5rem;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(254, 218, 2, 0.15);
  border-radius: var(--radius);
  background: var(--dark-card);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 4.5rem;
}
.counter-number {
  display: block;
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}
.counter-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.55;
}

.cards-scroll {
  overflow-x: auto;
  padding-top: 8px;
  padding-bottom: 0.75rem;
}
.cards-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  width: max-content;
  margin-inline: auto;
}

/* ─── PARTNERS MARQUEE ────────────────────────────────────────────────────── */
#parcerias .cards-scroll {
  overflow: hidden;
}
#parcerias .cards-grid {
  margin-inline: 0;
  animation: partners-marquee linear infinite;
  will-change: transform;
}
#parcerias .cards-scroll:hover .cards-grid {
  animation-play-state: paused;
}

@keyframes partners-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  #parcerias .cards-grid    { animation: none; }
  #parcerias .cards-scroll  { overflow-x: auto; }
}

/* ─── PARTNER CARD ────────────────────────────────────────────────────────── */
.partner-card {
  background: var(--dark-card);
  border: 1px solid rgba(254, 218, 2, 0.08);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--ease), transform var(--ease);
  min-width: 200px;
  flex-shrink: 0;
}
.partner-card:hover {
  border-color: rgba(254, 218, 2, 0.4);
  transform: translateY(-4px);
}
.partner-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  background: var(--dark);
}
.card-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--light);
}
.card-size {
  font-size: 0.85rem;
  color: var(--yellow);
  font-weight: 600;
}

/* ─── INFLUENCIADORES ─────────────────────────────────────────────────────── */
#influenciadores {
  background: var(--light);
  color: var(--dark);
}
#influenciadores .section-header h2 { color: var(--dark); }
#influenciadores .section-header p  { color: var(--dark); opacity: 0.55; }
#influenciadores .section-header h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

/* ─── INFLUENCER CARD ─────────────────────────────────────────────────────── */
.influencer-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 14px rgba(40, 36, 30, 0.07);
  transition: box-shadow var(--ease), transform var(--ease);
  min-width: 220px;
  flex-shrink: 0;
}
.influencer-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.influencer-link img {
  transition: transform var(--ease), box-shadow var(--ease);
}
.influencer-link:hover img {
  transform: scale(1.06);
  box-shadow: 0 0 0 3px var(--yellow);
  border-radius: 50%;
}
.influencer-card:hover {
  box-shadow: 0 6px 28px rgba(40, 36, 30, 0.14);
  transform: translateY(-4px);
}
.influencer-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--yellow);
  background: #eee;
}
.influencer-card .card-name { color: var(--dark); margin-bottom: 1.1rem; }

.network-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.network-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.8rem;
  border-radius: 6px;
  background: #f4f2ee;
  font-size: 0.84rem;
  color: var(--dark);
  transition: background var(--ease), color var(--ease);
}
.network-item:hover { background: var(--yellow); }
.network-icon { width: 16px; text-align: center; flex-shrink: 0; }
.network-name { flex: 1; text-align: left; font-weight: 500; }
.network-size { font-weight: 700; white-space: nowrap; }

.network-item.youtube   .network-icon { color: #FF0000; }
.network-item.instagram .network-icon { color: #C13584; }
.network-item.tiktok    .network-icon { color: #010101; }
.network-item.twitch    .network-icon { color: #9146FF; }
.network-item:hover     .network-icon { color: var(--dark) !important; }

/* ─── CONTATO ─────────────────────────────────────────────────────────────── */
#contato { background: var(--yellow); }
.cta-block {
  text-align: center;
  padding: 5.5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.cta-block h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}
.cta-block > p {
  font-size: 1.05rem;
  color: var(--dark);
  opacity: 0.78;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}
#contato .btn-cta {
  background: var(--dark);
  color: var(--yellow);
  display: inline-block;
  margin-bottom: 1.4rem;
}
#contato .btn-cta:hover { background: #1a1712; }
.cta-email {
  font-size: 0.88rem;
  color: var(--dark);
  opacity: 0.6;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
#footer {
  background: var(--dark);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.82rem;
  color: var(--light);
  opacity: 0.45;
  border-top: 1px solid rgba(254, 218, 2, 0.07);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-container { padding: 0.8rem 1.25rem; }

  .section-inner { padding: 4rem 1.25rem; }

  .cards-grid { gap: 1rem; }

  .partner-card,
  .influencer-card { padding: 1.5rem 1rem; }

  .cta-block { padding: 4rem 1.25rem; }
}

