* {
    margin: 0;
    padding: 0;
}

:root {

    --color-azul-escuro: #002b59;
    --color-azul-secundario: #005cbf;
    --color-azul-secundario-hover: #004999;
    --color-azul-secundario-active: #003773;
    --color-azul-claro: #e6f2ff;
    --color-cinza: #373737;
    --color-background: #F2F2F2;
    --color-cinza-claro: #B0B0B0;
    --color-azul-primario: #007aff;
    --color-azul-hover: #006ee6;
    --color-azul-active: #0062cc;
    --color-azul-claro-active:#b0d6ff;
    --color-azul-light-active:#d6eaff;
}

body {
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* NAV */

.icon_contato{
    fill: var(--color-azul-claro);
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 1rem;
    text-decoration: none;
}

li a:hover:not(.active) {
    background-color: var(--color-azul-secundario-hover);
    border-radius: 10px;
}

.active {
    background-color: var(--color-azul-active);
}

/* Mobile */

.navbar {
    background-color: var(--color-azul-secundario);
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu {
    background-color: var(--color-azul-secundario);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav_links {
    visibility: hidden;
    display: none;
}

.banner_princial {
    padding: 1rem;
    height: auto;
    background-image: linear-gradient(to right, rgb(36, 53, 23), rgba(83, 112, 60, 0)), url("img/banner_principal_onstation.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.container_text_banner {
    width: 50%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: white !important;

}

.button_whatsapp{
    background-color: var(--color-azul-primario);
    border: none;
    border-radius: 8px;
    color: var(--color-azul-claro);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    font-weight: bolder;
    letter-spacing: 1px;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
}

.button {
    background-color: var(--color-azul-primario);
    border: none;
    border-radius: 8px;
    color: var(--color-azul-claro);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-weight: bolder;
    letter-spacing: 1px;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
}

.button:hover {
    background-color: var(--color-azul-hover);
    box-shadow: var(--color-azul-escuro);
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19)
}

.button:active {
    background-color: var(--color-azul-active);
    transform: translateY(3px);
}

/* FONTS */

h1 {
    /* Titulo bold verde claro */
    color: var(--color-cinza);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    /* 20px */
    letter-spacing: 1px;
}

h2 {
    /* Titulo bold verde escuro */
    color: var(--color-cinza);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 125%;
    /* 25px */
    letter-spacing: 1px;
}

h3 {
    /* Titilo paragrafo cinza */
    color: var( --color-azul-escuro);
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    /* 121.429% */
}

h4 {
    /* Titulo banner */
    color: var(white);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    /* 20px */
    letter-spacing: 1px;
}

h5{
    background-color: var(--color-azul-primario);
    color: var(--color-azul-claro);
    text-align: center;
    text-decoration: none;
    font-size: 14px;
}

p {
    color: var(--Cinza-01, --color-cinza);
    font-family: Montserrat;
    font-size: 12px;
    font-style: bold;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: 15px;
    /* 150% */
}

a1 {
    /* fotter */
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    text-decoration: none;
    font-weight: 400;
    line-height: 15px;
    /* 125% */
}

a {
    /* fotter */
    font-family: Montserrat;
    color: var(--color-azul-claro);
    font-size: 12px;
    font-style: normal;
    text-decoration: none;
    font-weight: 400;
    line-height: 15px;
    /* 125% */
}

.titulo_conheca {
    display: flex;
    flex-wrap: wrap;
    font-weight: 900;
    color: var(--color-azul-primario);
}

.titulo_box_app {
    color: white !important;
}

/* MAIN */

.content_section01{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.text_section_01 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: auto;
}

.section_grid_01 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    padding: 0.5rem;
}

.section_grid_02 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    padding-left: 0.5rem;
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: none;
}

.text_grid {
    justify-content: left;
}

.text_grid_02 {
    display: flex;
    align-items: center;
}

.img_grid_01 {
    justify-content: left;
    background-image: url(img/solutions_mobile_gerador01.gif);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    max-height: 300px;
}

.text_ozoniogerado{
    padding: 0.5rem;
    padding-top: none;
}

.img_grid_02 {
    justify-content: left;
    background-image: url(img/solutions_desktop_agricultura.png);
    background-position: top;
    background-size: cover;
    border-radius: 10px;
    max-height: 300px;
}

.img_grid_03 {
    background-image: url(img/solutions_desktop_setor_leiteiro.png);
    background-position: left;
    background-size: cover;
    border-radius: 10px;
    max-height: 300px;
}
.img_grid_04 {
    background-image: url(img/ovosferteis.png);
    background-position: left;
    background-size: cover;
    border-radius: 10px;
    max-height: 300px;
}

.section_01 {
    display: flex;
    flex-wrap: wrap;
}

/* YOUTUBE */

#solucoes{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 250px;
    margin: 1rem;
}
.embed{
    height: 100%;
    width: 100%;
    margin: 0.5rem;
}

iframe{
    border-radius: 1rem;
}

/* Combate */

.titulo_combate{
    padding: 0.5rem;
}

.prevencao{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
}
.combate{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 1rem;
}
.virus{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.img_virus { 
    background-image: url(img/coronavirus-2019-ncov-novel-coronavirus-concept-m-2021-08-30-20-36-40-utc.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 100px;
    width: 100px;
    height: 100px;
}
.img_bacteria { 
    background-image: url(img/enterobacteriaceae-bacteria-family-2021-08-26-18-26-31-utc.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 100px;
    width: 100px;
    height: 100px;
}
.img_acaro { 
    background-image: url(img/dangerous-parasite4-2021-08-28-05-00-25-utc.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 100px;
    width: 100px;
    height: 100px;
}
.img_fungo { 
    background-image: url(img/fungi-on-agar-plate-2021-08-26-17-17-27-utc.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 100px;
    width: 100px;
    height: 100px;
}
.text_combate{
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* APP */

#sobreaempresa {
    background-color: var(--color-azul-light-active);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: -webkit-fill-available;
}

.icons_app {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}


/* Entre em contato  */

.icon_contato {
    fill: var(--color-azul-escuro);
  }

.contatos {
    padding: 0.2rem;
}

#contato {
    /* display: flex; */
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    justify-content: center;
}

.contato_onagro {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    gap: 1rem;
}

.contato {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* FORMS */

.forms {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    padding: 0.5rem;
    gap: 1rem;
}

#contact-form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.input {
    font-family: Montserrat;
    background-color: var(white);
    border: 1px solid var(--color-cinza-claro);
    border-radius: 8px;
    color: var(--color-azul-escuro);
    padding: 15px 32px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}

.input:hover {
    border: 2px solid var(--color-azul-primario);
    margin: -1px;
}

.input:active {
    border: 2px solid var(--color-azul-primario);
    margin: -1px;
}

.grid_contato {
    display: none;
}

/* Footer */

footer {
    background-color: var(--color-azul-secundario);
    padding: 2rem;
}

.footer_content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.logo_social {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-direction: column;
}

.social {
    display: flex;
    gap: 2rem;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: column;
}

#bt_acessar{
    display: none;
}

/* WEB */

@media only screen and (min-width: 568px) {

    .img_grid_01 {
        background-image: url(img/solutions_desktop_gerador.gif);
        background-position: center;
        background-size: cover;
        border-radius: 10px;
        max-height: 300px;
    }

    /* combate */

    .img_virus { 
      width: 150px;
      height: 150px;
    }
    .img_bacteria { 

        width: 150px;
        height: 150px;
    }
    .img_acaro { 
        width: 150px;
        height: 150px;
    }
    .img_fungo { 
        width: 150px;
        height: 150px;
    }




    #bt_acessar{
        display: flex;
    }

    h1,
    h2,
    h3 {
        font-size: 22px;
        line-height: 24px;
    }

    a {
        font-size: 14px;
        line-height: 20px;
    }

    p {
        font-size: 14px;
        line-height: 20px;
    }

    .icon_menu_mobile {
        display: none;
    }

    .nav_links {
        display: flex;
        visibility: visible;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .menu {
        background-color: var(--color-azul-secundario);
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        max-width: 1250px;
    }

    .navbar {
        /* padding: 1% 15% 1% 15%; */
        justify-content: center;
    }

    .banner_princial {
        margin: 1rem;
        padding: 3rem;
        border-radius: 16px;
        max-width: 900px;
        height: 250px;
        background-image: linear-gradient(to right, rgb(36, 53, 23), rgba(83, 112, 60, 0)), url("img/banner_principal_onstation_web.png");
        background-position: right top;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        align-content: center;
    }

    /* Section 01 */

    .content_section01 {
        max-width: 1000px;
    }

    .section_01 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .text_section_01 {
        height: 100%;
        justify-content: center;
    }

    .img_grid_01,
    .img_grid_02,
    .img_grid_03_app,
    .img_grid_03_relatorio,
    .img_grid_03_historico {
        width: auto;

        background-position: top 10px;
    }

/* YOUTUBE */

    #solucoes{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 400px;
    }
    .embed{
        padding: 0.5rem;
        height: 100%;
        max-width: 985px;
        width: 100%;
    }

/* APP */

    #sobreaempresa,
    icons_app {
        padding: 3rem;
        gap: 2rem;
        max-width: 900px;
        border-radius: 10px;
    }

/* Contato */

#contato {
        display: flex;
        justify-content: center;
    }

    .contatos {
        max-width: 1000px;
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .contato_onagro {
        width: 100%;
    }

    .forms {
        width: 100%;
    }

    /* FOOTER */
    footer {
        display: flex;
        justify-content: center;
    }

    .footer_content {
        display: flex;
        width: 1250px;
        justify-content: space-between;
    }

    .teste_grid_contato {
        height: auto;
        width: 100%;
        display: flex;
        background-color: var(--color-azul-active);
        justify-content: center;
    }

    .grid_contato_test {
        width: 100%;
        max-width: 1000px;
        display: flex;
        background-color: #f0140c;
    }

    .contato_teste {
        width: 100%;
        background-color: #44ff00;
    }

    .forms_teste {
        width: 100%;
        background-color: #B0B0B0;
    }

}


/* Sobre */

.section_sobre {
    display: flex;
    flex-wrap: wrap;
    margin: 0.5rem;
}

.img_sobre {
    height: 230px;
    background-image: url(img/featured_image.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
}

.sobre_onagro {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.grid-container {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto;
    background-color: #2196F3;
    padding: 10px;
  }
  .grid-item {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.8);
    padding: 20px;
    font-size: 30px;
    text-align: center;
  }