/* Estilos da página index.html */
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Geist+Mono:wght@100..900&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Parisienne&family=Playwrite+HR+Lijeva:wght@100..400&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

/* Ajuste da tela para melhor visualização */
html, body {
    touch-action: manipulation;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

/* Permitir zoom */
meta[name="viewport"] {
    content: "width=device-width, initial-scale=1.0, user-scalable=yes";
}

/* Ajuste do toque para permitir arrastar elementos com precisão */
.draggable {
    touch-action: none; /* Previne interferências do navegador */
    position: absolute;
    cursor: grab;
}

.draggable:active {
    cursor: grabbing;
}