    /* FONTES */
    
    @font-face {
        font-family: "bold";
        src: url(../fonts/bold.ttf);
    }
    
    @font-face {
        font-family: "medium";
        src: url(../fonts/medium.ttf);
    }
    
    @font-face {
        font-family: "light";
        src: url(../fonts/light.ttf);
    }
    /* GERAIS */
    
    * {
        margin: 0;
        padding: 0;
        outline: none;
        text-decoration: none;
        font-family: "medium";
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        --back: #FFFFFF;
        --light_gray: #FAFBFC;
        --dark_gray: #C4C4C4;
        --principal: #DF6830;
        --secundaria: #0381B9;
        z-index: 0;
    }
    
    header {
        position: fixed;
        top: 0px;
        left: 0;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        transition: .2s;
        background-color: white;
        z-index: 999;
        border-bottom: #f5f5f5 1px solid;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    
    header a {
        text-decoration: none;
    }
    
    header #fale-conosco {
        background-color: #0381B9;
        position: relative;
        display: flex;
        width: 100%;
        height: 40px;
        top: 0;
        padding: 10px 10px;
        justify-content: space-between;
        align-items: center;
        z-index: 999;
        border-bottom: #f5f5f5 1px solid;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
    }
    
    header #fale-conosco a {
        color: white;
        padding: 10px;
        font-size: 12px;
    }
    
    header #fale-conosco #s-m {
        color: white;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
    }
    
    header #hamburguer {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 33px;
        height: 80px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    header #hamburguer .linha {
        width: 33px;
        height: 5px;
        background: var(--principal);
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    #hamburguer .linha::before,
    #hamburguer .linha::after {
        content: '';
        position: absolute;
        width: 33px;
        height: 5px;
        background: var(--principal);
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    #hamburguer .linha::before {
        transform: translateY(-12px);
    }
    
    #hamburguer .linha::after {
        transform: translateY(12px);
    }
    
    #hamburguer.open .linha {
        transform: translateX(-50px);
        background: transparent;
        box-shadow: none;
    }
    
    #hamburguer.open .linha::before {
        transform: rotate(45deg) translate(35px, -35px);
    }
    
    #hamburguer.open .linha::after {
        transform: rotate(-45deg) translate(35px, 35px);
    }
    
    header #menu {
        position: absolute;
        display: flex;
        width: 100%;
        flex-direction: column;
        left: -100%;
        transition: .3s ease-in-out all;
        padding: 35px 0px 0px 0px;
    }
    
    header #menu.open {
        display: flex;
        width: 100%;
        padding: 20px;
        padding-top: 35px;
        top: 69px;
        left: 0%;
        flex-direction: column;
        background-color: white;
        transition: .3s ease-in-out all;
        box-shadow: 0px 2px 4px rgb(0 0 0 / 10%);
    }
    
    #menu a {
        width: fit-content;
        border-bottom: none;
        margin-bottom: 35px;
        color: #444;
        width: fit-content;
        border-bottom: none;
        padding-left: 26px;
    }
    
    #menu a:after {
        display: block;
        content: '';
        border-bottom: solid 3px var(--secundaria);
        transform: scaleX(0);
        transition: transform .25s ease-in-out;
        transform-origin: 0% 50%;
    }
    
    #menu a:before {
        position: absolute;
        bottom: 1.2em;
        left: 0;
        width: 100%;
    }
    
    #menu a:hover:after,
    #menu a:hover:before {
        transform: scaleX(1);
        transform-origin: 0% 50%;
    }
    /* FIM HAMBURGUER MENU */
    
    .block {
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
        padding: 12px;
        align-content: space-around;
    }
    
    .btn_cotacao {
        position: relative;
        width: 300px;
        padding: 10px;
        min-height: 50px;
        font-size: 20px;
        background-color: var(--principal);
        border: 0;
        color: white;
        /* box-shadow: 1px 1px 3px 0px black; */
        text-align: center;
        margin-top: 4px;
    }
    
    .btn_login {
        display: block;
        /* background-image: url(../assets/img/user.svg); */
        background-size: 20px;
        background-repeat: no-repeat;
        background-position: 15px;
        width: auto;
        height: 48px;
        background-color: var(--principal);
        border: none;
        color: white;
        cursor: pointer;
        border-radius: 2px;
        /* padding-left: 46px; */
        position: relative;
        float: right;
        padding: 10px 16px;
        font-family: "bold";
        font-size: 16px;
    }
    
    .btn_telefone {
        background-color: var(--principal);
        width: 165px;
        height: 48px;
        color: white;
        text-align: center;
        display: flex;
        padding-left: 45px;
        align-items: center;
        border-radius: 2px;
        cursor: pointer;
        background-image: url(../assets/img/whats.png);
        background-size: 21px;
        background-repeat: no-repeat;
        background-position: 15px;
        display: none;
    }
    
    .pesquisa_expandida {
        margin: auto;
        width: 100%;
        position: absolute;
    }
    
    #campo_pesquisa.input_expandido {
        width: 96%;
        position: relative;
        background-position: 10px;
        margin: auto;
    }
    
    img.btn_whats {
        position: fixed;
        bottom: 10px;
        right: 10px;
        width: 80px;
        height: auto;
    }
    /* HERO */
    
    #hero {
        width: 100%;
        height: 350px;
        position: relative;
        margin-top: 100px;
        background-image: url(../assets/icons_cartilha/smiley-couple.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-position-y: -71px;
        background-origin: initial;
        padding: 25px;
    }
    
    #hero h1 {
        position: relative;
        /* float: left; */
        font-size: 35px;
        color: white;
        z-index: 1;
        width: 100%;
        /* margin-bottom: 25px; */
        align-content: center;
        text-align: center;
        justify-content: center;
        padding: 0px;
        line-height: 51px;
        letter-spacing: 1px;
    }
    
    #hero .fundo_escuro {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: black;
        opacity: .2;
        z-index: -1;
    }
    
    header .logo {
        position: relative;
        width: 126px;
    }
    /* FIM HERO */
    
    .disapear-mobile {
        display: none;
    }
    
    section#beneficios {
        margin-top: 30px;
        position: relative;
        float: left;
        width: 100%;
    }
    
    section#beneficios .cabecalho {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-content: center;
        align-items: center;
    }
    
    h2.titulo {
        color: white;
        width: 60%;
        height: 265px;
        display: flex;
        font-size: 304%;
        text-align: center;
        align-items: center;
        background-color: #DF6830;
        border-radius: 20px;
        /* border-top-right-radius: 20px; */
        /* border-bottom-right-radius: 20px; */
        justify-content: center;
    }
    
    img.icon {
        width: 35%;
    }
    
    div.campo-texto {
        width: 100%;
        height: auto;
        display: flex;
        background-color: whitesmoke;
        flex-direction: row-reverse;
        align-content: center;
        justify-content: center;
        align-items: center;
        padding: 15px 45px 15px 45px;
    }
    
    div.circulo {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #0381B9;
        display: flex;
        align-content: center;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    
    div.sub-titulo {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: flex-start;
        align-items: center;
        padding: 25px 0px 25px 0px
    }
    
    div.campo-texto {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: flex-start;
    }
    
    p.texto {
        padding-bottom: 25px;
        margin-left: 4%;
    }
    
    div.campo-texto ul {
        margin-left: 8%;
    }
    
    @media (min-width: 800px) {
        .page-body {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: center;
            align-content: center;
        }
        .bulleted-list {
            display: flex;
            margin-bottom: 20px;
            margin-top: 20px;
            width: 30%;
            flex-direction: column;
            align-content: center;
            flex-wrap: nowrap;
            justify-content: center;
            text-align: center;
            border-bottom: 0px solid #e3e3e3;
            padding: 20px;
        }
        header {
            justify-content: space-between;
            width: 100%;
        }
        .disapear-mobile {
            display: inline;
        }
        header #hamburguer {
            display: none;
        }
        header ul {
            display: flex;
        }
        .block {
            width: 100%;
        }
        header .logo {
            width: 150px;
        }
        header .logo svg {
            fill: var(--principal);
        }
        header #menu {
            position: relative;
            display: flex;
            width: 80%;
            flex-direction: row;
            right: 0px;
            transition: .3s ease-in-out all;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: flex-end;
            left: auto;
            align-content: flex-start;
        }
        header #menu.open {
            width: 315px;
            height: 100vh;
            padding-top: 35px;
        }
        #menu a {
            margin-bottom: 35px;
            color: #444;
            width: fit-content;
            border-bottom: none;
            padding-left: 26px;
        }
        #hero {
            width: 100%;
            height: 450px;
            position: relative;
            margin-top: 70px;
            background-image: url(../assets/icons_cartilha/smiley-couple.jpg);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            background-position-y: -200px;
            background-origin: initial;
            padding: 25px 140px;
        }
        #hero h1 {
            position: relative;
            font-size: 45px;
            color: white;
            z-index: 1;
            width: 100%;
            margin-bottom: 25px;
            text-align: center;
            padding: 0px;
            line-height: 75px;
            letter-spacing: 4px;
            margin-top: 11%;
        }
        .linha_separador {
            display: none;
        }
        .btn_telefone {
            display: flex;
            margin-right: 15px;
        }
        div.circulo {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #0381B9;
            display: flex;
            align-content: center;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
        div.campo-texto {
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-content: center;
            align-items: flex-start;
        }
        /* p.texto {
            padding: 15px 15px 15px 15px;
        } */
    }