:root{
  --green:#2F6119;
  --wa:#25D366;
  --bg:#fff;
  --soft:#F5F5F5;
  --text:#1A1A1A;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:"Segoe UI",Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

/* NAVBAR */
.navbar{
  height:72px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 24px;
  background:#fff;
  border-bottom:1px solid #ddd;
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(6px);
}
.nav-logo{height:58px}

/* HERO */
.hero{
  position:relative;
  height:430px;
  background:url("assets/hero/hero.jpg") center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.6);
}
.hero-content{
  position:relative;
  z-index:2;
  padding:0 16px;
}
.hero-content h1,
.hero-content p,
.hero-content .cta-hero{
  opacity:0;
  transform:translateY(30px);
  animation:heroFade .9s ease forwards;
}
.hero-content p{animation-delay:.2s}
.hero-content .cta-hero{animation-delay:.4s}

@keyframes heroFade{
  to{opacity:1;transform:none}
}

.tagline{font-size:20px}
.base{font-size:14px;max-width:560px;margin:auto}

/* BUTTON */
.btn{
  display:inline-block;
  padding:14px 26px;
  border-radius:10px;
  text-decoration:none;
  color:#fff;
  font-weight:700;
  transition:.3s;
}
.btn-wa{
  background:var(--wa);
}
.btn-big{
  font-size:16px;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,.2);
}

/* TRUST */
.trust{
  padding:16px;
  text-align:center;
  background:#f8f8f8;
  font-weight:600;
}

/* SECTIONS */
section{padding:38px 20px}
h2{text-align:center;margin-bottom:20px}

/* CARDS */
.cards{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
}
.card{
  background:var(--soft);
  padding:18px 22px;
  border-radius:14px;
  min-width:200px;
  text-align:center;
  transition:.35s;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px rgba(0,0,0,.15);
}
.card.small{min-width:150px}

.note{
  text-align:center;
  margin-top:14px;
  opacity:.8;
}

/* GALLERY */
.gallery-slider{overflow:hidden}
.gallery-track{
  display:flex;
  gap:18px;
  animation:slide 45s linear infinite;
}
.gallery-track:hover{animation-play-state:paused}
.gallery-track img{
  width:340px;
  height:230px;
  object-fit:cover;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  cursor:pointer;
}
@keyframes slide{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* FOOTER */
footer{
  text-align:center;
  padding:24px;
  background:var(--soft);
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}
.lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:14px;
}
.lightbox-close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
}
