/* HOSTLIGADO — estilos compartilhados */
:root {
    --ink: #060913;
    --surface: #0C1122;
    --surface-2: #111830;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text: #E6E9F2;
    --muted: #98A2B8;
    --brand: #F97316;
    --brand-soft: #FB923C;
    --blue: #3B82F6;
    --player-h: 76px;
    --header-h: 72px;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1.5rem); }
body {
    background: var(--ink);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    padding-bottom: var(--player-h);
}
::selection { background: rgba(249, 115, 22, 0.35); color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
    outline: 2px solid var(--brand-soft);
    outline-offset: 3px;
    border-radius: 10px;
}

/* ---------- Background decor ---------- */
.bg-grid {
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 35%, transparent 100%);
            mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 35%, transparent 100%);
}
.glow { position: absolute; border-radius: 9999px; filter: blur(90px); pointer-events: none; }

/* ---------- Promo bar ---------- */
.promo-bar {
    background: linear-gradient(90deg, #1B0F05, #2A1405 50%, #1B0F05);
    border-bottom: 1px solid rgba(249,115,22,.25);
}
.coupon {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: .06em;
    border: 1px dashed rgba(251,146,60,.6);
    border-radius: 6px;
    padding: .05rem .45rem;
    color: #FDBA74;
    background: rgba(249,115,22,.08);
    cursor: pointer;
    transition: background-color .2s ease;
}
.coupon:hover { background: rgba(249,115,22,.18); }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(6, 9, 19, 0.72);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
            backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, background-color .3s ease;
}
.site-header.scrolled { background: rgba(6, 9, 19, 0.88); border-bottom-color: var(--line); }

.nav-item { position: relative; }
.nav-link {
    display: inline-flex; align-items: center; gap: .3rem;
    height: 44px; padding: 0 .85rem; border-radius: 10px;
    color: #B7C0D4; font-weight: 500; font-size: .9375rem;
    transition: color .2s ease, background-color .2s ease;
    cursor: pointer;
}
.nav-link:hover, .nav-item:hover > .nav-link, .nav-link[aria-expanded="true"] { color: #fff; background: rgba(255,255,255,.05); }
.nav-link.active { color: #fff; }
.nav-link.active::after {
    content: ''; position: absolute; left: .85rem; right: .85rem; bottom: 2px; height: 2px; border-radius: 2px; background: var(--brand);
}
.nav-link .chev { width: 16px; height: 16px; transition: transform .2s ease; }
.nav-link[aria-expanded="true"] .chev { transform: rotate(180deg); }

.dropdown {
    position: absolute; top: calc(100% + 10px); left: 50%;
    width: 320px; padding: .5rem;
    background: rgba(12, 17, 34, .98);
    border: 1px solid var(--line-strong); border-radius: 18px;
    box-shadow: 0 30px 70px -20px rgba(0,0,0,.8);
    opacity: 0; visibility: hidden; transform: translate(-50%, 6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.dropdown::before { content: ''; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.dropdown.open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown a {
    display: flex; gap: .85rem; align-items: flex-start;
    padding: .75rem; border-radius: 12px;
    transition: background-color .15s ease;
}
.dropdown a:hover, .dropdown a:focus-visible { background: rgba(255,255,255,.05); }
.dropdown a.active { background: rgba(249,115,22,.08); }
.dropdown .dd-icon {
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(249,115,22,.1); color: var(--brand-soft); border: 1px solid rgba(249,115,22,.2);
}
.dropdown .dd-title { display: block; font-weight: 600; color: #fff; font-size: .9375rem; }
.dropdown .dd-desc { display: block; font-size: .8125rem; color: var(--muted); line-height: 1.4; margin-top: .1rem; }

/* Mobile menu */
.mobile-menu { max-height: calc(100dvh - var(--header-h)); overflow-y: auto; }
.mobile-menu[hidden] { display: none; }
.m-link {
    display: flex; align-items: center; justify-content: space-between; width: 100%;
    min-height: 52px; font-size: 1.0625rem; font-weight: 500; color: #E2E8F0;
    border-bottom: 1px solid var(--line);
}
.m-link.active { color: var(--brand-soft); }
.m-sub { display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows .25s ease, visibility .25s; }
.m-sub.open { grid-template-rows: 1fr; visibility: visible; }
.m-sub > div { overflow: hidden; }
.m-sub a { display: flex; align-items: center; min-height: 46px; padding-left: 1rem; color: var(--muted); border-left: 2px solid var(--line); margin-left: .25rem; }
.m-sub a.active { color: var(--brand-soft); border-left-color: var(--brand); }
[aria-expanded="true"] > .chev { transform: rotate(180deg); }
.chev { transition: transform .2s ease; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    min-height: 48px; padding: 0 1.5rem; border-radius: 12px;
    font-weight: 600; font-size: .95rem; letter-spacing: .01em;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
    cursor: pointer; white-space: nowrap;
}
.btn-primary {
    color: #1A0B00;
    background: linear-gradient(180deg, #FB923C 0%, #F97316 100%);
    box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 10px 30px -10px rgba(249,115,22,.65);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 16px 40px -12px rgba(249,115,22,.8); }
.btn-ghost { color: #fff; border: 1px solid var(--line-strong); background: rgba(255,255,255,.03); }
.btn-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.24); }
.btn-wa { color: #03170A; background: linear-gradient(180deg, #4ADE80, #22C55E); box-shadow: 0 10px 30px -12px rgba(34,197,94,.6); }
.btn-wa:hover { transform: translateY(-1px); }
.btn-sm { min-height: 40px; padding: 0 1rem; font-size: .875rem; border-radius: 10px; }
.btn-lg { min-height: 54px; padding: 0 1.75rem; font-size: 1rem; }
.btn .i { width: 18px; height: 18px; transition: transform .2s ease; }
.btn:hover .i-arrow { transform: translateX(3px); }

/* ---------- Surfaces ---------- */
.card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: border-color .25s ease, transform .25s ease;
}
.card-hover:hover { border-color: rgba(255,255,255,.16); transform: translateY(-3px); }
.icon-tile {
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(249,115,22,.1); color: var(--brand-soft);
    border: 1px solid rgba(249,115,22,.22);
}
.icon-tile.blue { background: rgba(59,130,246,.1); color: #93C5FD; border-color: rgba(59,130,246,.25); }
.icon-tile.green { background: rgba(34,197,94,.1); color: #86EFAC; border-color: rgba(34,197,94,.25); }
.i { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.i-fill { fill: currentColor; stroke: none; }
.i-sm { width: 18px; height: 18px; }
.i-xs { width: 16px; height: 16px; }

.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-soft);
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: currentColor; opacity: .7; }
.text-gradient {
    background: linear-gradient(92deg, #FDBA74 0%, #F97316 45%, #FB7185 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pill {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .4rem .9rem .4rem .45rem; border-radius: 9999px;
    border: 1px solid var(--line-strong); background: rgba(255,255,255,.04);
    font-size: .8125rem; color: #CBD2E1;
}
.pill-dot { position: relative; width: 22px; height: 22px; border-radius: 9999px; background: rgba(34,197,94,.15); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pill-dot::after { content: ''; width: 8px; height: 8px; border-radius: 9999px; background: #22C55E; animation: ping 2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); } 80%, 100% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; font-size: .8125rem; color: var(--muted); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }

/* Console mockup */
.console { box-shadow: 0 40px 120px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.06) inset; background: linear-gradient(180deg, rgba(20,27,50,.85), rgba(10,14,28,.9)); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.eq span { display: block; width: 4px; height: 100%; border-radius: 2px; background: linear-gradient(180deg, #FDBA74, #F97316); animation: eq 1.2s ease-in-out infinite; transform-origin: bottom; }
.eq span:nth-child(2) { animation-delay: -.3s; } .eq span:nth-child(3) { animation-delay: -.6s; }
.eq span:nth-child(4) { animation-delay: -.9s; } .eq span:nth-child(5) { animation-delay: -.45s; }
@keyframes eq { 0%, 100% { transform: scaleY(.3); } 50% { transform: scaleY(1); } }
.spark path.line { stroke-dasharray: 400; stroke-dashoffset: 400; animation: draw 2.2s .4s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- Pricing ---------- */
.plan-featured {
    background:
        linear-gradient(180deg, rgba(22,18,20,1), rgba(12,14,26,1)) padding-box,
        linear-gradient(160deg, rgba(251,146,60,.9), rgba(249,115,22,.15) 45%, rgba(59,130,246,.35)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 30px 80px -30px rgba(249,115,22,.35);
}
.check { width: 20px; height: 20px; border-radius: 9999px; display: inline-flex; align-items: center; justify-content: center; background: rgba(34,197,94,.12); color: #4ADE80; flex-shrink: 0; }
.check .i { width: 13px; height: 13px; stroke-width: 2.5; }
.spec { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: .9375rem; }
.spec:last-child { border-bottom: 0; }
.spec dt { color: var(--muted); }
.spec dd { color: #fff; font-weight: 600; text-align: right; }

/* ---------- FAQ ---------- */
.faq-panel { display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows .3s ease, visibility .3s; }
.faq-panel.open { grid-template-rows: 1fr; visibility: visible; }
.faq-panel > div { overflow: hidden; }
.faq-btn .i-plus { transition: transform .3s ease; }
.faq-btn[aria-expanded="true"] .i-plus { transform: rotate(45deg); color: var(--brand-soft); }

/* ---------- Forms ---------- */
.field {
    width: 100%; min-height: 48px; padding: .75rem 1rem; border-radius: 12px;
    background: rgba(255,255,255,.04); border: 1px solid var(--line-strong); color: #fff;
    transition: border-color .2s ease, background-color .2s ease;
}
.field::placeholder { color: #6B7590; }
.field:hover { border-color: rgba(255,255,255,.22); }
.field:focus { outline: none; border-color: var(--brand); background: rgba(255,255,255,.06); box-shadow: 0 0 0 3px rgba(249,115,22,.2); }
.field.invalid { border-color: #F87171; }
select.field option { background: var(--surface); }

/* ---------- Tabs ---------- */
.tabs { display: inline-flex; flex-wrap: wrap; gap: .35rem; padding: .35rem; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid var(--line); }
.tab { min-height: 42px; padding: 0 1.1rem; border-radius: 10px; font-weight: 600; font-size: .9rem; color: var(--muted); transition: color .2s ease, background-color .2s ease; cursor: pointer; }
.tab:hover { color: #fff; }
.tab[aria-selected="true"] { color: #1A0B00; background: linear-gradient(180deg, #FB923C, #F97316); }
.tab .count { margin-left: .35rem; font-size: .75rem; opacity: .75; }

/* ---------- Audio tracks ---------- */
.track {
    display: flex; align-items: center; gap: .9rem; width: 100%; text-align: left;
    padding: .8rem .9rem; border-radius: 16px;
    background: rgba(255,255,255,.03); border: 1px solid var(--line);
    transition: border-color .2s ease, background-color .2s ease;
    cursor: pointer;
}
.track:hover { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.track .play {
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 44px; height: 44px; border-radius: 9999px;
    background: rgba(249,115,22,.12); color: var(--brand-soft); border: 1px solid rgba(249,115,22,.3);
    transition: background-color .2s ease, color .2s ease;
}
.track:hover .play { background: var(--brand); color: #1A0B00; }
.track .ic-pause { display: none; }
.track.playing { border-color: rgba(249,115,22,.5); background: rgba(249,115,22,.07); }
.track.playing .play { background: var(--brand); color: #1A0B00; }
.track.playing .ic-play { display: none; }
.track.playing .ic-pause { display: block; }
.track.loading .play { animation: pulse 1s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .5; } }
.track .t-title { display: block; font-weight: 600; color: #fff; line-height: 1.3; }
.track .t-meta { display: block; font-size: .8125rem; color: var(--muted); }
.track .bar { display: block; height: 3px; border-radius: 3px; background: rgba(255,255,255,.08); margin-top: .5rem; overflow: hidden; }
.track .bar > span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, #FDBA74, #F97316); }
.track .t-eq { display: none; height: 18px; align-items: flex-end; gap: 2px; }
.track.playing .t-eq { display: flex; }
.track .t-eq span { width: 3px; }

/* ---------- Gallery ---------- */
.gallery-item {
    position: relative; display: block; width: 100%; overflow: hidden;
    border-radius: 16px; border: 1px solid var(--line); background: var(--surface);
    cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,9,19,.85)); opacity: .8; transition: opacity .3s ease; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .cap { position: absolute; left: .9rem; bottom: .75rem; right: .9rem; z-index: 1; font-size: .8125rem; font-weight: 600; color: #fff; text-align: left; }
.gallery-item .zoom { position: absolute; right: .75rem; top: .75rem; z-index: 1; width: 36px; height: 36px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: rgba(6,9,19,.7); color: #fff; opacity: 0; transition: opacity .2s ease; }
.gallery-item:hover .zoom, .gallery-item:focus-visible .zoom { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 70; display: flex; align-items: center; justify-content: center; padding: 1rem; background: rgba(3,5,12,.92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.lightbox[hidden] { display: none; }
.lightbox figure { max-width: min(1200px, 100%); }
.lightbox img { max-height: calc(100dvh - 9rem); width: auto; margin: 0 auto; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-btn { position: absolute; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 9999px; background: rgba(255,255,255,.08); border: 1px solid var(--line-strong); color: #fff; transition: background-color .2s ease; cursor: pointer; }
.lb-btn:hover { background: rgba(255,255,255,.16); }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ---------- Video facade ---------- */
.yt { position: relative; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: #000; cursor: pointer; }
.yt img { width: 100%; height: 100%; object-fit: cover; opacity: .8; transition: opacity .3s ease, transform .5s ease; }
.yt:hover img { opacity: 1; transform: scale(1.02); }
.yt .yt-play { position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; border-radius: 9999px; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, #FB923C, #F97316); color: #1A0B00; box-shadow: 0 20px 50px -10px rgba(249,115,22,.7); transition: transform .2s ease; }
.yt:hover .yt-play { transform: scale(1.06); }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Credentials ---------- */
.cred { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .7rem .9rem; border-radius: 12px; background: rgba(0,0,0,.25); border: 1px solid var(--line); }
.cred code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: #FDBA74; font-size: .95rem; }
.copy-btn { display: inline-flex; align-items: center; gap: .35rem; min-height: 36px; padding: 0 .7rem; border-radius: 8px; font-size: .8125rem; color: var(--muted); border: 1px solid var(--line); transition: color .2s ease, border-color .2s ease; cursor: pointer; }
.copy-btn:hover { color: #fff; border-color: var(--line-strong); }

/* ---------- Legal / prose ---------- */
.legal { color: #C3CAD9; font-size: 1.0625rem; line-height: 1.8; max-width: 72ch; }
.legal h2 {
    scroll-margin-top: calc(var(--header-h) + 1.5rem);
    margin: 3.25rem 0 1rem; padding-top: 2.5rem; border-top: 1px solid var(--line);
    font-family: "Space Grotesk", system-ui, sans-serif; font-size: 1.5rem; font-weight: 700; line-height: 1.3; color: #fff;
}
.legal h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal p { margin: 0 0 1.1rem; }
.legal ul { margin: 0 0 1.25rem; padding: 0; list-style: none; }
.legal li { position: relative; margin: 0 0 .75rem; padding-left: 1.4rem; }
.legal li::before { content: ''; position: absolute; left: .2rem; top: .75em; width: 6px; height: 6px; border-radius: 9999px; background: var(--brand); }
.legal strong { color: #fff; font-weight: 600; }
.legal a { color: var(--brand-soft); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: #fff; }
.legal .table-wrap { overflow-x: auto; margin: 0 0 1.5rem; border: 1px solid var(--line); border-radius: 14px; }
.legal table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.legal th, .legal td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.legal th { color: #fff; background: rgba(255,255,255,.04); font-weight: 600; }
.legal tr:last-child td { border-bottom: 0; }
.legal td:last-child, .legal th:last-child { text-align: right; }

.toc { position: sticky; top: calc(var(--header-h) + 1.5rem); max-height: calc(100dvh - var(--header-h) - 3rem - var(--player-h)); overflow-y: auto; }
.toc a { display: block; padding: .45rem .9rem; border-left: 2px solid var(--line); color: var(--muted); font-size: .875rem; line-height: 1.4; transition: color .2s ease, border-color .2s ease; }
.toc a:hover { color: #fff; }
.toc a.active { color: #fff; border-left-color: var(--brand); }

/* ---------- Rádio ao vivo ---------- */
.radio {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(8, 11, 22, .92);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
            backdrop-filter: saturate(160%) blur(16px);
    border-top: 1px solid var(--line-strong);
    box-shadow: 0 -20px 50px -20px rgba(0,0,0,.7);
}
.radio::before {
    content: ''; position: absolute; left: 0; right: 0; top: -1px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249,115,22,.7), rgba(59,130,246,.5), transparent);
    opacity: 0; transition: opacity .4s ease;
}
.radio[data-state="playing"]::before { opacity: 1; }
.radio-inner { display: flex; align-items: center; gap: .9rem; height: var(--player-h); }
.radio-cover {
    position: relative; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 14px; color: #1A0B00;
    background: linear-gradient(135deg, #FDBA74, #F97316 55%, #C2410C);
    box-shadow: 0 10px 24px -10px rgba(249,115,22,.8);
}
.radio-cover .eq { position: absolute; inset: auto 0 7px 0; display: none; justify-content: center; height: 14px; gap: 2px; }
.radio-cover .eq span { width: 3px; background: #1A0B00; }
.radio[data-state="playing"] .radio-cover .i { display: none; }
.radio[data-state="playing"] .radio-cover .eq { display: flex; position: static; height: 20px; align-items: flex-end; }
.radio-info { min-width: 0; flex: 1; }
.radio-label { display: flex; align-items: center; gap: .45rem; font-size: .6875rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.live-dot { width: 7px; height: 7px; border-radius: 9999px; background: #64748B; }
.radio[data-state="playing"] .live-dot { background: #EF4444; animation: live 1.6s ease-in-out infinite; }
.radio[data-state="playing"] .radio-label .live-txt { color: #FCA5A5; }
@keyframes live { 0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,.6); } 50% { box-shadow: 0 0 0 5px rgba(239,68,68,0); } }
.radio-title { margin-top: .15rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-weight: 600; color: #fff; font-size: .9375rem; }
.radio-status { font-size: .75rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.radio[data-state="error"] .radio-status { color: #FCA5A5; }
.radio-play {
    position: relative; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
    width: 50px; height: 50px; border-radius: 9999px; color: #1A0B00; cursor: pointer;
    background: linear-gradient(180deg, #FB923C, #F97316);
    box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 10px 26px -10px rgba(249,115,22,.8);
    transition: transform .15s ease, box-shadow .2s ease;
}
.radio-play:hover { transform: scale(1.05); }
.radio-play:active { transform: scale(.96); }
.radio-play .ic-pause, .radio-play .spin { display: none; }
.radio[data-state="playing"] .radio-play .ic-play { display: none; }
.radio[data-state="playing"] .radio-play .ic-pause { display: block; }
.radio[data-state="loading"] .radio-play .ic-play { display: none; }
.radio[data-state="loading"] .radio-play .spin { display: block; }
.spin { width: 22px; height: 22px; border-radius: 9999px; border: 2.5px solid rgba(26,11,0,.25); border-top-color: #1A0B00; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.radio-vol { display: flex; align-items: center; gap: .5rem; }
.radio-mute { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; color: #CBD2E1; cursor: pointer; transition: color .2s ease, background-color .2s ease; }
.radio-mute:hover { color: #fff; background: rgba(255,255,255,.06); }
.radio-mute .ic-mute { display: none; }
.radio.is-muted .radio-mute .ic-vol { display: none; }
.radio.is-muted .radio-mute .ic-mute { display: block; }
.radio-vol input[type="range"] {
    -webkit-appearance: none; appearance: none; width: 110px; height: 4px; border-radius: 4px; cursor: pointer;
    background: linear-gradient(90deg, var(--brand-soft) var(--val, 80%), rgba(255,255,255,.15) var(--val, 80%));
}
.radio-vol input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: 9999px; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.4); }
.radio-vol input[type="range"]::-moz-range-thumb { width: 14px; height: 14px; border: 0; border-radius: 9999px; background: #fff; }
.radio-vol input[type="range"]:focus-visible { outline: 2px solid var(--brand-soft); outline-offset: 6px; }

/* Barra de progresso da navegação */
.route-progress { position: fixed; top: 0; left: 0; right: 0; z-index: 90; height: 2px; pointer-events: none; opacity: 0; transition: opacity .2s ease; }
.route-progress::before { content: ''; display: block; height: 100%; width: 40%; background: linear-gradient(90deg, #FDBA74, #F97316); animation: route 1s ease-in-out infinite; }
.route-progress.active { opacity: 1; }
@keyframes route { from { transform: translateX(-100%); } to { transform: translateX(260%); } }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: calc(var(--player-h) + 1rem); z-index: 80; transform: translate(-50%, 20px); opacity: 0; padding: .7rem 1.1rem; border-radius: 12px; background: #fff; color: #0B1020; font-weight: 600; font-size: .875rem; box-shadow: 0 20px 50px -10px rgba(0,0,0,.6); transition: opacity .2s ease, transform .2s ease; pointer-events: none; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0ms); }
.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .js .reveal { opacity: 1; transform: none; }
    .spark path.line { stroke-dashoffset: 0; }
}
