* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F3E8FF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 25px;
    margin-bottom: 20px;
}

nav a {
    text-decoration: none;
    color: #8a2caa;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s;
}

nav a:hover {
    background-color: #e3d3f1;
    color: #5e0f7f;
}

.produtos {
    padding: 20px;
    background-color: #F9F9F9;
    text-align: center;
}

.produtos h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
    color: #4B0082;
    margin-bottom: 20px;
    text-align: center;
}

.lista-produtos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;        
    max-width: 900px;        
    margin: 0 auto;          
}

.produto {
    background-color: #fff;
    border: 1px solid #800080;
    border-radius: 10px;
    padding: 15px;
    width: 200px;         
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.produto img {
    width: 100%;
    border-radius: 4px; 
}

.produto h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    margin: 10px 0 5px 0;
    color: #333;
}

.produto p {
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    color: #800080;
    margin: 0;
    font-weight: bold;
}

.produto:hover {
    transform: scale(1.05); 
}