*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
menu{
    display: flex;
    width: 100svw;
    justify-content: space-between;
    align-items: center;
    background-color: #26331F;
    padding: 10px 20px;

    & .logo{

        display: flex;
        font-family: Arial, Helvetica, sans-serif;
        color: #7EE34F;
        font-size: 30px;
        font-weight: 700;
        & img{
            width: 1.2em;
            margin-right: 0.6em;
        }


    }

    & ul{
        display: flex;
        
        & li{
            list-style: none;
            margin: 0 20px;
            overflow-y: hidden;
            font-size: 20px;
            font-weight: 700;
            
            & a{
                text-decoration: none;
                color: #7EE34F;
                padding: 5px 10px;

                &:hover{
                    background-color: #5C9641;
                    border-radius: 5px;
                    color: white;
                    transition: all 0.3s ease;
                }

            }
        }
    }

}



.hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100svh;
    background-image: url('./img/hidratante.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    

    & h2,p{
        background-color: #436333;
        padding: 2em;
        width: 100svw;
    }


    & p{
        font-size: 1.4em;
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 20px;
    }
}

.sobre{
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(to bottom, #e5e5e5, white);
    padding: 1em;
    transition: all 1s ease-in-out;
    justify-content: center;

    & .institucional{
        font-size: 2em;
        font-weight: 700;
        text-align: center;
        margin-bottom: 1em;
        color: #5C9641;

    }
    & .textos{
        display: flex
        ;
        & .filosofia, .compromisso{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-inline: 2em;
            padding: 1.5em;
            border-radius: 1em;
            width: 100svw;
            background-color: #6F8E61;
            color: white;
    
            & h3{
                font-size: 2em;
                font-weight: 700;
                text-align: center;
                margin-bottom: 1em;
            }
    
            & p{
                font-size: 20px;
                text-align: center;
                margin-bottom: 20px;
            }
        }
    }

}

/* Produtos */
.produtos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to top, #e5e5e5, white);
    padding: 1em;
    

    & h3{
        font-size: 2em;
        font-weight: 700;
        text-align: center;
        margin-bottom: 1em;
    }

    & .cards{
        display: flex;
        & .card{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-inline: 1em;
            padding: 1.5em;
            border-radius: 1em;
            width: 300px;
            background-color: #6F8E61;
            color: white;
    
            & img{
                width: 100%;
                height: auto;
                border-radius: 1em;
                margin-bottom: 1em;
                
            }

            .modify{
                width: 12em;
                height: auto;
                margin-top:-8px;
                border-radius: 1em;
                margin-bottom: 1em;
            }

            
    
            & h4{
                font-size: 1.5em;
                font-weight: 700;
                text-align: center;
                margin-bottom: 0.5em;
            }
    
            & p{
                font-size: 18px;
                text-align: center;
                margin-bottom: 20px;
            }
    
            & a{
                color: #7EE34F;
                background-color: #31392D;
                padding: 10px 20px;
                align-items: center;
                text-decoration: none;
                text-transform: uppercase;
                border: 1px solid #31392D;
                font-weight: 700;
                border-radius: 5px;
                transition: all 0.3s ease;
                &:hover{
                    background-color: #5C9641;
                    color: white;
                    transition: all 0.3s ease;
                    border: 1px solid white;
                }
            }
        }
    }

}    

.provas{
    display: flex;
    padding-top: 0.3em;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F2F2F2;
    background-image: url('./img/Desodorante-bastão.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    & h3{
        background-color: #6F8E61;
        padding: 1em;
        width: 100svw;
        font-size: 2em;
        color: white;
        font-weight: 700;
        text-align: center;
        margin-bottom: 1em;
    }

   
    & .videos{
    display: flex;
    flex-direction: row;

    align-items: center;
    padding: 1.5em;
    
    & .video{
            margin-inline: 1em;
            border-radius: 1em;
            height: 100svh;
            width: auto;
        }
        & img{
            width: 50%;
            height: auto;
            border-radius: 1em;
        }

    }
    
}

footer{
    background-color: #5C9641;
    color: white;
    text-align: center;
    padding: 1em;

    & h3{
        font-size: 2em;
        font-weight: 700;
        text-align: center;
        margin-bottom: 1em;
    }
    & p{
        font-size: 20px;
        text-decoration: none;
        text-align: center;
        margin-bottom: 20px;

        & a{
            text-decoration: none;
            color: white;
            padding: 5px 10px;

            &:hover{
                background-color: #5C9641;
                border-radius: 5px;
                color: #000;
                transition: all 0.3s ease;
            }

        }
    }
    & .contatos{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1em;
        
        color: white;

        & ul{
            align-items: center;
            display: flex;
            flex-direction: row;
            & li{
            
                list-style: none;
                margin: 0 20px;
                overflow-y: hidden;
                font-size: 20px;
                font-weight: 700;
                
                & a{
                    text-decoration: none;
                    color: #000;
                    padding: 5px 10px;
                    font-size: 1.2em;
                    

                    & img{
                        width: 1em;
                        margin-right: 0.6em;
                        fill: white;

                    }

                    &:hover{
                        background-color: #5C9641;
                        border-radius: 5px;
                        color: white;
                        transition: all 0.3s ease;
                    }

                }
            }
        }


    }
}