:root{
  --orgx2-yellow:#FFD200;
  --orgx2-yellow-deep:#E2B900;
  --orgx2-yellow-soft:rgba(255,210,0,.16);
  --orgx2-black:#111111;
  --orgx2-text:#5A6270;
  --orgx2-line:#E7EBF2;
  --orgx2-white:#FFFFFF;
  --orgx2-bg:#F7F9FC;
  --orgx2-shadow:0 14px 34px rgba(0,0,0,.06);
  --orgx2-shadow-hover:0 22px 42px rgba(0,0,0,.10);
}

.orgx2-section{
  padding:42px 0 60px;
  background:linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.orgx2-head{
  max-width:880px;
  margin:0 auto 30px;
  text-align:center;
}

.orgx2-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  background:var(--orgx2-yellow-soft);
  color:#111;
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.orgx2-title{
  margin:0 0 12px;
  color:#111;
  font-size:clamp(1.7rem, 2.5vw, 2.6rem);
  line-height:1.12;
  font-weight:800;
  letter-spacing:-.02em;
}

.orgx2-text{
  max-width:700px;
  margin:0 auto;
  color:var(--orgx2-text);
  font-size:.98rem;
  line-height:1.75;
}

/* topo */
.orgx2-top{
  position:relative;
  max-width:1280px;
  margin:0 auto 30px;
  padding:26px 24px 24px;
  background:#fff;
  border:1px solid var(--orgx2-line);
  border-radius:28px;
  box-shadow:var(--orgx2-shadow);
  overflow:hidden;
}

.orgx2-top::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg, #CDA900 0%, #FFD200 50%, #CDA900 100%);
}

.orgx2-node{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:12px 20px;
  border-radius:16px;
  background:#FFF7CC;
  border:1px solid rgba(255,210,0,.34);
  color:#111;
  text-align:center;
  font-weight:800;
  box-shadow:0 8px 18px rgba(0,0,0,.04);
}

.orgx2-node-main{
  display:flex;
  width:fit-content;
  min-width:270px;
  margin:0 auto 18px;
  background:linear-gradient(180deg, #FFD200 0%, #F3C600 100%);
}

.orgx2-node-main-alt{
  min-width:250px;
  margin-top:18px;
}

.orgx2-top-row{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.orgx2-top-row.row-3{
  margin-bottom:14px;
}

.orgx2-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  background:#fff;
  border:1px solid var(--orgx2-line);
  border-radius:999px;
  color:#333;
  font-size:.86rem;
  line-height:1.35;
  text-align:center;
  box-shadow:0 6px 16px rgba(0,0,0,.04);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.orgx2-chip:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(0,0,0,.06);
  border-color:rgba(255,210,0,.35);
}

/* linhas subtis */
.orgx2-line{
  position:absolute;
  background:linear-gradient(180deg, rgba(17,17,17,.22) 0%, rgba(17,17,17,.12) 100%);
}

.orgx2-line-v{
  top:76px;
  left:50%;
  width:1px;
  height:34px;
  transform:translateX(-50%);
}

.orgx2-line-h.top-a{
  top:110px;
  left:24%;
  width:52%;
  height:1px;
}

/* layout */
.orgx2-layout{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.25fr .9fr;
  gap:24px;
  align-items:start;
}

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

.orgx2-card{
  position:relative;
  background:#fff;
  border:1px solid var(--orgx2-line);
  border-radius:22px;
  padding:18px 18px 16px;
  box-shadow:var(--orgx2-shadow);
  cursor:pointer;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  outline:none;
  overflow:hidden;
}

.orgx2-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg, rgba(255,210,0,.2) 0%, rgba(255,210,0,.75) 50%, rgba(255,210,0,.2) 100%);
  opacity:.55;
  transition:opacity .22s ease;
}

.orgx2-card:hover,
.orgx2-card:focus,
.orgx2-card.is-active{
  transform:translateY(-4px);
  box-shadow:var(--orgx2-shadow-hover);
  border-color:rgba(255,210,0,.42);
  background:linear-gradient(180deg, #fffef8 0%, #fffbf0 100%);
}

.orgx2-card:hover::before,
.orgx2-card:focus::before,
.orgx2-card.is-active::before{
  opacity:1;
}

.orgx2-card-top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.orgx2-card-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--orgx2-yellow-soft);
  color:#8E7400;
  font-size:1rem;
  font-weight:800;
}

.orgx2-card-sigla{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:60px;
  height:32px;
  padding:0 12px;
  background:var(--orgx2-yellow-soft);
  border-radius:999px;
  color:#111;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.orgx2-card-title{
  margin:0 0 10px;
  color:#111;
  font-size:1.02rem;
  line-height:1.38;
  font-weight:800;
}

.orgx2-card-link{
  margin:0;
  color:#8A6B00;
  font-size:.88rem;
  font-weight:700;
}

/* painel */
.orgx2-panel{
  position:sticky;
  top:120px;
  background:linear-gradient(135deg, #171717 0%, #101010 100%);
  border-radius:26px;
  padding:24px 22px;
  color:#fff;
  box-shadow:0 24px 48px rgba(0,0,0,.14);
  overflow:hidden;
  transform:translateY(0);
}

.orgx2-panel::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg, #CBA700 0%, #FFD200 50%, #CBA700 100%);
}

.orgx2-panel-glow{
  position:absolute;
  top:-80px;
  right:-60px;
  width:200px;
  height:200px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,210,0,.18) 0%, rgba(255,210,0,0) 70%);
  pointer-events:none;
}

.orgx2-panel-top{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  z-index:2;
}

.orgx2-panel-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:rgba(255,210,0,.14);
  color:#FFD200;
  font-size:1rem;
  font-weight:800;
}

.orgx2-panel-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:62px;
  height:34px;
  padding:0 12px;
  background:rgba(255,210,0,.16);
  border-radius:999px;
  color:#FFD200;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.orgx2-panel-title{
  position:relative;
  z-index:2;
  margin:0 0 12px;
  color:#fff;
  font-size:1.42rem;
  line-height:1.2;
  font-weight:800;
  transition:opacity .22s ease, transform .22s ease;
}

.orgx2-panel-text{
  position:relative;
  z-index:2;
  margin:0 0 18px;
  color:rgba(255,255,255,.82);
  font-size:.94rem;
  line-height:1.72;
  transition:opacity .22s ease, transform .22s ease;
}

.orgx2-panel-subtitle{
  position:relative;
  z-index:2;
  margin:0 0 12px;
  color:#FFD200;
  font-size:.84rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.orgx2-panel-list{
  position:relative;
  z-index:2;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.orgx2-dept{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,210,0,.12);
  border-radius:999px;
  color:#fff;
  font-size:.88rem;
  line-height:1.35;
  transform:translateY(0);
  opacity:1;
  transition:transform .25s ease, opacity .25s ease, background .22s ease;
}

.orgx2-dept:hover{
  background:rgba(255,210,0,.12);
}

.orgx2-panel.is-switching .orgx2-panel-title,
.orgx2-panel.is-switching .orgx2-panel-text,
.orgx2-panel.is-switching .orgx2-dept{
  opacity:.15;
  transform:translateY(6px);
}

/* responsive */
@media (max-width: 1199px){
  .orgx2-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px){
  .orgx2-layout{
    grid-template-columns:1fr;
  }

  .orgx2-panel{
    position:relative;
    top:auto;
  }

  .orgx2-line{
    display:none;
  }
}

@media (max-width: 767px){
  .orgx2-section{
    padding:30px 0 42px;
  }

  .orgx2-top{
    padding:18px 14px;
    border-radius:20px;
  }

  .orgx2-node,
  .orgx2-chip{
    width:100%;
    border-radius:14px;
  }

  .orgx2-node-main,
  .orgx2-node-main-alt{
    min-width:100%;
  }

  .orgx2-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .orgx2-card{
    padding:16px;
    border-radius:18px;
  }

  .orgx2-panel{
    padding:20px 16px;
    border-radius:20px;
  }

  .orgx2-panel-title{
    font-size:1.18rem;
  }
}