/* Reset Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
}

/* Barra de Navegação */
header {
    background-color: #1c1c1c;
    padding: 15px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-size: 18px;
}

nav a:hover {
    color: #e74c3c;
}

/* Categorias Populares */
.categories {
    padding: 50px 10%;
    text-align: center;
}

.category-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.category-item {
    width: 200px;
    margin: 10px;
    text-align: center;
}

.category-item img {
    width: 100%;
    border-radius: 10px;
}

.category-item p {
    margin-top: 10px;
}

/* Produtos em Destaque */
.featured-products {
    padding: 50px 10%;
    text-align: center;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product-card {
    width: 250px;
    background-color: #333;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
}

.product-card p {
    font-size: 20px;
    margin-top: 10px;
}

.product-card button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
}

.product-card button:hover {
    background-color: #c0392b;
}

/* Avaliações Recentes */
.reviews {
    padding: 50px 10%;
    text-align: center;
}

.review-item {
    background-color: #333;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.review-item p {
    font-size: 18px;
}

.review-item button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.review-item button:hover {
    background-color: #c0392b;
}
