html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #333;
    background-color: #fff;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* TÍTULOS */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-block-start: 0.5rem;
    margin-block-end: 1rem;
    color: inherit;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

/* TEXTO */

p {
    margin-block-start: 0;
    margin-block-end: 0.9rem;
}

small {
    font-size: 80%;
}

b,
strong {
    font-weight: bolder;
}

/* LINKS */

a {
    color: #c36;
    background-color: transparent;
    text-decoration: none;
}

a:hover,
a:active {
    color: #336;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

/* IMAGENS */

img {
    max-width: 100%;
    height: auto;
    border-style: none;
}

figcaption {
    color: #333;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
}

/* CÓDIGO */

pre {
    font-size: 1em;
    font-family: monospace, monospace;
    white-space: pre-wrap;
}

code,
kbd,
samp {
    font-size: 1em;
    font-family: monospace, monospace;
}

/* SUB/SUP */

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* FORMULÁRIOS */

label {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    font-size: 1rem;
    line-height: 1.5;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #666;
    border-radius: 3px;
    transition: all 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #333;
}

/* BOTÕES */

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    display: inline-block;
    width: auto;
    padding: 0.5rem 1rem;
    color: #c36;
    background-color: transparent;
    border: 1px solid #c36;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
    -webkit-appearance: button;
}

button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus {
    color: #fff;
    background-color: #c36;
    text-decoration: none;
}

button:focus:not(:focus-visible),
input[type="button"]:focus:not(:focus-visible),
input[type="submit"]:focus:not(:focus-visible) {
    outline: none;
}

/* TEXTAREA */

textarea {
    overflow: auto;
    resize: vertical;
}

/* CHECKBOX/RADIO */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

/* SELECT */

select {
    display: block;
}

/* TABELAS */

table {
    width: 100%;
    margin-block-end: 15px;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: transparent;
    font-size: 0.9em;
}

table th,
table td {
    padding: 15px;
    line-height: 1.5;
    vertical-align: top;
    border: 1px solid hsla(0, 0%, 50%, 0.502);
}

table th {
    font-weight: 700;
}

table tbody > tr:nth-child(odd) > td,
table tbody > tr:nth-child(odd) > th {
    background-color: hsla(0, 0%, 50%, 0.071);
}

table tbody tr:hover > td,
table tbody tr:hover > th {
    background-color: hsla(0, 0%, 50%, 0.102);
}

/* LISTAS */

ul,
ol,
li,
dl,
dt,
dd {
    margin-block-start: 0;
    margin-block-end: 0;
    background: transparent;
    border: 0;
    outline: 0;
    vertical-align: baseline;
}

/* DETAILS */

details {
    display: block;
}

summary {
    display: list-item;
}

/* PRINT */

@media print {
    *,
    *::before,
    *::after {
        color: #000 !important;
        background: transparent !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    pre {
        white-space: pre-wrap !important;
        border: 1px solid #ccc;
        break-inside: avoid;
    }

    img,
    tr {
        break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }
}

/* RESPONSIVO */

@media (max-width: 767px) {
    table table {
        font-size: 0.8em;
    }

    table table th,
    table table td {
        padding: 7px;
        line-height: 1.3;
    }

    table table th {
        font-weight: 400;
    }
}