@CHARSET "UTF-8";

.fullWidth {
    width: 100vw;
}

.fullHeight {
    height: 100wh;
}
.minHeight11em {
    min-height: 12em;
}
.minFullHeight {
    min-height: 100vh;
}

.backIntro {
    background: #37474f;
    background-image: url(/media/hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; 
}

.backRadial {
    background-color: #424242;
    background: radial-gradient(circle, #616161, #424242);
    color:white;
    z-index: 10;
}

.backMapa01 {
    background-image: url(/media/metodologia.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.backMapa02 {
    background-image: url(/media/eixos.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sectionFullPadding {
    padding-top: 60px; 
    padding-bottom: 60px;
}

.sectionTopPadding {
    padding-top: 60px; 
}

div {
    position: relative;
}

.fonteTitulo {
    font-family: 'Roboto';
}

.fonteDescricao {
    font-family: 'Yanone Kaffeesatz';
    font-weight: 200;
}

.fonteRodape {
    font-family: 'Yanone Kaffeesatz';
    font-weight: 100;
    font-size: 1.1em;
}

.fonteBotao {
    font-family: 'Yanone Kaffeesatz';
    font-size: 1.1em;    
}

.fontSizeExtra {
    font-size: 1.1em;    
}

.fontSizeExtraBig {
    font-size: 1.4em;
}

.textoJustificado {
    text-align: justify;
}

.textoEsquerda {
    text-align: left;
}

.textoDireita {
    text-align: right;
}

.logoTestemunho {
    max-width: 70ppx;
    max-height: 70px;
    padding: 5px;
}

.efeitoLogoTestemunho > img {
/*
    border-width: 2px;
    border-color: gray;
    border-style: solid;
*/
    opacity: 0;
    position: relative;
    top: 0px;
    transition: top .3s, opacity 0.3s;
}

.efeitoLogoTestemunho:hover > img {
    opacity: 1;
    top: -10px;
    transition: top .5s, opacity 0.5s;

}

.posBotaoSaberMais {
    position: absolute;
    bottom: 0;
    left: calc(50% - 100px);
}

.botaoSaberMais {
    padding-bottom: 10px;
    padding-top: 10px;
    width: 200px;
    border-width: 1px;
    border-style: solid;
    border-radius: 30px;
    box-sizing: border-box;
    text-transform: uppercase;
    transition: color .3s, background-color .3s, font-weight .3s;
}

.botaoSaberMais:hover {
    color: black;
    background-color: rgba(255,255,255,.8);
    transition: color .5s, background-color .5s, font-weight .5s;
    font-weight: 700;
}

.botaoSaberMaisBranco {
    border-color: white;
    background-color: rgba(255,255,255,.1);    
    color:white;
}

.botaoSaberMaisAzul {
    color:white;
    border-color: #2196f3;
    background-color: #bbdefb;
}

.botaoSaberMaisAzul:hover {
    color: white;
    background-color: #2196f3;
    border-color: #bbdefb;
    transition: color .5s, background-color .5s, font-weight .5s;
}



.frasesWrapper {
    display: block;
    position: relative;
    height: 100%;
}

.frases {
    position: absolute;
    display: block;
    top: 20px;
    opacity: 0;
    left: 0px;
    animation: frasesFade 26s infinite;
    animation-timing-function: ease-in-out;
    min-width: 100%;
}

.frases:nth-of-type(1) {
    animation-delay: 0s;
}
.frases:nth-of-type(2) {
    animation-delay: 8s;
}
.frases:nth-of-type(3) {
    animation-delay: 16s;
}


@keyframes frasesFade {
    0% {
        top: 20px;
        opacity: 0;
        left: 0px;
    }
    2% {
        top: 0px;
        opacity: 1;
        left: 0px;
    }
    25% {
        opacity: .8;
        left: 0px;
    }
    28% { 
        opacity: 0;
        left: -100px;
    }
    30% {
        opacity: 0;
        left: -100px;
        top: 0px;
    }
    100% {
        opacity: 0;
        left: -100px;
        top: 0px;
    }    
}


.topMenu {
    position: fixed;
    top: 0px;
    z-index: 20;
    background: rgba(255,255,255,.95);
    height: 50px;

    min-width: 100vw;
    overflow: hidden;
}


.sombraTexto {
     text-shadow: 2px 2px 5px black;
}

p {
    font-family: 'Yanone Kaffeesatz';
    font-size: 1.5em;
    color: #afafaf;
}

.logoScorebiz {
    margin-top: 10px;
}


h3 {
    color:white;
}

h5 {
    color: #bdbdbd;
}

.spaceMin {
    display: block;
    height: 2vh;
}
.spaceSep {
    display: block;
    height: 3vh;
}

.botaoOpcaoMenu {
    padding-bottom: 1px;
    padding-top: 1px;
    width: 150px;
    box-sizing: border-box;
    font-family: 'Yanone Kaffeesatz';
    font-weight: 100;
    border-width: 1px;
    border-color: transparent;
    border-style: solid;
    border-radius: 30px;
    transition: color .5s, border .5s, background-color .5s;
}

.botaoOpcaoMenu:hover {
    color:white;
    border-width: 1px;
    border-color: white;
    border-style: solid;
    border-radius: 30px;
    background-color: rgba(255,255,255,.2);
    transition: color .5s, border .5s, background-color .5s;
}


.menuOpcao {
    font-family: 'Yanone Kaffeesatz';
    color: #bdbdbd;
    font-weight: 100;
    transition: color 0.5s, text-shadow 0.5s, border 0.1s;
    padding: 4px;
}

.menuOpcao:hover {
    color:#565656;
    color: dodgerblue;
    border-bottom-width: 3px;
    border-bottom-color: dodgerblue;
    border-bottom-style: solid;
    cursor: pointer;
}

.sharetool {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    cursor: pointer;
    transition: -webkit-filter 0.5s, filter 0.5s;
}

img.sharetool:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    transition: -webkit-filter 0.5s, filter 0.5s;
}

.sliderWrapper {
    position: relative;
    border-radius: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0,0,0,.5);
    overflow: hidden;
    min-height: 7em;
}


.sliderHandler1 {
    position: absolute;
    border-radius: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0,0,0,.5);
    background: rgba(0,0,0,.3);
    left: 0px;
    height: 100%;
    width: 20%;
    transition: left 0.5s;
    transition-timing-function: ease;
    vertical-align: middle;
    text-align: center;
}
 
.sliderTitle {
    position: absolute;
    width: 100%;
    top: 0px;
    text-align: center;
    left: 0px;
    font-family: 'Yanone Kaffeesatz';
    font-weight: 400;
    font-size: 1.7em;
    text-transform: uppercase;
    height: 100%;
    vertical-align: middle;
    padding-top: 1.2em;
}

.sliderText1 {
    position: relative;
    top: 0px;
    padding: 10px;
    padding-right: 20%;
    left: -200%;
    font-family: 'Yanone Kaffeesatz';
    font-family: 1.5em;
    transition: left 0.5s;
    transition-timing-function: ease;
    text-align: left;
}


.sliderWrapper:hover > .sliderHandler1  {
    left: 80%;
    text-shadow: 2px 2px 2px black;
}

.sliderWrapper:hover > .sliderText1 {
    left: 0%;

}

@media screen and (max-width: 992px) {
    
    .fonteTitulo {
        font-size: 1.2em;
    }
    
    .fonteDescricao {
        font-size: 1em;
    }
    
    .fonteRodape {
        font-size: 0.9em;
    }
        
}

#parceirospub .valign {
	display:none;
}

@media screen and (max-width: 600px) {
    
    .topMenu {
        position: fixed;
        top: 0px;
        z-index: 20;
        max-height: 50px;
        height: auto;
        background: rgba(255,255,255,.95);
        min-width: 100vw;
        transition: color .5s, max-height .5s, background-color .5s;
   }
    
    .topMenu:hover {
        max-height: 100vh;
    }
    
    .menuOpcao {
        color: #bdbdbd;
        transition: background-color 0.5s, color 0.5s, text-shadow 0.5s, border 0.1s;
    }

    .menuOpcao:hover {

        color: dodgerblue;
        cursor: pointer;
        border: none;
    }
        
}


   