/* Cards das pizzas */

.grid .pizza,
.grid .pizza:link,
.grid .pizza:visited,
.grid .pizza:hover,
.grid .pizza:active{
    display: block;
    text-decoration: none;
    color: #000;
}

.grid .pizza h3,
.grid .pizza p{
    color: #000;
}

.grid .pizza:visited h3,
.grid .pizza:visited p,
.grid .pizza:hover h3,
.grid .pizza:hover p,
.grid .pizza:active h3,
.grid .pizza:active p{
    color: #000;
}

.grid .pizza img{
    display: block;
    width: 100%;
}

.grid .pizza{
    transition: .25s;
    border-radius: 12px;
}

.grid .pizza:hover{
    transform: translateY(-6px);
}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    z-index:9999;
    transition:.3s;
    animation:pulseWhats 2s infinite;
}

.whatsapp-float:hover{
    transform:scale(1.12);
}

@keyframes pulseWhats{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,.7);}
    70%{box-shadow:0 0 0 18px rgba(37,211,102,0);}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

@media (max-width:768px){
    .whatsapp-float{
        width:58px;
        height:58px;
        right:18px;
        bottom:18px;
    }
}
:root{
  --primary:#d60000;
  --secondary:#ffcc00;
  --dark:#111;
  --light:#fff;
  --bg:#f5f5f5;
  --radius:18px;
  --shadow:0 10px 30px rgba(0,0,0,.15);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:#333;
  line-height:1.6;
}
.hero{
  min-height:100vh;
  background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("assets/img/banner.jpg") center/cover no-repeat;
  display:flex;
  flex-direction:column;
  color:#fff;
}
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  position:sticky;
  top:0;
  backdrop-filter:blur(12px);
  background:rgba(0,0,0,.35);
}
.navbar h1{color:var(--secondary)}
.navbar ul{
  list-style:none;
  display:flex;
  gap:24px;
}
.navbar a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}
.navbar a:hover{color:var(--secondary)}
.hero-content{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}
.hero-content h2{
  font-size:clamp(2.2rem,5vw,4rem);
}
.hero-content p{
  margin:20px 0 35px;
  max-width:650px;
}
.btn{
  display:inline-block;
  margin:8px;
  padding:15px 32px;
  background:var(--primary);
  color:#fff;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
  box-shadow:var(--shadow);
}
.btn:hover{
  transform:translateY(-4px);
}
.whatsapp{background:#25D366}
.instagram{
  background:linear-gradient(45deg,#833ab4,#fd1d1d,#fcb045);
}
section{
  padding:80px 8%;
}
section h2{
  text-align:center;
  margin-bottom:40px;
  color:var(--primary);
}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}
.card,.pizza{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.3s;
}
.card:hover,.pizza:hover{
  transform:translateY(-8px);
}
.card img,.pizza img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.card h3,.pizza h3{
  padding:20px 20px 8px;
}
.card p,.pizza p{
  padding:0 20px 20px;
}
footer{
  background:var(--dark);
  color:#fff;
  text-align:center;
  padding:30px;
}
@media(max-width:900px){
 .navbar{
   flex-direction:column;
   gap:15px;
 }
 .navbar ul{
   flex-wrap:wrap;
   justify-content:center;
 }
}
@media(max-width:600px){
 .hero-content h2{font-size:2rem}
 .btn{
   width:90%;
   text-align:center;
 }
 section{
   padding:60px 20px;
 }
}
/* =======================
   CONTATO MODERNO
======================= */

.contato{
    background:#fff;
}

.contato-box{

    max-width:1100px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;

    background:#ffffff;

    border-radius:20px;

    padding:45px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.contato-box h3{

    color:#d60000;
    margin-bottom:20px;
    font-size:30px;

}

.contato-box p{

    margin-bottom:20px;
    font-size:18px;
    line-height:1.8;

}

.contato-botoes{

    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:20px;

}

.contato-botoes .btn{

    width:100%;
    text-align:center;
    font-size:18px;
    padding:18px;

}

.grande{

    font-size:22px !important;
    padding:22px !important;

    animation:pulseContato 2s infinite;

}

@keyframes pulseContato{

0%{
transform:scale(1);
}

50%{
transform:scale(1.04);
}

100%{
transform:scale(1);
}

}

@media(max-width:900px){

.contato-box{

grid-template-columns:1fr;
padding:30px;

}

.contato-box h3{

text-align:center;

}

.contato-box p{

text-align:center;

}

}
