.trilha-aprendizagem {
  position: relative;
  width: 100%;
  height: 100%;

  background: radial-gradient(#FCFCF8, #fcd9d6);
}

/**
 * TITLE AND SUBTITLE
 */
.trilha-aprendizagem__title {
  position: absolute;
  top: 30px;
  left: 120px;
  z-index: 2;
  display: flex;
  flex-direction: column;

  font-size: 28px;
  font-weight: bold;
  line-height: 32px;
  letter-spacing: 4px;
  color: #8A1344;

  opacity: 0;
}

.trilha-aprendizagem__title span:first-of-type {
  font-size: 32px;
  line-height: 40px;

  font-weight: 900;
}

.trilha-aprendizagem__title span:last-of-type {
  font-weight: 500;
  letter-spacing: 6px;
}

/**
 * START AND END TRILHA
 */
.trilha-aprendizagem__start,
.trilha-aprendizagem__end {
  position: absolute;
  display: flex;
  flex-direction: column;

  font-size: 14px;
  line-height: 18px;
  text-align: center;
  font-weight: bold;
  color: #8A1344;
}

.trilha-aprendizagem__start {
  top: -85px;
  left: 5px;
}

.trilha-aprendizagem__end {
  top: -60px;
  left: -90px;
  width: 200px;
}

/**
 * PATHS
 */
.trilha-aprendizagem__paths {
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: inline-flex;
  width: 1385px;
  height: 631px;

  opacity: 0;
}

.trilha-aprendizagem__path {
  position: absolute;
  z-index: 1;
}

.trilha-aprendizagem__path.selected .link-button {
  background: #f3f2ee;
  box-shadow: -10px 10px 5px rgba(0, 0, 0, 0.2);

  transform: scale(1.05);
}

.trilha-aprendizagem__path.selected .nivel-ensino-box {
  opacity: 1;
  transform: translateY(0);
}

.trilha-aprendizagem__path.selected .faixa-etaria-box {
  opacity: 1;
  transform: translateY(0);
}

.trilha-aprendizagem__path.selected .habilidades-trabalhadas {
  opacity: 1;
}

.link-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  box-sizing: border-box;

  border: 4px solid white;
  border-radius: 50%;

  pointer-events: none;
  cursor: default;

  background: #f8f7f5;
  box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.5s ease-in-out,
  box-shadow 0.5s ease-in-out,
  transform 0.5s ease-in-out
}

/**
 * NÍVEL DE ENSINO
 */
.nivel-ensino-box {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 41px;

  border-radius: 22px;
  font-weight: bold;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;

  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.2s linear;
}

/**
 * FAIXA ETÁRIA
 */
.faixa-etaria-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  text-align: center;
  border-radius: 8px;

  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.2s linear;
}

.habilidades-trabalhadas {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;

  font-size: 14px;
  line-height: 18px;

  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.etapa {
  position: absolute;
  font-size: 20px;
  font-weight: bold;

  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.saiba-mais {
  position: absolute;
  z-index: 300;
  padding: 8px 0;

  color: #8A1344;
  font-size: 14px;
  line-height: 20px;

  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.saiba-mais svg {
  position: absolute;
  top: 12px;
  right: -16px;
  margin-top: 1px;

  animation: bounce-right 2s ease-in-out infinite;
}

/**
 * PATH 1
 */
.trilha-aprendizagem__path:nth-of-type(1) {
  top: 488px;
  left: 0;
  z-index: 2;
}

/**
 * PATH 2
 */
.trilha-aprendizagem__path:nth-of-type(2) {
  top: 293px;
  left: 72px;
}

.trilha-aprendizagem__path:nth-of-type(2) .link-button {
  top: 40px;
  left: 103px;

  transform: translateY(-100px);
}

.trilha-aprendizagem__path:nth-of-type(2) .link-button.blob {
  animation-delay: 1s;
}

.trilha-aprendizagem__path:nth-of-type(2) .nivel-ensino-box {
  top: -125px;
  left: 95px;
  width: 120px;

  color: #fff;
  background-color: #948EB2;

  transform: translateY(-30%);
}

.trilha-aprendizagem__path:nth-of-type(2).selected .nivel-ensino-box {
  transform: translateY(0);
}

.trilha-aprendizagem__path:nth-of-type(2) .habilidades-trabalhadas {
  top: -70px;
  left: 68px;

  color: #49485E;
}

.trilha-aprendizagem__path:nth-of-type(2) .faixa-etaria-box {
  top: 200px;
  left: 110px;
  width: 120px;
  height: 50px;

  color: #49485E;
  background-color: #948EB2;

  transform: translateY(30%);
}

.trilha-aprendizagem__path:nth-of-type(2).selected .faixa-etaria-box {
  transform: translateY(0);
}

.trilha-aprendizagem__path:nth-of-type(2) .etapa {
  top: 12px;
  left: 163px;
  color: #49485E;
}

.trilha-aprendizagem__path:nth-of-type(2) .saiba-mais {
  top: 273px;
  left: 129px;
  color: #49485E;
}

.trilha-aprendizagem__path:nth-of-type(2).selected .saiba-mais {
  opacity: 1;
}

.trilha-aprendizagem__path:nth-of-type(2).selected .saiba-mais svg path {
  fill: #49485E;
}

/**
 * PATH 3
 */
.trilha-aprendizagem__path:nth-of-type(3) {
  top: 343px;
  left: 316px;

  fill: #FDD215;
}

.trilha-aprendizagem__path:nth-of-type(3) .link-button {
  top: 54px;
  left: 43px;
}

.trilha-aprendizagem__path:nth-of-type(3) .link-button.blob {
  animation-delay: 1.5s;
}

.trilha-aprendizagem__path:nth-of-type(3) .nivel-ensino-box {
  top: 250px;
  left: 55px;
  width: 135px;

  color: #8D6A14;
  background: #FDD215;

  transform: translateY(30%);
}

.trilha-aprendizagem__path:nth-of-type(3).selected .nivel-ensino-box {
  transform: translateY(0);
}

.trilha-aprendizagem__path:nth-of-type(3) .habilidades-trabalhadas {
  top: 310px;
  left: -27px;
  width: 300px;

  color: #8D6A14;
}

.trilha-aprendizagem__path:nth-of-type(3) .faixa-etaria-box {
  top: -5px;
  left: 28px;
  width: 122px;
  height: 35px;

  color: #8D6A14;
  background-color: #FDD215;

  transform: translateY(-30%);
}

.trilha-aprendizagem__path:nth-of-type(3).selected .faixa-etaria-box {
  transform: translateY(0);
}

.trilha-aprendizagem__path:nth-of-type(3) .etapa {
  top: 193px;
  left: 114px;
  color: #8D6A14;
}

.trilha-aprendizagem__path:nth-of-type(3) .saiba-mais {
  top: -45px;
  left: 48px;
  color: #8D6A14;
}

.trilha-aprendizagem__path:nth-of-type(3).selected .saiba-mais {
  opacity: 1;
}

.trilha-aprendizagem__path:nth-of-type(3).selected .saiba-mais svg path {
  fill: #8D6A14;
}

/**
 * PATH 4
 */
.trilha-aprendizagem__path:nth-of-type(4) {
  top: 150px;
  left: 457px;

  fill: #A0C631;
}

.trilha-aprendizagem__path:nth-of-type(4) .link-button {
  top: 54px;
  left: 75px;
}

.trilha-aprendizagem__path:nth-of-type(4) .link-button.blob {
  animation-delay: 2s;
}

.trilha-aprendizagem__path:nth-of-type(4) .nivel-ensino-box {
  top: -70px;
  left: 35px;
  width: 185px;

  color: #fff;
  background-color: #A0C631;

  transform: translateY(-30%);
}

.trilha-aprendizagem__path:nth-of-type(4).selected .nivel-ensino-box {
  transform: translateY(0%);
}

.trilha-aprendizagem__path:nth-of-type(4) .habilidades-trabalhadas {
  top: 195px;
  left: 45px;
  width: 200px;

  color: #376129;
}

.trilha-aprendizagem__path:nth-of-type(4) .faixa-etaria-box {
  top: 320px;
  left: 135px;
  width: 90px;
  height: 100px;

  color: #376129;
  background-color: #A0C631;

  transform: translateY(30%);
}

.trilha-aprendizagem__path:nth-of-type(4).selected .faixa-etaria-box {
  transform: translateY(0%);
}

.trilha-aprendizagem__path:nth-of-type(4) .etapa {
  top: 18px;
  left: 130px;
  color: #376129;
}

.trilha-aprendizagem__path:nth-of-type(4) .saiba-mais {
  top: 436px;
  left: 143px;
  color: #376129;
}

.trilha-aprendizagem__path:nth-of-type(4).selected .saiba-mais {
  opacity: 1;
}

.trilha-aprendizagem__path:nth-of-type(4).selected .saiba-mais svg path {
  fill: #376129;
}



/**
 * PATH 5
 */
.trilha-aprendizagem__path:nth-of-type(5) {
  top: 339px;
  left: 725px;
}

.trilha-aprendizagem__path:nth-of-type(5) .link-button {
  top: 40px;
  left: 88px;
}

.trilha-aprendizagem__path:nth-of-type(5) .link-button.blob {
  animation-delay: 2.5s;
}

.trilha-aprendizagem__path:nth-of-type(5) .nivel-ensino-box {
  top: 250px;
  left: 80px;
  width: 180px;

  color: #fff;
  background-color: #189CD9;

  transform: translateY(30%);
}

.trilha-aprendizagem__path:nth-of-type(5).selected .nivel-ensino-box {
  transform: translateY(0%);
}

.trilha-aprendizagem__path:nth-of-type(5) .habilidades-trabalhadas {
  top: -80px;
  left: 30px;
  width: 200px;

  color: #044659;
}

.trilha-aprendizagem__path:nth-of-type(5) .faixa-etaria-box {
  top: -200px;
  left: 80px;
  width: 90px;
  height: 100px;

  color: #044659;
  background-color: #189CD9;

  transform: translateY(-30%);
}

.trilha-aprendizagem__path:nth-of-type(5).selected .faixa-etaria-box {
  transform: translateY(0%);
}

.trilha-aprendizagem__path:nth-of-type(5) .etapa {
  top: 190px;
  left: 155px;
  color: #044659;
}

.trilha-aprendizagem__path:nth-of-type(5) .saiba-mais {
  top: 310px;
  left: 134px;
  color: #044659;
}

.trilha-aprendizagem__path:nth-of-type(5).selected .saiba-mais {
  opacity: 1;
}

.trilha-aprendizagem__path:nth-of-type(5).selected .saiba-mais svg path {
  fill: #044659;
}

  /**
   * PATH 6
   */
.trilha-aprendizagem__path:nth-of-type(6) {
  top: 167px;
  left: 938px;
}

.trilha-aprendizagem__path:nth-of-type(6) .link-button {
  top: 41px;
  left: 41px;
}

.trilha-aprendizagem__path:nth-of-type(6) .link-button.blob {
  animation-delay: 3s;
}

.trilha-aprendizagem__path:nth-of-type(6) .nivel-ensino-box {
  top: -70px;
  left: 20px;
  width: 150px;

  color: #fff;
  background-color: #EC6A34;

  transform: translateY(-30%);
}

.trilha-aprendizagem__path:nth-of-type(6).selected .nivel-ensino-box {
  transform: translateY(0%);
}

.trilha-aprendizagem__path:nth-of-type(6) .habilidades-trabalhadas {
  top: 190px;
  left: -8px;
  width: 300px;

  color: #9A4F16;
}

.trilha-aprendizagem__path:nth-of-type(6) .faixa-etaria-box {
  top: 345px;
  left: 120px;
  width: 90px;
  height: 90px;

  color: #773A10;
  background-color: #EC6A34;

  transform: translateY(30%);
}

.trilha-aprendizagem__path:nth-of-type(6).selected .faixa-etaria-box {
  transform: translateY(0%);
}

.trilha-aprendizagem__path:nth-of-type(6) .etapa {
  top: 11px;
  left: 100px;
  color: #773A10;
}

.trilha-aprendizagem__path:nth-of-type(6) .saiba-mais {
  top: 455px;
  left: 125px;
  color: #773A10;
}

.trilha-aprendizagem__path:nth-of-type(6).selected .saiba-mais {
  opacity: 1;
}

.trilha-aprendizagem__path:nth-of-type(6).selected .saiba-mais svg path {
  fill: #773A10;
}

/**
 * PATH 7
 */
.trilha-aprendizagem__path:nth-of-type(7) {
  top: 315px;
  left: 1301px;
}

.blob {
  transform: scale(1);
  animation: pulse 4s infinite;
  box-shadow: 0 0 0 0 currentColor;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.15;

  animation: shimmer-background 6s ease-in-out infinite;
}

.background svg {
  width: auto;
}

@media screen and (max-width: 1350px) {
  .trilha-aprendizagem__title {
    position: absolute;
    left: 0;
    right: 0;

    text-align: center;
  }

  .trilha-aprendizagem__subtitle {
    position: absolute;
    top: 105px;
    left: 0;
    right: 0;

    text-align: center;
  }

  .trilha-aprendizagem__paths {
    width: 100%;
    height: 730px;
    overflow: auto;
  }
}

@media screen and (max-width: 500px) {
  .trilha-aprendizagem__title {
    top: 10px;
  }

  .trilha-aprendizagem__title span:first-of-type {
    font-size: 20px;
    line-height: 24px;
  }

  .trilha-aprendizagem__title span:last-of-type {
    font-size: 18px;
    line-height: 22px;
  }

  .trilha-aprendizagem__paths {
    width: 125%;
    transform: translate(-50%, -50%) scale(0.8);
  }
}
