* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #a7a4a4;
    height: 100vh;

}

header {
    height: 70px;
    background-color: #111;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container img {
    width: 180px;
    height: 40px;
    object-fit: contain;
}

.pichau-pesquisa-container {
    position: relative;
    flex: 1;
    max-width: 600px;
    margin: 0 20px;
}

.pichau-search-box {
    width: 100%;
    padding: 10px 20px 10px 45px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    background-color: #2c2c2c;
    color: white;
}

.pichau-pesquisa-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.pichau-nav-icons {
    display: flex;
    gap: 25px;
}

.pichau-nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.3s;
}

.pichau-nav-icon i {
    font-size: 20px;
    margin-bottom: 4px;
}

.pichau-nav-icon:hover {
    color: #ff0000;
}
.box {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    width: 420px;
    border: 1px solid black;
    gap: 5px;
}

.box:hover {
    transform: translateY(-5px);
}

.box img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.box h1 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.box .preco {
    font-size: 20px;
    font-weight: bold;
    color: #2c5aa0;
    margin: 10px 0;
}

.box .descricao {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.box .categoria {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.classificacao {
    color: #ffc107;
    margin-bottom: 10px;
}
.container-produto{
   display: flex;
   width: 1900px;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;

}