/* C:\Users\sique\OneDrive\Área de Trabalho\gr\frontend\estilos\reset.css */

/* =========================
   RESET MODERNO
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    height: 100%;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
}

/* =========================
   SISTEMA TIPOGRÁFICO
========================= */

:root {
    --font-primary: 'Poppins', sans-serif;
    --font-title: 'Playfair Display', serif;
    --font-script: 'Parisienne', cursive;
    --font-classic: 'Peddana', serif;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    background-color: #fff;
    color: #111;
}