@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

:root{
  --red:#e50909;
  --red-dark:#b80707;
  --dark:#171717;
  --cream:#fff8f7;
  --line:#ead9d7;
  --muted:#666;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:"DM Sans",Arial,sans-serif;
  color:var(--dark);
  background:#fff;
  line-height:1.55;
}

a{transition:.2s ease}

.topbar{
  background:var(--red-dark);
  color:#fff;
  display:flex;
  justify-content:center;
  gap:42px;
  padding:9px 18px;
  font-size:13px;
}

.topbar a{
  color:#fff;
  text-decoration:none;
}

.topbar a:hover{opacity:.8}

.header{
  height:82px;
  display:flex;
  align-items:center;
  gap:32px;
  padding:0 5.5%;
  background:#fff;
  position:sticky;
  top:0;
  z-index:20;
  box-shadow:0 2px 20px #0000000d;
}

.brand img{
  width:76px;
  height:76px;
  object-fit:contain;
}

.header nav{
  display:flex;
  gap:26px;
  align-items:center;
  margin-left:auto;
}

.header nav a{
  color:#222;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}

.header nav a:hover,
.header nav a.active{
  color:var(--red);
}

.nav-order,
.btn,
.order,
.big-whatsapp{
  background:var(--red);
  color:#fff !important;
  text-decoration:none;
  border-radius:9px;
  font-weight:700;
}

.nav-order{
  padding:12px 20px;
}

.menu-btn{
  display:none;
  border:0;
  background:none;
  font-size:25px;
  cursor:pointer;
}

.hero{
  min-height:650px;
  background:linear-gradient(110deg,#d90808 0%,#ef1111 58%,#c70707 100%);
  color:#fff;
  display:flex;
  padding:78px 8%;
  position:relative;
  overflow:hidden;
}

.hero:after{
  content:"";
  position:absolute;
  right:-150px;
  bottom:-180px;
  width:560px;
  height:560px;
  border:100px solid #ffffff12;
  border-radius:50%;
}

.hero-copy{
  width:54%;
  position:relative;
  z-index:2;
}

.pill{
  display:inline-block;
  border:1px solid #ffffff70;
  padding:7px 13px;
  border-radius:30px;
  font-size:12px;
  letter-spacing:1.3px;
  font-weight:700;
}

.hero h1,
.section h2{
  font-family:Montserrat,Arial,sans-serif;
  line-height:1.08;
}

.hero h1{
  font-size:56px;
  margin:22px 0 18px;
}

.hero h1 span{color:#fff}

.hero p{
  font-size:18px;
  max-width:620px;
  color:#ffeaea;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin:28px 0;
}

.btn{
  display:inline-block;
  padding:13px 22px;
}

.btn.white{
  background:#fff;
  color:var(--red) !important;
}

.btn.outline{
  border:1px solid #fff;
  background:transparent;
}

.btn.red{margin-top:18px}

.hero-stats{
  display:flex;
  gap:0;
  margin-top:36px;
}

.hero-stats div{
  padding:0 28px;
  border-left:1px solid #ffffff55;
}

.hero-stats div:first-child{
  padding-left:0;
  border:0;
}

.hero-stats b{
  display:block;
  font-size:21px;
}

.hero-stats small{color:#ffdede}

.hero-product{
  width:46%;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.ring{
  position:absolute;
  width:450px;
  height:450px;
  border-radius:50%;
  background:#ffffff12;
  border:1px solid #fff3;
}

.hero-product>img{
  width:350px;
  position:relative;
  z-index:2;
  filter:drop-shadow(0 25px 30px #58000088);
}

.mini-product{
  position:absolute;
  right:5%;
  bottom:25px;
  z-index:3;
}

.mini-product img{
  width:180px;
  filter:drop-shadow(0 18px 20px #58000088);
}

.section{
  padding:90px 8%;
}

.section.light{background:var(--cream)}

.section-tag{
  color:var(--red);
  font-size:12px;
  letter-spacing:2px;
  font-weight:800;
  margin-bottom:25px;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
}

.section h2{font-size:45px;margin:0}

.section h2 span{color:var(--red)}

.lead{
  font-size:20px;
  font-weight:600;
}

.feature-list{
  display:grid;
  gap:10px;
  margin:25px 0;
}

.feature-list div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:13px 15px;
}

.feature-list b{
  display:block;
  color:var(--red);
}

.feature-list span{
  display:block;
  color:#777;
  font-size:13px;
}

.note{
  font-size:13px;
  color:#777;
  background:#fff1f0;
  border-left:3px solid var(--red);
  padding:12px 15px;
}

.center-title{text-align:center}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:50px;
}

.steps article{
  background:#fff;
  border:1px solid var(--line);
  padding:27px;
  border-radius:15px;
}

.steps span{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  background:var(--red);
  color:#fff;
  border-radius:50%;
  font-weight:800;
}

.steps h3{margin:18px 0 7px}

.steps p{
  color:var(--muted);
  font-size:14px;
}

.process-banner{
  margin-top:25px;
  background:var(--red);
  color:#fff;
  border-radius:15px;
  padding:20px 25px;
  display:flex;
  justify-content:space-between;
  gap:20px;
}

.process-banner span{
  max-width:650px;
  font-size:14px;
}

.heading-row{align-items:end}

.heading-row p{
  margin:0;
  color:var(--muted);
  max-width:500px;
}

.food-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:40px;
}

.food{
  border:1px solid var(--line);
  padding:19px;
  border-radius:12px;
  background:#fff;
  font-size:16px;
}

.food b{margin-left:8px}

.pricing{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  max-width:950px;
  margin:45px auto 0;
}

.price-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px;
  display:grid;
  grid-template-columns:45% 55%;
  position:relative;
  overflow:hidden;
}

.price-card.featured{
  border:2px solid var(--red);
}

.badge{
  position:absolute;
  top:14px;
  right:14px;
  background:var(--red);
  color:#fff;
  padding:5px 10px;
  border-radius:20px;
  font-size:10px;
  font-weight:800;
}

.product-stage{
  background:#120d0d;
  border-radius:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:310px;
  overflow:hidden;
}

.product-stage img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.price-info{
  padding:25px 12px 20px 25px;
}

.price-info>span{
  font-size:11px;
  color:var(--red);
  font-weight:800;
  letter-spacing:1.5px;
}

.price-info h3{
  font-family:Montserrat;
  margin:8px 0;
}

.price{
  font-family:Montserrat;
  color:var(--red);
  font-size:30px;
}

.price-info p{
  color:var(--muted);
  font-size:14px;
}

.order{
  display:inline-block;
  padding:11px 15px;
  margin-top:10px;
}

.can-showcase{
  display:grid;
  grid-template-columns:38% 62%;
  align-items:center;
  gap:60px;
}

.can-gallery{
  display:flex;
  gap:20px;
  align-items:end;
  justify-content:center;
}

.can-gallery figure{
  margin:0;
  text-align:center;
  font-weight:800;
}

.can-gallery figure:first-child img{height:390px}
.can-gallery figure:last-child img{height:285px}

.can-gallery img{
  width:270px;
  object-fit:cover;
  object-position:center;
  border-radius:16px;
  box-shadow:0 20px 45px #0002;
}

.can-gallery figcaption{
  margin-top:10px;
  color:var(--red);
}

.contact{
  background:var(--red);
  color:#fff;
  text-align:center;
}

.contact .section-tag{color:#ffd5d5}

.contact h2{font-size:52px}

.contact h2 span{color:#fff}

.contact-intro{color:#ffe5e5}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  max-width:1000px;
  margin:35px auto;
}

.contact-grid>div{
  background:#fff;
  color:#222;
  border-radius:14px;
  padding:25px;
  text-align:left;
}

.contact-grid b{font-size:18px}

.contact-grid p{
  margin-bottom:0;
  color:#555;
}

.contact-grid a{
  color:var(--red);
  font-weight:700;
  text-decoration:none;
}

.big-whatsapp{
  display:inline-block;
  background:#fff;
  color:var(--red) !important;
  padding:15px 25px;
  margin-top:10px;
}

footer{
  background:#a90606;
  color:#fff;
  padding:40px 8%;
  display:grid;
  grid-template-columns:80px 1fr 1fr;
  gap:25px;
  align-items:center;
}

footer img{
  width:70px;
  height:70px;
  object-fit:contain;
}

footer p{
  margin:3px 0;
  color:#ffdada;
}

.footer-links{
  display:flex;
  gap:18px;
}

.footer-links a{
  color:#fff;
  text-decoration:none;
}

footer small{
  grid-column:1/-1;
  text-align:center;
  border-top:1px solid #ffffff35;
  padding-top:20px;
}

@media(max-width:900px){
  .topbar{
    gap:10px;
    flex-wrap:wrap;
    font-size:11px;
  }

  .header{
    height:70px;
    padding:0 5%;
  }

  .brand img{
    width:62px;
    height:62px;
  }

  .menu-btn{
    display:block;
    margin-left:auto;
  }

  .header nav{
    display:none;
    position:absolute;
    top:70px;
    left:0;
    right:0;
    background:#fff;
    padding:20px;
    flex-direction:column;
    gap:18px;
    box-shadow:0 10px 20px #0001;
  }

  .header nav.open{display:flex}

  .nav-order{display:none}

  .hero{
    padding:55px 7%;
    display:block;
  }

  .hero-copy{width:100%}

  .hero h1{font-size:42px}

  .hero-product{
    width:100%;
    min-height:400px;
  }

  .ring{
    width:330px;
    height:330px;
  }

  .hero-product>img{width:270px}

  .mini-product{
    right:12%;
    bottom:10px;
  }

  .mini-product img{width:135px}

  .split,.can-showcase{
    grid-template-columns:1fr;
    gap:30px;
  }

  .steps{grid-template-columns:1fr 1fr}

  .food-grid{grid-template-columns:1fr 1fr}

  .pricing{grid-template-columns:1fr}

  .contact-grid{grid-template-columns:1fr}

  footer{grid-template-columns:70px 1fr}

  .footer-links{grid-column:1/-1}

  .section{padding:65px 7%}
}

@media(max-width:520px){
  .hero h1{font-size:34px}

  .hero p{font-size:16px}

  .hero-stats{justify-content:space-between}

  .hero-stats div{padding:0 12px}

  .hero-stats b{font-size:16px}

  .hero-stats small{font-size:10px}

  .steps{grid-template-columns:1fr}

  .food-grid{grid-template-columns:1fr}

  .section h2{font-size:36px}

  .price-card{grid-template-columns:1fr}

  .price-info{padding:20px 5px}

  .product-stage{min-height:300px}

  .can-gallery{gap:7px}

  .can-gallery img{width:47vw}

  .can-gallery figure:first-child img{height:300px}

  .can-gallery figure:last-child img{height:220px}
}
