/*
Theme Name: Elementor Páprica
Theme URI: #
Author: #
Author URI: #
Version: 2.0.0
Description: Descrição do Tema
*/

:root {
    --roxo: #491f53;
    --verde: #00ab97;
    --laranja: #fdc300;
    --azul: #003a63;    
    --branco: #fff;
}
body {    
    height: 100%;
    padding: 0px;	
    margin: 0px;	
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}
a {    
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    text-decoration: none;
}
a img {
    border: none;
}
img{
    display: block;
}
.full {
    width: 100% !important;
    max-width: 100%;
    height: auto;
}
.flex-v {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.flex-h {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
}
/*==================================================
HEADER
====================================================*/
#barra-topo.active{
    position: fixed;    
    left: 0;
    z-index: 9999;
    width: 100%;
    -webkit-animation: fixaTopo 1s forwards; /* Safari 4+ */
    -moz-animation:    fixaTopo 1s forwards; /* Fx 5+ */
    -o-animation:      fixaTopo 1s forwards; /* Opera 12+ */
    animation:         fixaTopo 1s forwards; /* IE 10+, Fx 29+ */    
  animation-iteration-count: 1; 
  animation-delay:0s;   
}
.painel{    	
	display: none;
	z-index: 99999;
    position: fixed;
    top:0;
right:-100%;    
    width: 100% !important;
    max-width: 350px !important;
    overflow-x: hidden;
	-webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s; 
}
.painel.active {
	display: block;
		    -webkit-animation: puxaPainel 1s forwards; /* Safari 4+ */
  -moz-animation:    puxaPainel 1s forwards; /* Fx 5+ */
  -o-animation:      puxaPainel 1s forwards; /* Opera 12+ */
  animation:         puxaPainel 1s forwards; /* IE 10+, Fx 29+ */    
animation-iteration-count: 1; 
animation-delay:0s;    
}
.fechaPainel{
		display: block;
		    -webkit-animation: retornaPainel 1s forwards; /* Safari 4+ */
  -moz-animation:    retornaPainel 1s forwards; /* Fx 5+ */
  -o-animation:      retornaPainel 1s forwards; /* Opera 12+ */
  animation:         retornaPainel 1s forwards; /* IE 10+, Fx 29+ */    
animation-iteration-count: 1; 
animation-delay:0s;  
}

.fechar, 
.ancora{    
    cursor: pointer;
}
@-webkit-keyframes fixaTopo {
    0% {
    top:-150px;
    }
    100% {
    top:0% !important;
    
    }
    }
    @-webkit-keyframes puxaPainel{
    0% {
    right: -100%;
    }
    100% {
    right: 0;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    }
    }
    @-webkit-keyframes retornaPainel {
    0% {
    right:0;
    }
    100% {
    right:-100%;
    }
    }
@-webkit-keyframes fixaTopo {
0% {
    position: fixed;
top: -150px;    
    } 
100% {
    position: fixed;
    top: 0;
-webkit-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
    }
}

/*==================================================
CLASSES
====================================================*/
.cover{
	-webkit-backface-visibility: hidden;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}
.block{
    display: block;
}
.text-align-center{
    text-align: center;
}
.text-align-right{
    text-align: right;
}
.text-align-left{
    text-align: left;
}
.relativo {
    position: relative;
}

/* Grid HTML Classes */
.row {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1440px;
 *zoom: 1;
    justify-content: flex-start;
    text-align: left;
}
.row:before, .row:after {
    content: " ";
    display: table;
}
.row:after {
    clear: both;
}
.row.collapse .column, .row.collapse .columns {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    float: left;
}
.row .row {
    width: auto;
    margin-left: -0.9375em;
    margin-right: -0.9375em;
    margin-top: 0;
    margin-bottom: 0;
    max-width: none;
 *zoom: 1;
}
.row .row:before, .row .row:after {
    content: " ";
    display: table;
}
.row .row:after {
    clear: both;
}
.row .row.collapse {
    width: auto;
    margin: 0;
    max-width: none;
 *zoom: 1;
}
.row .row.collapse:before, .row .row.collapse:after {
    content: " ";
    display: table;
}
.row .row.collapse:after {
    clear: both;
}
.column, .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    width: 100%;
    float: left;
    justify-content: flex-start;
    vertical-align: top;
}
[class*="column"] + [class*="column"]:last-child {
    float: right;
}
[class*="column"] + [class*="column"].end {
    float: left;
}
.large-1 {
    position: relative;
    width: 6.25%;
}
.large-2 {
    position: relative;
    width: 12.5%;
}
.large-3 {
    position: relative;
    width: 18.75%;
}
.large-3col {
    position: relative;
    width: 33%;
    min-width: 33%;
    max-width: 33%;
}
.large-4 {
    position: relative;
    width: 25%;
}
.large-5 {
    position: relative;
    width: 31.25%;
}
.large-6 {
    position: relative;
    width: 37.5%;
}
.large-7 {
    position: relative;
    width: 43.75%;
}
.large-8 {
    position: relative;
    width: 50%;
}
.large-9 {
    position: relative;
    width: 56.25%;
}
.large-10 {
    position: relative;
    width: 62.5%;
}
.large-11 {
    position: relative;
    width: 68.75%;
}
.large-12 {
    position: relative;
    width: 75%;
}
.large-13 {
    position: relative;
    width: 81.25%;
}
.large-14 {
    position: relative;
    width: 87.5%;
}
.large-15 {
    position: relative;
    width: 93.75%;
}
.large-16 {
    position: relative;
    width: 100%;

}

@media only screen and (max-width: 768px) {
.row {
    max-width: 100%;
    margin: 0 auto;
}
.column, .columns, .large-3col {
    display: block !important;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}
}


@font-face {
    font-family: 'RNSSanz';
    src: url('assets/fonts/RNSSanz-Normal.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'RNSSanz';
    src: url('assets/fonts/RNSSanz-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'RNSSanz';
    src: url('assets/fonts/RNSSanz-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'RNSSanz';
    src: url('assets/fonts/RNSSanz-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'RNSSanz';
    src: url('assets/fonts/RNSSanz-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'RNSSanz';
    src: url('assets/fonts/RNSSanz-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'RNSSanz';
    src: url('assets/fonts/RNSSanz-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
  }
  
  /* Versão SC (Small Caps) */
  @font-face {
    font-family: 'RNSSanzSC';
    src: url('assets/fonts/RNSSanzSC-Normal.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'RNSSanzSC';
    src: url('assets/fonts/RNSSanzSC-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'RNSSanzSC';
    src: url('assets/fonts/RNSSanzSC-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'RNSSanzSC';
    src: url('assets/fonts/RNSSanzSC-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'RNSSanzSC';
    src: url('assets/fonts/RNSSanzSC-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'RNSSanzSC';
    src: url('assets/fonts/RNSSanzSC-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'RNSSanzSC';
    src: url('assets/fonts/RNSSanzSC-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
  }
  
  /* Aplicando a fonte ao corpo do site */
  body {
    font-family: 'RNSSanz', sans-serif;
  }
  
  
  
  h1, h2, h3, p, span {
    font-family: 'RNSSanz', sans-serif !important;
  }
  
  li a span {
    font-family: inherit !important;
  }
  
  .page-header {
    display: none;
  }
  
  .title-rounded-left {
    background: rgba(255, 255, 255, 1);
    border-radius: 0px 40px 40px 0px;
    text-align: center;
    padding: 20px;
    margin-left: -35%;
  }
  
  .has-title-left-rounded {
    max-height: 650px;
  }
  
  .has-title-left-rounded .e-con {
    max-height: 500px;
  }
  
  .col-menu-footer {
    max-height: 350px;
  }
  
  div#atributos {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: -10%;
  }
.blog h1{
    color:#fff;
    padding: 20px;
}
.blog figure{
    padding: 0;
    margin: 20px auto;
    display: block;
}
.blog .row{
    max-width: 1100px !important;
}
.alm-load-more-btn{
    background-color: #fff !important;
    color:#666 !important;
    border:1px solid #666 !important;
}
.alm-load-more-btn:hover{
    background-color: #666 !important;
    color:#fff !important;    
}
.lista-posts{
display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.lista-posts .item{
    margin: 30px 0;
}  
.lista-posts .item img{
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    border:1px solid #ccc;
    border-radius: 12px;
}
.lista-posts .item *{
    text-align: justify;
}
.lista-posts .item h2{
    font-size:22px;    
}
.lista-posts .item .meta{
    text-transform: capitalize;
    font-size:13px;
    color:#666;
}
.lista-posts .item h2 a{
    color:#203c8b;
}
.lista-posts .item h2 a:hover{
    color:#0872b7;
}
.lista-posts .item figure{
    position: relative;
}
.lista-posts .item figure .mask{
    position: absolute;
    width: 100%;
    height: 100%;    
    z-index: 3;
    background: rgba(0,0,0,.1);    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color:#fff;
    font-size: 30px;
    
    border-radius: 12px;
    opacity: 0;
      transition: all 0.4s ease;
}
.lista-posts .item figure .mask:hover{      
    opacity: 1;    
    background: rgba(0,0,0,.5);    
}
  .single-post-fullArea{
    min-height:450px;
    width: 100%;
    background:#333;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.single-post-fullArea .tools{                  
    color:#fff;
    width: 100%;
    padding: 20px;            
}      
@media (max-width: 992px) {
  .lista-posts {
    max-width: 93%;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsivo para telas pequenas (celulares) */
@media (max-width: 576px) {
  .lista-posts {
    max-width: 93%;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1008px) {
    .single-post-fullArea {
        min-height: 450px;
        width: 100%;
        background: #333;
        display: flex ;
        flex-direction: column;
        justify-content: flex-end;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center right;
    }
    .single-post-fullArea .tools {
        width: 85%;
    }

    
}
.single-post-fullArea .degrade{background: linear-gradient(to top,rgba(0,0,0,.2),rgba(0,0,0,0));}
.single-post-fullArea .tools span{
    padding: 0 15px;
}
.single-post-fullArea .tools span:not(:last-child){
    border-right:1px solid #fff;
    
}
.single-post-fullArea .tools span:first-child{
    padding-left: 0;
}
.blog .row,
.single-post .row{
    width: 100%;
    max-width:900px; 
    margin:0px auto;
    display: block;
}
.single-post-miolo{                        
    padding: 30px;
}
.single-post-miolo article img{
    display: block;
    max-width:100%;
    height:auto;
}

@media screen and (max-width: 1008px) {
    .single-post-miolo article img {
        width: 100%;

    }
    
}
.single-post-miolo .conteudo{                        
    margin: 30px auto;
}
.category-area{
    margin:35px 0;
    position: relative;
}
.category-area p{
    font-size:20px;
}
.category-area p::after{
border-bottom:2px solid #0872B7;
position: absolute;
left:0;
top:40px;
z-index: 0;
display: block;
content:'';
width: 250px;
height:2px;
}
.search-area {
    display: flex;
    justify-content: start;
    margin: 40px 0 20px;
}

#search {
    display: flex;
    width: 100%;
    max-width: 400px;
}

#s {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid rgba(8, 114, 183, 1);
    border-radius: 20px 0 0 20px;
    font-size: 16px;
    outline: none;
}

#searchsubmit {
    padding: 8px 12px;
    border: 2px solid rgba(8, 114, 183, 1);
    border-left: none;
    border-radius: 0 20px 20px 0;
    background-color: rgba(8, 114, 183, 1);
    color: white;
    cursor: pointer;
    font-size: 16px;
}

#searchsubmit:hover {
    background-color: rgba(8, 114, 183, 1);
}

.search-icon {
    display: inline-block;
}

#s::placeholder {
    font-family: Noto Sans;
    font-weight: 400;
    font-size: 14px;
    line-height: 19.07px;
    letter-spacing: 0%;
    
}

@media (max-width: 480px) {
    #search {
        max-width: 300px;
    }
}
.blog .category-area ul,
.single-post .category-area ul{display:flex; flex-direction: row; margin: 42px 0; padding: 0;}
.blog .category-area ul li,
.single-post .category-area ul li{
    list-style:none;
    display:inline;
    margin: 0 12px 12px 0;
    border:1px solid #0872B7;            
    padding: 8px 16px;
}
.category-area ul li a{
    text-decoration: none; color:#666;
}
.category-area ul li:hover,
.category-area ul li:hover{border-radius:6px;}
.category-area ul li:hover a{
    text-decoration: underline; color:#0872B7; 
}
.single-destaques h2{text-align:center; margin-bottom:30px;}
.single-destaques .row{
    max-width:1400px;
}
.grid-recentes{
    display: flex;
    flex-direction: row;
    gap:30px;
    margin-bottom:40px;
}
@media screen and (max-width: 1008px) {
    .grid-recentes {
        display: flex;
        overflow-x: scroll;
        padding: 10px;
    }

    .single-destaques h2 {
        text-align: center;
        font-size: 32px;
        margin-bottom: 30px;
    }

    .grid-recentes .item{
        min-width: 294px;
    }
    
}

.grid-recentes .item{            
    background:#f8f8f8;
    border-radius:20px;
    position: relative;
    padding-bottom: 20px;
}
.grid-recentes .item a{   
    color:#000 !important;
    font-weight:800;
}
.grid-recentes .item a.leia-mais{   
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 9;
}

.grid-recentes .item h3{ font-size:18px;}
.grid-recentes .item p{ font-size:14px; font-weight: 300; opacity: .6;}
.grid-recentes .item img{
-webkit-border-top-left-radius: 8px;
-webkit-border-top-right-radius: 8px;
-moz-border-radius-topleft: 8px;
-moz-border-radius-topright: 8px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
width: 100%;
}
.grid-recentes .item .content{
    padding: 25px;
}
.grid-recentes .item .meta{
    font-size:13px;
    background: url('./assets/img/data.png') no-repeat center left;
    margin-right: 5px;    
    padding-left: 10px;
}
.grid-recentes .item .meta span{ padding: 0 10px;}
.grid-recentes .item .meta span:first-child{ border-right:1px solid #666;}
