body{
    font-family: "Montserrat", sans-serif;
    margin: 0;
}
a{
    text-decoration: none;
}
header{
    display: flex;
    position: fixed;
    justify-content:center;
    align-items: center;
    color:rgba(1,53,110,1.0);
    width: 100%;
    height: 100px;
    background-color: rgba(255,255,255,1);
    box-sizing: border-box;
    z-index:1000;
}
header a{
    color:rgba(1,53,110,1.0);
}
li{
    list-style: none;
}
h2{
    color: rgba(1,53,110,1.0);
    text-align: center;
}
.logo{
    height: 75px;
}
header ul{
    display: flex;
    margin: 0;
    padding: 0;
    height: 100px;
}
header li{
    display: flex;
    text-align: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    font-weight: 600;
}
header li:hover{
    cursor: pointer;
    color: rgba(0,166,211,1.0);
}
.pagina{
    display: block;
    padding: 35px 22px 20px 22px;
}
.atual{
    color:rgba(0,166,211,1.0);
}
.abertura{
    
    background-size: cover;
    background-image: url("../imagens/familiafeliz3.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    padding: calc(10% + 100px) 5% 10% 5%;
    align-items: center;
    height: 570px;
}
h1{
    margin: 0;
    color:rgba(0,166,211,1.0);
    font-size: 5rem;
    width: 70%;
}
.slogan{
    color: rgba(255,255,255,1);
    margin-bottom: 150px;
}
@media(max-width:1175px){
    .slogan{
    color: rgba(255,255,255,1);
    margin-bottom: 100px;
}
}
.form_cotacao{
    box-sizing: border-box;
    max-width: 50%;
    align-items: center;
    border-radius: 5px;
    color: rgba(1,53,110,1.0);
}
.abertura label{
    width: 100%;
    text-align: start;
    font-size: 1rem;
    font-weight: 600;
    
}
.titulo_form{
    margin: 0;
    font-size: 1.9rem;
}
.descricao_form{
    text-align: center;
    margin-bottom: 40px;
    font-size: 1rem;
}

.select-botao-container {
    display: flex;
    align-items: stretch;
}

.s_contato{
    width: 60%;
    height: 50px;
    padding: 0;
    padding-left: 5%;
    box-sizing: border-box;
    border: 1px solid #c0bcbc;
    color: rgba(1,53,110,1.0);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    opacity: 0.9;
}
.s_contato:invalid {
    color: rgba(115, 115, 115, 1.0);
}

.b_contato{
    width: 40%;
    height: 50px;
    font-size: 1rem;
    font-weight: 600;
    border:0;
    background-color: rgba(1,53,110,1.0);
    color: rgba(255,255,255,1);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    opacity: 0.9;
}
.s_contato:hover,.b_contato:hover{
    cursor: pointer;
    opacity: 1;
}

.servicos{
    padding: 5%;
    background-color: rgb(247, 251, 255);
}
.servicos a, .servicos a:visited a{
    color:rgba(0,0,0,1)
}
.titulo{
    font-size: 50px;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.seg{
    color:rgba(1,53,110,1.0);
}
.container{
    margin: 5% 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    column-gap: 10px;
    justify-items: center;
    align-items: center;
}
@media(max-width:1722px){
    .container{
        grid-template-columns: repeat(3, minmax(250px,1fr));
    }
}
@media(max-width:809px){
    .container{
        grid-template-columns: repeat(2, minmax(250px,1fr));
    }
}
.icone{
    width: 60%;
    margin-left: 20%;
    border-radius: 5px 5px 0 0;
}
.servico_nome{
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.produtos{
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    padding: 5% 0;
}
.slides {
    display: flex;
    width: 100%;
    height: 100%;
    animation: none;
    transition: transform 0.5s ease;
}
/* Define o posicionamento por classe */
.produtos.slide-index-0 .slides {
  transform: translateX(0%);
}
.produtos.slide-index-1 .slides {
  transform: translateX(-100%);
}

.slide{
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    font-size: 30px;
}

.container_seguradora, .container_planosaude{
    display: flex;
    width: 95%;
    align-items: center;
    justify-content: center;
}
.seguradora{
    width: 14%;
    margin: 1%;
}

.arrow {
    position: absolute;
    top: 60%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    transform: translateY(-50%);
    border-bottom: 2px solid rgba(0,166,211,1.0);
    border-left: 2px solid rgba(0,166,211,1.0);
  }
.prev {
    left: 20px;
    transform: rotate(45deg);
  }

.next {
    right: 10px;
    transform: rotate(-135deg);
  }

.sobre_nos{
    padding: 5% 10%;
    background-color: rgb(247, 251, 255);
}
.texto{
    width: 100%;
    font-size: 20px;
}
.azul{
    color: rgba(1,53,110,1.0);
}
.contato{
    padding-top: 5%;
}
.container_contato{
    display: grid;
    margin: 0 5%;
    grid-template-columns: repeat(3, minmax(25%,1fr));
    column-gap: 15px;
    margin-bottom: 50px;
}
.c_conteudo{
    width: 100%;
    height: 200px;
    padding: 5%;
    box-sizing: border-box;
    border-top: solid rgba(1,53,110,1.0) 2px;
    background-color:rgb(247, 251, 255);
}
.c_conteudo a{
    color: rgba(0,0,0,1);
}

.mapa{
    width: 100%;
    display: flex;
    justify-content: center;
}
.iframe_maps{
    width: 100%;
    height: 400px;
    border:0;
}

footer{
    padding: 2% 10%;
    background-color: rgba(1,53,110,1.0);
    display: flex;
}
footer a{
    color:rgba(255,255,255,1)
}
.container_footer{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25%,1fr));
    margin: 0 5%;
}
footer h2{
    width: 100%;
    color:rgba(255,255,255,1);
    text-align: left;
    margin-top: 0;
}

footer a:visited{
    color: rgba(255,255,255,1);
}

.facebook,.instagram{
    height: 20px;
    width: 20px;
    margin-right: 20px;
    color: rgba(255,255,255,1);
}

.bloco{
    display:flex;
    align-items: center;
}

.list_footer{
    color:rgba(255,255,255,1);
    padding: 0;
    margin: 0 0 30px 0;
}

.list_footer li{
    line-height: 25px;
}

.list_footer li:first-of-type{
    line-height: normal;
}

.menu-toggle{
    display:none;
}

address{
    font-style: normal;
}









@media screen and (max-width:768px){
    .menu{
        display:none;
    }
    header{
        height: auto;
        min-height: 55px;
        padding: 10px 2%;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .logo{
        margin-left: 3%;
    }
    .navbar{
        height: auto;
    }
    .menu-toggle{
        display: flex;
        flex-direction: column;
    }
    .bar{
        background-color: rgba(0,166,211,1.0);
        height: 3px;
        width: 30px;
        margin: 4px;
    }
    .ativo{
        width: 100%;
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .pagina{
        width: 100%;
        padding: 35px 22px
    }
    .abertura{
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        padding:0;
        padding-top: 100px;
        background-image: url("../imagens/fundo_celular.jpg");
    }
    .slogan{
        margin-bottom: 50px;
    }
    .form_cotacao{
        width: 80%;
        max-width: 80%;
    }
    h1{
        font-size: 35px;
        margin-bottom: 50px;
        text-align: center;
    }
    h2{
        font-size: 25px;
    }
    .titulo{
        font-size: 25px;
    }
    .servicos{
        padding-top: 100px;
    }
    .container{
        grid-template-columns: repeat(1, minmax(250px,1fr));
    }
    .produtos{
        padding-top: 100px;
    }
    .slide .titulo{
        margin: 0;
        position: relative;
        top: 0;
    }
    .arrow{
        display:none;
    }
    .container_seguradora{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .container_planosaude{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 70px 0;
    }
    .seguradora{
        width: 40%;
        margin: 5%;
    }
    .sobre_nos{
        padding-top: 100px;
    }
    .container_contato {
        grid-template-columns: repeat(1, minmax(260px, 550px));
        row-gap: 20px;
        justify-content: center;
    }
    .contato{
        padding-top: 100px;
    }
    footer{
        flex-wrap: wrap;
        padding: 5% 10%;
    }
    .container_footer{
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
    .footer_margin{
        margin-bottom: 30px;
    }
}




