
/* button hamburguer */

.buttonhamb {
    display: none;
    align-items: center;
    justify-content: center;
}

.button_mob__hamb{
    border: 1px solid #fff;
    border-radius: 3px;
    padding: .5em .1em;
    display: none;
    transition: 1s all;
}

#checkbox-menu {
    position: absolute;
    opacity: 0;
}

.buttonhamb label {
    cursor: pointer;
    position: relative;
    display: block;
    height: 22px;
    width: 30px;

}

.buttonhamb label span {
    position: absolute;
    display: block;
    height: 5px;
    width: 100%;
    border-radius: 30px;
    background-color: #fff;
    transition: all 0.25s ease-in-out;
}

.buttonhamb label span:nth-child(1) {
    top: 0;
}

.buttonhamb label span:nth-child(2) {
    top: 8px;
}

.buttonhamb label span:nth-child(3) {
    top: 16px;
}

#checkbox-menu:checked+label span:nth-child(1) {
    transform: rotate(-45deg);
    top: 8px;
}

#checkbox-menu:checked+label span:nth-child(2) {
    opacity: 0;
}

#checkbox-menu:checked+label span:nth-child(3) {
    transform: rotate(45deg);
    top: 8px;
}


/* fim botao hmaburguer */


.head{
    background-color: #1a4385;
    width: 100%;
    height: 100px;
}

.head .container{
    height: 100%;
    padding-bottom: 1em;
}

.head_flex{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
}

.head__img a img{
    width: 300px;
    height: 60px;
}

.head__unidades{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .2em;
    cursor: pointer;
    position: relative;
}


.button_unidades{
    background-color: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    
}

.head__links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
}

.head__links a{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.links__header{
    display: flex;
    justify-content: center;
    gap: .5em;
}

@media screen and (max-width:1100px){
    .head{
        height: auto;
        padding: 1em 0;
    }
    .head__links{
        margin-top: 1em;
    }
}
@media screen and (max-width:720px){
   .head_flex{
    justify-content: space-between;
    
   }
   .head__unidades{
    display: none;
   }
   .head__links{
    width: 100%;
   }
   .buttonhamb{
    display: flex;
    margin: 0 .5em; 
   }
   .button_mob__hamb{
        display: block;
   }
}

.navi{
    height: 60px;
}

.navi .container{
    height: 100%;
}

.navigation{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4em;
    height: 100%;
}

.navigation a{
    font-size: 16px;
}

.navigation a:hover{
    font-weight: bold;
    color: #222;
}

.navigation__item{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .2em;
}

.head__unidades__list{
    position: absolute;
    background-color: #fff;
    left: 20px;
    top: 23px;
    display: none;
    z-index: 2;
    width: 250px;
    border-radius: 2px;
    box-shadow: 0px 0px 10px;
    padding-bottom: .3em;
}

.head__unidades:hover > .head__unidades__list{
    display: block;
}
.unidades__list_itens{
    width: 100%;
}
.unidades__list_itens div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: .1em .8em;
    border-radius: 2px;
    width: 100%;
}

.unidades__list_itens div li{
    width: 100%;
}

.unidades__list_itens div:hover{
    box-shadow: 0px 0px 1px ;
    padding: .2em .2em;
    background-color: #f1f1f1;
    position: relative;
}
.unidades__list_itens div li{
    padding: .3em 0;
}
 


.centrooeste_link ul li{
    padding: .6em 0;
}



.norte_link,
.parana_link,
.sul_link,
.triangulo_link,
.santo_link,
.bh_link,
.centrooeste_link
{
    display: none !important;
    position: absolute;
    right: -251px;
    top: 0;
    box-shadow: 0px 0px 1px ;
    padding: .2em .4em;
    background-color: #fdfdfd;
    min-width: 200px;
}

.itens_bh:hover > .bh_link{
    display: block !important;
    background-color: #fdfdfd;
    padding: .2em .4em;
    position: absolute;
}


.itens_centrooeste:hover > .centrooeste_link  {
    display: block !important;
    position: absolute;
    background-color: #fdfdfd;
    padding: .2em .4em;
}

.link_item:hover > .norte_link  {
    display: block !important;
    position: absolute;
    background-color: #fdfdfd;
    padding: .2em .4em;
}
.link_item:hover > .parana_link  {
    display: block !important;
    position: absolute;
    background-color: #fdfdfd;
    padding: .2em .4em;
}
.link_item:hover > .sul_link  {
    display: block !important;
    position: absolute;
    background-color: #fdfdfd;
    padding: .2em .4em;
}
.link_item:hover > .triangulo_link  {
    display: block !important;
    position: absolute;
    background-color: #fdfdfd;
    padding: .2em .4em;
}
.link_item:hover > .santo_link  {
    display: block !important;
    position: absolute;
    background-color: #fdfdfd;
    padding: .2em .4em;
}

.norte_link ul li:hover,
.parana_link ul li:hover,
.sul_link ul li:hover,
.triangulo_link ul li:hover,
.santo_link ul li:hover,
.centrooeste_link ul li:hover,
.bh_link ul li:hover
{
   background-color: #f0f0f0;
}





@media screen and (max-width:720px){
    .navegacao{
        display: none;
    }
}
@media screen and (max-width:380px){
    .head__img a img{
        width: 200px;
        height: 40px;
    }
}
@media screen and (max-width:280px){
    .head__img a img{
        width: 150px;
        height: 40px;
    }
    .head__links{
        flex-direction: column;
    }
}

/* seguros */

.head_seguros{
    position: relative;
    cursor: pointer;
}

.seguros__list{
    display: none;
    background-color: #fff;
    transition: 1s all;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 25px;
    padding: .5em;
    width: 200px;
    box-shadow: 0px 0px 1px;
}

.head_seguros:hover > .seguros__list{
    display: block;
}

.seguros__list ul a li{
    padding: .3em 0;
}
.seguros__list ul a li:hover{
    background-color: #f1f1f1;
}

/* planos  */
.head_planos{
    position: relative;
    cursor: pointer;
}
.head_planos_list{
    position: absolute;
    left: -35px;
    top: 22px;
    background-color: #fff;
    z-index: 3;
    width: 350px;
    border-radius: 3px;
    box-shadow: 0px 0px 1px;
    display: none;
}

.head_planos:hover > .head_planos_list{
    display: block;
}
.list__content__group{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: .5em .8em;
    position: relative;
}
.list__content__group a,
.list__content__group a span{
    width: 100%;
}

.list__content__group:hover {
    background-color: #f1f1f1;
}


.sublist__individuais,
.sublist__adesao,
.sublist__empresariais,
.sublist__odonto
{
    position: absolute;
    top: 2px;
    right: -201px;
    width: 200px;
    background-color: #fff;
    display: none;
    border-radius: 3px;
    padding: .2em;
    box-shadow: 0px 0px 1px;
}
.list__content__group:hover > .sublist__individuais,
.list__content__group:hover > .sublist__adesao,
.list__content__group:hover > .sublist__empresariais,
.list__content__group:hover > .sublist__odonto
{
    display: block;
}
.sublist__individuais div a p,
.sublist__adesao div a p,
.sublist__empresariais div a p,
.sublist__odonto div a p
{
    padding: .4em;
    background-color: #fff;
    width: 100%;
}
.sublist__individuais div a p:hover,
.sublist__adesao div a p:hover,
.sublist__empresariais div a p:hover,
.sublist__odonto div a p:hover
{
    background-color: #f1f1f1;
}

/* lista para clicar no mobile operadoras*/

.content_operadoras_mobile{
    background-color: #fff;
    width: 100%;
    
}

.unidades__version_mob{
    width: 100%;
    
}
.unidades__version_mobile{
    width: 100%;
    color: #fff;
    background-color: #222;
    padding: .5em;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1em;
}
.content__unidade_version > div{
    padding: 1em .8em;
    border-bottom: 1px solid #292929;
    background-color: #fdfdfd;
    color: #1a4385;
    width: 100%;
}

.list_seguros__mob{
    padding-top: 1.5em;
}

.list_seguros__mob ul a li{
    padding: 1em .5em;
    border:1px solid #292929;
    border-radius: 3px;
    margin-bottom: .5em;
}


.mob_planos__list{
    margin: 2em 0;
}

.mob_planos__list div p{
    color: #fff;
    text-align: center;
    padding: .5em;
    margin: .7em 0;
    background-color: #1a4385;
}
.mob_planos__list div div ul a li{
    padding: 1em 0;
}
.mobile_unidades{
    background-color: #f1f1f1;
}
.mobile_unidades__cidade,
.mobile_unidades__cidade_link{
    padding: .7em 0;
    border-bottom: 1px solid #1a4385;
    text-align: center;
}

.unidades__cidade__title,
.unidades__cidade__title_link{
    font-weight: 700;
    padding: .4em 0;
    font-size: 18px;
}


.unidades__cidade__list ul li{
    padding: 1em 0;
    font-size: 16px;
    width: 100%;
    background-color: #fff;
    margin: .5em 0;
    color: #1a4385;
    font-weight: 600;
}


































