@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #0b0b0f;
  --bg2: #111116;
  --card: rgba(255,255,255,.035);
  --card-hover: rgba(255,255,255,.055);
  --line: rgba(255,255,255,.08);
  --line2: rgba(255,122,24,.28);

  --orange: #ff7a18;
  --orange2: #ff9f1a;

  --text: #ffffff;
  --muted: #9ca3af;
  --muted2: #6b7280;

  --green: #4ade80;
  --red: #ff6b6b;
  --blue: #4dabf7;
  --yellow: #ffd43b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* =========================
   FUNDO
========================= */

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background-image:
    linear-gradient(rgba(255,122,24,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,122,24,.045) 1px, transparent 1px),
    radial-gradient(circle at top left, rgba(255,122,24,.12), transparent 30%);

  background-size:
    54px 54px,
    54px 54px,
    auto;

  background-color: var(--bg);
}

.grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,15,.1), var(--bg) 78%);
}

/* =========================
   NAVBAR
========================= */

.perfil-nav {
  width: min(1100px, calc(100% - 32px));
  margin: 28px auto 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;

  color: #fff;
  font-weight: 800;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-logo span {
  font-size: 17px;
}

.nav-voltar {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;

  padding: 9px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);

  transition: .2s;
}

.nav-voltar:hover {
  color: #fff;
  border-color: rgba(255,122,24,.24);
  background: rgba(255,122,24,.08);
}

/* =========================
   CONTAINER
========================= */

.perfil-container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 80px;
}

/* =========================
   PERFIL HEADER
========================= */

.perfil-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.perfil-user {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.avatar-wrapper {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.avatar {
  width: 96px;
  height: 96px;

  border-radius: 50%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #111;
  font-size: 36px;
  font-weight: 900;

  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border: 3px solid rgba(255,255,255,.10);
  box-shadow: 0 0 0 7px rgba(255,122,24,.08);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editar-foto {
  position: absolute;
  right: 0;
  bottom: 2px;

  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--orange);
  color: #111;

  border: 3px solid var(--bg);
  cursor: pointer;
  transition: .2s;
}

.editar-foto:hover {
  transform: scale(1.08);
}

.perfil-info {
  min-width: 0;
}

.mini-label,
.section-top span,
.plano-topo span,
.section-heading span {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 6px;
}

.nome-editar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nome-editar h1 {
  margin: 0;

  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 850;
  letter-spacing: -1px;
  line-height: 1.05;
}

.editar-btn {
  width: 34px;
  height: 34px;
  min-width: 34px;

  border-radius: 50%;
  border: 1px solid rgba(255,122,24,.25);
  background: rgba(255,122,24,.08);
  color: var(--orange);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: .2s;
}

.editar-btn:hover {
  background: rgba(255,122,24,.15);
}

.perfil-info p {
  margin: 9px 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.perfil-detalhes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.perfil-detalhes span {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 600;
}

.perfil-detalhes span:not(:last-child)::after {
  content: "•";
  margin-left: 10px;
  color: rgba(255,255,255,.25);
}

.status-verificado {
  color: var(--green) !important;
}

.status-nao {
  color: var(--yellow) !important;
}

.verificar-btn {
  margin-left: 6px;
  background: none;
  border: none;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.verificar-btn:hover {
  text-decoration: underline;
}

.perfil-acoes {
  display: flex;
  align-items: center;
  gap: 10px;
}

.perfil-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 10px 14px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);

  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
  transition: .2s;
}

.perfil-btn:hover {
  color: #fff;
  border-color: rgba(255,122,24,.24);
  background: rgba(255,122,24,.08);
}

.perfil-btn.danger {
  color: #ff9999;
  border-color: rgba(255,107,107,.20);
}

.perfil-btn.danger:hover {
  color: #fff;
  background: rgba(255,107,107,.10);
}

/* =========================
   RESUMO
========================= */

.resumo-linha {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.resumo-linha div {
  position: relative;
  padding: 0 22px;
}

.resumo-linha div:first-child {
  padding-left: 0;
}

.resumo-linha div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;

  width: 1px;
  height: 38px;

  background: linear-gradient(
    180deg,
    transparent,
    rgba(255,255,255,.13),
    transparent
  );
}

.resumo-linha span {
  display: block;
  color: var(--muted2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}

.resumo-linha strong {
  display: block;
  color: #fff;
  font-size: 30px;
  font-weight: 850;
  line-height: 1;
}

/* =========================
   PROGRESSO
========================= */

.progresso-simples {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 16px;
}

.section-top h2,
.plano-topo h2,
.section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.4px;
}

.section-top p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.progress-bar-container {
  width: 100%;
  height: 11px;

  overflow: hidden;
  border-radius: 999px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.progress-bar {
  height: 100%;
  width: 0%;

  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  transition: width 1s cubic-bezier(.22,.9,.32,1);
}

/* =========================
   GRID AÇÕES + PLANO
========================= */

.perfil-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;

  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.perfil-bloco {
  min-width: 0;
}

.section-top.compacto {
  margin-bottom: 18px;
}

/* =========================
   AÇÕES
========================= */

.acoes-lista {
  display: grid;
  gap: 12px;
}

.acao-item {
  display: flex;
  align-items: center;
  gap: 13px;

  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);

  color: #fff;
  transition: .2s;
}

.acao-item:hover {
  color: #fff;
  padding-left: 6px;
  border-bottom-color: rgba(255,122,24,.24);
}

.acao-item i {
  width: 38px;
  height: 38px;
  min-width: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  color: var(--orange);
  background: rgba(255,122,24,.10);

  font-size: 18px;
}

.acao-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 3px;
}

.acao-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

/* =========================
   PLANO REDAÇÃO
========================= */

.plano-bloco {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.plano-topo {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.plano-topo p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.perfil-plano-status {
  padding: 7px 12px;
  border-radius: 999px;

  color: #ffbd7a;
  background: rgba(255,122,24,.09);
  border: 1px solid rgba(255,122,24,.20);

  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.perfil-plano-status.premium {
  color: var(--green);
  background: rgba(34,197,94,.09);
  border-color: rgba(34,197,94,.20);
}

.perfil-plano-status.gratis {
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.10);
}

.plano-total {
  display: flex;
  align-items: baseline;
  gap: 10px;

  margin-bottom: 18px;
}

.plano-total span {
  color: var(--muted2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.plano-total strong {
  color: #ffbd7a;
  font-size: 38px;
  font-weight: 850;
  line-height: 1;
}

.plano-total small {
  color: var(--muted2);
  font-size: 12px;
}

.plano-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;

  overflow: hidden;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}

.plano-info div {
  padding: 14px;
  background: rgba(255,255,255,.035);
}

.plano-info span {
  display: block;
  color: var(--muted2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 6px;
}

.plano-info strong {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
}

.plano-info small {
  display: block;
  color: var(--muted2);
  font-size: 11px;
  margin-top: 5px;
}

.plano-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.plano-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 10px 14px;
  border-radius: 999px;

  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);

  font-size: 13px;
  font-weight: 700;

  transition: .2s;
}

.plano-btn.primary {
  color: #111;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border-color: transparent;
}

.plano-btn:hover {
  color: #fff;
  border-color: rgba(255,122,24,.24);
  background: rgba(255,122,24,.08);
}

.plano-btn.primary:hover {
  color: #111;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
}

/* =========================
   RANKING
========================= */

.ranking {
  padding: 46px 0 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 640px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rank-card {
  padding: 22px;

  border-radius: 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);

  transition: .22s;
}

.rank-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.15);
}

.rank-card-top,
.rank-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.rank-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  font-size: 18px;
}

.rank-icon.gold {
  color: #ffd43b;
  background: rgba(255,212,59,.12);
}

.rank-icon.blue {
  color: #74c0fc;
  background: rgba(116,192,252,.12);
}

.rank-icon.red {
  color: #ff8787;
  background: rgba(255,135,135,.12);
}

.rank-card h4,
.rank-title {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.rank-card-top span,
.rank-subtitle {
  color: var(--muted2);
  font-size: 12px;
}

.rank-list {
  display: grid;
  gap: 10px;
}

.rank-item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 11px;
  border-radius: 12px;

  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.055);
}

.medal {
  width: 26px;
  height: 26px;
  min-width: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255,122,24,.10);
}

.rank-name {
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.rank-value {
  color: var(--muted2);
  font-size: 12px;
  margin-top: 2px;
}

/* =========================
   ATUALIZAÇÕES
========================= */

.atualizacoes {
  margin-top: 54px;
}

.atualizacoes-container {
  position: relative;
  max-width: 820px;
  margin: 0 auto;

  display: grid;
  gap: 18px;
}

.atualizacoes-container::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 10px;
  bottom: 10px;

  width: 2px;
  background: linear-gradient(180deg, var(--orange), rgba(255,122,24,.06));
}

.atualizacao-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.timeline-dot {
  position: relative;
  z-index: 2;

  width: 34px;
  height: 34px;
  border-radius: 50%;

  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border: 6px solid #111116;
  box-shadow: 0 0 0 5px rgba(255,122,24,.12);
}

.atualizacao-content {
  padding: 20px;

  border-radius: 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
}

.atualizacao-data {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 7px;
}

.atualizacao-titulo {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.atualizacao-descricao {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================
   MODAL
========================= */

.custom-modal {
  color: #fff;
  border-radius: 14px;
  background: #101017;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.custom-modal .modal-title {
  font-weight: 800;
  font-size: 18px;
}

.custom-input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  border-radius: 10px;
  padding: 11px 13px;
}

.custom-input:focus {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,122,24,.45);
  box-shadow: 0 0 0 3px rgba(255,122,24,.10);
}

.btn-close-white {
  filter: invert(1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border: none;
  color: #111;
  font-weight: 800;
}

.btn-primary:hover {
  color: #111;
}

.btn-outline-light {
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1000px) {
  .perfil-grid {
    grid-template-columns: 1fr;
  }

  .plano-bloco {
    padding-left: 0;
    border-left: none;
  }

  .ranking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .perfil-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .perfil-acoes {
    width: 100%;
  }

  .perfil-btn {
    flex: 1;
    justify-content: center;
  }

  .resumo-linha {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .resumo-linha div:nth-child(2n)::after {
    display: none;
  }

  .section-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .plano-topo {
    flex-direction: column;
  }

  .plano-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .perfil-nav,
  .perfil-container {
    width: min(100% - 24px, 1100px);
  }

  .perfil-nav {
    margin-top: 18px;
  }

  .nav-logo span {
    display: none;
  }

  .nav-voltar {
    padding: 8px 12px;
    font-size: 12px;
  }

  .perfil-container {
    padding-top: 42px;
  }

  .perfil-user {
    width: 100%;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .nome-editar {
    justify-content: center;
  }

  .perfil-detalhes {
    justify-content: center;
  }

  .avatar-wrapper,
  .avatar {
    width: 88px;
    height: 88px;
  }

  .avatar {
    font-size: 32px;
  }

  .editar-foto {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .perfil-acoes {
    flex-direction: column;
  }

  .resumo-linha {
    grid-template-columns: 1fr;
  }

  .resumo-linha div {
    padding: 0;
  }

  .resumo-linha div::after {
    display: none;
  }

  .resumo-linha div:not(:last-child) {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .plano-total {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .plano-actions {
    flex-direction: column;
  }

  .plano-btn {
    justify-content: center;
    width: 100%;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading p {
    margin-left: 0;
  }

  .atualizacao-item {
    grid-template-columns: 28px 1fr;
  }

  .timeline-dot {
    width: 28px;
    height: 28px;
  }

  .atualizacoes-container::before {
    left: 13px;
  }
}

/* =========================================================
   EXTRAS PERFIL: ÍCONES + ANIMAÇÕES
   Cole este arquivo substituindo o Css/perfil.css atual.
========================================================= */

/* ÍCONES NO RESUMO SEM PRECISAR ALTERAR O HTML */
.resumo-linha div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.resumo-linha div::before {
  width: 42px;
  height: 42px;
  min-width: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  font-size: 20px;
  line-height: 1;

  transition: transform .22s ease, background .22s ease;
}

.resumo-linha div:nth-child(1)::before {
  content: "✦";
  color: #ffd43b;
  background: rgba(255, 212, 59, .12);
}

.resumo-linha div:nth-child(2)::before {
  content: "⚡";
  color: #b197fc;
  background: rgba(177, 151, 252, .12);
}

.resumo-linha div:nth-child(3)::before {
  content: "✓";
  color: #74c0fc;
  background: rgba(116, 192, 252, .12);
}

.resumo-linha div:nth-child(4)::before {
  content: "◎";
  color: #4ade80;
  background: rgba(74, 222, 128, .12);
}

.resumo-linha div:nth-child(5)::before {
  content: "🔥";
  color: #ff8787;
  background: rgba(255, 135, 135, .12);
}

.resumo-linha div:hover::before {
  transform: translateY(-2px) scale(1.04);
}

/* ANIMAÇÕES SUAVES */
@keyframes perfilFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes avatarPulse {
  0%, 100% {
    box-shadow: 0 0 0 7px rgba(255,122,24,.08);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(255,122,24,.15);
  }
}

@keyframes barraMovimento {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 200%;
  }
}

.perfil-header,
.resumo-linha,
.progresso-simples,
.perfil-grid,
.ranking,
.atualizacoes {
  opacity: 0;
  animation: perfilFadeUp .55s ease forwards;
}

.perfil-header {
  animation-delay: .04s;
}

.resumo-linha {
  animation-delay: .11s;
}

.progresso-simples {
  animation-delay: .18s;
}

.perfil-grid {
  animation-delay: .25s;
}

.ranking {
  animation-delay: .32s;
}

.atualizacoes {
  animation-delay: .39s;
}

.avatar {
  animation: avatarPulse 3s ease-in-out infinite;
}

.progress-bar {
  background: linear-gradient(
    90deg,
    var(--orange),
    var(--orange2),
    #ffd43b,
    var(--orange)
  );
  background-size: 200%;
  animation: barraMovimento 3s linear infinite;
}

.acao-item,
.rank-card,
.atualizacao-content,
.plano-btn,
.perfil-btn {
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.acao-item:hover,
.rank-card:hover,
.atualizacao-content:hover {
  transform: translateY(-3px);
}

.acao-item i {
  transition: transform .22s ease;
}

.acao-item:hover i {
  transform: scale(1.06);
}

/* AJUSTE MOBILE DOS ÍCONES DO RESUMO */
@media (max-width: 620px) {
  .resumo-linha div {
    gap: 12px;
  }

  .resumo-linha div::before {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 18px;
  }
}

/* REDUZ ANIMAÇÕES PARA QUEM PREFERE MENOS MOVIMENTO */
@media (prefers-reduced-motion: reduce) {
  .perfil-header,
  .resumo-linha,
  .progresso-simples,
  .perfil-grid,
  .ranking,
  .atualizacoes,
  .avatar,
  .progress-bar {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* =========================
   CONQUISTAS
========================= */

.conquistas-section {
  margin-top: 28px;
  padding: 22px;

  border-radius: 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}

.conquistas-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;

  margin-bottom: 18px;
}

.conquistas-header span {
  display: block;
  color: #ff7a18;

  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .7px;

  margin-bottom: 6px;
}

.conquistas-header h2 {
  margin: 0;

  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.conquistas-header p {
  margin: 6px 0 0;

  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.conquistas-contador {
  flex-shrink: 0;

  padding: 9px 12px;
  border-radius: 999px;

  color: #ffbd7a;
  background: rgba(255,122,24,.08);
  border: 1px solid rgba(255,122,24,.20);

  font-size: 12px;
  font-weight: 900;
}

.conquistas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.conquista-card {
  display: flex;
  align-items: center;
  gap: 13px;

  min-height: 88px;
  padding: 15px;

  border-radius: 18px;
  transition: .25s ease;
}

.conquista-icon {
  width: 46px;
  height: 46px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;
}

.conquista-icon i {
  font-size: 20px;
}

.conquista-info strong {
  display: block;

  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.conquista-info p {
  margin: 4px 0 0;

  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.45;
}

.conquista-status {
  margin-left: auto;

  width: 30px;
  height: 30px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
}

.conquista-status i {
  font-size: 14px;
}

/* BLOQUEADA */

.conquista-card.bloqueada {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  opacity: .68;
}

.conquista-card.bloqueada .conquista-icon {
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.07);
}

.conquista-card.bloqueada .conquista-status {
  color: rgba(255,255,255,.40);
  background: rgba(255,255,255,.06);
}

/* DESBLOQUEADA */

.conquista-card.desbloqueada {
  background: rgba(255,122,24,.075);
  border: 1px solid rgba(255,122,24,.25);
  opacity: 1;
}

.conquista-card.desbloqueada .conquista-icon {
  color: #111;
  background: linear-gradient(135deg, #ff7a18, #ffb020);
  box-shadow: 0 0 24px rgba(255,122,24,.25);
}

.conquista-card.desbloqueada .conquista-status {
  color: #111;
  background: #ffb020;
}

.conquista-card.desbloqueada:hover {
  transform: translateY(-2px);
  border-color: rgba(255,122,24,.42);
}