/* 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;
}

html,
body {
    color: var(--principal);
    position: relative;
}

section {
    position: relative;
    float: left;
    width: 100%;
    height: auto;
}

img.btn_whats {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 80px;
    height: auto;
}


/* CABEÇALHO */


/* header {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s;
    padding: 10px 10px;
    background-color: white;
    z-index: 999;
    border-bottom: #f5f5f5 1px solid;
} */

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;
}

#hero2_sessao1 {
    background-color: var(--secundaria);
    height: auto;
    float: left;
    margin-top: 12px;
    border-radius: 0px;
    position: relative;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
}

.hero2 img {
    height: 84px;
    width: 84px;
    padding: 0px;
    position: relative;
    margin-top: 6px;
    border-radius: 50%;
    margin-left: 0;
}

.hero2 p {
    color: #DF6830;
    font-size: 12px;
    margin-bottom: 14px;
}

.menu_2 ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    justify-content: center;
    color: #a39f9d;
}

header .logo {
    position: relative;
    width: 126px;
}

svg#logoHead {
    width: 126px;
    fill: var(--principal);
}

header ul {
    position: relative;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    display: none;
}

header ul li {
    position: relative;
    list-style: none;
}

header ul li a {
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    color: var(--principal);
    letter-spacing: 2px;
    font-weight: 500px;
    transition: .5s;
}


/* HAMBURGUER MENU */

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: center;
}

.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;
}

.hero {
    width: 100%;
    height: auto;
    top: 150px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: -1px;
    background-origin: initial;
}

#hero-img {
    background-image: url("../assets/img/conhecaoassociativismo.jpg");
    width: 100%;
    height: 300px;
    background-position: center;
    background-size: cover;
}

div#initial-text {
    position: relative;
    width: 100%;
    height: auto;
    top: 105px;
    left: 0;
    z-index: -1;
}

div#img-jeito {
    width: 100%;
    height: 550px;
    background-image: url("../assets/img/missaovisaoevalores.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

h1.title {
    color: #DF6830;
    align-content: center;
    text-align: center;
}

p {
    color: black;
    padding: 15px;
}

div.texto_jeito_mutuo {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#o_jeito_mutuo {
    width: 100%;
    height: auto;
    top: 150px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: space-around;
    align-items: center;
}

section#o_jeito_mutuo h3 {
    background-color: rgb(3, 129, 185);
    color: white;
    text-align: center;
    width: 35%;
    display: flex;
    height: 17%;
    align-items: center;
    justify-content: center;
}

div.title-topico {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

img.icone {
    width: 15%;
    padding-right: 10px;
}


/* FIM HERO */

section#pelo-associado {
    top: 150px;
    margin-bottom: 20%;
}

h1.title {
    padding: 5%;
}

div#info {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

div.topico {
    width: 35%;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    align-content: center;
}

p.complemento {
    padding: 0;
    margin-left: 15%;
}

a.disapear-mobile {
    display: none;
}

section#parte-final {
    background-color: #0381B9;
    font-size: 25px;
    color: white;
    height: 350px;
    top: 100px;
}

div#corpo {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    height: 350px;
    text-align: center;
}

a#cotacao {
    background-color: #DF6830;
    height: 61px;
    width: 270px;
    border-radius: 15px;
    text-align: center;
    align-content: space-around;
    justify-content: center;
    display: flex;
    align-items: center;
    color: white;
}

@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: 400px;
        position: relative;
        margin-top: 70px;
        background-image: url(../assets/Img_usadas_nos_banners/young_family.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-position-y: -1px;
        background-origin: initial;
        padding: 25px 140px;
    }
    .linha_separador {
        display: none;
    }
    div#initial-text {
        display: flex;
        position: relative;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    #img-jeito {
        background-image: url("../assets/img/equipe-mutuo.jpeg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    h1.title {
        color: #DF6830;
        align-content: center;
        text-align: center;
    }
    p {
        color: black;
    }
    div.texto_jeito_mutuo {
        display: flex;
        flex-direction: row;
        align-content: center;
        align-items: stretch;
        justify-content: center;
    }
    div.texto_jeito_mutuo h3 {
        margin: 15px;
    }
    section#pelo-associado {
        top: 150px;
        margin-bottom: 20%;
    }
    h1.title {
        padding: 5%;
    }
    div#info {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: space-around;
        align-items: center;
    }
    div.topico {
        width: 35%;
        height: 70px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        align-content: center;
        margin-bottom: 3%;
    }
    p.complemento {
        padding: 0;
    }
    section#parte-final {
        background-color: #0381B9;
        font-size: 25px;
        color: white;
        height: auto;
    }
    div#corpo {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: space-around;
        align-items: center;
        height: 300px;
        text-align: center;
    }
    a.disapear-mobile {
        display: flex;
    }
    a#cotacao {
        background-color: #DF6830;
        height: 61px;
        width: 270px;
        border-radius: 15px;
        text-align: center;
        align-content: space-around;
        justify-content: center;
        display: flex;
        align-items: center;
        color: white;
    }
    i.fa-solid.fa-envelope {
        padding-right: 2%;
    }
}