.formacao {
    background: #141414;
    color: #ffffff;
  }
  
  .formacao-container {
    position: relative;
  }
  
  .formacao-container::after {
    content: "";
    display: block;
    width: 130px;
    height: 100px;
    background: url("../imgs/detalhe.svg") no-repeat center;
    position: absolute;
    bottom: -50px;
    left: 20px;
  }
  
  .formacao .subtitulo {
    color: #000000;
    max-width: 5ch;
  }
  
  .formacao-texto {
    font-size: 1.5rem;
    line-height: 1.33;
    margin-bottom: 60px;
    color: #a3a3a3;
    max-width: 40ch;
  }
  
  .formacao-texto strong {
    color: #ffffff;
  }
  
  .faculdade-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
  }
  
  .faculdade {
    flex: 1;
    background: #000000;
    padding: 20px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
  }
  
  .faculdade-tipo {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: #a3a3a3;
    margin-bottom: 10px;
  }
  
  .faculdade-curso {
    flex: 1;
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 40px;
    position: relative;
  }
  
  .faculdade-curso::before {
    content: "";
    display: block;
    width: 4px;
    height: 20px;
    background: linear-gradient(#FFC8DD, #FFAFCC);
    position: absolute;
    left: -24px;
  }
  
  .faculdade-instituicao {
    font-size: 1.125rem;
    color: #a3a3a3;
  }
  
  .cursos {
    margin-bottom: 60px;
  }
  
  .formacao-extra h3 {
    font-size: 0.875rem;
    line-height: 1.4;
    color: #8f8f8f;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
  }
  
  .formacao-extra h3::before {
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    left: -36px;
    top: -4px;
  }
  
  .cursos h3::before {
    background: url("../imgs/cursos.svg") no-repeat center center;
  }
  
  .idiomas h3::before {
    background: url("../imgs/idiomas.svg") no-repeat center center;
  }
  
  .formacao-extra li {
    font-size: 1.125rem;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  
  .formacao-extra span {
    color: #8f8f8f;
  }
  
  .cursos li {
    display: flex;
    justify-content: space-between;
  }
  
  @media (max-width: 800px) {
    .formacao-container {
      grid-template-columns: 1fr;
      padding: 60px 20px;
    }
    .formacao .subtitulo {
      color: #ffffff;
    }
    .formacao-texto {
      font-size: 1.25rem;
    }
    .formacao-extra h3::before {
      position: initial;
      margin-bottom: 10px;
    }
  }
  