/* Configuração global */
/* Variáveis */

:root {
  --blackColor: #000000;
  --whiteColor: #ffffff;
  --greenColor: #1bbc9b;
  --montserrat: 'Montserrat';
  --branco-azulado: #f8f9ff;

  --branco: #fefefe;
  --branco-opaco: #e6e6e6;
  --azul-escuro: #000b21;
  --azul-claro: #00ccff;
  --azul: #0065a0;
  --cinzaEscuro: #6d6969d4;
  --cinza: #6d69698c;
  --preto-transp: rgba(0, 0, 0, 0.8);
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  font-family: var(--montserrat);
  padding: 0;
  margin: 0;
}

/* NAVBAR */

#todaNavbar {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

#navbarPage {
  max-width: 1100px;
  width: 90%;
  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(--whiteColor-opaco);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Montserrat';
}

#menuMobile ul li p {
  color: var(--whiteColor-opaco);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

li #callLogin {
  font-weight: bold;
  border: var(--greenColor) 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(--greenColor);
  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(--whiteColor);
}

ul#conteudo-solucoes li a:hover {
  color: var(--greenColor);
  background-color: var(--whiteColor);
}

.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(--whiteColor-opaco); */
}

.btnListabarra {
  width: 100%;
  height: 2.8px;
  background-color: var(--whiteColor);
  border-radius: 5px;
}
/* Fim Navbar */

/* Header section */
header {
  width: 100%;
  height: 456px;
  padding: 0;
  background-image: url(../img/banner.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.headerContainer {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  display: block;
  text-align: center;
  padding-top: 210px;
}
.pageTitle {
  font-size: 36px;
  color: var(--whiteColor);
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
}
.pageTitleColor {
  color: var(--greenColor);
  font-size: 37px;
}
/* End of Header section */

/* About section */
.abutSection {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
  background-color: var(--blackColor);
  color: var(--whiteColor);
  margin-top: -1px;
}
.aboutContainer {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.aboutImgTextBox {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--whiteColor);
}
.aboutImgTextBox img {
  width: 160px;
}
.aboutTextBox * {
  margin: 0;
  padding: 0;
}
.aboutTextBox {
  display: block;
  text-align: center;
  width: auto;
}
.aboutText {
  font-size: 65px;
}
.aboutText span {
  font-weight: bold;
}
.aboutSubText {
  font-size: 23px;
  font-weight: normal;
}
.aboutPlainText {
  font-size: 19px;
  line-height: 25px;
  max-width: 650px;
  width: 100%;
  margin: 25px auto;
}
.aboutPlainText span {
  color: var(--greenColor);
}
.ensinaAiBtn {
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--whiteColor);
  background-color: var(--greenColor);
  padding: 9px 60px;
  white-space: nowrap;
  font-weight: bold;
  border-radius: 30px;
  display: inline-block;
  margin: 0 auto;
  transition: 0.4s;
}
.ensinaAiBtn:hover {
  transform: scale(1.02);
}
.ensinaAiBtn:active {
  opacity: 0.8;
}
/* End of About section */

/* What Can We Do */
.whatCanWeDoSection * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.whatCanWeDoSection {
  width: 100%;
  padding: 60px 0 50px;
  margin-top: -1px;
  background-color: var(--blackColor);
  color: var(--whiteColor);
}
.whatCanWeDoContainer {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.whatCanWeDoImg {
  max-width: 760px;
  width: 100%;
  margin: 10px auto 60px;
}
.whatCanWeDoTitle {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}
.whatCanWeDoCardBox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: start;
  row-gap: 60px;
}
.whatCanWeDoCard {
  width: 290px;
  min-height: auto;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.whatCanWeDoCardImg {
  width: 245px;
  height: 233px;
}

.whatCanWeDoText {
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  width: 90%;
  margin: 0 auto;
}

/* End of What Can We Do */

/* Benefits section */
.benefitsSection {
  width: 100%;
  background-color: var(--whiteColor);
  color: var(--blackColor);
  padding: 40px 0;
}
.benefitsSection * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.benefitsContaine {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.benefitsTitle {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  max-width: 400px;
  width: 100%;
  margin: 0 auto 30px;
}
.benefitsCardsBox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 30px;
  column-gap: 50px;
  margin-bottom: 15px;
}
.benefitsCard {
  width: 295px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.benefitsImg {
  width: 110px;
  height: 100px;
}
.benefitsCardTitle {
  font-weight: bold;
  font-size: 21px;
  margin-bottom: 10px;
}
.benefitsCardText {
  text-align: center;
  font-size: 15px;
}
.ensinaAibenefitsBtn {
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: bold;
  background-color: var(--greenColor);
  border-radius: 20px;
  padding: 8px 0;
  width: 240px;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
  transition: 0.4s;
}
.ensinaAibenefitsBtn:hover {
  transform: scale(1.02);
}
.ensinaAibenefitsBtn:active {
  opacity: 0.8;
}
/* End of Benefits section */

/* Revolution section */
.revolutionSection * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.revolutionSection {
  width: 100%;
  height: auto;
  padding: 70px 0 0;
  background-image: url(../img/background_Juntos-vamos-revolucionar.png);
  background-position: center center;
  background-size: cover;
  color: var(--whiteColor);
}
.revolutionContainer {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.revolutionTitle {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.revolutionText {
  text-align: center;
  font-size: 16px;
  line-height: 23px;
  max-width: 512px;
  width: 100%;
  margin: 0 auto 26px;
}
/* End of Revolution section */

/* Revolution Video section  */
.revolutionVideoSection {
  width: 100%;
  padding: 40px 0;
  margin-top: -1px;
  background-color: var(--blackColor);
  color: var(--whiteColor);
}
.revolutionVideoContainer {
  max-width: 1100px;
  width: 90%;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.revolutionVideoBox {
  max-width: 560px;
  width: 100%;
  height: 315px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 70px;
}
.ensinaAirevolutionVideoBtn {
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: bold;
  background-color: var(--greenColor);
  border-radius: 20px;
  padding: 8px 0;
  width: 240px;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
  transition: 0.4s;
  white-space: nowrap;
}
.ensinaAirevolutionVideoBtn:hover {
  transform: scale(1.02);
}
.ensinaAirevolutionVideoBtn:active {
  opacity: 0.8;
}
/* End of Revolution Video section  */

/* Sessão fomulário */
.sessao-formulario {
  display: block;
  width: 100%;
  background-color: var(--branco-azulado);
}
.title {
  font-size: 35px;
  max-width: 440px;
  width: 95%;
  margin-bottom: 0;
}
.formSubTitle {
  font-size: 22px;
  font-weight: bold;
  margin: 7px 0 10px;
}
.formTextBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.sessao-formulario * {
  box-sizing: border-box;
}
.container {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}
#credencie {
  width: 49%;
  color: var(--blackColor);
  /* padding-bottom: 50px; */
  /* padding-top: 50px; */
  font-family: 'Montserrat';
  margin-top: -28px;
}

/* #credencie h3 {
  color: var(--blackColor);
  text-transform: none;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
} */

.formContainerText {
  width: 42%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}
.formContainerText p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.containerForm {
  /* width: 700px; */
  width: 100%;
  margin: auto;
  max-width: none;
  margin-top: 50px;
  text-align: center;
}

.containerForm input {
  border: 1px solid #decaca;
  border-radius: 6px;
  font-family: var(--montserrat);
  padding-left: 15px;
  background-color: var(--branco);
}

textarea {
  border: 1px solid #decaca;
  padding-top: 13px;
  border-radius: 6px;
  width: 100%;
  background-color: var(--branco);
  font-family: var(--montserrat);
  padding-left: 15px;
  outline: none;
}

textarea::placeholder {
  font-size: 15px;
  font-family: 'Montserrat';
}

.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: -15px;
  width: 100%;
  margin-top: 29px;
  justify-content: space-between;
  column-gap: 10px;
}

.form-estado,
.form-cidade {
  width: 50%;
  display: flex;
  justify-content: space-between;
}

.form-estado p,
.form-cidade p {
  font-size: 16px;
  padding-left: 2px;
  color: var(--cinza);
  font-family: 'Montserrat';
}

.form-estado select,
.form-cidade select {
  height: 43px;
  border: 1px solid #decaca;
  font-size: 16px;
  margin: 0;
  width: 100%;
  color: var(--cinzaEscuro);
  background-color: var(--whiteColor);
  font-family: var(--montserrat);
  padding-left: 10px;
  border-radius: 6px;
}

.form-msg {
  margin-top: 20px;
}

.divBtnEnviar {
  display: block;
  width: 50%;
  margin: auto;
  margin-top: 30px;
}

.divBtnEnviar button:active {
  box-shadow: 1px 1px 5px var(--azul-escuro);
}

.divBtnEnviar button {
  border: none;
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: bold;
  background-color: var(--greenColor);
  border-radius: 20px;
  padding: 8px 0;
  width: 240px;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
  transition: 0.4s;
}
.divBtnEnviar button:hover {
  transform: scale(1.02);
}
.divBtnEnviar button:active {
  opacity: 0.8;
}

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 {
  outline: none;
}

label {
  color: var(--blackColor);
  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;
  background-color: var(--blackColor);
}

.container-footer {
  max-width: 1100px;
  width: 90%;
  display: block;
  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(--whiteColor);
  /* font-size: 18px; */
  font-size: 15px;
  margin: 3px;
}

.first-part a {
  color: var(--whiteColor);
  /* font-size: 18px; */
  text-decoration: none;
  margin-bottom: 13px;
  cursor: pointer;
}

.first-part a:hover {
  text-decoration: underline;
}

.first-part a:active {
  color: var(--greenColor);
}

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(--whiteColor);
  background-color: var(--greenColor);
  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;
}

.horizontalLogo {
  width: 380px;
}
.verticalLogo {
  display: none;
  max-width: 230px;
  width: 95%;
}

.info-down-midias img {
  width: 50px;
  margin-left: 20px;
  transition: 0.8s;
}
.info-down-midias img:hover {
  transform: scale(1.1);
}
.info-down-midias img:active {
  opacity: 0.9;
}

#barra-down-footer {
  width: 100%;
  border-bottom: 3px solid var(--whiteColor);
  margin-top: 33px;
}

.copyrights {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyrights {
  /* margin-top: 33px; */
  margin-top: 10px;
}

.copyrights p {
  color: var(--whiteColor);
  /* 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: #fff;
  font-size: 12px;
  margin-left: 5px;
}

/* Fim Footer */

@media (min-width: 1601px) {
  /* 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) {
  /* Rodapé */
  footer {
    width: 100%;
    height: auto;
    padding-bottom: 30px;
  }
  .container-footer {
    display: block;
    width: 70%;
    margin: auto;
  }
  /* Fim Rodapé */
}

@media (max-width: 1400px) {
  /* 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) {
  /* Formulário */
  .containerForm {
    width: 100%;
  }
  form {
    width: 100%;
  }
  .columnForm {
    width: 100%;
  }
  /* Fim formulário */

  /* Navbar */
  #navbarPage {
    width: 90%;
  }
  /*Fim Navbar */
  /* Rodapé */
  .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(--whiteColor);
    border-left: 1px solid var(--whiteColor-opaco);
    border-top: 1px solid var(--whiteColor-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(--whiteColor-opaco);
    width: 175px;
    padding: 0;
  }
  #openMaisOpcoesDesktop {
    text-align: end;
  }
  /* Fim Navbar */

  /* Formulário */
  .formTextBox {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .formContainerText,
  #credencie {
    width: 95%;
  }
  .title,
  .formSubTitle {
    margin: 0 auto 15px;
    text-align: center;
  }
  .formContainerText p {
    text-align: center;
  }
  #credencie {
    margin-top: -10px;
  }
  /* Fim Formulário */

  /* Rodapé */
  .container-footer {
    width: 90%;
  }
  .info-img-midias img {
    width: 310px;
  }
  .info-down-midias img {
    width: 40px;
  }
  /* Fim Rodapé */
}

@media (max-width: 768px) {
  /* Header section */
  header {
    height: 600px;
    background-image: url(../img/banner_Mobile.jpg);
    background-position: top;
  }
  .headerContainer {
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: end;
    padding: 0 0 50px;
    box-sizing: border-box;
  }
  /* End Of Header section */

  /* Revolution section */
  .revolutionSection {
    padding-top: 513px;
    height: auto;
    background-image: url(../img/background-revolucionar_mobile.jpg);
    background-position: top;
  }
  /* End Of Revolution section */

  /* Formulário */
  .containerForm {
    width: 90%;
  }
  .form-estado select,
  .form-cidade select {
    width: 100%;
  }
  /* Fim Formulário */

  /* Rodapé */
  .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 section */
  .pageTitle {
    font-size: 30px;
    width: 90%;
  }
  .pageTitleColor {
    font-size: 31px;
  }
  /* End of Header section */

  /* About Section */

  .aboutImgTextBox img {
    width: 120px;
  }
  .aboutText {
    font-size: 45px;
  }
  .aboutSubText {
    font-size: 20px;
  }
  /* End of About Section */

  .whatCanWeDoCard {
    height: auto;
  }
  /* Benefits section */
  .benefitsCard {
    height: auto;
  }
  .ensinaAibenefitsBtn {
    margin-top: 50px;
  }
  .benefitsTitle {
    font-size: 25px;
  }
  /* End of Benefits section */

  /* Revolution section */
  .revolutionSection {
    padding-top: 434px;
  }
  .revolutionTitle {
    font-size: 27px;
  }
  /* End Of Revolution section */

  /* Sessão Formulário */
  .containerForm {
    width: 85% !important;
  }
  .title {
    font-size: 25px;
  }
  .formSubTitle {
    font-size: 19px;
  }
  .divBtnEnviar {
    width: 100%;
  }
  .form-estado-cidade {
    flex-direction: column;
    row-gap: 10px;
  }
  .form-estado,
  .form-cidade {
    width: 100%;
  }
  /* Fim sessão Formulário */

  /* Rodapé */
  .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;
  }
  .horizontalLogo {
    display: none;
  }
  .verticalLogo {
    display: block;
  }
  /* Fim Rodapé */
}

@media (max-width: 360px) {
  .aboutImgTextBox {
    flex-direction: column;
  }
}
