:root{
  --bg: #0b1020;
  --paper: #0f1730;
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --brand: #2c3ea8;
  --brand2: #62b240;
  --accent: #ffd400;
  --danger: #d83b3b;

  --shadow: 0 18px 48px rgba(0,0,0,.35);
  --radius: 20px;
  --radius2: 28px;
  --container: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: radial-gradient(1200px 900px at 20% 0%, rgba(44,62,168,.30), transparent 55%),
              radial-gradient(900px 700px at 90% 20%, rgba(98,178,64,.22), transparent 55%),
              radial-gradient(700px 600px at 40% 100%, rgba(255,212,0,.12), transparent 60%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:-999px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip:focus{ left:16px; top:16px; }

/* Topbar */
.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10,14,30,.62);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 10px 0;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-weight: 700;
  font-size: 13px;
}
.topbar__right{ display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end; }
.toplink{
  font-size: 13px;
  color: var(--muted);
}
.toplink:hover{ color: var(--text); }

/* Header */
.header{
  position: sticky;
  top: 44px;
  z-index: 40;
  background: rgba(11,16,32,.64);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand__logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.brand__name{ font-weight: 900; letter-spacing: .2px; font-size: 16px; }
.brand__tag{ font-size: 12px; color: var(--muted); }

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav a{
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.nav a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.navbtn{
  display:none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  cursor:pointer;
}
.navbtn span{
  display:block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.92);
  margin: 6px auto;
  border-radius: 99px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .2px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  transition: transform .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); }
.btn:active{ transform: translateY(0); }
.btn--primary{
  border-color: rgba(44,62,168,.6);
  background: linear-gradient(135deg, rgba(44,62,168,.95), rgba(98,178,64,.55));
}
.btn--primary:hover{ background: linear-gradient(135deg, rgba(44,62,168,1), rgba(98,178,64,.72)); }
.btn--ghost{
  background: rgba(255,255,255,.04);
}

/* Hero */
.hero{
  position: relative;
  padding: 44px 0 30px;
  overflow: hidden;
}
.hero__bg{
  position:absolute; inset:-1px;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(44,62,168,.35), transparent 60%),
    radial-gradient(900px 600px at 80% 0%, rgba(98,178,64,.22), transparent 60%),
    radial-gradient(800px 700px at 50% 100%, rgba(255,212,0,.12), transparent 70%);
  pointer-events:none;
  opacity: .85;
}
.hero__inner{
  position: relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
h1{ font-size: clamp(32px, 4vw, 52px); margin: 0 0 12px; line-height: 1.05; }
.lead{ color: var(--muted); font-size: 16px; margin: 0 0 18px; max-width: 56ch; }

.hero__cta{ display:flex; gap: 12px; flex-wrap: wrap; margin: 14px 0 18px; }
.hero__badges{ display:flex; gap: 12px; flex-wrap: wrap; }
.badge{
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  min-width: 150px;
}
.badge__kpi{ font-size: 22px; font-weight: 1000; }
.badge__label{ font-size: 13px; color: var(--muted); font-weight: 700; }

.card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  padding: 18px;
}
.hero__card{ padding: 10px; }
.hero__card img{ border-radius: 22px; aspect-ratio: 16/10; object-fit: cover; }

.hero__note{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.dot{
  width: 10px; height: 10px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,212,0,.12);
}

/* Sections */
.section{ padding: 56px 0; }
.section--soft{
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent);
  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 8px;
  font-size: clamp(22px, 2.6vw, 34px);
}
.section__head p{ margin: 0; color: var(--muted); max-width: 70ch; }

.grid{
  display:grid;
  gap: 14px;
}
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.card h3{ margin: 0 0 8px; }
.card p{ margin: 0; color: var(--muted); }
.card--accent{
  background: linear-gradient(135deg, rgba(44,62,168,.22), rgba(98,178,64,.18));
  border-color: rgba(98,178,64,.35);
}
.stack{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

/* Split layout */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.split--top{ align-items: start; }

.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 650;
}
.list li{ margin: 6px 0; }

.video iframe{
  width: 100%;
  height: min(320px, 52vw);
  border: 0;
  border-radius: 22px;
  background: rgba(0,0,0,.25);
}
.hint{
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}
.hint a{ text-decoration: underline; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.gallery__item{
  padding: 0;
  border: 0;
  cursor: pointer;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 14px 35px rgba(0,0,0,.25);
  transition: transform .18s ease;
}
.gallery__item:hover{ transform: translateY(-2px); }
.gallery__item img{
  width:100%;
  height:100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.gallery__item:nth-child(1){ grid-column: span 6; }
.gallery__item:nth-child(2){ grid-column: span 3; }
.gallery__item:nth-child(3){ grid-column: span 3; }
.gallery__item:nth-child(4){ grid-column: span 4; }
.gallery__item:nth-child(5){ grid-column: span 4; }
.gallery__item:nth-child(6){ grid-column: span 4; }
.gallery__item:nth-child(7){ grid-column: span 3; }
.gallery__item:nth-child(8){ grid-column: span 3; }
.gallery__item:nth-child(9){ grid-column: span 6; }

.gallery__note{
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

/* Embeds */
.embed{
  margin: 14px 0;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
.embed iframe{ width:100%; }

.igbox{
  display:flex; align-items:center; gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  margin: 14px 0 18px;
}
.igbox__icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(255,212,0,.22), rgba(44,62,168,.22));
  border: 1px solid rgba(255,255,255,.12);
}
.igbox__title{ font-weight: 950; }
.igbox__sub{ font-size: 13px; color: var(--muted); font-weight: 650; }

/* Form */
.form{ display:grid; gap: 12px; }
label{ display:grid; gap: 6px; font-weight: 850; }
input, textarea, select{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline: none;
}
input::placeholder, textarea::placeholder{ color: rgba(255,255,255,.45); }
input:focus, textarea:focus, select:focus{
  border-color: rgba(98,178,64,.55);
  box-shadow: 0 0 0 4px rgba(98,178,64,.14);
}
.form__actions{ display:flex; gap: 10px; flex-wrap:wrap; align-items:center; margin-top: 6px; }
.small{ font-size: 13px; }
.muted{ color: var(--muted); }

/* Map */
.map{
  margin-top: 12px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
.map iframe{ width:100%; height: 320px; border:0; }

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 100;
}
.lightbox.is-open{ display:flex; }
.lightbox__img{
  max-width: min(1100px, 94vw);
  max-height: 84vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}
.lightbox__close{
  position:absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 18px;
  cursor:pointer;
}

/* WhatsApp floating */
.wafloat{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(20,34,26,.86);
  border: 1px solid rgba(98,178,64,.55);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  font-weight: 950;
}
.wafloat svg{ width: 22px; height: 22px; fill: #76ff6f; }
.wafloat:hover{ transform: translateY(-1px); }
.wafloat span{ font-size: 14px; }

/* Footer */
.footer{
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.18);
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
.footer__links{ display:flex; gap: 14px; flex-wrap:wrap; }
.footer__links a{ color: var(--muted); font-weight: 800; }
.footer__links a:hover{ color: var(--text); text-decoration: underline; }
.footer__bottom{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 14px;
}

/* Reveal */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr 1fr; }
  .split{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(6, 1fr); }
  .gallery__item:nth-child(1){ grid-column: span 6; }
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3){ grid-column: span 3; }
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(6){ grid-column: span 2; }
  .gallery__item:nth-child(7),
  .gallery__item:nth-child(8){ grid-column: span 3; }
  .gallery__item:nth-child(9){ grid-column: span 6; }
}
@media (max-width: 720px){
  .topbar__inner{ flex-direction: column; align-items:flex-start; }
  .header{ top: 70px; }
  .navbtn{ display:block; }
  .nav{
    position: fixed;
    inset: 120px 16px auto 16px;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(11,16,32,.92);
    box-shadow: 0 24px 80px rgba(0,0,0,.55);
    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .nav.is-open{ display:flex; }
  .nav a{ padding: 12px 12px; }
  .grid--3{ grid-template-columns: 1fr; }
  .wafloat span{ display:none; }
}
