:root{
  --bg:#070707;
  --bg2:#111111;
  --panel:#151515;
  --card:#191919;
  --line:rgba(255,255,255,.12);
  --text:#ffffff;
  --muted:#d6d6d6;
  --orange:#ff5800;
  --orange2:#ff7a2f;
  --green:#25d366;
  --shadow:0 28px 90px rgba(0,0,0,.50);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 8% 0%,rgba(255,88,0,.18),transparent 28%),
    radial-gradient(circle at 92% 8%,rgba(255,255,255,.08),transparent 28%),
    linear-gradient(180deg,#080808 0%,#111111 44%,#050505 100%);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font-family:inherit;
}

.top{
  position:sticky;
  top:0;
  z-index:70;
  min-height:74px;
  padding:calc(12px + env(safe-area-inset-top)) 16px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:rgba(6,6,6,.86);
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(20px);
}

.brand{
  display:flex;
  align-items:center;
  gap:11px;
  font-weight:950;
  min-width:0;
}

.brand-mark{
  width:44px;
  height:44px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle,rgba(255,88,0,.28),transparent 42%),
    #0c0c0c;
  border:2px solid rgba(255,88,0,.85);
  box-shadow:0 16px 42px rgba(255,88,0,.34);
}

.brand span{
  font-size:22px;
  letter-spacing:-.7px;
  white-space:nowrap;
}

.brand b{
  color:var(--orange);
}

.nav{
  display:flex;
  align-items:center;
  gap:16px;
  font-size:13px;
  font-weight:900;
}

.nav a{
  color:#eeeeee;
}

.nav .login{
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}

.wrap{
  width:min(1220px,calc(100% - 28px));
  margin:auto;
}

.hero{
  min-height:650px;
  margin:18px auto 18px;
  padding:34px;
  border-radius:38px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(0,0,0,.92) 0%,rgba(0,0,0,.62) 45%,rgba(0,0,0,.82) 100%),
    radial-gradient(circle at 78% 22%,rgba(255,88,0,.26),transparent 26%),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2000&q=85") center/cover no-repeat;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.10);
}

.hero:before{
  content:"360°";
  position:absolute;
  right:12%;
  top:18%;
  width:170px;
  height:170px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#ffd6c4;
  font-size:38px;
  font-weight:950;
  letter-spacing:-1.5px;
  background:radial-gradient(circle,rgba(255,88,0,.25),rgba(255,88,0,.06),transparent 68%);
  border:1px solid rgba(255,88,0,.40);
  box-shadow:0 0 70px rgba(255,88,0,.36);
  z-index:1;
}

.hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 18%,rgba(255,88,0,.21),transparent 28%),
    linear-gradient(180deg,transparent,rgba(0,0,0,.64));
  pointer-events:none;
}

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

.kicker{
  display:inline-flex;
  align-items:center;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.7px;
}

.hero h1{
  margin:15px 0 10px;
  font-size:clamp(46px,8vw,92px);
  line-height:.86;
  letter-spacing:-3.6px;
}

.hero h1 span{
  color:var(--orange);
}

.hero p{
  max-width:760px;
  color:#ededed;
  font-size:clamp(16px,3vw,22px);
  line-height:1.45;
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.btn{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:17px;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#fff!important;
  font-weight:950;
  box-shadow:0 16px 38px rgba(255,88,0,.25);
  border:0;
}

.btn.secondary{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.15);
  box-shadow:none;
}

.section{
  padding:10px 0 14px;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:12px;
}

.section h2{
  margin:0;
  font-size:22px;
  letter-spacing:-.8px;
}

.section p{
  margin:0;
  color:#aaa;
  line-height:1.45;
}

.app-row{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.app-row.two{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.app-card{
  min-height:116px;
  border-radius:22px;
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  background:
    linear-gradient(90deg,rgba(0,0,0,.82),rgba(0,0,0,.42)),
    #171717;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 36px rgba(0,0,0,.28);
  transition:transform .18s ease,border-color .18s ease,filter .18s ease;
}

.app-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,88,0,.52);
  filter:brightness(1.05);
}

.app-card:after{
  content:"→";
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(0,0,0,.46);
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  font-weight:950;
}

.app-icon{
  width:58px;
  height:58px;
  flex:0 0 58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:26px;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  box-shadow:0 14px 32px rgba(255,88,0,.22);
  position:relative;
  z-index:2;
}

.app-text{
  position:relative;
  z-index:2;
  padding-right:34px;
}

.app-text h3{
  margin:0 0 5px;
  font-size:19px;
  letter-spacing:-.6px;
}

.app-text p{
  margin:0;
  color:#d7d7d7;
  font-size:13px;
  line-height:1.35;
}

.hub{
  background:
    linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.35)),
    url("https://images.unsplash.com/photo-1515169067865-5387ec356754?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.leads{
  background:
    linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.35)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.prospector{
  background:
    linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.35)),
    radial-gradient(circle at 70% 50%,rgba(124,58,237,.38),transparent 36%),
    #15101f;
}

.local{
  background:
    linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.35)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.encontros{
  background:
    linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.35)),
    url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.logistica{
  background:
    linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.35)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.analytics{
  background:
    linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.35)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.integracoes{
  background:
    linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.35)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}

.footer{
  margin-top:26px;
  padding:30px 0 90px;
  border-top:1px solid rgba(255,255,255,.10);
  color:#999;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:18px;
}

.footer h3{
  margin:0 0 8px;
  color:#fff;
}

.footer a,
.footer p{
  display:block;
  color:#aaa;
  margin:0 0 7px;
  font-size:13px;
}

@media(max-width:1040px){
  .app-row{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:720px){
  body{
    padding-bottom:20px;
  }

  .nav a:not(.login){
    display:none;
  }

  .hero{
    min-height:580px;
    padding:22px;
    border-radius:28px;
  }

  .hero:before{
    right:6%;
    top:10%;
    width:120px;
    height:120px;
    font-size:28px;
  }

  .hero h1{
    letter-spacing:-2.4px;
  }

  .app-row,
  .app-row.two,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .actions .btn{
    width:100%;
  }
}
