/*html {
    background: red !important;
}*/
/* ====================================
    VARIABLES GLOBALES
==================================== */


:root {
    --em-blue: #1e73be;
    --em-dark: #000000;
    --em-light: #ffffff;
    --em-error: #c1272d;

    --em-color-primary: #1e73be;

    --em-border-color: #e5e5e5;

    --em-radius: 8px;

    --em-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

    --em-transition: 0.2s ease;

    --em-max-width: 1200px;
}

/* ====================================
   RESET
==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: var(--em-dark);
    background: var(--em-light);
    line-height: 1.7;
}

.em-container {
    max-width: var(--em-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ====================================
   CHAPÔ
==================================== */

.em-chapo {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 600;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* ====================================
   BOUTONS
==================================== */

.em-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.75rem 1.25rem;

    background: var(--em-blue);
    color: #fff;
    text-decoration: none;

    border-radius: var(--em-radius);

    font-weight: 600;

    transition: 0.2s ease;
}

.em-button:hover,
.em-button:focus {
    opacity: 0.9;
}

/* ==================================================
   ARTICLE LINKS
================================================== */

.em-content a {
    color: #1e73be;
    font-weight: 600;
    text-decoration: underline;
}

.em-content a:hover {
    opacity: 0.8;
}

/* ==================================================
   SKIP LINK
================================================== */

.em-skip-link {
    position: absolute;
    left: -9999px;
}

.em-skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 9999;
    padding: .75rem 1rem;
    background: #fff;
    border: 2px solid var(--em-blue);
}

a:focus,
button:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible,
.em-button:focus-visible {
    outline: 3px solid var(--em-blue);
    outline-offset: 3px;
}
