/* ==========================================================================
   RESET.CSS — Reset nativo e base tipográfica global
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--portal-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a                               { text-decoration: none; color: inherit; }
ul, ol                          { list-style: none; }
img, video                      { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; color: inherit; background: transparent; border: none; }
button                          { cursor: pointer; }

/* Tipografia base */
h1, h2, h3, h4, h5, h6,
.font-display { font-family: var(--font-display); }
.font-sans    { font-family: var(--font-main); }
.font-mono    { font-family: var(--font-mono); }

/* Utilitários de cor */
.text-portal-gold { color: var(--portal-gold); }

/* Container global */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Respiro do header fixo */
#content                { padding-top: 90px; }
.single-product #content { padding-top: 120px; }

/* Alpine.js: oculta elementos antes da inicialização */
[x-cloak] { display: none !important; }

/* Wrapper geral da página */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.site-content { flex-grow: 1; }
