#banner {
    background: url(../img/background.jpg) center no-repeat;
    height: 100%;
    width: 100%;
    display: table;
    position: relative;
    background-size: cover;
    background-attachment: fixed;
  }
  
  #banner .linha-seta{
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  
  #banner .setas-scroll{
    width: 50px;
    opacity: 0%;
    margin-top: -42px;
    animation-delay: 2s;
    animation-name: anim-seta;
    animation-duration: 900ms;
    animation-iteration-count: 4;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96)
  }
  
  @keyframes anim-seta {
    0% {
      opacity: 0%;
      transform: translateY(-7vh);
    }
    100% {
      opacity: 100%;
      transform: translateY(-2vh);
    }
  }
  
  .endereco {
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: #f1f6fc;
    font-size: 14px;
  
    position: relative;
    top: 0px;
    box-shadow: 0px -40px 60px 10px #0000008c
  }
  
  .endereco p {
    color: rgb(38, 131, 196);
  }
  
  .endereco .dados p {
    line-height: 25px;
    color: rgba(38, 131, 196, 0.8);
  }
  
  .endereco .servico a {
    text-decoration: none;
    color: rgb(38, 131, 196);
  }
  
  .endereco .servico a:hover {
    color: #005e89;
    text-decoration: none;
  }
  
  .endereco .servico h3 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 18px;
    color: rgb(38, 131, 196);
  }
  
  .endereco .servico h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 17%;
    height: 3px;
    background-color: rgba(38, 131, 196, 0.8);
  }
  
  .endereco .dados span {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgb(38, 131, 196);
  }
  
  .endereco .dados i {
    padding-bottom: 15px;
    padding-right: 10px;
    color: rgba(38, 131, 196, 0.8);
  }
  
  .endereco .copyright .media {
    margin-bottom: 30px;
  }
  
  .endereco .copyright .media i {
    font-size: 25px;
    margin: 0 5px;
  }
  
  .endereco .copyright .media img {
    height: 28px;
    margin: 0px 5px;
  }
  
  .endereco .copyright p a {
    color: rgb(38, 131, 196);
  }
  
  .endereco .copyright p > a:hover {
    color: rgb(51, 122, 183);
  }
  
  .endereco .dividir{
    border: 1px solid #2683C4;
    align-content: left;
    opacity: 0.15;
  }
  
  #teamViewer .arquivos{
    margin: 0 ;
  }
  
  #teamViewer .arquivo-team-viewer{
    height: 260px;
    padding: 18px 8px;
    text-align: center;
    position: relative;
  }
  
  #teamViewer .arquivo-team-viewer a{
    color: #2c2c2c;
    text-decoration: none;
    padding: 0;
    border: 0;
    margin: 0;
    text-decoration: none;
  }
  
  #teamViewer .arquivo-team-viewer a h4{
    position: relative;
    font-size: 1.2rem;
    margin: 0px;
    padding-bottom: 20px;
    color: #797777e7;
  }
  
  #teamViewer .arquivo-team-viewer a h4::after{
    content: "";
    width: 0;
    height: 3px;
    background-color: rgba(61, 140, 209, 0.932);
    position: absolute;
    left: 0;
    bottom: 10px;
  }
  
  #teamViewer .arquivo-team-viewer a:hover h4::after{
    width: 100%;
    transition: width 300ms ease-in-out;
  }
  
  
  #teamViewer .arquivo-team-viewer a img{
    width: 150px;
    height: auto;
  }
  
  #teamViewer .arquivo-team-viewer .border{
    width: 1px;
    background-color: #E5E5E5;
    height: 70%;
    position: absolute;
    bottom: 10%;
    right: 0;
  }

  /* --------- Acesso Remoto Responsividade --------- */

@media (max-width: 991px) {
  #teamViewer .arquivo-team-viewer{
    height: 210px;
  }
  #teamViewer .arquivo-team-viewer a h4{
    font-size: 1rem;
    height: 59px;
  }
  #teamViewer .arquivo-team-viewer a h4::after {
    bottom: 15px;
  }
  #teamViewer .arquivo-team-viewer a img{
    width: 100px;
    height: auto;
  }
  #teamViewer .arquivo-team-viewer .border{
    height: 60%;
  }
}

@media (max-width: 575px) {
  #teamViewer .arquivo-team-viewer{
    height: 190px;
  }
  #teamViewer .arquivo-team-viewer a h4{
    font-size: 1rem;
  }
  #teamViewer .arquivo-team-viewer a h4::after {
    display: none;
  }
  #teamViewer .arquivo-team-viewer a img{
    width: 100px;
    height: auto;
  }
  #teamViewer .arquivo-team-viewer .border{
    display: none;
  }
}

/* ----- FIM Acesso Remoto Responsividade END ----- */