* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #4F4F4F;
}

img {
    display: block;
    max-width: 100%;
}

h1 {
    font-size: 50px;
    line-height: 74px;
    font-weight: 800;
    color: #E3686B;
    text-align: center;

    width: 100%;
    max-width: 808px;
    margin: 100px auto;
}

h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
}

h3 {
    font-size: 24px;
    line-height: 38px;
    font-weight: 800;
    color: #BCC99B;
    margin-bottom: 30px;
}

h6 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #BCC99B;
}

p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 18px;
}

a {
    font-size: 16px;
    text-decoration: none;
}


header {
    width: 100%;
    background-color: #F4EDE5;
}

nav {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
    padding: 25px 28px;

    display: flex;
    justify-content: space-between;
    align-items: center; 
}

nav a {
    font-weight: 800;
    color: #BCC99B;
}

nav a:hover {
    color: #E3686B;
}

#menu {
    width: 100%;
    max-width: 420px;

    display: flex;
    justify-content: space-between;
}

#hmenu {
    display: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

#intro-wrapper {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 24px;
    margin-bottom: 140px;
}

#intro-txt {
    width: 100%;
    max-width: 600px;

    display: flex;
    flex-direction: column;
}

#intro-txt h2 {
    margin-bottom: 12px;
}

#intro-txt p {
    margin-bottom: 30px;
}

.cta {
    font-weight: 800;
    color: #E3686B;

    width: 100%;
    max-width: 184px;
    border: 1px solid #E3686B;
    border-radius: 6px;
    padding: 8px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.cta:hover {
    color: #fff;

    border: 1px solid #E3686B;
    background-color: #E3686B;
}

#receitas-wrapper {
    width: 100%;

    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 140px;
}

.receita-card {
    width: 100%;
    max-width: 288px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-txt {
    min-height: 140px;
    margin-top: 24px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-txt p {
    margin-bottom: 16px;
}

#separador {
    min-height: 367px;
    margin-bottom: 140px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url(imgs/separador_fundo.jpg);
    background-repeat: no-repeat;
}

#separador h3 {
    color: #fff;
    text-align: center;

    width: 100%;
    max-width: 808px;
}

#saudaveis-wrapper {
    width: 100%;

    display: flex;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 140px;
}

.w800 {
    font-weight: 800;
}

#galeria-wrapper {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 140px;
}

footer {
    width: 100%;
    padding: 20px 0;
    border-top: 3px solid #F4EDE5;

    display: flex;
    justify-content: space-between;
}

#social {
    width: 100%;
    max-width: 136px;

    display: flex;
    justify-content: space-between;
    align-items: start;
}

#social a:hover {
    transform: scale(1.2);
}

#copy {
    text-align: right;
}


/* ------- RESPONSIVE DESIGN ------- */

@media only screen and (max-width: 720px) {
    #intro-wrapper {
        flex-direction: column;
    }

    #receitas-wrapper{
        flex-wrap: wrap;
    }

    #galeria-wrapper{
        flex-wrap: wrap;
        

    }

     #galeria-wrapper img{
        max-width: 320px;
    
    }
    #saudaveis-wrapper{
        flex-direction: column;
    }
    h6{
        font-size: 14px;
    }
    



}





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

    #menu {display: none;}

    h1 {
        font-size: 32px;
        line-height:42px; 
    
    }

    #intro-wrapper{
        flex-direction: column;
    }

    #receitas-wrapper{
        flex-direction: column;
    }

    h3{
        font-size: 16px;
    }
    #separador{
         min-height: 319px;
         margin-bottom: 238px;

    }
    #separador h3 { 
        font-size:16px; 
    }

    #saudaveis-wrapper {
        flex-direction: column;

    }
    h6{
        font-size: 12px;
    }

    #hmenu{
        display: block;
    }


}