* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Passion One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-family: "Passion One", sans-serif;
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff5e6;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #ef5724;
    padding: 10px 0;
}

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

.navbar .brand img {
    max-height: 60px;
    border-radius: 10px;
}

.navbar .menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.navbar .menu li {
    color: #000;
    font-size: 16px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background-color: #fff5e6;
}

.container {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 85px);
    width: 100%;
    gap: 10px;
    background-color: #fff5e6;
}

.menu-container {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 85px);
    width: 100%;
    gap: 10px;
    background-color: #fff5e6;
}

.text-container {
    background-color: #fff5e6;
    text-align: justify;
    color: #ef5724;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

h1 {
    font-size: 2rem;
    line-height: 1.5;
}

p {
    font-size: 1rem;
    line-height: 1.5;
}

.text-container a {
    width: 50%;
}

a {
    text-decoration: none;
    color: #fff;
}

.pedido button,
.cardapio button {
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pedido {
    color: #1c851c;
}

.pedido button {
    font-size: 1.2rem;
    background-color: #1c851c;
}

.pedido button:hover {
    background-color: #0f740f !important;
}

.cardapio {
    color: #0e4e96;
}

.cardapio button {
    font-size: 1.2rem;
    background-color: #0e4e96;
}

.cardapio button:hover {
    background-color: #0b3c75 !important;
}

button img {
    width: 20px;
    margin-right: 10px;
}

.img-container img {
    max-width: 450px;
    height: auto;
    border-radius: 50%;
    margin-top: 20px;
    object-fit: cover;
}

.title-menu h1 {
    font-size: 3rem;
    text-align: center;
}

.content-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
}

.menu-item {
    flex: 1;
    display: flex;
}

.info .content {
    border-bottom: 3px dotted black;
}

.menu-item .price {
    max-width: 90px;
    display: flex;
    justify-content: center;
}

.quantidade-input {
    width: 60px;
    padding: 5px;
    font-size: 1.2rem;
    border: 2px solid #ef5724;
    border-radius: 5px;
    text-align: center;
    color: #0e4e96;
    margin-left: 10px;
}

.botao-pedido {
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.botao-pedido:hover {
    background-color: #1ebe5b;
}

@media (max-width: 576px) {
    .container {
        padding: 1rem;
    }

    .menu-container {
        padding: 1rem;
    }

    .navbar {
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: auto 60px;
        border-radius: 10px;
    }

    .brand img {
        max-width: 100vw;
    }

    .navbar .menu ul {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .text-container a,
    a button {
        width: 100%;
    }

    .img-container img {
        max-width: 100%;
        border-radius: 50%;
        height: 150px;
    }

    .info .name {
        font-size: 1rem;
        color: #ff1500;
    }

    .info .content {
        font-size: 0.7rem;
    }

    .info {
        min-width: 55%;
        max-width: 55%;
    }

    .price {
        /* background-color: #0e4e96; */
        min-width: 45%;
        max-width: 45%;
        display: flex;
        justify-content: space-between !important;
        align-items: last baseline;
        gap: 5px;
    }

    .price-item {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        flex-direction: row;
    }

    .text-container a,
    a button {
        width: 100%;
    }

    .navbar {
        display: flex;
        flex-direction: row;
    }

    .text-container {
        max-width: 50%;
    }

    .info {
        flex: 6;
    }

    .info .name {
        font-size: 2rem;
        color: #ff1500;
    }

    .info .content {
        font-size: 1rem;
    }

    .price {
        flex: 1;
        display: flex;
        justify-content: start;
        align-items: last baseline;
        gap: 5px;
    }

    .price-item {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .menu-container {
        max-width: 960px;
    }

    .info {
        flex: 7;
    }

    .info .name {
        font-size: 2rem;
        color: #ff1500;
    }

    .info .content {
        font-size: 1rem;
    }

    .price {
        flex: 1;
        display: flex;
        justify-content: start;
        align-items: last baseline;
        gap: 5px;
    }

    .price-item {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .menu-container {
        max-width: 1140px;
    }
}