#plano-diretor {
  margin-top: 60px;
}

#plano-diretor .container {
  flex-direction: column;
}

#plano-diretor .plano {
  display: flex;
  align-items: center;
  border: 1px solid #808080;
  margin-bottom: 30px;
}

#plano-diretor .plano:last-child {
  margin-bottom: 0;
}

#plano-diretor .infos {
  width: 80%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

#plano-diretor .download {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: 185px;
  background-color: #E9E9E9;
  border-left: 1px solid #808080;
}

#plano-diretor h3 {
  color: #808080;
  font-size: 1.3rem;
  font-family: Arial;
  font-weight: bold;
  margin-bottom: 10px;
}

#plano-diretor p {
  color: #808080;
  font-size: 1rem;
  font-family: Arial;
  font-weight: normal;
  line-height: 20px;
}

#plano-diretor p span {
  font-weight: bold;
}

#plano-diretor h4 {
  color: #808080;
  font-size: 1rem;
  font-family: Arial;
  font-weight: bold;
  display: flex;
  margin-top: 10px;
}

#plano-diretor h4::before {
  content: url('/common/default/img/icone-calendario.png');
  margin-right: 5px;
}

#plano-diretor .download a {
  background-color: #004982;
  font-size: 1.3rem;
  color: #FFFFFF;
  font-family: Arial;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  width: 180px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid transparent;
  transition: all.3s;
}

#plano-diretor .download a:hover {
  color: #004982;
  background-color: #FFFFFF;
  border: 2px solid #004982;
}

@media (max-width:768px) {
  #plano-diretor .infos {
    width: 70%;
  }

  #plano-diretor .download {
    width: 30%;
    height: 225px;
  }
}

@media (max-width:576px) {
  #plano-diretor {
    margin-top: 20px;
  }

  #plano-diretor .plano {
    flex-direction: column;
    flex-wrap: wrap;
  }

  #plano-diretor .infos,
  #plano-diretor .download {
    width: 100%;
  }

  #plano-diretor .download {
    height: 100px;
    border-left: 0;
    border-top: 1px solid #808080;
  }
}