@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

:root {
    --verde-claro: #A8CF45;
    --verde-escuro: #698339;
    --amarelo: #FFF212;
    --laranja: #FCB92E;
    --alturaProdutos: var(--quantidade-produtos)*12;
}

body {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    font-family: poppins-regular, sans-serif;
    width: 98vw;
    min-height: 100vh;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1em;
}

.banner {
    width: 100vw;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 40em;
}

.banner-video {
    width: 100%;
    object-fit: cover;
}

.logo {
    height: 80%;
    max-height: 80%;
}

.logo-img {
    height: 100%;
    max-height: 100%;
}

.titulo {
    font-family: "Audiowide", sans-serif;
    font-weight: 900;
    /*background-image: linear-gradient(180deg, #A8CF45 0%, #A8CF45 53%, #698339 55%, #698339 100%);
    background-clip: text;
    color: transparent;*/
    /*-webkit-text-stroke: 0.01em var(--verde-escuro);*/
    color: var(--verde-claro);
    text-shadow: 0.05em 0.05em #698339;
}

.cabecalho {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5em;
    height: 3em;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffff;
    font-size: 1.5em;
    padding: 0 2em 0 2em;
    transition: 0.4s;
    box-shadow: 0 0 0.5em #50505071;
}

.card-produto img {
    max-height: 100%;
    border-radius: 1em;
}

.icone {
    width: 7em;
    height: 7em;
    background-size: contain;
    animation: none;
    background-repeat: no-repeat;
    border-radius: 5em;
    cursor: pointer;
}

.botao-img {
    background-image: url('./img/organic.png');
}

.botao-img2 {
    background-image: url('./img/reliability.png');
}

.redes-sociais {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--verde-escuro);
    box-shadow: 0.5em 0.5em #25252580;
    color: #FFFFFF;
    padding: 0;
    gap: 1em;
    width: 70%;
    height: fit-content;
    margin: 2em;
}

.redes-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: solid 0.1em #FFFFFF;
    width: 100%;
    height: 100%;
    padding: 2em;
}

.redes-itens {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
}

.redes-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 1em;
    color: #FFFFFF;
}

.redes-item i {
    font-size: 3em;
    color: #FFFFFF;
}

.rodape {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    width: 100%;
    height: 8em;
    background-color: #606060;
    color: #FFFFFF;
    font-size: 1em;
    overflow: hidden;
    margin-top: auto;
}

.rodape-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    color: #FFFFFF;
}

.rodape-item a {
    color: #FFFFFF;
}

@media screen and (max-width: 800px) {
    body {
        width: 100vw;
    }

    .banner {
        width: 100vw;
        padding-top: 4em;
        height: fit-content;
    }

    main {
        margin-top: 1em;
        gap: 1em;
    }
    
    .desktop { 
        display: none;
    }
    .mobile {
        display: block;
    }

    .cabecalho {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.5em;
        height: 3em;
        width: 100%;
        background-color: #ffffff;
        font-size: 1.5em;
        padding: 0 0.2em 0 0.2em;
    }

    .titulo {
        font-size: 0.4em;
        
    }

    .botao {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        height: 4em;
        background-color: var(--verde-claro);
        color: #FFFFFF;
        text-shadow: 0.1em 0.1em #698339;
        font-size: 1em;
        border-radius: 5em;
        padding: 0.5em 1em 0.5em 1em;
        cursor: pointer;
        gap: 1.5em;
    }

    .icone {
        width: 3em;
        height: 3em;
    }

    .container-base {
        display: flex;
        flex-direction: column;
        width: 95%;
        font-size: 0.8em;
        justify-content: flex-start;
        align-items: center;
        padding: 0 1em;
        background-color: var(--verde-claro);
        border-radius: 1em;
        margin: 0.1em;
        transition: 0.5s;
        overflow: hidden;
    }

    .produtos {
        height: 4em;
    }
    
    .card-produto {
        width: 100%;
        height: 5em;
        background-color: #ffffff;
        color: #505050;
        border-radius: 1em;
        margin: 0.1em;
        display: flex;
        flex-direction: row;
        justify-content: start;
        gap: 0;
        align-items: center;
        padding: 0 0.5em;
        opacity: 0;
        transition: 1s;
    }

    .descricao-produto {
        display: none;
    }

    .produtos.active {
        height: 30em;
        max-height: fit-content;
        padding-bottom: 1em;
        .botao-img {
            background-image: url('./img/organic.gif');
        }
    }

    .produtos.active .card-produto {
        opacity: 1;
        margin: 0.1em;
    }

    .redes-sociais {
        padding: 1em;
        width: 80%;
    }

    .redes-titulo {
        font-size: 1.5em;
        text-shadow: 0.1em 0.1em #636363;
    }

    .redes-item {
        font-size: 0.8em;
    }

    .clientes {
        height: 4em;
    }

    .clientes.active {
        height: 20em;
        max-height: fit-content;
        .botao-img2 {
            background-image: url('./img/reliability.gif');
        }
    }

}

@media screen and (min-width: 800px) {
    body {
        width: 100vw;
        overflow-x: hidden;
    }

    main {
        margin-left: 1vh;
        margin-top: 1em;
        margin-bottom: 2em;
    }
    
    .desktop {
        display: block;
    }
    .mobile {
        display: none;
    }

    .cabecalho {
        padding: 0 8% 0 5%;
        height: 4em;
    }

    .botao {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        height: 8em;
        background-color: var(--verde-claro);
        color: #FFFFFF;
        text-shadow: 0.1em 0.1em #698339;
        border-radius: 5em;
        padding: 1em 2em 1em 2em;
        cursor: pointer;
        gap: 2em;
    }

    .botao:hover {
        color: var(--laranja);
    }

    .botao:hover .botao-img {
        background-image: url('./img/organic.gif');
    }

    .botao:hover .botao-img2 {
        background-image: url('./img/reliability.gif');
    }

    .container-base {
        display: flex;
        flex-direction: column;
        width: 90%;
        justify-content: flex-start;
        align-items: center;
        background-color: var(--verde-claro);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        border-radius: 1em;
        margin: 1em;
        overflow: hidden;
        transition: 1s;
    }

    .produtos {
        height: 8em;
    }

    .clientes {
        height: 8em;
    }
    
    .card-produto {
        width: 98%;
        height: 10em;
        background-color: #ffffff;
        color: #505050;
        border-radius: 1em;
        margin: 1em 2em 1em 2em;
        display: flex;
        flex-direction: row;
        justify-content: start;
        gap: 2em;
        align-items: center;
        opacity: 0;
        transition: 1s;
    }

    /*.produtos:hover {
        height: 58em;
        max-height: fit-content;
        .card-produto {
            opacity: 1;
            margin: 1em 2em 1em 2em;
        }
    }*/

    .redes-sociais {
        padding: 5em;
    }

    .redes-itens {
        gap: 3em;
    }

    .redes-item {
        padding: 2em;
    }

    .redes-item:hover {
        text-shadow: 0.3em 0.3em #25252580;
        padding: 1.8em 2em 2em 1.8em;
    }

    .active {
        height: 60em;
        max-height: fit-content;
        .card-produto {
            opacity: 1;
            margin: 1em 2em 1em 2em;
        }
    }

    .rodape {
        height: 10em;
        font-size: 2em;
    }
}

