
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body{
    background-color: 	#f6e7d3; /*cor fundo da página*/
    font-family:"Mulish", Arial;
    font-weight: 400;
}

header{
    background-color: #eac9a5;
    padding:20px 0px ;
    display: flex;
    flex-direction: column;
    justify-content:center ;
    align-items: center;
}

header img { /*tamanho da imagem*/
    width: 300px; /*largura*/
    height:auto ; /*altura*/
    margin-bottom:5px ;
}

nav a{
    color: black;
    font-weight: bold;
    font-size: 16px;
    text-decoration:none;
    padding:5px 6px ;
    
}

nav a:hover{
    color: black;
    background-color:#8aab50 ;
    border-radius: 15px; /*arredondar a borda*/
}

h2{
    margin-top: 40px;
    margin-bottom: 10px;
    margin-left: 25px;
    text-align: center;
}

.tradicional{  /*blocos*/
    display:flex;
    max-width:1000px;
    gap:20px;
    flex-wrap: wrap;
    margin:0 auto ; /*auto para mudar a margem dos lados*/

}

.tradicional-brigadeiro{
    display:flex;
    flex-direction: column;
    flex-grow:1;
    flex-shrink: 1;
    flex-basis:200px ;
    background-color: #8aab50;
    padding:20px;
    border-radius:10px;
    box-shadow:2px 2px 5px black ;
    width: 200px;
    height: auto;

}

img{
    width:120px ;
    height:auto;
    border-radius:5px ; /*arredondar as bordas*/
    margin:15px auto ;

}

.gourmet{  /*blocos*/
    display:flex;
    max-width:1000px;
    gap:20px;
    flex-wrap: wrap;
    margin:0 auto ; /*auto para mudar a margem dos lados*/

}

.gourmet-brigadeiro{
    display:flex;
    flex-direction: column;
    flex-grow:1;
    flex-shrink: 1;
    flex-basis:200px ;
    background-color:#8aab50 ;
    padding:20px;
    border-radius:10px;
    box-shadow:2px 2px 5px black ;
    width: 200px;
    height: auto;
}


.frutados{  /*blocos*/
    display:flex;
    max-width:1000px;
    gap:20px;
    flex-wrap: wrap;
    margin:0 auto ; /*auto para mudar a margem dos lados*/

}

.frutados-brigadeiro{
    display:flex;
    flex-direction: column;
    flex-grow:1;
    flex-shrink: 1;
    flex-basis:200px ;
    background-color:#8aab50 ;
    padding:20px;
    border-radius:10px;
    box-shadow:2px 2px 5px black ;
    width: 200px;
    height: auto;
}

.caixa{  /*blocos*/
    display:flex;
    max-width:1000px;
    gap:20px;
    flex-wrap: wrap;
    margin:20px auto ; /*auto para mudar a margem dos lados*/
    flex-direction: column;
    align-items: center;

}

.caixa-brigadeiro{
    display:flex;
    flex-direction: column;
    flex-grow:1;
    flex-shrink: 1;
    flex-basis:200px ;
    background-color:#8aab50 ;
    padding:20px;
    border-radius:10px;
    box-shadow:2px 2px 5px black ;
    width: 300px;
    height: auto;
    
}

#caixa{
    width: 180px;
    height: auto;
}





#topo{
    margin-top:40px ;
    font-weight:bold ;
    text-align: center;
    margin-bottom: 15px;
}



#topo a {
    text-decoration:none;
    color: black;
    text-align: center;
}

#topo a:hover{
    color: #308f1b; /*quando passar o mouse muda de cor*/
}


footer{
    background-color: #8aab50;
    color: white;
    text-align: center; /*alinhar o texto*/
    padding:20px 0px ;
} 



footer img{
    width:25px ;
    height:auto;
    transition:transform 0.2s ease; /*duração do tempo do efeito*/
    margin:10px 3px ;
}

footer img:hover{
    transform: scale(1.5);
}

#whatsapp{
    width: 35px;
}