:root {

    --hue-color: 110;

    /* HSL color mode */
    --first-color: #163300;
    --first-color-second: hsl(var(--hue-color), 64%, 22%);
    --first-color-alt: hsl(var(--hue-color), 64%, 15%);
    --title-color: #163300;
    --text-color: #121212;
    --text-color-light: hsl(var(--hue-color), 8%, 60%);
    --input-color: hsl(var(--hue-color), 24%, 97%);
    --body-color: hsl(var(--hue-color), 100%, 99%);
    --white-color: #fff;
    --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

    /*========== Font and typography ==========*/
    --body-font: 'Open Sans', sans-serif;
    --title-font: 'Raleway', sans-serif;
    --biggest-font-size: 2.5rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: 1rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;


    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;

    /*========== Hover overlay ==========*/
    --img-transition: 0.3s;
    --img-hidden: hidden;
    --img-scale: scale(1.1);
}

@media screen and (min-width: 768px) {
    :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.75rem;
        --h3-font-size: 0.75rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

@media screen and (min-width: 968px) {
    :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.75rem;
        --h3-font-size: 1rem;
        --normal-font-size: 1.25rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

@media screen and (min-width: 1440px) {
    :root {
        --biggest-font-size: 5rem;
        --h1-font-size: 2.75rem;
        --h2-font-size: 2.25rem;
        --h3-font-size: 1.5rem;
        --normal-font-size: 1.25rem;
        --small-font-size: 1rem;
        --smaller-font-size: .9rem;
    }
}

.dark-mode:root {
    --hue-color: 190;

    /* HSL color mode */
    --first-color-second: hsl(var(--hue-color), 54%, 12%);
    --title-color: hsl(var(--hue-color), 24%, 95%);
    --text-color: hsl(var(--hue-color), 8%, 75%);
    --input-color: hsl(var(--hue-color), 29%, 16%);
    --body-color: hsl(var(--hue-color), 29%, 12%);
    --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*========== BASE ==========*/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 3rem 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    color: #121212;
    font-weight: var(--font-semi-bold);
    font-family: var(--title-font);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    height: auto;
}

button,
input {
    border: none;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

button {
    cursor: pointer;
}

input {
    outline: none;
}

strong {
    color: var(--first-color);
}

/*========== Reusable classes ==========*/
.section {
    padding: 4.5rem 0 2.5rem;
}

.section__title {
    font-size: var(--biggest-font-size);
    color: var(--title-color);
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 2rem;
}

.container {
    max-width: 1230px;
    margin-left: 1rem;
    margin-right: 1rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

/*========== HEADER ==========*/
.header {
    width: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
}

/*========== NAV ==========*/

.nav {
    height: 6rem;
    display: flex;
    justify-content: center;
    margin: auto;
    align-items: center;
    background-color: transparent;
}

nav img {
    width: 220px;
}

.nav__toggle {
    color: var(--white-color);
    display: none;
}

.nav__logo {
    width: 250px;
    margin-right: 40px;
}

.nav__toggle {
    font-size: 1.2rem;
    cursor: pointer;
}

.nav__menu {
    position: relative;
    margin-left: 30px;
}

.nav__list {
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
    row-gap: 2.5rem;
}

.nav__link {
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    transition: color 0.5s;
}

.nav__link_contato {
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    transition: color 0.5s;
    padding: 3px 8px;
    border-radius: 40px;
    border: 2px solid #fff;
}

.nav__link:hover{
    color: #556a2f;
}

.nav__link:hover {
    color: #556a2f;
}

.nav__close {
    position: absolute;
    top: .75rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
}

@media screen and (max-width: 1230px) {

    .nav__link {
        font-size: 0.9rem;
    }

    .nav__link_contato {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 1030px) {

    .nav {
        height: 4rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: transparent;
        padding: 1rem;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        column-gap: 1rem;
        row-gap: 2.5rem;
    }

    .nav__link {
        color: var(--first-color);
        font-weight: var(--font-semi-bold);
        text-transform: uppercase;
        transition: color 0.5s;
    }

    .nav__link_contato {
        margin-left: 0px;
    }
    
    .nav__menu {
        position: fixed;
        background-color: var(--body-color);
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        box-shadow: -1px 0 4px hsla(var(--hue-color), 64%, 15%, .15);
        padding: 3rem;
        transition: .4s;
    }

    .nav__toggle {
        display: block;
    }

    .nav__link_contato {
        color: var(--first-color);
        padding: 0px;
    }
}

@media screen and (min-width: 769px) {
    .nav__close {
        display: none;
    }
}

/*========== SHOW MENU ==========*/
.show-menu {
    right: 0;
}


/*========== HOME ==========*/

.home {
    width: 100%;
    height: calc(100vh - 10rem);
}

.container--img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #163300;
}

.video-produtos {
    width: 100vw;
    height: calc(80vh);
    object-fit: cover;
}

.home__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 83%;
    opacity: 50%;
}

.home__container {
    position: relative;
    height: calc(100vh - 4rem);
    margin-bottom: 2.5rem;
    row-gap: 3rem;
    margin: 12vw;
}

.home__data-subtitle,
.home__data-title,
.home__social-link,
.home__info {
    color: var(--white-color);

}

.home__data-subtitle {
    display: block;
    font-weight: var(--font-semi-bold);
    margin-bottom: 0.75rem;
}

.home__data-title {
    font-size: var(--biggest-font-size);
    font-weight: var(--font-medium);
    margin-bottom: 2.5rem;
}

.somos {
    color: goldenrod;
}

.home__data-description {
    text-align: justify;
    max-width: 780px;
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    color: var(--white-color);
}

.home__data-description-2 {
    margin-top: 2.5rem;
    text-align: justify;
    max-width: 500px;
    font-size: calc(var(--h3-font-size) - 0.2rem);
    font-weight: var(--font-medium);
    color: var(--white-color);
    margin-bottom: 30rem;
}

.home__social {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.home__social-link {
    font-size: 1.2rem;
    width: max-content;
}

@media screen and (max-width: 768px) {

    .home {
        width: 100%;
        height: calc(100vh - 5rem);
    }

    .home__data-description {
        text-align: justify;
        max-width: 400px;
        font-size: var(--h3-font-size);
        font-weight: var(--font-medium);
        color: var(--white-color);
    }
    
    .home__data-description-2 {
        text-align: justify;
        font-size: calc(var(--h3-font-size) - 0.1rem);
        font-weight: var(--font-medium);
        color: var(--white-color);
    }

    .home_data {
        margin-top: 5rem;
    }
}

/*========== ABOUT ==========*/

.about {
    margin: 0px 5vw;
}
.about__data{
    text-align: center;
}

.about__container{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin: 0px auto;
    row-gap: 2.5rem;
}

.about__description {
    max-width: 445px;
    text-align: justify;
    font-size: var(--normal-font-size);
}

.card-container {
    max-width: 400px;
    position: relative;
    border: 1px solid #ccc;
    overflow: hidden;
    cursor: pointer;
}

.image-ita {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-image-ita {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: hsla(110 76% 47% / 0.24);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    transition: left 0.5s ease;
}

.nome-info-image {
    font-size: var(--h2-font-size);
    padding: 0px 12px;
    color: #fff;
}

.description-info-image {
    font-size: 14px;
    padding: 0px 12px;
    color: #fff;
    padding-bottom: 15px;
}

.card-container:hover .info-image-ita {
    left: 0;
}

@media screen and (max-width: 900px) {

    .about__container{
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        margin: 0px auto;
        column-gap: 2.5rem;
    }

    .about__img{
        min-width: 280px;
        max-width: 1200px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/*========== Funcionamento ==========*/

.funcionamento {
    margin: 0px 5vw;
}
.funcionamento__data {
    text-align: center;
}

.funcionamento__title {
    text-align: center;
    padding: 0px 10px;
    font-size: var(--biggest-font-size);
}

.container-funcionamentos {
    margin-top: 7rem;
    display: flex;
    justify-content: space-evenly;
    column-gap: 30px;
    flex-direction: row;
}

.funcionamento-card {
    min-width: 300px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.funcionamento-card-title {
    color: goldenrod;
}

.funcionamento-card-description {
    max-width: 300px;
    font-size: calc(var(--h3-font-size) - 0.2rem);
    font-weight: var(--font-medium);
}

.funcionamento__home {
    width: 80vw;
    margin: 0px 10vw;
    overflow: hidden;
}

.funcionamento__home img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1024px) {

    .container-funcionamentos {
        flex-direction: column;
        column-gap: 30px;
    }
    
    .funcionamento-card {
        row-gap: 5px;
    }

    .funcionamento-card-description {
        min-width: 100%;
        margin-bottom: 2.5rem;
    }

    .funcionamento__home {
        width: 100vw;
        margin: 0px 0px;
        padding: 30px;
        overflow: hidden;
    }
}

@media screen and (max-width: 769px) {

    .garantia {
        margin-top: 5rem;
    }
}

@media screen and (max-width: 500px) {

    .garantia {
        margin-top: 7rem;
    }
}

@media screen and (max-width: 380px) {

    .garantia {
        margin-top: 12rem;
    }
}

/* juntese */

.juntese {
    width: 100vw;
    height: 450px;
    margin-top: 4rem;
}

.juntese__container {
    position: relative;
    padding: 0px 3vw;

}

.juntese__img {
    border-radius: 50px;
    width: 100%;
    height: 450px;
    object-fit: cover;
    opacity: 90%;
}

.justese__data {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    row-gap: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.justese__data-title {
    font-size: var(--h3-font-size);
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    text-shadow: rgb(37, 37, 37) 1px 0 10px;
}

.justese__data-subtitle {
    font-size: calc(var(--h1-font-size) - 5px);
    color: var(--white-color);
    text-shadow: rgb(37, 37, 37) 1px 0 10px;
}

.justese__data-subtitle strong{
    font-size: var(--h1-font-size);
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
}

.justese__data-btn {
    border: none;
    padding: 0.45rem 0.85rem;
    border-radius: 45px;
    font-weight: var(--font-semi-bold);
    font-size: calc(var(--normal-font-size) - 0.2rem);
}


.footer {
    width: 100vw;
    margin: 4rem auto 0.4rem auto;
    padding: 0px 3vw;
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer__title {
    width: 100%;
    text-align: center;
}

.footer__container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.footer__img {
    max-width: 1200px;
    width: 100%;
}

.footer__data {
    width: 100%;
    margin: 2rem 0px;
    display: flex;
    column-gap: 4rem;
    justify-content: center;
}

.footer_nav {
    width: 50%;
}

.footer_contato {
    width: 50%;
}

.footer_nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    font-size: 1rem;
    text-align: left;
}

.footer_nav__link {
    color: var(--text-color);
    font-size: 1rem;
    transition: color 0.5s;
}

.footer_nav__link:hover {
    color: var(--first-color);
    font-size: 1.1rem;
    transition: 0.5;
}


.footer_contato__list {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    text-align: left;
}

.footer_contato__link {
    color: var(--text-color);
    font-size: 1rem;
    transition: color 0.5s;
}

.footer_contato__link:hover {
    color: var(--first-color);
    font-size: 1.1rem;
    transition: 0.5;
}

.footer_contato__link i {
    font-size: 1.3rem;
}

.footer_contato__link i:hover {
    color: var(--first-color);
    font-size: 1.4rem;
    transition: 0.5;
}

@media screen and (max-width: 640px) {
    .footer__data {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
        text-align: center;
    }

    .footer_nav {
        width: 100vw;
    }

    .footer_contato {
        width: 100vw;
    }

    .footer_nav__list {
        text-align: center;
    }

    .footer_contato__list {
        text-align: center;
    }
}



/*----------------- home__alpha ---------     */

#pagina-home {
    position: relative;
}

.home__alpha {
    width: 100vw;
    height: calc(100vh);
}

.home__alpha-container {
    position: absolute;
    top: -3rem;
    left: 0px;
    width: 100%;
    height: calc(100vh);
    background-color: #163300;
}

.home__alpha-container-img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 50%;
}

.home__apha--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home__alpha__container {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 80vh;
    row-gap: 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 12vw;
    margin-top: 3rem;
}

.home__alpha-info {
    margin-top: 5vh;
}

.home__alpha-title {
    color: var(--white-color);
}

.home__alpha-subtitle {
    display: block;
    font-weight: var(--font-semi-bold);
    margin-bottom: 0.75rem;
}

.home__alpha-title {
    font-size: calc(var(--biggest-font-size));
    font-weight: var(--font-medium);
    margin-bottom: 2.5rem;
}

.home__alpha-description {
    text-align: justify;
    max-width: 400px;
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
    color: var(--white-color);
}

.oportunidades {
    color: goldenrod;
}

.home__alpha-btn {
    margin-top: 50px;
}

.home__alpha-btn {
    padding: 9px 19px;
    border-radius: 40px;
    font-size: 1.1rem;
    background-color: goldenrod;
    color: #2b3730;
    border: none;
}

@media screen and (max-width: 768px) {

    .home__alpha__container {
        padding-top: 5rem;
    }

    .home__alpha-title {
        font-size: calc(var(--biggest-font-size) - 0.7rem);
    }
    

    .home__alpha-description {
        max-width: 220px;
        font-size: calc(var(--h3-font-size) - 0.2rem);
    }
}

.container-info-ponte {
    position: relative;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.container-data-ponte {
    max-width: 1300px;
    height: 20rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.left-content {
    flex: 1;
    padding: 20px;
    max-width: 480px;
}

.right-content {
    flex: 1;
    padding: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .left-content, .right-content {
        flex: 1 100%;
        text-align: center;
    }
}

.produtos__carousel-section {
    margin: 2rem 5vw;
}

.produtos__carousel-title {
    text-align: center;
    font-size: var(--biggest-font-size);
}

.produtos__carousel__data {
    margin-top: 3rem;
    width: 100%;
    height: 100%;
    background-color: #163300;
    border-radius: 50px;
    padding: 30px 30px 30px 20px;
    display: flex;
    overflow: hidden;
}

.produtos__carousel-buttons-container {
    min-width: 100px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.produtos__carousel-buttons-container-label {
    transform: rotate(270deg);
    padding: 0px 37px 105px 0px;
}

.produtos__carousel-buttons-container-description {
    color: #93c494;
    font-size: 1.75rem;
    font-weight: bold;
    text-align: end;
}

.produtos__carousel-buttons {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 0px 0px 8px 13px;
}

.produtos__carousel-button {
    color: #93c494;;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 50%;
    border: 3px solid #93c494;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.produtos__carousel-button:hover {
    color: #163300;;
    width: 60px;
    height: 60px;
    background-color: #93c494;
    border-radius: 50%;
    border: 3px solid #163300;
}


.produtos__carousel-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.produtos__carousel {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.carousel {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.card {
    position: relative;
    width: 400px;
    height: 545px;
    margin: 0 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.card-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 3rem;
    color: #fff;
    font-weight: bolder;
    text-shadow: 2px 2px 5px #121212;
}

.info-image-produto {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #556a2f;
    transition: left 0.5s ease;
    border-radius: 20px;
}

.card:hover .info-image-produto {
    left: 0;
}

.info-image-produto {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    row-gap: 17px;
    padding: 50px 20px;
}

.nome-info-image-produto {
    font-size: 3rem;
    color: #fff;
    font-weight: bolder;
    text-shadow: 2px 2px 5px #121212;
}

.description-info-image-produto {
    font-size: 1.1rem;
    color: #fff;
}

.button-info-image-produto {
    max-width: 250px;
    background-color: transparent;
    color: #93c494;
    border: #93c494 2px solid;
    padding: 3px 8px;
    border-radius: 40px;
}

@media (max-width: 768px) {
    .produtos__carousel__data {
        flex-direction: column;
        border-radius: 0px;
    }

    .produtos__carousel-buttons-container {
        flex-direction: row;
        justify-content: space-between;
        max-width: 100%;
    }

    .produtos__carousel-buttons-container-label {
        transform: rotate(0deg);
        padding: 20px;
    }

    .produtos__carousel-buttons {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        column-gap: 20px;
        padding: 0px 0px 0px 0px;
        width: 100%;
        justify-content: end;
    }

    .produtos__carousel-buttons-container-description {
        color: #93c494;
        font-size: 1.2rem;
        font-weight: bold;
        text-align: end;
    }

    .card {
        position: relative;
        width: 300px;
        margin: 0 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    .produtos__carousel-section {
        margin: 2rem 0px;
    }
}

@media (max-width: 375px) {
    .card {
        position: relative;
        width: 260px;
        margin: 0px 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
}

/* PRODUTOS */

#pagina-produtos {
    position: relative;
}

.produtos_home {
    width: 100vw;
    height: calc(70vh);
}

.produtos_home-container {
    position: absolute;
    top: -3rem;
    left: 0px;
    width: 100%;
    height: calc(80vh);
    background-color: #163300;
}

.produtos_home-container-img {
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(34, 34, 34, 0.8), rgba(0, 0, 0, 0));
}

.overlay-somos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top left, rgba(0, 0, 0, 0.95), rgba(16, 90, 28, 0.3));
}

.produtos_home--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produtos_home__container {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100vh;
    margin-bottom: 2.5rem;
    row-gap: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 12vw;
}

.produtos_home-info {
    margin-top: 5vh;
}

.produtos_home-title {
    color: var(--white-color);
    font-size: calc(var(--biggest-font-size));
    font-weight: bold;
    margin-bottom: 13.5rem;
    text-transform: uppercase;
}

.diversifique {
    color: goldenrod;
}

.produtos_home-btn {
    margin-top: 50px;
}

.produtos_home-btn {
    padding: 5px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    background-color: goldenrod;
    color: #2b3730;
    border: none;
}

@media screen and (max-width: 768px) {

    .produtos_home__container {
        padding-top: 5rem;
    }

    .produtos_home-title {
        font-size: calc(var(--biggest-font-size) - 0.7rem);
    }
}

/* GRID CONTAINER */


.grid-container {
    display: grid;
    gap: 10px;
    width: 100vw;
    margin: 0px auto;
    max-width: 1400px;
    justify-content: center;
    grid-template-columns: repeat(auto-fill, minmax(430px, 430px));
}

.grid-item {
    border-radius: 10px;
    text-align: center;
    border-radius: 20px;
}

.card-produto {
    box-shadow: unset;
}

.container-button-produto {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 300px));
    }
}

@media (max-width: 375px) {
    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(260px, 260px));
    }
}

.error {
    color: red;
    font-size: 0.9em;
}


.contato_content {
    width: 100vw;
    height: calc(110vh);
}

.contato_content-container {
    position: absolute;
    top: 0rem;
    left: 0px;
    width: 100%;
    height: calc(100vh);
    background-color: #163300;
}

.contato_content__container {
    width: 100vw;
    height: 115vh;
    row-gap: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 12rem;
    margin: 12rem auto 0px auto;
}

.contato_content__container_data {
    margin: 0px auto;
}

.contato_content-title {
    font-size: var(--biggest-font-size);
    color: var(--white-color);
}

.container_contato-data {
    margin-top: 4rem
}

.info-container {
    color: #fff;
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.info-container i {
    font-size: 2.5rem;
    background-color: #3c5a26;
    padding: 7px;
    border-radius: 50%;
}

.info-container span {
    font-size: 1.2rem;
    color: goldenrod;
    height: 100%;
}

.info_contato-data p {
    margin-left: 63px;
    max-width: 473px;
    color: #fff;
}

#meuFormulario {
    max-width: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

#meuFormulario .input {
    display: flex;
    flex-direction: column;
    color: goldenrod;
}

#meuFormulario input {
    padding: 12px 22px;
    border-radius: 40px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-size: 1rem;
    margin-top: 6px;
}

#meuFormulario input::placeholder {
    color: #fff;
}

#meuFormulario textarea {
    height: 150px;
    padding: 22px;
    border-radius: 40px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-size: 1rem;
    margin-top: 6px;
    resize: none;
}

#meuFormulario button {
    padding: 12px 22px;
    border-radius: 40px;
    background-color: #93c494;
    color: #fff;
    font-size: 1rem;
    margin-top: 6px;
}


/* SEJA PARCEIRO */

#meuFormularioParceiro {
    max-width: 40%;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.container-parceiro {
    max-width: 1100px;
}

#meuFormularioParceiro .input {
    display: flex;
    flex-direction: column;
    color: goldenrod;
}

#meuFormularioParceiro input {
    padding: 12px 22px;
    border-radius: 40px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-size: 1rem;
    margin-top: 6px;
}

#meuFormularioParceiro input::placeholder {
    color: #fff;
}

#meuFormularioParceiro textarea {
    height: 150px;
    padding: 22px;
    border-radius: 40px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-size: 1rem;
    margin-top: 6px;
    resize: none;
}

#meuFormularioParceiro button {
    padding: 12px 22px;
    border-radius: 40px;
    background-color: #93c494;
    color: #fff;
    font-size: 1rem;
    margin-top: 6px;
}

@media screen and (max-width: 1100px) {
    
    .contato_content__container {
        flex-direction: column;
    }

    #meuFormulario {
        max-width: 500px;
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        margin: 0px auto;
    }


    #meuFormularioParceiro {
        max-width: 500px;
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        margin: 0px auto;
    }

    .info_contato-data p {
        margin-left: 0px;
        max-width: 500px;
        color: #fff;
        margin-top: 10px;
    }

    .container_contato-data {
        display: flex;
        flex-direction: column;
        row-gap: 14px;
    }

    .contato_content-container {
        position: absolute;
        top: -3rem;
        left: 0px;
        width: 100%;
        height: calc(155vh);
        background-color: #163300;
    }
    .contato_content {
        width: 100vw;
        height: calc(145vh);
    }

    .contato_content__container_data {
        max-width: 500px;
        width: 100%;
    }
}

@media screen and (max-width: 550px) {
    .contato_content__container_data {
        padding: 0px 20px;
    }

    #meuFormulario {
        padding: 0px 20px;
    }
    
    #meuFormularioParceiro {
        padding: 0px 20px;
    }

    .info_contato-data p {
        font-size: 0.72rem;
    }
}



/* bandeiras */

.bandeiras {
    display: flex;
    column-gap: 10px;
}

.bandeiras img {
    width: 30px;
    object-fit: cover;
}

@media screen and (max-width: 400px) {
    
    .card-title {
        font-size: 2.5rem;
    }

    .nome-info-image-produto {
        font-size: 2.5rem;
    }
}
