body {
    font-family: Arial, sans-serif;
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 0;
}

.fundo {
    width: 100%;
    padding: auto;
    height: auto;
    position: absolute;
    max-height: 1074px;
    top: 0;
    left: 0;
    z-index: -1; /* Para que a imagem fique atrás do conteúdo */
    filter: blur(7px); /* Aplicar o desfoque somente na imagem */
}

header h1 {
    color: #fff;
    font-family: 'Mountains of Christmas', cursive;
    font-size: 2.5rem;
    margin: 0;
    text-align: center;
    padding: 3px;
    background-color: rgba(0, 0, 0, 0.5);
}

.container {
    display: flex;
    justify-content: center; /* Centraliza os produtos horizontalmente */
    flex-wrap: wrap; /* Permite que os produtos se alinhem em várias linhas */
    padding: 20px;
}

.product {
    width: 320px; /* Aumenta a largura dos produtos */
    margin: 40px; /* Aumenta o espaçamento entre os produtos */
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.price {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    margin: 10px 0;
}

button {
    background-color: #ff4500;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1.5rem;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

button:hover {
    transform: scale(1.1);
}

button:active {
    transform: scale(0.95);
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    
}

.star {
    font-size: 1.5rem;
    color: yellow;
    cursor: pointer;
}

.star:hover,

.star:hover ~ .star {
    color: #ff4500;
    color: yellow;
}

.rating-count {
    margin-left: 10px;
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    .product {
        width: 100%;
        margin: 10px 0;
    }

    button {
        width: 100%;
    }
}
