* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color:#61120E;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh; 
    padding: 20px;
}

header {
    background-color: #CA2521;
    padding: 20px;
    text-align: center;
    color: #fff;
    width: 100%;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 150px;
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #ECA442;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a:hover {
    color: black; 
     }

main {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    text-align: center;
    padding: 20px;
}

#sobre h1 {
    font-size: 2em;
    color: #61120E;
    margin-bottom: 10px;
}

#sobre p {
    font-size: 1.2em;
    color: #61120E;
    margin-bottom: 20px;
}

#cardapio h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #61120E;
}

.pizza-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 20px; 
}

.pizza-item {
    width: 220px; 
    padding: 15px;
    background-color: #fff;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.pizza-item:hover {
    transform: scale(1.05); 
}

.pizza-item img {
    width: 100%;
    height: auto;
    max-width: 180px; 
    margin-bottom: 10px;
}

.pizza-item h3 {
    color: #CA2521;
}

.add-to-cart {
    background-color: #ECA442;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
}

.add-to-cart:hover {
    background-color: #CA2521;
}

#carrinho {
    margin-top: 40px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#carrinho h2 {
    color: #61120E;
}

#cart-items {
    list-style: none;
    padding: 0;
}

#cart-items li {
    margin-bottom: 10px;
}

#total {
    font-size: 1.2em;
    font-weight: bold;
}

#finalizar {
    background-color: #CA2521;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    width: 100%;
    margin-top: 20px;
}

#finalizar:hover {
    background-color: #ECA442;
}

footer {
    background-color: #61120E;
   
}

