:root {
  --c-blue: #004e6a;
  --c-blue-light: #0c95be;
  --c-orange: #e18d00;
  --c-orange-ligth: #e5b451;
  --c-green: #8bc435;
  --c-white: #efefef;
  --c-black: #111;
  --c-bg-circle: #FFFFFF;
}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans";
}

body {
  
}

#header {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.h1 {
  color: transparent;
  background: var(--c-orange);
  background-clip: border-box;
  -webkit-background-clip: text;
  font-size: 40px;
  font-family: 'Montserrat', sans-serif;
  width: 400px;
  position: relative;
  filter: drop-shadow(-2px 2px var(--c-orange-ligth));
}

#divisoria {
  width: 420px;
  height: 7px;
  position: relative;
  background: var(--c-blue);
}

#ano-port,
#ano-mat,
#ano-cien {
  color: #000;
}

body {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--c-white);
  height: 100vh;
  gap: 10px;
}

/* Form Progress */
section {
  min-width: 290px;
  text-align: center;
  height: auto;
}

.container {
  width: 290px;
}

.circle,
.bar {
  display: inline-block;
  background: var(--c-bg-circle);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid var(--c-green);
  box-shadow: -2px 2px 0px -1px var(--c-black);
}

.bar {
  position: relative;
  width: 80px;
  height: 10px;
  top: -29px;
  margin-left: -1px;
  margin-right: -1px;
  border-left: none;
  border-right: none;
  border-radius: 0;
  box-shadow: 0px 1px 0px 0px var(--c-black);
}

.circle .label {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 32px;
  margin-top: 3px;
  font-size: 20px;
}

.circle .title {
  color: var(--c-black);
  font-size: 10px;
  line-height: 30px;
  margin-left: -9px;
  white-space: nowrap;
  font-weight: bold;
}

/* Done / Active */
.bar.done,
.circle.done {
  background: #eee;
}

.bar.active {
  background: linear-gradient(to right, #EEE 40%, #FFF 60%);
}

.circle.done .label {
  color: #FFF;
  background: var(--c-green);
  box-shadow: inset 0 0 2px rgba(0, 0, 0, .2);
}

.circle.done .title {
  color: #444;
}

.circle.active .label {
  color: #FFF;
  background: var(--c-blue-light);
  box-shadow: inset 0 0 2px rgba(0, 0, 0, .2);
}

.circle.active .title {
  color: var(--c-blue-light);
}