@font-face {
    font-family: ak-medium;
    src: url(../_fonts/Aktifo/Aktifo-A-Medium.ttf);
    font-display: swap;
}

@font-face {
    font-family: ak-bold;
    src: url(../_fonts/Aktifo/Aktifo-A-Bold.ttf);
    font-display: swap;
}

@font-face {
    font-family: ak-black;
    src: url(../_fonts/Aktifo/Aktifo-A-Black.ttf);
    font-display: swap;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #76717166;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #e9dcdc; 
    border-radius: 10px;
}

body {
    background-color: #fafbf8;
    overflow: auto;
}

/* Estilos do menu*/

.cabecalho {
    display: flex;
    flex-direction: column;
    background-color: #e40002;
}

.menu-titulo,
.menu-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-top: 1px solid #e9dcdc66;
    border-bottom: 1px solid #ffffff;
}

.menu-menu {
    background-color: #ff1818;
}

.menu-titulo {
    padding: 0;
}

ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 60vw;
}

ul li {
    font-family: ak-medium;
    font-size: 1.4em;
    cursor: pointer;
    color: #e9dcdc;
}

.selecionado {
    color: #FFD700;
    text-decoration: underline;
}

ul li:hover:not(.selecionado) {
    color: #f4ad0bbc;
}

/* Estilos do corpo do site */

.conteudo {
    margin-top: 60px;
}

.carrosel {
    width: 80%;
    margin: 0 auto;
}

.owl-carousel .item {
    background: #f4ad0bbc;
}

.owl-next span {
    position: absolute;
    right: -70px;
    top: 122px;
    font-size: 8em;
}

.owl-prev span {
    position: absolute;
    left: -70px;
    top: 122px;
    font-size: 8em;
}

.owl-prev span:hover,
.owl-next span:hover {
    color: #000 !important;
    transform: scale(1.06);
}

.owl-dot span {
    width: 16px !important;
    height: 16px !important;
}

.active span {
    background: #f4ad0b !important;
}

.opcoes {
    margin: 80px 0;
}

.titulo {
    width: 84vw;
    margin: 0 auto;
}

.titulo h2 {
    font-family: ak-black;
    font-size: 1.2em;
    text-transform: uppercase;
    color: #767171;
    margin: 0 20px;
}


/* Estilo dos cards */
.linha {
    display: grid;
    width: 84vw;
    margin: 0 auto;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    justify-items: center;
}

/* Card */
.card {
    width: 100%;
    max-width: 360px;
    height: 540px;
    background-color: #ffffff;
    border: 1px solid #e4000222;
    border-radius: 0.9rem;
    margin: 40px 0;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(228,0,2,.25);
}

/* Cabeçalho */
.card .cabecalho-lanche {
    background: linear-gradient(135deg, #e40002, #ff2a2a);
    height: 60%;
}

/* Infos */
.card .informacoes {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 30%;
    margin: 16px;
}

/* Nome e tempo */
.card .nome-lanche-tempo,
.card .rodape {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Nome do lanche */
.nome-lanche {
    font-family: ak-bold;
    font-size: 1.1em;
    color: #e40002;
}

/* Tempo / ingredientes */
.tempo-preparo,
.ingredientes {
    font-family: ak-medium;
    color: #6f6f6f;
}

.ingredientes {
    font-size: .85em;
    line-height: 1.35;
    margin-top: 8px;
}

/* Preço */
.preco-lanche {
    font-size: 1.45em;
    font-family: ak-black;
    color: #f4ad0b;
}

/* Botão */
.adicionar {
    font-family: ak-black;
    font-size: 1em;
    color: #e40002;
    border: 2px solid #e40002;
    border-radius: .4rem;
    padding: 14px 18px;
    background-color: transparent;
    cursor: pointer;
    transition: all .2s ease;
}

.adicionar:hover {
    background-color: #e40002;
    color: #ffffff;
}


/* Estilos do modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999999999;
    padding-top: 80px;
    inset: 0;
    background-color: rgba(0,0,0,.65);
    backdrop-filter: blur(2px);
}

/* Caixa */
.modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 24px;
    border-radius: .6rem;
    border: none;
    width: 44%;
    height: 60vh;
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

/* Fechar */
.fechar,
.fechar-carrinho,
.fechar-dados {
    font-size: 2.2em;
    font-family: OpenSans;
    font-weight: 600;
    float: right;
    padding: 4px 12px;
    color: #e40002;
    border-radius: .4rem;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.fechar:hover,
.fechar-carrinho:hover,
.fechar-dados:hover {
    color: #fff;
    background-color: #e40002;
}

/* Conteúdo */
.container-modal-conteudo {
    display: flex;
    height: 100%;
}

/* Lado produto */
.lado-produto {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: linear-gradient(
        160deg,
        #e40002 0%,
        #ff4b4b 100%
    );
    width: 46%;
    padding: 24px;
    color: #fff;
}

.lado-produto h1,
.lado-produto p {
    font-family: ak-black;
    line-height: 1.15;
    color: #fff;
}

/* Lado detalhes */
.lado-detalhes {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 54%;
    padding: 24px;
}

/* Quantidade */
.quantidade-produto {
    width: 220px;
    height: 60px;
}

.quantidade-produto .controles {
    display: flex;
    align-items: center;
    font-family: ak-medium;
    font-size: 2.2em;
}

.controles > * {
    margin-right: 14px;
}

/* Título */
.lado-detalhes h2 {
    font-family: ak-black;
    text-align: left;
    color: #1f1f1f;
    margin-bottom: 16px;
}

/* Setas */
.seta-tirar,
.seta-acrescentar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: #f4ad0b;
    font-size: .75em;
    color: #fff;
    border-radius: .4rem;
    transition: background .2s ease;
}

/* Observação */
.observacao {
    appearance: none;
    resize: none;
    width: 220px;
    height: 64px;
    padding: 10px;
    font-family: ak-medium;
    font-size: .95em;
    border-radius: .4rem;
    border: 1px solid #00000020;
}

.observacao:focus {
    outline: none;
    border-color: #e40002;
}

/* Acrescimos */
.tabela-acrescimos p {
    font-size: .85em;
    color: #6f6f6f;
}

/* Confirmar */
.confirmar-produto {
    font-family: ak-black;
    font-size: 1em;
    background-color: #e40002;
    color: #fff;
    border: none;
    border-radius: .45rem;
    padding: 16px 20px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.confirmar-produto:hover,
.seta-tirar:hover,
.seta-acrescentar:hover {
    background-color: #ff3a3a;
    cursor: pointer;
}

.confirmar-produto:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(228,0,2,.35);
}


/* Estilos do botão do carrinho */

.botao-carrinho {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e40002;
    font-size: 2.4em;
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 2.66rem;
    z-index: 999999;
    cursor: pointer;
}

.botao-carrinho::before {
    content: attr(dados-quantidade);
    position: absolute;
    top: -10px;
    left: -10px;
    width: 26px;
    height: 26px;
    font-family: ak-bold;
    font-size: .4em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 2px solid #000;
    color: #f33939;
    border-radius: 2.66rem;
}

.botao-carrinho:hover {
    transform: scale(1.2);
    box-shadow: 0 0 6px #5c5656;
}

/* Estilos do carrinho */
.cabecalho-carrinho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: ak-bold;
    font-size: 1.25em;
    color: #1f1f1f;
}

.cabecalho-carrinho h2 {
    margin: 16px 20px;
}

.md-carrinho {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    height: auto;
}

/* Carrinho vazio */
.sem-conteudo {
    display: none;
    font-family: ak-medium;
    font-size: 1.1em;
    text-align: center;
    margin-top: 36px;
    color: #8a8a8a;
}

/* Linha produto */
.linha-produto-carrinho {
    width: 94%;
}

.linha-produto-carrinho hr {
    border: none;
    border-top: 1px solid #00000012;
    margin: 18px 0;
}

/* Quantidade */
.unidades {
    color: #e40002;
    font-weight: 600;
}

/* Item */
.produto-carrinho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 64px;
    padding: 6px 0;
    border: 1px solid #00000014;
    border-radius: .45rem;
    font-family: ak-medium;
    font-size: 1.05em;
    background-color: #ffffff;
    transition: box-shadow .2s ease;
}

.produto-carrinho:hover {
    box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

/* Nome */
.nome {
    flex: 1;
    margin-left: 20px;
    color: #1f1f1f;
}

/* Grupo */
.grupo-produto-item {
    display: flex;
    width: 22%;
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
    color: #6f6f6f;
}

/* Excluir */
.excluir-carrinho {
    transition: transform .15s ease, color .15s ease;
}

.excluir-carrinho:hover {
    cursor: pointer;
    transform: scale(1.15);
    color: #e40002;
}

/* Rodapé */
.rodape-carrinho {
    display: none;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4em;
    margin: 20px 0;
    width: 94%;
    padding-top: 12px;
    border-top: 1px solid #00000012;
}

/* Total */
.container-total {
    font-family: ak-bold;
    color: #1f1f1f;
}

.valor-total {
    color: #e40002;
}

/* Botão */
.container-botao button {
    background-color: #e40002;
    color: #fff;
    padding: 16px 22px;
    border: none;
    border-radius: .45rem;
    font-family: ak-bold;
    font-size: .85em;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.container-botao button:hover {
    background-color: #ff3a3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(228,0,2,.35);
}


/* Estilos do modal de endereço */
.md-endereco {
    display: flex;
    flex-direction: column;
}

/* Espaçamento */
.md-endereco > * {
    margin: 16px 20px;
    width: 100%;
}

/* Labels */
.form-group label {
    font-family: ak-black;
    text-align: left;
    font-size: .95em;
}

/* Bloco usuário */
.dados-usuario {
    margin-top: 10px;
}

/* Input nome */
#nome {
    width: 90%;
    height: 36px;
    padding: 10px;
    font-family: ak-medium;
    font-size: 1em;
    border-radius: .45rem;
    border: 1px solid;
    background-color: #fff;
}

#nome:focus {
    outline: none;
    border-color: #e40002;
    box-shadow: 0 0 0 2px #e4000222;
}

/* Textarea endereço */
#endereco {
    resize: none;
    width: 90%;
    height: 120px;
    padding: 10px;
    font-family: ak-medium;
    font-size: 1em;
    border-radius: .45rem;
    border: 1px solid;
    background-color: #fff;
}

#endereco:focus {
    outline: none;
    border-color: #e40002;
    box-shadow: 0 0 0 2px #e4000222;
}

.alerta {
    display: none;
    margin-top: 8px;
    font-family: ak-medium;
    color: #f33939;
}

.container-botao-endereco button {
    background-color: #e40002;
    color: #fff;
    padding: 20px 28px;
    border: none;
    border-radius: .45rem;
    font-family: ak-black;
    font-size: 1.1em;
    margin: 0 40px 40px 0;
    float: right;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

.container-botao-endereco button:hover {
    background-color: #ff3a3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(228,0,2,.35);
}

.footer {
  padding: 16px;
  text-align: center;
  background-color: #111;
}

.footer-text {
  color: #ffffffb3;
  margin-right: 6px;
  font-size: 13px;
}

.footer-author {
  color: #e9dcdc;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.footer-author::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #e40002;
  transition: width 0.2s ease;
}

.footer-author:hover {
  color: #ff3b3b;
}

.footer-author:hover::after {
  width: 100%;
}


/* Estilos responsivo */

@media screen and (max-width: 1520px) {
    .linha {
        width: 92vw;
    }
}

@media screen and (max-width: 1200px) {
    .modal-content {
        display: flex;
        flex-direction: column;
        overflow: auto;
        width: 60%;
    }
    
    .container-modal-conteudo {
        padding: 0 40px;
        flex-direction: column;
    }

    .lado-produto,
    .lado-detalhes {
        width: 87%;
    }

    .lado-detalhes {
        align-items: flex-start;
        padding: 40px 0;
        width: 91.6%;
    }

    .quantidade-produto {
        width: 220px;
        padding: 40px 0 80px 0;
    }

    .produto-atual,
    .descricao-produto-atual {
        margin: 20px !important;
    }

    .dados-adicionais,
    .observacao {
        width: 100%;
    }

    .linha-produto-carrinho {
        width: 100%;
    }

    .produto-carrinho {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 20px 0;
    }

    .grupo-produto-item {
        padding: 0;
        width: 100%;
    }

    .nome,
    .grupo-produto-item > * {
        margin: 12px;
    }

    .rodape-carrinho {
        width: 100%;
    }

    .rodape-carrinho {
        justify-content: space-around;
    }
}

@media screen and (max-width: 760px) {
    ul {
        flex-direction: column;
        align-items: center;
    }

    ul li {
        padding: 12px;
    }

    .owl-prev span {
        left: -52px;
        top: -3%;
    }

    .owl-next span {
        right: -52px;
        top: -3%;
    }

    .modal {
        padding-top: 40px;
    }

    .modal-content {
        width: 94%;
        height: 86vh;
        padding: 0;
    }

    .container-modal-conteudo {
        padding: 0 20px;
    }
}

@media screen and (max-width: 540px) {
    .container-botao button {
        padding: 8px;
        margin: 0 20px;
    }

    .container-total h2 {
        margin: 0 0 0 20px;
    }
}