/* Configuração global */

html,
body {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Montserrat-regular', Arial;
  padding: 0;
  margin: 0;
}

/* Variáveis */

:root {
  --branco: #fefefe;
  --branco-opaco: #e6e6e6;
  --azul-escuro: #000b21;
  --azul-claro: #29d1f9;
  --azul: #117cd9;
  --branco-azulado: #f8f9ff;
  --cinza: #6d69698c;
  --preto-transp: rgba(0, 0, 0, 0.8);
  --montserrat: 'Montserrat-regular', Arial;
}

/* NAVBAR */

#todaNavbar {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#navbarPage {
  width: 78%;
  height: 60px;
  padding-top: 9px;
  padding-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1000;
}

.navbar-container {
  background-color: transparent;
  height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#blackLogo {
  display: none;
}

.navbar-logo img {
  width: 200px;
}

#menuMobile {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 90%;
}

.boxMobile #conteudo-solucoes {
  display: none;
}

#menuMobile ul {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: -43px;
  display: flex;
  justify-content: end;
  align-items: center;
}

#menuMobile ul li {
  list-style: none;
  margin-right: 30px;
  position: relative;
  cursor: pointer;
}

#menuMobile ul li a {
  color: var(--branco-opaco);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Montserrat';
}

#menuMobile ul li p {
  color: var(--branco-opaco);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

li #callLogin {
  font-weight: bold;
  border: var(--azul-claro) 1px solid;
  padding: 5px 10px;
}

#openMaisOpcoesDesktop span {
  font-size: 13px;
}

#conteudo-solucoes {
  display: none;
  position: absolute;
  width: 204px;
  height: 58px;
  top: 30px;
  padding: 0;
  background-color: var(--azul-claro);
  border-radius: 0 0 4px 4px;
  left: -112px;
  z-index: 1000;
}

ul#conteudo-solucoes li {
  margin-top: 2px;
  width: 100%;
  height: 26px;
  display: flex;
  align-items: center;
}

ul#conteudo-solucoes li a {
  width: 100%;
  font-size: 14px;
  font-weight: normal;
  padding-left: 19px;
  height: 23px;
  color: var(--branco);
}

ul#conteudo-solucoes li a:hover {
  color: var(--azul-claro);
  background-color: var(--branco);
}

.navMobilelogoBtn {
  display: none;
}

#navMobileBtnsMenu ul {
  display: none;
}

#btnLista {
  width: 48px;
  height: 39px;
  display: none;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 5px;
  cursor: pointer;
  border-radius: 5px;
}

#btnLista:active {
  transform: rotate(-8deg);
  /* border: 1px solid var(--branco-opaco); */
}

.btnListabarra {
  width: 100%;
  height: 2.8px;
  background-color: var(--branco);
  border-radius: 5px;
}

/* Fima Navbar */

/* Header */

header {
  width: 100%;
  height: 980px;
  background-image: url(../img/top_background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -16px;
}

#headerContainer {
  width: 950px;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* padding-top: 370px; */
  padding-top: 432px;
}

#headerContainer h1 {
  color: var(--branco);
  font-size: 55px;
  margin-bottom: 55px;
}

#headerContainer img {
  width: 200px;
}

#headerContainer p {
  color: var(--branco);
  font-weight: 800;
  font-size: 40px;
  margin-top: 5px;
  margin-bottom: 20px;
}

#subHeader {
  height: auto;
  width: 100%;
  background-color: var(--azul-escuro);
  margin-top: -14px;
  padding-bottom: 43px;
}

#textosSubHeader {
  color: var(--branco-azulado);
  width: 95%;
  max-width: 502px;
  margin: auto;
  text-align: center;
  line-height: 20px;
  font-size: 16px;
}
#textosSubHeader p {
  margin-top: -15px;
}
#tituloOpcaoFerramentas {
  color: var(--branco);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin: 50px auto 20px auto;
}

#opcoesFerramentas {
  width: 720px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  color: var(--branco);
  column-gap: 1px;
}

.opcoesDiversas {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 239px;
  height: 70px;
}

.textosOpcoesDiversas {
  font-size: 15px;
}

.opcoesDiversas img {
  width: 23px;
  padding-right: 8px;
}

#infoOpcoesFerramentas {
  width: 95%;
  max-width: 654px;
  margin: auto;
  color: var(--branco-opaco);
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
}

#infoOpcoesFerramentas a {
  color: var(--azul-claro);
  text-decoration: underline;
}

#infoOpcoesFerramentas a:hover {
  color: var(--branco-azulado);
}

#infoOpcoesFerramentas a:active {
  color: var(--branco-opaco);
}

/* Fim Header*/

/* Sessão Sessões Seguras / Participe */

.sessoesSegurancaParticipe {
  width: 100%;
  background-color: var(--branco-opaco);
  padding: 50px 0;
}

.containerSegurancaParticipe {
  width: 950px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.boxTextosSegurancaParticipe {
  width: 47%;
  display: block;
}

.titulosSegurancaParticipe {
  color: var(--azul-escuro);
  font-weight: 800;
  font-size: 26px;
  width: 434px;
}

.textosSegurancaParticipe {
  font-size: 16px;
  width: 420px;
}

.imgsSegurancaParticipe {
  justify-content: end;
  width: 45%;
  display: flex;
}

.imgsSegurancaParticipe img {
  /* width: 100%; */
  height: 285px;
}

#imgVideoChamadaMobile {
  height: 355px;
}

#sessaoReunioesSemProblemas {
  width: 100%;
  background-color: var(--branco);
  padding: 50px 0;
}

#containerReunioesSemProblemas {
  width: 950px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#imgReunioesSemProblemas {
  width: 42%;
  display: flex;
  align-items: start;
}

#imgReunioesSemProblemas img {
  height: 270px;
}

#boxTextosReunioesSemProblemas {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}

.tituloReunioesSemProblemas {
  color: var(--azul-escuro);
  font-size: 27px;
  font-weight: 700;
  text-align: right;
}

#textosReunioesSemProblemas {
  font-size: 16px;
  text-align: right;
}

.textosSegurancaParticipe a {
  color: var(--azul);
  text-decoration: underline;
  font-weight: 500;
}

/* Fim sessão Sessões Seguras / Participe */

/* Sessão Dúvidas */

#sessaoDuvidas {
  width: 100%;
  background-color: var(--branco);
  padding: 60px 0;
}

#containerDuvidas {
  width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#boxIconsTextosDuvidas {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#boxIconsTextosDuvidas img {
  width: 100px;
  margin: auto;
}

.iconsTextosDuvidas {
  width: 46%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.titulosDuvidas {
  text-align: center;
  color: var(--azul-escuro);
  font-size: 21px;
  font-weight: 700;
  margin: 0;
  margin-top: 5px;
}

.textosDuvidas {
  text-align: center;
  color: var(--azul-escuro);
  font-size: 16px;
  font-weight: 400;
}

#videoDuvidas {
  width: 100%;
  height: 403px;
  padding: 50px 0 30px 0;
}

#videoDuvidas iframe {
  width: 100%;
  height: 100%;
}

/* Fim sessão Dúvidas */

/* Sessão fomulário */

.container {
  width: 95%px;
}

.sessao-formulario {
  display: block;
  width: 100%;
  background-color: var(--branco-azulado);
}

#credencie {
  background-color: var(--branco-azulado) !important;
  color: var(--azul-escuro);
  padding-bottom: 50px;
  padding-top: 50px;
  font-family: 'Montserrat';
  margin-top: -1px;
}

#credencie h3 {
  color: var(--azul-escuro);
  text-transform: none;
  text-align: center;
  font-size: 27px;
  font-weight: bold;
}

.containerForm {
  width: 70%;
  margin: auto;
  max-width: none;
  margin-top: 50px;
  text-align: center;
}

.containerForm input {
  border: none;
  border-bottom: 1px solid var(--cinza);
  font-family: 'Montserrat';
}

textarea {
  border: none;
  border-bottom: 1px solid var(--cinza);
  padding-top: 28px;
  width: 100%;
  background-color: var(--branco-azulado);
  font-family: 'Montserrat';
}

textarea::placeholder {
  font-size: 15px;
}

.form-nome,
.form-email,
.form-telefone,
.form-escola,
.form-msg {
  display: block;
  margin-bottom: 27px;
  margin-top: 27px;
}

.form-estado-cidade {
  display: flex;
  margin-bottom: 10px;
  margin-top: 50px;
  justify-content: space-between;
}

.form-estado,
.form-cidade {
  width: 47%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--cinza);
}

.form-estado p,
.form-cidade p {
  font-size: 16px;
  padding-left: 2px;
  color: var(--cinza);
}

.form-estado select,
.form-cidade select {
  border: none;
  font-size: 16px;
  padding-bottom: 10px;
  margin: 0;
  width: 100%;
  font-family: 'Montserrat';
}

.form-msg {
  margin-top: 20px;
}

.divBtnEnviar {
  display: block;
  width: 50%;
  margin: auto;
  margin-top: 50px;
}

.divBtnEnviar button {
  display: block;
  border: none;
  margin: auto;
  font-size: 18px;
  font-weight: bolder;
  font-family: inherit;
  letter-spacing: 0.1px;
  color: var(--branco);
  background-color: var(--azul-claro);
  padding: 5px 60px;
  border-radius: 21px;
}

.divBtnEnviar button:active {
  box-shadow: 1px 1px 5px var(--azul-escuro);
}

input {
  font-size: 15px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--cinza);
  background-color: transparent;
  margin-bottom: -19px;
}

input:focus {
  outline: none;
}

label {
  color: var(--azul-escuro);
  font-size: 15px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

/* Fim Formulário */

/* Footer */

footer {
  width: 100%;
  height: auto;
  /* height: 585px;
     background-image: url(../img/footer-better.png);
    background-repeat: no-repeat;
    background-size: cover; */
  background-color: var(--azul-escuro);
}

.container-footer {
  display: block;
  width: 95%;
  margin: auto;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 90px;
}

.first-part {
  display: flex;
  flex-direction: column;
  width: 246px;
  /* height: 215px; */
  height: 160px;
  order: 3;
}

.secund-part,
.third-part {
  display: flex;
  flex-direction: column;
  width: 246px;
  /* height: 215px; */
  height: 160px;
}

.first-part b,
.secund-part b,
.third-part b {
  font-size: 20px;
}

.first-part p,
.secund-part p,
.third-part p {
  color: var(--branco);
  /* font-size: 18px; */
  font-size: 15px;
  margin: 3px;
}

.first-part a {
  color: var(--branco);
  /* font-size: 18px; */
  text-decoration: none;
  margin-bottom: 13px;
  cursor: pointer;
}

.first-part a:hover {
  text-decoration: underline;
}

.first-part a:active {
  color: var(--azul-claro);
}

p.secund-subtitle {
  font-weight: bold;
  margin: 0;
}

.btn-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 85px; */
  margin-top: 0px;
}

.btn-footer a {
  text-decoration: none;
  margin: auto;
  font-size: 18px;
  font-weight: bolder;
  font-family: inherit;
  letter-spacing: 0.1px;
  color: var(--branco);
  background-color: var(--azul-claro);
  padding: 6px 32px;
  border-radius: 21px;
  cursor: pointer;
  margin-left: 0;
}

.info-down-footer {
  display: block;
}

.info-img-midias {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 73px;
}

.info-img-midias img {
  width: 380px;
}

.info-down-midias img {
  width: 50px;
  margin-left: 20px;
}

#barra-down-footer {
  width: 100%;
  border-bottom: 3px solid var(--branco-opaco);
  margin-top: 33px;
}

.copyrights {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyrights {
  /* margin-top: 33px; */
  margin-top: 10px;
}

.copyrights p {
  color: var(--branco);
  /* font-size: 17px; */
  font-size: 13px;
}

.copyrights-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyrights-icon p {
  margin: 0;
}

.copyrights-icon span {
  /*color: red; */
  color: #fff;
  font-size: 12px;
  margin-left: 5px;
}

/* Fim Footer */

@media (min-width: 1601px) {
  /* Header */
  header {
    width: 100%;
    height: 980px;
    background-image: url(../img/top_background.jpg);
  }
  /* Fim Header */
  /* Rodapé  */
  footer {
    width: 100%;
    /* height: 675px;
         background-image: url(../img/footer-better.jpg);
        background-repeat: no-repeat;
        background-size: cover; */
  }
  .container-footer {
    display: block;
    width: 60%;
    margin: auto;
  }
  /* Fim Rodapé */
}

@media (max-width: 1600px) {
  /* Header */
  header {
    width: 100%;
    /* height: 845px; */
    height: 907px;
    background-image: url(../img/top_background-1600x925.jpg);
  }
  /* Fim Header */
  /* Rodapé */
  footer {
    width: 100%;
    height: auto;
    padding-bottom: 30px;
    /* height: 675px; */
    /* background-image: url(../img/footerIMG-1600.jpg);
        background-repeat: no-repeat;
        background-size: cover; */
  }
  .container-footer {
    display: block;
    width: 70%;
    margin: auto;
  }
  /* Fim Rodapé */
}

@media (max-width: 1400px) {
  /* Header */
  header {
    width: 100%;
    height: 810px;
    background-image: url(../img/top_background-1400x810.jpg);
  }
  /* Fim Header */
  /* Rodapé */
  footer {
    width: 100%;
    /* height: 674px;
         background-image: url(../img/footerIMG-1400.jpg);
        background-repeat: no-repeat;
        background-size: cover; */
  }
  .container-footer {
    width: 75%;
  }
  /* Fim Rodapé */
}

@media (max-width: 1200px) {
  /* Navbar */
  #navbarPage {
    width: 90%;
  }
  /*Fim Navbar */
  /* Header */
  header {
    width: 100%;
    height: 810px;
    background-image: url(../img/top_background-1200x810.jpg);
  }
  /* Fim Header */
  /* Formulário */
  .containerForm {
    width: 80%;
  }
  form {
    width: 100%;
  }
  .columnForm {
    width: 100%;
  }
  /* Fim formulário */
  /* Rodapé */
  /*  footer {
        width: 100%;
        height: 674px;
        background-image: url(../img/footerIMG-1200.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }*/
  .container-footer {
    width: 85%;
  }
  /* Fim Rodapé */
}

@media (max-width: 992px) {
  /* Navbar */
  #navbarPage {
    width: 95%;
  }
  #btnLista {
    display: flex;
  }
  #menuMobile {
    display: none;
    width: 300px;
    height: 100vh;
    padding-top: 15px;
    padding-right: 50px;
    position: absolute;
    top: 73px;
    right: 0px;
    background-color: var(--branco);
    border-left: 1px solid var(--branco-opaco);
    border-top: 1px solid var(--branco-opaco);
  }
  #menuMobile ul {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: -43px;
    display: flex;
    justify-content: end;
    align-items: end;
    width: 100%;
    flex-direction: column;
  }
  #menuMobile ul li {
    margin-bottom: 15px;
  }
  .boxMobile {
    position: relative;
  }
  #conteudo-solucoes {
    position: relative;
    height: 68px;
    top: 10px;
    left: -42px;
    padding: 0;
    text-align: end;
    background: none;
  }
  #conteudo-solucoes li {
    margin: 0;
  }
  ul#conteudo-solucoes li a {
    color: var(--branco-opaco);
    width: 175px;
    padding: 0;
  }
  #openMaisOpcoesDesktop {
    text-align: end;
  }
  /* Fim Navbar */
  /* Header */
  header {
    width: 100%;
    height: 665px;
    background-image: url(../img/top_background-992x665.jpg);
  }
  #headerContainer {
    width: 95%;
    padding-top: 260px;
  }
  #headerContainer h1 {
    font-size: 45px;
    margin-bottom: 46px;
  }
  #headerContainer img {
    width: 170px;
  }
  #subHeader {
    margin-top: -27px;
  }
  #opcoesFerramentas {
    width: 720px;
  }
  /* Fim Header */
  /* Sessão Reuniões Sem Problemas */
  .containerSegurancaParticipe {
    width: 95%;
  }
  .titulosSegurancaParticipe {
    font-size: 22px;
  }
  .boxTextosSegurancaParticipe {
    width: 61%;
  }
  .imgsSegurancaParticipe {
    width: 39%;
  }
  .imgsSegurancaParticipe img {
    height: 200px;
  }
  #containerReunioesSemProblemas {
    width: 95%;
  }
  #imgReunioesSemProblemas {
    width: 39%;
  }
  #imgReunioesSemProblemas img {
    height: 171px;
  }
  .textosSegurancaParticipe {
    font-size: 15px;
    width: 398px;
  }
  #boxTextosReunioesSemProblemas {
    width: 61%;
  }
  .tituloReunioesSemProblemas {
    font-size: 25px;
  }
  #textosReunioesSemProblemas {
    font-size: 15px;
  }
  /* Fim sessão Reuniões Sem Problemas*/
  /* Formulário */
  #credencie h3 {
    font-family: var(--montserrat);
    font-size: 32px;
  }
  /* Fim Formulário */
  /* Rodapé */
  /* footer {
        width: 100%;
        height: 665px;
         background-image: url(../img/footerIMG-992.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }*/
  .container-footer {
    width: 90%;
  }
  .info-img-midias img {
    width: 310px;
  }
  .info-down-midias img {
    width: 40px;
  }
  /* Fim Rodapé */
}

@media (max-width: 768px) {
  /* Header */
  header {
    width: 100%;
    height: 665px;
    background-image: url(../img/top_background-768x665.jpg);
  }
  #opcoesFerramentas {
    width: 95%;
    justify-content: center;
  }
  /* Fim Header */
  /*  Sessão Segurança e Proteção */
  .containerSegurancaParticipe {
    flex-direction: column;
  }
  .boxTextosSegurancaParticipe {
    width: 95%;
    margin: auto;
  }
  .titulosSegurancaParticipe {
    width: 95%;
    text-align: center;
    margin: auto;
    margin-bottom: 15px;
  }
  .textosSegurancaParticipe {
    text-align: center;
    width: 399px;
    margin: auto;
  }
  .imgsSegurancaParticipe {
    width: 95%;
    justify-content: center;
    margin-top: 30px;
  }
  .imgsSegurancaParticipe img {
    height: 250px;
  }
  #containerReunioesSemProblemas {
    flex-direction: column;
  }
  #imgReunioesSemProblemas {
    width: 95%;
    justify-content: center;
  }
  #imgReunioesSemProblemas img {
    height: 250px;
  }
  #boxTextosReunioesSemProblemas {
    width: 95%;
    margin: auto;
    align-items: center;
  }
  .tituloReunioesSemProblemas {
    text-align: center;
  }
  #textosReunioesSemProblemas {
    text-align: center;
    width: 441px;
  }
  /*  Fim sessão Segurança e Proteção */
  /* Sessão Dúvidas */
  #containerDuvidas {
    width: 95%;
  }
  #boxIconsTextosDuvidas {
    width: 100%;
    flex-direction: column;
  }
  .iconsTextosDuvidas {
    width: 100%;
    margin-bottom: 25px;
  }
  /* Fim sessão Dúvidas */
  /* Formulário */
  .containerForm {
    width: 90%;
  }
  .form-estado select,
  .form-cidade select {
    width: 100%;
  }
  /* Fim Formulário */
  /* Rodapé */
  /* footer {
        width: 100%;
        height: 792px;
         background-image: url(../img/footerIMG-768.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }*/
  .first-part,
  .secund-part,
  .third-part {
    width: 177px;
  }
  .first-part p,
  .secund-part p,
  .third-part p {
    font-size: 16px;
  }
  .first-part a {
    font-size: 16px;
  }
  .secund-part p,
  .third-part p {
    font-size: 16px;
  }
  .first-part b,
  .secund-part b,
  .third-part b {
    font-size: 16px;
  }
  .btn-footer {
    padding-top: 90px;
  }
  .info-img-midias img {
    width: 280px;
  }
  .info-down-midias {
    width: 189px;
  }
  .info-down-midias img {
    width: 40px;
    -bottom: 8px;
  }
  .copyrights p {
    font-size: 15px;
  }
  .copyrights-icon span {
    font-size: 19px;
  }
  /* Fim Rodapé */
}

@media (max-width: 576px) {
  /* Header */
  header {
    width: 100%;
    height: 495px;
    background-image: url(../img/top_background-576x495.jpg);
  }
  #headerContainer {
    padding-top: 240px;
  }
  #headerContainer h1 {
    font-size: 27px;
  }
  #subHeader {
    margin-top: 60px;
  }
  #tituloOpcaoFerramentas {
    font-size: 22px;
  }
  #headerContainer p {
    font-size: 25px;
  }
  /* Fim Header */
  /* Sessão Segurança e Proteção / reuniões Sem problemas */
  .textosSegurancaParticipe {
    text-align: center;
    width: 100%;
  }
  .imgsSegurancaParticipe img {
    width: 100%;
    max-width: 350px;
    height: 100%;
  }
  #imgReunioesSemProblemas img {
    width: 100%;
    max-width: 350px;
    height: 100%;
  }
  #textosReunioesSemProblemas {
    width: 100%;
    max-width: 410px;
  }
  .textosSegurancaParticipe {
    width: 100%;
    max-width: 396px;
  }
  #imgVideoChamadaMobile {
    width: 100%;
    max-width: 250px;
    height: 100%;
  }
  /* Fim sessão Segurança e Proteção / reuniões Sem problemas */
  /* Sessão Dúvidas */
  .titulosDuvidas {
    font-size: 19px;
  }
  .textosDuvidas {
    font-size: 14px;
  }
  #videoDuvidas {
    height: 300px;
  }
  /* Fim sessão Dúvidas */
  /* Sessão Formulário */
  .containerForm {
    width: 85% !important;
  }
  #credencie h3 {
    font-size: 23px !important;
  }
  .divBtnEnviar {
    width: 100%;
  }
  /* Fim sessão Formulário */
  /* Rodapé */
  /*footer {
        width: 100%;
        height: 1161px;
         background-image: url(../img/footerIMG-576.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }*/
  .footer-info {
    padding-top: 45px;
    flex-direction: column;
    width: 236px;
    margin: auto;
  }
  .first-part,
  .secund-part,
  .third-part {
    width: 90%;
  }
  .first-part a {
    font-size: 17px;
  }
  .secund-part b,
  .third-part b {
    font-size: 18px;
  }
  .secund-part p,
  .third-part p {
    font-size: 17px;
    line-height: 19px;
  }
  .btn-footer {
    margin-top: -130px;
  }
  .btn-footer a {
    margin-left: auto;
  }
  .info-down-footer {
    margin-top: -40px;
  }
  .info-img-midias {
    flex-direction: column;
  }
  .info-img-midias img {
    width: 85%;
  }
  .info-down-midias {
    width: 230px;
    margin-top: 35px;
  }
  .info-down-midias img {
    width: 50px;
    margin-bottom: 15px;
  }
  .copyrights {
    flex-direction: column;
    width: 95%;
    margin: auto;
    margin-top: 35px;
  }
  .copyrights p {
    font-size: 17px;
  }
  .copyrights-icon {
    margin-top: 15px;
    margin-bottom: 30px;
  }
  /* Fim Rodapé */
}
