@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --border-radius: 100em;
    --blue: #0a71af;
    --green: #00aa7d;
    --gray: #eee;
}

html {
    font-size: 14px;
}

body {
    font-family: "Raleway", sans-serif;
    font-size: 1rem;
}

@media (min-width: 1240px) and (max-width: 1439px) {
    .container-fluid {
        max-width: 1200px;
    }
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

a {
    text-decoration: none;
}

.purple {
    fill: #0b548f;
}

.gray {
    fill: #2B2B2B;
}

svg {
    width: auto;
    height: 3em;
}

.container-fluid {
    align-items: center;
    display: flex;
    margin: auto;
    padding-top: 1em;
    padding-bottom: 1em;
    align-content: flex-start;
    flex-direction: row;
    justify-content: space-between;
}

.header-menus {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    font-weight: 600;
}

.botao-gov-br {
    background-color: #1351b4;
    color: #fff;
    padding: 10px 20px;
    align-items: center;
    border-radius: var(--border-radius);
    border: 0;
    font-size: 16px;
}

.botao-gov-br i {
    font-weight: 900;
    font-size: 13px;
    margin-right: 8px;
    padding-top: 2px;
}

.btn-green{
    background: var(--green);
}

.card-header {
    background: var(--gray);
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: var(--green);
    color: #FFF;
}

.nav-pills .nav-link {
    border: solid 1px var(--green);
    color: var(--green);
}