* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}



nav {
    background: linear-gradient( to right,#fff8b1 , #ffd700);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 5px;
    margin-top: 1.5px;
}

/* refere-se aos links do navgation */
.links { 
    text-decoration: none;
    margin-left: .4rem;
    color: #333;
    font-weight: bold;
    padding: .4rem;
    
}

.links:hover {
    border: #eee9b7;
    background: #eee9b7;
    transition: .5s;
    border-radius: 5px;
}


.logo-projeto-RS {
    height: 100px;
    padding: .5rem;
    
}

.container {
    position: relative;
    background: #fff8b1;
    margin-top: .2rem;

}

.text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
        
}

.container-quemSomos {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.perfil {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container-quemSomos img {
    margin-top: 1rem;
    max-width: 100%;
    height: 100px;
    display: block;
}

.container-quemSomos p {
    margin-top: .5rem;
    font-size: 1.2rem;
    font-weight: bold;
}


.encontre-me {
    display: flex;
    gap: .5rem
}


#logo-rede-sociais {
   height: 30px;
}


.missaoVisaoValores {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
  
.row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.column, .column-full {
    flex: 1;
    margin: 0 10px;
}

.column-full {
    flex: none;
    width: 100%;
}

.mvv-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
    border-radius: 10px;
    background: #ffd700;
    width: 130px;
    align-items: center;
    text-align: center;
}

.text-m-v-v {
    font-size: 1em;
    line-height: 1.5;
    color: #555;
    text-align: justify;
}


/* CSS footer */
.footerMissaoVisaoValores {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient( to left,#eee9b7 , #ffd700);
    gap: 10px;
    padding: 5px;
}

#logoProjetoFooter {
    height: 50px;
    margin-top: 5px;
}

.redeSociais {
    height: 25px;
    margin-left: .5rem;
    
}

.redeSociais:hover {
    background:#ffffff;
    border-radius: 30px;
    transition: .3s;
}


#copyright {
    margin-top: -.5%;
}