.elementor-1818 .elementor-element.elementor-element-15d6f07{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-1818 .elementor-element.elementor-element-30f31a0d{--display:flex;--margin-top:-41px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1818 .elementor-element.elementor-element-111ea25f .wpr-post-content{color:#777777;font-size:14px;}.elementor-1818 .elementor-element.elementor-element-111ea25f .wpr-post-content a{transition-duration:0.1s;}/* Start custom CSS for html, class: .elementor-element-15d6f07 *//* =========================================================
   MONICA MARTINS
   HEADER / MENU PRINCIPAL
========================================================= */

.mm-header {

    --header-bg: rgba(255, 253, 249, 0.96);
    --header-purple: #584568;
    --header-lavender: #78638b;
    --header-gold: #b48128;
    --header-line: rgba(180, 129, 40, 0.14);

    position: relative;

    z-index: 9999;

    width: 100%;

    background:
        var(--header-bg);

    border-bottom:
        1px solid
        var(--header-line);

    box-shadow:
        0 5px 20px
        rgba(67, 48, 55, 0.035);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);
}


/* =========================================================
   CONTAINER
========================================================= */

.mm-header-inner {

    width: 100%;

    max-width: 1500px;

    min-height: 88px;

    margin: 0 auto;

    padding:
        0
        clamp(24px, 4vw, 65px);

    display: flex;

    align-items: center;

    gap:
        clamp(
            28px,
            3vw,
            55px
        );
}


/* =========================================================
   LOGO
========================================================= */

.mm-header-logo {

    flex:
        0 0 auto;

    display: flex;

    align-items: center;

    text-decoration: none;
}


.mm-header-logo img {

    display: block;

    width:
        clamp(
            185px,
            16vw,
            245px
        );

    height: auto;

    max-height: 67px;

    object-fit: contain;
}


/* =========================================================
   MENU DESKTOP
========================================================= */

.mm-header-nav {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap:
        clamp(
            11px,
            1.15vw,
            21px
        );

    white-space: nowrap;
}


.mm-header-nav a {

    position: relative;

    padding:
        34px
        0
        31px;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size:
        clamp(
            8.5px,
            0.68vw,
            10.5px
        );

    line-height: 1;

    font-weight: 600;

    letter-spacing: 0.035em;

    text-transform: uppercase;

    text-decoration: none !important;

    color:
        var(--header-purple);

    transition:
        color .25s ease;
}


/* LINHA DE HOVER */

.mm-header-nav a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 23px;

    width: 0;

    height: 1px;

    background:
        var(--header-gold);

    transform:
        translateX(-50%);

    transition:
        width .28s ease;
}


.mm-header-nav a:hover {

    color:
        var(--header-gold);
}


.mm-header-nav a:hover::after {

    width: 100%;
}


/* =========================================================
   ITEM ATIVO
========================================================= */

.mm-header-nav a.mm-active {

    color:
        var(--header-gold);
}


.mm-header-nav a.mm-active::after {

    width: 100%;
}


/* =========================================================
   BOTÃO HAMBÚRGUER
========================================================= */

.mm-menu-toggle {

    display: none;

    width: 44px;

    height: 44px;

    padding: 0;

    flex:
        0 0
        44px;

    border: 0;

    background:
        transparent;

    cursor: pointer;
}


.mm-menu-toggle span {

    display: block;

    width: 25px;

    height: 1.5px;

    margin:
        5px auto;

    background:
        var(--header-purple);

    transition:
        transform .3s ease,
        opacity .3s ease;
}


/* MENU ABERTO */

.mm-header.mm-menu-open
.mm-menu-toggle span:nth-child(1) {

    transform:
        translateY(6.5px)
        rotate(45deg);
}


.mm-header.mm-menu-open
.mm-menu-toggle span:nth-child(2) {

    opacity: 0;
}


.mm-header.mm-menu-open
.mm-menu-toggle span:nth-child(3) {

    transform:
        translateY(-6.5px)
        rotate(-45deg);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.mm-mobile-menu {

    display: none;

    overflow: hidden;

    max-height: 0;

    background:
        rgba(
            255,
            253,
            249,
            0.99
        );

    border-top:
        1px solid
        rgba(
            180,
            129,
            40,
            0.10
        );

    transition:
        max-height .4s ease;
}


.mm-mobile-menu nav {

    max-width: 650px;

    margin: 0 auto;

    padding:
        12px
        25px
        28px;

    display: flex;

    flex-direction: column;
}


.mm-mobile-menu a {

    padding:
        14px
        4px;

    border-bottom:
        1px solid
        rgba(
            88,
            69,
            104,
            0.08
        );

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: .055em;

    text-transform: uppercase;

    text-decoration: none !important;

    color:
        var(--header-purple);
}


.mm-mobile-menu a:hover {

    color:
        var(--header-gold);
}


/* ABERTURA */

.mm-header.mm-menu-open
.mm-mobile-menu {

    max-height: 720px;
}


/* =========================================================
   HEADER STICKY
========================================================= */

.mm-header.mm-sticky {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    animation:
        mmHeaderDown
        .35s ease;

    box-shadow:
        0 8px 28px
        rgba(
            60,
            42,
            53,
            0.08
        );
}


@keyframes mmHeaderDown {

    from {

        transform:
            translateY(-100%);
    }

    to {

        transform:
            translateY(0);
    }
}


/* =========================================================
   NOTEBOOK
========================================================= */

@media (max-width: 1280px) {

    .mm-header-inner {

        min-height: 82px;

        padding:
            0
            28px;

        gap: 25px;
    }


    .mm-header-logo img {

        width: 185px;
    }


    .mm-header-nav {

        gap:
            11px;
    }


    .mm-header-nav a {

        font-size: 8.5px;

        letter-spacing: .015em;
    }

}


/* =========================================================
   MENU MOBILE A PARTIR DE 1100PX
========================================================= */

@media (max-width: 1100px) {

    .mm-header-inner {

        min-height: 78px;
    }


    .mm-header-nav {

        display: none;
    }


    .mm-menu-toggle {

        display: block;

        margin-left: auto;
    }


    .mm-mobile-menu {

        display: block;
    }


    .mm-header-logo img {

        width:
            clamp(
                175px,
                30vw,
                220px
            );
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .mm-header-inner {

        min-height: 72px;

        padding:
            0
            18px;
    }


    .mm-header-logo img {

        width: 175px;

        max-height: 56px;
    }


    .mm-menu-toggle {

        width: 40px;

        height: 40px;

        flex-basis: 40px;
    }


    .mm-mobile-menu nav {

        padding:
            10px
            20px
            25px;
    }


    .mm-mobile-menu a {

        font-size: 10px;

        padding:
            13px
            4px;
    }

}
/* =========================================================
   MONICA MARTINS
   HEADER — AJUSTE FINO FINAL
   Cole no FINAL do CSS atual
========================================================= */


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1101px) {

    /* HEADER */

    .mm-header-inner {

        max-width: 1500px;

        min-height: 94px;

        padding:
            0
            clamp(32px, 4vw, 65px);

        display: grid;

        /*
           Colunas laterais equivalentes ajudam
           o menu a ficar visualmente centralizado.
        */

        grid-template-columns:
            210px
            minmax(0, 1fr)
            210px;

        align-items: center;

        gap: 0;
    }


    /* =====================================================
       LOGO
    ===================================================== */

    .mm-header-logo {

        grid-column: 1;

        justify-self: start;

        display: flex;

        align-items: center;
    }


    .mm-header-logo img {

        width: 195px;

        max-height: 68px;
    }


    /* =====================================================
       MENU CENTRALIZADO
    ===================================================== */

    .mm-header-nav {

        grid-column: 2;

        width: 100%;

        display: flex !important;

        align-items: center;

        justify-content: center;

        gap:
            clamp(
                13px,
                1vw,
                19px
            );

        white-space: nowrap;
    }


    /* TEXTO MAIOR */

    .mm-header-nav a {

        padding:
            37px
            0
            34px;

        font-size:
            clamp(
                10px,
                .75vw,
                11.5px
            );

        line-height: 1;

        font-weight: 600;

        letter-spacing: .035em;
    }


    /* LINHA HOVER MAIS PRÓXIMA */

    .mm-header-nav a::after {

        bottom: 27px;
    }


    /* =====================================================
       REMOVE HAMBÚRGUER NO DESKTOP
    ===================================================== */

    .mm-menu-toggle {

        display: none !important;
    }


    .mm-mobile-menu {

        display: none !important;
    }

}



/* =========================================================
   DESKTOP / NOTEBOOK MÉDIO
========================================================= */

@media
(min-width: 1101px)
and
(max-width: 1320px) {

    .mm-header-inner {

        grid-template-columns:
            180px
            minmax(0, 1fr)
            180px;

        padding:
            0
            24px;
    }


    .mm-header-logo img {

        width: 172px;
    }


    .mm-header-nav {

        gap: 10px;
    }


    .mm-header-nav a {

        font-size: 9.5px;

        letter-spacing: .015em;
    }

}



/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 1100px) {

    .mm-header-inner {

        display: flex;

        min-height: 78px;

        padding:
            0
            25px;

        align-items: center;
    }


    .mm-header-logo {

        margin-right: auto;
    }


    .mm-header-logo img {

        width:
            clamp(
                175px,
                25vw,
                210px
            );
    }


    .mm-header-nav {

        display: none !important;
    }


    .mm-menu-toggle {

        display: block !important;

        margin-left: auto;
    }


    .mm-mobile-menu {

        display: block;
    }

}



/* =========================================================
   MENU MOBILE — TEXTO MAIS LEGÍVEL
========================================================= */

@media (max-width: 600px) {

    .mm-mobile-menu a {

        font-size: 11px;

        line-height: 1.25;

        letter-spacing: .045em;
    }

}/* End custom CSS */