/* General */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #333;
    color: white;
    padding: 1rem;
    text-align: center;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.banner {
    background: url('completo.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.banner-content h1 {
    font-size: 4rem;
    margin: 0;
}

.banner-content p {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.btn {
    background-color: #f8b400;
    padding: 0.8rem 2rem;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

.main {
    padding: 2rem;
}

.menu h2, .about h2, footer h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.menu-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.menu-item {
    text-align: center;
    margin: 1rem;
    width: 30%;
}

.menu-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

footer {
    background-color: #333;
    color: white;
    padding: 2rem;
    text-align: center;
}

footer p {
    margin: 0.5rem 0;
}
