@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap');

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:#0d0d0d;
  color:#f5f1e8;
  font-family:Poppins,Arial,sans-serif;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}

header{
  height:82px;
  position:fixed;
  top:0;
  width:100%;
  z-index:20;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 7%;
  background:rgba(8,8,8,.92);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.logo{
  font-weight:900;
  font-size:22px;
  letter-spacing:3px;
}
.top-btn{
  background:#c72222;
  padding:14px 24px;
  border-radius:999px;
  font-weight:900;
}

.hero{
  min-height:100vh;
  padding:120px 7% 70px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
  background:radial-gradient(circle at 75% 20%,rgba(199,34,34,.28),transparent 35%),linear-gradient(135deg,#0d0d0d,#171717);
}
.hero span,.label{
  color:#c8a95a;
  text-transform:uppercase;
  letter-spacing:2.5px;
  font-size:13px;
  font-weight:900;
}
.hero h1{
  font-size:clamp(46px,8vw,88px);
  line-height:.95;
  margin:22px 0;
}
.hero p{
  color:#c9c0b3;
  font-size:19px;
  line-height:1.7;
  max-width:620px;
}
.buttons{
  margin-top:32px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.btn{
  padding:16px 26px;
  border-radius:999px;
  font-weight:900;
}
.red{background:#c72222;color:white}
.dark{border:1px solid rgba(255,255,255,.3)}
.hero-img{
  width:100%;
  border-radius:28px;
  box-shadow:0 35px 100px #000;
  border:1px solid rgba(255,255,255,.08);
}

.section{
  padding:90px 7%;
  text-align:center;
}
.dark-section{background:#121212}
.section h2,.about h2{
  font-size:clamp(34px,5vw,54px);
  margin:8px 0 12px;
}
.section-desc{
  color:#bfb7ad;
  max-width:720px;
  margin:0 auto 44px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  text-align:left;
}
.card{
  position:relative;
  background:#1a1a1a;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 22px 70px rgba(0,0,0,.28);
}
.card img{
  width:100%;
  height:260px;
  object-fit:cover;
}
.content{padding:24px}
.card h3{font-size:26px;margin-bottom:8px}
.card strong{
  display:block;
  color:#c8a95a;
  font-size:24px;
  margin-bottom:12px;
}
.card p{
  color:#bfb7ad;
  line-height:1.65;
}
.featured{border-color:rgba(200,169,90,.75)}
.badge{
  position:absolute;
  top:14px;
  right:14px;
  background:#c8a95a;
  color:#111;
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.menu{
  max-width:1000px;
  margin:34px auto 0;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  text-align:left;
}
.menu div{
  background:#1a1a1a;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:24px;
}
.menu h3{font-size:22px}
.menu p{
  color:#bfb7ad;
  margin:8px 0 12px;
  line-height:1.6;
}
.menu strong{
  color:#c8a95a;
  font-size:20px;
}

.sauces{
  margin-top:38px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}
.sauces div{
  background:#1a1a1a;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  min-height:140px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:12px;
  font-size:40px;
}
.sauces b{
  font-size:14px;
}
.center{
  margin-top:26px;
  color:#bfb7ad;
}

.about{
  padding:90px 7%;
  text-align:center;
  max-width:950px;
  margin:auto;
}
.about p{
  color:#bfb7ad;
  font-size:18px;
  line-height:1.8;
}

footer{
  text-align:center;
  padding:60px 7%;
  background:#070707;
  border-top:1px solid rgba(255,255,255,.08);
}
footer h2{letter-spacing:3px}
footer p{color:#c8a95a;margin:8px 0 16px}
footer small{color:#777}

.whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:30;
  background:#22b45b;
  color:white;
  padding:15px 20px;
  border-radius:999px;
  font-weight:900;
  box-shadow:0 12px 35px rgba(0,0,0,.35);
}

@media(max-width:900px){
  .hero{
    grid-template-columns:1fr;
    text-align:center;
  }
  .hero p{margin:auto}
  .buttons{justify-content:center}
  .cards,.menu{grid-template-columns:1fr}
  .sauces{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:520px){
  header{padding:0 5%}
  .hero,.section,.about{padding-left:5%;padding-right:5%}
  .hero h1{font-size:44px}
  .card img{height:230px}
  .sauces{grid-template-columns:1fr}
}
