html,
body,
div,
span,
applet,
object,
iframe,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    font-family: var(--font-primary);
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary);
	font-weight: normal;
  }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-primary);
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

@font-face {
	font-family: 'Maragsa';
	src: url('./Maragsa-Display.woff2') format('woff2'),
		url('./Maragsa-Display.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* Definição da fonte Stringer */
@font-face {
	font-family: 'Stringer';
	src: url('./Stringer.woff2') format('woff2'),
		url('./Stringer.woff') format('woff');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

/* Variáveis CSS para fontes padronizadas */
:root {
    --font-primary: 'Stringer', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-fallback: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Scroll suave global */
html {
    scroll-behavior: smooth;
}

/* Melhorias para dispositivos pequenos */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* Prevenção de zoom horizontal em dispositivos móveis */
@media (max-width: 480px) {
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
}

/* Melhor legibilidade em telas pequenas */
@media (max-width: 360px) {
    * {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
}

/* Otimizações para telas muito pequenas */
@media (max-width: 320px) {
    body {
        font-size: 14px;
        line-height: 1.4;
    }
}