/* Estilo base */
body {
    background-color: #f8f9fa;
  }
  
  /* Botão flutuante */
  .btn-flutuante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    border-radius: 50%;
    padding: 15px 18px;
    font-size: 20px;
  }
  
  /* Logotipo centralizado */
  .logo-principal {
    max-width: 280px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Cores da marca */
  .text-primary {
    color: #0076A8 !important;
  }
  
  .btn-warning {
    background-color: #F7931E;
    border-color: #F7931E;
  }
  
  .btn-warning:hover {
    background-color: #e3821b;
    border-color: #e3821b;
  }
  
  /* Espaçamento das seções */
  section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .bg-primary {
    background-color: #0076A8 !important;
  }

  .text-white {
    color: #fff !important;
  }
  
  .bg-borgesrh {
    background-color: #0076A8 !important;
  }
  
  .logo-navbar {
    max-width: 120px;
    height: auto;
  }

  .etapa-numero {
    font-size: 3rem;
    font-weight: bold;
    color: #00B289; /* verde inclusivo */
    background-color: #e6f8f4;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  
  