.rise-int-menu-btn{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
}

.rise-int-menu-btn::before{
  content:"⚡";
  color:#38ef90;
}

.rise-int-overlay{
  position:fixed;
  inset:0;
  z-index:80000;
  background:rgba(1,9,16,.78);
  backdrop-filter:blur(8px);
  display:flex;
  justify-content:flex-end;
}

.rise-int-panel{
  width:min(760px,96vw);
  height:100vh;
  box-sizing:border-box;
  overflow:auto;
  padding:32px;
  background:
    radial-gradient(circle at 100% 0%,rgba(255,183,40,.08),transparent 30%),
    linear-gradient(180deg,#061827,#03111d);
  border-left:1px solid rgba(49,236,137,.30);
  box-shadow:-30px 0 70px rgba(0,0,0,.40);
  color:#eef6f8;
}

.rise-int-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  margin-bottom:28px;
}

.rise-int-kicker{
  color:#43ef97;
  font-size:10px;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:7px;
}

.rise-int-top h2{
  margin:0;
  font-size:30px;
}

.rise-int-top p{
  margin:7px 0 0;
  color:#91a8b7;
}

.rise-int-close{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:#091f30;
  color:#fff;
  font-size:20px;
  cursor:pointer;
}

.rise-int-card{
  border:1px solid rgba(49,236,137,.23);
  border-radius:22px;
  background:rgba(4,23,37,.87);
  padding:24px;
  margin-bottom:20px;
}

.rise-int-provider{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}

.rise-int-provider h3{
  margin:0 0 5px;
  font-size:23px;
}

.rise-int-provider p{
  margin:0;
  color:#91a8b7;
  font-size:13px;
}

.rise-int-badge{
  padding:8px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  background:#102638;
  color:#9dafbb;
  border:1px solid rgba(255,255,255,.10);
}

.rise-int-badge.ok{
  color:#3af092;
  background:rgba(44,232,137,.10);
  border-color:rgba(44,232,137,.30);
}

.rise-int-badge.erro{
  color:#ff6b78;
  background:rgba(255,81,99,.10);
  border-color:rgba(255,81,99,.30);
}

.rise-int-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-bottom:20px;
}

.rise-int-info{
  padding:15px;
  border-radius:14px;
  background:#071b2b;
  border:1px solid rgba(255,255,255,.07);
}

.rise-int-info span{
  display:block;
  color:#7f96a7;
  font-size:11px;
  margin-bottom:5px;
}

.rise-int-info strong{
  display:block;
  color:#f3f7f8;
  font-size:14px;
  overflow-wrap:anywhere;
}

.rise-int-fields{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.rise-int-field label{
  display:block;
  margin-bottom:7px;
  font-size:12px;
  font-weight:800;
  color:#dbe6ec;
}

.rise-int-field input{
  width:100%;
  box-sizing:border-box;
  height:50px;
  border-radius:12px;
  border:1px solid rgba(137,170,191,.25);
  background:#061a2a;
  padding:0 14px;
  color:#fff;
  outline:none;
}

.rise-int-field input:focus{
  border-color:#38eb8f;
  box-shadow:0 0 0 3px rgba(56,235,143,.07);
}

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

.rise-int-btn{
  min-height:44px;
  padding:0 18px;
  border-radius:11px;
  border:1px solid rgba(255,255,255,.10);
  background:#0b2437;
  color:#eef6f8;
  cursor:pointer;
  font-weight:800;
}

.rise-int-btn.primary{
  color:#04131b;
  border:0;
  background:linear-gradient(90deg,#31e890,#ffcf44);
}

.rise-int-btn:disabled{
  opacity:.55;
  cursor:wait;
}

.rise-int-msg{
  min-height:20px;
  margin-top:16px;
  padding:11px 13px;
  border-radius:10px;
  font-size:12px;
  display:none;
}

.rise-int-msg.ok{
  display:block;
  color:#60efa0;
  background:rgba(46,231,139,.08);
}

.rise-int-msg.erro{
  display:block;
  color:#ff8790;
  background:rgba(255,70,90,.08);
}

.rise-int-note{
  color:#8096a5;
  font-size:12px;
  line-height:1.55;
  margin-top:16px;
}

@media(max-width:650px){
  .rise-int-panel{
    padding:20px;
  }

  .rise-int-grid{
    grid-template-columns:1fr;
  }
}
