*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:Arial, sans-serif;
  background:#0f0f0f;
  color:#fff;
  line-height:1.6;
}

header{
  background:rgba(0,0,0,0.9);
  padding:15px 0;
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
}

.container{
  width:90%;
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:22px;
  font-weight:bold;
}

nav{
  display:flex;
  gap:20px;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:500;
}

nav a:hover{
  color:#9eff00;
}

.menu-toggle{
  display:none;
  font-size:26px;
  background:none;
  border:none;
  color:white;
}

/* HERO */
.hero{
  height:80vh;
  background:url("https://images.unsplash.com/photo-1558611848-73f7eb4001ab") center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-overlay{
  background:rgba(0,0,0,0.6);
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.hero h2{
  font-size:40px;
  margin-bottom:20px;
}

.hero p{
  color:#ccc;
  margin-bottom:30px;
}

.btn-primary{
  background:#9eff00;
  color:black;
  padding:14px 28px;
  text-decoration:none;
  font-weight:bold;
  border-radius:6px;
  transition:.3s;
}

.btn-primary:hover{
  background:#7acc00;
}

.section{
  padding:80px 20px;
  text-align:center;
}

.section h2{
  margin-bottom:30px;
  font-size:32px;
}

.dark{
  background:#1a1a1a;
}

.cards{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.card{
  background:#222;
  padding:25px;
  width:280px;
  border-radius:8px;
  transition:.3s;
}

.card:hover{
  transform:translateY(-5px);
}

.whatsapp{
  position:fixed;
  width:60px;
  height:60px;
  bottom:25px;
  right:25px;
  background:#25d366;
  color:white;
  border-radius:50%;
  text-align:center;
  font-size:30px;
  line-height:60px;
  box-shadow:0 4px 10px rgba(0,0,0,0.4);
  animation:pulse 1.5s infinite;
  text-decoration:none;
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,0.6);}
  70%{box-shadow:0 0 0 15px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

.fade{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

.fade.show{
  opacity:1;
  transform:translateY(0);
}

/* MAP */
iframe{
  border-radius:10px;
  margin-top:20px;
}

/* BLOG */
.blog-list {
  display:flex;
  flex-direction:column;
  gap:30px;
  align-items:center;
}

.blog-card{
  background:#222;
  padding:25px;
  border-radius:8px;
  width:90%;
  max-width:700px;
  text-align:left;
}

.blog-card h3{
  margin-bottom:12px;
}

.blog-card p{
  color:#ccc;
}

/* MOBILE */
@media(max-width:768px){
  nav{
    display:none;
    flex-direction:column;
    background:#111;
    position:absolute;
    top:60px;
    right:20px;
    padding:20px;
    border-radius:8px;
  }

  nav.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .hero h2{
    font-size:30px;
  }
}
