
.main{
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
}

.container-campo-jogo{
  max-width: 720px !important;
  border: 1px solid black;
  border-radius: 0.5rem;
  overflow: hidden;
  background-image: url('/assets/img/background.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  --bs-gutter-x: 0 !important;
}


p,button{
  font-size: 0.7rem !important;
}

p{
  margin-top: 1rem !important;
  font-weight: 550 !important;
}


.table-item{
  line-height: 0.8rem !important;
  font-size: 0.8rem !important;
  color: black;
}

.text-tutorial{
  font-size: 0.8rem !important;
  color: black;
  margin: 0 !important;
  padding: 0 !important;
}

@media(max-width: 404px){
  .table-item{
    line-height: 0.5rem !important;
  }  
}

.card-player {
  background-color: #e0ae08;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  height: auto;
  width:25%;
  height: auto;
  max-height: 200px;
  max-width: 120px;
  text-align: center;
  transition: border 0.3s, transform 0.3s;
  cursor: pointer;
}


.card-text{
  font-size: 0.6rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

.card-text-tabuleiro{
  font-size: 0.8rem !important;
  margin: 0 !important;
  padding: 0 !important;
}


.campo-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.6rem !important;
}


.btn{
  background-color: #e0ae08;
  border: 2px solid black;
  text-align: center;
  transition: border 0.3s, transform 0.3s;
  cursor: pointer;
  width: 100% !important;
  padding: 0.4rem !important;
}

  /* Botão Marrom Claro */
  .btn-marrom {
    background-color: #6f4e37;
    color: white;
    border: none;
  }
  
  .btn-marrom:hover {
    background-color: #8b5c3e;
  }
  
  /* Botão Marrom Escuro (menor) */
  .btn-marrom-escuro {
    background-color: #3e2723;
    color: white;
    border: none;
  }
  
  .btn-marrom-escuro:hover {
    background-color: #5d4037;
  }




.card{
  --bs-card-spacer-y: 0 !important;
  --bs-card-spacer-x: 0 !important;
}

.tabuleiro{
  height: 100% !important;
  width: 100% !important;
  max-width: 800px !important;
  max-height: 400px !important;
}

.btn-card{
  font-size: 0.8rem !important;
  margin: 0 !important;
  padding: 0.225rem !important;
  font-weight: 600 !important;
  text-align: center !important;
  min-width: 50px !important;
}


.card-tabuleiro{
  background-color: #d6c68f;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  max-width: 250px !important;
  text-align: center;
}


.card-img-top{
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 2px solid black;
  border-radius: 0.5rem;
}



.txtBox{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem 2rem;
  background-color: #4b2e1a;
  color: #d8b28e;
  font-size: 2.2rem;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  border: 2px solid #8b5a2b;
  font-family: 'Georgia', serif;
  z-index: 2;
  text-align: center;
}



.barra{
  margin-bottom: 0.4rem !important;
}


.enemy-info-tables, .player-info-tables{
  max-width: 480px;
  max-height: 140px;
}

.icone-seta-container{
  width: 40px;
  height: 40px;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  top: 0;
  left: 0;
  position: absolute;
}

.btn-icone {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.btn-icone i {
  font-size: 2rem;
  color: white; /* Ou defina uma cor ex: color: white; */
  transition: transform 0.2s ease;
}

.btn-icone i:hover {
  transform: scale(1.1); /* Efeito leve ao passar o mouse */
}


@keyframes brilho-contorno{
  0% {
    transform: scale(1);
    color: black;
  }
  50% {
    transform: scale(1.2);
    color: #0bca44;
  }
  100% {
    transform: scale(1);
    color: black;
  }
}

.brilho-animado{
  animation: brilho-contorno 1s linear;
}

@keyframes dark-contorno{
  0% {
    transform: scale(1);
    color: black;
  }
  50% {
    transform: scale(1.2);
    color: rgba(209, 24, 24, 0.8);
  }
  100% {
    transform: scale(1);
    color: black;
  }
}

.dark-animado{
  animation: dark-contorno 1s linear;
}

@keyframes dark-contorno-recurso{
  0% {
    transform: scale(1);
    color: black;
  }
  50% {
    transform: scale(1.1);
    color: rgba(221, 52, 52, 0.8);
  }
  100% {
    transform: scale(1);
    color: black;
  }
}


.animar-carta-jogada-primeira{
  animation: el-grow 0.5s linear;
}


@keyframes el-grow{
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}


.dark-animado-recurso{
  animation: dark-contorno-recurso 1s linear
}

.naoclicavel{
  pointer-events: none;
}


.invisivel{
  display: none;
}


.hand{
  max-width: 340px !important;
}


    .titulo-tutorial{
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
  }
  
  /* Botão Marrom Claro */
  .btn-marrom {
    background-color: #6f4e37;
    color: white;
    border: none;
  }
  
  .btn-marrom:hover {
    background-color: #8b5c3e;
  }
  
  /* Botão Marrom Escuro (menor) */
  .btn-marrom-escuro {
    background-color: #3e2723;
    color: white;
    border: none;
  }
  
  .btn-marrom-escuro:hover {
    background-color: #5d4037;
  }


  @keyframes brilho-destaque{
    0% {
      box-shadow: 0 0 5px #fff, 0 0 4px rgb(102, 199, 134), 0 0 6px rgb(102, 199, 134), 0 0 8px rgb(102, 199, 134);
    }
    50% {
      box-shadow: 0 0 8px #fff, 0 0 10px rgb(102, 199, 134), 0 0 12px rgb(102, 199, 134), 0 0 14px rgb(102, 199, 134);
    }
    100% {
      box-shadow: 0 0 5px #fff, 0 0 10px rgb(102, 199, 134), 0 0 15px rgb(102, 199, 134), 0 0 20px rgb(102, 199, 134);
    }
  }


  .borda-destaque{
    animation: brilho-destaque 1.5s infinite alternate;
  }