:root {
    --ef-bg: #f6f4ef;
    --ef-surface: #0c0c0c;
    --ef-text: #18222f;
    --ef-text-muted: #666565;
    --ef-gold: #E1AD42;
    --gold-gradient: linear-gradient(90deg,
            #F8EC8E 0%,
            #E1AD42 33%,
            #F8EC8E 66%,
            #E1AD42 100%);
    --gold-grad-rich: linear-gradient(90deg, #F9F295 0%, #F3D97A 20%, #EBC15A 40%, #E1AC41 50%, #EBC15A 60%, #F3D97A 80%, #F9F295 100%);
    --gold-gradient-button: linear-gradient(180deg, #F9F295 0%, #E1AC41 100%);
    --btn-dark: #1e1e1e;
    --global-padding: 190px;
    --global-background: #000;
    --ef-container-wide: min(1224px, calc(100% - 48px));
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
}

body {
    opacity: 1;
    font-family: 'Open Sans', 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: #000;
    color: #fff;
}

a {
    text-decoration: none;
}

.container {
    margin-inline: auto;
}

/* ========================================
   GLOBAL - TITULOS HOME
======================================== */

.ef-title-gold {
    background: var(--gold-gradient-button);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.ef-home-title {
    margin: 0;
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.5rem;
    letter-spacing: -0.025em;
    font-family: "Open Sans", sans-serif;
}

.ef-home-title::first-letter {
    text-transform: uppercase;
}
/* ========================================
   GLOBAL - HEADINGS HOME
======================================== */

.ef-home-heading {
    margin: 0 auto 50px;
}

.ef-home-heading--center {
    max-width: 860px;
    text-align: center;
}

.ef-home-heading--center .ef-home-title-divider {
    margin: 24px auto 0;
}

.ef-home-heading p {
    margin: 20px auto 0;
    max-width: 760px;
    color: rgba(255, 255, 255, .95);
    letter-spacing: .01em;
    line-height: 1.625;
    font-weight: 300;
    font-size: 1rem;
    max-width: 38rem;
}

/* ========================================
   GLOBAL - SEÇÕES HOME
======================================== */


.ef-home-shell {
    width: var(--ef-container-wide);
    margin: 0 auto;
}

.global-padding {
    padding-bottom: var(--global-padding);
}

.global-background {
    background: var(--global-background);
}

/* ========================================
   GLOBAL - LINKS / LISTAS FOOTER
======================================== */

.ef-home-footer a {
    text-decoration: none;
    color: inherit;
}

.ef-home-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ========================================
   GLOBAL - DIVIDER GOLD
======================================== */

.ef-divider-gold {
    display: block;
    width: 56px;
    height: 3px;
    margin-top: 13px;
    border-radius: 999px;
    background: var(--gold-gradient);
}

/* centralizado */
.ef-divider-gold--center {
    margin-left: auto;
    margin-right: auto;
}

/* esquerda */
.ef-divider-gold--left {
    margin-left: 0;
    margin-right: auto;
}

/* direita */
.ef-divider-gold--right {
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .post-card {
        grid-template-columns: 1fr;
    }

    .site-header__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ========================================
   ANTI LAYOUT SHIFT / ANTI PISCADA
======================================== */

.ef-reference-page img,
.ef-reference-page svg {
    display: block;
}

.ef-reference-page a,
.ef-reference-page button {
    line-height: 1;
    box-sizing: border-box;
}

/* trava todos os botões da página */
.ef-reference-page .ef-btn,
.ef-reference-page .ef-reference-heading__button,
.ef-reference-page .ef-reference-row__price,
.ef-reference-page .ef-reference-row__secondary,
.ef-reference-page .ef-reference-helper__button,
.ef-reference-page .ef-reference-catalogue-card__button,
.ef-reference-page .ef-reference-consultation-card__button {
    min-height: 52px;
    height: 52px;
    padding-top: 0;
    padding-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-sizing: border-box;
    transform: none;
    transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

/* botão full dentro de card */
.ef-reference-page .ef-reference-catalogue-card__button,
.ef-reference-page .ef-reference-consultation-card__button {
    width: 100%;
}

/* evita salto quando a fonte Montserrat/Open Sans carrega */
.ef-reference-page {
    font-synthesis: none;
    text-rendering: geometricPrecision;
}

/* desliga animações só no primeiro load se tiver classe no body */
body.is-loading .ef-reference-page *,
body.is-loading .ef-reference-page *::before,
body.is-loading .ef-reference-page *::after {
    transition: none !important;
    animation: none !important;
}

@media (max-width: 767px) {

    .ef-home-shell {
        width: min(328px, calc(100% - 48px));
        margin: 0 auto;
    }

    .ef-home-title {
        font-size: 1.5rem;
    }
}