.item-card {
  height: 600px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.img-card {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  z-index: 1;
  object-fit: cover;
}

.nivel {
  width: 100px;
  height: 4px;
  background-color: var(--cor-principal);
}

.ativo {
  background-color: var(--cor-secundaria) !important;
}

.opcoes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.item-opcoes {
  height: 280px;
  max-height: 300px;
}

.item-opcoes:hover {
  cursor: pointer;
}

.item-opcoes span {
  background-color: var(--cor-secundaria);
}

.input-card {
  border-bottom: 1px solid var(--cor-principal);
  height: 40px;
}

.input-card::placeholder {
  text-align: center;
}

.footer {
  background-color: #b8b8b8;
}

.item-footer {
  width: 280px;
}

.btn-redes {
  width: 40px;
  height: 40px;
  border: 1px solid #7e7e7e;
  border-radius: 50%;
}

.fa-brands {
  color: #414141;
}

.divisao {
  height: 1px;
  width: 90%;
  background-color: #414141;
}

.bordas-m {
  border-radius: 20px;
}

.btn-close:active,
.btn-close:focus {
  box-shadow: none;
  outline: none;
  border: none;
}

@media (max-width: 840px) {
  .container {
    max-width: 100% !important;
    padding: 0px !important;
    
  }

  .conteudo-modal picture{
    display:none !important;
  }
  .itens {
    flex-direction: column;
    gap: 18px;
  }

  .itens:nth-child(3) {
    flex-direction: column-reverse;
    gap: 18px;
  }

  .modal-body .conteudo-modal {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .card-infos {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .img-footer {
    width: 60px;
  }

  .conteudo .position-absolute {
    top: 30px;
    left: 10px;
    padding: 15px !important;
  }

  .conteudo .position-absolute h1 {
    width: 100% !important;
    font-size: 25px !important;
  }

  .item-opcoes span {
    font-size: 14px;
  }

  .item-form {
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .btn-principal {
    margin-bottom: 5px;
  }

  .modal-body {
    padding: 0px !important;
  }
}
