/* ═══ TOKENS ═══ */
:root {
  --mag: #E91E8C;
  --pur: #7C3AED;
  --bg: #080808;
  --cream: #fefbd0;
  --mg: rgba(233,30,140,.35);
  --border: rgba(254,251,208,.06);
  --pad: 20px;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

/* ═══ BLOBS ═══ */
.blobs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .12; animation: blobFloat 10s ease-in-out infinite; pointer-events: none; }
.b1 { width: 600px; height: 600px; background: var(--mag); top: -200px; left: -150px; }
.b2 { width: 500px; height: 500px; background: var(--pur); top: 30%; right: -150px; animation-delay: 3s; }
.b3 { width: 400px; height: 400px; background: var(--mag); bottom: 5%; left: 25%; animation-delay: 6s; }
@keyframes blobFloat { 0%,100% { transform: scale(1) translate(0,0); } 33% { transform: scale(1.06) translate(15px,-15px); } 66% { transform: scale(.94) translate(-15px,15px); } }

/* GEO */
.geo { position: fixed; pointer-events: none; z-index: 0; display: none; }

/* ═══ STICKY HEADER ═══ */
header {
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: center; align-items: center; gap: 2rem;
  padding: 14px var(--pad);
  background: rgba(8,8,8,.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  animation: fadeDown .5s both;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(233,30,140,.4)); }
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-name {
  font-family: 'Anton', sans-serif; font-size: 16px; letter-spacing: .1em;
  color: #fff; background: none; -webkit-text-fill-color: unset;
}
.logo-url { font-family: 'DM Mono', monospace; font-size: 8px; color: rgba(254,251,208,.35); letter-spacing: .12em; line-height: 2; width: 180px; height: 15px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.header-badge {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: rgba(254,251,208,.45); letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(254,251,208,.1); padding: 6px 14px; border-radius: 100px;
  display: none;
}
@media(min-width:600px) { .header-badge { display: block; } }

/* ═══ TICKER ═══ */
.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(90deg, var(--mag), var(--pur));
  padding: 11px 0;
  animation: fadeIn .6s .2s both;
}
.ticker-track { display: flex; white-space: nowrap; animation: tickerRoll 25s linear infinite; }
.ticker-item {
  font-family: 'Anton', sans-serif; font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--cream); padding: 0 28px; flex-shrink: 0; opacity: .9;
}
.ticker-sep { color: rgba(254,251,208,.4); padding: 0 4px; }
@keyframes tickerRoll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══ PAGE ═══ */
.page { position: relative; z-index: 1; }

/* ═══ HERO ═══ */
.hero {
  max-width: 700px; margin: 0 auto;
  padding: clamp(32px,6vw,64px) var(--pad) clamp(40px,6vw,64px);
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.hero-col-left {
  display: flex; flex-direction: column; align-items: center; width: 100%;
  animation: fadeUp .7s .1s both;
}
.hero-col-right {
  display: flex; flex-direction: column; align-items: center; width: 100%;
  border-top: none; padding-top: 0;
  animation: fadeUp .7s .25s both;
}

/* gorilla + counter */
.gorilla-counter-row {
  display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 20px;
  margin-bottom: 28px; animation: fadeDown .6s .15s both;
}
.gorilla-icon {
  width: clamp(80px,12vw,120px); height: clamp(80px,12vw,120px);
  object-fit: contain; flex-shrink: 0; margin: 0 auto;
  filter: drop-shadow(0 0 24px rgba(233,30,140,.5));
}

/* tag */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 10px; color: var(--mag);
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 18px; text-align: center; animation: fadeDown .6s .1s both;
}
.tag::before { content: ''; width: 14px; height: 1px; background: var(--mag); flex-shrink: 0; }

/* headline */
.headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(47px,12vw,72px);
  line-height: 1.0; text-transform: uppercase; letter-spacing: -.01em;
  margin-top: 20px; margin-bottom: 18px; text-align: center;
  animation: fadeDown .6s .2s both;
}
.hl-white { color: var(--cream); text-align: center; font-size: inherit; }
.hl-mag { color: var(--mag); text-shadow: 0 0 40px rgba(233,30,140,.4); display: block; text-align: center; font-size: inherit; }

/* sub */
.hero-sub {
  font-size: 14px; font-weight: 400;
  color: rgba(254,251,208,.65); line-height: 1.55;
  margin-bottom: 24px; text-align: center; animation: fadeUp .6s .3s both;
}
.hero-sub strong { color: var(--cream); font-weight: 700; }

/* counter */
.counter-block {
  display: flex; align-items: center; gap: 14px;
  background: rgba(233,30,140,.08); border: 1px solid rgba(233,30,140,.2);
  border-radius: 8px; padding: 16px 20px;
  width: fit-content; margin: 20px auto; animation: fadeUp .6s .6s both;
}
.live-dot {
  width: 8px; height: 8px; flex-shrink: 0;
  background: #4caf50; border-radius: 50%;
  animation: pulseLive 2s ease infinite; box-shadow: 0 0 8px rgba(76,175,80,.5);
}
@keyframes pulseLive { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.75); } }
.counter-num-big { font-family: 'Anton', sans-serif; font-size: clamp(28px,6vw,40px); color: var(--mag); line-height: 1; }
.counter-label { font-family: 'DM Sans', monospace; font-size: 12px; color: rgba(254,251,208,.45); line-height: 1.4; max-width: 120px; }

/* right col */
.right-label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: rgba(254,251,208,.28); letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-challenge {
  font-size: 15px; color: rgba(254,251,208,.4); line-height: 1.8;
  margin-bottom: 24px; font-style: italic; text-align: center;
  animation: fadeUp .6s .4s both;
}

/* FORM */
.input-wrap {
  background: rgba(254,251,208,.03); border: 1.5px solid rgba(254,251,208,.1);
  border-radius: 8px; display: flex; align-items: stretch;
  margin-bottom: 10px; transition: border-color .2s, box-shadow .2s;
  animation: fadeUp .6s .5s both;
}
.input-wrap:focus-within {
  border-color: var(--mag);
  box-shadow: 0 0 0 3px rgba(233,30,140,.14), 0 0 24px rgba(233,30,140,.1);
}
.input-wrap.shake { animation: shake .4s ease; }
.at {
  display: flex; align-items: center; padding: 0 16px;
  font-family: 'DM Mono', monospace; font-size: 20px; color: var(--mag);
  border-right: 1.5px solid rgba(254,251,208,.07);
  user-select: none; min-width: 48px; justify-content: center;
}
#handle-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--cream); font-family: 'DM Mono', monospace;
  font-size: 16px; padding: 18px 16px; letter-spacing: .03em;
  min-height: 56px; -webkit-appearance: none;
}
#handle-input::placeholder { color: rgba(254,251,208,.18); }
.input-err {
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--mag);
  letter-spacing: .1em; min-height: 14px; margin-bottom: 10px;
  opacity: 0; transition: opacity .2s;
}
.input-err.show { opacity: 1; }

.cta {
  background: linear-gradient(105deg, var(--mag), var(--pur));
  color: var(--cream); border: none;
  font-family: 'Anton', sans-serif; font-size: 15px; letter-spacing: .1em;
  padding: 0 24px; border-radius: 8px; cursor: pointer;
  transition: all .25s; box-shadow: 0 4px 24px rgba(233,30,140,.35);
  text-transform: uppercase; width: 100%;
  min-height: 56px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; -webkit-tap-highlight-color: transparent;
  animation: fadeUp .6s .5s both;
}
.cta:hover:not(:disabled) {
  background: linear-gradient(105deg, var(--pur), var(--mag));
  box-shadow: 0 8px 40px rgba(124,58,237,.4); transform: translateY(-2px);
}
.cta:active:not(:disabled) { transform: scale(.98); }
.cta:disabled { cursor: default; transform: none; opacity: .7; }
.cta.ok { background: linear-gradient(105deg,#064e3b,#065f46); box-shadow: 0 4px 16px rgba(6,78,59,.4); }

.disc {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: rgba(254,251,208,.22); letter-spacing: .1em;
  display: flex; flex-wrap: wrap; gap: 4px 0; justify-content: center;
  margin-bottom: 12px; animation: fadeUp .6s .55s both;
}
.disc span { margin-right: 12px; }

.urgency {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: var(--mag); letter-spacing: .1em; animation: fadeUp .6s .6s both;
}

.hero-form-wrap, .hero-col-right { width: 100%; max-width: 560px; margin-left: auto; margin-right: auto; }

@keyframes shake { 0%,100% { transform: translateX(0); } 20% { transform: translateX(-7px); } 40% { transform: translateX(7px); } 60% { transform: translateX(-4px); } 80% { transform: translateX(4px); } }

/* ═══ DIVIDER ═══ */
.divider { max-width: 1200px; margin: 0 auto; padding: 0 var(--pad); }
.divider hr { border: none; border-top: 1px solid var(--border); }

/* ═══ GRUPO SELETO ═══ */
.section-seleto { max-width: 1200px; margin: 0 auto; padding: clamp(32px,5vw,56px) var(--pad); }
.sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 8px; }
.sec-label {
  font-family: 'DM Mono', monospace; font-size: 10px; color: var(--mag);
  letter-spacing: .2em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.sec-label::before { content: ''; width: 14px; height: 1px; background: var(--mag); flex-shrink: 0; }

.rank-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media(min-width:700px) { .rank-list { grid-template-columns: repeat(4,1fr); } }

.rank-item {
  display: flex; flex-direction: column; padding: 28px 22px 22px;
  border: 1px solid rgba(254,251,208,.07); border-radius: 12px;
  background: rgba(254,251,208,.02); transition: all .25s; cursor: default;
  -webkit-tap-highlight-color: transparent; position: relative; overflow: hidden;
}
.rank-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,var(--mag),var(--pur)); opacity: 0; transition: opacity .25s;
}
.rank-item:hover::before, .rank-item:active::before { opacity: 1; }
.rank-item:hover {
  border-color: rgba(233,30,140,.25); background: rgba(233,30,140,.04);
  transform: translateY(-6px); box-shadow: 0 16px 40px rgba(233,30,140,.15);
}
.rank-num { font-family: 'DM Mono', monospace; font-size: 11px; color: rgba(254,251,208,.2); letter-spacing: .2em; margin-bottom: 16px; }
.rank-handle { font-family: 'DM Mono', monospace; font-size: 13px; color: rgba(254,251,208,.55); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 10px; }
.rank-score-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 14px; }
.rank-score { font-family: 'Anton', sans-serif; font-size: clamp(48px,8vw,64px); color: var(--mag); line-height: 1; text-shadow: 0 0 28px rgba(233,30,140,.3); }
.rank-score-denom { font-family: 'DM Mono', monospace; font-size: 12px; color: rgba(254,251,208,.22); }
.rank-tag { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(254,251,208,.28); border-top: 1px solid rgba(254,251,208,.06); padding-top: 12px; margin-top: auto; margin-bottom: 12px; }
.badge-dominante {
  display: inline-block; background: rgba(76,175,80,.1); border: 1px solid rgba(76,175,80,.3);
  color: #4caf50; font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: .18em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; align-self: flex-start;
}

/* ═══ MANIFESTO ═══ */
.section-manifesto {
  background: rgba(254,251,208,.015);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 64px var(--pad);
}
.manifesto-inner {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: clamp(16px,3vw,28px);
  text-align: center; align-items: center; padding: 0 var(--pad);
}
.manifesto-text { font-family: 'Anton', sans-serif; font-size: clamp(32px,7vw,50px); line-height: 1.05; text-transform: uppercase; letter-spacing: -.01em; }
.manifesto-text em { font-style: normal; color: var(--cream); text-shadow: none; }
.manifesto-right { display: flex; flex-direction: column; gap: 18px; align-items: center; width: 100%; }
.manifesto-sub { font-size: 16px; color: rgba(254,251,208,.42); line-height: 1.7; font-weight: 300; }
.manifesto-sub strong { color: var(--cream); font-weight: 600; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pill {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(254,251,208,.3); border: 1px solid rgba(254,251,208,.08);
  padding: 7px 13px; border-radius: 100px;
}

/* ═══ FOOTER ═══ */
footer {
  max-width: 1200px; margin: 0 auto; padding: 28px var(--pad);
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
}
.fc { font-family: 'DM Mono', monospace; font-size: 11px; color: rgba(254,251,208,.18); letter-spacing: .07em; }
.ft { font-family: 'Anton', sans-serif; font-size: 11px; letter-spacing: .2em; color: rgba(254,251,208,.1); text-transform: uppercase; }

/* ═══ RESULTADO — score & dimensions ═══ */
.score-big {
  font-family: 'Anton', sans-serif;
  font-size: clamp(80px,20vw,140px);
  color: var(--mag); line-height: 1;
  text-shadow: 0 0 60px rgba(233,30,140,.4);
}
.score-denom { font-family: 'DM Mono', monospace; font-size: clamp(18px,4vw,28px); color: rgba(254,251,208,.3); }

.categoria-badge {
  display: inline-block; font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 100px; margin-top: 12px;
}
.cat-vermelho { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.35); color: #ef4444; }
.cat-laranja  { background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.35); color: #f97316; }
.cat-amarelo  { background: rgba(234,179,8,.12);  border: 1px solid rgba(234,179,8,.35);  color: #eab308; }
.cat-roxo     { background: rgba(124,58,237,.15);  border: 1px solid rgba(124,58,237,.4);   color: #a78bfa; }
.cat-azul     { background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.35); color: #60a5fa; }
.cat-verde    { background: rgba(34,197,94,.12);  border: 1px solid rgba(34,197,94,.35);  color: #4ade80; }

.profile-pic {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--mag); box-shadow: 0 0 32px rgba(233,30,140,.4);
}
.profile-placeholder {
  width: 96px; height: 96px; border-radius: 50%;
  background: rgba(233,30,140,.1); border: 3px solid var(--mag);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}

.dim-card {
  background: rgba(254,251,208,.02); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin-bottom: 20px;
  animation: fadeUp .5s both;
}
.dim-title {
  font-family: 'Anton', sans-serif; font-size: clamp(20px,4vw,26px);
  color: var(--cream); letter-spacing: .05em; margin-bottom: 4px;
}
.dim-question {
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  color: rgba(254,251,208,.4); font-style: italic; margin-bottom: 20px;
}
.progress-bar-wrap { background: rgba(254,251,208,.06); border-radius: 100px; height: 8px; margin-bottom: 12px; overflow: hidden; }
.progress-bar { height: 100%; border-radius: 100px; background: linear-gradient(90deg,var(--mag),var(--pur)); transition: width 1s ease; }

.status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
}
.status-critico  { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.3);  color: #ef4444; }
.status-atencao  { background: rgba(234,179,8,.1);   border: 1px solid rgba(234,179,8,.3);   color: #eab308; }
.status-solido   { background: rgba(34,197,94,.1);   border: 1px solid rgba(34,197,94,.3);   color: #4ade80; }

.contrast-table { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.contrast-col { display: flex; flex-direction: column; gap: 8px; }
.contrast-col-head {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 6px; margin-bottom: 4px;
}
.contrast-col-sem .contrast-col-head { background: rgba(239,68,68,.08); color: #ef4444; border: 1px solid rgba(239,68,68,.2); }
.contrast-col-com .contrast-col-head { background: rgba(34,197,94,.08); color: #4ade80; border: 1px solid rgba(34,197,94,.2); }
.contrast-item {
  font-family: 'DM Sans', sans-serif; font-size: 12px; padding: 8px 12px;
  border-radius: 6px; line-height: 1.4;
}
.contrast-col-sem .contrast-item { background: rgba(239,68,68,.04); color: rgba(254,251,208,.55); border: 1px solid rgba(239,68,68,.1); }
.contrast-col-com .contrast-item { background: rgba(34,197,94,.04); color: rgba(254,251,208,.75); border: 1px solid rgba(34,197,94,.1); }

.dim-diagnostico {
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: rgba(254,251,208,.7); background: rgba(254,251,208,.03);
  border: 1px solid rgba(254,251,208,.08); border-left: 3px solid var(--mag);
  padding: 14px 16px; border-radius: 0 8px 8px 0; line-height: 1.5;
}

.resumo-brutal {
  font-family: 'Anton', sans-serif; font-size: clamp(24px,5vw,40px);
  color: var(--cream); text-align: center; text-transform: uppercase;
  line-height: 1.1; letter-spacing: .02em;
}

.opp-gargalo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.opp-card {
  background: rgba(254,251,208,.02); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.opp-card-icon { font-size: 28px; margin-bottom: 12px; }
.opp-card-label {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(254,251,208,.35); margin-bottom: 8px;
}
.opp-card-text { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(254,251,208,.8); line-height: 1.4; }

/* ═══ CTA SECTION ═══ */
.cta-section {
  background: rgba(233,30,140,.04); border: 1px solid rgba(233,30,140,.12);
  border-radius: 16px; padding: clamp(28px,5vw,48px); text-align: center;
  margin: 32px 0;
}
.cta-section-text {
  font-family: 'DM Sans', sans-serif; font-size: 16px;
  color: rgba(254,251,208,.65); line-height: 1.6; margin-bottom: 24px;
}
.cta-section-text strong { color: var(--cream); font-weight: 700; }
.cta-main {
  background: linear-gradient(105deg,var(--mag),var(--pur));
  color: var(--cream); border: none;
  font-family: 'Anton', sans-serif; font-size: 16px; letter-spacing: .1em;
  padding: 20px 40px; border-radius: 8px; cursor: pointer;
  box-shadow: 0 4px 32px rgba(233,30,140,.4);
  text-transform: uppercase; display: inline-flex; align-items: center;
  transition: all .25s; text-decoration: none; -webkit-tap-highlight-color: transparent;
}
.cta-main:hover {
  background: linear-gradient(105deg,var(--pur),var(--mag));
  box-shadow: 0 8px 48px rgba(124,58,237,.45); transform: translateY(-2px);
}
.cta-guarantees {
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center;
  margin-top: 16px; font-family: 'DM Mono', monospace; font-size: 10px;
  color: rgba(254,251,208,.3); letter-spacing: .12em;
}

/* ═══ LOADING ═══ */
.loading-wrap {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-height: 60vh; gap: 24px;
  animation: fadeIn .4s both;
}
.loading-gorilla { font-size: 60px; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: .7; } }
.loading-title { font-family: 'Anton', sans-serif; font-size: clamp(24px,5vw,36px); color: var(--cream); text-align: center; }
.loading-phrase { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--mag); letter-spacing: .15em; text-align: center; transition: opacity .3s; }
.loading-bar-wrap { width: 240px; background: rgba(254,251,208,.06); border-radius: 100px; height: 4px; overflow: hidden; }
.loading-bar { height: 100%; background: linear-gradient(90deg,var(--mag),var(--pur)); border-radius: 100px; animation: loadingProg 8s linear forwards; }
@keyframes loadingProg { from { width: 0%; } to { width: 90%; } }

/* ═══ OBRIGADO ═══ */
.retention-bar {
  background: var(--mag); padding: 12px var(--pad);
  text-align: center; font-family: 'DM Mono', monospace; font-size: 11px;
  color: var(--cream); letter-spacing: .1em; animation: fadeDown .4s both;
}
.oto-badge {
  display: inline-block; background: rgba(233,30,140,.12);
  border: 1px solid rgba(233,30,140,.35); color: var(--mag);
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
}
.price-anchor { text-decoration: line-through; color: rgba(254,251,208,.3); font-size: 0.75em; }
.price-real { font-family: 'Anton', sans-serif; font-size: clamp(40px,8vw,64px); color: var(--mag); }

/* ═══ ERRO ═══ */
.erro-wrap {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-height: 70vh; gap: 20px;
  text-align: center; padding: 0 var(--pad);
}
.erro-icon { font-size: 64px; animation: fadeDown .5s both; }
.erro-title {
  font-family: 'Anton', sans-serif; font-size: clamp(28px,6vw,48px);
  color: var(--cream); text-transform: uppercase; animation: fadeUp .5s .1s both;
}
.erro-reasons {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(254,251,208,.35); letter-spacing: .1em;
  display: flex; flex-direction: column; gap: 6px; animation: fadeUp .5s .2s both;
}
.erro-support {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(254,251,208,.25); letter-spacing: .1em;
  text-decoration: none; transition: color .2s; animation: fadeUp .5s .4s both;
}
.erro-support:hover { color: var(--mag); }

/* ═══ SCORE DISPLAY ═══ */
.score-big {
  font-family: 'Anton', sans-serif;
  color: var(--mag); line-height: 1;
  text-shadow: 0 0 60px rgba(233,30,140,.4);
}
.score-denom { font-family: 'DM Mono', monospace; color: rgba(254,251,208,.3); }

/* ═══ PROGRESS BAR COLORS ═══ */
[data-pct] {
  background: linear-gradient(90deg, var(--mag), var(--pur)) !important;
}

/* Status based on score */
.status-critico  { color: #FF4444; }
.status-atencao  { color: #FFD700; }
.status-solido   { color: #4CAF50; }

/* ═══ TWEAKS ═══ */
#tweaks-panel {
  display: none; position: fixed; bottom: 20px; right: 20px; z-index: 9999;
  background: #111; border: 1px solid rgba(254,251,208,.1);
  border-radius: 10px; padding: 18px; width: 220px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6); font-family: 'DM Sans', sans-serif;
}
#tweaks-panel.open { display: block; }
.tp-title { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .2em; color: rgba(254,251,208,.35); text-transform: uppercase; margin-bottom: 14px; }
.tr { margin-bottom: 12px; }
.tl { font-size: 12px; color: rgba(254,251,208,.55); margin-bottom: 5px; display: block; }
.tr input[type=color] { width: 34px; height: 26px; border: none; border-radius: 4px; cursor: pointer; background: none; }
.tr select { background: rgba(254,251,208,.05); border: 1px solid rgba(254,251,208,.1); border-radius: 4px; color: var(--cream); font-size: 12px; padding: 6px 8px; width: 100%; cursor: pointer; }

/* ═══ MOBILE ═══ */
@media(max-width:767px) {
  :root { --pad: 16px; }
  .hero { padding: 28px var(--pad) 36px; }
  .hero-col-left, .hero-col-right { align-items: center; text-align: center; }
  .headline { font-size: clamp(38px,9.9vw,65px); }
  .hl-white, .hl-mag { font-size: clamp(38px,9.9vw,65px); }
  .gorilla-icon { width: clamp(72px,20vw,100px); height: clamp(72px,20vw,100px); }
  .counter-block { width: 100%; justify-content: center; }
  .hero-sub, .hero-challenge { text-align: center; }
  .disc { justify-content: center; }
  .section-seleto { padding: 28px var(--pad); }
  .section-manifesto { padding: 32px var(--pad); }
  .rank-list { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .hero-form-wrap, .hero-col-right { max-width: 100%; }
  footer { flex-direction: column; align-items: center; text-align: center; }
  .contrast-table { grid-template-columns: 1fr; }
  .opp-gargalo-grid { grid-template-columns: 1fr; }
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(20px); }  to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }

/* ═══ DESKTOP ≥ 900px ═══ */
@media(min-width:900px) {
  :root { --pad: 48px; }
  .blobs .b1 { width: 700px; height: 700px; }
  .blobs .b2 { width: 600px; height: 600px; }
  .geo { display: block; }
  .gd { width: 72px; height: 72px; border: 1px solid rgba(233,30,140,.1); top: 28%; right: 6%; animation: gfd 11s ease-in-out infinite; }
  .gc { width: 100px; height: 100px; border: 1px solid rgba(124,58,237,.08); border-radius: 50%; bottom: 28%; left: 4%; animation: gf 14s ease-in-out infinite reverse; }
  @keyframes gf  { 0%,100% { transform: translateY(0); }   50% { transform: translateY(-16px); } }
  @keyframes gfd { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(55deg) translateY(-10px); } }
  .hero { padding: clamp(40px,6vw,72px) var(--pad) clamp(48px,6vw,72px); }
  .headline { font-size: clamp(45px,4.9vw,65px); }
  .section-manifesto { padding: clamp(40px,6vw,80px) var(--pad); }
  footer { flex-direction: row; justify-content: space-between; text-align: center; }
}
