@import url('variables.css');


/* =====================================================
   RESET
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: var(--font-primary);

    background: var(--color-background);

    color: var(--color-text);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}


img {
    display: block;

    max-width: 100%;

    height: auto;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


button {
    cursor: pointer;
}


/* =====================================================
   CONTAINER
   ===================================================== */

.container {
    width: min(
        calc(100% - 40px),
        var(--container-width)
    );

    margin-left: auto;
    margin-right: auto;
}


/* =====================================================
   SEÇÕES
   ===================================================== */

.section {
    padding: var(--space-10) 0;
}


.section-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: var(--space-5);

    margin-bottom: var(--space-6);
}


.section-header h2 {
    font-size: 30px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -0.5px;
}


.section-header > a {
    color: var(--color-accent);

    font-weight: 700;

    white-space: nowrap;
}


.section-header > a:hover {
    color: var(--color-accent-dark);
}


.section-kicker {
    display: block;

    margin-bottom: 6px;

    color: var(--color-accent);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =====================================================
   CATEGORY LABEL
   ===================================================== */

.category-label {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--color-accent);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}


/* =====================================================
   LINKS
   ===================================================== */

a {
    transition:
        color var(--transition),
        opacity var(--transition);
}


/* =====================================================
   UTILITÁRIOS
   ===================================================== */

.text-center {
    text-align: center;
}


.hidden {
    display: none !important;
}