:root {
    --corPrincipal: #be430a;
    --corSecundaria: #c0948057;
    --fundo: #F4E9D8;
    --branco: #FFFFFF;
    --textoPrincipal: #181818;
    --textoSecundario: #494949;
}

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background-color: #F4E9D8;
    margin: 0;
    padding: 0;
}

/* apresentacao */
.containerApresentacao {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    gap: 40px;
}

.badge {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.badge span {
    display: inline-block;
    background-color: var(--corSecundaria);
    color: var(--corPrincipal);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.badge span::before {
    content: "🍴";
    margin-right: 6px;
    font-size: 12px;
}

.tituloPrincipal {
    text-align: left;
    color: #000000;
    margin-bottom: 10px;
    font-family: 'Koh Santepheap', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
}

.textoPrincipal {
    text-align: left;
    color: var(--textoSecundario);
    margin-bottom: 20px;
    font-family: 'Poppins', arial;
    font-size: 17px;
    line-height: 1.1;
    font-weight: 500;
    margin-top: 0;
}

.destaque {
    font-style: italic;
    color: var(--corPrincipal);
    font-weight: 700;
}

.texto {
    flex: 1;
}

.containerBtn {
    display: flex;
    gap: 25px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--branco);
    font-weight: bold;
    transition: all 0.5s ease;
}

#btnCardapio {
    background-color: var(--corPrincipal);
}

#btnSaibaMais {
    background-color: var(--corSecundaria);
    color: var(--corPrincipal);
}

#btnCardapio:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #913409;
}

#btnSaibaMais:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #8b6c5e81;
}

.imagem {
    flex: 1;
    display: flex;
    justify-content: center;
}

.imgPrincipal {
    max-width: 1200px;
    width: 100%;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.582);
}

/* pratos */
.linkPrato {
    text-decoration: none;
    color: var(--textoPrincipal);
    
}

.containerPratos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 100vw;
    width: 100%;
    margin: auto;
    background-color: var(--corSecundaria);
}

.pratos {
    display: flex;
    justify-content: center;
    gap: 120px;
    flex-wrap: wrap;
}

.cardPrato {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.imgPrato {
    width: 300px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.582);
}

.nomePrato {
    font-family: 'Koh Santepheap', serif;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    margin: 0;
}

.precoPrato {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: var(--corPrincipal);
    text-align: center;
    font-size: 20px;
    margin: 0;
}

#btnCardapioCompleto {
    margin: 38.4px;
    background-color: var(--corPrincipal);
}

#btnCardapioCompleto:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.582);
    background-color: #913409;
}

.cardPrato:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.582);
    cursor: pointer;
}

/* diferenciais */
.containerDiferenciais {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 100vw;
    width: 100%;
    margin: auto;
    background-color: var(--fundo);
    padding-bottom: 50px;
}

.diferenciais {
    position: relative;
    height: 430px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cardDiferencial {
    position: absolute;
    width: 500px;
    height: 340px;
    background-color: var(--branco);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.425);
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-sizing: border-box;
}

.cardDiferencial.ativo {
    border: 2px solid var(--corPrincipal);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30);
    cursor: default;
    bottom: 1rem;
}

.cardDiferencial.lateral {
    opacity: 0.55;
}

.cardDiferencial.longe {
    opacity: 0.25;
}

.caixaIcone {
    width: 60px;
    height: 60px;
    background-color: var(--corSecundaria);
    color: var(--corPrincipal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iconeDiferencial {
    width: 48px;
}

.tituloDiferencial {
    font-family: 'Koh Santepheap', serif;
    font-weight: bold;
    font-size: 30px;
    text-align: left;
    margin: 0;
}

.descricaoDiferencial {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: var(--textoSecundario);
    text-align: left;
    font-size: 17px;
    margin: 0;
    line-height: 1.5;
}

/* carrossel diferenciais */
.carrossel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0 10px;
    overflow: hidden;
}

.botoesCarrossel {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btnCarrossel {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--corPrincipal);
    background: transparent;
    color: var(--corPrincipal);
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
}

.btnCarrossel:hover {
    background: var(--corPrincipal);
    color: var(--branco);
}

/* animacoes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.tituloPrincipal {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

.imagem {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

.textoPrincipal {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.6s;
}

.containerBtn {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.8s;
}

.cardPrato {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 1s;
}

#btnCardapioCompleto {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 1s;
}

/* tablet */
@media (max-width: 1024px) {
    .containerApresentacao {
        gap: 30px;
        padding: 40px 20px;
    }

    .tituloPrincipal {
        font-size: 40px;
    }

    .pratos {
        gap: 60px;
    }

    .cardDiferencial {
        width: 420px;
    }
}

/* celular grande */
@media (max-width: 768px) {

/* apresentacao */
    .containerApresentacao {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }

    .texto {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .badge {
        justify-content: center;
    }

    .tituloPrincipal {
        font-size: 34px;
        text-align: center;
    }

    .textoPrincipal {
        text-align: center;
        font-size: 15px;
    }

    .containerBtn {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .imagem {
        width: 100%;
    }

    .imgPrincipal {
        border-radius: 25px;
    }

/* pratos */
    .pratos {
        gap: 40px;
        flex-direction: column;
        align-items: center;
    }

    .cardPrato {
        align-items: center;
    }

    .imgPrato {
        width: 220px;
    }

    .nomePrato {
        font-size: 18px;
    }

    .precoPrato {
        font-size: 17px;
    }

/* diferenciais */
    .diferenciais {
        height: 380px;
    }

    .cardDiferencial {
        width: 340px;
        height: 300px;
        padding: 25px;
        gap: 12px;
    }

    .tituloDiferencial {
        font-size: 24px;
    }

    .descricaoDiferencial {
        font-size: 14px;
    }

    .btnCarrossel {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* celular pequeno */
@media (max-width: 480px) {

/* apresentacao */
    .containerApresentacao {
        padding: 20px 16px;
    }

    .tituloPrincipal {
        font-size: 28px;
    }

    .textoPrincipal {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .containerBtn {
        align-items: center;
    }

    .containerBtn .btn {
        width: 100%;
        text-align: center;
    }

/* pratos */
    .pratos {
        gap: 30px;
    }

    .imgPrato {
        width: 180px;
    }

    #btnCardapioCompleto {
        font-size: 13px;
        padding: 10px 18px;
        margin: 24px 16px;
        text-align: center;
    }

/* diferenciais */
    .carrossel {
        padding: 20px 0 5px;
    }

    .diferenciais {
        height: 360px;
    }

    .cardDiferencial {
        width: calc(100vw - 48px);
        height: auto;
        min-height: 280px;
        padding: 20px;
    }

    .tituloDiferencial {
        font-size: 20px;
    }

    .descricaoDiferencial {
        font-size: 13px;
    }

    .caixaIcone {
        width: 48px;
        height: 48px;
    }

    .iconeDiferencial {
        width: 36px;
    }

    .btnCarrossel {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}