:root{
  --yellow:#FFD200;
  --black:#0b0b0b;
  --white:#ffffff;
  --muted:rgba(255,255,255,.72);
  --card:rgba(0,0,0,.74);
  --shadow: 0 18px 45px rgba(0,0,0,.35);
  --r: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--white);
  background:var(--black);
}

a{color:inherit;text-decoration:none}
.container{width:min(1120px,92%);margin:0 auto}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(11,11,11,.70);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex;gap:12px;align-items:center}
.brand__mark{
  width:44px;height:44px;border-radius:12px;
  background:var(--yellow); color:var(--black);
  display:grid;place-items:center;
  font-weight:800;
}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{font-size:12px; color:var(--muted)}

.nav{display:flex;gap:18px;align-items:center}
.nav a{font-weight:700; color:rgba(255,255,255,.92)}
.nav a:hover{color:var(--yellow)}
.nav__toggle{
  display:none; background:transparent; border:0; cursor:pointer;
  width:42px;height:42px;border-radius:12px;
}
.nav__toggle span{display:block;height:2px;background:#fff;margin:6px 8px;border-radius:2px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.14);
  transition:transform .08s ease, filter .2s ease, border-color .2s ease, background .2s ease;
}
.btn:active{transform:scale(.98)}
.btn--dark{background:var(--yellow); color:var(--black); border-color:transparent}
.btn--dark:hover{filter:brightness(.95)}
.btn--outline{background:transparent}
.btn--outline:hover{border-color:rgba(255,210,0,.8); color:var(--yellow)}
.btn--whatsapp{background:#25D366;color:#071b0f;border-color:transparent}

.pill{
  display:inline-block;
  padding:8px 12px; border-radius:999px;
  background:rgba(255,210,0,.15);
  border:1px solid rgba(255,210,0,.25);
  color:rgba(255,255,255,.92);
  font-weight:700; font-size:13px;
}

.hero{
  position:relative;
  padding:54px 0 34px;
  overflow:hidden;
}
.hero__media{
  position:absolute; inset:0; z-index:-2;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05) contrast(1.05);
  transform:scale(1.03);
}
.hero::after{
  content:"";
  position:absolute; inset:0; z-index:-1;
  background:linear-gradient(90deg, rgba(11,11,11,.92) 0%, rgba(11,11,11,.75) 55%, rgba(11,11,11,.92) 100%);
}
.hero__grid{display:grid; grid-template-columns: 1.35fr .9fr; gap:28px; align-items:stretch}
.hero__content h1{font-size:44px; line-height:1.08; margin:12px 0}
.lead{color:rgba(255,255,255,.86); font-size:16px; line-height:1.65; max-width:60ch}
.hero__cta{display:flex; gap:12px; margin:18px 0 16px; flex-wrap:wrap}
.hero__stats{display:flex; gap:12px; flex-wrap:wrap}
.stat{display:flex; gap:10px; align-items:center; padding:10px 12px; border-radius:14px;
  border:1px solid rgba(255,255,255,.1); background:rgba(255,255,255,.03)}
.stat__num{font-weight:900; color:var(--yellow)}
.stat__txt{color:rgba(255,255,255,.86); font-weight:700; font-size:13px}

.card{
  background:var(--card);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:18px;
}
.divider{height:1px;background:rgba(255,255,255,.12);margin:14px 0}
.quick{display:flex; gap:10px; flex-wrap:wrap}
.hint{color:rgba(255,255,255,.68); font-size:12px; margin:10px 0 0}
code{background:rgba(255,255,255,.08); padding:2px 6px; border-radius:8px}

.section{padding:54px 0}
.section--alt{background:rgba(255,255,255,.03); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06)}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 6px; font-size:30px}
.section__head p{margin:0; color:rgba(255,255,255,.78)}
.section__cta{margin-top:18px; display:flex; gap:12px; flex-wrap:wrap}

.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
.service{
  padding:18px; border-radius:var(--r);
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.10);
}
.service h3{margin:0 0 8px}
.service p{margin:0 0 10px; color:rgba(255,255,255,.78)}
.service ul{margin:0; padding-left:18px; color:rgba(255,255,255,.86)}
.service li{margin:6px 0}

.checklist{margin:10px 0 0; padding-left:0; list-style:none}
.checklist li{margin:10px 0; padding-left:26px; position:relative; color:rgba(255,255,255,.88)}
.checklist li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color:var(--yellow);
  font-weight:900;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.gitem{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  position:relative;
}
.gitem img{width:100%; height:220px; object-fit:cover; display:block}
.gitem .cap{
  position:absolute; left:10px; bottom:10px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  background:rgba(0,0,0,.65);
  border:1px solid rgba(255,255,255,.14);
}

.about{display:grid; grid-template-columns:1.2fr .8fr; gap:14px; align-items:start}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.badge{
  padding:8px 10px; border-radius:999px;
  background:rgba(255,210,0,.15);
  border:1px solid rgba(255,210,0,.25);
  font-weight:800; font-size:12px;
}

.pagehead{
  padding:44px 0 10px;
  background:radial-gradient(900px 320px at 30% 0%, rgba(255,210,0,.20), transparent 60%);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.pagehead h1{margin:0 0 8px; font-size:40px}

.contact{display:grid; grid-template-columns:1fr 1fr; gap:14px; align-items:start}
.contact__cards{display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:12px}
.mini{
  padding:14px; border-radius:18px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(0,0,0,.55);
}
.mini__k{font-size:12px; color:rgba(255,255,255,.65); font-weight:800}
.mini__v{margin-top:6px; font-weight:900}

.form{
  display:grid; gap:10px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--r);
  padding:18px;
}
label{display:grid; gap:6px; font-weight:800; font-size:13px}
input, textarea{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
  padding:12px 12px;
  outline:none;
}
input:focus, textarea:focus{border-color:rgba(255,210,0,.6)}

.footer{padding:18px 0; border-top:1px solid rgba(255,255,255,.08)}
.footer__inner{display:flex; justify-content:space-between; align-items:center; color:rgba(255,255,255,.75); font-weight:700}
.footer__links{display:flex; gap:12px}
.footer__links a:hover{color:var(--yellow)}

/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  display:none;
  align-items:center; justify-content:center;
  padding:18px;
  background:rgba(0,0,0,.82);
  z-index:1000;
}
.lightbox.is-open{display:flex}
.lightbox__panel{
  width:min(1100px, 96vw);
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:#000;
  position:relative;
}
.lightbox__img{width:100%; height:auto; display:block}
.lightbox__bar{
  position:absolute; top:10px; left:10px; right:10px;
  display:flex; justify-content:space-between; gap:10px; align-items:center;
}
.lbbtn{
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-weight:900;
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
}
.lbbtn:hover{border-color:rgba(255,210,0,.6); color:var(--yellow)}

/* Responsive */
@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr}
  .about{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .contact__cards{grid-template-columns:1fr}
  .hero__content h1{font-size:36px}
  .nav{display:none}
  .nav__toggle{display:block}
  .nav.is-open{
    display:flex; position:absolute; right:4%; top:68px;
    flex-direction:column; gap:10px;
    background:rgba(0,0,0,.92);
    padding:14px; border-radius:18px;
    border:1px solid rgba(255,255,255,.12);
  }
}


/* Logo image inside brand mark */
.brand__mark img{width:42px;height:42px;object-fit:contain;display:block;}
