:root{
  --bg:#080808;
  --bg2:#121212;
  --panel:#171717;
  --card:#1d1d1d;
  --line:rgba(255,255,255,.12);
  --text:#ffffff;
  --muted:#d7d7d7;
  --orange:#ff5800;
  --orange2:#ff7a2f;
  --green:#25d366;
  --blue:#3b82f6;
  --yellow:#f59e0b;
  --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 10% 0%,rgba(255,88,0,.16),transparent 28%),
    radial-gradient(circle at 90% 8%,rgba(255,255,255,.07),transparent 24%),
    linear-gradient(180deg,#080808 0%,#111111 44%,#050505 100%);
  color:#fff;
  font-family:Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit;text-decoration:none}
.wrap{width:min(1220px,calc(100% - 28px));margin:auto}

.top{
  position:sticky;
  top:0;
  z-index:80;
  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:14px;
  font-size:13px;
  font-weight:900;
}

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

.hero{
  min-height:640px;
  margin:18px auto;
  padding:34px;
  border-radius:38px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  background:
    linear-gradient(90deg,rgba(0,0,0,.92),rgba(0,0,0,.54),rgba(0,0,0,.84)),
    radial-gradient(circle at 82% 14%,rgba(255,88,0,.24),transparent 30%),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?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:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 20%,rgba(255,88,0,.20),transparent 28%),
    linear-gradient(180deg,transparent,rgba(0,0,0,.70));
  pointer-events:none;
}

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

.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(44px,8vw,90px);
  line-height:.86;
  letter-spacing:-3.5px;
}

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

.hero p{
  max-width:780px;
  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:14px 0 10px;
}

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

.section-title{
  margin:0;
  font-size:34px;
  letter-spacing:-1.2px;
  line-height:1;
}

.section-sub{
  margin:6px 0 0;
  color:#aaa;
  line-height:1.45;
}

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

.grid.three{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}

.card{
  padding:18px;
  border-radius:28px;
  background:
    radial-gradient(circle at top right,rgba(255,255,255,.08),transparent 32%),
    rgba(23,23,23,.96);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 38px rgba(0,0,0,.28);
  transition:transform .18s ease,border-color .18s ease,filter .18s ease;
}

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

.logo-wrap{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  margin-bottom:12px;
}

.logo-box{
  width:58px;
  height:58px;
  border-radius:18px;
  background:#fff;
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,0,0,.25);
  flex:0 0 58px;
}

.logo-box img{
  width:70%;
  height:70%;
  object-fit:contain;
}

.logo-fallback{
  display:none;
  width:58px;
  height:58px;
  border-radius:18px;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:950;
  color:#fff;
  background:linear-gradient(135deg,#ff5800,#ff7a2f);
  box-shadow:0 10px 28px rgba(255,88,0,.25);
  flex:0 0 58px;
}

.badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.badge.prioridade{
  color:#ffe8da;
  background:rgba(255,88,0,.16);
  border:1px solid rgba(255,88,0,.34);
}
.badge.planejado{
  color:#e6f0ff;
  background:rgba(59,130,246,.14);
  border:1px solid rgba(59,130,246,.32);
}
.badge.embreve{
  color:#fff2cc;
  background:rgba(245,158,11,.14);
  border:1px solid rgba(245,158,11,.30);
}

.card h3{
  margin:10px 0 8px;
  font-size:22px;
  letter-spacing:-.6px;
  line-height:1;
}

.card p{
  margin:0;
  color:#d8d8d8;
  line-height:1.45;
  font-size:14px;
}

.banner{
  margin:22px 0;
  padding:24px;
  border-radius:30px;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:16px;
  align-items:center;
  background:
    linear-gradient(135deg,rgba(255,88,0,.98),rgba(255,122,47,.84)),
    url("https://images.unsplash.com/photo-1556740738-b6a63e27c4df?auto=format&fit=crop&w=1600&q=85") center/cover no-repeat;
  background-blend-mode:multiply;
  box-shadow:0 24px 70px rgba(255,88,0,.22);
}

.banner h2{
  margin:0 0 8px;
  font-size:clamp(30px,5vw,48px);
  line-height:.98;
  letter-spacing:-1.5px;
}

.banner p{
  margin:0;
  color:#fff4ee;
  line-height:1.45;
}

.banner a{
  justify-self:end;
}

.footer{
  margin-top:28px;
  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){
  .grid,
  .grid.three{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:720px){
  .nav a:not(.login){display:none}
  .hero{
    min-height:560px;
    padding:22px;
    border-radius:28px;
  }
  .hero h1{letter-spacing:-2.4px}
  .grid,
  .grid.three,
  .grid.two,
  .footer-grid,
  .banner{
    grid-template-columns:1fr;
  }
  .banner a{
    justify-self:stretch;
  }
  .actions .btn{
    width:100%;
  }
}
