.pg-topo{
  position: relative;
}
.pg-alunos-novos .breadcrumb{
  margin-top: 1em;
  padding-left: 0;
  margin-bottom: 32px;
}
.primeira-coluna{
  grid-column: 1/2;
  color: var(--text-primary);
}
.segunda-coluna{
  grid-column: 2/3;
  grid-row: 1/5;
}
.topo-info{
  display: grid;
  gap: 32px;
}
.topo-agende{
  display: grid;
  grid-template-rows: 60% 40%;
  gap: 32px;
  height: max-content;
}
.topo-img{
  height: auto;
  grid-row: 1/3;
  grid-column: 1/2;
}  
.pg-alunos-link{
  justify-self: center;
  grid-row: 2/3;
  grid-column: 1/2;
  width:fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap:8px;
  box-shadow: var(--shadow-default);
  background-color: var(--purple-500);
  stroke: var(--green-200);
  color: white;
  padding: 1rem 2rem;
  border-radius: 200px;
  cursor: pointer;
  transition: all .2s;
}
.pg-alunos-link:hover{
  color: white;
  text-decoration: none;
  background-color: var(--green-800);
}
.pg-alunos-link p{
  font-weight: 600;
  font-size: 1rem;
}
.texto-passo{
  margin-top: 32px;
}

.txt-h3 h3{
  font-size: .875rem;
  line-height: 1.5rem;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .pg-alunos-novos .breadcrumb{
    padding-left: 16px;
  }
}

@media(max-width: 768px){
  .primeira-coluna{
    grid-column: 1/2;
  }
  .segunda-coluna{
    grid-column: 1/2;
    grid-row: unset;
  }
  .topo-agende{
    justify-content: center;
  }
  .topo-img{
    max-width: 100%;
  }
}