@charset "UTF-8";
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body{
    min-height:100vh;
    background-color: #ffe2df;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    font-weight: normal;
    color: #860101;
}
header{
    text-align: center;
    background-color: #f85555;
    margin: auto;
    padding: 3px;
    border: 0;
}
nav{
    font-weight: normal;
    margin-top: 5px;
    margin-bottom: 13px;
    margin-left: 0px;
    margin-right: 0px;
    border-bottom: 10px;
    border-top: 10px;
    padding: 12px;
    cursor: pointer;
    
}
a{
    text-decoration: none;
    color: #460000;
    margin-right: 20px;
}
a:hover{
    text-decoration: underline;

}
a:active{
    color: #860101;
}
h1{
    padding: 16px;
    margin: 10px;
    text-decoration: none;
}
main > div{
    margin-top: 63px;
    margin-bottom: 0px;
    margin-left: 41px;
    margin-right: 0px;
    padding: 20px;
    text-align: center;
}
footer{
    font-weight: bold;
    margin-top: 35px;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding: 10px;
    background-color: #FF5454;
    text-align: center;
}
.BComprar{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}
.nome{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}
main > div{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
.produto{
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 280px; /* Largura fixa para cada produto */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
img{
     width: 100%;
     height: 280px;
     object-fit: cover;
     background: #e0e0e0
}
button{
    background-color: #FFC4C4;
    color: rgb(138, 0, 0);
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-size: bold;
    cursor: pointer;
}



