/* geral */
body, p, h1, h2, input, textarea {
  margin: 0;
  font-family: Roboto;
}

h2 {
  font-size: 30px;
}

/* navbar */
#navbar {
  background-color: black; /* red */
  color: #FFF;
  padding: 0 15px;
  height: 60px;
}

#navbar h2, #navbar ul, #navbar-list li,#navbar nav {
  display: inline-block;
}

#navbar h2 {
  margin: 0;
  line-height: 60px;
  margin-left: 55px;
}

#navbar img {
  height: 40px;
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
}

#navbar nav {
  float: right;
}

#navbar ul {
  margin-top: 22px;
}

#navbar li {
  margin: 0 10px;
}

#navbar-list li a {
  text-decoration: none;
  color: #FFF;
}

#navbar-list li a:hover {
  border-bottom: 1px solid #FFF;
}

/* banner */
#main-banner {
  height: 70vh;
  background-image: url('../img/bgprogramacao.jpg');
  background-size: cover;
  padding-top: 15vh;
}

#banner-info {
  width: 40%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  color: #FFF;
  padding: 50px;
}

#banner-info img {
  height: 120px;
  border-radius: 50%;
  background-color: white;
  margin-top: 30px;
  margin-bottom: 30px;
}

#banner-info p {
  color: white;
  font-weight: bold;
  width: 200px;
  margin-right: auto;
  margin-left: auto;
  padding: 15px;
}

/* about */

#about-section {
  text-align: center;
  background-color: black;
  color: #FFF;
  padding-top: 50px;
  height: 350px;
}

#about-section h2 {
  margin-bottom: 20px;
}

#about-section p {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  line-height: 30px;
}

/* skills */

#skills-section {
  margin-top: -100px;
  background-color: #FFF;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #DDD;
  border-radius: 10px;
}

#skills-section .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.skills-container {
  flex: 1 1 1;
  text-align: center;
  padding: 60px 25px;
}

.central {
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
}

.skills-container h3 {
  color: black;
  font-size: 20px;
}

.skills-container img {
  height: 60px;
  padding: 15px;
  margin-bottom: 25px;
  border-top: 1px solid black;
  border-left: 1px solid black;
  border-bottom: 4px solid black;
  border-right: 4px solid black;
}

.skills-container .subtitle {
  font-weight: bold;
  color: black;
  margin-top: 50px;
  margin-bottom: 15px;;
}

.skills-container p {
  line-height: 25px
}

/* jobs */

#jobs-section {
  text-align: center;
  padding-top: 50px;
}

#jobs-section h2 {
  color: black;
  margin-bottom: 30px;
}

#jobs-section p {
  margin-bottom: 50px;
}

#jobs-section a {
  font-weight: bold;
  color: black;
}

.job-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.job-box {
  flex: 1 1 200px;
  margin-left: 25px;
  margin-right: 25px;
  height: 300px;
  background-size: cover;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
}

.proj1 {
  background-image: url('../img/proj1.jpg');
}

.proj2 {
  background-image: url('../img/proj2.jpg');
}

.proj3 {
  background-image: url('../img/proj3.jpg');
}

/* footer */

footer {
  padding: 50px 0;
  background-color: black;
  color: #FFF;
  text-align: center;
}

footer img {
  height: 50px;
  margin: 30px 0;
}

footer p {
  margin-top: 25px;
}

footer form {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
}

footer input, footer textarea {
  border: none;
  padding: 15px;
  box-sizing: border-box;
  margin-bottom: 20px;
  width: 100%;
  display: block;
}

footer .detail {
  font-weight: bold;
}

/*responsivo celulares -media query*/
@media(max-width: 450px){

  /*geral*/
  p, input, textarea, #navbar-list li a{
    font-size: 1.2rem;
  }

  /*navbar*/
  #navbar h2{
    display: none;
  }
  #navbar img{
    top: 9px;
  }
  #navbar ul{
    margin-top: 1.1rem;
  }

  /*banner*/

  #main-banner{
    height: 50vh;
    padding-top: 5vh;
    padding-bottom: 10vh;
  }

  #banner-info{
    width: 100%;
  }

  #banner-info{
    margin: -50px;
    width: auto;
  }

  /*about*/
  #about-section{
    padding: 2rem;
    height: auto;
    padding-bottom: 50px;
  }

  /*skills*/
  #skills-section{
    margin-top: -35px;
    width: 100%;
  }

  #skills-section .container{
    flex-direction: column;
  }
  .skills-container h3, .skills-container .subtitle{
    font-size: 1.3rem;
  }

  .skills-container{
    padding: 25px;
  }
  .skills-container.central{
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

/*jobs*/

#jobs-section h2, #jobs-section p{
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
.job-container{
  flex-direction: column;
  margin-bottom: 0px;
}

.job-box{
margin-bottom: 2rem;
flex: 1 1 300px;
}

/*footer*/
footer{
  padding: 50px 15px;
}

footer form{
  width: 100%;
}

.detail{
  margin-top: 10px;
  display: block;
}
}

