.img-area {
    width: 200px; /* Defina a largura desejada */
    height: 200px; /* Altura igual à largura para formar um quadrado */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px dashed #ccc;
    cursor: pointer;
    position: relative; /* Necessário se usar ::before ou img com position: absolute */
    background-color: var(--grey); /* Opcional, para visualização */
    transition: background-color .3s ease; /* Suaviza a alteração de cor ao passar o mouse */
}

.img-area .icon {
    font-size: 50px; /* Ajuste o tamanho do ícone conforme necessário */
}

.img-area h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
}

.img-area p {
    color: #999;
}

.img-area p span {
    font-weight: 600;
}

.img-area img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 100;
}

.img-area::before {
    content: attr(data-img);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-weight: 500;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: all .3s ease;
    z-index: 200;
}

.img-area.active:hover::before {
    opacity: 1;
}

.select-image {
    display: block;
    width: 50%;
    padding: 16px 0;
    border-radius: 15px;
    background: var(--blue);
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    text-align: center;
}

.select-image:hover {
    background: var(--dark-blue);
}

:root {
    --blue: #0071FF;
    --light-blue: #B6DBF6;
    --dark-blue: #005DD1;
    --grey: #f2f2f2;
}
.file-input {
    margin-bottom: 20px;
  }

  .file-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  }

  .file-list li {
    width: 48%;
    margin: 1%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    align-items: center;
  }

  .file-list img {
    max-width: 100px;
    margin-right: 10px;
  }

  .carrossel-container,
  .obj3d-container {
    margin-top: 20px;
  }

  .input-field {
    margin-bottom: 20px;
  }
  .img-area {
    cursor: pointer;
    /* Adicione mais estilos conforme necessário */
}

.img-area:hover {
    background-color: #f0f0f0; /* Alterar a cor de fundo ao passar o mouse */
}
