/* Universidade Completude Humana — Aviso institucional (HTML estático) */

/* Reset mínimo */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-serif, "Georgia", "Times New Roman", Times, serif;
  color: rgba(255,255,255,.88);
  background:#08040a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Paleta (vinho cósmico + dourado metálico) */
:root{
  --bg-0: #06020a;
  --bg-1: #120312;
  --bg-2: #1a0418;     /* vinho cósmico */
  --ink: rgba(255,255,255,.88);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.58);
  --gold: #d7b56e;     /* dourado */
  --gold2:#f0d7a1;     /* brilho */
  --line: rgba(215,181,110,.24);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
}

/* Fundo com profundidade */
.bg{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px 18px;
  background:
    radial-gradient(1100px 700px at 20% 15%, rgba(215,181,110,.08), transparent 60%),
    radial-gradient(900px 600px at 80% 0%, rgba(173,92,168,.10), transparent 55%),
    radial-gradient(900px 700px at 70% 90%, rgba(215,181,110,.06), transparent 55%),
    radial-gradient(1200px 900px at 30% 90%, rgba(112,18,90,.20), transparent 55%),
    linear-gradient(180deg, var(--bg-0), var(--bg-2) 55%, var(--bg-1));
  position:relative;
  overflow:hidden;
}

.grain{
  position:absolute; inset:-40%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  transform: rotate(8deg);
  opacity:.18;
  pointer-events:none;
  mix-blend-mode: soft-light;
}

.vignette{
  position:absolute; inset:0;
  background: radial-gradient(1200px 800px at 50% 35%, transparent 40%, rgba(0,0,0,.55) 100%);
  pointer-events:none;
}

.wrap{
  width:100%;
  max-width: 880px;
  position:relative;
  z-index:1;
}

.card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    radial-gradient(700px 320px at 50% 0%, rgba(215,181,110,.08), transparent 60%),
    rgba(10,6,14,.55);
  border: 1px solid rgba(215,181,110,.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px 18px;
  backdrop-filter: blur(10px);
}

.header{
  text-align:center;
}

.logoBox{
  display:flex;
  justify-content:center;
  margin-bottom: 12px;
}

.logo{
  width: min(360px, 85%);
  height:auto;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.55));
}

.tagline{
  margin: 0;
  color: var(--gold2);
  letter-spacing:.4px;
  font-size: 14px;
  text-transform: uppercase;
}

.divider{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(215,181,110,.55), transparent);
  margin: 18px 0 18px;
}

.title{
  margin: 0 0 14px;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: .2px;
  color: rgba(255,255,255,.94);
  text-align:center;
}

.text{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.notice{
  display:flex;
  gap: 14px;
  align-items: stretch;
  padding: 14px 14px;
  margin: 18px 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(215,181,110,.22);
  background: linear-gradient(180deg, rgba(215,181,110,.09), rgba(215,181,110,.04));
}

.noticeMark{
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  box-shadow: 0 0 0 6px rgba(215,181,110,.10);
  flex: 0 0 auto;
}

.noticeTitle{
  margin: 0 0 6px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  letter-spacing:.2px;
}

.noticeText{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  text-align: justify;
  text-justify: inter-word;
  hyphens:auto;
}

.actions{
  margin-top: 18px;
  text-align:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration:none;
  color: rgba(10,6,14,.95);
  font-weight: 800;
  letter-spacing: .3px;
  background:
    radial-gradient(60% 140% at 50% 0%, rgba(255,255,255,.65), transparent 55%),
    linear-gradient(180deg, var(--gold2), var(--gold));
  box-shadow:
    0 18px 36px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.12) inset;
  border: 1px solid rgba(0,0,0,.15);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 22px 44px rgba(0,0,0,.52),
    0 0 0 1px rgba(255,255,255,.16) inset;
}

.btn:active{
  transform: translateY(0px);
  filter: brightness(.98);
}

.hint{
  margin: 12px 0 0;
  color: var(--muted2);
  font-size: 13px;
}

.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid rgba(215,181,110,.20);
  background: rgba(215,181,110,.08);
  color: rgba(255,255,255,.86);
}

.footer{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(215,181,110,.16);
}

.footerText{
  margin: 0;
  text-align:center;
  color: rgba(255,255,255,.55);
  font-size: 12.5px;
}

/* Mobile */
@media (max-width: 520px){
  .card{ padding: 22px 16px 16px; border-radius: 16px; }
  .tagline{ font-size: 12px; }
  .text{ font-size: 15.5px; }
}

body{
  user-select:none;
  -webkit-user-select:none;
  -moz-user-select:none;
}

img{
  pointer-events:none;
}

body::after{
  content: "ICH • USO RESTRITO";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: max-content;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1;
  color: rgba(212,175,55,0.18);
  text-shadow: 0 0 2px rgba(0,0,0,0.25);
  white-space: nowrap;
  pointer-events: none;
  z-index: 2147483647;
}

html, body {
  margin: 0;
  padding: 0;
  background: #12030a !important; /* use o tom mais escuro real do site */
  min-height: 100%;
}

body {
  overflow-x: hidden;
}

#app, main, .site-wrap, .page, .page-wrap {
  background: transparent;
}

html {
  overscroll-behavior-y: none;
  overscroll-behavior-x: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #1a060c 0%, #12030a 100%);
  z-index: -1;
  pointer-events: none;
}
