
:root{
  --bg:#0b0910;
  --bg-2:#140f1c;
  --panel:rgba(21,15,27,.82);
  --panel-2:rgba(33,22,40,.92);
  --line:rgba(236,203,140,.24);
  --gold:#eccb8c;
  --gold-2:#f7e8c6;
  --rose:#c85a75;
  --wine:#6f2438;
  --text:#f2e9dc;
  --muted:#b8a99a;
  --shadow:0 18px 45px rgba(0,0,0,.35);
  --radius:24px;
  --radius-sm:16px;
  --max:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Segoe UI", "Trebuchet MS", system-ui, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top, rgba(140,53,78,.18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(236,203,140,.08), transparent 22%),
    linear-gradient(180deg, #0a0810 0%, #100c15 45%, #0d0a11 100%);
  min-height:100vh;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{width:min(var(--max), calc(100% - 32px)); margin:0 auto}

.site-header{
  position:sticky; top:0; z-index:40;
  backdrop-filter: blur(12px);
  background: rgba(10,8,16,.72);
  border-bottom:1px solid rgba(236,203,140,.12);
}
.site-header .bar{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  min-height:78px;
}
.brand{
  display:flex; align-items:center; gap:14px;
}
.brand-mark{
  width:46px; height:46px; border-radius:50%;
  display:grid; place-items:center;
  border:1px solid rgba(236,203,140,.35);
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.18), transparent 35%),
    linear-gradient(135deg, rgba(200,90,117,.24), rgba(236,203,140,.12));
  box-shadow: inset 0 0 20px rgba(255,255,255,.04), 0 10px 25px rgba(0,0,0,.35);
  font-size:1.2rem;
}
.brand-text strong{
  display:block;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.76rem;
  color:var(--gold);
}
.brand-text span{
  display:block;
  font-size:1.04rem;
  line-height:1.2;
}
.nav{
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
}
.nav a{
  padding:11px 16px; border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
  transition:.22s ease;
}
.nav a:hover, .nav a.active{
  color:var(--gold-2);
  border-color:rgba(236,203,140,.26);
  background:rgba(236,203,140,.06);
}

.hero{
  position:relative;
  overflow:hidden;
  padding:72px 0 40px;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(200,90,117,.08), transparent 50%),
    radial-gradient(circle at 10% 20%, rgba(236,203,140,.06), transparent 30%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:24px;
  align-items:stretch;
}
.hero-panel, .panel{
  border:1px solid var(--line);
  background:var(--panel);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-copy{
  padding:36px;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  padding:9px 14px;
  border-radius:999px;
  color:var(--gold);
  background:rgba(236,203,140,.06);
  border:1px solid rgba(236,203,140,.18);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.hero h1, .page-title{
  font-family: Georgia, "Times New Roman", serif;
  font-size:clamp(2.35rem, 4vw, 4rem);
  line-height:.97;
  margin:18px 0 18px;
}
.hero p.lead{
  color:#ddd0c1;
  font-size:1.08rem;
  line-height:1.65;
  max-width:62ch;
}
.hero-actions{
  display:flex; flex-wrap:wrap; gap:12px; margin-top:24px;
}
.btn{
  appearance:none; border:none; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  font-weight:600;
  transition:transform .16s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{ transform:translateY(-1px)}
.btn.primary{
  background:linear-gradient(135deg, #a93957, #7f2640);
  color:white;
  border:1px solid rgba(255,255,255,.12);
}
.btn.secondary{
  background:rgba(236,203,140,.06);
  color:var(--gold-2);
  border:1px solid rgba(236,203,140,.22);
}
.stats{
  display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:26px;
}
.stat{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(236,203,140,.1);
}
.stat strong{
  display:block; font-size:1.45rem; color:var(--gold-2); margin-bottom:2px;
}
.stat span{
  color:var(--muted); font-size:.92rem;
}
.hero-art{
  min-height:420px;
  position:relative;
  padding:28px;
  display:flex;
  align-items:stretch;
}
.stage-card{
  flex:1;
  border-radius:28px;
  border:1px solid rgba(236,203,140,.18);
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.13), transparent 18%),
    radial-gradient(circle at 20% 80%, rgba(236,203,140,.08), transparent 26%),
    linear-gradient(180deg, rgba(44,18,31,.85), rgba(16,12,23,.98)),
    linear-gradient(135deg, rgba(236,203,140,.05), rgba(200,90,117,.08));
  position:relative;
  overflow:hidden;
}
.stage-card::before{
  content:"";
  position:absolute; inset:18px;
  border-radius:22px;
  border:1px solid rgba(236,203,140,.12);
  pointer-events:none;
}
.stage-card .ornament{
  position:absolute; inset:auto 24px 20px auto;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(236,203,140,.07);
  border:1px solid rgba(236,203,140,.18);
  color:var(--gold);
  font-size:.84rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.stage-silhouette{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 50% 80%, rgba(0,0,0,.5), transparent 33%),
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,.34) 70%, rgba(0,0,0,.62) 100%);
}
.stage-arches{
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 50% 100%, transparent 0 160px, rgba(236,203,140,.1) 161px 163px, transparent 164px),
    radial-gradient(circle at 20% 100%, transparent 0 125px, rgba(236,203,140,.05) 126px 128px, transparent 129px),
    radial-gradient(circle at 80% 100%, transparent 0 125px, rgba(236,203,140,.05) 126px 128px, transparent 129px);
  background-repeat:no-repeat;
}
.stage-text{
  position:absolute; left:28px; right:28px; bottom:26px;
}
.stage-text h2{
  margin:0 0 8px;
  font-family:Georgia, "Times New Roman", serif;
  font-size:1.6rem;
}
.stage-text p{
  margin:0;
  color:#d3c5b4;
  line-height:1.55;
}

.section{
  padding:26px 0 34px;
}
.section-head{
  display:flex; align-items:end; justify-content:space-between; gap:18px;
  margin-bottom:20px;
}
.section-head h2{
  margin:0;
  font-family:Georgia, "Times New Roman", serif;
  font-size:2rem;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width:62ch;
  line-height:1.6;
}
.card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.feature-card{
  padding:24px;
  border-radius:24px;
  border:1px solid var(--line);
  background:var(--panel);
  box-shadow:var(--shadow);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.feature-card:hover{
  transform:translateY(-3px);
  border-color:rgba(236,203,140,.28);
  background:rgba(24,17,31,.95);
}
.feature-icon{
  width:54px;height:54px; border-radius:18px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(200,90,117,.18), rgba(236,203,140,.08));
  border:1px solid rgba(236,203,140,.16);
  font-size:1.35rem; margin-bottom:16px;
}
.feature-card h3{margin:0 0 8px; font-size:1.15rem}
.feature-card p{margin:0; color:var(--muted); line-height:1.62}

.note{
  display:flex; gap:12px; align-items:flex-start;
  padding:18px 20px;
  border-radius:20px;
  background:rgba(236,203,140,.05);
  border:1px solid rgba(236,203,140,.16);
  color:#e8ddcc;
}
.note strong{color:var(--gold)}

.controls{
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap:12px;
  align-items:center;
  margin-bottom:18px;
}
.search{
  position:relative;
}
.search input{
  width:100%; padding:15px 18px 15px 46px;
  border-radius:18px;
  border:1px solid rgba(236,203,140,.18);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-size:1rem;
}
.search input::placeholder{color:#9b8d80}
.search::before{
  content:"⌕";
  position:absolute; left:16px; top:50%; transform:translateY(-52%);
  color:var(--gold);
  font-size:1.1rem;
}
.toggle-group{
  display:flex; gap:8px; flex-wrap:wrap;
}
.toggle{
  border:1px solid rgba(236,203,140,.18);
  background:rgba(236,203,140,.04);
  color:var(--muted);
  padding:12px 14px;
  border-radius:999px;
  cursor:pointer;
}
.toggle.active{
  color:var(--gold-2);
  background:rgba(236,203,140,.1);
  border-color:rgba(236,203,140,.28);
}
.counter{
  color:var(--muted);
  font-size:.95rem;
  text-align:right;
}

.participants-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:16px;
}
.person-card{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(236,203,140,.14);
  background:linear-gradient(180deg, rgba(34,22,39,.95), rgba(19,14,25,.98));
  box-shadow:var(--shadow);
  transition:transform .16s ease, border-color .18s ease;
  min-height:326px;
}
.person-card:hover{
  transform:translateY(-4px);
  border-color:rgba(236,203,140,.28);
}
.person-card.locked .portrait img{
  filter:grayscale(1) contrast(1.02) brightness(.74);
}
.person-card.locked::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,8,16,.05), rgba(10,8,16,.28));
  pointer-events:none;
}
.person-card.unlocked .portrait img{
  filter:none;
}
.person-link{display:flex; flex-direction:column; min-height:326px}
.portrait{
  position:relative; aspect-ratio: 4/4.65; overflow:hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.12), transparent 18%),
    linear-gradient(180deg, rgba(200,90,117,.18), rgba(236,203,140,.05));
}
.portrait img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .3s ease, filter .2s ease;
}
.person-card:hover .portrait img{ transform:scale(1.03)}
.badge{
  position:absolute; top:12px; left:12px;
  padding:7px 10px; border-radius:999px;
  font-size:.75rem; letter-spacing:.06em; text-transform:uppercase;
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
}
.badge.locked{
  background:rgba(12,9,16,.52);
  color:var(--gold);
}
.badge.unlocked{
  background:rgba(140,36,60,.72);
  color:white;
}
.person-body{
  padding:16px 16px 18px;
  display:flex; flex-direction:column; gap:6px;
}
.person-name{
  margin:0;
  font-size:1rem; line-height:1.25;
}
.person-meta{
  color:var(--muted); font-size:.9rem;
}
.person-tagline{
  color:#dfd1c2;
  font-size:.88rem;
  line-height:1.5;
}
.lock-icon{
  position:absolute; right:12px; top:12px;
  width:34px; height:34px; border-radius:50%;
  display:grid; place-items:center;
  background:rgba(11,9,16,.56);
  border:1px solid rgba(236,203,140,.14);
}
.empty-state{
  padding:28px;
  border-radius:24px;
  border:1px dashed rgba(236,203,140,.2);
  text-align:center;
  color:var(--muted);
  background:rgba(255,255,255,.02);
}

.series-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.series-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  min-height:270px;
  background:
    radial-gradient(circle at top right, rgba(236,203,140,.08), transparent 26%),
    linear-gradient(180deg, rgba(44,18,31,.95), rgba(16,12,23,.98));
  border:1px solid rgba(236,203,140,.14);
  box-shadow:var(--shadow);
}
.series-card-inner{
  display:flex; flex-direction:column; justify-content:space-between;
  min-height:270px; padding:24px;
}
.series-lock{
  position:absolute; top:18px; right:18px;
  width:38px;height:38px;border-radius:50%; display:grid;place-items:center;
  border:1px solid rgba(236,203,140,.18);
  background:rgba(11,9,16,.54);
}
.series-logo{
  width:76px;height:76px;border-radius:22px;
  display:grid;place-items:center;
  border:1px solid rgba(236,203,140,.18);
  background:linear-gradient(135deg, rgba(236,203,140,.14), rgba(200,90,117,.14));
  font-family:Georgia, "Times New Roman", serif;
  font-size:1.65rem; color:var(--gold-2);
}
.series-card h3{margin:16px 0 8px; font-size:1.32rem}
.series-card p{margin:0; color:var(--muted); line-height:1.62}
.series-foot{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  margin-top:20px;
  color:#e8dccd;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(236,203,140,.06);
  border:1px solid rgba(236,203,140,.16);
  color:var(--gold-2);
  font-size:.9rem;
}
.series-card.locked{opacity:.88}
.series-card.locked .series-logo{filter:grayscale(1) brightness(.88)}
.series-card.available:hover{transform:translateY(-3px)}
.series-card.available{transition:transform .18s ease, border-color .18s ease}
.series-card.available:hover{border-color:rgba(236,203,140,.28)}

.extra-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}
.extra-card{
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(236,203,140,.14);
  background:var(--panel);
  box-shadow:var(--shadow);
}
.extra-card h3{margin:0 0 10px; font-size:1.2rem}
.extra-card p{margin:0 0 16px; color:var(--muted); line-height:1.63}
.list{
  display:grid; gap:10px; margin:0; padding:0; list-style:none;
}
.list li{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(236,203,140,.1);
  color:#e7dccd;
}
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  margin-bottom:12px;
  color:var(--gold);
  font-size:.82rem; letter-spacing:.11em; text-transform:uppercase;
}
.site-footer{
  border-top:1px solid rgba(236,203,140,.12);
  padding:28px 0 40px;
  color:var(--muted);
}
.footer-row{
  display:flex; justify-content:space-between; gap:20px; align-items:center; flex-wrap:wrap;
}
.small{
  font-size:.92rem; line-height:1.55;
}
.muted{color:var(--muted)}
.accent{color:var(--gold)}
.center{text-align:center}
.hidden{display:none !important}

@media (max-width: 1080px){
  .hero-grid, .card-grid, .series-grid{grid-template-columns:1fr 1fr}
  .participants-grid{grid-template-columns:repeat(4, minmax(0, 1fr))}
}
@media (max-width: 840px){
  .hero-grid{grid-template-columns:1fr}
  .card-grid, .series-grid, .extra-grid{grid-template-columns:1fr}
  .participants-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .controls{grid-template-columns:1fr; align-items:stretch}
  .counter{text-align:left}
  .site-header .bar{padding:10px 0}
  .nav{justify-content:flex-end}
}
@media (max-width: 620px){
  .participants-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .stats{grid-template-columns:1fr}
  .hero-copy,.feature-card,.extra-card{padding:20px}
  .hero{padding-top:50px}
  .page-title{font-size:2.2rem}
}


.series-logo-wrap{min-height:92px;display:flex;align-items:center;justify-content:flex-start;margin-bottom:10px}
.series-logo-img{max-height:86px;max-width:100%;object-fit:contain;filter:drop-shadow(0 8px 18px rgba(0,0,0,.28));}
.profile-shell{padding:28px}
.profile-main{display:grid;grid-template-columns:340px 1fr;gap:28px;align-items:stretch}
.profile-portrait{border-radius:24px;overflow:hidden;border:1px solid var(--line);background:rgba(255,255,255,.03);min-height:420px}
.profile-portrait img{width:100%;height:100%;object-fit:cover;object-position:top center}
.profile-copy{display:flex;flex-direction:column;justify-content:center}
.profile-subtitle{margin:-4px 0 16px;color:var(--gold);font-size:1.05rem;letter-spacing:.04em;text-transform:uppercase}
.profile-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:20px}
.profile-section{padding:22px}
.profile-section h2{margin:0 0 14px;font-family:Georgia,"Times New Roman",serif;font-size:1.35rem}
.profile-section p{margin:0;color:#ddd0c1;line-height:1.7}
.profile-details{display:grid;gap:10px}
.detail-row{display:grid;grid-template-columns:220px 1fr;gap:14px;padding:10px 0;border-top:1px solid rgba(236,203,140,.12)}
.detail-row:first-child{border-top:none;padding-top:0}
.detail-row strong{color:var(--gold-2)}
@media (max-width:900px){.profile-main{grid-template-columns:1fr}.profile-grid{grid-template-columns:1fr}.detail-row{grid-template-columns:1fr;gap:6px}}


body::before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  background-image:url("logos/concurso-ashala-logo.png");
  background-repeat:no-repeat;
  background-position: calc(100% + 160px) 140px;
  background-size: 520px auto;
  opacity:.035;
  filter:grayscale(.1) saturate(.8);
}
.brand-mark{padding:6px}
.brand-mark img{width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 4px 10px rgba(0,0,0,.28));}
.hero-grand::after, .page-shell::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(circle at 10% 20%, rgba(236,203,140,.04), transparent 26%);
}
.page-shell{position:relative}
.page-banner{
  display:grid; grid-template-columns:120px 1fr; gap:22px; align-items:center;
  padding:26px 28px; border-radius:28px; border:1px solid rgba(236,203,140,.14);
  background:linear-gradient(135deg, rgba(35,20,33,.96), rgba(17,12,24,.95));
  box-shadow:var(--shadow);
  overflow:hidden; position:relative;
}
.page-banner::after{
  content:""; position:absolute; right:-24px; top:-16px; width:210px; height:210px;
  background:url("logos/concurso-ashala-logo.png") center/contain no-repeat;
  opacity:.08; filter:grayscale(1);
}
.page-banner-logo{width:100%;max-width:100px;filter:drop-shadow(0 10px 24px rgba(0,0,0,.28));}
.page-banner-series .page-banner-logo{max-width:110px}
.page-lead{max-width:72ch;color:#d8cbbb;margin:10px 0 0}
.hero-copy-grand{position:relative;overflow:hidden}
.hero-copy-grand::after{
  content:""; position:absolute; right:-70px; bottom:-70px; width:240px; height:240px;
  background:url("logos/concurso-ashala-logo.png") center/contain no-repeat; opacity:.08;
}
.hero-art-grand{min-height:470px}
.stage-card-seal .hero-seal{
  position:absolute; width:220px; top:34px; left:34px; opacity:.92;
  filter:drop-shadow(0 16px 24px rgba(0,0,0,.22));
}
.stage-card-seal::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(18,13,22,.02), rgba(18,13,22,.22));
}
.open-profiles-grid{
  display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px;
}
.open-profile-card{
  display:grid; grid-template-columns:112px 1fr; gap:16px; align-items:center;
  padding:16px; border-radius:24px; background:var(--panel);
  border:1px solid rgba(236,203,140,.14); box-shadow:var(--shadow);
  transition:transform .18s ease, border-color .18s ease;
}
.open-profile-card:hover{transform:translateY(-3px); border-color:rgba(236,203,140,.28)}
.open-profile-card img{width:112px;height:132px;object-fit:cover;border-radius:18px;border:1px solid rgba(236,203,140,.14)}
.open-profile-card h3{margin:0 0 6px;font-size:1.12rem}
.open-profile-card p{margin:0;color:var(--muted);line-height:1.55;font-size:.94rem}
.open-profile-card .mini-pill{margin-top:12px;display:inline-flex;padding:8px 11px;border-radius:999px;border:1px solid rgba(236,203,140,.16);background:rgba(236,203,140,.06);color:var(--gold-2);font-size:.84rem}
.note-seal{align-items:center}
.note-seal img{width:68px;flex:0 0 auto;filter:drop-shadow(0 8px 18px rgba(0,0,0,.18));}
.panel-luxe{position:relative;overflow:hidden}
.panel-luxe::before{
  content:""; position:absolute; right:-30px; top:-20px; width:180px; height:180px;
  background:url("logos/concurso-ashala-logo.png") center/contain no-repeat; opacity:.05;
}
.person-card::before{
  content:""; position:absolute; inset:10px; border-radius:18px; border:1px solid rgba(236,203,140,.08); pointer-events:none; z-index:1;
}
.person-body,.portrait{position:relative; z-index:2}
.person-card.unlocked{border-color:rgba(236,203,140,.24); box-shadow:0 18px 45px rgba(0,0,0,.35), 0 0 0 1px rgba(236,203,140,.05) inset}
.series-card{transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease}
.series-card:hover{transform:translateY(-4px);border-color:rgba(236,203,140,.26)}
.series-card::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:url("logos/concurso-ashala-logo.png") no-repeat right -24px top -18px / 150px auto;
  opacity:.05;
}
.series-card.locked .series-logo-wrap{opacity:.88}
.series-logo-wrap{min-height:102px;position:relative}
.series-logo-wrap::after{
  content:""; position:absolute; left:0; bottom:-8px; width:120px; height:1px; background:linear-gradient(90deg, rgba(236,203,140,.4), transparent);
}
.series-logo-img{max-height:96px;max-width:100%;object-fit:contain;filter:drop-shadow(0 10px 24px rgba(0,0,0,.32));}
.series-logo-fallback{
  width:110px;height:82px;display:grid;place-items:center;border-radius:18px;border:1px solid rgba(236,203,140,.15);
  background:linear-gradient(135deg, rgba(236,203,140,.12), rgba(200,90,117,.12));
  color:var(--gold-2);font-family:Georgia,serif;font-size:1.15rem;letter-spacing:.08em;padding:10px;text-align:center;
}
.footer-brandline{display:flex;align-items:center;gap:12px}
.footer-seal{width:44px;height:44px;object-fit:contain;filter:drop-shadow(0 6px 12px rgba(0,0,0,.18));}
.profile-shell-grand{position:relative; overflow:hidden}
.profile-shell-grand::after{
  content:""; position:absolute; right:-34px; top:-18px; width:210px; height:210px;
  background:url("logos/concurso-ashala-logo.png") center/contain no-repeat; opacity:.06;
}
.profile-portrait-wrap{position:relative}
.profile-seal{position:absolute; right:-10px; bottom:-14px; width:92px; background:rgba(15,11,19,.82); padding:10px; border-radius:50%; border:1px solid rgba(236,203,140,.16); box-shadow:var(--shadow)}
.profile-seal img{width:100%;display:block}
.profile-portrait{min-height:470px}
.profile-section{background:linear-gradient(180deg, rgba(30,20,37,.95), rgba(17,12,24,.98))}
@media (max-width:1080px){.open-profiles-grid{grid-template-columns:1fr 1fr}}
@media (max-width:840px){.page-banner{grid-template-columns:1fr; text-align:left}.page-banner-logo{max-width:88px}.open-profiles-grid{grid-template-columns:1fr}.footer-brandline{align-items:flex-start}}
@media (max-width:620px){body::before{background-size:320px auto;background-position: calc(100% + 120px) 110px}.open-profile-card{grid-template-columns:88px 1fr}.open-profile-card img{width:88px;height:110px}.note-seal{align-items:flex-start}}
