/* =========================================================
   About (Premium)
   - Hero similar ao Contact (imagem opcional)
   - Cards padrão (radius 18, shadow leve)
   - Coluna esquerda em "card gigante"
   ========================================================= */

.aHeroWide{
  position: relative;
  padding: 46px 0 26px;
  overflow: hidden;
  border-bottom: 1px solid rgba(11,15,23,.06);
  background: #fff;
}
.aHeroWide__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(11,15,23,.035), rgba(11,15,23,0));
}
.aHeroWide__img{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  opacity: .20; /* “lente” leve */
  pointer-events:none;
}
.aHeroWide__inner{
  position: relative;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
}
.aHeroWide__content{ max-width: 720px; }
.aHeroWide__title{
  margin:0 0 8px;
  font-weight: 950;
  letter-spacing: -.02em;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: rgba(11,15,23,.96);
}
.aHeroWide__sub{
  margin:0;
  color: rgba(11,15,23,.68);
  font-size: 1rem;
  line-height: 1.5;
}
.aHeroWide__meta{
  color: rgba(11,15,23,.72);
  font-weight: 850;
  font-size: .95rem;
  text-align:right;
  white-space: nowrap;
}
.aHeroWide__meta a{
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(193,18,31,.35);
  text-underline-offset: 3px;
  color: rgba(11,15,23,.86);
}
@media (max-width: 860px){
  .aHeroWide__inner{ flex-direction: column; align-items:flex-start; }
  .aHeroWide__meta{ text-align:left; white-space: normal; }
}

/* Sections */
.aSection{ padding: 34px 0 70px; }
.aSection--soft{ background: rgba(11,15,23,.02); border-top: 1px solid rgba(11,15,23,.06); border-bottom: 1px solid rgba(11,15,23,.06); }
.aSectionHead{ margin-bottom: 16px; }

.aGrid{
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 34px;
  align-items: start;
}
@media (max-width: 980px){
  .aGrid{ grid-template-columns: 1fr; gap: 24px; }
}

/* Cards */
.aCard{
  background: #fff;
  border: 1px solid rgba(11,15,23,.10);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(16,24,40,.10);
  padding: 22px;
}
.aCard--big{
  padding: 24px;
}

.aCards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px){
  .aCards{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .aCards{ grid-template-columns: 1fr; }
}

/* Typography */
.aH2{
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: -.01em;
  font-size: 1.28rem;
  color: rgba(15,23,42,.98);
}
.aH3{
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: -.01em;
  font-size: 1.05rem;
  color: rgba(15,23,42,.96);
}
.aLead{
  margin: 0 0 14px;
  color: rgba(11,15,23,.78);
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 750;
}
.aP{
  margin: 0 0 14px;
  color: rgba(11,15,23,.74);
  line-height: 1.75;
  font-size: .98rem;
}
.aMuted{ color: rgba(11,15,23,.68); line-height: 1.65; margin: 0; }

.aSplitText{
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.aDivider{
  height: 1px;
  background: rgba(11,15,23,.10);
  margin: 16px 0;
}

/* List */
.aList{
  margin: 0;
  padding-left: 18px;
  color: rgba(11,15,23,.74);
  line-height: 1.75;
}
.aList li{ margin: 8px 0; }

/* Facts */
.aFact{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(11,15,23,.08);
}
.aFact:last-of-type{ border-bottom: 0; }
.aFact__k{
  font-weight: 900;
  color: rgba(11,15,23,.66);
  font-size: .92rem;
}
.aFact__v{
  text-align:right;
  color: rgba(11,15,23,.80);
  font-weight: 800;
  font-size: .95rem;
}
.aLink{
  color: rgba(11,15,23,.86);
  text-decoration: underline;
  text-decoration-color: rgba(193,18,31,.25);
  text-underline-offset: 3px;
}

/* Notice */
.aNotice{
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(193,18,31,.20);
  background: rgba(193,18,31,.06);
  color: rgba(11,15,23,.82);
  margin: 10px 0 14px;
}
.aNotice strong{
  display:block;
  color: rgba(193,18,31,.95);
  font-weight: 950;
  margin-bottom: 4px;
}
.aNotice span{
  display:block;
  color: rgba(11,15,23,.72);
  font-weight: 800;
}

.aActions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}