@font-face {
    font-family: 'Aller';
    src: url('/wordpress/wp-content/uploads/2024/09/aller.bold.ttf');
    font-weight: normal;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.wrapper {
    transform: scale(0.67);
    transform-origin: top left;
    width: 150%;
    height: auto;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

/* Estilos gerais para a classe Desktop */
.Desktop {
    width: 100%;
    max-width: 1920px;
    height: auto;
    position: relative;
    background: white;
    padding: 20px;
}

/* Estilos para telas pequenas (até 768px) */
@media (max-width: 768px) {
    .Desktop {
        padding: 10px;
    }
}

/* Estilos para tablets (de 769px a 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .Desktop {
        padding: 15px;
    }
}

/* Estilos para telas grandes (acima de 1024px) */
@media (min-width: 1025px) {
    .Desktop {
        padding: 20px;
    }
}

