@import "resetar.css";

:root {
    --verde: #76BC21;
    --azul-claro: #00a0DF;
    --azul-escuro: #003da6;
}

body {
    font-family: 'Roboto', sans-serif;
}

.mouse_padrao {
    width: 100%;
    position: fixed;
    text-align: center;
    left: 0;
    bottom: 20px;
    z-index: 10;
    opacity: 0;
    transition: opacity .3s ease-out;
}
.mouse_padrao.mostrar {
    opacity: 1;
}
.mouse_padrao img {
    animation: mouseMover 1s infinite  alternate;
    opacity: .5;
}
@media screen and (max-width:1000px){
    .mouse_padrao.mostrar {
        display: none;
    }
}
#header {
    width: 100vw;
    position: relative;
    background: #F6F6F6;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
    overflow: hidden;
}

#header .conteudo {
    width: calc(100% - 80px);
    max-width: 1100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 140px 0;
}

#header .chamada {
    width: 300px;
    height: 500px;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
#header .chamada.index {
    z-index: 10;
}
#header .chamada .simbolo {
    width: 190px;
    height: 303px;
    position: absolute;
    top: 0;
    opacity: 1;
    transition: top .3s ease-out, opacity .3s ease-out;
}
#header .chamada .simbolo.sumir {
    top: -80px;
    opacity: 0;
}
#header .chamada .logo {
    width: 300px;
    height: 85px;
    position: absolute;
    top: 323px;
}
#header .chamada .logo::before {
    width: 380px;
    height: 120px;
    content: "";
    position: absolute;
    top: -140px;
    left: -40px;
    opacity: 0;
    background-color: #FFF;
    border-radius: 60px;
    box-shadow: 0 4px 5px rgba(0,0,0,.01);
    transition: top .3s ease-out, opacity .3s ease-out;
}
#header .chamada .logo.bg::before {
    top: -20px;
    opacity: 1;
}
#header .chamada .logo.fixo {
    position: fixed;
    top: 15px;
    z-index: 100;
}
#header .chamada .logo div {
    position: absolute;
    left: 0;
}
#header .chamada .logo .coroa {
    top: -10px;
    opacity: 0;
    transition: top .3s ease-out, opacity .3s ease-out;
}
#header .chamada .logo .coroa.mostrar {
    top: 2px;
    opacity: 1;
}
#header .chamada .logo .nome {
    top: 11px;
}
#header .chamada .logo .corretora {
    top: 68px;
    opacity: 0;
    left: -80px;
    transition: left .3s ease-out, opacity .3s ease-out;
}
#header .chamada .logo .corretora.mostrar {
    left: 0;
    opacity: 1;
}
#header .chamada .texto {
    width: 100%;
    height: 30px;
    position: absolute;
    top: 410px;
    text-align: center;
    left: 0;
    transition: left .3s ease-out, opacity .3s ease-out;
    position: relative;
    overflow: hidden;
}
#header .chamada .texto.sumir {
    left: 100px;
    opacity: 0;
}
#header .chamada .texto p {
    width: 100%;
    height: 30px;
    position: absolute;
    line-height: 30px;
    color: var(--verde);
    font-size: 2.4rem;
    line-height: 1.5em;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    top: 30px;
    transition: top .3s ease-out, opacity .3s ease-out;
}
#header .chamada .texto p.mostrar {
    top: 0;
    opacity: 1;
}
#header .chamada .texto p.sumir {
    top: -30px;
    opacity: 0;
}
#header .chamada .seta {
    position: absolute;
    top: 480px;
    animation: mouseMover 1s infinite  alternate;
    opacity: 1;
    transition: opacity .3s ease-out;
}
#header .chamada .seta.sumir {
    opacity: 0;
}
@keyframes mouseMover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}
#header .chamada .seta img {
    cursor: pointer;
}

#header .foto {
    width: 520px;
    height: 487px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
#header .foto .bg {
    width: 510px;
    height: 680px;
    position: absolute;
    left: 5px;
    bottom: 0;
    background: url(../images/foto_bg.jpg) no-repeat center bottom;
    background-size: cover;
    z-index: 1;
}
#header .foto .mascara {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: url(../images/foto_mascara.png) no-repeat center center;
}
#header .foto .mascara::before {
    content: "";
    width: 100%;
    height: 10px;
    background-color: #f6f6f6;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
#header .foto .mascara::after {
    content: "";
    width: 100%;
    height: 10px;
    background-color: #f6f6f6;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

#header .bg {
    width: 100%;
    height: 185px;
    position: relative;
    display: flex;
    background: url(../images/banner_bg.png) no-repeat top right;
    z-index: 3;
}
@media screen and (max-width:1000px){
    #header .conteudo {
        justify-content: center;
    }
    #header .chamada .logo {
        z-index: 100;
    }
    #header .chamada .logo::before {
        width: 200vw;
        left: -100vw;
        border-radius: 0;
        box-shadow: 0 4px 5px rgba(0,0,0,.1);
    }
    #header .foto {
        display: none;
    }
    #header .bg {
        height: 80px;
        background-size: cover;
    }
}
@media screen and (max-height:500px) and (orientation: landscape){
    #header {
        z-index: 1;
    }
    #header .chamada .logo.fixo {
        z-index: 1;
    }
    #header .chamada .logo::before {
        display: none;
    }
    #header .bg {
        z-index: 10;
    }
}

/* QUEM SOMOS */
.quem_somos_fake {
    width: 100%;
    height: 100vh;
    min-height: 740px;
    display: none;
    z-index: 2;
}
.quem_somos {
    width: 100vw;
    height: 100vh;
    min-height: 740px;
    position: relative;
    z-index: 2;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #FFF;
    overflow: hidden;
    transition: opacity .5s ease-out;
    z-index: 3;
}
.quem_somos.fixo {
    position: fixed;
    top: 0;
}

.quem_somos .conteudo {
    width: calc(100% - 370px);
    display: flex;
    flex-direction: row;
    padding-right: 100px;
}

.quem_somos .conteudo h1 {
    width: 150px;
    color: var(--verde);
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    margin: 0 100px 0 0;
    opacity: 0;
    transition: margin .5s ease-out, opacity .3s ease-out;
}
.quem_somos.mostrar .conteudo h1 {
    margin: 0 0 0 100px;
    opacity: 1;
}
.quem_somos .conteudo h1 span {
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.quem_somos .conteudo h1 div {
    font-size: 1.8rem;
    font-size: 3rem;
}
.quem_somos .conteudo h1 strong {
    font-size: 3.8rem;
    font-weight: 700;
}
.quem_somos .conteudo p {
    flex-grow: 1;
    flex-basis: 0%;
    font-size: 1.8rem;
    line-height: 1.5em;
    padding-top: 20px;
    margin: 0 60px 0 0;
    position: relative;
    color: #666;
    opacity: 0;
    transition: margin .5s ease-out, opacity .5s ease-out;
}
.quem_somos .conteudo p.mostrar {
    margin: 0 0 0 60px;
    opacity: 1;
}
.quem_somos .conteudo p::after {
    content: "";
    width: 0;
    height: 4px;
    background-color: var(--azul-claro);
    position: absolute;
    top: 0;
    left: 0;
    transition: width .3s ease-out .2s;
}
.quem_somos .conteudo p.mostrar::after {
    width: 40px;
}

.quem_somos .ceu {
    width: 550px;
    height: 482px;
    position: absolute;
    right: -260px;
    overflow: hidden;
    z-index: 1;
    transition: right .5s ease-out;
}
.quem_somos.mostrar .ceu {
    right: -160px;
}
.quem_somos .ceu .bg {
    width: 550px;
    height: 482px;
    position: absolute;
    left: 5px;
    z-index: 1;
}
.quem_somos .ceu .bg figure {
    width: 100%;
    height: 1000px;
    background: url(../images/ceu_bg.jpg) no-repeat center bottom;
    bottom: -100px;
    left: 0;
    position: absolute;
    transition: bottom .3s ease-outf;
}
.quem_somos .ceu .mascara {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: url(../images/ceu_mascara.png) no-repeat center bottom;
}
.quem_somos .ceu .mascara::before {
    content: "";
    width: 100%;
    height: 10px;
    background-color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.quem_somos .ceu .mascara::after {
    content: "";
    width: 100%;
    height: 10px;
    background-color: #FFF;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
@media screen and (max-width:1500px){
    .quem_somos .conteudo {
        width: calc(100% - 300px);
        padding-right: 20px;
    }
    .quem_somos .conteudo h1 {
        margin: 0 40px 0 0;
    }
    .quem_somos.mostrar .conteudo h1 {
        margin: 0 0 0 40px;
    }
    .quem_somos .conteudo p {
        margin: 0 40px 0 0;
    }
    .quem_somos .conteudo p.mostrar {
        margin: 0 0 0 40px;
    }
    .quem_somos .ceu {
        right: -360px;
    }
    .quem_somos.mostrar .ceu {
        right: -260px;
    }
}
@media screen and (max-width:1350px){
    .quem_somos .conteudo {
        width: 100%;
        padding-right: 80px;
        z-index: 2;
    }
    .quem_somos .conteudo p {
        background-color: #FFF;
        padding: 20px 10px 10px 10px;
        border-radius: 20px;
        box-shadow: 0 4px 5px rgba(0,0,0,.01);
    }
    .quem_somos .conteudo p::after {
        top: 10px;
        left: 10px;
    }
    .quem_somos .ceu {
        z-index: 1;
    }
}
@media screen and (max-width:1200px){
    .quem_somos .ceu {
        display: none;
    }
    .quem_somos .conteudo h1 {
        width: 130px;
    }
    .quem_somos .conteudo {
        width: 100%;
        padding-right: 40px;
    }
    .quem_somos .conteudo p {
        padding: 10px 0 0 ;
        border-radius: 0;
        box-shadow: none;
    }
    .quem_somos .conteudo p::after {
        top: 0;
        left: 0;
    }
}
@media screen and (max-width:1000px){
    .quem_somos_fake {
        display: none !important;
    }
    .quem_somos {
        height: auto;
        min-height: auto;
        padding-top: 100px;
    }
    .quem_somos.fixo {
        position: relative;
        top: auto;
    }
    .quem_somos .conteudo {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
        padding: 0 20px;
    }
    .quem_somos .conteudo h1 {
        width: 100%;
        text-align: center;
        margin: 0 0 0 -40px;
    }
    .quem_somos.mostrar .conteudo h1 {
        margin: 0;
    }
    .quem_somos .conteudo p {
        width: calc(100vw - 40px);
        max-width: 400px;
        margin: 40px 0 0 -40px;
    }
    .quem_somos .conteudo p.mostrar {
        margin: 40px 0 0 0;
    }
}
/* PRODUTOS */
.produto_fake {
    width: 100%;
    height: 100vh;
    min-height: 650px;
    display: none;
    z-index: 4;
}
.produto {
    width: 100%;
    height: 100vh;
    position: relative;
    padding-top: 100px;
    min-height: 650px;
    background-color: #FFF;
    overflow: hidden;
    z-index: 5;
}
.produto.fixo {
    top: 30px;
    position: fixed;
}
.produto .conteudo {
    width: 200vw;
    min-width: 1200px;
    display: flex;
    margin-left: -50vw;
    flex-direction: row;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease-out;
}
.produto .familia {
    width: 550px;
    height: 482px;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.produto .familia .bg {
    width: calc(100% - 10px);
    height: 100%;
    position: absolute;
    left: 5px;
    z-index: 1;
    overflow: hidden;
}
.produto .familia .bg figure {
    width: 900px;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../images/familia_bg.jpg) no-repeat center left;
}
.produto .familia .mascara {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: url(../images/familia_mascara.png) no-repeat center center;
}
.produto .familia .mascara::before {
    content: "";
    width: 100%;
    height: 10px;
    background-color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.produto .familia .mascara::after {
    content: "";
    width: 100%;
    height: 10px;
    background-color: #FFF;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.produto .margem {
    width: calc(100% - 900px);
    transition: width .3s ease-out;
    position: relative;
    z-index: 1;
}
.produto .conteudo {
    opacity: 1 !important;
}
.produto .texto {
    width: 500px;
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
}
.produto .texto h1 {
    width: 100%;
    color: var(--verde);
    flex-direction: column;
    margin: 0 0 50px -40px;
    text-align: center;
    opacity: 0;
    transition: margin .5s ease-out, opacity .5s ease-out;
    display: none;
}
.produto .texto h1.mostrar {
    margin: 0 0 50px 0;
    opacity: 1;
}
.produto .texto h1 span {
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.produto .texto h1 strong {
    font-size: 3.8rem;
    font-weight: 700;
}
.produto .texto  p {
    width: 500px;
    font-size: 1.8em;
    line-height: 1.5em;
    color: #666;
    margin: 15px 0;
}
.produto .texto h2,
.produto .texto h3 {
    font-size: 1.8em;
    line-height: 1.5em;
    font-weight: 700;
    color: var(--verde);
}
.produto .texto h2 {
    max-width: 400px;
    font-size: 2.2rem;
    line-height: 1.2em;
}
.produto .texto h3 {
    position: relative;
    padding-bottom: 8px;
    color: var(--azul-claro);
}
.produto .texto h3::after {
    width: 100%;
    max-width: 80px;
    height: 4px;
    background-color: var(--azul-claro);
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
}
@media screen and (max-width:1200px){
    .produto_fake {
        display: none !important;
    }
    .produto {
        height: auto;
        min-height: auto;
        padding-top: 100px;
    }
    .produto.fixo {
        position: relative;
        top: auto;
    }
    .produto .conteudo {
        width: 100%;
        min-width: 100%;
        display: flex;
        margin-left: 0;
        padding: 0 20px;
    }
    .produto .familia {
        display: none;
    }
    .produto .margem {
        display: none;
    }
    .produto .texto {
        width: calc(100% - 40px);
        max-width: 400px;
    }
    .produto .texto h1 {
        display: flex;
    }
    .produto .texto p,
    .produto .texto h2,
    .produto .texto h3 {
        width: 100%;
        margin-left: -40px;
        opacity: 0;
        transition: margin-left .5s ease-out, opacity .3s ease-out;
    }
    .produto .texto p.mostrar,
    .produto .texto h2.mostrar,
    .produto .texto h3.mostrar {
        margin-left: 0;
        opacity: 1;
    }
    .produto .texto h3 {
        padding-bottom: 15px;
    }
}
@media screen and (max-height:500px) and (orientation: landscape){
    .produto {
        padding-bottom: 50px;
    }
}

/* PARCEIRO */
.parceiro_fake {
    width: 100%;
    height: calc(100vh - 100);
    min-height: 750px;
    display: none;
    z-index: 7;
}
.parceiro {
    width: 100%;
    height: calc(100vh - 100);
    min-height: 750px;
    position: relative;
    padding: 100px 20px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: opacity .5s ease-out;
    overflow: hidden;
    background-color: #FFF;
    z-index: 8;
}
.parceiro.fixo {
    position: fixed;
    left: 0;
    top: 0;
}
.parceiro header {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.parceiro header h1 {
    font-weight: 700;
    color: var(--verde);
    opacity: 0;
    margin: 0 10px;
    transition: opacity .3s ease-out, font-size .3s ease-out;
}
.parceiro header span {
    width: 0;
    height: 2px;
    background-color: var(--azul-claro);
    transition: width .3s ease-out;
}
.parceiro p {
    width: 100%;
    height: 30px;
    position: relative;
    text-align: center;
    font-size: 1.8rem;
    color: #666;
    padding: 0 10px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.parceiro p::after {
    width: 10px;
    height: 3px;
    content: "";
    background-color: var(--verde);
    display: none;
    margin: 0 0 2px 2px;
    animation: piscar .8s infinite;
}
.parceiro p.mostrar::after {
    display: block;
}
@keyframes piscar {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.parceiro .logo {
    width: 200%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 120px;
}
.parceiro figure {
    padding: 30px;
    border-radius: 80px;
    background-color: #EEE;
    opacity: 0;
    transition: margin .3s ease-out, opacity .3s ease-out;
}
.parceiro figure img {
    height: 70px;
}
@media screen and (max-width:1000px){
    .parceiro_fake,
    .parceiro {
        height: 700px;
    }
    .parceiro header {
        margin-top: 20px;
    }
    .parceiro p {
        max-width: 320px;
        height: 3em;
        line-height: 1.5em;
        align-items: flex-start;
    }
    .parceiro p.mostrar::after {
        display: none;
    }
    .parceiro .logo {
        flex-direction: column;
        align-items: center;
        margin-top: 80px;
    }
    .parceiro .logo figure {
        margin: 20px;
        max-width: calc(100vw - 40px);
    }
    .parceiro .logo figure img {
        max-width: calc(100vw - 100px);
        max-height: 70px;
        height: auto;
    }
}
@media screen and (max-height:750px){
    .parceiro p {
        max-width: 100%;
        height: 30px;
        line-height: 30px;
    }
    .parceiro .logo {
        flex-direction: row;
        align-items: center;
        margin-top: 20px;
    }
}
@media screen and (max-height:500px) and (orientation: landscape){
    .parceiro_fake {
        height: 500px;
        min-height: auto;
    }
    .parceiro {
        height: 500px;
        min-height: auto;
        padding-top: 0;
    }
    .parceiro .logo figure img {
        max-height: 40px;
    }
}

.fundo_branco {
    width: 100%;
    height: 185px;
    position: relative;
    display: flex;
    background-color: #FFF;
    z-index: 6;
}

/* FOOTER */
#footer {
    width: 100%;
    align-items: center;
    position: relative;
    display: flex;
    margin-top: -185px;
    flex-direction: column;
    z-index: 10;
}
#footer .bg {
    width: 100%;
    height: 185px;
    position: relative;
    display: flex;
    background: url(../images/footer_bg.png) no-repeat top right;
    z-index: 3;
}
#footer .conteudo {
    width:100%;
    padding-top: 100px;
    background-color: #f6f6f6;
    display: flex;
    justify-content: center;
}
#footer .conteudo .centralizar {
    width: calc(100% - 40px);
    max-width: 1000px;
}
#footer .conteudo h2 {
    font-weight: 700;
    font-size: 1.6rem;
    margin-top: 30px;
    color: #666;
}
#footer .conteudo .contato {
    font-size: 1.6rem;
    margin-top: 5px;
    color: #666;
}
#footer .conteudo .copy {
    width: 100%;
    margin: 300px 0 50px 0;
    color: #999;
    font-size: 1.2rem;
}
@media screen and (max-width:1000px){
    .fundo_branco {
        height: 80px;
    }
    #footer {
        margin-top: -80px;
    }
    #footer .bg {
        height: 80px;
        background-size: cover;
    }
}
@media screen and (max-height:500px) and (orientation: landscape){
    #footer .conteudo {
        padding-top: 50px;
    }
    #footer .conteudo .copy {
        margin-top: 50px;
    }
}
