@font-face {
    font-family: JDSansPro;
    src: url(./fonts/01_JDSansPro-Roman_PT/JDSansPro-Medium.ttf);
}

@font-face {
    font-family: JDSansPro;
    font-weight: bold;
    src: url(./fonts/01_JDSansPro-Roman_PT/JDSansPro-Bold.ttf);
}

@font-face {
    font-family: JDSansPro;
    font-style: italic;
    src: url(./fonts/02_JDSansPro-Italic_PT/JDSansPro-MediumItalic.ttf);
}

@font-face {
    font-family: JDSansPro;
    font-weight: bold;
    font-style: italic;
    src: url(./fonts/02_JDSansPro-Italic_PT/JDSansPro-BoldItalic.ttf);
}

html {
    background-color: #060606;
    color: #ffffff;
    font-family: JDSansPro, sans-serif;
    font-size: 1rem;
    margin: 0 auto;
    max-width: 1920px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
}


body {
    overflow-x: hidden;
}

img {
    align-self: center;
    display: block;
	height: auto;
	max-width: 100%;
}

strong {
    font-weight: bold;
}

span.yellow {
    color: #FFDE00!important;
    font-weight: bold;
}



/* ======================================== COOKIES ======================================== */

#cookie-notification {
    align-items: center;
    background-color: #367C2B;
    bottom: 0;
    box-sizing: border-box;
    display: none;
    justify-content: space-between;
    padding: 25px 10%;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

#cookie-notification.show {
    display: flex;
}

#cookie-notification p {
    font-size: 1.25rem;
    margin-right: 40px;
}

#cookie-notification p>a {
    color: #FFDE00;
}

#cookie-notification>a {
    background-color: #FFDE00;
    border-radius: 50px;
    box-sizing: border-box;
    color: #060606;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 12px 40px;
    text-decoration: none;
    text-transform: uppercase;
    transition: .4s ease;
}

#cookie-notification>a:hover {
    background-color: #ffffff;
    color: #367C2B;
}



/* ======================================== HEADER ======================================== */

nav {
    align-items: center;
    background-color: #367C2B;
    box-sizing: border-box;
    display: flex;
    height: 100px;
    justify-content: center;
    padding: 0 150px;
}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #ffffff;
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
    text-transform: uppercase;
    transition: .4s ease;
}

nav ul li a::after {
    background-color: #FFDE00;
    content: '';
    display: block;
    height: 2px;
    margin-top: 4px;
    transition: .4s ease;
    width: 100%;
}

nav ul li a:hover {
    color: #FFDE00;
}

nav ul li a:hover:after {
    width: 50%;
}



/* ======================================== HEADER ======================================== */

header {
    background-image: url('../images/header.jpg');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 870px;
    position: relative;
}

#plantadeira-1200 {
    background-image: url('../images/header-plantadeira-1200.png');
}

#pulverizador-230m {
    background-image: url('../images/header-pulverizador-230m.png');
}

#colheitadeira-s5 {
    background-image: url('../images/header-colheitadeira-s5.png');
}



/* ======================================== MAIN ======================================== */

main {
    position: relative;
}

section {
    position: relative;
}

section.main-products {
    box-sizing: border-box;
    height: 1080px;
    padding: 2px 7.8%;
}

#plantio {
    background-image: url('../images/plantio-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}

#trato-cultural {
    background-image: url('../images/trato-cultural-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}

#colheita {
    background-image: url('../images/colheita-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}

/* .title {
    margin-left: 150px;
} */

.title h2::after {
    background-image: linear-gradient(to right, rgba(255, 222, 0, 0), rgba(255, 222, 0, 1));
    content: '';
    display: block;
    height: 2px;
    margin-top: 30px;
    width: 100%;
}

.title h2 {
    background-clip: text;
    background-image: linear-gradient(45deg, rgba(217, 219, 207, 1), rgba(255, 255, 255, 1));
    box-sizing: border-box;
    color: transparent;
    font-size: 5rem;
    font-weight: bold;
    font-style: italic;
    max-width: fit-content;
    text-transform: uppercase;
    width: 100%;
}

.title p {
    box-sizing: border-box;
    color: #ffffff;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.3;
    margin-top: 40px;
    text-transform: uppercase;
    width: 100%;
}

#plantio .title p {
    max-width: 550px;
}

#trato-cultural .title p {
    max-width: 580px;
}

#colheita .title p {
    max-width: 620px;
}

#products-list {
    display: flex;
    justify-content: center;
    margin: 80px 0;
    width: 100%;
}

.product {
    max-width: 507px;
    width: 100%;
}

#trato-cultural .product {
    max-width: 1025px;
}

.product-banner {
    border: 2px solid #FFDE00;
    border-radius: 2px;
    transform: scale(0.95);
    transition: .4s ease;
}

.product-banner:hover {
    transform: scale(1);
}

.product-banner.active {
    opacity: 1!important;
    transform: scale(1)!important;
}

.product-banner.active .product-txt {
    right: 150px;
}

.product-banner {
    align-items: flex-end;
    cursor: pointer;
    display: flex;
    overflow: hidden;
    position: relative;
}

.product-banner .product-txt {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 30px;
    position: absolute;
    transition: .4s ease;
    width: 100%;
    z-index: 99;
}

.product-banner h3 {
    border-bottom: 2px solid #FFDE00;
    color: #ffffff;
    font-size: 2rem;
    font-style: italic;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    transition: .4s ease;
}

.product-banner legend {
    background-color: #579735;
    /* border: 2px solid #FFDE00; */
    border-radius: 20px;
    /* color: #FFDE00; */
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
    max-width: fit-content;
    padding: 10px 20px;
    text-align: right;
    text-decoration: none;
    text-transform: uppercase;
}

.product-banner:hover legend {
    background-color: #FFDE00;
    color: #579735;
}

/* .product-banner .background-slide {
    background-color: #367C2B;
    height: 100%;
    position: absolute;
    right: -500px;
    transition: .4s ease;
    width: 500px;
    z-index: 9;
}

.product-banner:hover .background-slide {
    right: 0;
} */

.product-banner .product-img {
    background-color: #000000;
    border-radius: 4px;
}

.product-banner .product-img img {
    /* mix-blend-mode: luminosity; */
    transition: .4s ease;
}

.product-banner .product-img img:nth-of-type(2) {
    display: none;
}

.product-banner .product-img img:nth-of-type(3) {
    display: none;
}

.to-top-cta {
    margin: 0 auto;
    max-width: fit-content;
}

.to-top-cta a {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.to-top-cta a img {
    position: relative;
    top: 0;
    transition: .4s ease;
}

.to-top-cta a p {
    background-color: rgba(255, 255, 255, .23);
    border: 1px solid #ffffff;
    border-radius: 20px;
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 20px;
    max-width: fit-content;
    padding: 10px 20px;
    text-align: right;
    text-decoration: none;
    text-transform: uppercase;
    transition: .4s ease;
}

.to-top-cta a:hover img {
    top: -10px;
}

.to-top-cta a:hover p {
    transform: scale(1.05);
}







/* .products-container {
    display: flex;
    justify-content: space-around;
    margin: 150px 50px 300px;
}

.product {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    margin: 0 50px;
    position: relative;
    transform: scale(.95);
    transition: .4s ease;
    z-index: 999;
}

.product-wrapper {
    align-items: center;
    background-color: #060606;
    border: 2px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 800px;
    overflow: hidden;
    position: relative;
    width: 500px;
    z-index: 999;
}

.product:hover {
    transform: scale(1);
}

.product:hover .cta {
    background-color: #367C2B;
    color: #FFDE00;
}

.product:hover img {
    opacity: 1;
}

.product p {
    background-clip: text;
    background-image: linear-gradient(45deg, rgba(217, 219, 207, 1), rgba(255, 255, 255, 1));
    bottom: 50px;
    color: transparent;
    font-size: 8rem;
    font-weight: bold;
    font-style: italic;
    margin: 0 auto;
    position: absolute;
    text-transform: uppercase;
    z-index: 9;
}

.product p span {
    background-clip: text;
    background-image: linear-gradient(45deg, rgba(217, 219, 207, 1), rgba(255, 255, 255, 1));
    color: transparent;
    font-size: 5rem;
    font-weight: bold;
    font-style: italic;
    margin: 0 auto;
    text-transform: uppercase;
} */

.cta {
    background-color: #FFDE00;
    border-radius: 60px;
    bottom: -25px;
    box-sizing: border-box;
    color: #367C2B;
    font-size: 2rem;
    font-weight: bold;
    display: block;
    max-width: fit-content;
    padding: 12px 40px;
    position: absolute;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: .4s ease;
    z-index: 999;
}

.cta.interna {
    bottom: unset;
    margin: 100px auto 0;
    position: relative;
}

.cta.interna:hover {
    background-color: #367C2B;
    color: #FFDE00;
}



/* ======================================== INTRODUCTION ======================================== */

#introduction {
    align-items: center;
    background-image: url('../images/intro-bg.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 700px;
    padding: 100px 150px 50px;
    width: 100%;
}

#introduction h2 {
    color: #ffffff;
    font-size: 4rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1.3;
    max-width: 1160px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

#introduction h2 strong {
    color: #FFDE00;
}

#introduction p {
    color: #ffffff;
    font-size: 2rem;
    font-style: italic;
    line-height: 1.3;
    margin-top: 30px;
    max-width: 950px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}



/* ======================================== PRE-PRODUCTS ======================================== */

#pre-products {
    width: 100%;
}

#pre-products div {
    align-items: center;
    background-image: url('../images/pre-products-bg.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0 120px;
    min-height: 630px;
    padding: 50px 150px;
    width: 100%;
}

#pre-products h2 {
    color: #ffffff;
    font-size: 6rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

#pre-products h2 strong {
    color: #FFDE00;
}

#pre-products p {
    color: #ffffff;
    font-size: 3rem;
    font-style: italic;
    line-height: 1.3;
    margin-top: 10px;
    max-width: 980px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}



/* ======================================== PLANTADEIRAS ======================================== */

.light {
    mix-blend-mode: screen;
    position: absolute;
    max-width: unset;
}

/* #plantio .light {
    bottom: 130px;
}

#pulverizadores .light {
    bottom: 350px;
} */



/* ======================================== SOBRE ======================================== */

#sobre {
    background-image: url('../images/background.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: auto;
    box-sizing: border-box;
    padding: 0 150px 250px;
    width: 100%;
}

#sobre.colheitadeira {
    background-position: center 100px;
}

#sobre-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 200px;
    position: relative;
    z-index: 999;
}

#sobre-text {
    margin-right: 50px;
    max-width: 650px;
    width: 100%;
}

.pulverizador #sobre-text, .colheitadeira #sobre-text {
    max-width: 750px;
}

#sobre-text h2 {
    background-clip: text;
    background-image: linear-gradient(45deg, rgba(217, 219, 207, 1), rgba(255, 255, 255, 1));
    box-sizing: border-box;
    color: transparent;
    font-size: 10rem;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
}

#sobre-text h2 span {
    font-size: 3.25rem;
}

#sobre-text h2::after {
    background-image: linear-gradient(to right, rgba(255, 222, 0, 0), rgba(255, 222, 0, 1));
    content: '';
    display: block;
    height: 2px;
    margin: 20px 0 40px;
    width: 100%;
}

#sobre-text p {
    line-height: 1.3;
}

#sobre-text p:nth-of-type(1) {
    color: #FFDE00;
    font-size: 2.5rem;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 40px;
    text-transform: uppercase;
}

#sobre-text p:nth-of-type(2) {
    font-size: 2rem;
}

#swiper-container {
    height: 390px;
    margin-top: 100px;
    position: relative;
    width: 700px;
}

.swiper {
    border: 8px solid #FFDE00;
    border-radius: 4px;
}

.swiper-slide {
    cursor: pointer;
}

.swiper-button-prev {
    left: -30px;
    transition: .4s ease;
}

.swiper-button-prev:hover {
    left: -35px;
}

.swiper-button-next {
    right: -30px;
    transition: .4s ease;
}

.swiper-button-next:hover {
    right: -35px;
}

span.swiper-pagination-bullet {
    background-color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    height: 16px;
    opacity: 1;
    width: 16px;
}

span.swiper-pagination-bullet-active {
    background-color: #FFDE00;
}

.swiper-button-next, .swiper-button-prev {
    width: 82px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}

#video {
    position: relative;
    z-index: 999;
}

#video img {
    border: 8px solid #FFDE00;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(255, 222, 0, 0.7);
    box-sizing: border-box;
    margin: 0 auto;
}

#sobre .light {
    bottom: -50px;
    right: 0;
}



/* ======================================== CARACTERISTICAS ======================================== */

#caracteristicas {
    background-color: #439539;
    box-sizing: border-box;
    overflow: hidden;
    padding: 100px 50px 200px;
    position: relative;
    width: 100%;
}

#caracteristicas-title {
    margin: 0 auto 100px;
    max-width: fit-content;
    position: relative;
    z-index: 999;
}

#caracteristicas-title h2 {
    background-clip: text;
    background-image: linear-gradient(45deg, rgba(217, 219, 207, 1), rgba(255, 255, 255, 1));
    box-sizing: border-box;
    color: transparent;
    font-size: 14rem;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    text-transform: uppercase;
}

#caracteristicas-title h2 span {
    font-size: 4rem;
}

#caracteristicas-title h2::after {
    background-image: linear-gradient(to right, rgba(255, 222, 0, 0), rgba(255, 222, 0, 1));
    content: '';
    display: block;
    height: 2px;
    margin: 10px 0 30px;
    width: 100%;
}

#caracteristicas-title p {
    font-size: 2.5rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

/* .pulverizador #caracteristicas-title p {
    max-width: 960px;
}

.colheitadeira #caracteristicas-title p {
    max-width: 830px;
} */

.pulverizador #caracteristicas-title p strong {
    color: #FFDE00;
}

#caracteristicas-container {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 999;
}

.caracteristicas-box {
    align-items: center;
    background-color: #ffffff;
    border-radius: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 356px;
    margin-bottom: 10px;
    margin-left: 10px;
    padding: 40px;
    width: 380px;
}

.pulverizador .caracteristicas-box {
    height: 420px;
    width: 420px;
}

.colheitadeira .caracteristicas-box {
    height: 390px;
    width: 500px;
}

#caracteristicas-container>.caracteristicas-box:nth-of-type(1) {
    height: auto;
    justify-content: center;
    margin-left: 0;
}

.caracteristicas-box p {
    color: #060606;
    font-size: 1.5rem;
    line-height: 1.3;
    margin-top: 40px;
    text-align: center;
}

.caracteristicas-box p strong {
    font-size: 2rem;
}

#caracteristicas-all {
    display: flex;
    flex-wrap: wrap;
    max-width: 1170px;
    width: 100%;
}

.pulverizador #caracteristicas-all {
    max-width: 860px;
}

.colheitadeira #caracteristicas-all {
    max-width: 1030px;
}

.caracteristicas-bg {
    bottom: 0;
    left: 0;
    mix-blend-mode: luminosity;
    opacity: .3;
    position: absolute;
    width: 100%;
}






/* ======================================== ENCERRAMENTO ======================================== */

#encerramento {
    box-sizing: border-box;
    overflow: hidden;
    padding: 200px 50px 450px;
    position: relative;
    width: 100%;
}

#encerramento h3 {
    background-clip: text;
    background-image: linear-gradient(45deg, rgba(217, 219, 207, 1), rgba(255, 255, 255, 1));
    color: transparent;
    font-size: 3.75rem;
    font-weight: bold;
    font-style: italic;
    margin: 0 auto;
    max-width: 980px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

#encerramento.colheitadeira h3 {
    color: #FFDE00;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    margin: 0 auto;
    /* max-width: 980px; */
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

#encerramento.colheitadeira h3 strong {
    background-clip: text;
    background-image: linear-gradient(45deg, rgba(217, 219, 207, 1), rgba(255, 255, 255, 1));
    color: transparent;
    font-size: 6rem;
}

#encerramento .light {
    top: 450px;
    left: 400px;
}

/* ======================================== SOLUCOES FINANCEIRAS ======================================== */

#solucoes-financeiras {
    background-image: url('../images/solucoes.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    padding: 180px 90px 40px 90px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    min-height: 722px;
}

#solucoes-financeiras h2{
    color: #e4c65c;
    font-size: 5rem;
    border-bottom: solid 6px #e4c65c;
    margin: auto;
    width: max-content;
    padding-bottom: 15px;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 42px;

}

#solucoes-financeiras p{
    font-size: 2rem;
    font-weight: bold;
    font-style: italic;
}

#solucoes-financeiras p strong{
    color: #e4c65c;
}

#solucoes-financeiras legend{
    margin-top: 140px;
    font-size: 17px;
    color: #e4c65c;
}

#solucoes-financeiras a{
    font-size: 24px;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    margin: auto;
    margin-top: 77px;
    font-weight: bold;
    font-style: italic;
    display: block;
    background-color: #e4c65c;
    width: 30%;
    padding: 20px;
}




/* ======================================== FOOTER ======================================== */

footer {
    background-color: #439539;
    box-sizing: border-box;
    padding: 50px 0;
}

footer div {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding-left: 150px;
}

footer p {
    font-size: 1rem;
    line-height: 1.3;
    margin: 0 50px;
    text-align: center;
    text-transform: uppercase;
}



/* ======================================== MEDIA QUERIES ======================================== */

@media only screen and (max-width: 1700px) {

    #plantadeira-1200 {
        height: 1130px;
    }

    #pulverizador-230m {
        height: 1150px;
    }

    #colheitadeira-s5 {
        height: 1150px;
    }

    #sobre {
        padding: 0 50px 250px 150px;
    }

    #swiper-container {
        height: 350px;
        width: 600px;
    }

    #sobre-text {
        max-width: 580px;
    }

    #sobre-text h2 {
        font-size: 8rem;
    }

    #sobre-text h2 span {
        font-size: 3rem;
    }

    #sobre-text p:nth-of-type(1) {
        font-size: 2.25rem;
    }

    #sobre .light {
        right: unset;
    }
    
}

@media only screen and (max-width: 1620px) {

    header {
        height: 730px;
    }

    #plantadeira-1200 {
        height: 1100px;
    }

    #pulverizador-230m, #colheitadeira-s5 {
        height: 1000px;
    }

    #caracteristicas-all {
        max-width: 790px;
    }
    
}

@media only screen and (max-width: 1550px) {

    #plantadeira-1200 {
        height: 1060px;
    }

    #pulverizador-230m, #colheitadeira-s5 {
        height: 950px;
    }
    
}

@media only screen and (max-width: 1500px) {

    nav ul li a {
        font-size: 1rem;
    }

    header {
        height: 680px;
    }

    #introduction h2 {
        font-size: 3rem;
        max-width: 870px;
    }

    #introduction p {
        font-size: 1.5rem;
        max-width: 690px;
    }

    #plantadeira-1200 {
        height: 1010px;
    }

    #pulverizador-230m, #colheitadeira-s5 {
        height: 900px;
    }

    /* #plantio .light {
        bottom: 0;
        right: -200px;
    }

    #pulverizadores .light {
        right: -300px;
    } */

    .pulverizador #sobre-text h2 {
        font-size: 7rem;
    }

    .remove {
        display: none;
    }

    #swiper-container {
        height: 420px;
        margin: 100px auto 0;
        width: 550px;
    }

    .swiper-button-next, .swiper-button-prev {
        top: 160px;
    }
    
}

@media only screen and (max-width: 1460px) {

    #plantadeira-1200 {
        height: 980px;
    }

    #pulverizador-230m, #colheitadeira-s5{
        height: 890px;
    }
    
}

@media only screen and (max-width: 1400px) {

    header {
        height: 630px;
    }

    #plantio, #trato-cultural, #colheita {
        background-size: contain;
    }

    #pre-products h2 {
        font-size: 5rem;
    }

    #pre-products p {
        font-size: 2.5rem;
    }

    /* section.main-products {
        height: auto;
    } */

    section.main-products {
        height: 880px;
    }

    #plantadeira-1200 {
        height: 940px;
    }

    #pulverizador-230m, #colheitadeira-s5 {
        height: 860px;
    }

    #sobre-text h2, .pulverizador #sobre-text h2  {
        font-size: 6rem;
    }

    #sobre-text h2 span {
        font-size: 2.5rem;
    }

    #sobre-text p:nth-of-type(1) {
        font-size: 1.75rem;
    }

    #sobre-text p:nth-of-type(2) {
        font-size: 1.5rem;
    }

    .product-wrapper {
        height: 700px;
        width: 400px;
    }

    #solucoes-financeiras a{
        font-size: 20px;
    }
    
}

@media only screen and (max-width: 1320px) {

    .pulverizador #sobre-text h2  {
        font-size: 5.5rem;
    }

    .pulverizador #caracteristicas-all {
        max-width: 740px;
    }

    .pulverizador .caracteristicas-box {
        height: 460px;
        width: 360px;
    }
    
}

@media only screen and (max-width: 1300px) {

    nav {
        padding: 0 50px;
    }

    header {
        height: 590px;
    }

    #plantadeira-1200 {
        height: 880px;
    }

    #pulverizador-230m, #colheitadeira-s5 {
        height: 790px;
    }

    #sobre {
        padding: 0 50px 250px 50px;
    }
    
    #swiper-container {
        width: 450px;
    }

    .swiper-button-next, .swiper-button-prev {
        top: 130px;
        width: 41px;
    }

    .swiper-button-prev {
        left: -15px;
    }

    .swiper-button-next {
        right: -15px;
    }

    span.swiper-pagination-bullet {
        height: 10px;
        width: 10px;
    }

    .pulverizador #caracteristicas-title h2 {
        font-size: 10rem;
    }

    .pulverizador #caracteristicas-title h2 {
        font-size: 10rem;
    }

    .pulverizador #caracteristicas-title p {
        font-size: 2rem;
        max-width: 800px;
    }
    
}

@media only screen and (max-width: 1200px) {

    #introduction {
        padding: 180px 50px;
    }

    #introduction h2 {
        font-size: 2.5rem;
        max-width: 720px;
    }

    #introduction p {
        font-size: 1.25rem;
        max-width: 580px;
    }

    #plantadeira-1200 {
        height: 780px;
    }

    #pre-products div {
        margin: 0px 0 100px;
        min-height: 500px;
    }

    #pre-products h2 {
        font-size: 4rem;
    }

    #pre-products p {
        font-size: 2rem;
        max-width: 650px;
    }

    #pulverizador-230m, #colheitadeira-s5 {
        height: 730px;
    }

    header {
        height: 540px;
    }

    #caracteristicas-container {
        align-items: center;
        flex-direction: column;
    }

    #caracteristicas-all, .pulverizador #caracteristicas-all, .colheitadeira #caracteristicas-all {
        max-width: 100%;
    }

    .caracteristicas-box, .pulverizador .caracteristicas-box, .colheitadeira .caracteristicas-box {
        height: auto;
        margin-left: 0;
        width: 100%;
    }

    .pulverizador .caracteristicas-box, .colheitadeira .caracteristicas-box {
        height: auto;
    }

    footer div {
        padding-left: 50px;
    }

    .product {
        width: 100%;
    }
    #solucoes-financeiras a{
        width: 45%;
    }
    
}

@media only screen and (max-width: 1120px) {

    header {
        height: 510px;
    }

    /* section.main-products {
        height: 620px;
    } */

    #plantadeira-1200 {
        height: 740px;
    }

    #pulverizador-230m, #colheitadeira-s5 {
        height: 690px;
    }

    #sobre-text h2 {
        font-size: 5rem;
    }

    #swiper-container {
        width: 400px;
    }

    .product-banner h3 {
        font-size: 1.5rem;
    }

    #solucoes-financeiras a{
        width: 50%;
    }
    
}

@media only screen and (max-width: 1060px) {

    nav ul {
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 10px 20px;
    }

    #introduction h2 {
        font-size: 2.5rem;
        max-width: 720px;
    }

    #introduction p {
        font-size: 1.25rem;
        max-width: 580px;
    }

    #plantadeira-1200 {
        height: 700px;
    }

    #pulverizador-230m, #colheitadeira-s5 {
        height: 650px;
    }

    .pulverizador #sobre-text h2  {
        font-size: 4.5rem;
    }
    
}

@media only screen and (max-width: 1000px) {

    nav {
        padding: 0 50px;
    }

    #plantadeira-1200 {
        height: 680px;
    }

    #pre-products div {
        padding: 50px;
    }

    #pulverizador-230m, #colheitadeira-s5 {
        height: 620px;
    }

    header {
        height: 450px;
    }

    /* #plantio .light {
        bottom: -120px;
        right: -380px;
    } */

    /* #sobre {
        padding: 100px 50px 450px;
    } */

    #sobre {
        padding: 0 150px 200px 150px;
    }

    #sobre-container {
        flex-direction: column;
    }

    #sobre-text {
        margin-right: 0;
        max-width: 100%;
    }

    #sobre-text h2 {
        font-size: 8rem;
    }

    #sobre-text h2 span {
        font-size: 3.25rem;
    }

    #swiper-container {
        align-items: center;
        display: flex;
        width: 100%;
    }

    .swiper-button-next, .swiper-button-prev {
        /* top: 180px; */
        top: unset;
        margin-top: 10px;
        width: 60px;
    }

    .swiper-button-prev {
        left: -22px;
    }

    .swiper-button-next {
        right: -22px;
    }

    #caracteristicas-title {
        max-width: 530px;
    }

    .pulverizador #caracteristicas-title, .colheitadeira #caracteristicas-title {
        max-width: 100%;
    }

    #caracteristicas-title, .pulverizador #caracteristicas-title h2, .colheitadeira #caracteristicas-title h2 {
        font-size: 8rem;
    }

    #caracteristicas-title h2 span, #encerramento h3 {
        font-size: 3rem;
    }

    #encerramento {
        padding: 140px 50px;
    }

    #encerramento .light {
        display: none;
    }

    .product-banner .product-img img:nth-of-type(1) {
        display: none;
    }

    .product-banner .product-img img:nth-of-type(2) {
        display: block;
    }

    #trato-cultural .product-banner .product-img img:nth-of-type(1) {
        display: block;
    }

    #trato-cultural .product-banner .product-img img:nth-of-type(2) {
        display: none;
    }

    #products-list {
        flex-direction: column;
    }

    .product {
        max-width: 1025px;
    }

    section.main-products {
        height: 1080px;
    }

    #plantio, #colheita {
        background-size: auto;
    }

    #trato-cultural {
        background-size: 150%;
        height: 850px;
    }
    
    #solucoes-financeiras h2{
        font-size: 4rem;
    }
}

@media only screen and (max-width: 900px) {

    #plantadeira-1200 {
        height: 600px;
    }

    #pre-products div {
        margin: 0px 0 50px;
        min-height: 400px;
    }

    #pre-products h2 {
        font-size: 3rem;
    }

    #pre-products p {
        font-size: 1.5rem;
        max-width: 600px;
    }

    #pulverizador-230m, #colheitadeira-s5 {
        height: 570px;
    }

    header {
        height: 410px;
    }

    #sobre {
        padding: 0 50px 200px;
    }

    .title h2 {
        font-size: 4rem;
    }

    .title p {
        font-size: 1.25rem;
    }

    .products-container {
        align-items: center;
        flex-direction: column;
        margin: 100px 50px 150px;
    }

    .product-wrapper {
        height: 400px;
        width: 500px;
    }

    #swiper-container {
        height: auto;
        max-width: 700px;
        width: 100%;
    }

    #caracteristicas {
        padding: 100px 50px 150px;
    }

    footer div {
        flex-direction: column;
        padding: 0;
    }

    footer p {
        margin: 50px 25px;
    }

    footer img:last-of-type {
        align-self: flex-end;
    }
    
}

@media only screen and (max-width: 800px) {

    header {
        height: 360px;
    }

    /* #plantio, #trato-cultural, #colheita {
        background-size: 150%;
    } */

    #trato-cultural {
        height: 750px;
    }

    #plantadeira-1200 {
        height: 540px;
    }

    #pulverizador-230m, #colheitadeira-s5 {
        height: 500px;
    }

    #solucoes-financeiras a{
        width: 80%;
    }

    #solucoes-financeiras h2{
        font-size: 3rem;
    }
    
}

@media only screen and (max-width: 750px) {

    #introduction {
        background-size: 180%;
        min-height: 500px;
        padding: 120px 50px 180px;
    }

    #introduction h2 {
        font-size: 2rem;
        max-width: 100%;
    }

    #plantadeira-1200 {
        height: 490px;
    }

    #pulverizador-230m, #colheitadeira-s5 {
        height: 470px;
    }

    #sobre-text h2, #caracteristicas-title h2, .pulverizador #caracteristicas-title h2, .colheitadeira #caracteristicas-title h2 {
        font-size: 6rem;
    }

    #sobre-text h2 span, #caracteristicas-title h2 span, #encerramento h3 {
        font-size: 2.5rem;
    }

    #sobre-text p:nth-of-type(1), #caracteristicas-title p, .pulverizador #caracteristicas-title p {
        font-size: 1.75rem;
    }

    #sobre-text p:nth-of-type(2) {
        font-size: 1.5rem;
    }

    #caracteristicas {
        padding: 100px 50px 100px;
    }

    .caracteristicas-box img {
        width: 60px;
    }

    .caracteristicas-box p {
        margin-top: 20px;
    }

    /* #encerramento {
        padding: 200px 50px;
    } */

    #encerramento .light {
        display: none;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 41px;
    }

    .swiper-button-next {
        right: -20px;
    }

    .swiper-button-prev {
        left: -20px;
    }

    span.swiper-pagination-bullet {
        height: 8px;
        width: 8px;
    }

    .product-banner h3 {
        font-size: 1.25rem;
    }

    /* .product {
        max-width: 400px;
    } */

    .product-banner legend {
        font-size: 0.75rem;
        padding: 5px 20px;
    }

    #plantio, #colheita {
        background-size: 150%;
    }

    section.main-products {
        height: 900px;
    }

    #solucoes-financeiras p {
        font-size: 1.25rem;
    }
    
}

@media only screen and (max-width: 750px) {

    header {
        height: 340px;
    }
    
}

@media only screen and (max-width: 650px) {

    header {
        zoom: 1.5;
    }

    nav ul li {
        margin: 10px;
    }

    nav ul li a {
        font-size: 0.8rem;
    }

    #introduction {
        min-height: 460px;
        padding: 100px 50px;
    }

    #introduction h2 {
        font-size: 1.75rem;
    }

    #introduction p {
        font-size: 1rem;
    }

    #pre-products div {
        min-height: 300px;
    }

    #pre-products h2 {
        font-size: 2.5rem;
    }

    #pre-products p {
        font-size: 1.25rem;
        max-width: 420px;
    }

    #plantadeira-1200 {
        background-position: left;
        background-size: cover;
        height: 430px;
    }

    #pulverizador-230m, #colheitadeira-s5 {
        background-position: left;
        background-size: cover;
        height: 430px;
    }

    header {
        height: 290px;
    }

    .product-banner h3 {
        font-size: 1.25rem;
    }

    .product {
        margin: 10px 0;
        max-width: 500px;
    }

    .product-banner legend {
        font-size: 0.75rem;
        padding: 5px 20px;
    }
    
}

@media only screen and (max-width: 600px) {

    header {
        height: 270px;
        zoom: 1.5;
    }

    #plantadeira-1200, #pulverizador-230m, #colheitadeira-s5 {
        height: 380px;
    }

    section.main-products {
        padding: 50px 7.8%;
    }
    
    .title h2 {
        font-size: 3rem;
    }

    .products-container {
        margin: 50px 50px 100px;
    }

    .product-wrapper {
        width: 100%;
    }

    .product p {
        bottom: 30px;
        font-size: 5rem;
    }

    .product p span {
        font-size: 3.5rem;
    }

    .cta {
        font-size: 1.5rem;
    }

    .cta.interna {
        margin: 50px auto 0;
    }

    #sobre {
        padding: 50px 50px 150px;
    }

    #sobre-text h2, #caracteristicas-title h2, .pulverizador #caracteristicas-title h2, .colheitadeira #caracteristicas-title h2 {
        font-size: 4rem;
    }

    #sobre-text h2 span, #caracteristicas-title h2 span, #encerramento h3 {
        font-size: 2rem;
    }

    #sobre-text p:nth-of-type(1), #caracteristicas-title p, .pulverizador #caracteristicas-title p {
        font-size: 1.5rem;
    }

    #sobre-text p:nth-of-type(2) {
        font-size: 1.25rem;
    }

    #sobre .light {
        display: none;
    }

    #encerramento {
        padding: 100px 50px;
    }

    #caracteristicas-title {
        margin: 0 auto 50px;
    }

    .caracteristicas-box p {
        font-size: 1rem;
    }

    .caracteristicas-box p strong {
        font-size: 1.5rem;
    }

    .product-banner .product-txt {
        align-items: flex-start;
        flex-direction: column;
        padding: 15px;
    }

    .product-banner h3 {
        font-size: 1.25rem;
    }

    .product-banner legend {
        font-size: 0.8rem;
        margin-top: 10px;
    }

    #plantio, #colheita, #trato-cultural {
        background-size: 200%;
    }

    .product-banner .product-img img:nth-of-type(1) {
        display: none;
    }

    .product-banner .product-img img:nth-of-type(2) {
        display: none;
    }

    .product-banner .product-img img:nth-of-type(3) {
        display: block;
    }

    #trato-cultural .product-banner .product-img img:nth-of-type(1) {
        display: none;
    }

    #trato-cultural .product-banner .product-img img:nth-of-type(2) {
        display: block;
    }

    .product, #trato-cultural .product {
        max-width: 300px;
    }

    #products-list {
        align-items: center;
        margin: 40px 0;
    }

    #plantio, #colheita {
        background-size: 300%;
    }

    section.main-products {
        height: 1180px;
    }

    #solucoes-financeiras h2{
        font-size: 2rem;
    }

    #solucoes-financeiras p {
        font-size: 1.25rem;
    }

    #solucoes-financeiras legend {
        font-size: 1rem;
    }

    #introduction {
        min-height: 350px;
        padding: 50px 25px;
    }

}

@media only screen and (max-width: 550px) {

    #introduction {
        background-size: 220%;
    }

    nav {
        padding: 0 20px;
    }

    header {
        height: 250px;
    }

    #pre-products h2 {
        font-size: 2rem;
    }

    #pre-products p {
        font-size: 1.25rem;
        max-width: 380px;
    }

    #solucoes-financeiras a{
        font-size: 18px;
        width: 95%;
    }
    
}

@media only screen and (max-width: 500px) {

    #introduction {
        background-size: 240%;
    }

    
    header {
        zoom: 1.5;
    }

    #introduction h2 {
        font-size: 1.5rem;
    }

    #plantadeira-1200, #pulverizador-230m, #colheitadeira-s5 {
        height: 300px;
    }

    #pre-products div {
        min-height: 300px;
    }

    #pre-products h2 {
        font-size: 2rem;
    }

    #pre-products p {
        font-size: 1rem;
        max-width: 380px;
    }

    #sobre-container {
        margin-bottom: 150px;
    }

    .pulverizador #caracteristicas-title h2, .colheitadeira #caracteristicas-title h2, .pulverizador #sobre-text h2 {
        font-size: 3.25rem;
    }

    #encerramento {
        padding: 70px 50px;
    }

    #solucoes-financeiras{
        padding: 30px;
    }
    
}

@media only screen and (max-width: 450px) {

    header {
        height: 200px;
        zoom: 1.8;
    }

    #introduction {
        background-size: 260%;
    }

    nav {
        padding: 0 10px;
    }

    #plantadeira-1200, #pulverizador-230m {
        height: 300px;
    }

    #sobre-text h2, #caracteristicas-title h2, .pulverizador #caracteristicas-title h2, .colheitadeira #caracteristicas-title h2, .pulverizador #sobre-text h2 {
        font-size: 3rem;
    }

    #sobre-text h2 span, #caracteristicas-title h2 span, #encerramento h3 {
        font-size: 1.75rem;
    }

    #sobre-text p:nth-of-type(1), #caracteristicas-title p, .pulverizador #caracteristicas-title p {
        font-size: 1.25rem;
    }

    #sobre-text p:nth-of-type(2) {
        font-size: 1rem;
    }

    #plantio, #colheita, #trato-cultural {
        background-size: 300%;
    }

    #trato-cultural {
        height: 850px;
    }
    
}

@media only screen and (max-width: 430px) {

    header {
        height: 190px;
    }
}

@media only screen and (max-width: 420px) {

    nav {
        height: 120px;
    }

    nav ul li a {
        font-size: 0.75rem;
    }

    #sobre {
        padding: 50px 30px 150px;
    }

    #caracteristicas {
        padding: 100px 30px 100px;
    }

    .pulverizador #caracteristicas-title h2, .colheitadeira #caracteristicas-title h2, .pulverizador #sobre-text h2 {
        font-size: 2.5rem;
    }

    .pulverizador #caracteristicas-title h2 span {
        font-size: 1.5rem;
    }

    /* .swiper-button-next, .swiper-button-prev {
        top: 100px;
    } */
    
}

@media only screen and (max-width: 410px) {

    header {
        height: 180px;
    }
}

@media only screen and (max-width: 400px) {

    .title h2 {
        font-size: 2.5rem;
    }

    .pulverizador #sobre-text h2 span {
        font-size: 1.5rem;
    }

    .cta {
        font-size: 1rem;
    }

    

    .product-banner h3 span.type {
        font-size: 1rem;
    }

    /* .product:last-of-type .product-banner h3, .product-banner h3 span, .product-name, .product-banner.colhedora h3 span {
        font-size: 1.5rem;
    } */

    .product-banner h3 span.type {
        font-size: 1rem;
    }

    .product-banner h3 legend {
        font-size: 0.75rem;
    }

    #pre-products h2, #solucoes-financeiras h2 {
        font-size: 1.5rem;
    }

    .title p, #solucoes-financeiras p {
        font-size: 1rem;
    }

    #solucoes-financeiras {
        min-height: 550px;
    }
    
}

@media only screen and (max-width: 375px) {

    header {
        zoom: 1.6;
    }
    
}