*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}
.limitar-secao {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
  }
  
  /* Topo da página */
  .topo {
    background-color: #2f86d6;
  }
  
  .container-topo {
    position: relative;
    padding: 35px 0px;
  }
  
  .topo-logo {
    position: relative;
  }
  
  .topo-logo img {
    width: 80px;
  }
  
  .topo-logo div {
    position: absolute;
    top: 0;
    left: 95px;
  }
  
  .topo-links {
    position: absolute;
    top: 65px;
    right: 0;
  }
  
  .topo-logo p {
    color: #fff;
    font-weight: 600;
  }
  
  .topo-links a {
    font-size: 18px;
    padding: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
  }
  
  
  /* Seção conteúdo principal */
  .conteudo-principal {
    padding: 100px 0px;
  }
  
  .conteudo-principal table{
    margin: auto;
  }
  
  .celula-escondida {
    visibility: hidden;
  }
  
  .celula-cabeçalho {
    text-align: center;
    padding: 20px 40px;
    border-bottom: 1px solid #f1f3f7;
    border-right: 1px solid #f1f3f7;
    background-color: #f1f3f7;
  }
  
  .celula-cabeçalho p {
    font-size: 14px;
    font-weight: 500;
    color: #a8a4a4;
  }
  
  .celula-cabeçalho h2 {
    font-size: 36px;
  }
  
  table tbody td {
    text-align: center;
    padding: 20px 40px;
    border-bottom: 1px solid #f1f3f7;
    border-right: 1px solid #f1f3f7;
  }
  
  .primeira-celula {
    background-color: #f1f3f7;
    font-weight: 500;
    text-align: left;
  }
  
  .marcador-azul {
    width: 20px;
    height: 20px;
    margin: auto;
    background-color: #2f86d6;
    border-radius: 100px;
  }
  
  
  /* Seção rodape'*/
  .rodape {
    padding-top: 70px;
    background-color: #2f86d6;
  }
  
  .rodape-logo {
    position: relative;
    width: 320px;
    margin: auto;
  }
  
  .rodape-logo img {
    width: 80px;
  }
  
  .rodape-logo div {
    position: absolute;
    top: 0;
    left: 95px;
  }
  
  .rodape-logo p {
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
  }
  
  .paragrafo-rodape {
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 70px;
  }
  
  .container-copyright {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 20px 0px;
    background-color: #fff;
  }
  
  .container-copyright span {
    color: #2f86d6;
  }