@import url("screen.css");
/* @import url("antiscreen.css") handheld; 
@import url("antiscreen.css") only screen and (max-device-width:480px); */

/*

Theme Name: Tema Mauro 2023
Theme URI: 
Author:
Author URI: 
Description: Tema criado para o site de Mauro Pinheiro
Version: 1.0
*/


@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import 'css/reset.css';
@import 'css/about.css';
@import 'css/home.css';
@import 'css/posts_ensino.css';
@import 'css/index_publicacoes.css';
@import 'css/index_ensino.css';
@import 'css/index_apresentacoes.css';


@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Serif+4:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* :root{

      MOBILE 
    --topo_pagina: 2.2rem;
 }*/

p{
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  color: #5A534B;
  margin-bottom: 0.5rem;
}

body { width: 100%; height: 100%; overflow-x: hidden; }

strong{
  font-weight: 700;

}



.bold_fonte{
  font-weight: 400;
}

b{
  font-weight: 700;

}

.pesquisa{
  display: none;
}

a:hover{
    text-decoration: none;
}

 *{
   text-decoration: none;
   text-align: left;
 }

 html {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body{
   background-color:#D9D3D0 ;
 }
/* margens gerais */
 .container_header{
   margin: 3.6rem 2rem ;
   margin-bottom: 0;
 }

 .topo{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 40px;
    justify-content: space-between;
  }
 
  .titulo_mauro, .titulo_mauro_home{
    font-family: 'Source Serif 4', serif;
    font-weight: 900;
    font-size: 28px;
    color: #fff;
    padding: 0;
 
  }


.search{
  position: relative;

  width: 24px;
  height: 24px;
  overflow: hidden;
  display: flex;
}

.search.active{
  position: absolute;
  z-index: 1000;
  top:-8px;
  right: 33px;
  width: 265px;
  height: 40px;
  background-color: #fff;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  align-items: center;

}

.search:hover{
  cursor: pointer;

}

.search:hover .material-symbols-outlined{
  color: #E47E4C;

}

.material-symbols-outlined{
  width: 24px;
  height: 24px;
  color: #78706C;


}

#busca{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.search .input{

  position: relative;
  width: 220px;
  height: 40px;
  left:10px;
  display: flex;
  justify-content: left;
  align-items: left;

}

.search.active .input input{
  position: absolute;
  top: 0;
  width: 100%
;
  height: 100%;
  border: none;
  outline: none;
  font-size: 18px;
  font-family: 'Source Serif 4', serif;
  color: #5A534B;

}
 
 nav {
   height: 60px;
   display: flex;
   flex: row;
   align-items: center;
   justify-content: flex-end;
 }
 
 .menu-open{
  height: 24px;
   i {
     color: white;
     font-size: 36px;
     padding-left: 10px;
   }
 }

 .material-icons{
   color: #78706C;

 }

 #seta{
   color: white;  


 }
 
 .menu-close {
  height: 40px;
  align-items: center;

   i {
    font-size: 36px;
     padding: 10px;
     text-decoration: none;

   }
 }


 .icones{
   display: flex;
   flex-direction: row;
   width: 20%;
   justify-content: space-between;
   align-items: center;
 }

 .icones_laterais{
  position: absolute;
  right: 2rem;
  display: flex;
  gap: 1rem;


  justify-content: space-between;
  
 }
 
 .side-nav {
   padding: 4rem 2rem 0 2rem;
   position: absolute;
   transition: transform .35s ease-out;
   background: #5A534B;
   height:10000px;
   width: 100%;
   box-shadow: 0 5px 6px 4px rgba(0,0,0,.2);
   transform: translateX(102%);
   will-change: transform;
   display: flex;
   flex-direction: row-reverse;
   justify-content: space-between;
   z-index: 1000;
 }
 
 .side-nav-container {

   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
   pointer-events: none;

   
   &:before {
     transition: opacity 0.3s cubic-bezier(0,0,0.3,1);
     content: '';
     display: block;
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     background: rgba(0,0,0,.4);
     will-change: opacity;
     opacity: 0;
     pointer-events: none;
   }
 }
 
 .side-nav-animatable {
   .side-nav {
     transition: transform .33s cubic-bexier(0,0,.3,.1);
   }
   
   &.side-nav-visible .side-nav {
     transition: transform 0.33s cubic-bezier(0,0,0.3,1);
    }
 }
 
 .side-nav-visible {
   pointer-events: auto;
   
   .side-nav {
     transform: none;
   }
   
   &:before {
     opacity: 1;
   }
 }

 .menu-close{
   display: flex;
   
 }

 .menu_lista{
  margin-left: 2rem;
 }

 li{
  text-align: left;
}


 .divisoes{
   line-height: 30px;
   padding-bottom: 6px;
   margin-left: 0.625rem;
 }

 .divisoes a{
  text-decoration: none;
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 22px;
  color: #fff;

 }

 .grande_secao a{
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 50px;
  color: #fff;
  text-decoration: none;

 }

 .divisoes a:hover{

  cursor: pointer;
  color: #E88A50;


 }

 .side-nav ul li a:hover{
  cursor: pointer;
  color: #E88A50;

 }

 #corrente{
   color: #D9D3D0;
 }

 .titulo_pagina_desktop{
  display: none;
 }



 .titulo_pagina_mobile{
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-family: 'Source Serif 4', serif;
    font-weight: 300;
    font-size: 26px;
    color: #D35404;
    text-align: left;
       
    
 }

 .js-side-nav-container {

  width: 100%;   /* Ocupa toda a largura da tela */
  height: 10000px;



}



/* TABLET */

@media (min-width: 600px){

 /* :root{

    TABLET 
    --topo_pagina: 3rem;

    } */
 }
 @media (min-width: 1180px){

     /* :root{
     
          WEB 
         --topo_pagina: 3rem;
     
     } */

     .container_main{
      margin: 0 4.5rem;
     }

     .container_header{
      margin-left: 4.5rem;
      margin-right: 4.5rem;
      margin-bottom: 2.5rem;


    }

    .icones_laterais{
      right: 4.5rem;
    }

  
    .titulo_pagina_mobile{
      display: none;
    }

    .nome_pagina{
      display: flex;
      gap: 4.5rem;
      align-items: center;
    }
    .titulo_pagina_desktop{
      display: flex;
      font-family: 'Source Serif 4', serif;
      font-weight: 300;
      color: #D35404;
      max-width: 810px;
      line-height: 32px;
      font-size: 26px;
    }
    #destaque:hover{
      cursor: pointer;
      color: #D35404;


     }

     .side-nav{
     right: 0;
     width: 350px;
     }
     

    /* tamanho de fonte no menu desktop */
    .divisoes a{
      font-size: 18px;      
      /* line-height: 50px; */
    
     }
    
     .grande_secao a{
      font-size: 22px;
      line-height: 40px;
    
     }

     .side-nav-container {

      position: fixed;}

      #textosearch {
        width: 640px;
      }





 }
 @media (max-width: 600px){
  .search{
    display: none;
  }
  .pesquisa {
    z-index: 1000;
    top: 40px;
    right: 33px;
    width: 260px;
    height: 40px;
    background-color: #fff;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  #mysearch_dois{
    border: none;
  }
  
  .input_dois input{
    border: none;
    outline: none;
    font-size: 18px;
    font-family: 'Source Serif 4', serif;
    color: #5A534B;
  }
  
   }
  

