/* =========================================================
   MARKETING PARA CANTORES — Design System (streaming/music)
   Escuro estilo Spotify/Deezer, laranja da marca em destaque.
   Mobile-first.
   ========================================================= */

:root {
  --bg: #0A0A0B;
  --bg-2: #100E12;
  --panel: #17141B;
  --panel-2: #1E1922;
  --elev: #241D29;
  --line: rgba(255,255,255,.09);
  --line-2: rgba(255,255,255,.16);

  --orange: #F2661F;
  --orange-2: #FF8A3D;
  --amber: #FFB13A;
  --pink: #E23E6B;
  --brown: #7A3B1E;
  --grad: linear-gradient(120deg, #FFB13A 0%, #F2661F 48%, #E23E6B 100%);
  --grad-2: linear-gradient(135deg, #F2661F, #E23E6B);
  --glow: 0 12px 40px rgba(242,102,31,.35);

  --txt: #FFFFFF;
  --muted: #B7B2BE;
  --muted-2: #837D8C;

  --disp: 'Sora', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;

  --container: 1280px;
  --nav-h: 72px;
  --player-h: 74px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body { font-family: var(--sans); background: var(--bg); color: var(--txt); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--disp); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; color: #fff; }
::selection { background: var(--orange); color: #12100e; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* kicker */
.kicker { font-family: var(--sans); font-weight: 700; text-transform: uppercase; letter-spacing: .2em; font-size: .7rem; color: var(--orange-2); display: inline-flex; align-items: center; gap: 10px; }
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; }

/* botões */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--disp); font-weight: 700; font-size: .92rem; padding: 15px 30px; border-radius: 40px; cursor: pointer; border: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s; min-height: 52px; }
.btn-play { background: var(--grad); color: #fff; box-shadow: var(--glow); }
.btn-play:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 50px rgba(242,102,31,.5); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1px solid var(--line-2); }
.btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); }
.btn-lg { padding: 17px 38px; font-size: 1rem; min-height: 58px; }
.btn .ic { width: 18px; height: 18px; }
:focus-visible { outline: 2px solid var(--orange-2); outline-offset: 3px; }

/* progresso topo */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--grad); z-index: 150; }

/* equalizer */
.eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 18px; }
.eq i { width: 3px; background: var(--orange-2); border-radius: 2px; height: 40%; animation: eqb 1s ease-in-out infinite; }
.eq i:nth-child(2){ animation-delay:.2s } .eq i:nth-child(3){ animation-delay:.4s } .eq i:nth-child(4){ animation-delay:.15s } .eq i:nth-child(5){ animation-delay:.5s }
@keyframes eqb { 0%,100%{ height:25% } 50%{ height:100% } }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar { position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; transition: background .4s var(--ease), border-color .4s; border-bottom: 1px solid transparent; }
.navbar.scrolled { background: rgba(10,10,11,.86); backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--disp); font-weight: 800; font-size: 1.02rem; color: #fff; letter-spacing: -.01em; }
.brand img { width: 34px; height: 34px; }
.brand b { color: var(--orange-2); font-weight: 800; }
.brand small { display: block; font-family: var(--sans); font-weight: 500; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); margin-top: -2px; }
.nav-toggle { width: 44px; height: 44px; background: none; border: none; cursor: pointer; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; z-index: 110; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(8px) rotate(45deg) } .nav-toggle.open span:nth-child(2){ opacity:0 } .nav-toggle.open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg) }
.nav-menu { position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); background: var(--panel); border-left: 1px solid var(--line); padding: calc(var(--nav-h) + 28px) 30px 40px; transform: translateX(100%); transition: transform .45s var(--ease); display: flex; }
.nav-menu.open { transform: translateX(0); }
.nav-menu ul { display: flex; flex-direction: column; gap: 2px; width: 100%; }
.nav-menu a { display: block; padding: 14px 6px; font-family: var(--disp); font-weight: 600; font-size: 1.05rem; color: #fff; border-bottom: 1px solid var(--line); transition: color .3s, padding-left .3s; }
.nav-menu a:hover { color: var(--orange-2); padding-left: 8px; }
.nav-menu a.nav-cta { margin-top: 18px; border: none; }
.nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 90; opacity: 0; visibility: hidden; transition: opacity .4s; }
.nav-backdrop.open { opacity: 1; visibility: visible; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: calc(var(--nav-h) + 60px) 0 70px; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(242,102,31,.4), transparent 62%); top: -280px; right: -160px; filter: blur(50px); z-index: 0; }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(226,62,107,.3), transparent 65%); bottom: -220px; left: -160px; filter: blur(50px); z-index: 0; }
.hero .container { position: relative; z-index: 2; }
.hero .now { display: inline-flex; align-items: center; gap: 12px; padding: 8px 16px 8px 8px; background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: 40px; font-size: .78rem; color: var(--muted); }
.hero .now .cover { width: 30px; height: 30px; border-radius: 7px; background: var(--grad); display: grid; place-items: center; }
.hero h1 { margin-top: 26px; font-size: clamp(2.7rem, 10vw, 6.4rem); font-weight: 800; line-height: .96; letter-spacing: -.03em; }
.hero p.lead { margin-top: 24px; font-size: 1.14rem; color: var(--muted); max-width: 560px; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { margin-top: 30px; font-size: .82rem; color: var(--muted-2); display: flex; flex-wrap: wrap; gap: 8px 18px; }
.hero-trust b { color: #fff; font-family: var(--disp); }

/* faixa de números */
.statsbar { border-block: 1px solid var(--line); background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.stats-grid .s { padding: 26px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid .s b { font-family: var(--disp); font-weight: 800; font-size: clamp(1.6rem, 5vw, 2.4rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.stats-grid .s span { font-size: .74rem; color: var(--muted); }

/* marquee de artistas */
.marquee { overflow: hidden; padding: 18px 0; border-bottom: 1px solid var(--line); }
.marquee-track { display: inline-flex; white-space: nowrap; animation: marq 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--disp); font-weight: 800; font-size: 1.4rem; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.28); padding: 0 26px; display: inline-flex; align-items: center; gap: 26px; }
.marquee span::after { content: "◆"; -webkit-text-stroke: 0; color: var(--orange); font-size: .7rem; }
@keyframes marq { to { transform: translateX(-50%); } }

/* =========================================================
   SEÇÕES
   ========================================================= */
.section { padding: 84px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .kicker { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(2rem, 6vw, 3.4rem); font-weight: 800; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 1.05rem; }

/* cards de serviço (playlist) */
.cards { display: grid; grid-template-columns: 1fr; gap: 18px; }
.card { position: relative; padding: 26px 24px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; transition: transform .35s var(--ease), background .35s; overflow: hidden; }
.card:hover { transform: translateY(-5px); background: var(--panel-2); }
.card .ico { width: 52px; height: 52px; border-radius: 13px; background: var(--grad); display: grid; place-items: center; margin-bottom: 16px; font-size: 1.4rem; }
.card h3 { font-size: 1.3rem; }
.card p { margin-top: 8px; color: var(--muted); font-size: .95rem; }

/* roster de artistas (álbuns) */
.roster { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.tile { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1; display: grid; place-items: center; text-align: center; padding: 12px; }
.tile .ini { font-family: var(--disp); font-weight: 800; font-size: 2.4rem; color: rgba(255,255,255,.9); }
.tile .nm { position: absolute; left: 12px; right: 12px; bottom: 12px; font-family: var(--disp); font-weight: 700; font-size: .92rem; z-index: 2; }
.tile .gn { position: absolute; left: 12px; top: 12px; font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.8); z-index: 2; }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.55)); }
.tile .play { position: absolute; right: 12px; bottom: 12px; width: 40px; height: 40px; border-radius: 50%; background: var(--orange); display: grid; place-items: center; z-index: 3; transform: translateY(10px); opacity: 0; transition: all .3s var(--ease); box-shadow: var(--glow); }
.tile:hover .play { transform: none; opacity: 1; }
.tile .play svg { width: 16px; height: 16px; fill: #12100e; }

/* passos */
.steps { display: grid; grid-template-columns: 1fr; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line); align-items: start; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step .n { font-family: var(--disp); font-weight: 800; font-size: 1.6rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step h3 { font-size: 1.3rem; }
.step p { margin-top: 6px; color: var(--muted); }

/* depoimentos */
.quotes { display: grid; grid-template-columns: 1fr; gap: 18px; }
.quote { padding: 26px 24px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; }
.quote p { color: #e7e2ec; font-size: 1rem; }
.quote .by { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.quote .av { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-family: var(--disp); font-weight: 800; font-size: .9rem; color: #fff; }
.quote .by b { font-family: var(--disp); font-size: .95rem; }
.quote .by span { display: block; font-size: .72rem; color: var(--muted-2); }

/* produtos (álbuns com preço) */
.albums { display: grid; grid-template-columns: 1fr; gap: 18px; }
.album { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: transform .35s var(--ease); display: flex; flex-direction: column; }
.album:hover { transform: translateY(-6px); }
.album .cover { aspect-ratio: 16/9; background: var(--grad); position: relative; display: grid; place-items: center; }
.album .cover .big { font-family: var(--disp); font-weight: 800; font-size: 2rem; color: #fff; text-align: center; padding: 16px; }
.album .cover .fab { position: absolute; right: 16px; bottom: -22px; width: 52px; height: 52px; border-radius: 50%; background: #12100e; border: 1px solid var(--line-2); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.5); }
.album .cover .fab svg { width: 18px; height: 18px; fill: var(--orange-2); }
.album .body { padding: 26px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.album .tagp { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--orange-2); font-weight: 700; }
.album h3 { margin-top: 8px; font-size: 1.4rem; }
.album p { margin-top: 8px; color: var(--muted); font-size: .95rem; flex: 1; }
.album .price { margin-top: 16px; font-family: var(--disp); font-weight: 800; font-size: 1.5rem; color: #fff; }
.album .price small { font-size: .8rem; color: var(--muted); font-weight: 500; }
.album .btn { margin-top: 16px; }

/* pricing card (produto) */
.pricing { max-width: 520px; margin-inline: auto; background: var(--panel); border: 1px solid var(--line-2); border-radius: 22px; padding: 34px 28px; text-align: center; position: relative; overflow: hidden; }
.pricing::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: var(--grad); }
.pricing .off { display: inline-block; background: rgba(242,102,31,.16); color: var(--orange-2); font-weight: 700; font-size: .74rem; padding: 6px 14px; border-radius: 30px; }
.pricing .old { color: var(--muted-2); text-decoration: line-through; margin-top: 16px; }
.pricing .now { font-family: var(--disp); font-weight: 800; font-size: 3rem; margin-top: 4px; }
.pricing .now small { font-size: 1rem; color: var(--muted); }
.pricing .inst { color: var(--muted); }
.pricing .btn { margin-top: 22px; width: 100%; }
.pricing .safe { margin-top: 14px; font-size: .76rem; color: var(--muted-2); }

/* checklist */
.checks { display: grid; gap: 12px; max-width: 620px; }
.checks li { position: relative; padding-left: 34px; color: #e7e2ec; }
.checks li::before { content: "✔"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; background: var(--grad); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .68rem; }

/* tracklist (módulos) */
.tracklist { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.track { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); transition: background .3s; }
.track:last-child { border-bottom: 0; }
.track:hover { background: var(--panel-2); }
.track .tn { font-family: var(--disp); font-weight: 700; color: var(--muted-2); width: 26px; }
.track:hover .tn { color: var(--orange-2); }
.track .tt b { font-family: var(--disp); font-weight: 700; display: block; }
.track .tt span { font-size: .86rem; color: var(--muted); }
.track .dur { font-size: .82rem; color: var(--muted-2); font-variant-numeric: tabular-nums; }

/* FAQ */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; padding: 22px 44px 22px 0; position: relative; font-family: var(--disp); font-weight: 700; font-size: 1.12rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--orange-2); font-family: var(--disp); font-weight: 400; transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 0 22px; color: var(--muted); }

/* CTA final */
.cta { position: relative; overflow: hidden; text-align: center; padding: 96px 0; }
.cta::before { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: .14; }
.cta .inner { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(2.2rem, 7vw, 4rem); }
.cta p { max-width: 560px; margin: 18px auto 30px; color: var(--muted); }

/* link-in-bio */
.biolist { max-width: 560px; margin-inline: auto; display: grid; gap: 14px; }
.biolink { display: flex; align-items: center; gap: 16px; padding: 16px 18px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; transition: transform .3s var(--ease), border-color .3s, background .3s; }
.biolink:hover { transform: translateY(-3px); border-color: var(--orange); background: var(--panel-2); }
.biolink .cov { width: 52px; height: 52px; border-radius: 12px; background: var(--grad); display: grid; place-items: center; font-family: var(--disp); font-weight: 800; flex: 0 0 auto; }
.biolink .in b { font-family: var(--disp); font-weight: 700; display: block; }
.biolink .in span { font-size: .84rem; color: var(--muted); }
.biolink .go { margin-left: auto; color: var(--orange-2); }

/* obrigado */
.thankcard { max-width: 640px; margin-inline: auto; text-align: center; background: var(--panel); border: 1px solid var(--line); border-radius: 22px; padding: 44px 30px; }
.thankcard .ico { width: 72px; height: 72px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; margin: 0 auto 20px; box-shadow: var(--glow); }

/* =========================================================
   PLAYER BAR (fixo, conceito streaming)
   ========================================================= */
.player { position: fixed; left: 0; right: 0; bottom: 0; z-index: 96; height: var(--player-h); background: rgba(18,15,20,.92); backdrop-filter: blur(18px); border-top: 1px solid var(--line); display: flex; align-items: center; }
.player .pin { display: flex; align-items: center; gap: 14px; width: 100%; }
.player .cover { width: 46px; height: 46px; border-radius: 8px; background: var(--grad); display: grid; place-items: center; flex: 0 0 auto; }
.player .cover img { width: 26px; height: 26px; }
.player .meta { min-width: 0; }
.player .meta b { font-family: var(--disp); font-weight: 700; font-size: .88rem; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player .meta span { font-size: .72rem; color: var(--muted); }
.player .bar { flex: 1; height: 4px; border-radius: 4px; background: rgba(255,255,255,.14); overflow: hidden; display: none; }
.player .bar i { display: block; height: 100%; width: 38%; background: var(--grad); border-radius: 4px; }
.player .pbtn { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; flex: 0 0 auto; margin-left: auto; box-shadow: var(--glow); }
.player .pbtn svg { width: 18px; height: 18px; fill: #12100e; }
body { padding-bottom: var(--player-h); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--line); padding-top: 66px; background: var(--bg-2); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 36px; padding-bottom: 44px; }
.footer .brand { font-size: 1.15rem; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); max-width: 320px; font-size: .94rem; }
.footer h4 { font-family: var(--disp); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--orange-2); margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-size: .95rem; transition: color .3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer-bottom .fb { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.footer-bottom p { color: var(--muted-2); font-size: .78rem; }
.footer-bottom .disc { max-width: 760px; margin-inline: auto; }

/* reveals */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
[data-delay="1"]{ transition-delay:.08s } [data-delay="2"]{ transition-delay:.16s } [data-delay="3"]{ transition-delay:.24s }
@media (prefers-reduced-motion: reduce){ *,*::before,*::after{ animation:none!important; transition-duration:.01ms!important } .reveal{ opacity:1; transform:none } }

/* =========================================================
   MEDIA QUERIES
   ========================================================= */
@media (min-width: 620px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .roster { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .albums { grid-template-columns: repeat(2, 1fr); }
  .player .bar { display: block; }
}
@media (min-width: 960px) {
  :root { --nav-h: 80px; }
  .nav-toggle { display: none; }
  .nav-menu { position: static; width: auto; transform: none; background: none; border: none; padding: 0; }
  .nav-menu ul { flex-direction: row; align-items: center; gap: 6px; }
  .nav-menu a { border: none; padding: 9px 14px; font-size: .92rem; }
  .nav-menu a:hover { padding-left: 14px; }
  .nav-menu a.nav-cta { margin-top: 0; margin-left: 8px; }
  .section { padding: 116px 0; }
  .stats-grid { grid-template-columns: repeat(6, 1fr); }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .roster { grid-template-columns: repeat(6, 1fr); }
  .albums { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .step { border-top: none; padding: 0; display: block; }
  .step .n { font-size: 2.4rem; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; }
  .footer-bottom .fb { flex-direction: row; justify-content: space-between; text-align: left; }
}
@media (min-width: 1180px) { .hero h1 { font-size: 6.8rem; } }
