/*======================================
        PIZZARIA THE BROTHERS
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:
    radial-gradient(circle at top,#2b0000 0%,#111 35%,#090909 100%);

    color:white;

    overflow-x:hidden;
}

/* Barra de rolagem */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#cf1010;
    border-radius:20px;
}

/*=========================
        HEADER
==========================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:90px;

    padding:0 60px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    backdrop-filter:blur(12px);

    background:rgba(0,0,0,.70);

    border-bottom:2px solid rgba(255,0,0,.25);

    z-index:999;
}

.logo-area{

    display:flex;

    align-items:center;

    gap:18px;
}

.logo{

    width:70px;

    transition:.4s;
}

.logo:hover{

    transform:rotate(-8deg) scale(1.08);

}

.logo-area h1{

    color:#ffffff;

    font-size:18px;

    font-weight:600;

    line-height:20px;

}

.logo-area h2{

    color:#74ff38;

    font-size:34px;

    font-weight:800;

    text-transform:uppercase;

}

/*=========================
          MENU
==========================*/

nav{

    display:flex;

    gap:18px;

}

nav a{

    color:white;

    text-decoration:none;

    font-weight:600;

    padding:13px 30px;

    border:2px solid #53ff2f;

    border-radius:10px;

    transition:.35s;

}

nav a:hover{

    background:#ff0000b2;

    border-color:#e11616;

    transform:translateY(-4px);

    box-shadow:0 0 25px #ff2f2f;

}

/*=========================
        BANNER
==========================*/

.banner{

    width:100%;

    height:100vh;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

    background:#000;

}

.banner-img{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

    filter:

    brightness(.45)

    saturate(1.15);

    animation:zoomBanner 18s linear infinite;

}

@keyframes zoomBanner{

0%{

transform:scale(1);

}

100%{

transform:scale(1.12);

}

}

.overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.80));

}

.banner-texto{

    position:relative;

    max-width:700px;

    text-align:center;

    z-index:2;

}

.banner-texto span{

    color:#8dff39;

    font-size:20px;

    letter-spacing:2px;

}

.banner-texto h1{

    font-size:72px;

    line-height:82px;

    margin:25px 0;

    color:white;

    text-shadow:
    0 0 20px rgba(255,255,255,.2),
    0 0 40px rgba(255,0,0,.25);

    animation:tituloEntrada 1.2s ease;

}
@keyframes tituloEntrada{

from{

opacity:0;

transform:translateY(60px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.banner-texto p{

    font-size:22px;

    color:#ececec;

    max-width:700px;

    margin:auto;

    line-height:38px;

}

/*=========================
        BOTÃO
==========================*/

.botao{

    display:inline-block;

    margin-top:40px;

    padding:18px 45px;

    background:linear-gradient(135deg,#c40000,#ff2d2d);

    color:#fff;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    border-radius:50px;

    transition:.35s;

    box-shadow:0 0 30px rgba(255,0,0,.45);

}

.botao:hover{

    transform:translateY(-6px) scale(1.05);

    box-shadow:0 0 45px rgba(255,40,40,.85);

}

/*=========================
      COMBOS
==========================*/

.combos{

    padding:110px 8%;

    background:

    radial-gradient(circle at top,#191919,#090909);

}

.combos h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

    color:#72ff3d;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}

.combo{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    overflow:hidden;

    transition:.4s;

    backdrop-filter:blur(10px);

}

.combo:hover{

    transform:translateY(-12px);

    box-shadow:0 0 40px rgba(255,0,0,.35);

}

.combo img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.combo h3{

    text-align:center;

    margin-top:20px;

    font-size:28px;

}

.combo p{

    text-align:center;

    color:#d9d9d9;

    padding:15px;

    line-height:28px;

}

.combo h4{

    text-align:center;

    color:#72ff3d;

    font-size:30px;

    margin-bottom:25px;

}

/*=========================
     DIFERENCIAIS
==========================*/

.diferenciais{

    padding:110px 8%;

    background:

    linear-gradient(180deg,#090909,#131313);

}

.diferenciais h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

    color:#72ff3d;

}

.vantagens{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.vantagem{

    background:#141414;

    border-radius:20px;

    padding:40px;

    text-align:center;

    transition:.4s;

    border:1px solid rgba(255,255,255,.06);

}

.vantagem:hover{

    transform:translateY(-10px);

    border-color:#ff2f2f;

    box-shadow:0 0 35px rgba(255,0,0,.25);

}

.vantagem i{

    font-size:55px;

    color:#6eff38;

    margin-bottom:20px;

}

.vantagem h3{

    margin-bottom:15px;

    font-size:24px;

}

.vantagem p{

    color:#d6d6d6;

    line-height:28px;

}

/*=========================
          FOOTER
==========================*/

footer{

    background:#050505;

    border-top:2px solid rgba(255,0,0,.25);

    padding:70px 8% 25px;

}

.footer-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

    margin-bottom:50px;

}

.footer-box h3{

    color:#72ff3d;

    font-size:26px;

    margin-bottom:20px;

}

.footer-box p{

    color:#d8d8d8;

    line-height:32px;

    font-size:17px;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    text-align:center;

}

.copyright p{

    color:#bdbdbd;

    margin-bottom:10px;

}

.copyright h4{

    font-size:20px;

    color:white;

}

.copyright span{

    color:#72ff3d;

    font-weight:bold;

}

/*=========================
     ANIMAÇÕES
==========================*/

.combo,
.vantagem{

    animation:subir .8s ease;

}

@keyframes subir{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.botao{

    animation:pulsar 2s infinite;

}

@keyframes pulsar{

    0%{

        box-shadow:0 0 15px rgba(255,0,0,.3);

    }

    50%{

        box-shadow:0 0 40px rgba(255,0,0,.8);

    }

    100%{

        box-shadow:0 0 15px rgba(255,0,0,.3);

    }

}

/*=========================
   TEXTURA DO FUNDO
==========================*/

body::before{

    content:"";

    position:fixed;

    inset:0;

    background-image:

    radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:22px 22px;

    pointer-events:none;

    opacity:.45;

    z-index:-1;

}

/*=========================
     RESPONSIVO
==========================*/

@media(max-width:900px){

header{

padding:15px 20px;

height:auto;

flex-direction:column;

gap:15px;

}

.logo{

width:60px;

}

.logo-area h2{

font-size:24px;

}

nav{

flex-wrap:wrap;

justify-content:center;

}

nav a{

padding:10px 20px;

font-size:15px;

}

.banner-texto{

padding:0 20px;

}

.banner-texto h1{

font-size:42px;

line-height:50px;

}

.banner-texto p{

font-size:18px;

}

.combos h2,
.diferenciais h2{

font-size:32px;

}

.cards,
.vantagens{

grid-template-columns:1fr;

}

.combo img{

height:220px;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

}

/*=========================
    FIM DO CSS
==========================*/
/*=========================================
            CARDÁPIO
=========================================*/

.menu{

    width:100%;

    padding:100px 6%;

    background:#0b0b0b;

}

.menu h2{

    text-align:center;

    color:#72ff3d;

    font-size:45px;

    margin-bottom:40px;

}

#pesquisa{

    width:100%;

    max-width:600px;

    display:block;

    margin:0 auto 40px;

    padding:18px;

    border:none;

    outline:none;

    border-radius:50px;

    background:#181818;

    color:white;

    font-size:18px;

    border:2px solid #2d2d2d;

    transition:.3s;

}

#pesquisa:focus{

    border-color:#ff2d2d;

    box-shadow:0 0 20px rgba(255,0,0,.4);

}

.categorias{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:50px;

}

.categoria{

    padding:15px 28px;

    border:none;

    cursor:pointer;

    border-radius:40px;

    background:#1c1c1c;

    color:white;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.categoria:hover{

    background:#ff2d2d;

    transform:translateY(-5px);

}

.categoria.ativa{

    background:#72ff3d;

    color:#111;

}

.lista-pizzas{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}
/*=========================================
            CARD DAS PIZZAS
=========================================*/

.pizza-card{

    background:#161616;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.pizza-card:hover{

    transform:translateY(-10px);

    box-shadow:0 0 30px rgba(255,0,0,.35);

}

.pizza-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.pizza-card h3{

    text-align:center;

    margin-top:18px;

    font-size:28px;

}

.estrelas{

    text-align:center;

    color:#FFD700;

    font-size:22px;

    margin:10px 0;

}

.pizza-card p{

    color:#d5d5d5;

    padding:0 20px;

    text-align:center;

    line-height:28px;

    min-height:80px;

}

.pizza-card span{

    display:block;

    text-align:center;

    font-size:28px;

    color:#72ff3d;

    margin:20px 0;

    font-weight:bold;

}

.adicionar{

    width:90%;

    margin:0 auto 20px;

    display:block;

    padding:15px;

    border:none;

    border-radius:40px;

    cursor:pointer;

    background:linear-gradient(90deg,#c80000,#ff2d2d);

    color:white;

    font-size:17px;

    font-weight:bold;

    transition:.3s;

}

.adicionar:hover{

    transform:scale(1.05);

    box-shadow:0 0 25px rgba(255,0,0,.5);

}
/*=========================================
            CARRINHO
=========================================*/

.carrinho{

    position:fixed;

    top:100px;

    right:20px;

    width:360px;

    height:calc(100vh - 120px);

    background:#121212;

    border-radius:20px;

    border:2px solid rgba(255,0,0,.25);

    box-shadow:0 15px 40px rgba(0,0,0,.6);

    display:flex;

    flex-direction:column;

    overflow:hidden;

    z-index:999;

}

.carrinho-topo{

    background:linear-gradient(90deg,#c40000,#ff2d2d);

    padding:20px;

    text-align:center;

}

.carrinho-topo h2{

    color:white;

    font-size:28px;

}

#itensCarrinho{

    flex:1;

    overflow-y:auto;

    padding:20px;

}

#itensCarrinho::-webkit-scrollbar{

    width:8px;

}

#itensCarrinho::-webkit-scrollbar-thumb{

    background:#ff2d2d;

    border-radius:20px;

}

.vazio{

    text-align:center;

    color:#bdbdbd;

    margin-top:50px;

}

.itemCarrinho{

    background:#1c1c1c;

    border-radius:15px;

    padding:15px;

    margin-bottom:15px;

    border:1px solid rgba(255,255,255,.05);

}

.itemCarrinho h4{

    font-size:18px;

    color:white;

    margin-bottom:8px;

}

.itemCarrinho p{

    color:#72ff3d;

    font-size:18px;

    font-weight:bold;

}

.controles{

    display:flex;

    justify-content:center;

    gap:10px;

    margin-top:15px;

}

.controles button{

    width:35px;

    height:35px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    font-size:18px;

    font-weight:bold;

    background:#ff2d2d;

    color:white;

    transition:.3s;

}

.controles button:hover{

    transform:scale(1.15);

}

.quantidade{

    font-size:20px;

    font-weight:bold;

    color:white;

    display:flex;

    align-items:center;

}

.carrinho-total{

    padding:20px;

    border-top:1px solid rgba(255,255,255,.08);

}

.carrinho-total h3{

    color:#d8d8d8;

    margin-bottom:10px;

}

.carrinho-total h2{

    color:#72ff3d;

    font-size:34px;

}

.carrinho-botoes{

    display:flex;

    flex-direction:column;

    gap:15px;

    padding:20px;

}

.limparCarrinho{

    background:#3b3b3b;

    color:white;

    border:none;

    padding:15px;

    border-radius:12px;

    cursor:pointer;

    font-size:17px;

    transition:.3s;

}

.limparCarrinho:hover{

    background:#555;

}

.finalizarPedido{

    background:linear-gradient(90deg,#0ea84b,#2ad66d);

    color:white;

    border:none;

    padding:18px;

    border-radius:12px;

    cursor:pointer;

    font-size:18px;

    font-weight:bold;

    transition:.3s;

}

.finalizarPedido:hover{

    transform:translateY(-4px);

    box-shadow:0 0 25px rgba(0,255,100,.4);

}

@media(max-width:1200px){

    .carrinho{

        position:relative;

        width:100%;

        height:auto;

        top:0;

        right:0;

        margin-top:50px;

    }

}
/*=============================
      NOTIFICAÇÃO
=============================*/

.notificacao{

position:fixed;

right:25px;

bottom:25px;

background:#16a34a;

color:white;

padding:18px 30px;

border-radius:12px;

font-weight:bold;

box-shadow:0 15px 35px rgba(0,0,0,.4);

opacity:0;

transform:translateY(30px);

transition:.4s;

z-index:99999;

}

.notificacao.mostrar{

opacity:1;

transform:translateY(0);

}

/*====================================
      BOTÃO FLUTUANTE
====================================*/

.botaoCarrinho{

position:fixed;

right:25px;

bottom:30px;

width:75px;

height:75px;

border-radius:50%;

background:linear-gradient(135deg,#c50000,#ff3d3d);

display:flex;

justify-content:center;

align-items:center;

font-size:35px;

cursor:pointer;

box-shadow:0 15px 35px rgba(255,0,0,.45);

z-index:99999;

transition:.35s;

}

.botaoCarrinho:hover{

transform:scale(1.1);

}

#contadorCarrinho{

position:absolute;

top:-8px;

right:-8px;

width:28px;

height:28px;

background:#72ff3d;

color:#111;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:15px;

font-weight:bold;

}

.fecharCarrinho{

background:none;

border:none;

color:white;

font-size:28px;

cursor:pointer;

}

.carrinho{

right:-420px;

transition:.45s;

}

.carrinho.aberto{

right:20px;

}

/*==================================
          FAVORITOS
==================================*/

.topo-card{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 20px 0;

}

.topo-card h3{

margin:0;

font-size:26px;

}

.favorito{

width:42px;

height:42px;

border:none;

border-radius:50%;

cursor:pointer;

background:#202020;

font-size:22px;

transition:.3s;

}

.favorito:hover{

transform:scale(1.12);

background:#2d2d2d;

}

.favorito.ativo{

background:#ff2d2d;

color:white;

box-shadow:0 0 20px rgba(255,0,0,.4);

}

/*==================================
        ANIMAÇÕES DOS CARDS
==================================*/

.pizza-card{

    position:relative;

    overflow:hidden;

}

.pizza-card::before{

    content:"";

    position:absolute;

    top:-100%;

    left:-100%;

    width:250%;

    height:250%;

    background:linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );

    transform:rotate(25deg);

    transition:.8s;

}

.pizza-card:hover::before{

    top:100%;

    left:100%;

}

.pizza-card img{

    transition:.45s;

}

.pizza-card:hover img{

    transform:scale(1.08);

}

.pizza-card:hover{

    border:2px solid #72ff3d;

}

.adicionar{

    position:relative;

    overflow:hidden;

}

.adicionar::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.25);

    transform:skewX(-25deg);

    transition:.6s;

}

.adicionar:hover::after{

    left:130%;

}

/*==================================
      EFEITO NAS IMAGENS
==================================*/

.pizza-card img{

    border-bottom:3px solid rgba(255,255,255,.05);

}

.pizza-card:hover img{

    filter:brightness(1.08) saturate(1.15);

}

/*==================================
            LOADING
==================================*/

#loading{

position:fixed;

top:0;

left:0;

width:100%;

height:100vh;

background:#090909;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

z-index:999999;

transition:.8s;

}

.loadingLogo{

width:170px;

animation:girarLogo 2s infinite ease-in-out;

}

#loading h2{

margin-top:25px;

font-size:34px;

color:#72ff3d;

}

@keyframes girarLogo{

0%{

transform:scale(.9) rotate(0deg);

}

50%{

transform:scale(1.05) rotate(5deg);

}

100%{

transform:scale(.9) rotate(0deg);

}

}

/*==================================
      BOTÃO TOPO
==================================*/

#topo{

position:fixed;

bottom:30px;

left:30px;

width:65px;

height:65px;

border:none;

border-radius:50%;

background:#72ff3d;

color:#111;

font-size:28px;

font-weight:bold;

cursor:pointer;

display:none;

transition:.3s;

box-shadow:0 10px 25px rgba(0,0,0,.4);

z-index:9999;

}

#topo:hover{

transform:translateY(-8px);

}

/*==================================
        BRILHO VERDE
==================================*/

.logo{

filter:

drop-shadow(0 0 10px rgba(0,255,0,.3));

}

.logo:hover{

filter:

drop-shadow(0 0 20px rgba(0,255,0,.7));

}

/*==================================
      SEÇÕES
==================================*/

section{

position:relative;

z-index:2;

}

section::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:

radial-gradient(

circle,

transparent,

rgba(0,0,0,.18)

);

pointer-events:none;

}

