:root{
    --dark-blue: #0979d1;
    --light-blue: #ecfaff;
    --blue: #6fb2f1;

    --white: #eee;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', arial, sans-serif;
}

.header-topo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 3rem;
    background-color: var(--dark-blue);
    color: var(--white);
    font-family: 'Inter', arial, sans-serif;
    font-weight: 400;
}

.header-topo img{
    height: 1.5rem;
    margin: 0.2rem;
}

.header-topo span{
    padding-left: 0.5rem;
}

/*Começo do Menu*/

.header-menu{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-grow: 1;
    background-color: var(--light-blue);
}

.subtitle h2{
    font-size: 1.5rem;
    margin-bottom: 0;
}

.card-image{
    background-color: #c0e0f8;
    padding: 0.5rem;
}

.menu{
    display: flex;
    flex-direction: row;

}
.menu ul{
    display: flex;
}

.menu ul li{
    color: var(--white);
    padding: 0.5rem;
    list-style: none;

}

.menu ul li a{
    font-family: 'Inter';
    font-weight: 600;
    text-decoration: none;
    color: #222;
    padding: 0.5rem;
}

.logo{
    display: flex;
    margin: 1rem;
}

.menu{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-blue);
}

.imageMenu{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.3rem;
}

.imageMenu img{
    margin: 0.3rem;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 17px -2px #000000; 
    box-shadow: 2px 2px 17px -2px #000000;
    height: 6rem;
}

#dicasDeSaude{
    display: flex;
    justify-content: space-evenly;
    background-color: var(--dark-blue);
    color: var(--white);
}
.dicaTexto{
    width: 65%;
    font-size: 1.2rem;
    padding: 1.4rem;
}
.btnDica{
    display: flex;
    justify-content: center;
    align-items: center;
}
.btnDica a{
    background-color: var(--white);
    padding: 1rem;
    border-radius: 2rem;
    color: #222;
}
.btnDica a:hover{
    background-color: #ccc;
    transition-delay: 5ms;
}

.mapa{
    height: 30rem;
}

.rodape{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 0.7rem;
}
.rodapeTexto{
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 1rem;
}
.rodapeLogo img{
    height: 3.5rem;
}

.quemSomos{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    
}

.quemSomos img{
    height: 25rem;
    align-items: left;
    padding: 2rem;
}

#dropdown{
    height: 2rem;
}