@charset "UTF-8";

html {
  font-family: sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oxygen';
}

/*Todas as alterações no @media que criarem um grid utilizarão para a linha o clearfix também*/
.clearfix::after, .row::after{
  content: "";
  display: block;
  clear: both;
}

.button {
  display: inline-block;
  padding: 0.9em 2.5em;
  background: #58c4c4;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
}

.button:hover {
  background: #37a0a0;
}

.top-header {
  text-align: center;
}

.top-header-logo {
  margin: 0.5em;
}
.top-nav {
  background: #612674;
  text-align: center;
}

.top-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-nav a {
  color: #fff;
  text-decoration: none;
  padding: 1em;
  display: block;
}

.top-nav a:hover {
  background: #7c3792;
}

.top-content {
  padding: 1em;
  text-align: center;
  background: #f6f6f6;
}
.top-content-title {
  color: #612674;
  font-size: 1.375em;
  margin: 1.375em;
}
.top-content-subtitle {
  color: #a87bb7;
  font-size: 1em;
  line-height: 1.5;
}

.middle-content {
  padding: 2em;
  background: #f6f6f6;
  text-align: center;
}

.middle-content-title {
  font-size: 1.25em;
  color: #652e78;
  text-transform: uppercase;
}
.middle-content p {
  line-height: 1.5em;
  color: #222;
}

.middle-content span[class^='icon'] {
  font-size: 3.5em;
  color: #652e78;
}

.main-content {
  padding: 2em;
}

.main-content p{
  line-height: 1.2;
}

.main-content-article{
  margin-bottom: 3.5em;
}

.main-content-title{
  font-size: 1.25em;
  color: #652e78;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: normal;
}

.hidden {
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  display: block;
}

.footer{
  background: #25303e;
  color: #83969f;
  text-align: center;
  padding-bottom: 2em;
}

.footer-menushare {
  background: #303d4c;
  padding: .5em;
}

.footer-menushare li{
  display: inline-block;
  margin: 0 1em;
}

.footer-menushare a{
  text-decoration: none;
  font-size: 1.1em;
  color: #fff;
}

/* O nome utilizado quando utilizamos esta alteração de formato
com o @media é breaking point*/

/*780px / 16px = 49,75em */
@media screen and (min-width: 48.75em) {
  
  .top-header-logo{
    float: left;
  }

  .top-nav {
    background: transparent;
    float: right;
    margin-top: 25px;
  }

  .top-nav ul {
    margin: 0;
    padding: 0;
  }

  .top-nav li {
    display: inline-block;
  }

  .top-nav a {
    color: #713a84;
  }
  
  .top-nav a:hover {
    background: #e7d9fc;
  }
  
  .top-content{
    background: #521a66;
    color: #fff;
  }
  .top-content-title, .top-content-subtitle{
    color: #fff;
  }

  .col-1-4 {
    width: 44%;
    margin: 3%;
    float: left;
  }
  
  .main-content-article .button {
    float: right;
  }
}

/*1000px / 16px = 62.5em */
@media screen and (min-width: 62.5em){

  .top-content {
    /* background-color: #521a66;
    background-image: url(../images/bg_topo_1198x670.jpg); */
    background: #521a66 url(../images/bg_topo_1198x670.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 30em;
    box-sizing: border-box;
    /* height: 15em; */
    padding-top: 15em;
  }

}