.drop-area {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
}

.file-input {
  display: none;
}

.file-preview {
  margin-top: 20px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.2);
}

.file-preview:hover {
    box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.2);
    border-radius: 8px;
}

.file-preview i{
    font-size: 30px;
    color: red;
}

/* Estilos para a barra de progresso */
.progress-bar {
width: 100%;
height: 10px;
background-color: #f1f1f1;
border-radius: 4px;
margin-top: 10px;
overflow: hidden;
}

.progress {
width: 0%;
height: 100%;
background-color: #4CAF50;
transition: width 1s linear;
}

#remove-doc span:hover {
    background-color: #dddddd;
    border-radius: 50%;
    cursor: pointer;
    color: #52170b;
    font-size: 25px;
    font-weight: bold;
}

.dragover {
    border: 2px dashed #4CAF50;
    background: #f1f1f1;
    height: 100px;

}

.dragover .text-hidden{
    display: none;
}

.dragover .hidden{
  display: block;
}
.hidden{
  display: none;
}

/* Efeito Pulse */

.pulse {
  animation: pulse 0.7s infinite;
  margin: 0 auto;
  display: table;
  margin-top: 50px;
  animation-direction: alternate;
  -webkit-animation-name: pulse;
  animation-name: pulse;
  height: 50px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -webkit-filter: brightness(100%);
  }
  100% {
    -webkit-transform: scale(1.1);
    -webkit-filter: brightness(150%);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    filter: brightness(100%);
  }
  100% {
    transform: scale(1.1);
    filter: brightness(120%);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    filter: brightness(100%);
    box-shadow: 0 0 0 0 white; /* Sem desfoque no início */
  }
  100% {
    transform: scale(1.05);
    filter: brightness(110%);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1); /* Desfoque com transparência no final */
  }
}

