* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
}

:root {
    --cor-primaria: rgb(19, 17, 17);
    --fonte-primaria: rgb(185, 185, 184);
}

/* PÁGINA INICIAL */
/* ======================== HEADER ====================== */
#cabecalho {
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    align-items: center;
    padding: 30px 0;
    justify-content: space-around;
    background-color: var(--cor-primaria);
    color: var(--fonte-primaria);
}

#cabecalho a {
    text-decoration: none;
    color: var(--fonte-primaria);
}

#cabecalho ul {
    display: flex;
    list-style: none;
    gap: 30px;
    font-size: 23px;
}

/* Estiliza os itens da lista dentro de #cabecalho */
#cabecalho #lista li {
    position: relative;
    /* Necessário para posicionar o ::after em relação ao li */
    display: inline-block;
    /* Permite que o elemento tenha largura apenas do conteúdo */
    overflow: hidden;
    /* Garante que o ::after não ultrapasse o limite do li */
}

/* Cria a linha decorativa que será animada */
#cabecalho #lista li::after {
    content: "";
    /* Cria um elemento vazio visualmente */
    position: absolute;
    /* Permite posicionar a linha com bottom/left */
    bottom: 0;
    /* Alinha a linha ao fundo do item */
    left: 50%;
    /* Começa no meio horizontal do item */
    width: 100%;
    /* A linha pode cobrir toda a largura do item */
    height: 2px;
    /* Espessura da linha */
    background-color: rgb(114, 111, 111);
    /* Cor da linha */
    transform: translateX(-50%) scaleX(0);
    /* Centraliza a linha e a esconde (largura 0) */
    transform-origin: center;
    /* A animação se expande a partir do centro */
    transition: transform 0.4s ease;
    /* Animação suave da transformação */
    box-shadow: 0 0 10px rgb(114, 111, 111);
}

#cabecalho ul li:hover {
    transform: scale(1.09);
    /* Aplica um leve zoom no texto ao passar o mouse */
}

/* Quando o mouse passa por cima do li, anima a linha */
#cabecalho #lista li:hover::after {
    transform: translateX(-50%) scaleX(1);
    /* Expande a linha dos 0% até 100% a partir do centro */
}


#cabecalho-carrinho,
#lista-carrinho {
    padding-right: 100px;
}

#cabecalho-carrinho li,
#lista-carrinho li {
    cursor: pointer;
}

/* ======================== FIM DO HEADER ====================== */

/* ======================== BANNER ======================= */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(https://cdn.awsli.com.br/600x450/572/572835/produto/209583011/screenshot-produto-mercadolivre-com-br-2020-04_clipped_rev_2-fpzlnt.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;
    text-align: center;

}

#hero div {
    width: 40%;
    margin: 0 auto;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#hero div h1 {
    font-size: 45px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

#hero div p {
    font-size: 20px;
}

#hero div a {
    text-decoration: none;
    color: black;
    background-color: cornsilk;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 30px;
    width: max-content;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

#hero div a:hover {
    transform: scale(1.1);
}

/* ======================== FIM DO BANNER ======================= */

/* ======================== COMEÇO DA SECTION DESTAQUES CARDAPIO =========================== */
#destaquesCardapio {
    padding: 100px 0;
    background-color: rgb(10, 9, 9);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#destaquesCardapio #escolhaDestaques {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

#destaquesCardapio #escolhaDestaques h1 {
    font-size: 40px;
    color: #ff982d;
}

#destaquesCardapio #escolhaDestaques ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

#destaquesCardapio #escolhaDestaques button {
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    color: #ff982d;
    border-bottom: 1px solid rgb(114, 81, 38);
    background-color: transparent;
    font-size: 20px;
}

#destaquesCardapio .exibicaoProdutos {
    display: flex;
    justify-content: center;
}

#destaquesCardapio .exibicaoProdutos ul {
    display: flex;
    gap: 50px;
}

.box {
    background-color: #ede7e7;
    color: var(--fonte-primaria);
    border-radius: 10px;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.5);
}

.box img {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

.box div {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
}

.box div h1 {
    font-weight: 500;
    color: #000;
}

.box div p {
    font-size: 20px;
    color: #7e7b7b;
}

.box div h3 {
    font-size: 23px;
    color: #000;
}

.box button {
    background-color: #ff982d;
    cursor: pointer;
    color: #000;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin: 20px 20px;
    width: 85%;
    font-size: 20px;
    padding: 7px 0;
    border-radius: 10px;
    border: none;
}

.box button:hover {
    background-color: rgb(185, 119, 26);
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease, scale 0.3s ease;
    scale: 1.05;
}

#destaquesCardapio a {
    color: #ff982d;
    margin-top: 50px;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    align-items: center;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

#destaquesCardapio a:hover {
    text-decoration: underline;
    color: rgb(185, 119, 26);
}

/* ======================== FIM DA SECTION DESTAQUES CARDAPIO =========================== */

/* ======================== COMEÇO DA SECTION NOSSO ESPAÇO =========================== */
.nossoEspaco {
    padding: 100px 0;
    background-color: #2b2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.nossoEspaco h1 {
    font-size: 40px;
    color: #ff982d;
}

#boxNossoEspaco {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    width: 80%;
}

#boxNossoEspaco img {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
    width: 500px;
    height: 400px;
}

#boxNossoEspaco div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}

#boxNossoEspaco div p {
    font-size: 25px;
    color: #f0e5e5;
    text-align: justify;
    line-height: 1.5;
}

#boxNossoEspaco div a {
    width: max-content;
    text-decoration: none;
    padding: 10px 25px;
    font-size: 24px;
    border-radius: 30px;
    background-color: #ff982d;
    color: rgb(29, 28, 26);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#boxNossoEspaco div a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #ff982d;
}

/* ======================== FIM DA SECTION NOSSO ESPAÇO =========================== */

/* ======================== COMEÇO DA SECTION ALUGUEL DE NARGUILE =========================== */
#aluguelNarguile {
    padding: 100px 0;
    background-color: rgb(10, 9, 9);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

#aluguelNarguile h1 {
    font-size: 40px;
    color: #ff982d;
}

#aluguelNarguile p {
    font-size: 22px;
    color: #f0e5e5;
    width: 60%;
    line-height: 1.5;
}

#aluguelNarguile a {
    width: max-content;
    text-decoration: none;
    padding: 10px 25px;
    font-size: 24px;
    border-radius: 30px;
    background-color: #ff982d;
    color: rgb(29, 28, 26);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#aluguelNarguile a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #ff982d;
}

/* ======================== FIM DA SECTION ALUGUEL DE NARGUILE =========================== */

/* ======================== COMEÇO DA SECTION CONTATO =========================== */
#contato {
    padding: 100px 0;
    background-color: #2b2a2a;
    align-items: center;
    gap: 30px;
    text-align: center;
}

#contato h1 {
    font-size: 40px;
    color: #ff982d;
}

#tudoContato {
    display: flex;
    justify-content: center;
    gap: 300px;
    margin-top: 40px;
}

#informacoes {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #f0e5e5;
    font-size: 20px;
    text-align: left;
}

#informacoes i {
    font-size: 30px;
    cursor: pointer;
    color: #ff982d;
    background-color: rgb(29, 28, 26);
    padding: 20px;
    border-radius: 50%;
}

#informacoes i:hover {
    background-color: rgb(24, 23, 22);
    transform: scale(1.2);
    transition: color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 10px rgb(17, 17, 16);
}

#informacoes .boxContato {
    display: flex;
    align-items: center;
    gap: 20px;
}

#informacoes .boxContato div h3 {
    font-size: 22px;
    margin-bottom: 5px;
    cursor: default;
}

#informacoes .boxContato div p {
    font-size: 18px;
}

#informacoes #enderecoContato div p:hover {
    text-decoration: underline;
    cursor: pointer;
}

#informacoes #whatsappContato div p:hover {
    text-decoration: underline;
    cursor: pointer;
}

#informacoes #emailContato div p:hover {
    text-decoration: underline;
    cursor: pointer;
}

#campos {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#campos div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #f0e5e5;
    font-size: 20px;
    text-align: left;
}

#campos input,
#campos textarea {
    width: 400px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-size: 18px;
}

#campos input:focus,
#campos textarea:focus {
    outline: 1px solid #ff982d;
    box-shadow: 0 0 10px #ff982d;
    transition: box-shadow 0.3s ease, outline 0.3s ease;
}

#campos button {
    margin: 0 auto;
    width: max-content;
    padding: 10px 25px;
    font-size: 24px;
    border-radius: 30px;
    background-color: #ff982d;
    color: rgb(29, 28, 26);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#campos button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #ff982d;
}

/* ======================== FIM DA SECTION CONTATO =========================== */

/* ======================== COMEÇO DO FOOTER =========================== */
#rodape {
    background-color: #7c7878;
    color: rgb(29, 28, 26);
    text-align: center;
    padding-top: 50px;
}

#tudoRodape {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

#tudoRodape div {
    display: flex;
    width: 30%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

#tudoRodape #sobreRodape p {
    text-align: justify;
    width: 60%;
}

#tudoRodape div h2 {
    font-size: 22px;
}

#tudoRodape div #redesSociais {
    display: flex !important;
    list-style: none;
    gap: 30px;
    margin-top: 10px;
    font-size: 25px;
}

#tudoRodape #sobreRodape #redesSociais i {
    font-size: 30px;
    cursor: pointer;
}

#tudoRodape #sobreRodape #redesSociais i:hover {
    color: rgb(0, 0, 0);
    transform: scale(1.2);
    transition: color 0.3s ease, transform 0.3s ease;
}

#tudoRodape div .LinksSuporte {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#tudoRodape div ul li a {
    text-decoration: none;
    color: rgb(29, 28, 26);
    transition: color 0.3s ease;
}

#tudoRodape div ul li a:hover {
    color: rgb(0, 0, 0);
}

hr {
    margin-top: 30px;
    border: 0.5px solid rgb(29, 28, 26);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#Copyright {
    padding: 30px;
    font-size: 16px;
}

/* FIM DO CSS DA PÁGINA PRINCIPAL */


/* ============================== PÁGINA "ESPAÇO" ==================== */

#heroEspaco {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(https://cdn.awsli.com.br/600x450/572/572835/produto/209583011/screenshot-produto-mercadolivre-com-br-2020-04_clipped_rev_2-fpzlnt.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 150px;
    padding-bottom: 120px;
    text-align: center;
    color: aliceblue;
}

#heroEspaco div h1 {
    font-size: 45px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

#conhecaAdega {
    padding: 80px 0;
    background-color: rgb(10, 9, 9);
}

#conhecaAdega #conhecaTexto {
    display: flex;
    color: aliceblue;
    flex-direction: column;
    align-items: center;
}

#conhecaAdega #conhecaTexto h1 {
    font-size: 40px;
}

#conhecaAdega #conhecaTexto p {
    font-size: 20px;
}

#conhecaAdega #imagens {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

#conhecaAdega #imagens div {
    display: flex;
    gap: 0 30px;
}

#conhecaAdega #imagens img {
    width: 355px;
    height: 255px;
    border-radius: 10px;
}

#conhecaAdega #cards {
    display: flex;
    padding-top: 30px;
    justify-content: center;
    gap: 30px;
}

#conhecaAdega #cards .card {
    background-color: #91969c;
    padding: 30px;
    width: 20%;
    text-align: center;
    border-radius: 10px;
}

#conhecaAdega #cards .card i {
    font-size: 50px;
    color: rgb(29, 28, 26);
    padding: 20px;
}

#conhecaAdega #cards .card h3 {
    font-size: 27px;
    margin: 15px 0;
}

#conhecaAdega #cards .card p {
    font-size: 20px;
}

#ambienteAconchegante {
    padding: 80px 0;
    background-color: #2b2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
}

#ambienteAconchegante #ambienteTexto {
    color: aliceblue;
}

#ambienteAconchegante #ambienteTexto h1 {
    font-size: 40px;
}

#ambienteAconchegante #ambienteTexto p {
    font-size: 20px;
    margin-top: 10px;
}

#ambienteAconchegante #ambienteBox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 80%;
}

#ambienteAconchegante #ambienteBox img {
    width: 37%;
    border-radius: 10px;
    /* box-shadow: #91969c 0px 5px 15px; */
}

#ambienteAconchegante #ambienteBox div {
    display: flex;
    flex-direction: column;
    color: aliceblue;
    width: 50%;
    font-size: 20px;
    text-align: left;
    gap: 20px;
}

#ambienteAconchegante #ambienteBox div h4 {
    font-weight: 500;
    font-size: 23px;
}

#ambienteAconchegante #ambienteBox div p {
    font-size: 20px;
}

#ambienteAconchegante #ambienteBox div button {
    width: max-content;
    padding: 10px 25px;
    font-size: 22px;
    border-radius: 30px;
    background-color: #91969c;
    color: rgb(29, 28, 26);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.4s ease;
}

#ambienteAconchegante #ambienteBox div button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #91969c;
}

/* começo da section "horarioFuncionamento" */
#horarioFuncionamento {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    background-color: #000;
    color: aliceblue;
}

#horarioFuncionamento #horarioTitulo {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#horarioFuncionamento #horarioTitulo h1 {
    font-size: 40px;
}

#horarioFuncionamento #horarioTitulo p {
    font-size: 20px;
}

#horarioFuncionamento #horarioBox {
    text-align: center;
    background-color: #91969c;
    color: #000;
    padding: 25px;
    border-radius: 10px;
    transition: box-shadow 0.4s ease, scale 0.4s ease;
}

#horarioFuncionamento #horarioBox:hover {
    box-shadow: 0 0 10px #91969c;
    scale: 1.02;
}

#horarioFuncionamento #horarioBox h2 {
    margin-bottom: 30px;
    font-size: 30px;
}

#horarioFuncionamento #horarioBox ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

#horarioFuncionamento #horarioBox ul li {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

#horarioFuncionamento #horarioBox ul li p {
    font-weight: 500;
}

#horarioFuncionamento #horarioBox ul li h4 {
    color: #283e5a;
}

/* fim da section "horarioFuncionamento" */


/* começo da section "facaReserva" */
#facaReserva {
    padding: 80px;
    text-align: center;
    background-color: #2b2a2a;
    color: aliceblue;
}

#facaReserva #reservaTitulo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
}

#facaReserva #reservaTitulo h1 {
    font-size: 40px;
}

#facaReserva #reservaTitulo p {
    font-size: 20px;
}

#facaReserva #reservaTotal p {
    font-size: 18px;
    margin-bottom: 20px;
}

#facaReserva #reservaTotal #reservaLinks {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

#facaReserva #reservaTotal #reservaLinks a {
    text-decoration: none;
    background-color: #283e5a;
    color: aliceblue;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#facaReserva #reservaTotal #reservaLinks a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #283e5a;
}

/* fim da section "facaReserva" */
/* ======================== FIM DA PÁGINA "ESPAÇO" =========================== */

/* ========================= COMEÇO DA PÁGINA "SOBRE NÓS" =================== */

#heroSobreNos {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(https://cdn.awsli.com.br/600x450/572/572835/produto/209583011/screenshot-produto-mercadolivre-com-br-2020-04_clipped_rev_2-fpzlnt.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 150px;
    padding-bottom: 120px;
    text-align: center;
    color: aliceblue;
}

#heroSobreNos div h1 {
    font-size: 45px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

/* ===================== COMEÇO DA SECTION "HISTORIA" ===================== */
#historia {
    padding: 100px 0;
    background-color: rgb(10, 9, 9);
    color: #f0e5e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

#historia #historiaTitulo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

#historia #historiaTitulo h1 {
    font-size: 40px;
}

#historia #historiaTitulo p {
    font-size: 20px;
}

#historia #historiaConteudo {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 80%;
    justify-content: center;
    /* background-color: #2b2a2a; */
}

#historia #historiaConteudo img {
    width: 33%;
    border-radius: 10px;
    /* box-shadow: #91969c 0px 5px 15px; */
}

#historia #historiaConteudo p {
    font-size: 20px;
    text-align: justify;
    line-height: 1.5;
    width: 50%;
    color: #f0e5e5;
}

#historia #timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

#historia #timeline::after {
    content: "";
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #283e5a;
    z-index: 100;
}

#historia #timeline .boxTimeline {
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 5px;
    margin: 20px 0;
    width: 40%;
    background-color: #3B3B3B;
    border-radius: 10px;
}

#historia #timeline .boxTimeline::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 4px solid #283e5a;
    left: 45%;
    transform: translateX(-50%);
    z-index: 200;
}

#historia #timeline .boxTimeline h5 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

#historia #timeline .boxTimeline p {
    font-size: 17px;
    color: #f0e5e5;
    line-height: 1.4;
}

#historia #timeline .boxTimelineDireita {
    margin-left: 52%;
}

#historia #timeline .boxTimelineEsquerda::before {
    left: calc(46% - 27px);
}

#historia #timeline .boxTimelineDireita::before {
    left: calc(46% + 5px);
}

/* ===================== FIM DA SECTION "HISTORIA" ===================== */

/* ==================== COMEÇO DA SECTION "nossosValores" */
#nossosValores {
    padding: 80px 0;
    background-color: #2b2a2a;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
}

#nossosValores #valoresTitulo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 80%;
}

#nossosValores #valoresTitulo h1 {
    font-size: 40px;
}

#nossosValores #valoresTitulo p {
    font-size: 20px;
}

#nossosValores #valoresConteudo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    width: 80%;
}

#nossosValores #valoresConteudo #boxValores1,
#nossosValores #valoresConteudo #boxValores2 {
    display: flex;
    gap: 20px;
    align-items: center;
}

#nossosValores #valoresConteudo .boxValores {
    background-color: #283e5a;
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    transition: box-shadow 0.4s ease, scale 0.4s ease;
}

#nossosValores #valoresConteudo .boxValores:hover {
    box-shadow: 0 0 10px #5993df;
    scale: 1.02;
    cursor: default;
}

#nossosValores #valoresConteudo .boxValores i {
    font-size: 50px;
    font-weight: 600;
    padding: 20px;
}

#nossosValores #valoresConteudo .boxValores h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
}

#nossosValores #valoresConteudo .boxValores p {
    font-size: 19px;
}

/* ==================== FIM DA SECTION "nossosValores" */

/* ==================== COMEÇO DA SECTION "nossaEquipe" */
#nossaEquipe {
    padding: 80px 0;
    background-color: rgb(10, 9, 9);
    color: aliceblue;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
}

#nossaEquipe #equipeTitulo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#nossaEquipe #equipeTitulo h1 {
    font-size: 40px;
}

#nossaEquipe #equipeTitulo p {
    font-size: 20px;
}

#nossaEquipe #equipeConteudo {
    display: flex;
    justify-content: center;
    gap: 30px;
}

#nossaEquipe #equipeConteudo .boxEquipe {
    background-color: #3B3B3B;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    text-align: center;
    transition: box-shadow 0.4s ease, scale 0.4s ease;
}

#nossaEquipe #equipeConteudo .boxEquipe:hover {
    box-shadow: 0 0 10px #5993df;
    scale: 1.02;
    cursor: default;
}

#nossaEquipe #equipeConteudo .boxEquipe img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: #283e5a 0px 0px 5px;
}

#nossaEquipe #equipeConteudo .boxEquipe h3 {
    font-size: 25px;
    margin-bottom: 5px;
}

#nossaEquipe #equipeConteudo .boxEquipe h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
}

#nossaEquipe #equipeConteudo .boxEquipe p {
    font-size: 20px;
    color: #f0e5e5;
}

#nossaEquipe #equipeConteudo .boxEquipe ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

#nossaEquipe #equipeConteudo .boxEquipe ul li i {
    font-size: 25px;
    cursor: pointer;
    color: #5993df;
    transition: color 0.3s ease, transform 0.3s ease;
}

#nossaEquipe #equipeConteudo .boxEquipe ul li i:hover {
    color: #283e5a;
    transform: scale(1.2);
}

/* ==================== FIM DA SECTION "nossaEquipe" */

/* =================== COMEÇO DA SECTION "missaoVisaoValores" */

#missaoVisaoValores {
    padding: 80px 0;
    background-color: #2b2a2a;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
}

#missaoVisaoValores #missaoTitulo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#missaoVisaoValores #missaoTitulo h1 {
    font-size: 40px;
}

#missaoVisaoValores #missaoTitulo p {
    font-size: 20px;
}

#missaoVisaoValores #missaoConteudo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    width: 60%;
}

#missaoVisaoValores #missaoConteudo .boxMissao {
    background-color: #283e5a;
    padding: 20px;
    border-radius: 10px;
    transition: box-shadow 0.4s ease, scale 0.4s ease;
}

#missaoVisaoValores #missaoConteudo .boxMissao:hover {
    box-shadow: 0 0 10px #5993df;
    scale: 1.02;
    cursor: default;
}

#missaoVisaoValores #missaoConteudo .boxMissao i {
    font-size: 40px;
    font-weight: 600;
    padding: 20px;
}

#missaoVisaoValores #missaoConteudo .boxMissao h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
}

#missaoVisaoValores #missaoConteudo .boxMissao p {
    font-size: 19px;
    line-height: 1.4;
}

#missaoVisaoValores #missaoLinks {
    display: flex;
    justify-content: center;
    gap: 40px;
}

#missaoVisaoValores #missaoLinks a {
    text-decoration: none;
    background-color: #08172b;
    color: aliceblue;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 500;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#missaoVisaoValores #missaoLinks a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #283e5a;
}

/* =================== FIM DA SECTION "missaoVisaoValores" */
/* ========================= FIM DA PÁGINA "SOBRE NÓS" =================== */

/* ========================= INÍCIO DA PÁGINA "CONTATO" =================== */
/* ========================= COMEÇO DA SECTION "hero" ===================== */
#heroContato {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(https://cdn.awsli.com.br/600x450/572/572835/produto/209583011/screenshot-produto-mercadolivre-com-br-2020-04_clipped_rev_2-fpzlnt.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 150px;
    padding-bottom: 120px;
    text-align: center;
    color: aliceblue;
}

#heroContato div {
    width: 40%;
    margin: 0 auto;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#heroContato div h1 {
    font-size: 45px;
    font-family: '5Playfair Display', serif;
    font-weight: 200;
}

#heroContato div p {
    font-size: 20px;
}

/* ========================= FIM DA SECTION "hero" ===================== */
/* ========================= COMEÇO DA SECTION "contatoConteudo" ===================== */
#contatoConteudo {
    padding: 100px 0;
    background-color: rgb(10, 9, 9);
    color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

/* ========================= COMEÇO DA DIV "contatoInformacoes" ==================== */
#contatoConteudo #contatoInformacoes {
    background-color: #2b2a2a;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 10px;
    width: 30%;
}

#contatoConteudo #contatoInformacoes #InformacoesTitulo {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 800;
}

#contatoConteudo #contatoInformacoes .informacoesBox {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

#contatoConteudo #contatoInformacoes .informacoesBox div {
    display: flex;
    align-items: center;
    gap: 10px;
}

#contatoConteudo #contatoInformacoes .informacoesBox div i {
    font-size: 25px;
    padding: 15px;
    background-color: rgb(29, 28, 26);
    border-radius: 50%;
    color: #fff;
}

#contatoConteudo #contatoInformacoes .informacoesBox div h4 {
    font-size: 25px;
    font-weight: 700;
}

#contatoConteudo #contatoInformacoes .informacoesBox p {
    font-size: 17px;
    margin-left: 65px;
    margin-top: 5px;
}

#contatoConteudo #contatoInformacoes #contatoHorarios {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

#contatoConteudo #contatoInformacoes #contatoHorarios h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

#contatoConteudo #contatoInformacoes #contatoHorarios ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#contatoConteudo #contatoInformacoes #contatoHorarios ul li {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-right: 20px;
    border-bottom: 1px solid #796a6a;
    padding-bottom: 5px;
}

/* ========================= FIM DA DIV "contatoInformacoes" ==================== */

/* ========================= COMEÇO DA DIV "contatoFormulario" ==================== */
#contatoConteudo #contatoFormulario {
    background-color: #2b2a2a;
    padding: 30px;
    border-radius: 10px;
    width: 40%;
}

#contatoConteudo #contatoFormulario #formularioTitulo {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 800;
}

#contatoConteudo #contatoFormulario #formularioContato {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#contatoConteudo #contatoFormulario #formularioContato .formulariocampo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#contatoConteudo #contatoFormulario #formularioContato .formulariocampo label {
    font-size: 18px;
    text-align: left;
}

#contatoConteudo #contatoFormulario #formularioContato .formulariocampo input,
#contatoConteudo #contatoFormulario #formularioContato .formulariocampo textarea {
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    background-color: #1f1b1b;
    color: #ede7e7;
    resize: none;
    transition: box-shadow 0.3s ease, outline 0.3s ease;
}

#contatoConteudo #contatoFormulario #formularioContato .formulariocampo input:focus,
#contatoConteudo #contatoFormulario #formularioContato .formulariocampo textarea:focus {
    outline: 1px solid #283e5a;
    box-shadow: 0 0 10px #283e5a;
}

#contatoConteudo #contatoFormulario #formularioContato #enviarContato {
    width: fit-content;
    padding: 20px 30px;
    font-size: 18px;
    background-color: #283e5a;
    border: none;
    color: #f0e5e5;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.5s ease;
}

#contatoConteudo #contatoFormulario #formularioContato #enviarContato:hover {
    background-color: #486489;
    cursor: pointer;
    transform: scale(1.06);
    box-shadow: 0 0 10px #486489;
}

/* ========================= FIM DA DIV "contatoFormulario" ==================== */
/* ========================= FIM DA SECTION "contatoConteudo" ==================== */

/* ========================= COMEÇO DA SECTION "nossaLocalizacao" ==================== */
#nossaLocalizacao {
    padding: 100px 0;
    background-color: #2b2a2a;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

#nossaLocalizacao #localizacaoTitulo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

#nossaLocalizacao #localizacaoTitulo h1 {
    font-size: 40px;
}

#nossaLocalizacao #localizacaoTitulo p {
    font-size: 20px;
}

/* ========================= FIM DA SECTION "nossaLocalizacao" ==================== */

/* ========================= COMEÇO DA SECTION "perguntasFrequentes" ==================== */
#perguntasFrequentes {
    padding: 100px 0;
    background-color: rgb(10, 9, 9);
    color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

#perguntasFrequentes #perguntasTitulo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

#perguntasFrequentes #perguntasTitulo h1 {
    font-size: 40px;
}

#perguntasFrequentes #perguntasTitulo p {
    font-size: 20px;
}

#perguntasFrequentes #perguntas {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
}

#perguntasFrequentes #perguntas .pergunta {
    background-color: #2b2a2a;
    padding: 20px;
    border-radius: 5px;
}

#perguntasFrequentes #perguntas .pergunta:hover {
    cursor: pointer;
}

/* estilo para ícone do Font Awesome nas FAQs */
#perguntasFrequentes #perguntas .pergunta summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
}

#perguntasFrequentes #perguntas .pergunta summary::-webkit-details-marker {
    display: none;
}

.faq-arrow {
    transition: transform 0.25s ease;
    font-size: 18px;
    color: #f0e5e5;
}

.pergunta[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq-content {
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
    margin-top: 20px;
    font-size: 18px;
    cursor: auto;
}

/* ========================= FIM DA SECTION "perguntasFrequentes" ==================== */

/* ========================= COMEÇO DA SECTION "sigaNos" ==================== */
#sigaNos {
    padding: 100px 0;
    background-color: #2b2a2a;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

#sigaNos #sigaNosTitulo {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
}

#sigaNos #sigaNosTitulo h1 {
    font-size: 40px;
}

#sigaNos #sigaNosTitulo p {
    font-size: 20px;
}

#sigaNos #sigaNosRedes {
    list-style: none;
    display: flex;
    gap: 30px;
}

#sigaNos #sigaNosRedes li i {
    font-size: 30px;
    padding: 30px;
    background-color: #000;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#sigaNos #sigaNosRedes li i:hover {
    background-color: #181b1f;
    cursor: pointer;
    transform: scale(1.2);
}

/* ========================= FIM DA SECTION "sigaNos" ==================== */
/* ========================= FIM DA PÁGINA "contato" ==================== */


/* ========================== PAGINA CARDAPIO E NARGUILE(TUDO BAGUNÇA, ARRUMAR NO FINAL DO PROJETO) */
#agendamentos {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    padding: 10px;
    height: 100%;
    width: 250px;
    background-color: #2b2a2a;
    z-index: 1000;
}

#topoAgendamentos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

#agendamentos #divLimparAgendamentos {
    position: absolute;
    bottom: 20px;
    left: 10px;
}

#agendamentos #divLimparAgendamentos #limparAgendamentos {
    padding: 10px;
    font-size: 18px;
    font-family: "poppins", sans-serif;
    font-weight: 700;
    border: none;
    background-color: #ff982d;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, scale 0.3s ease;
}

#agendamentos #divLimparAgendamentos #limparAgendamentos:hover {
    background-color: rgb(185, 119, 26);
    color: #fff;
    scale: 1.03;
    cursor: pointer;
}

#carrinho {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    padding: 10px;
    height: 100%;
    width: 250px;
    background-color: #2b2a2a;
    z-index: 1000;
}

#topoCarrinho {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#topoCarrinho h2,
#agendamentos h2 {
    font-size: 25px;
    color: #ff982d;
}

#fechar-carrinho,
#fechar-agendamento {
    background: transparent;
    border: none;
    font-size: 30px;
    margin-top: 5px !important;
    margin-right: 10px;
    cursor: pointer;
    color: #ff4d4d;
    transition: color 0.4s ease;
}

#fechar-carrinho:hover,
#fechar-agendamento:hover {
    color: #9d1515;
}

#listaCarrinho {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-top: 20px;
    gap: 15px;
}

.li_carrinho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: aliceblue;
    border-bottom: 1px solid #121418c2;
}

.li_carrinho .divQuantidade {
    display: flex;
    gap: 10px;
}

.li_carrinho .divQuantidade p {
    font-size: 20px;
}

.li_carrinho .divQuantidade .removerQuantidade {
    background-color: red;
    color: aliceblue;
    font-weight: 600;
    padding: 0 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.4s ease;
}

.li_carrinho .divQuantidade .removerQuantidade:hover {
    background-color: rgb(124, 12, 12);
}

.li_carrinho .divQuantidade .quantidade {
    color: aliceblue;
    font-weight: 600;
}

.li_carrinho .divQuantidade .adicionarQuantidade {
    background-color: rgb(21, 190, 21);
    color: aliceblue;
    font-weight: 600;
    padding: 0 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.4s ease;
}

.li_carrinho .divQuantidade .adicionarQuantidade:hover {
    background-color: green;
}

#carrinho #total {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: 25px;
}

#carrinho #total #totalCarrinho {
    font-size: 25px;
    color: #ff982d;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-left: 10px;
}

#carrinho #total #finalizarCompra {
    padding: 10px 15px;
    background-color: #ff982d;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border: none;
    font-size: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, scale 0.3s ease;
}

#carrinho #total #finalizarCompra:hover {
    background-color: rgb(185, 119, 26);
    color: #fff;
    scale: 1.05;
    cursor: pointer;
}

nav #menuCardapio {
    display: flex;
    background-color: #1f1c1c;
    color: aliceblue;
    list-style: none;
    justify-content: center;
    gap: 50px;
    padding: 20px;
    border-bottom: 1px solid #ede7e7;
}

nav #menuCardapio li {
    font-size: 18px;
    cursor: pointer;
    color: #ff982d;
    border-bottom: 2px solid transparent;
    transition: border-color 0.4s;
}

#menuCardapio li.ativo {
    border-bottom: 2px solid #ff982d;
}


#produtos,
#AcessoriosNarguile {
    background-color: #000;
    padding: 50px 0;
}

#nomeCategoria {
    color: #ff982d;
    font-size: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.visualizacaoProdutos {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}

.visualizacaoProdutos li {
    width: 25%;
    background-color: #3B3B3B;
    border-radius: 10px;
}

.visualizacaoProdutos li .boxProduto img {
    width: 100%;
    height: 200px;
    border-radius: 10px 10px 0 0;
}

.visualizacaoProdutos li .boxProduto .divTexto {
    display: flex;
    flex-direction: column;
    color: aliceblue;
    gap: 5px;
    padding: 0 20px;
    margin: 10px 0;
}

.visualizacaoProdutos li .boxProduto h3,
.visualizacaoProdutos li .boxProduto h4 {
    font-size: 20px;
}

.visualizacaoProdutos li .boxProduto p {
    font-size: 17px;
}

.visualizacaoProdutos li .boxProduto .botaoAdicionar {
    background-color: #ff982d;
    cursor: pointer;
    color: aliceblue;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    width: 90%;
    margin-left: 15px;
    margin-bottom: 10px;
    font-size: 20px;
    padding: 7px 0;
    border-radius: 10px;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease, scale 0.3s ease;
}

.visualizacaoProdutos li .boxProduto .botaoAdicionar:hover {
    background-color: rgb(185, 119, 26);
    color: #fff;
    font-weight: 700;
    scale: 1.05;
}

.toastAdicionado,
.toastRemovido {
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-weight: 600;
    background-color: #333;
    color: rgb(34, 197, 34);
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0.95;
    animation: fadeInOut 3s ease;
    z-index: 2000;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#alugarNarguiles {
    padding: 80px 0;
    background-color: #2b2a2a;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#alugarNarguiles h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.form-agendamento {
    background-color: #000;
    color: #ff982d;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
}

.form-agendamento form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-agendamento form label {
    margin-top: 5px;
}

.form-agendamento input,
.form-agendamento textarea {
    margin-bottom: 10px;
    padding: 8px;
    resize: none;
    background-color: #1f1b1b;
    color: aliceblue;
    font-size: 17px;
    border: none;
    transition: all 0.4s ease;
    border-radius: 5px;
}

.form-agendamento input:focus,
.form-agendamento textarea:focus {
    outline: 1px solid #ff982d;
    box-shadow: 0 0 10px #ff982d;
    font-size: 15px;
}

.form-agendamento button {
    margin-top: 10px;
    padding: 5px;
    border: none;
    background-color: #ff982d;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.form-agendamento button:hover {
    transform: scale(1.05);
}

.divConfirmacao {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #000;
    padding: 20px;
    color: #ff982d;
    border-radius: 10px;
}

.divConfirmacao button {
    background-color: #ff982d;
    border: none;
    padding: 5px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.divConfirmacao button:hover {
    transform: scale(1.05);
}

.contagemCarrinho {
    background-color: #ff982d;
    color: #000;
    position: relative;
    font-weight: 900;
    top: -35px;
    font-family: "poppins", sans-serif;
    right: -13px;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    display: flex;
    font-size: 16px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    padding: 5px 2px;
}