/*       custom uploads     */
.wc-custom-upload-instructions-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
	margin-bottom: -5px;
}

.wc-custom-upload-instructions-line1{
	 font-size: 17px;
  color: #333;
}
.wc-custom-upload-instructions-line2 {
 	 font-size: 13px;
}
.wc-custom-upload-instructions-line2 {
  margin-top: -20px;      /* pequeno espaçamento entre linhas */
}
/* Envolvente do botão */
.wc-custom-upload-wrapper {
  display: flex;
  flex-direction: column; 
  align-items: flex-start; 
  margin-bottom: 1.5em; 
	  position: relative;
  max-width: 400px;        /* define o máximo que queres */
  width: 100%;             /* adapta ao elemento-pai */
  overflow: hidden; 
}

/* Botão estilizado */
.wc-custom-upload-button {
	position: relative;
	display: inline-block;
  color: #0274BE;
	border: 1px solid #0274BE;
  padding: 3px 15px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  z-index: 4;
	transition: background 0.2s ease, color 0.2s ease;
}
.wc-custom-upload-button:hover{
	 background: #0274BE;
  color: #fff;
}
/* Input de ficheiro invisível */
.wc-custom-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
	cursor: pointer !important;
  z-index: 2;    /* acima do botão, para disparar o click */
}

/* Label de nome do ficheiro */
.wc-custom-selected-filename {
  margin-top: 6px;
  font-size: 14px;
  color: #444;
}

/* Overlay para bloqueio de não-logados */
.wc-custom-upload-overlay {
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  z-index:10;
  cursor:pointer;
}

/* Popup de login */
.wc-custom-login-popup {
  display:none;
  position:fixed;
  top:50%; left:50%;
  transform:translate(-50%, -50%);
  background:white;
  padding:30px;
  border-radius:10px;
  box-shadow:0 0 15px rgba(0,0,0,0.3);
  z-index:10000;
}

.wc-custom-login-link {
  display:inline-block;
  margin-top:10px;
  padding:10px 20px;
  background:#0073aa;
  color:#fff;
  text-decoration:none;
  border-radius:5px;
}

/* Fundo escuro */
.wc-custom-login-bg {
  display:none;
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.5);
  z-index:9999;
}

.variation-Ficheiropersonalizado {
  font-size: 0.85em;
  color: #555;
  margin-top: 2px;
  margin-bottom: 2px;
  display: block;
  line-height: 1.2;
  word-break: break-word;
  opacity: 0.85;
}

/*     custom uploads      */