/* ── Reset & Variáveis ─────────────────────────────────────────────────────── */
:root {
  --blue:   #0033A0;
  --blue2:  #1a4fc4;
  --red:    #e60000;
  --gold:   #F5A623;
  --dark:   #0d1117;
  --gray:   #6b7280;
  --light:  #f4f6fb;
  --white:  #fff;
  --borda:  #e5e7eb;
  --r:      12px;
  --shadow: 0 2px 10px rgba(0,0,0,.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Navbar ────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--blue);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nav-logo {
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-logo i { color: var(--red); font-size: 1.1rem; }
.nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-links { display: none; gap: 2px; }
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: rgba(255,255,255,.12); color: #fff; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-size: .83rem;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 20px;
  white-space: nowrap;
  transition: opacity .15s;
}
.nav-cta:hover { opacity: .88; }

/* ── Live Bar ──────────────────────────────────────────────────────────────── */
.live-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  padding: 13px 16px;
  text-align: center;
  cursor: pointer;
  transition: opacity .15s;
}
.live-bar:hover { opacity: .92; }
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: pulse 1.3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .35; transform: scale(.75); }
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, #0033A0 0%, #060a14 65%);
  overflow: hidden;
  text-align: center;
  padding: 56px 20px 52px;
}
.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3);
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(55px);
  opacity: .13;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.55);
  object-fit: cover;
  margin: 0 auto 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.hero-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.4px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.hero-desc {
  font-size: .93rem;
  color: rgba(255,255,255,.65);
  max-width: 460px;
  margin: 0 auto 22px;
  line-height: 1.6;
}
.hero-stats {
  margin-bottom: 26px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-stat strong {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
}
.hero-stat span {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.btn-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  padding: 13px 24px;
  border-radius: 25px;
  transition: opacity .15s, transform .1s;
}
.btn-subscribe:hover { opacity: .87; transform: translateY(-1px); }
.btn-member-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,.45);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  padding: 11px 22px;
  border-radius: 25px;
  transition: background .15s, border-color .15s;
}
.btn-member-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
.hero-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.social-label {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1.25rem;
}
.social-icons a {
  font-size: 1.45rem;
  color: rgba(255,255,255,.55);
  transition: color .2s, transform .2s, text-shadow .2s;
}
.social-icons a:hover { transform: translateY(-4px) scale(1.18); }
.social-icons a[aria-label="Instagram"]:hover { color: #e1306c; text-shadow: 0 0 16px rgba(193,53,132,.6); }
.social-icons a[aria-label="X (Twitter)"]:hover { color: #fff; text-shadow: 0 0 16px rgba(255,255,255,.4); }
.social-icons a[aria-label="Facebook"]:hover { color: #5b9cf6; text-shadow: 0 0 16px rgba(24,119,242,.6); }
.social-icons a[aria-label="E-mail"]:hover { color: var(--gold); text-shadow: 0 0 16px rgba(245,166,35,.6); }

/* ── Seções comuns ─────────────────────────────────────────────────────────── */
.section        { padding: 52px 0; }
.section-light  { background: var(--light); }
.section-white  { background: var(--white); }
.section-blue   { background: var(--blue); }
.section-dark   { background: var(--dark); }
.container      { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}
.section-header h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-header h2 i { color: var(--red); }
.section-sub { font-size: .88rem; color: var(--gray); margin-top: 5px; line-height: 1.5; }
.see-all {
  font-size: .83rem;
  font-weight: 600;
  color: var(--blue);
  opacity: .65;
  white-space: nowrap;
  transition: opacity .15s;
}
.see-all:hover { opacity: 1; }
.section-tag {
  display: inline-block;
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.8);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ── Playlists ─────────────────────────────────────────────────────────────── */
.playlists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.playlist-card {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.playlist-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.13); }
.playlist-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #1a1a2e;
  overflow: hidden;
}
.playlist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.playlist-card:hover .playlist-thumb img { transform: scale(1.05); }
.playlist-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  color: transparent;
  font-size: 1.8rem;
  transition: background .2s, color .2s;
}
.playlist-card:hover .playlist-play {
  background: rgba(0,0,0,.42);
  color: rgba(255,255,255,.92);
}
.playlist-count {
  position: absolute;
  bottom: 7px;
  right: 7px;
  background: rgba(0,0,0,.78);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.playlist-info { padding: 10px 12px 13px; }
.playlist-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Membros — Carrossel ───────────────────────────────────────────────────── */
.btn-member-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  font-size: .93rem;
  padding: 14px 28px;
  border-radius: 25px;
  transition: opacity .15s, transform .1s;
}
.btn-member-gold:hover { opacity: .9; transform: translateY(-1px); }

.carousel-wrapper {
  position: relative;
}
.members-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.members-carousel::-webkit-scrollbar { display: none; }
.members-slide {
  flex: 0 0 88%;
  scroll-snap-align: start;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,.45);
}
.members-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.carousel-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.32);
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
  z-index: 2;
}
.carousel-btn:hover { background: rgba(255,255,255,.55); border-color: #fff; }
.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }

/* Botões sobre fundo claro (seção vídeos) */
.section-light .carousel-btn {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,51,160,.35);
}
.section-light .carousel-btn:hover { background: var(--blue2); border-color: var(--blue2); }

/* ── Vídeos Recentes — Carrossel ──────────────────────────────────────────── */
.videos-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.videos-carousel::-webkit-scrollbar { display: none; }
.video-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.video-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--dark);
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  color: transparent;
  font-size: 2rem;
  transition: background .2s, color .2s;
}
.video-card:hover .video-play {
  background: rgba(0,0,0,.42);
  color: rgba(255,255,255,.92);
}
.video-info {
  padding: 10px 12px 13px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.video-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-date { font-size: .75rem; color: var(--gray); }

/* ── Parceiros ─────────────────────────────────────────────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.partner-card {
  background: var(--white);
  border: 1.5px solid var(--borda);
  border-radius: var(--r);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: box-shadow .2s, transform .2s;
}
.partner-card:hover { box-shadow: 0 6px 24px rgba(0,51,160,.12); transform: translateY(-2px); }
.partner-logo   { height: 46px; object-fit: contain; max-width: 140px; }
.partner-name   { font-size: .95rem; font-weight: 700; color: var(--dark); }
.partner-desc   { font-size: .84rem; color: var(--gray); line-height: 1.5; flex: 1; }
.partner-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: #fff;
  font-size: .83rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 20px;
  margin-top: 6px;
  transition: opacity .15s;
}
.partner-btn:hover { opacity: .85; }
.partner-icon-ph {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray);
}
.partner-cta { border-style: dashed; border-color: #d1d5db; }
.partner-cta .partner-btn {
  background: transparent;
  border: 1.5px solid var(--blue);
  color: var(--blue);
}
.partner-cta .partner-btn:hover { background: var(--blue); color: #fff; }

/* ── Loja ──────────────────────────────────────────────────────────────────── */
.store-inner {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.store-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.store-inner h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.store-inner p {
  color: rgba(255,255,255,.6);
  font-size: .93rem;
  margin-bottom: 30px;
  line-height: 1.6;
}
.store-notify {
  display: flex;
  gap: 8px;
  max-width: 380px;
  margin: 0 auto;
}
.store-email {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 25px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
}
.store-email::placeholder { color: rgba(255,255,255,.35); }
.store-email:focus { border-color: rgba(255,255,255,.45); }
.store-btn {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: .88rem;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s;
}
.store-btn:hover { opacity: .9; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: radial-gradient(ellipse at 50% 100%, #0033A0 0%, #060a14 65%);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 36px 16px 28px;
  text-align: center;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1.25rem;
}
.footer-social a {
  font-size: 1.45rem;
  color: rgba(255,255,255,.45);
  transition: color .2s, transform .2s, text-shadow .2s;
}
.footer-social a:hover { transform: translateY(-4px) scale(1.18); }
.footer-social a[aria-label="YouTube"]:hover   { color: #ff4444; text-shadow: 0 0 16px rgba(230,0,0,.6); }
.footer-social a[aria-label="Instagram"]:hover { color: #e1306c; text-shadow: 0 0 16px rgba(193,53,132,.6); }
.footer-social a[aria-label="X"]:hover         { color: #fff;    text-shadow: 0 0 16px rgba(255,255,255,.4); }
.footer-social a[aria-label="Facebook"]:hover  { color: #5b9cf6; text-shadow: 0 0 16px rgba(24,119,242,.6); }
.footer-social a[aria-label="E-mail"]:hover    { color: var(--gold); text-shadow: 0 0 16px rgba(245,166,35,.6); }

/* ── Botão compartilhar ────────────────────────────────────────────────────── */
.share-fab {
  position: fixed;
  top: 68px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: background .15s, transform .15s;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.share-fab:hover { background: rgba(255,255,255,.26); transform: scale(1.07); }

.share-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 400;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  padding: 16px;
}
.share-overlay.open { display: flex; }
.share-modal {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px 22px;
  width: min(420px, 100%);
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  animation: modalIn .2s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.share-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.share-modal-head h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.share-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background .15s;
}
.share-close:hover { background: var(--light); }
.share-url-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light);
  border: 1.5px solid var(--borda);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
}
.share-url-text {
  flex: 1;
  font-size: .82rem;
  color: var(--blue);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.share-copy-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s;
  flex-shrink: 0;
}
.share-copy-btn:hover { opacity: .7; }
.share-options { display: flex; flex-direction: column; gap: 8px; }
.share-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1.5px solid var(--borda);
  border-radius: 10px;
  color: var(--dark);
  font-weight: 600;
  font-size: .93rem;
  transition: background .15s;
  cursor: pointer;
}
.share-option:hover { background: var(--light); }
.share-opt-icon { font-size: 1.2rem; width: 22px; text-align: center; flex-shrink: 0; }
.share-opt-chevron { margin-left: auto; font-size: .75rem; color: var(--gray); }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ── Voltar ao topo ────────────────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 22px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,51,160,.45);
  font-size: .95rem;
  transition: opacity .15s, transform .15s;
  z-index: 150;
}
#back-to-top:hover { opacity: .85; transform: translateY(-2px); }

/* ── Responsivo ────────────────────────────────────────────────────────────── */
@media (min-width: 600px) {
  .playlists-grid { gap: 14px; }
  .playlist-title { font-size: .88rem; }
  .partners-grid  { grid-template-columns: 1fr 1fr; }
  /* Carrosséis: 2 cards visíveis */
  .members-slide  { flex: 0 0 calc(50% - 6px); }
  .video-card     { flex: 0 0 calc(50% - 6px); }
  .carousel-btn   { display: flex; }
}
@media (min-width: 768px) {
  .container      { padding: 0 24px; }
  .section        { padding: 68px 0; }
  .hero           { padding: 76px 24px 68px; }
  .hero-title     { font-size: 2.5rem; }
  .hero-avatar    { width: 116px; height: 116px; }
  .nav-links      { display: flex; }
  .playlists-grid { grid-template-columns: repeat(3, 1fr); }
  .section-header h2 { font-size: 1.6rem; }
  .carousel-prev  { left: -22px; }
  .carousel-next  { right: -22px; }
}
@media (min-width: 960px) {
  /* Carrosséis: 3 cards visíveis */
  .members-slide  { flex: 0 0 calc(33.333% - 8px); }
  .video-card     { flex: 0 0 calc(33.333% - 8px); }
}
@media (min-width: 1100px) {
  .playlists-grid { grid-template-columns: repeat(4, 1fr); }
  .partners-grid  { grid-template-columns: repeat(3, 1fr); }
  /* Vídeos: ~3.4 cards visíveis (+15% em relação aos 4 anteriores) */
  .video-card     { flex: 0 0 calc(29% - 9px); }
}
