/* PROTEÇÃO DA IMAGEM */
    .imagem-protegida {
      user-select: none;
      -webkit-user-select: none;
      pointer-events: none;
      -webkit-user-drag: none;
    }

    .container-imagem {
      position: relative;
    }

    .container-imagem::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    /* BOTÃO */
    .btn-imprimir {
      background: #FF6B35;
      color: white;
      padding: 15px 15px;
      border: none;
      border-radius: 8px;
      font-size: 18px;
      cursor: pointer;
    }

    /* IFRAME OCULTO */
    #iframe-impressao {
      position: fixed;
      top: -9999px;
      width: 0;
      height: 0;
    }

	.print-btn {
        text-transform: capitalize;
        font-size: 14px;
        padding: 0px 0px;
        border-radius: 10px;
        letter-spacing: 0.5;
    }
}