/* =========================================
   RESET CSS MODERN (Mobile & iOS Friendly)
   ========================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Normalização de Imagens */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* Remove estilos padrão de listas */
ul, ol {
    list-style: none;
}

/* Links sem decoração */
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Reset de Formulários */
button, input, textarea, select {
    font: inherit;
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

button {
    cursor: pointer;
}

/* Acessibilidade para Foco */
:focus-visible {
    outline: 2px solid var(--primary, #FF5500);
    outline-offset: 2px;
}