/* banner */
#principal {
    margin-top: -80px;
    padding-top: 80px;
}

.banner {
    background: #10481f;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    position: relative;
}

.anxty-parallax {
    position: relative;
}

.banner-back {
    width: 110vw;
    margin-left: -5vw;
    height: 100vh;
    max-height: 1080px;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: relative;
    background-size: cover;
}

.front {
    z-index: 3;
    position: absolute;
    top: 0;
}

.mid {
    z-index: 2;
    position: absolute;
    top: 0;
}

.back {
    z-index: 1;
}

.banner-title {
    width: 100%;
    position: absolute;
    top: 20%;
    left: 0;
    z-index: 100;
    font-size: 2.2rem;
}

.banner-title h3 {
    font-weight: 300;
}

.banner-title svg {
    max-width: 580px;
    width: 80%;
    margin: 0 auto;
    display: block;
}

.banner-title h2 {
    font-weight: 800;
}

.banner-title h3 span {
    font-weight: 300;
}

.banner-title h2 span {
    font-weight: 800;
}

.dark { color: #999; }
.light { color: #fff; }
.green h3 { color: #22b745; }
.green h2 { color: #10481f; }
.red { color: #D2140E; }

.phraseShow-question, .phraseShow-answer {
    overflow: hidden;
    position: relative;
    height: 50px;
    padding-bottom: 20px;
}

.phraseShow-answer {
    margin-top: -20px;
}

.phraseShow-question span {
    display: block;
    margin-top: -70px;
}

.phraseShow-answer span {
    display: block;
    margin-top: 70px;
}

.flip-question { animation: flipQuestion 0.8s cubic-bezier(0.23, 1, 0.32, 1.2) forwards; animation-delay: 0.3s; }
.flip-answer { animation: flipAnswer 0.8s cubic-bezier(0.23, 1, 0.32, 1.2) forwards; animation-delay: 1.3s; }

@keyframes flipQuestion {
    0% { margin-top: -50px; }
    100% { margin-top: 0px; }
}
@keyframes flipAnswer {
    0% { margin-top: 50px; }
    100% { margin-top: 0px; }
}

.button-call {
    margin-top: -13px;
    font-size: 1.3rem;
    padding-left: 20px;
    height: 30px;
    position: relative;
    display: block;
    overflow: hidden;
    padding: 4px 0 4px 20px;
}

.button-call-bar {
    width: 4px;
    height: 0px;
    position: absolute;
    left: 0;
    top: 0;
    animation: growBar .4s ease-in-out forwards;
    animation-delay: 2s;
    transition: 0.3s;
}

.button-call:hover .button-call-bar {
    width: 100%;
}

.button-call:hover h4 {
    color: #fff;
}

.button-call h4 {
    text-indent: 30px;
    top: 6px;
    position: absolute;
    left: -100%;
    font-weight: 600;
    animation: growText .7s cubic-bezier(0.23, 1, 0.32, 1.2) forwards;
    animation-delay: 2.4s;
}

@keyframes growBar {
    0% { height: 0px; }
    100% { height: 100%; }
}

@keyframes growText {
    0% { left: -100%; }
    100% { left: 0; }
}

.light-green { color: #22b745; }
.dark-green { color: #007936; }
.dark-red { color: #D2140E; }

.light-green .button-call-bar { background: #22b745; }
.dark-green .button-call-bar { background: #007936; }
.dark-red .button-call-bar { background: #D2140E; }


/* banner movements */
.horizontal #foreground {
    transform: translate(10%, 0);
    animation: fore-horizontal 5s alternate forwards ease-in-out;
}
.horizontal #midground {
    transform: translate(-1%, 0);
    width: 110%;
    background-size: cover;
    animation: mid-horizontal 5s alternate forwards ease-in-out;
}
.horizontal #background {
    transform: translate(-1%, 0);
    width: 110%;
    background-size: cover;
    animation: back-horizontal 5s alternate forwards ease-in-out;
}

@keyframes fore-horizontal {
    0% { transform: translate(10%, 0); }
    100% { transform: translate(0, 0); }
}
@keyframes mid-horizontal {
    0% { transform:translate(-1%, 0); }
    100% { transform: translate(-5%, 0); }
}
@keyframes back-horizontal {
    0% { transform: translate(-1%, 0); }
    100% { transform: translate(-3%, 0); }
}


/* vertical  */
.vertical #foreground {
    transform: translate(0, 0);
    animation: fore-vertical 5s alternate forwards ease-in-out;
}
.vertical #midground {
    transform: translate(0, 0);
    animation: mid-vertical 5s alternate forwards ease-in-out;
}
.vertical #background {
    transform: translate(0, 0);
    height: 110vh;
    background-size: cover;
    animation: back-vertical 5s alternate forwards ease-in-out;
}


@keyframes fore-vertical {
    0% { transform: translate(0, 220px); }
    100% { transform: translate(0, 0); }
}
@keyframes mid-vertical {
    0% { transform: translate(0, 120px); }
    100% { transform: translate(0, 0); }
}
@keyframes back-vertical {
    0% { transform: translate(0, 0); }
    100% { transform: translate(0, -20px); }
}


/* size */
.size #foreground {
    transform: translate(0, 0) scale(1);
    animation: fore-sizes 5s alternate forwards ease-out;
}
.size #midground {
    transform: translate(0, 0) scale(1);
    animation: mid-sizes 5s alternate forwards ease-out;
}
.size #background {
    transform: translate(0, 0) scale(1.25);
    animation: back-sizes 5s alternate forwards ease-out;
}

@keyframes fore-sizes {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(0.9) translate(0, 55px); }
}
@keyframes mid-sizes {
    0% { transform:scale(1) translate(0, 0); }
    100% { transform: translate(0, -20px) scale(1.05); }
}
@keyframes back-sizes {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(0, 0); }
}

/* scroll down banner */
.scroll-down {
    position: absolute;
    z-index: 990;
    background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0));
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scroll-down h5 {
    text-align: center;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    order: 2;
}

.scroll-down svg {
    margin:  0 auto;
    padding: 20px 0 10px 0;
    order: 1;
}

.arrow-down {
    transform: translateY(0);
    animation: arrow-down-move 4s ease-in-out infinite;
}

@keyframes arrow-down-move {
    0% { transform: translateY(0); }
    50% { transform: translateY(5px); }
    100% { transform: translateY(0); }
}

.scroll-down-desktop {display: block; width: 60px; }
.scroll-down-mobile {display: none; }

.main-wrapper {
    overflow: hidden;
}

.gray { background: #f3f3f3; }
.white { background: white; }

/* what are your business? */
.business {
    margin: 0 auto;
    padding: 40px 0 120px 0;
    text-align: center;
}

.section-title {
    text-align: center;
    color: #06bf06;
    line-height: 1.3rem;
    margin-bottom: 90px;
    letter-spacing: 0.3rem;
    position: relative;
}

.section-title strong {
    font-weight: bold;
}

.section-title strong:after {
    display: block;
    content: '';
    width: 2px;
    height: 20px;
    top: 50px;
    position: absolute;
    left: 50%;
    background: #22b745;
}

.business .business-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.business .business-items .business-item {
    margin: 5px 5px;
}

.business .business-items .business-item:hover{
    transition: 0.4s;
    filter: brightness(70%);
}

.business .business-items .business-item a{
    display: inline-block;
    position: relative;
}

.business .business-items .business-item a span{
    position: absolute;
    font-size: 20px;
    color: white;
    text-transform: uppercase;
    top: 45%;
    right: 0;
    left: 0;
    font-weight: 900;
    letter-spacing: 0.6rem;
}


.products-items {
    position: relative;
    z-index: 4;
    display: flex;
}

.swiper {
    margin-top: -80px;
    padding: 80px 0 120px 0 !important;
}


.products-wrapper {
    position: relative;
    z-index: 4;
    display: flex;
    transition: 0.3s;
    transform: translateX(0);
}

.product-item, .swiper-slide {
    width: 100% !important;
    max-width: 300px;
    margin: 30px 0;
    position: relative;
    display: block;
    transition: transform 500ms;
}

.product-item img {
    display: block;
    width: 100%;
}

.product-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 560px;
}

.product-item a h2 {
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 2;
    color:  #fff;
    font-weight: 600;
    font-size: 2.4rem;
    text-shadow: 0 0 50px #000;
    letter-spacing: 0.15rem;
    width: 90%;
    margin: 0 auto;
    display: block;
}

.product-item a .banner-img {
    display: block;
    width: 300px;
    height: 560px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-blend-mode: hard-light, normal;
    background-position: center center;
}

@media screen and (min-width: 1024px){
    .products-items:focus-within .product-item,
    .products-items:hover .product-item {
        transform: translateX(-10%);
    }

    .product-item:focus ~ .product-item,
    .product-item:hover ~ .product-item {
        transform: translateX(10%);
    }

    .products-items .product-item:focus,
    .products-items .product-item:hover {
        transform: scale(1.2);
        z-index: 1;
    }
}

.representative {
    width: 100%;
    padding: 80px 0 120px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    z-index: 3;
    align-items: center;
}

.representative-img {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.representative-img img {
    background: linear-gradient(#20ae42, #20ae42) no-repeat;
    background-size: 471px 136px;
    background-position: 10px 10px;
    padding: 0 60px 20px 0;
}


.representative h4 {
    line-height: 1.3rem;
    letter-spacing: 0.25rem;
    font-weight: 500;
    color: #007936;
    padding-bottom: 0;
}

.representative h4 b {
    display: block;
    font-weight: 800;
}

.representative a {
    display: block;
    font-size: 1.5rem;
    margin-left: 60px;
    margin-top: 15px;
    padding-left: 15px;
    border: 0;
    color: #22b745;
    font-weight: 700;
    background: transparent;
    position: relative;
    transition: 0.3s;
}

.representative a:after {
    content: '';
    height: 30px;
    position: absolute;
    display: block;
    width: 4px;
    height: 30px;
    left: 0;
    top: 0;
    font-weight: 600;
    background: #22b745;
    transition: 0.3s;
}


.representative a:hover {
    color: #fff;
}
.representative a:hover:after {
    width: 100% !important;
    z-index: -1;
}

.publications {
    padding: 80px 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.publication-wrapper {
    margin: 40px 0 60px 0;
    display: block;
    cursor: pointer;
}

.publication {
    display: flex;
    flex-direction: row;
    margin: 40px auto 20px auto;
    align-items: center;
}

.publication-wrapper:nth-child(2) .publication {
    flex-direction: row-reverse !important;
}
.publication-wrapper:nth-child(2) .publication .publication-media {
    justify-content: flex-start !important;
    margin-left: 2% !important;
    margin-right: 0 !important;
    justify-content: flex-start !important;
    width: 50% !important;
}

.publication-wrapper:nth-child(2) .publication-text {
    margin-left: 12% !important;
    margin-right: 0 !important;
    width: 28% !important;
}


.publication-wrapper:nth-child(2) .publication-text h4 {
    text-align: right !important;
}

.publication .publication-media {
    display: block;
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    width: 64%;
    margin-right: 2%;
}

.publication .publication-media img {
    max-width: 500px;
    display: block;
}

.publication-text {
    flex-grow: 1;
    width: 30%;
    justify-content: flex-end;
    color: #007936;
    font-weight: 800;
    margin-right: 9%;
}

.publication-text h4 {
    justify-content: flex-end;
    color: #007936;
    font-weight: 800;
    font-size: 2.4rem;
}

.publication-text p {
    margin: 20px 0 0 0;
    color: #22b745;
    font-size: 1.1rem;
}

.publications-all a {
    color: #22b745;
    text-align: center;
    display: block;
    margin: 30px auto;
    position: relative;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.publications-all a:hover {
    color: #007936;
}
.publications-all a:hover:after {
    background: #007936;
    width: 20%;
}

.publications-all a:after {
    content: '';
    width: 4px;
    height: 30px;
    background: #22b745;
    display: block;
    margin-left: 10px;
    transition: 0.3s;
}

/* work with us */
.work-with-us { padding: 120px 0; background: #22b745; }
.work-with-us img { max-width: 500px; width: 80%; display: block; margin: 0 auto; }
.work-with-us h3 { color: #fff !important; }
.work-with-us h3 strong:after{ background: #fff !important; }
.work-with-us .publications-all a { color: #fff !important; }
.work-with-us .publications-all a:after { background: #fff !important; }

.wheater-currency {
    display: flex;
    padding: 80px 0;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 40px auto;

}

.wheater-currency aside {
    width: 48%;
}

.wheater-currency aside:nth-child(3){
    margin: 30px 0;
    width: 100%;
}

.wc-wrapper {
    background: white;
    margin-top: -40px;
    padding: 40px 0;
    display: flex;
    flex-direction: row;
}

.wheater .wc-wrapper {
    background: url('../images/wheater/sunny-1.jpg');
    background-size: cover;
}

.wc-wrapper-wheater {
    padding: 40px 80px 18px 40px;
    flex-direction: column !important;
    color: #fff;
}

.wheater-called {
    display: none;
}

.wc-wrapper-wheater .day-hour {
    font-size: 0.85rem;
    margin: 0 0 5px 0;
}

.wc-wrapper-wheater .city {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}


.wc-wrapper-wheater .temp {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.wc-wrapper-wheater .temp .temp-numbers {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: -10px;
    margin-right: 30px;
}

.wc-wrapper-wheater .temp .temp-numbers img {
    display: block;
    max-width: 85px;
}

.wc-wrapper-wheater .temp .temp-numbers h5 {
    font-size: 3rem;
}

.wc-wrapper-wheater .temp .temp-prob {
    display: flex;
    flex-direction: column;
    margin: 0 0 8px 0;
}

.wc-wrapper-wheater .temp .temp-prob-info {
    display: flex;
    flex-direction: row;
    margin: 0 0 8px 0;
    align-items: center;
}
.wc-wrapper-wheater .temp .temp-prob-info svg {
    align-self: flex-end;
    margin-right: 10px;
}

.currencies .wc-wrapper {
    background: url('../images/currency-bg.jpg');
    background-size: cover;
}

.currency {
    width: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
    color: #fff;
}

.currency h5 {
    font-weight: 700;
    margin-right: 25px;
    font-size: 1.5rem;
}

.currency h6 {
    display: block;
    font-weight: 500;
    font-size: 1.4rem;
    text-align: right;
    margin: 10px 0;
}

.currency h6 span {
    display: block;
    font-weight: 400;
    font-style: italic;
    font-size: 0.86rem;
    text-align: right;
}

.section-product-title {
    text-align: center;
    color: #06bf06;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: 0.3rem;
    position: relative;
}

.section-product-title strong {
    font-weight: 800;
    text-transform: lowercase;
}

.section-product-title strong:after {
    display: block;
    content: '';
    width: 2px;
    height: 25px;
    top: 30px;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    background: #22b745;
}

/* produtos em destaque */

.main-products {
    margin-bottom: 200px;
}

.main-products-wrapper {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-evenly;
    padding-bottom: 40px;
}

.main-item {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 6px 10px 0;
    justify-content: space-between;
    padding: 0;
    transition: 0.3s;
    padding: 20px;
}

/*.main-item:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}*/


.main-item:hover .main-brown-button button {
    color: #22b745;
    border-color: #22b745;
    cursor: pointer;
}

.main-item:hover .main-item-title {
    color: #22b745;
}

.main-item img {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0s auto;
}

.main-item-title {
    text-align: left;
    color: #f04c11;
    margin-bottom: 5px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.125rem;
    font-weight: 600;
    width: 100%;
    margin: 20px auto;
    transition: 0.3s;
}

.main-brown-button {
    margin-top: 5px;
    display: flex;
    align-self: stretch;
    cursor: pointer;
}

.main-brown-button button {
    width: 100%;
    align-self: stretch;
    color: #f04c11;
    text-align: center;
    display: block;
    margin: 0 auto;
    position: relative;
    padding: 12px 20px 14px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
    border: 1px solid #f04c11;
    background: transparent;
    cursor: pointer;
}


/* tabela cepea */

.imagenet-widget-tabela {
    margin: 0 auto;
    font-family: 'Poppins', sans-serif !important;
}

.imagenet-widget-tabela td, .imagenet-widget-tabela th {
    padding: 10px 0 !important;
    font-size: 0.9rem !important;
}

.imagenet-widget-tabela span.maior {
    font-size: 0.9rem !important;
}

.imagenet-widget-tabela thead:first-child tr td img {
    padding: 10px 0;
}

.imagenet-widget-tabela thead td {
    background: #fff !important;
}
.imagenet-widget-tabela thead th {
    background: #22b745 !important;
    font-weight: 700 !important;
    color: #fff !important;
    padding: 10px 0 !important;

}
.imagenet-widget-tabela tbody tr:nth-child(1n) {
    background: #fff !important;
}
.imagenet-widget-tabela tbody tr:nth-child(2n) {
    background: #dcdcdc !important;
}

.imagenet-widget-tabela tfoot td {
    display: none !important;
}

@media screen and (max-width: 980px){
    /* banner -- ok */
    .banner {height: 80vh; }
    .banner-back { height: 81.5vh; margin-top: -1vh; background-position: center bottom; background-size: cover; }
    .front { width: 110vw; }
    .banner-title {position: absolute; top: 100px; left: 5%; width: 90%; z-index: 100; font-size: 1.5rem; padding: 50px 0; }
    .phraseShow-question, .phraseShow-answer {text-align: center; height: 24px; }
    .button-call {margin: -13px auto 0 auto; font-size: 1.1rem; width: 80%; padding: 4px 0 4px 20px; }
    .button-call-bar {width: 0; height: 3px; left: calc(50% - 21px); top: auto; bottom: 0; animation: growBarMobile .4s ease-in-out forwards; animation-delay: 2s; transition: 0.3s; }
    .button-call h4 {text-align: center; width: 100%; text-indent: 0; }
    @keyframes growBarMobile {0% { width: 0px; } 100% { width: 42px; } }

    /* scroll down button */
    .scroll-down-desktop { display: none; }
    .scroll-down-mobile { display: block; width: 30px;}
    .scroll-down svg { order: 2; }
    .scroll-down h5 { display: none; }


    /* publicações -- ok */
    .publications {margin: 0 auto; display: flex; flex-direction: column; }
    .publication-wrapper {margin: 40px auto; }
    .publication {flex-direction: column !important; margin: 0 auto; width: 90%; align-items: center; }
    .publication-wrapper:nth-child(2) .publication {flex-direction: column !important; }
    .publication-wrapper:nth-child(2) .publication .publication-media {justify-content: center !important; margin-left: 0 !important; margin-right: 0 !important; width: 100% !important; }
    .publication-wrapper:nth-child(2) .publication .publication-text {margin-left: 0 !important; margin-right: 0 !important; width: 100% !important; }
    .publication-wrapper:nth-child(2) .publication .publication-text h4 {text-align: center !important; }
    .publication .publication-media {justify-content: center; width: 100%; margin-right: 0; }
    .publication .publication-media img {max-width: 500px; margin:  0 auto; width: 100%; }
    .publication .publication-text {width: 100%; justify-content: center; margin-right: 0; }
    .publication .publication-text h4 {justify-content: center; font-size: 1.6rem; padding: 20px 0 0 0; }
    .publication .publication-text p {font-size: 1rem; }
    /* tempo - cotações */
    .wheater-currency {flex-direction: column; margin: 20px auto; }
    .wheater-currency aside {width: 90%; margin: 0 auto 40px auto; }
    .currency {flex-direction: column; }

    /* destaque */
    .main-products {margin-bottom: 120px; }
    .main-item {width: 90%; align-items: center; margin: 30px auto; padding: 20px; }
    .main-item img {display: block; width: 100%; }
    .publications-all {width: 80%; margin: 0 auto; display: block; }
    .publications-all a {margin: 10px auto; font-size: 0.95rem; line-height: 1.3rem; }
    .publications-all a:hover:after {width: 10%; }
}
