@charset "ISO-8859-1";
/**
*  Folha de estilo do meu framework
*  Autor Jorge Rodrigues
*/


:root  {
   /*--max_width: 1366px;  /** largura maxima do site */
   --max_width: 1920px;  /** largura maxima do site */
}


/*
Alteramos o valor da fonte padrão do navegador de 16px para 10px.
Desta forma, 12px passa a equivaler a 1.2em, 14px fica equivalente a 1.4em, etc.
*/
* {
   font-size: 62.5%;
   transition-duration: 0s;  /* Faz qualquer alteraçao de posicao e tamanho dos elementos serem animadas. */
}

*.notransition {
   transition-duration: 0s !important;
}

/*
Garante que todas as imagens, videos e conteúdos embedados fiquem com a largura
máxima de 100% do tamanho do seu container.
*/
img, picture, video, embed {
   display: block;
   max-width: 100%;
   height: auto;
}


/*
BORDER-BOX
Todos os elementos agora levarão em conta apenas a largura e altura
determinada, sem somar a este valor a borda e o padding
*/
*, *:before, *:after {
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
}


/******************
*  CLEARFIX
*/
.clearfix {
   zoom: 1;
}.clearfix:before,
.clearfix:after {
   content: " ";
   display: table;
}

.clearfix:after {
   clear: both;
}



html {
   /*-moz-transform: scale(1);*/
   width: 100%;
   height: 100%;
   scroll-behavior: smooth;
}

body {
   zoom: 1;    /* safari */
   display: block;
   width: 100%;
   min-width: 320px;
   height: 100%;
   margin: 0;
   padding: 0;
}

section {
   position: relative;
   padding: 0;
}

ul.no_bulet {
   margin-left: 0;
   list-style-position: outside;
   list-style-type: none;
}

::-moz-selection { /* Code for Firefox */
   color: #EEEEEE;
   background: #00AEB8;
}
::selection {
   color: #EEEEEE;
   background: #00AEB8;
}




/********************
*   ESTRUTURA
*/
.full {
   width: 100%;
   min-width: 230px;
   margin: 0 auto;
   padding: 0;
}
.media {
   width: 85%;
   min-width: 280px;
   max-width: var(--max-width);
   margin: 0 auto;
   padding: 0;
}
.small {
   width: 60%;
   min-width: 280px;
   margin: 0 auto;
   padding: 0;
}
.small_extra {
   width: 70%;
   min-width: 280px;
   margin: 0 auto;
   padding: 0;
}
.half {
   width: 49.9%;
   min-width: 280px;
   padding: 0;
}
.maxwidth {
   max-width: 1366px;
}
/**
Full_extra eh um full que extrapola a largura do seu pai em 10%, criando
um quadro que mantem o conteudo alinhado à grid.
Os valores das propriedades margin-left e padding devem ser
a metado do percentual extrapolado em width. Sesta forma, o
quaro ficara centralizado e o conteudo alinhado com a grid
do resto da pagina.
*/
.full_extra{
   width: 110%;
   margin-left: -5%;
   background-color: #F5F5F5;
   padding: 5%;
}

.spacer_v_20 {
   display: block;
   margin: 20px 0;
}
.spacer_h_20 {
   display: block;
   margin: 0 20px;
}
.spacer_v_30 {
   display: block;
   margin: 30px 0;
}
.spacer_h_30 {
   display: block;
   margin: 0 30px;
}


@media only screen and (min-width: 1500px) {
   .media {
      width: 80%;
   }
   .small {
      width: 55%;
   }
}
@media only screen and (max-width: 860px) {
   .media {
      width: 80%;
   }
   .small {
      width: 70%;
   }
}
@media only screen and (max-width: 600px) {
   .media {
      width: 90%;
   }
   .small {
      width: 90%;
   }
}




/********************
*  IMAGENS
*/

.img_full {
   width: 100%;
}
.thumbs,
.bg_img,
.img_background {
   background-color: #F2F2F2;
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
}



/********************
*  TIPOGRAFIA
*/
h1:first-child,
h2:first-child,
h3:first-child {
   margin-top: 0;
}

h1.h1_seo {
   overflow: hidden;
   position: absolute;
   width: 1px;
   height: 1px;
   margin: -1px;
   border: 0;
   padding: 0;
   clip: rect(0 0 0 0);
}

p:first-child {
   margin-top: 0;
}
p:last-child {
   margin-bottom: 0;
}

.citacao {
   line-height: 2.2em;
}
.citacao:before,
.citacao:after {
   display: inline-block;
   width: 30px;
   height: 22px;
   content: '\02EE';
   font-size: 2.7em;
   font-style: italic;
   overflow: hidden;
}

.recuo {
   text-indent:4em;
}

.text_warp {
   white-space: normal;
   word-break: break-word;
   word-wrap: break-word
}

.relev {
   box-shadow: 2px 2px 2px 0px #bcb9b9;
}

.towcols {
   -webkit-column-count: 2;
   -moz-column-count: 2;
   column-count: 2;
   -webkit-column-gap: 10px;
   -moz-column-gap: 10px;
   column-gap: 10px;
}


/**
*   POSICIONAMENTO
*/
/* classes úteis de posicionamento.
   Ex.: Tenho uma lista de caixas separadas por margin. Pra última caixa se alinhar com a borda,
   é bom colocar a classe last nela
*/
.top { margin-top: 0; vertical-align: top; vertical-align: top;}
.bottom { margin-bottom: 0; vertical-align: baseline;  vertical-align: bottom;}
.left { margin-left: 0 !important; float: left; }
.right { margin-right: 0 !important; float: right; }
.center { margin: 0 auto; vertical-align: middle; }
.first { margin-top: 0; margin-left: 0; vertical-align: top;}
.last { margin-bottom: 0; margin-right: 0; vertical-align: bottom;}


.rounded4 {
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   border-radius: 4px;
}



/***
*   ELEMENTOS COM COMPORTAMENTO DE LABEL EM FORMULARIOS OU NAO
*/
.label {
   position: absolute;
   display: block;
   top: 0;
   left: 0;
   width: auto;
   padding: 10px 5px;
   line-height: 1.1em;
   font-size: 0.75em;
   font-weight: bold;
   text-align: center;
   text-transform: uppercase;
   color: #ffffff;
}
.label span {
   padding: 0 20px;
   border-left: 2px solid #FFF;
   border-right: 2px solid #FFF;
   vertical-align: middle;
}



/***
*  BARRA DE ROLAGEM
*/
.scrollbar {
   float: left;
   height: 300px;
   /*width: 100%;*/   /* Para o body, definir width com 100%. Para outros elementos, definir o width necessario na regra do elemento.*/
   background: #F5F5F5;
   overflow-y: scroll;
   margin-bottom: 25px;
}
.scrollbar::-webkit-scrollbar-track {
   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
   border-radius: 0;  /*10px;*/
   background-color: #F5F5F5;
}
.scrollbar::-webkit-scrollbar {
   width: 15px;
   background-color: #D51439;
}
.scrollbar::-webkit-scrollbar-thumb
{
   border-radius: 0; /*10px;*/
   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
   background-color: #D51439;
}
/* FIM DAS REGRAS PARA BARRA DE ROLAGEM */




/***
*  PARA FORMULARIOS
*/
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
   color: #999999;
   font-size: 1em;
}
::-moz-placeholder { /* Firefox 19+ */
   color: #999999;
   font-size: 1em;
}
:-ms-input-placeholder { /* IE 10+ */
   color: #999999;
   font-size: 1em;
}
:-moz-placeholder { /* Firefox 18- */
   color: #999999;
   font-size: 1em;
}


.obrigatorio:before {
   content: "*";
   color: #ff0000;
   font-size: 1.2em;
}

label {
   color: #999;
   font-size: 1em;
   margin: 10px 0 5px 0;
}
input,
select,
textarea {
   padding: 5px;
   border: 1px solid #ccc;
   color: #999;
   font-size: 1em;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   border-radius: 3px;
}
.button,
button,
input[type="submit"],
input[type="button"] {
   border: none;
   background-color: #777777;
   font-size: 1em;
   color: #fff;
   padding: 8px 15px;
   cursor: pointer;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   border-radius: 3px;
}
.button:not(:disabled),
input[type="submit"]:not(:disabled):not(.disabled),
input[type="reset"]:not(:disabled):not(.disabled),
input[type="button"]:not(:disabled):not(.disabled),
button:not(:disabled):not(.disabled) {
   cursor: pointer;
}
textarea {
   white-space: pre-wrap;
}

input:focus,
select:focus,
textarea:focus {
   border: 1px solid #333333;
   background-color: #fff;
}
@media screen and (max-width: 860px) {
   input,
   select,
   textarea {
      padding: 10px;
   }
}
@media screen and (max-width: 630px) {
   input,
   select,
   textarea {
      padding: 15px;
   }
}
/* FIM DAS REGRAS PARA FORMULARIOS */



/***
* PARA ELEMENTO FIGURE E IMAGENS
*/
figure {
   background-color: #efefef;
}
figure > figcaption {
   padding: 3px;
   line-height: 1.3em;
   font-size: .7em;
   font-family: Arial,Tahoma,Verdana ;
   font-weight: normal;
}
/* FIM DAS REGRAS PARA ELEMENTO FIGURE E IMAGENS */



/***
* PARA CENTRALIZAR SOMENTE NA VERTICAL
*/
.vertical-center {
   margin: 0;
   position: absolute;
   top: 50%;
   -ms-transform: translateY(-50%);
   transform: translateY(-50%);
}



/***
* PARA CENTRALIZAR HORIZONTAL E VERTICAL
* ATENÇAO: o container pai deve estar com position: relative
*/
.center1 {
   position: absolute;
   display: table;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
.center1 .center2 {
   display: table-cell;
   vertical-align: middle;
}
.center1 .center2 .center3 {
   padding: 0 100px;
   margin-left: auto;
   margin-right: auto;
}
/* PARA CENTRALIZAR HORIZONTAL E VERTICAL */



/**
*  EFEITOS DE FILTRO
*/
.filtro_saturacao:hover {
   filter: saturate(0.35);
   -webkit-filter: saturate(0.35);
}
.filtro_sepia:hover {
   filter: sepia(.6);
   -webkit-filter: sepia(.6);
}
.filtro_grayscale:hover {
   filter: grayscale(100%);
   -webkit-filter: grayscale(100%);
}
.filtro_hue:hover {
   filter: hue-rotate(366deg);
   -webkit-filter: hue-rotate(366deg);
}
.filtro_contrasteup:hover {
   filter: contrast(150%);
   -webkit-filter: contrast(150%);
}
.filtro_contrastedown:hover {
   filter: contrast(80%);
   -webkit-filter: contrast(80%);
}
/*  FIM EFEITOS DE DILTRO  */


