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

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

div#beneficio2 {
    width: 30%;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 15px;
}

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


/* FIM CABEÇALHO */


/* HERO */

#hero {
    width: 100%;
    height: 350px;
    position: relative;
    margin-top: 100px;
    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;
}

#hero .fundo_escuro {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    opacity: .2;
    z-index: -1;
}

#hero h1 {
    position: relative;
    float: left;
    font-size: 41px;
    color: white;
    z-index: 20;
    width: 100%;
    margin-bottom: 25px;
    text-align: left;
    padding: 0px;
    line-height: 45px;
    letter-spacing: 1px;
    margin-top: 63px;
}


/* FIM HERO */

section#hero2 {
    text-align: center;
    padding: 7px;
    font-size: 21px;
    margin-top: -42px;
    position: relative;
    float: left;
    width: 100%;
    cursor: pointer;
    transition: 0.2s;
}

.hero2 {
    position: relative;
    display: flex;
    float: left;
    width: 110px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.hero2 p {
    color: white;
    font-size: 16px;
}

.beneficio img {
    width: 200px;
    position: relative;
    transform: scaleX(-1);
}


/* FIM HERO2*/

section#evento {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    position: relative;
    float: left;
    width: 100%;
}


/* 
#ultimas_noticias{
    margin-top: 80px;
    margin-left: -10px;
} */


/* 
#ultimas_noticias h2{
    color: var(--secundaria);
    text-align: left;
    margin-left: 24px;
    font-size: inherit;
    /* margin-top: 90px; */


/* } */

#ultimas_noticias p {
    color: #444;
    text-align: left;
    font-family: 'medium';
    font-size: 19px;
    margin-left: 24px;
    margin-top: 10px;
}

section#depoimentos h1,
section#beneficios h2 {
    text-align: center;
    padding: 23px;
    font-size: 36px;
}

#depoimentos h3 {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #636363;
    font-family: 'medium';
    font-weight: 100;
}

section h1 {
    text-align: center;
    padding: 34px;
    font-size: 44px;
}

section#Simule_aqui_sua_proteção {
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
    font-family: "light";
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    z-index: -1;
}

section#Simule_aqui_sua_proteção h3 {
    font-size: 40px;
}

section#Simule_aqui_sua_proteção h6 {
    font-size: 16px;
}

#Texto1,
#Texto2,
#Texto3 {
    display: flex;
    width: 100%;
    position: relative;
    margin-top: 0;
    flex-direction: row;
    align-content: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 20px;
}

#Texto3 h3 {
    font-size: 16px;
    color: #DF6830;
    text-align: left;
    padding: 0px;
}

section {
    padding-bottom: 40px;
}

#Juntos_somos_mutuo {
    z-index: -1;
}

section#beneficios {
    text-align: center;
    justify-content: flex-start;
    padding: 23px;
    font-size: 27px;
    margin-top: -70px;
}

section#beneficios h2 {
    font-size: 34px;
}

.chamada2 {
    width: 100%;
    height: 400px;
    background-color: var(--dark_gray);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url(../assets/Img_usadas_nos_banners/man_smilling.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.chamada3 {
    width: 100%;
    height: 400px;
    background-color: var(--principal);
    font-size: 36px;
    display: flex;
    margin-top: auto;
    justify-content: center;
    text-align: center;
    background-image: url(../assets/img/carro_pordosol.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.chamada4 {
    width: 100%;
    height: 400px;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url(../assets/img/representante.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
}


/* #btn_fixo_tel {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: var(--secundaria);
    bottom: 15px;
    right: 15px;
    background-image: url(../assets/img/phone.svg);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    z-index: 99;
} */

#btn_fixo_tel a {
    color: white;
    text-align: center;
}

.btn_area_do_associado {
    background-color: var(--principal);
    color: white;
    margin-left: -18px;
    width: 105px;
    border: 0;
    text-align: center;
    font-size: 17px;
    margin-top: 4px;
    height: 50px;
    border-radius: 3px;
    cursor: pointer;
}


/* BENEFICIOS */

section#beneficios {
    margin-top: 30px;
    position: relative;
    float: left;
    width: 100%;
}

section#beneficios .beneficio {
    width: 50%;
    height: 150px;
    transition: 0.2s;
    position: relative;
    float: left;
    text-align: center;
    padding: 7px;
    overflow: hidden;
    z-index: -1;
}

.lista_beneficios .beneficio {
    width: 50%;
    height: 150px;
    transition: 0.2s;
    position: relative;
    float: left;
    text-align: center;
    padding: 7px;
    overflow: hidden;
    z-index: -1;
}

.lista_beneficios img {
    height: 65px;
    width: 65px;
    position: relative;
    margin-top: 5px;
}

.lista_beneficios_oculto .beneficio {
    width: 50%;
    height: 150px;
    transition: 0.2s;
    position: relative;
    float: left;
    text-align: center;
    padding: 7px;
    overflow: hidden;
    z-index: -1;
}

.lista_beneficios_oculto img {
    height: 65px;
    width: 65px;
    position: relative;
    margin-top: 5px;
}

.beneficio h3 {
    margin-top: 10px;
}

.beneficio p {
    text-align: center;
    margin-top: 10px;
    font-family: 'medium';
    font-size: 19px;
    color: #777;
}

#btn_beneficios {
    margin: auto;
    border-radius: 2px;
    font-size: 16px;
    width: 100%;
    text-align: center;
    position: relative;
    height: 70px;
    text-decoration: underline;
    cursor: pointer;
    z-index: 0;
    float: left;
}

section#beneficios_2 {
    margin-top: 0;
    position: relative;
    float: left;
    width: 100%;
}

div.lista_beneficios_2 .beneficio2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 100px;
    max-width: 160px;
    width: 160px;
    height: 143px;
    transition: 0.2s;
    cursor: pointer;
}

.beneficio:hover {
    background-color: #f3f3f3;
}

.lista_beneficios_2 .beneficio2:hover {
    background-color: #f3f3f3;
}

.lista_beneficios_2 img {
    width: 100px;
}

section#beneficios .beneficio.aberto,
.lista_beneficios_oculto .beneficio.aberto {
    position: fixed;
    z-index: 9;
    top: 20vh;
    background-color: white;
    width: 340px;
    left: 50%;
    margin-left: -170px;
    box-shadow: 0px 0px 28px -9px black;
    height: auto;
    max-height: 80vh;
    overflow: auto;
    padding: 12px;
}

.beneficio2 p {
    text-align: center;
    margin-top: 10px;
    font-family: 'bold';
    font-size: 24px;
}

.texto_beneficio_2 p {
    text-align: center;
    margin-top: 10px;
    font-family: 'bold';
    font-size: 22px;
    padding: 20px;
    color: var(--secundaria);
}

#btn_beneficios_2 {
    margin: auto;
    font-size: 20px;
    margin-left: 30px;
    border-radius: 4px;
}

#beneficios_2 h2 {
    text-align: center;
    font-family: 'bold';
    font-size: 25px;
}


/* FIM BENEFÍCIOS */


/* DEPOIMENTOS */

#depoimentos {
    background-color: var(--light_gray);
    padding-top: 40px;
    z-index: -1;
}

#depoimentos h2 {
    font-family: "light";
    text-align: center;
    margin-bottom: 30px;
}

.carroussel {
    width: 80%;
    max-width: 500px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.depoimento {
    margin: auto;
    width: 400px;
    background: white;
    border-radius: 16px;
    padding: 10px 20px 30px 20px;
    box-shadow: #c5c5c5 1px 2px 3px 0px;
    margin-bottom: 30px;
    margin-right: 20px;
}

.cabecalho_depoimento {
    display: flex;
    align-items: center;
}

.cabecalho_depoimento img {
    border-radius: 50%;
    margin: 20px;
    margin-left: 0;
    height: 100px;
    width: 100px;
    position: relative;
}

.cabecalho_depoimento .informacoes_cliente {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cabecalho_depoimento .informacoes_cliente .nome_cliente {
    font-family: "medium";
    font-size: 24px;
}

.cabecalho_depoimento .informacoes_cliente .tipo_cliente {
    font-family: "light";
    margin-bottom: 10px;
}

.depoimento blockquote {
    border-left: var(--dark_gray) 5px solid;
    padding: 10px;
    font-size: 16px;
    line-height: 24px;
}


/* FIM DEPOIMENTO */


/* JUNTOS SOMOS MUTUO */

section #Juntos_somos_mutuo,
div.Texto_juntos_mutuo p {
    color: #444;
    font-family: "medium";
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    margin-top: -44px;
    padding: 25px;
    width: 96%;
    left: 50%;
    position: relative;
    margin-left: -48%;
}


/* FIM SOMOS MUTUO */


/* NUMEROS */

section#numeros {
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--light_gray);
    padding-top: 50px;
}

#numeros #img_numeros {
    display: none;
}

#numeros #img_numeros img {
    height: auto;
    width: auto;
}

#dados .box_numero {
    margin-bottom: 80px;
}

#dados .box_numero .numero {
    font-size: 64px;
    font-family: "bold";
}

#dados .box_numero .texto_numero {
    font-size: 24px;
    font-family: "light";
}


/* FIM NUMEROS */


/* PASSOS */

section#passos {
    background-color: var(--light_gray);
}

section#passos #container_passos {
    display: flex;
    align-items: center;
    justify-content: center;
}

#container_passos #img_passos {
    display: none;
}

#container_passos #bloco_passos {
    width: 324px;
    margin-top: -151px;
    background-color: white;
    padding: 35px;
}

#bloco_passos .passo {
    display: flex;
    margin: 50px 0;
    margin-top: 8px;
    margin-left: -8px;
    align-items: center;
    justify-content: center;
}

.passo .numero_passo {
    width: 74px;
    height: 74px;
    font-size: 62px;
    background-color: var(--secundaria);
    color: white;
    text-align: center;
}

.passo .texto_passo {
    font-size: 24px;
    width: 230px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}


/* FIM PASSOS */


/* APLICATIVOS */

section#aplicativos #apps_container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    width: 80%;
    margin: auto;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

#apps_container #imagem_celular {
    margin-bottom: 30px;
}

#apps_container #imagem_celular img {
    width: 100%;
    height: auto;
}

#apps_container #textos .frase {
    font-family: "light";
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
}

#textos #botoes_lojas {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
}

#textos #botoes_lojas img {
    width: 250px;
    margin-bottom: -40px;
    margin-top: 42px;
    cursor: pointer;
    position: relative;
    height: 100px;
}

#botoes_lojas img#app_store {
    width: 230px;
}


/* FIM APLICATIVOS */


/* AREA DO ASSOCIADO */

section#area_associado {
    background-color: var(--light_gray);
}

div#features_associado_container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    width: 80%;
    margin: auto;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 60px;
}

#features_associado .frase {
    font-family: "light";
    font-size: 24px;
    margin-bottom: 20px;
}

div#imagem_area_associado {
    margin-bottom: 30px;
}

#imagem_area_associado img {
    width: 200px;
}

#btn_area_associado {
    display: flex;
    border: none;
    background-color: var(--principal);
    margin: 0 auto;
    width: 266px;
    height: auto;
    padding: 12px;
    font-size: 24px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    cursor: pointer;
}

.btn_saiba_mais {
    border: none;
    background-color: var(--principal);
    margin: 0 auto;
    width: 270px;
    min-height: 60px;
    padding: 12px;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 20px;
    margin-left: 41px;
    font-size: 20px;
    left: 50%;
    position: relative;
    margin-left: -135px;
    position: relative;
    float: left;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

#btn_saiba_mais_container {
    display: flex;
    border: none;
    background-color: var(--principal);
    margin: 0 auto;
    width: 272px;
    height: 67px;
    padding: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 20px;
    margin-left: 4px;
    font-size: 24px;
}


/* FIM AREA DO ASSOCIADO */


/* FAQ */

.container {
    z-index: -1;
}

.cont_beneficios {
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.cont_beneficios img {
    margin: 23px;
    height: auto;
    width: 160px;
}

.cont_beneficios p {
    position: relative;
    padding-right: 33px;
    text-align: right;
    font-size: 16px;
}

section#faq {
    background-color: white;
}

.fundoescuro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    opacity: 0.6;
    z-index: -1;
}

section#faq #lista_perguntas {
    max-width: 800px;
    width: 80%;
    margin: auto;
}

#lista_perguntas .container_pergunta {
    margin-bottom: 20px;
}

.container_pergunta .titulo_pergunta {
    height: 100px;
    width: 98%;
    ;
    font-size: 24px;
    font-family: medium;
    color: white;
    background: var(--secundaria);
    padding: 15px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.titulo_pergunta .btn_expandir {
    pointer-events: none;
}

.titulo_pergunta img {
    width: 40px;
    transition: .2s;
    /* transform: rotate(180deg); */
}

.rotacionado {
    transform: rotate(180deg);
}

.container_pergunta .resposta {
    background-color: #E8E8E8;
    color: black;
    width: 98%;
    padding: 10px;
    display: none;
}


/* FIM FAQ */


/* RODAPE */

footer {
    background-color: var(--secundaria);
    width: 100%;
    z-index: 0;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    padding-bottom: 90px;
    align-items: center;
}

footer div.cont_footer {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

footer div.cont_footer h2 {
    font-size: 20px;
    margin-bottom: 6px;
    margin-top: 16px;
    position: relative;
    float: left;
    width: 100%;
}

footer div.cont_footer h3 {
    font-size: 18px;
    margin-top: 14px;
    position: relative;
    float: left;
    width: 100%;
}

footer div.cont_footer a {
    text-decoration: none;
    color: white;
}

footer div.cont_footer p {
    position: relative;
    float: left;
    margin-bottom: 12px;
    font-size: 16px;
    width: 100%;
    margin-top: 12px;
}

footer div.cont_footer img {
    position: relative;
    height: 40px;
    margin-right: 10px;
    float: left;
}

footer div.cont_footer img.imgsocial {
    width: 50px;
}

footer div.cont_footer img.imgapp {
    width: 140px;
    margin-bottom: 0;
    cursor: pointer;
    margin-top: 16px;
}


/* FIM RODAPÉ */


/* ---------LOGIN--------- */

#body_login {
    background-color: white;
    border-top: 6px solid var(--principal);
}

#login {
    width: 90%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    margin-top: 10vh;
    /* background-color: var(--light_gray); */
    /* border: 1px solid red; */
    padding: 30px 0;
    border-radius: 5px;
}

#login h2 {
    margin: 10px 0 20px 0;
}

#login #form_login {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

#form_login label {
    color: #444;
    margin-bottom: 10px;
}

#form_login input {
    height: 40px;
    font-size: 19px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid var(--dark_gray);
    border-radius: 5px;
}

#form_login button {
    height: 40px;
}

button#acessar {
    background-color: var(--principal);
    margin: 0 auto;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    cursor: pointer;
    width: 100%;
    border: 0;
    height: 56px;
    font-size: 18px;
    text-transform: uppercase;
}

#form_login a {
    text-align: center;
    margin-top: 40px;
    color: var(--secundaria);
}

article.page.sans {
    position: relative;
    margin-top: 11vh;
    padding: 20px;
}

h1.page-title {
    width: 100%;
    text-align: center;
    padding: 25px;
    border-bottom: 2px solid #e3e3e3;
    font-size: 32px;
}

article.page.sans p {
    font-size: 16px;
    line-height: 24px;
    color: #444;
    font-family: "light";
}

article.page.sans strong {
    color: var(--principal);
    font-size: 21px;
    line-height: 37px;
}

.page-body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.bulleted-list {
    display: flex;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
    flex-direction: row;
    align-items: center;
    align-content: stretch;
    flex-wrap: nowrap;
    justify-content: center;
}

.bulleted-list li {
    list-style: none;
}

.hero2:hover {
    background-color: #045e86;
}

.oculto {
    display: none;
}

div.chamada1 {
    width: 100%;
    height: 400px;
    display: flex;
    position: relative;
    float: left;
    margin-bottom: 28px;
    background-image: url(../assets/icons_para_o_site/colleagues-working-together-call-center-with-headphones.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    padding: 0px 15%;
}

div.chamada1 h1 {
    font-size: 32px;
    color: var(--back);
    position: absolute;
    left: 15px;
    text-align: left;
    bottom: 15px;
    line-height: 40px;
}

div.chamada2 h1 {
    font-size: 30px;
    color: white;
    z-index: 20;
    width: 100%;
    margin-bottom: 6px;
    margin-top: 52px;
    text-align: center;
    padding: 24px;
}

div.chamada3 h1 {
    font-size: 27px;
    font-family: 'medium';
    color: var(--back);
    z-index: 20;
    /* width: 67%; */
    text-align: left;
    letter-spacing: 2px;
    /* line-height: 35px; */
    margin-top: 102px;
    margin-left: 13px;
}

.linha_separador {
    width: 90%;
    height: 1px;
    background-color: #5da3c1;
    margin-left: 5%;
    margin-top: 30px;
    margin-bottom: 30px;
}


/* FIM DA PÁGINA PRINCIPAL */


/* PÁGINA SOBRE NÓS */

#Associativismo {
    margin-top: 78px;
}

div.titulo_associativismo {
    text-align: center;
    font-size: 36px;
    background-image: url(../assets/img/associativismo.jpg);
    color: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

div.titulo_associativismo h1 {
    text-shadow: 0px 0px 2px #8a8a8a;
    color: #ffffff;
}

div.Texto_associativismo h1 {
    text-align: center;
    padding: 44px;
    font-size: 36px;
    padding-bottom: 10px;
    color: white;
}

.imgmissao {
    background-image: url(../assets/img/family.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 200px;
}

.imgvisao {
    background-image: url(../assets/img/visao.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 200px;
}

.imgvalores {
    background-image: url(../assets/img/frente_mutuo.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 200px;
}

section #Associativismo,
div.Texto_associativismo p {
    color: #444;
    font-family: "medium";
    font-size: 16px;
    text-align: left;
    line-height: 24px;
    margin-bottom: -15px;
    padding: 25px;
}

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

.elementojeitomutuo {
    position: relative;
    width: 320px;
    height: auto;
}

#o_jeito_mutuo {
    margin-top: -55px;
    padding-bottom: 100px;
}

div.texto_jeito_mutuo h2 {
    text-align: center;
    padding: 44px;
    font-size: 27px;
    font-family: "medium";
}

div.texto_jeito_mutuo h3 {
    text-align: center;
    color: white;
    background-color: var(--secundaria);
    padding: 10px;
}

div.texto_jeito_mutuo p {
    color: #444;
    font-size: 16px;
    line-height: 24px;
    padding: 10px;
    background-color: #f3f3f3;
}


/* FIM PÁGINA SOBRE NÓS */


/* PÁGINA DÚVIDS FREQUENTES */

section#faq2 {
    margin-top: 90px;
}

section#faq2 #lista_perguntas {
    max-width: 800px;
    width: 80%;
    margin: auto;
}


/* FIM PÁGINA DÚVIDS FREQUENTES */

.lista_beneficios img.close {
    position: absolute;
    right: 10px;
    width: 30px;
    top: -10px;
}

.lista_beneficios .aberto img.icon {
    width: 120px;
    height: auto;
}

.lista_beneficios .aberto h4 {
    font-size: 22px;
}

.lista_beneficios .aberto p {
    font-size: 16px;
    margin-top: 10px;
    display: block;
}

.lista_beneficios .aberto button {
    font-size: 16px;
    margin-top: 20px;
    display: block;
    padding: 10px;
    width: 100%;
    height: 55px;
    color: white;
    background-color: var(--principal);
    border: 0px;
    cursor: pointer;
}

#simule_sua_protecao {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #e3e3e3;
    top: 0;
    left: 0;
    padding: 10px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

#simule_sua_protecao img {
    width: 120px;
    height: 120px;
    margin: 20px;
    margin-bottom: 0;
}

#simule_sua_protecao p {
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    padding: 16px 10px;
    background-color: white;
    border-radius: 5px;
    margin-bottom: 10px;
}

#simule_sua_protecao input {
    width: 100%;
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid var(--secundaria);
    padding-bottom: 8px;
    margin-top: 22px;
    font-size: 24px;
    position: relative;
    float: left;
    text-align: center;
}

#simule_sua_protecao .next {
    position: absolute;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secundaria);
    color: white;
    background-image: url(../assets/img/next.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 31px;
    transform: rotate( 90deg);
    transition: 0.2s;
}

#simule_sua_protecao button {
    width: 100%;
    padding: 10px;
    height: 60px;
    font-size: 16px;
    color: white;
    border: 0;
    background-color: var(--secundaria);
    text-transform: uppercase;
    background-image: url(../assets/img/whats.png);
    background-repeat: no-repeat;
    background-position: 14px;
    background-size: 35px;
    border-radius: 5px;
}

img#caixa_elemento {
    margin: 0;
    width: 40px;
    height: 20px;
    margin-bottom: -10px;
    position: relative;
    left: 50%;
    margin-left: -20px;
}

.disapear-mobile {
    display: none;
}

section#dobra-blog {
    position: relative;
    width: 100%;
    padding: 10px;
}

.postagens {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
}

.post {
height: 350px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: var(--light_gray);
    padding: 20px;
    border-radius: 10px;
    background-position: center;
    background-size: cover;
    position: relative;
    width: 360px;
    margin: 5px;
}

.post h3 {
    background-color: #00000055;
    padding: 5px;
    color: white;
    position: absolute;
    width: 85%;
    font-size: 28px;
    line-height: 36px;
    bottom: 10px;
    left: 10px;
    text-decoration: underline;
    cursor: pointer;
}

.post h3 a {
    color: white;
}


/* RESPONSIVIDADE */


/* tela menor que 800px*/

@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;
    }
    #hero2_sessao1 {
        height: auto;
        float: left;
        margin-top: 12px;
        border-radius: 0px;
        position: relative;
        width: 540px;
        text-align: center;
        left: 50%;
        margin-left: -270px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-start;
        background-color: var(--secundaria);
        border-radius: 5px;
        box-shadow: 1px 1px 23px -8px #333;
    }
    .hero2 {
        position: relative;
        float: left;
        width: 180px;
        transition: 0.2s;
        height: 180px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
        justify-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;
        left: 50%;
        margin-left: -150px;
        cursor: pointer;
    }
    section #evento {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        position: relative;
        float: left;
        width: 100%;
    }
    .btn_login {
        display: block;
    }
    .btn_telefone {
        display: flex;
        margin-right: 15px;
    }
    div.chamada1 h1,
    div.chamada2 h1,
    div.chamada3 h1 {
        position: relative;
        font-size: 50px;
        color: white;
        z-index: -1;
        width: 60%;
        margin-bottom: 25px;
        text-align: center;
        padding: 0px;
        line-height: 58px;
    }
    div.chamada1 {
        padding: 15%;
    }
    div.chamada1 h1 {
        left: 15%;
        bottom: 15%;
        position: absolute;
        text-align: left;
        font-size: 34px;
        line-height: 44px;
    }
    section #Juntos_somos_mutuo,
    div.Texto_juntos_mutuo p {
        color: #444;
        font-family: "medium";
        font-size: 16px;
        text-align: center;
        line-height: 24px;
        margin-top: -44px;
        padding: 25px;
        width: 750px;
        left: 50%;
        position: relative;
        margin-left: -375px;
    }
    #Texto1,
    #Texto2,
    #Texto3 {
        display: flex;
        width: 100%;
        position: relative;
        margin-top: 0;
        flex-direction: row;
        align-content: flex-start;
        justify-content: center;
        flex-wrap: nowrap;
        align-items: center;
    }
    #campo_pesquisa {
        width: 400px;
        background-position: 15px;
    }
    #hero h1 {
        position: relative;
        /* float: left; */
        font-size: 50px;
        color: white;
        z-index: 1;
        width: 100%;
        margin-bottom: 25px;
        text-align: center;
        padding: 0px;
        line-height: 58px;
        letter-spacing: 1px;
        margin-top: 11%;
    }
    #numeros #img_numeros {
        display: block;
    }
    #container_passos #img_passos {
        display: block;
    }
    #container_passos #bloco_passos {
        width: 50%;
        padding-top: 50px;
        padding-bottom: 20px;
        box-shadow: 1px 1px 23px -8px #333;
    }
    section#aplicativos #apps_container {
        flex-direction: row-reverse;
    }
    #btn_fixo_tel {
        display: none;
    }
    div#features_associado_container {
        flex-direction: row-reverse;
    }
    div#beneficio2 {
        width: 30%;
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        margin-top: 15px;
    }
    .lista_beneficios .beneficio {
        width: 25%;
        height: 150px;
        transition: 0.2s;
        cursor: pointer;
        position: relative;
        float: left;
        text-align: center;
        padding: 7px;
        overflow: hidden;
    }
    .lista_beneficios {
        width: 100%;
        margin: auto;
        position: relative;
        float: left;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        padding: 0px 15%;
    }
    .lista_beneficios_oculto {
        width: 100%;
        margin: auto;
        position: relative;
        float: left;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
    .lista_beneficios_oculto .beneficio {
        width: 25%;
        height: 150px;
        transition: 0.2s;
        cursor: pointer;
        position: relative;
        float: left;
        text-align: center;
        padding: 7px;
        overflow: hidden;
    }
    .texto_jeito_mutuo {
        padding: 5px;
        display: flex;
        flex-direction: row;
        align-content: flex-start;
        justify-content: space-evenly;
        align-items: flex-start;
    }
    /* ---LOGIN--- */
    #login {
        border: 1px solid #e0e0e0;
        margin-bottom: 40px;
        margin-top: 101px;
    }
    .chamada1 {
        position: relative;
        width: 100%;
        float: left;
        height: 500px;
        font-size: 36px;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-image: url(../assets/icons_para_o_site/colleagues-working-together-call-center-with-headphones.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        margin-bottom: 70px;
        z-index: -1;
    }
    section#Simule_aqui_sua_proteção {
        text-align: center;
        padding: 20px;
        margin-bottom: 40px;
        margin-top: 40px;
        font-family: "light";
        position: relative;
        float: left;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }
    .cont_beneficios {
        position: relative;
        float: left;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .cont_beneficios img {
        margin: 23px;
        height: auto;
        width: 260px;
    }
    .cont_beneficios p {
        position: relative;
        padding-right: 33px;
        text-align: right;
        font-size: 26px;
    }
    /* RODAPE */
    footer {
        background-color: var(--secundaria);
        width: 100%;
        z-index: 0;
        padding: 20px;
        color: white;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: space-between;
        padding-bottom: 90px;
        align-items: flex-start;
    }
    footer div.cont_footer {
        width: 25%;
        padding: 10px;
        margin-bottom: 15px;
    }
    footer div.cont_footer h2 {
        font-size: 20px;
        margin-bottom: 6px;
        margin-top: 16px;
        position: relative;
        float: left;
        width: 100%;
    }
    footer div.cont_footer h3 {
        font-size: 18px;
        margin-top: 14px;
        position: relative;
        float: left;
        width: 100%;
    }
    footer div.cont_footer a {
        text-decoration: none;
        color: white;
    }
    footer div.cont_footer p {
        position: relative;
        float: left;
        margin-bottom: 12px;
        font-size: 16px;
        width: 100%;
        margin-top: 12px;
    }
    footer div.cont_footer img {
        position: relative;
        height: auto;
        margin-right: 10px;
        float: left;
    }
    footer div.cont_footer img.imgsocial {
        width: 50px;
    }
    footer div.cont_footer img.imgapp {
        width: 140px;
        margin-bottom: 0;
        cursor: pointer;
        margin-top: 16px;
    }
    section#evento {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        position: relative;
        float: left;
        width: 100%;
    }
}


/* FIM DE RESPONSIVIDADE */