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

body{
  font-family:'Poppins',sans-serif;
  background:white;
  color:#222;
}

.navbar{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 70px;
  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(8px);
  z-index:1000;
}

.logo{
  display:flex;
  align-items:center;
  gap:15px;
  color:white;
}

.logo-circle{
  width:52px;
  height:52px;
  border-radius:50%;
  background:linear-gradient(135deg,#d4af37,#0f5132);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

.logo h2{
  letter-spacing:2px;
}

.logo p{
  color:#d4af37;
  font-size:12px;
  letter-spacing:5px;
}

nav a{
  color:white;
  text-decoration:none;
  margin-left:28px;
  font-weight:500;
}

.hero{
  height:100vh;
  background:url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?q=80&w=1800&auto=format&fit=crop') center/cover;
  position:relative;
  display:flex;
  align-items:center;
  padding:0 90px;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:760px;
  color:white;
}

.badge{
  display:inline-block;
  padding:12px 20px;
  border:1px solid rgba(255,255,255,0.3);
  border-radius:40px;
  margin-bottom:28px;
}

.hero h1{
  font-size:78px;
  line-height:1.1;
  margin-bottom:25px;
}

.hero p{
  font-size:20px;
  line-height:1.9;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.btn{
  padding:18px 32px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
}

.gold{
  background:#d4af37;
  color:black;
}

.transparent{
  border:1px solid rgba(255,255,255,0.5);
  color:white;
}

.section{
  padding:120px 25px;
}

.container{
  max-width:1200px;
  margin:auto;
}

.small-title{
  color:#0f5132;
  font-size:14px;
  letter-spacing:5px;
  font-weight:600;
}

.center{
  text-align:center;
  display:block;
}

.about-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:60px;
  align-items:center;
}

.about h2,
.products h2,
.contact h2{
  font-size:52px;
  margin:20px 0 30px;
}

.about p{
  font-size:18px;
  line-height:1.9;
  margin-bottom:20px;
}

.about-card{
  background:#0f5132;
  color:white;
  padding:50px;
  border-radius:30px;
  text-align:center;
}

.about-card h3{
  font-size:70px;
  color:#d4af37;
}

.products{
  background:#f8f7f2;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:60px;
}

.card{
  background:white;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px);
}

.card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.card h3{
  padding:25px;
}

.services{
  background:#0f5132;
}

.white{
  color:white;
}

.gold-text{
  color:#d4af37;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:60px;
}

.service-card{
  background:rgba(255,255,255,0.08);
  color:white;
  padding:40px;
  border-radius:25px;
  backdrop-filter:blur(8px);
}

.service-card h3{
  margin-bottom:15px;
}

.contact-box{
  max-width:700px;
  margin:50px auto 0;
  background:white;
  padding:50px;
  border-radius:30px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.contact-box p{
  margin-bottom:15px;
  font-size:18px;
}

footer{
  background:black;
  color:white;
  text-align:center;
  padding:35px;
}

.whatsapp{
  position:fixed;
  right:25px;
  bottom:25px;
  width:65px;
  height:65px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:white;
  font-size:28px;
}

@media(max-width:768px){

.navbar{
  flex-direction:column;
  gap:15px;
  padding:20px;
}

nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}

.hero{
  padding:0 25px;
}

.hero h1{
  font-size:48px;
}

.hero p{
  font-size:16px;
}

.about-grid{
  grid-template-columns:1fr;
}

.about h2,
.products h2,
.contact h2{
  font-size:38px;
}

.hero-buttons{
  flex-direction:column;
}

}
