/* ==================== PAGE: DOWNLOADS ==================== */
.mp-dw-hero{
  background:linear-gradient(90deg,#0b63e5 0%,#0b3f5e 100%);
  padding:60px 0 40px;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.mp-dw-hero::after{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  background:rgba(255,255,255,.12);
  border-radius:50%;
  top:-80px;
  right:-40px;
  filter:blur(0);
}
.mp-dw-hero__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}
.mp-dw-text h1{
  font-weight:800;
  font-size:clamp(1.8rem,2.4vw + .6rem,2.4rem);
  margin-bottom:.5rem;
}
.mp-dw-text .eyebrow{
  text-transform:uppercase;
  letter-spacing:.15em;
  font-weight:700;
  font-size:.75rem;
  margin-bottom:.35rem;
  opacity:.9;
}
.mp-dw-text .desc{
  max-width:460px;
  opacity:.94;
  line-height:1.4;
}
.mp-dw-illu img{
  max-width:210px;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.2));
}

/* corpo */
.mp-dw-body{
  padding:45px 0 70px;
}
.mp-dw-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  margin-bottom:28px;
}
.mp-dw-header h2{
  font-size:1.4rem;
  font-weight:800;
  margin-bottom:4px;
}
.mp-dw-header h2 span{
  background:linear-gradient(transparent 60%, rgba(11,99,229,.25) 0);
  padding:0 .35rem 3px 0;
}
.mp-dw-header p{
  margin:0;
  color:#5a6573;
}
.mp-dw-back{
  background:#f0f4ff;
  color:#0b3f5e;
  border-radius:999px;
  padding:7px 20px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:.2s;
  white-space:nowrap;
}
.mp-dw-back:hover{
  background:#0b63e5;
  color:#fff;
}

/* cards */
.mp-dw-card{
  display:block;
  background:#fff;
  border:1px solid #ebeff5;
  border-radius:14px;
  padding:20px 20px 16px;
  height:100%;
  transition:.18s ease;
  box-shadow:0 4px 14px rgba(5,21,46,.03);
}
.mp-dw-card:hover{
  border-color:rgba(11,99,229,.5);
  box-shadow:0 8px 24px rgba(4,23,39,.05);
  transform:translateY(-2px);
}
.mp-dw-card .icon{
  width:48px;
  height:48px;
  border-radius:14px;
  background:rgba(11,99,229,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  color:#0b63e5;
  font-size:1.3rem;
}
.mp-dw-card h3{
  font-size:1.05rem;
  margin-bottom:4px;
  font-weight:700;
  color:#0b273a;
}
.mp-dw-card p{
  margin:0;
  color:#6b7686;
  font-size:.9rem;
  line-height:1.4;
}
.mp-dw-card .act{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:14px;
  font-size:.83rem;
  font-weight:600;
  color:#0b63e5;
}
.mp-dw-card .act i{font-size:1rem}

/* responsivo */
@media (max-width: 991px){
  .mp-dw-hero__inner{
    flex-direction:column;
    text-align:left;
    align-items:flex-start;
  }
  .mp-dw-illu img{
    max-width:160px;
  }
  .mp-dw-header{
    flex-direction:column;
    align-items:flex-start;
  }
}
@media (max-width: 575px){
  .mp-dw-body{padding-inline:1rem}
  .mp-dw-card{height:auto}
}
