
/* V101 — Bloco institucional Sobre a Maxxima */
.mx-about{
  margin:18px 0 22px;
  padding:26px;
  border:1px solid var(--line);
  border-radius:18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(196,165,90,.16), transparent 34%),
    linear-gradient(135deg, rgba(13,24,52,.86), rgba(8,13,26,.72));
  box-shadow:0 22px 60px rgba(0,0,0,.18);
  overflow:hidden;
  position:relative;
}
.mx-about::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.04) 48%, transparent 100%);
}
.mx-about-kicker{
  position:relative;
  z-index:1;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:800;
  margin-bottom:10px;
}
.mx-about-title{
  position:relative;
  z-index:1;
  font-family:'Cinzel',serif;
  font-size:30px;
  line-height:1.15;
  color:var(--gold2);
  font-weight:800;
  letter-spacing:.02em;
  margin-bottom:12px;
}
.mx-about-text{
  position:relative;
  z-index:1;
  color:var(--text);
  max-width:980px;
  font-size:15px;
  line-height:1.72;
}
.mx-about-text p{margin:0 0 12px}
.mx-about-cards{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}
.mx-about-card{
  border:1px solid rgba(196,165,90,.24);
  border-radius:14px;
  padding:16px;
  background:rgba(255,255,255,.045);
}
.mx-about-card b{
  display:block;
  font-family:'Cinzel',serif;
  color:var(--gold2);
  font-size:16px;
  margin-bottom:8px;
}
.mx-about-card span{
  display:block;
  color:var(--muted);
  line-height:1.5;
  font-size:14px;
}
html[data-theme="light"] .mx-about{
  background:
    radial-gradient(circle at 92% 8%, rgba(196,165,90,.18), transparent 34%),
    linear-gradient(135deg,#ffffff,#f5f8fc);
  border-color:rgba(196,165,90,.34);
}
html[data-theme="light"] .mx-about-title,
html[data-theme="light"] .mx-about-card b{
  color:#8a681b !important;
}
html[data-theme="light"] .mx-about-text,
html[data-theme="light"] .mx-about-text p{
  color:#071426 !important;
}
html[data-theme="light"] .mx-about-card{
  background:#ffffff;
  border-color:rgba(196,165,90,.34);
}
html[data-theme="light"] .mx-about-card span{
  color:#334155 !important;
}
@media(max-width:900px){
  .mx-about{padding:20px}
  .mx-about-title{font-size:24px}
  .mx-about-cards{grid-template-columns:1fr}
}
