:root {
  --bg: #0b0d1a;
  --bg-soft: #11142a;
  --card: #161a33;
  --border: #262b4d;
  --text: #f2f4ff;
  --muted: #a0a6cc;
  --primary: #6d5cff;
  --primary-2: #9d6bff;
  --accent: #22d3a5;
  --danger: #ff5d6c;
  --warn: #ffb020;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0, 0, 0, .35);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--primary-2); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }
video { max-width: 100%; }

.container { width: min(1120px, 92%); margin: 0 auto; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 13, 26, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand .logo {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-size: 1.1rem;
}
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: .95rem; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px; border: none; cursor: pointer;
  font-weight: 700; font-size: .98rem; font-family: inherit;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s;
  background: var(--primary); color: #fff;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(109, 92, 255, .4); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-lg { padding: 16px 30px; font-size: 1.08rem; border-radius: 14px; }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { box-shadow: none; border-color: var(--primary); }
.btn-accent { background: linear-gradient(135deg, var(--accent), #2dd4bf); color: #06281f; }
.btn-danger { background: var(--danger); }
.btn-outline { background: transparent; border: 1.5px solid var(--primary); color: var(--primary-2); }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 90px 0 110px;
  background:
    radial-gradient(700px 400px at 80% -10%, rgba(109, 92, 255, .35), transparent 60%),
    radial-gradient(600px 380px at 10% 20%, rgba(34, 211, 165, .18), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(109, 92, 255, .15); color: var(--primary-2);
  padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: .85rem;
  border: 1px solid rgba(109, 92, 255, .35);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.12; font-weight: 800; margin: 22px 0 18px; }
h1 .grad { background: linear-gradient(90deg, var(--primary-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.sub { color: var(--muted); font-size: 1.12rem; max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.trust { display: flex; gap: 26px; margin-top: 34px; color: var(--muted); font-size: .9rem; flex-wrap: wrap; }
.trust b { color: var(--text); font-size: 1.15rem; display: block; }

.hero-media {
  background: linear-gradient(160deg, rgba(109, 92, 255, .18), rgba(34, 211, 165, .12));
  border: 1px solid var(--border); border-radius: 24px; padding: 20px;
  box-shadow: var(--shadow);
}
.phone {
  aspect-ratio: 9 / 16; max-width: 280px; margin: 0 auto;
  border-radius: 28px; border: 1px solid var(--border);
  background: var(--card); overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
.phone .shot { flex: 1; position: relative; }
.phone .shot::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, #3a3f7d, #191d3a 55%, #10132b);
}
.phone .shot::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(220px 320px at 50% 40%, rgba(255, 255, 255, .18), transparent 70%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .5));
}
.phone .caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px; z-index: 2;
}
.phone .caption b { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.phone .caption span { font-size: .82rem; color: var(--muted); }
.phone .bar { height: 46px; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: .8rem; color: var(--muted); border-top: 1px solid var(--border); }
.phone .shot.video::before,
.phone .shot.video::after { content: none; }
.phone .shot.video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }
.pulse { animation: pulse 2.4s ease-in-out infinite; }

.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 18px; margin-top: 40px; }
.flow-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 22px 18px; text-align: center; box-shadow: var(--shadow); }
.flow-card span { font-size: 1.7rem; display: block; margin-bottom: 8px; }
.flow-card b { display: block; margin-bottom: 4px; color: var(--heading); }
.flow-card p { font-size: .85rem; color: var(--muted); margin: 0; }
.flow-arrow { color: var(--accent); font-size: 1.4rem; font-weight: 800; }
@media (max-width: 720px) { .flow { grid-template-columns: 1fr; } .flow-arrow { transform: rotate(90deg); justify-self: center; } }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

/* ---------- sections ---------- */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }

/* ---------- features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; transition: transform .2s ease, border-color .2s ease;
}
.feat:hover { transform: translateY(-4px); border-color: var(--primary); }
.feat .ico {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 18px;
  background: rgba(109, 92, 255, .16); border: 1px solid rgba(109, 92, 255, .3);
}
.feat h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feat p { color: var(--muted); font-size: .95rem; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; position: relative;
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 22px; right: 24px;
  font-size: 2.6rem; font-weight: 800; color: rgba(109, 92, 255, .25);
}
.step h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- plans ---------- */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 34px 30px; display: flex; flex-direction: column; position: relative;
}
.plan.highlight { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), var(--shadow); }
.plan .tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  padding: 6px 16px; border-radius: 999px; font-size: .78rem; font-weight: 800; white-space: nowrap;
}
.plan h3 { font-size: 1.3rem; }
.plan .price { margin: 18px 0 4px; }
.plan .price b { font-size: 2.6rem; font-weight: 800; }
.plan .price span { color: var(--muted); }
.plan ul { list-style: none; margin: 22px 0 28px; display: grid; gap: 12px; flex: 1; }
.plan ul li { display: flex; gap: 10px; font-size: .95rem; color: var(--muted); }
.plan ul li::before { content: "✓"; color: var(--accent); font-weight: 800; }

/* ---------- guarantee ---------- */
.guarantee {
  background: linear-gradient(120deg, rgba(34, 211, 165, .12), rgba(109, 92, 255, .12));
  border: 1px solid var(--border); border-radius: 24px; padding: 46px;
  display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center;
}
.guarantee .seal {
  width: 110px; height: 110px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 30% 25%, #2dd4bf, var(--accent) 60%, #0e7c66);
  color: #03261d; font-weight: 800; font-size: .8rem; line-height: 1.25;
  box-shadow: 0 0 40px rgba(34, 211, 165, .45);
}
.guarantee h3 { font-size: 1.6rem; margin-bottom: 8px; }
.guarantee p { color: var(--muted); max-width: 620px; }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.testi .stars { color: var(--warn); margin-bottom: 12px; letter-spacing: 2px; }
.testi p { font-size: .98rem; margin-bottom: 16px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.testi .who b { display: block; font-size: .92rem; }
.testi .who span { font-size: .8rem; color: var(--muted); }

/* ---------- faq ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
details { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 20px 24px; }
summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: "+"; font-size: 1.4rem; color: var(--primary-2); }
details[open] summary::after { content: "–"; }
details p { margin-top: 12px; color: var(--muted); font-size: .96rem; }

/* ---------- cta band ---------- */
.cta-band { background: linear-gradient(135deg, var(--primary), var(--primary-2)); border-radius: 28px; padding: 60px 40px; text-align: center; }
.cta-band h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, .85); max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn { background: #fff; color: var(--primary); }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--border); background: var(--bg-soft); padding: 56px 0 30px; margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
footer h4 { margin-bottom: 16px; font-size: 1rem; }
footer p, footer li { color: var(--muted); font-size: .9rem; list-style: none; }
footer ul { display: grid; gap: 10px; }
footer ul li a { color: var(--muted); }
.policies {
  border: 1px solid var(--border); border-radius: 14px; padding: 20px; background: rgba(0, 0, 0, .2);
}
.policies p { font-size: .8rem; line-height: 1.55; }
.foot-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: .85rem; }

/* ---------- forms ---------- */
.auth-wrap { min-height: calc(100vh - 68px); display: grid; place-items: center; padding: 50px 0; }
.auth-card {
  width: min(430px, 92%); background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px; box-shadow: var(--shadow);
}
.auth-card h2 { margin-bottom: 6px; }
.auth-card .sub { color: var(--muted); margin-bottom: 24px; font-size: .95rem; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1.5px solid var(--border);
  background: var(--bg); color: var(--text); font-family: inherit; font-size: .98rem;
  outline: none; transition: border-color .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--primary); }
.field textarea { min-height: 110px; resize: vertical; }
.hint { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.form-msg { display: none; padding: 12px 16px; border-radius: 12px; margin-bottom: 18px; font-size: .9rem; }
.form-msg.show { display: block; }
.form-msg.err { background: rgba(255, 93, 108, .12); border: 1px solid var(--danger); color: #ffb3bb; }
.form-msg.ok { background: rgba(34, 211, 165, .12); border: 1px solid var(--accent); color: #b5f5e4; }
.form-foot { text-align: center; margin-top: 20px; color: var(--muted); font-size: .92rem; }

/* ---------- panel ---------- */
.panel-head { padding: 30px 0; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.panel-head .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.panel-head h2 { font-size: 1.6rem; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border-radius: 999px; font-weight: 700; font-size: .88rem;
  background: rgba(34, 211, 165, .12); border: 1px solid rgba(34, 211, 165, .35); color: var(--accent);
}
.pill.muted { background: rgba(255, 176, 32, .12); border-color: rgba(255, 176, 32, .4); color: var(--warn); }

.panel-body { padding: 40px 0 70px; }
.grid-2 { display: grid; grid-template-columns: 380px 1fr; gap: 30px; align-items: start; min-width: 0; }
.grid-2 > * { min-width: 0; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; min-width: 0; }
.card h3 { margin-bottom: 18px; font-size: 1.15rem; }
.dropzone {
  position: relative;
  border: 2px dashed var(--border); border-radius: 14px; padding: 20px;
  text-align: center; color: var(--muted); cursor: pointer; transition: border-color .15s;
}
.dropzone.drag { border-color: var(--primary); }
.dropzone > input[type="file"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; z-index: 5;
}
.upload-prev { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 14px; }
.upload-prev .th {
  position: relative; display: flex; flex-direction: column; gap: 6px;
  border-radius: 12px; border: 1px solid var(--border); background: var(--bg); padding: 6px;
}
.upload-prev .th-img { position: relative; aspect-ratio: 9/16; border-radius: 8px; overflow: hidden; background: #000; }
.upload-prev .th-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.upload-prev .th .rm {
  position: absolute; top: 12px; right: 12px; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(0, 0, 0, .65); color: #fff; border: none; cursor: pointer; font-size: .8rem; line-height: 1;
}
.pp-inline { min-height: 56px; font-size: .82rem; width: 100%; box-sizing: border-box; }
.voice-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.voice-card {
  border: 1.5px solid var(--border); border-radius: 14px; padding: 14px; cursor: pointer;
  text-align: center; transition: border-color .15s, background .15s; background: var(--bg);
}
.voice-card.selected { border-color: var(--primary); background: rgba(109, 92, 255, .1); }
.voice-card .emoji { font-size: 1.6rem; }
.voice-card b { display: block; margin-top: 4px; }
.voice-card small { color: var(--muted); }

.btn-sm { padding: 8px 14px; font-size: .86rem; border-radius: 10px; }

/* ---------- musicas ---------- */
.music-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.music-card {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border: 1.5px solid var(--border); border-radius: 12px; background: var(--bg);
  cursor: pointer; transition: border-color .15s, background .15s; position: relative;
}
.music-card:hover { border-color: var(--primary); }
.music-card.sel { border-color: var(--accent); background: rgba(34, 211, 165, .08); }
.music-card.sel::after {
  content: "✓"; position: absolute; top: -6px; right: -6px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--accent); color: #06281f; font-weight: 800; font-size: .8rem;
  display: grid; place-items: center; box-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}
.mc-play {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff;
  font-size: .95rem; display: grid; place-items: center;
}
.music-card.sel .mc-play { background: linear-gradient(135deg, var(--accent), #2dd4bf); color: #06281f; }
.mc-info { min-width: 0; }
.mc-info b { display: block; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mc-info small { color: var(--muted); font-size: .74rem; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- project list ---------- */
.plist { display: grid; gap: 16px; min-width: 0; }
.proj {
  display: flex; gap: 18px; align-items: center;
  background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px;
  min-width: 0;
}
.proj .thumb { width: 92px; aspect-ratio: 9/16; border-radius: 10px; background: linear-gradient(160deg, #3a3f7d, #191d3a); flex-shrink: 0; display: grid; place-items: center; overflow: hidden; }
.proj .thumb video, .proj .thumb img { width: 100%; height: 100%; object-fit: cover; }
.proj .meta { flex: 1; min-width: 0; }
.proj .meta b { display: block; margin-bottom: 3px; overflow-wrap: anywhere; word-break: break-word; }
.proj .meta span { color: var(--muted); font-size: .86rem; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.status { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700; }
.status.pending, .status.processing { background: rgba(255, 176, 32, .14); color: var(--warn); }
.status.done { background: rgba(34, 211, 165, .14); color: var(--accent); }
.status.error { background: rgba(255, 93, 108, .14); color: var(--danger); }
.proj-err { color: var(--danger); font-size: .82rem; display: block; margin-top: 6px; overflow-wrap: anywhere; word-break: break-word; }
.proj .actions { display: flex; gap: 8px; }

/* ---------- table ---------- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .92rem; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); }
th { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; }
tr:hover td { background: rgba(109, 92, 255, .05); }

/* ---------- toast ---------- */
.toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 200; display: grid; gap: 10px; }
.toast {
  background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--accent);
  padding: 14px 18px; border-radius: 12px; box-shadow: var(--shadow);
  min-width: 260px; max-width: 360px; font-size: .92rem;
  animation: slideIn .25s ease;
}
.toast.err { border-left-color: var(--danger); }
@keyframes slideIn { from { transform: translateX(30px); opacity: 0; } to { transform: none; opacity: 1; } }

.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty .big { font-size: 3rem; margin-bottom: 12px; }

/* ---------- tabs ---------- */
.tabs { display: flex; gap: 8px; margin: 26px 0 30px; border-bottom: 1px solid var(--border); padding-bottom: 14px; flex-wrap: wrap; }
.tab-btn {
  background: transparent; border: 1.5px solid var(--border); color: var(--muted);
  padding: 10px 20px; border-radius: 12px; cursor: pointer; font-weight: 700; font-family: inherit; font-size: .95rem;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ---------- presell ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1.5px solid var(--border); background: var(--bg); color: var(--text);
  padding: 8px 13px; border-radius: 999px; cursor: pointer; font-size: .86rem; transition: all .15s;
}
.chip:hover { border-color: var(--primary); }
.chip.sel { background: var(--primary); border-color: var(--primary); color: #fff; }
.opt { border: 1.5px solid var(--border); border-radius: 12px; padding: 12px 14px; cursor: pointer; background: var(--bg); transition: all .15s; }
.opt:hover { border-color: var(--primary); }
.opt.sel { border-color: var(--primary); background: rgba(109, 92, 255, .1); }
.opt small { color: var(--muted); display: block; }
.presell-img { max-width: 120px; border-radius: 10px; border: 1px solid var(--border); margin-bottom: 8px; }
.kw-box { background: rgba(109, 92, 255, .1); border: 1px solid rgba(109, 92, 255, .35); border-radius: 12px; padding: 14px; }
.kw-box b { color: var(--primary-2); }

/* ---------- static creatives ---------- */
.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--border);
  cursor: pointer; transition: all .15s; position: relative;
}
.swatch:hover { transform: scale(1.08); }
.swatch.sel { border-color: var(--text); box-shadow: 0 0 0 3px rgba(255,255,255,.25); }
.swatch.sel::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-weight: 800; text-shadow: 0 1px 2px rgba(0,0,0,.5); }

.wc-grid { display: grid; gap: 8px; }
.wc-row { display: flex; align-items: center; gap: 10px; padding: 6px 10px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg); }
.wc-word { flex: 1; min-width: 0; font-weight: 800; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .9rem; }
.wc-dots { display: flex; flex-wrap: wrap; gap: 6px; }
.wc-dot {
  width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--border);
  cursor: pointer; transition: all .12s; padding: 0;
}
.wc-dot:hover { transform: scale(1.12); }
.wc-dot.sel { border-color: var(--text); box-shadow: 0 0 0 2px rgba(255,255,255,.3); }
.wc-dot[data-hex="#FFFFFF"] { border-color: #888; }

.loading { text-align: center; padding: 40px; color: var(--muted); }
.spinner {
  width: 34px; height: 34px; margin: 0 auto 14px; border-radius: 50%;
  border: 3px solid var(--border); border-top-color: var(--primary); animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.badge { padding: 3px 10px; border-radius: 999px; font-size: .78rem; font-weight: 700; }
.badge.client { background: rgba(109, 92, 255, .16); color: var(--primary-2); }
.badge.admin { background: rgba(34, 211, 165, .16); color: var(--accent); }
.badge.on { background: rgba(34, 211, 165, .16); color: var(--accent); }
.badge.off { background: rgba(255, 93, 108, .16); color: var(--danger); }

/* ---------- modais ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 150; display: flex; align-items: center; justify-content: center;
  background: rgba(10, 12, 30, .55); padding: 20px; backdrop-filter: blur(3px);
}
.modal {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow);
  width: 100%; max-width: 420px; max-height: 92vh; display: flex; flex-direction: column; overflow: hidden;
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 18px 22px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.modal-head h3 { margin: 0; }
.modal-close {
  background: transparent; border: none; cursor: pointer; font-size: 1.15rem;
  color: var(--muted); line-height: 1; padding: 4px;
}
.modal-close:hover { color: var(--text); }
.modal-body { padding: 20px 22px; overflow-y: auto; }
.modal-foot {
  display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap;
  padding: 16px 22px; border-top: 1px solid var(--border); flex-shrink: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .features-grid, .steps, .plans-grid, .testi-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 620px) {
  .nav-links a.hide-m { display: none; }
  section { padding: 60px 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .proj { flex-wrap: wrap; }
  .voice-cards, .music-grid { grid-template-columns: 1fr; }
  .proj .thumb { width: 100%; aspect-ratio: 16/9; }
  .proj .actions { width: 100%; justify-content: flex-end; flex-wrap: wrap; }
  .tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 10px; }
  .tab-btn { white-space: nowrap; }
  .upload-prev { grid-template-columns: 1fr; }
  .panel-head .container { justify-content: center; text-align: center; }
  .toast-wrap { left: 16px; right: 16px; bottom: 16px; }
  .toast { min-width: 0; max-width: none; }
  .field input, .field textarea, .field select { font-size: 16px; }
  .card { padding: 20px; }
}
