.banner{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 100%;
    background-color: #105482;
    background-image: linear-gradient(to right, #1c71aaff, #85c8f5ff, #105482);
    color: white;
}

.banner h2 {
    text-shadow: 2px 2px 3px #000000
}

/* Implementação de responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .banner h2 {
        font-size: 1.5rem;
        text-shadow: 1px 1px 2px #000000;
        padding: 0 1rem;
        text-align: center;
    }
}
.secao-banners {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}   
.barra-titulo {
    background: #32547f;
    color: #fff;
    padding: 10px 0 1px;
    text-align: center;
}
.conteudo{
    min-height: 20rem;
    height: auto;
}

.conteudo-tabelas{
    width: 100vw;
}
.info-conteudo {
    width: 24rem;
}
.info-conteudo ul li a {
    text-decoration: none;
    color: #000;
}

.videos-banners {
    width:24rem;
    height: 12rem;
}

.sessao-configs{
    display: flex;
}
.small-box {
  border-radius: 2px;
  position: relative;
  display: block;
  margin-bottom: 20px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.info-cards > [class*="col-"] {
  display: flex;
}

.info-cards .small-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.info-cards .small-box > .inner {
  flex: 1;
}
.small-box > .inner {
  padding: 10px;
}
.small-box > .small-box-footer {
  position: relative;
  text-align: center;
  padding: 3px 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.small-box > .small-box-footer:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
}
.small-box h3 {
  font-size: 38px;
  font-weight: bold;
  margin: 0 0 10px 0;
  white-space: nowrap;
  padding: 0;
}
.small-box p {
  font-size: 15px;
}
.small-box p > small {
  display: block;
  color: #f9f9f9;
  font-size: 13px;
  margin-top: 5px;
}
.small-box h3,
.small-box p {
  z-index: 5;
}
.small-box .icon {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: absolute;
  top: -10px;
  right: 10px;
  z-index: 0;
  font-size: 90px;
  color: rgba(0, 0, 0, 0.15);
}
.small-box:hover {
  text-decoration: none;
  color: #f9f9f9;
}
.small-box:hover .icon {
  font-size: 95px;
}

.bg-blue {
    background-color: #0073b7 !important;
    color: #fff !important;
}

.bg-yellow {
    background-color: #f39c12 !important;
    color: #fff !important;
}
.bg-green {
    background-color: #00a65a !important;
    color: #fff !important;
}
.bg-red {
    background-color: #fd2903 !important;
    color: #fff !important;
}

@media (max-width: 767px) {
  .small-box {
    text-align: center;
    margin-bottom: 1rem;
  }
  .small-box .icon {
    display: none;
  }
  .small-box p {
    font-size: 12px;
  }
  .small-box h3 {
    font-size: 24px;
  }
  /* keep cards in a single row, allow scrolling if needed */
  .top-boxes-wrapper.row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: start;
  }
  .top-boxes-wrapper.row .col-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}



@media (max-width: 768px) {
    .sessao-configs{
        flex-direction: column;
    }
}
