:root {
  --verde-ifpi: #2f9e41;
  --verde-ifpi-dark: #257c34;
  --vermelho-ifpi: #cc1414;

  --text-main: #111827;
  --text-muted: #6b7280;

  --white: #ffffff;
  --bg: #f8f9fa;
  --bg-soft: #eef7f0;

  --border: #dce7df;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 10px 30px rgba(17, 24, 39, 0.08);

  --radius-lg: 28px;
  --radius-md: 18px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(47, 158, 65, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(204, 20, 20, 0.10), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, var(--bg) 52%, #edf5ef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Container */
.card {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 231, 223, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px 38px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

/* Detalhe superior */
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--verde-ifpi) 0%,
    var(--verde-ifpi) 72%,
    var(--vermelho-ifpi) 72%,
    var(--vermelho-ifpi) 100%
  );
}

/* Marca */
.brand-area {
  margin-bottom: 28px;
}

.logo-wrap {
  width: 116px;
  height: 116px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f7f4 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 50%;
}

/* Indicador visual */
.status-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
}

.status-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--verde-ifpi);
}

.status-dots span:last-child {
  background: var(--vermelho-ifpi);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47, 158, 65, 0.10);
  color: var(--verde-ifpi-dark);
  border: 1px solid rgba(47, 158, 65, 0.20);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--verde-ifpi);
  box-shadow: 0 0 0 4px rgba(47, 158, 65, 0.14);
}

/* Tipografia */
h1 {
  font-size: clamp(2rem, 5vw, 2.45rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--text-main);
  margin-bottom: 14px;
}

h1 strong {
  color: var(--verde-ifpi);
}

.description {
  max-width: 360px;
  margin: 0 auto 28px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Barra de progresso visual */
.progress-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 24px;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.progress-track {
  height: 8px;
  background: #dfe9e2;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--verde-ifpi), #55c768);
  border-radius: inherit;
}

/* Rodapé */
.footer {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* Responsividade */
@media (max-width: 480px) {
  body {
    padding: 18px;
  }

  .card {
    padding: 38px 24px 30px;
    border-radius: 24px;
  }

  .logo-wrap {
    width: 104px;
    height: 104px;
  }

  .logo {
    width: 80px;
    height: 80px;
  }

  .description {
    font-size: 0.96rem;
  }
}