/* ====================
   ESTILO GERAL DO SITE - SUNFLOWERLAND
======================= */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #1e1e1e; /* preto claro estilo dark mode */
  padding: 30px;
  color: #e0e0e0; /* texto claro */
  overflow-x: hidden;
}

h1 {
  font-size: 40px;
  color: #ffa726;
  margin-bottom: 40px;
  text-align: center;
  text-shadow: 1px 1px 2px #000000;
}

h2 {
  font-size: 20px;
  color: #ffa726;
  margin-bottom: 20px;
  text-align: left;
  text-shadow: 1px 1px 2px #000000;
}

h3 {
  font-size: 15px;
  color: #ffa726;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px #000000;
}

h4 {
  font-size: 15px;
  color: #c2bfbf;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px #000000;
}

h5 {
  font-size: 18px;
  color: #c2bfbf;
  margin-top: 20px;
  text-shadow: 1px 1px 2px #000000;
}

/* ====================
   ÁREA DE RESULTADOS
======================= */
#saida-das-crops {
  padding: 20px;
  border-radius: 14px;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(17, 16, 16, 0.4);
  font-size: 1px;
  font-weight: bold;
  background-color: #2a2a2a;
  color: #ffffff;
}

#saida-das-crops-cm {
  padding: 20px;
  border-radius: 14px;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(17, 16, 16, 0.4);
  font-size: 1px;
  font-weight: bold;
  background-color: #2a2a2a;
  color: #ffffff;
}

#saida-das-frutas {
  padding: 20px;
  border-radius: 14px;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(17, 16, 16, 0.4);
  font-size: 1px;
  font-weight: bold;
  background-color: #2a2a2a;
  color: #ffffff;
}

#saida-da-greenhouse {
  padding: 20px;
  border-radius: 14px;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(17, 16, 16, 0.4);
  font-size: 1px;
  font-weight: bold;
  background-color: #2a2a2a;
  color: #ffffff;
}

#saida-dos-minerios {
  padding: 20px;
  border-radius: 14px;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(17, 16, 16, 0.4);
  font-size: 1px;
  font-weight: bold;
  background-color: #2a2a2a;
  color: #ffffff;
}

#saida-das-crop-to-coins {
  padding: 20px;
  border-radius: 14px;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(17, 16, 16, 0.4);
  font-size: 1px;
  font-weight: bold;
  background-color: #2a2a2a;
  color: #ffffff;
}

#saida-das-galinhas {
  padding: 20px;
  border-radius: 14px;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(17, 16, 16, 0.4);
  font-size: 1px;
  font-weight: bold;
  background-color: #2a2a2a;
  color: #ffffff;
}

#saida-das-vacas {
  padding: 20px;
  border-radius: 14px;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(17, 16, 16, 0.4);
  font-size: 1px;
  font-weight: bold;
  background-color: #2a2a2a;
  color: #ffffff;
}

#saida-das-ovelhas {
  padding: 20px;
  border-radius: 14px;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(17, 16, 16, 0.4);
  font-size: 1px;
  font-weight: bold;
  background-color: #2a2a2a;
  color: #ffffff;
}

/* ====================
   TABELA DE CROPS
======================= */
.tabela-crops {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 30px;
  font-size: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #333;
}

.tabela-crops th, .tabela-crops td {
  padding: 5px 1px;
  text-align: center;
}

.tabela-crops th {
  background-color: #333333;
  color: #ffffff;
}

.tabela-crops tr:nth-child(even) {
  background-color: #2c2c2c;
}

.tabela-crops tr:nth-child(odd) {
  background-color: #242424;
}

.crop-img {
  width: 15px;
  height: 15px;
  vertical-align: middle;
  margin-right: 6px;
  object-fit: contain;
  border-radius: 6px;
}

td input.quantidade-input {
  display: block;
  margin: 0 auto;
  width: 125px;        /* 🔹 largura */
  height: 28px;       /* 🔹 altura */
  padding: 2px 4px;   /* 🔹 espaço interno */
  font-size: 13px;    /* 🔹 texto menor */
  border-radius: 6px;
  border: 1px solid #555;
  background-color: #1e1e1e;
  color: #ffffff;
  text-align: center;
}


td input.quantidade-input-cm {
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid #555;
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 10px;
  text-align: center;
}

/* ====================
   Selects Idioma
======================= */
.select-idioma {
  display: flex;
  flex-direction: row; /* <-- muda para linha */
  align-items: center; /* alinha no meio */
  gap: 8px; /* espaço entre o texto e o select */
}

.select-idioma label {
  font-weight: bold;
  margin: 0;        /* <-- remove a margem inferior */
  color: #ffa726;
  white-space: nowrap; /* evita quebrar linha */
}

/* ====================
   Inserir Farm label
======================= */
.input-numero-da-farm {
  font-weight: bold;
  margin: 0;        /* <-- remove a margem inferior */
  color: #ffa726;
  white-space: nowrap; /* evita quebrar linha */
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ====================
   Inserir Resultado Combo label
======================= */
.visualizar-combo-completo {
  font-weight: bold;
  margin: 0;        /* <-- remove a margem inferior */
  color: #ffa726;
  white-space: nowrap; /* evita quebrar linha */
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ====================
   Selects Group
======================= */
.select-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.select-group label {
  font-weight: bold;
  margin-bottom: 1px;
  color: #ffa726;
}

select {
  padding: 6px 12px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #ffd54f;
  background-color: #2c2c2c;
  color: #f5f5f5;
  cursor: pointer;
  transition: all 0.2s;
}

/* ====================
   CONTAINER PRINCIPAL DAS TABS E CARD
======================= */
.items-row {
  display: flex; /* coloca tabs e card lado a lado */
  gap: 20px; /* espaço entre a tab e o card */
  align-items: flex-start; /* alinha topo das tabs com topo do card */
  justify-content: flex-start; /* alinha à esquerda */
}

/* ====================
   TAB CONTAINER
======================= */
.tab-container {
  flex: 1; /* ocupa o espaço restante */
  max-width: 1000px;
  box-sizing: border-box;
  overflow-x: auto;
}

/* ====================
   ESTILOS GERAIS PARA TABS E SUB-TABS
======================= */
.tab-content {
    display: none;
    padding: 15px;
    border-radius: 0 0 12px 12px;

    /* ✅ Borda dourada igual ao card */
    border: 3px solid #d0a25a;

    /* ✅ fundo e brilho do estilo SFL */
    background: linear-gradient(180deg, #2b241a 0%, #1c1812 100%);
    box-shadow:
        0 0 10px #0008,
        0 0 12px #d0a25a33 inset,
        0 6px 12px rgba(0,0,0,0.5);
}

.tab-btn.active {
    background: linear-gradient(180deg, #2b241a 0%, #1c1812 100%);
    border-color: #d0a25a;
    border-bottom: 3px solid #2b241a; /* para conectar com o conteúdo */
    color: #ffe2aa;
}


.tab-content.active {
  display: block;
}

/* ====================
   BOTÕES DAS ABAS PRINCIPAIS
======================= */
.tabs-buttons-container {
  display: flex;
  margin-bottom: -1px;
}

.tab-btn {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  background-color: #333333;
  color: #ffa726;
  border: 1px solid #444;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin-right: 2px;
}

.tab-btn:hover {
  background-color: #444444;
}

.tab-btn.active {
  background-color: #2a2a2a;
  color: #ffffff;
  border-color: #444;
  border-bottom: 1px solid #2a2a2a;
}

/* ====================
   BOTÕES DAS SUB-ABAS
======================= */
.sub-tabs-buttons-container {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
}

.sub-tab-btn {
  padding: 6px 12px;
  font-size: 14px;
  background-color: transparent;
  color: #e0e0e0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-right: 5px;
}

.sub-tab-btn:hover {
  background-color: #383838;
}

.sub-tab-btn.active {
  background-color: #ffa726;
  color: #1e1e1e;
  font-weight: bold;
}

/* ====================
   CONTEÚDO DAS SUB-ABAS
======================= */
.sub-tab-content {
  display: none;
  padding-top: 10px;
}

.sub-tab-content.active {
  display: block;
}

.texto-skill-desbloquear {
  flex-basis: 100%;
  white-space: normal;
  font-size: 13px;
  color: #ffa726;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px #000000;
  font-weight: bold;
}


/* ====================
   NFTS, SKILLS E CHECKBOXES
======================= */
.nft-container, .skill-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 3px;     /* distância vertical */
  column-gap: 10px; /* distância horizontal */
}


.nft-wrapper, .skill-wrapper {
  position: relative;
  text-align: center;
}

.nft-img, .skill-img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  border-radius: 12px;
  background-color: #2c2c2c;
  padding: 6px;
  border: 2px solid transparent;
  transition: transform 0.2s, border 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.nft-img:hover, .skill-img:hover {
  transform: scale(1.15) rotate(-3deg);
  border-color: #ffb74d;
  box-shadow: 0 4px 8px rgba(255, 183, 77, 0.5);
}

input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

input[type="checkbox"]:checked + .nft-img,
input[type="checkbox"]:checked + .skill-img {
  border: 2px solid #ffa726;
  background-color: #4a4035;
  box-shadow: 0 0 10px #ffb74d80;
  transform: scale(1.15);
}

/* Ícones */
.icon-btn {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
}

/* ============================
   ✅ CARD DE BUFFS AO LADO DAS TABS
=============================== */

#info-card {
    position: relative;          /* ✅ não é mais fixo */
    width: 260px;
    padding: 12px;
    margin-left: 10px;           /* ✅ separa da tab */
    margin-top: 40px; /* ajuste conforme necessário */
    background: linear-gradient(180deg, #2b241a 0%, #1c1812 100%);
    border: 3px solid #d0a25a;
    border-radius: 14px;
    display: none;
    color: #fff;
    text-align: center;
    flex-shrink: 0;               /* ✅ não encolhe */
    box-shadow:
        0 0 10px #0008,
        0 0 12px #d0a25a33 inset,
        0 6px 12px rgba(0,0,0,0.5);
    animation: fadeIn 0.25s ease-out;
}

/* Fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#info-card img.card-img {
    width: 30px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 5px auto 10px auto;
}

#info-card .card-titulo {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0 8px 0;
    color: #ffcf7a;
    text-align: center !important;
    text-shadow: 1px 1px 2px #000;
}

#info-card .card-descricao {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4em;
    padding: 0 12px 10px 12px;
    color: #e9ddc7;
    text-shadow: 1px 1px 1px #000;
}

/* ====================
   SELECTS E INPUTS
======================= */
.linha-selects {
  display: flex;
  justify-content: left;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.select-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.select-group label {
  font-weight: bold;
  margin-bottom: 1px;
  color: #ffa726;
}

select, input[type="number"] {
  padding: 6px 12px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #ffd54f;
  background-color: #2c2c2c;
  color: #f5f5f5;
  cursor: pointer;
  transition: all 0.2s;
}

select:focus, input[type="number"]:focus {
  border-color: #ffa726;
  outline: none;
  box-shadow: 0 0 6px #ffb74d80;
}

/* Botão fofinho */
button {
  padding: 8px 18px;
  background-color: #fa9600;
  color: white;
  font-size: 15px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  background-color: #ffa726;
  box-shadow: 0 4px 8px rgba(255, 183, 77, 0.4);
}

/* ====================
   SKILLS BLOQUEADAS
======================= */
input[type="checkbox"]:disabled + .skill-img,
input[type="checkbox"]:disabled + .nft-img {
  filter: brightness(40%); /* deixa mais escuro */
  opacity: 0.7;            /* leve transparência */
  cursor: not-allowed;     /* cursor proibido 🚫 */
  border: 2px solid #444;  /* borda discreta */
  box-shadow: none;
  transform: none !important;
}

input[type="checkbox"]:disabled + .skill-img:hover,
input[type="checkbox"]:disabled + .nft-img:hover {
  transform: none;
  border-color: #444;
  box-shadow: none;
}

.cards-totais-crops {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center; /* centraliza horizontalmente */
  align-items: center;     /* centraliza verticalmente */
}


.card-total-crops {
  background: #222;
  border: 1px solid #444;
  padding: 15px 20px;
  border-radius: 12px;
  min-width: 120px;
  text-align: center;
  color: #ffa726;
  box-shadow: 0 0 10px #0005;
}

.card-total-crops h3 {
  font-size: 14px;
  margin-bottom: 8px;
}

.card-total-crops p {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
}


/* CARDS DOS MINERAIS */
.cards-totais-minerais {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.card-total-mineral {
  background: #222;
  border: 1px solid #444;
  padding: 15px 20px;
  border-radius: 12px;

  height: 110px;        /* 🔥 altura fixa */
  min-width: 120px;     /* 🔥 largura mínima */
  width: auto;          /* 🔥 largura flexível */

  display: flex;             /* para centralizar conteúdo */
  flex-direction: column;
  justify-content: center;   /* centraliza verticalmente */
  align-items: center;       /* centraliza horizontalmente */

  text-align: center;
  color: #ffa726;
  box-shadow: 0 0 10px #0005;
}

.card-total-mineral h3 {
  font-size: 14px;
  margin-bottom: 8px;
}

.card-total-mineral p {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
}

/* CARDS DOS ANIMAIS */
.cards-totais-animais {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center; /* centraliza horizontalmente */
  align-items: center;     /* centraliza verticalmente */
}

.card-total-animal {
  background: #222;
  border: 1px solid #444;
  padding: 15px 20px;
  border-radius: 12px;
  min-width: 120px;
  text-align: center;
  color: #ffa726;
  box-shadow: 0 0 10px #0005;
}

.card-total-animal h3 {
  font-size: 14px;
  margin-bottom: 8px;
}

.card-total-animal p {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
}

.header {
  display: flex;
  flex-direction: column;   /* empilha verticalmente */
  align-items: center;      /* centraliza horizontalmente */
  gap: 2px;                 /* espaço mínimo entre título e idioma */
}

.header h1 {
  margin: 0;                /* remove margem padrão do h1 */
}

.loader {
  width: 22px;
  height: 22px;
  border: 3px solid #ffffff33;
  border-top: 3px solid #ffa726;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ====================
   TABELA DE MINERIOS
======================= */
.tabela-minerios {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 30px;
  font-size: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #333;
}

.tabela-minerios th, .tabela-minerios td {
  padding: 5px 1px;
  text-align: center;
}

.tabela-minerios th {
  background-color: #333333;
  color: #ffffff;
}

.tabela-minerios tr:nth-child(even) {
  background-color: #2c2c2c;
}

.tabela-minerios tr:nth-child(odd) {
  background-color: #242424;
}

/* ====================
   TABELA SECUNDÁRIA COM TAMANHO FIXO
======================= */
.tabela-minerios-secundaria {
  width: 600px;        /* 🔧 ajuste como quiser */
  height: 220px;       /* 🔧 ajuste como quiser */
  overflow-y: auto;    /* adiciona scroll interno */
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 30px;
  font-size: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #333;
}

.tabela-minerios-secundaria th,
.tabela-minerios-secundaria td {
  padding: 5px 1px;
  text-align: center;
}

.tabela-minerios-secundaria th {
  background-color: #333333;
  color: #ffffff;
}

.tabela-minerios-secundaria tr:nth-child(even) {
  background-color: #2c2c2c;
}

.tabela-minerios-secundaria tr:nth-child(odd) {
  background-color: #242424;
}


/* ====================
   IMPUT DOS ICONES DE PREENCHIMENTO DOS MINERIOS
======================= */
.input-icon {
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin-right: 6px;
  object-fit: contain;
  border-radius: 6px;
}


/* Afasta todos os títulos (labels) dos grupos de minerais para a direita,
   deixando espaço antes do texto sem mexer nos inputs */
#qtdDeArvores,
#qtdDePedras,
#qtdDeFerros,
#qtdDeOuros,
#qtdDeCrimstones,
#qtdDeOils {
  margin-left: 35px; 
  display: block;
}

/* ====================
   TABELA DE Animais
======================= */
.tabela-animais {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 30px;
  font-size: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #333;
}

.tabela-animais th, .tabela-animais td {
  padding: 5px 1px;
  text-align: center;
}

.tabela-animais th {
  background-color: #333333;
  color: #ffffff;
}

.tabela-animais tr:nth-child(even) {
  background-color: #2c2c2c;
}

.tabela-animais tr:nth-child(odd) {
  background-color: #242424;
}

/* ============================================================
   TABS SECUNDÁRIAS - CROPS / MINERIOS (ESTILO SUNFLOWERLAND)
   ============================================================ */

.tabs-secundarias-buttons {
    display: flex;
    margin-top: 30px;
    margin-bottom: -1px;
}

.tab2-btn {
    padding: 8px 18px;
    font-size: 15px;
    font-weight: bold;
    background-color: #333333;
    color: #ffa726;
    border: 1px solid #444;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin-right: 2px;
}

.tab2-btn:hover {
    background-color: #444444;
}

.tab2-btn.active {
    background: linear-gradient(180deg, #2b241a 0%, #1c1812 100%);
    color: #ffe2aa;
    border: 3px solid #d0a25a;
    border-bottom: 3px solid #2b241a; /* junta com o conteúdo igual as tabs principais */
}

.tab2-content {
    display: none;
    padding: 15px;
    border-radius: 0 0 12px 12px;
    border: 3px solid #d0a25a;
    background: linear-gradient(180deg, #2b241a 0%, #1c1812 100%);
    box-shadow:
        0 0 10px #0008,
        0 0 12px #d0a25a33 inset,
        0 6px 12px rgba(0,0,0,0.5);
}

.tab2-content.active {
    display: block;
}

/* ============================================
   SUBTABS — NOVO ESTILO (O CINZA QUE VOCÊ QUER)
=============================================== */

.subtabs-crops-buttons,
.subtabs-skills-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #333; /* igual ao estilo novo */
}

.subtab-btn,
.skill-tab-btn {
  padding: 6px 12px;
  font-size: 14px;
  background-color: transparent;
  color: #e0e0e0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-right: 5px;
}

.subtab-btn:hover,
.skill-tab-btn:hover {
  background-color: #383838;
}

.subtab-btn.active,
.skill-tab-btn.active {
  background-color: #ffa726;
  color: #1e1e1e;
  font-weight: bold;
}

/* ============================================
   CONTEÚDO DAS SUBTABS (mantém igual)
=============================================== */

.subtab-content {
  display: none;
  animation: fadeIn 0.25s ease-in-out;
}

.subtab-content.active {
  display: block;
}

/* animação */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e1e1e;
  color: #b6afaf;
  padding: 8px 15px;
  border-bottom: 2px solid #333;
  flex-wrap: wrap;
}

/* ESQUERDA */
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-left h1.title-bar {
  font-size: 29px;
  margin: 0;
}

.header-left span {
  font-size: 14px;
  color: #b6afaf;
}

.select-idioma select {
  padding: 3px 6px;
  border-radius: 5px;
  border: 1px solid #ffa726;
  background-color: #2c2c2c;
  color: #f5f5f5;
  cursor: pointer;
  font-weight: bold;
}

/* CENTRO */
.header-center {
  font-size: 14px;
  text-align: center;
  flex: 1;
  min-width: 250px;
  margin: 5px 10px;
  font-weight: bold; /* ✅ Negrito das informações */
}

.header-center a {
  color: #ffa726;
  text-decoration: none;
  font-weight: bold; /* ✅ Negrito dos links */
}

.header-center a:hover {
  text-decoration: underline;
}

/* DIREITA */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px; /* um pouco mais de espaço entre os ícones */
}

.icon-btn {
  color: #b6afaf; /* cor padrão branca para o ícone */
}

.icon-btn svg {
  width: 26px; /* ✅ aumentei um pouco */
  height: 26px; /* ✅ aumentei um pouco */
  fill: currentColor;
  transition: 0.2s;
}

.icon-btn:hover svg {
  transform: scale(1.3); /* aumenta o efeito no hover */
}

.icon-btn.yt:hover {
  color: #ff4d4d;
}

.icon-btn.dc:hover {
  color: #7289da;
}

/* RESPONSIVO */
@media (max-width: 800px) {
  .header-bar {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .header-center {
    margin: 0;
  }
}

/* Botão de copiar wallet */
.copy-btn {
  background: none;      /* sem fundo */
  border: none;          /* sem borda */
  cursor: pointer;
  color: inherit;        /* herda a cor da wallet */
  margin-left: 5px;
  vertical-align: middle;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.copy-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.copy-tooltip {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  white-space: nowrap;
  transform: translateY(-30px); /* acima do botão */
}

.copy-tooltip.show {
  opacity: 1;
}

/* =========================
para tabela CROP TO COINS
no momento só para ela 
============================*/

/* Colunas ordenáveis */
.th-ordenavel {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.th-ordenavel:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Seta de ordenação crescente (▲) */
.th-ordenavel.asc::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 7px solid #27ae60;
    vertical-align: middle;
}

/* Seta de ordenação decrescente (▼) */
.th-ordenavel.desc::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #e74c3c;
    vertical-align: middle;
}

/* ================= ACCORDION RESULTADO DO COMBO ================= */

.accordion-combo {
  margin: 25px 0;
  border-radius: 14px;
  overflow: hidden;

  /* mesmo fundo das tabs */
  background: linear-gradient(180deg, #2b241a 0%, #1c1812 100%);
  border: 3px solid #d0a25a;

  box-shadow:
    0 0 10px #0008,
    0 0 12px #d0a25a33 inset,
    0 6px 12px rgba(0,0,0,0.5);
}

/* HEADER = cara de TAB */
.accordion-header-combo {
  width: 100%;
  padding: 12px 18px;

  background: linear-gradient(180deg, #2b241a 0%, #1c1812 100%);
  color: #ffe2aa;

  font-size: 16px;
  font-weight: bold;

  border: none;
  border-bottom: 3px solid #d0a25a;

  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;

  text-shadow: 1px 1px 2px #000;
}

.accordion-header-combo:hover {
  filter: brightness(1.1);
}

/* seta */
.accordion-icon {
  transition: transform 0.25s ease;
  font-size: 14px;
}

.accordion-header-combo.active .accordion-icon {
  transform: rotate(180deg);
}

/* CONTEÚDO */
.accordion-content-combo {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;

  background: #1c1812;
}

.accordion-content-combo.open {
  max-height: 5000px;
  padding: 20px;
}


/* ================= Ajuste de carinhos e comidas ================= */

.checkbox-carinho-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.checkbox-carinho {
  position: relative;
  cursor: pointer;
}

/* checkbox invisível (igual NFT / Skill) */
.checkbox-carinho input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* visual do checkbox */
.checkbox-visual {
  width: 25px;
  height: 25px;
  border-radius: 12px;
  background-color: #2c2c2c;
  border: 2px solid transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;

  transition: transform 0.2s, border 0.2s, box-shadow 0.2s;
}

/* hover igual NFT */
.checkbox-visual:hover {
  transform: scale(1.15) rotate(-3deg);
  border-color: #ffb74d;
  box-shadow: 0 4px 8px rgba(255, 183, 77, 0.5);
}

/* checked = MESMO STYLE DO SEU SISTEMA */
.checkbox-carinho input[type="checkbox"]:checked + .checkbox-visual {
  border: 2px solid #ffa726;
  background-color: #4a4035;
  box-shadow: 0 0 10px #ffb74d80;
  transform: scale(1.15);
}

.carinhos-possuido-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.carinhos-possuido-titulo {
  font-weight: bold;
  margin-bottom: 4px;
  color: #ffa726; /* mesmo tom dos outros labels */
  white-space: nowrap;
}

.checkbox-carinho-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.checkbox-visual img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  pointer-events: none; /* evita bug ao clicar */
}
