*{
    --principal: rgb(71, 71, 140);
    --principal-light: rgb(98, 100, 175);
    --nav-color: rgb(185, 175, 185);
    --gray: rgb(186, 172, 207);
    --active:  rgb(255, 255, 255);
  }
  html,
  body {
    padding: 0px;
    margin: 0px;
    letter-spacing: 1.5px;
    font-family: 'Righteous', sans-serif;
    color: #4c1e6e;
    height: 100%;
  }
  body {
    background: rgba(0, 0, 0, 0.5);
  }

  img{
    border: 1px solid black;
  }

  .newHome{ /* Nova classe para o link "AjudaSAE" na barra lateral */
    color: white;
    text-decoration: none;
    font-weight: bold;
  }

  .nav__links > li > .activeLink, .link > .activeLink{
    color: var(--active);
  }

  .contentArea > header > nav{
    width: 100%;
  }

  .nav__links{
    display: flex; 
    width: 100%;
  }

  .Page {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
  }

  .contentArea {
    display: flex;
    flex-direction: column;
    width:100%;
  }

  .content > div img {
    display: block;
    border: 1px solid black;
    margin: 15px 0;
    max-width: 700px;
  }
  .TopBar {          
      padding: 30px;
    }
    
    .nav__links > li{
        height: 100%;
        padding: 10px 10px;
        cursor: pointer;
    }

    .link > a, .nav__links > li > a{
        font-size: 16px;
        color: var(--nav-color);
    }

    .content {
        background-color:  	#c9bedb;
        font-family: 'Titillium Web', sans-serif;
        color: black;
        width: 100%;
        height: 100%;
    }

    .options-index > li > a{
        font-family: 'Titillium Web', sans-serif;
        font-weight: bold;
        letter-spacing: -0.5px;
    }

    .SideBar {
        width: 20%;
        max-width: 200px;
        background-color: var(--principal);
        padding: 10px 0px 20px 0px;
        height: auto;
        border-right: 1px solid black;
        color: white;
        border-collapse:separate;
        min-width: 100px;
    }

     ol > li > .img-text {
        border-style: 1px solid black;
        display: inline ;
        margin: 0px;
        vertical-align: middle;
    }

    .link {
        font-weight: 300;
        text-align: center;
        position: relative;
        height: 40px;
        line-height: 40px;
        overflow: hidden;
        border-bottom: 1px solid black;
        cursor: pointer;
        padding: 10px 5px 5px 0px;
    }

    .link:hover > a, .nav__links > li:hover > a{
        transition: all 0.3s ease 0s; 
    }

    .link:hover > a, .nav__links > li:hover > a{
        color:var(--active); 
    } 


    .link:hover,  .nav__links > li:hover{
        background-color:var(--principal-light);
    }


    
    
    .contentArea > li, a, button { 
        font-family: 'Righteous', sans-serif;
        font-weight: 500;
        text-decoration: none;
    }
    
    header{
        background-color: var(--principal);
        display: flex;
        justify-content:left;
        border-left: 1px solid black;
        border-bottom: 1px solid black;
        margin-left: -1px;
    }
    
    .nav__links{
        list-style: none;
        padding-left: 0px;
        max-height: 70px;
        margin: 0px;
    }
    
    .nav__links li{
        margin:0px;
        display: inline-block;
        padding: 2vh 10px;
        border-right: 1px solid black;
    }
    
    .nav__links li a, .SideBar div a{
        transition: all 0.3s ease 0s; 
    }
    
    .nav__links li a:hover, .SideBar div a:hover{
        color:rgba(255, 255, 255, 0.75); 
    } 

    .content a:hover{
        color: rgb(0, 0, 209);
    }

    .content a{
        color: rgba(1, 1, 61, 0.842);
    }
    .content a{
        font-size: 20px;
        transition: all 0.3s ease 0s;
    }
    .content li{
        margin-bottom: 8px;
    }

    .logo {
        font:Righteous;
        padding:15px;
        font-size: 16px;
        border-bottom: solid 2px white;
    }

    .nav__links > :last-child{
      margin-left: auto !important;
      border-left: 0.5px solid white;
    }

    .nav__links > :last-child {
      cursor: auto;
      pointer-events: none;
      color: white;
    }



@media screen and (max-width: 950px){
   .nav__links > li > a{
        font-size: 14px;
   }

   .link a{
    font-size: 13px;
   }

   .logo{
    font-size: 12px;
   }

  .content > div img {
    max-width: 500px;
  }
}

@media screen and (max-width: 830px){
   .nav__links > li > a{
        font-size: 12px;
   }

    .link > a{
    font-size: 11px;
   }

   .link{
    padding: 5px 5px 5px 0px;
   }

    .logo{
    font-size: 10px;
   }

   .content{
    font-size:12px;
   }

     .content > div img {

    max-width: 300px;
  }
}

@media screen and (max-width: 770px){
   .nav__links > li > a{
        font-size: 10px;
   }

    .link > a{
    font-size: 9px;
   }

   .link{
    padding: 3px 3px 3px 0px;
   }

    .logo{
    font-size: 9px;
   }

   .content{
    font-size:10px;
   }

     .content > div img {

    max-width: 300px;
  }
}


