@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap");

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
}

/* Remove estilos padrão de listas */
ul,
ol {
    list-style: none;
}

/* Remove decoração de links */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

/* Remove estilos padrão de inputs e botões */
input,
button {
    border: none;
    outline: none;
    font: inherit;
}

/* Garante que imagens não ultrapassem seu contêiner */
img {
    max-width: 100%;
    height: auto;
}

#backToTop {
    position: fixed;
    bottom: 150px;
    right: 20px;
    display: none; /* O botão ficará oculto até o usuário rolar a página */
    z-index: 1000;
}
