* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  /*outline: 1px solid red !important;*/
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.container, .incontainer  {
  max-width: 1920px;
  width: 90%;
  overflow: hidden;
}

.container:after, .container:before, .incontainer:before {
  content: none;
}

.topnav {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  /* background-color: #e9ba2d; */
}

.topnav .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.topnav__left {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.topnav__left .topnav__item:first-child {
  border-left: none;
}

.topnav__right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  position: relative;
}

.topnav__right .tradutor__btn {
  cursor: pointer;
}

.topnav__right #tradutor {
  display: none;
  position: absolute;
  right: 100%;
}

.topnav__item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 15px;
  color: #FFF;
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3019607843);
}

.nav {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;

  background:rgba(255, 255, 255, 0.8588235294117647);
  position: relative; 
  width: 100%;
  z-index: 25;
  transition: .2s ease;
  /* top: 47px; */
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.nav .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  overflow: visible;
}

.nav .container img { max-width:400px; }
	
.nav__logo {
  max-height: 250px;
}

.nav .links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;

  width: auto;
}

.nav__link {
  text-transform: uppercase;
  color: #000000;
  padding: 50px 15px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
}

.nav__link:after {
  position: absolute;
  content: '';
  height: 3px;
  /*background-color: #e9ba2d;*/
  bottom: calc(50% - 14px);
  left: 15px;
  transition: .4s ease;
  width: 0;
}

.nav__link:hover:after {
  width: calc(100% - 30px);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown__content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;

  display: none;
  position: absolute;
  top: 75%;
  left: 15px;
  transition: .2s ease;
  border-top: 3px solid #e9ba2d;
  background: #ffffff;
  width: 16em;
  box-shadow: 0 2px 35px -1px rgba(15,15,15,.5);
}

.nav__dropdown:hover .nav__dropdown__content{
  display: flex;
}

.nav__dropdown__content__link {
  width: 100%;
  padding: 1em 1em;
  text-align: left;
  text-decoration: none;
  color: #000000;
  font-weight: normal;
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
  transition: .2s ease;
  position: relative;
  font-size:11px;
}

.nav__dropdown__content__link:after {
  position: absolute;
  content: '';
  width: 0;
  height: 3px;
  /*background-color: #e9ba2d;*/
  bottom: calc(50% - 14px);
  left: 1em;
  transition: .4s ease;
}

.nav__dropdown__content__link:hover:after {
  width: calc(100% - 4em);
}

.nav__dropdown__content__link:hover {
  background-color: #f5f5f5;
}

.nav__search {
  position: relative;
  width: 18%;

  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.nav__search__input {
  padding: 15px 30px 15px 15px;
  border-radius: 50px;
  /* background-color: #e9ba2d; */
  color: #ffffff;
  border: none;
  width: 100%;
  outline: none;
}

.nav__search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.nav__search__input::placeholder {
  color: #ffffff;
}

.nav__search__icon {
  position: absolute;
  right: 10px;
  top: 0px;
  color: #ffffff;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  height: 100%;
  width: 22%;
}

.navmobile__search__container { display:inline;}


.scrollednav {
  background-color: #ffffff;
  top: 0;
  position:fixed;
  max-height:none;
}

.home {
  /*background: url(../images/bg-home.jpg);*/
  min-height: 909px;
  position: relative;

  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.glide {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glide__track {
  height: 100%;
}

.glide__slides {
  height: 100%;
  position: relative;
}

.glide__slides::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.4;
}

.glide__slide {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
}

.home .container {
  z-index: 1;

  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.home__title {
  color: #ffffff;
  font-size: 4vh;
  text-shadow: 0px 0px 10px black;
}

.home__tab__container {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-top: 8vh;
}

/* RADIO BUTTONS */
.home__tab {
  position: relative;
}

.home__tab__radio__label {
  padding: 20px;
  background-color: #000000;
  color: #ffffff;
  transition: .2s ease;
  display: flex;
  cursor: pointer;
  min-width: 8vw;

  justify-content: center;
}

.home__tab__radio__label:hover {
  background-color: #e9ba2d;
  color: #FFF;
}

.home__tab .home__tab__radio {
  position: absolute;
  opacity: 0;
}

.home__tab__radio:checked + .home__tab__radio__label {
  background-color: #e9ba2d;
  color: #FFF;
}
/* END RADIO BUTTONS */

.home__tab:nth-child(2) {
  margin: 0 2vw;
}

.home__panel {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.home__panel select {
  padding: 10px;
  border-radius: 5px;
  width: 15%;
  background: rgba(0,0,0,0.5);
  color: white;
  border: 1px solid #444;
}

.home__panel__search {
  color: #FFF;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.home__frase {
  z-index: 1;
  font-size: 2vh;
  text-shadow: 0px 0px 10px black;
  color: #ffffff;
  text-align: center;
  opacity: 0;
}

.home__frase__btn {
  padding: 8px 35px;
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  border: 3px solid #e9ba2d;
  text-decoration: none;
  display: inline-block;
  transition: .2s ease;
  z-index: 1;
  cursor: pointer;
  pointer-events: all;
  margin-top: 1%;
  margin-bottom: 10%;
  opacity: 0;
}

.home__frase__btn:hover {
  background-color: #e9ba2d;
  color: #FFF;
}

.destaque {
  display: flex;
  justify-content: center;
  position: relative;
}

.destaque .container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  overflow: visible;

  margin-top: -5%;
  padding-bottom: 5%;
}

.destaque__card {
  width: 46.1%;
  padding-top: 28.8%;
  background-color: #000000;
  position: relative;
  background-size: cover;
  cursor: pointer;
  transition: .4s ease;
  overflow: hidden;
  position: relative;
}

.destaque__card:before {
  content: '';
  position: absolute;
  left: 40px;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #e9ba2d;
  z-index: 1;
  transition: all .3s, left .2s, width .2s, height .2s .2s;
}

.destaque__card:hover {
  transform: scale(1.1);
  z-index: 1;
  border-radius: 10px;
  box-shadow: 0 2px 35px -1px rgba(15,15,15,.5);
}

.destaque__card img {position: absolute;width: 100%;height: 100%;left: 0;top: 0;}

.destaque__card__content {
  position: absolute;
  top: 0;
  color: #ffffff;
  width: 100%;
  height: 100%;
  background-color: rgba(10,10,10,.8);
/*  background: linear-gradient(to bottom, rgba(0,0,0,0) 20%,rgba(0,0,0,1) 100%); */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 45%,rgba(0,0,0,0.7) 80%);
  padding: 30px;

  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}

.destaque__card__tag__tarja {
  padding: 5px;
  background-color: #e9ba2d;
  color: #FFF;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  left: 20px;
}

.destaque__card__tag__tarja2 {
  padding: 5px;
  background-color: rgba(0,0,0,0.5);
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  top: 50px;
  left: 20px;
  max-width: calc(100% - 40px);
}

.destaque__info__nome {
  font-size: 20px;
  word-wrap: break-word;
}

.destaque__info__local {
  font-size: 20px;
  word-wrap: break-word;
}

.destaque__info__valor {
  float: right;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  padding:5px;
}

.destaque__info__tags {
  display: none;
  flex-flow: row nowrap;
  margin-top: 20px;
  animation: fade .5s;
  overflow: hidden;
  justify-content: flex-start;
}

@keyframes fade {
  from {opacity: 0;}
  to {opacity: 1;}
}

.destaque__info__tag {
  border-radius: 50px;
  border: 3px solid rgba(251, 247, 247, 0.1);
  background-color: transparent;
  padding: 15px;
  margin-right: auto;
}

.destaque__info__tag span {
  /* color: #e9ba2d; */
  font-size:16px;
  font-weight: bold;
}

.destaque__card:hover .destaque__info__tags {
  display: flex;
}

.cards {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}

.cards .container {
  display: flex;
  flex-flow: row wrap;
}

.card {
  width: 22%;
  margin: auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 30px 10px 80px 10px;
  transition: .4s ease;
  text-decoration: none;
  color: #000000;
}

.card:hover {
  background: #e9ba2d;
  box-shadow: 0px 0px 0px 5px #f3f2f2;
  color: #ffffff !important;
}

.card:hover .card__title:after {
  background-color: #ffffff;
}

.card__img {
  width: 100px;
  height: 100px;
  border: 3px solid #e9ba2d;
  border-radius: 50%;
}

.card__title {
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 0;
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 40px;
}

.card__title:after {
  content: '';
  width: 25px;
  height: 3px;
  background-color: #e9ba2d;
  position: absolute;
  left: calc(50% - 12.5px);
  bottom: 0;
}

.card__description {
  margin-top: 40px;
  text-align: center;
}

.destaque2 {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.destaque2 .container {
  display: flex;
  flex-flow: column nowrap;
}

.destaque2__nav {
  display: flex;
  flex-flow: row wrap;
  align-content: center;
  align-items: center;
}

.destaque2__title {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 28px;
  color: #373737;
  padding-right: 60px;
}

.destaque2__btn {
  text-transform: uppercase;
  cursor: pointer;
  color: #656565;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 15px;
  width: auto;
  font-size: 14px;
  border-radius: 3px;
  text-align: center;
  background-color: white;
  border: 3px solid #656565;
  margin: 0px 10px;
  border-radius: 30px;
  min-width: 120px;
  transition: .2s ease;
}

.destaque2__btn:hover {
  background: #e9ba2d;
  border: 3px solid #e9ba2d;
  color: #FFF;
}

.destaque2__btn .active {
  background: #e9ba2d;
  border: 3px solid #e9ba2d;
  color: black;
}

.destaque2__card__container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-content: flex-start;
  align-items: flex-start;

  padding-top: 30px;
}

.destaque2__card {
  width: 30%;
  min-height: 330px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  position: relative;
  z-index: 1;
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 2%;
  animation-duration: .5s;
  overflow: hidden;
}

.destaque2__card img {position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: -2;}

.destaque2__card__back {
  display: flex;
  opacity: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  padding: 20px;
  transition: .6s ease;
  transform: translateY(72%);
}

.destaque2__card:hover .destaque2__card__back {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(30%);
}

.destaque2__card::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(0,0,0,0.5) 100%); */
  background: linear-gradient(to bottom, rgba(255,255,255,0) 70%,rgba(0,0,0,0.9) 100%);
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.destaque2__card__tag {
  padding: 5px;
  background-color: #e9ba2d;
  color: #FFF;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  left: 20px;
}

.destaque2__card__tag2 {
  padding: 5px;
  background-color: rgba(0,0,0,0.5);
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  top: 50px;
  left: 20px;
  max-width: calc(100% - 40px);
}

.destaque2__card__valor {
  font-size: 20px;
  margin: 10px 0;
  font-weight: 600;
  color: #FFF;
  
}

.destaque2__card__features {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  width: 100%;
  border-top: 4px solid #e9ba2d;
  padding: 20px 0;
}

.destaque2__card__feature {
  width: 25%;
  text-align: center;
}

.destaque2__card__feature span {
  font-size: 20px;
}

.diversos {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.diversos__tabs {
  display: flex;
  flex-flow: row wrap;
}

.diversos__tab {
  position: relative;
  margin-right: 20px;
}

.diversos__tab__radio__label {
  padding: 20px;
  color: #000000;
  transition: .2s ease;
  display: flex;
  cursor: pointer;
  justify-content: center;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
}

.diversos__tab__radio__label:hover {
  /* background-color: #e9ba2d; */
  color:#FFF;
}

.diversos__tab .diversos__tab__radio {
  position: absolute;
  opacity: 0;
}

.diversos__tab__radio:checked + .diversos__tab__radio__label {
  background-color: #e9ba2d;
  color: #FFF;
}

.diversos__content {
  background-color: #000000;
  color: #ffffff;
  padding: 30px 0;
  font-size: 13px;
}

.diversos__content p {
  line-height: 1.6;
}

.diversos__content__col {
  padding: 0 30px;
  width: 50%;
}

.diversos__links {
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-items: flex-start;
align-content: flex-start;
height: 100%;
}

.diversos__link {
color: #ffffff;
text-decoration: none;
transition: .2s ease;
line-height: 2.3;
}

.diversos__link:hover {
  text-decoration: underline;
  padding-left:15px;
}

.diversos__link i {
  /*color: #e9ba2d;*/
  margin: 0 5px;
}

.diversos__title {
  font-weight: 500;
  font-size: 25px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  line-height: 1.6;
  flex-basis: 100%;
  margin-bottom: 20px;
}

.diversos__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #e9ba2d;
  line-height: 1.6;
}

.diversos__btn {
  padding: 8px 35px;
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  border: 3px solid #e9ba2d;
  text-decoration: none;
  display: inline-block;
  transition: .2s ease;
  z-index: 1;
  cursor: pointer;
  pointer-events: all;
  background-color:transparent;
}

.diversos__btn:hover {
  background-color: #e9ba2d;
  color: #FFF;
}

.diversos__content__areadocliente {
  display: none;
  flex-flow: row wrap;
}

.diversos__content__areadocliente .diversos__btn {
  margin-bottom: 40px;
}

.diversos__content__newsletter {
  display: none;
  padding: 0 30px;

  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}

.newsletter__input {
  width: 15%;
  min-width:150px;
  border-radius: 0px;
  border: 1px solid #585858;
  padding: 13px 5px;
  margin: 10px 10px;
	background-color: #000;
    color: #FFF;  
}

.newsletter__cod {
  font-size: 23px;
  color: #e9ba2d;
  text-align: center;
  font-weight: bold;
}

.newsletter__cod__input {
  width: 5%;
  min-width:80px;
  border-radius: 0px;
  border: 1px solid #585858;
  padding: 13px 5px;
  margin: 10px 10px;
  text-align: center;
	background-color: #000;
    color: #FFF;  
}

.diversos__content__maispesquisados .diversos__links {
  flex-flow: row wrap;
  justify-content: flex-start;
  width: 100%;
}

.diversos__content__maispesquisados .diversos__link {
  flex-basis: 50%;
}


.diversos__content__maispesquisados {
  display: flex;
  flex-flow: column nowrap;
  padding: 0 30px;
}

.diversos__content__financiamento {
  display: none;
  flex-flow: column nowrap;
  padding: 0 30px;
  align-items: flex-start;
}

.diversos__content__correspondentecaixa {
  display: none;
  flex-flow: column nowrap;
  padding: 0 30px;
  align-items: flex-start;
}

.diversos__content__procurandopor {
  display: none;
  flex-flow: column nowrap;
  padding: 0 30px;
  align-items: flex-start;
}

.social {
  display: flex;
  justify-content: center;
}

.social .container {
  display: flex;
  justify-content: center;
  padding: 50px 0;
}

.social .container a {
  text-decoration: none;
  color: #000000;
  margin: 0 10px;
}

.social .container i {
  font-size: 40px;
}

.rodapenav {
  display: flex;
  justify-content: center;
  min-height:15px;

  /* background-color: #e9ba2d; */
}

.rodapenav .container {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.rodapenav__link {
  text-decoration: none;
  text-transform: uppercase;
  color: #FFF;
  padding: 10px;
  font-weight: 600;
  transition: .2s ease;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.rodapenav__link:last-child {
  border-right: none;
}

.rodapenav__link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.rodape {
  background-color: #000000;
  display: flex;
  justify-content: center;
  color: #ffffff;
}

.rodape .container {
  padding: 50px 0;
  display: flex;
  flex-flow: row wrap;
}

.rodape__col {
  width: 30%;
  border-right: 1px solid #212121;
  display: flex;
  flex-flow: column nowrap;
  padding: 0 30px;
  align-items: flex-start;
}

.rodape__col:last-child {
  border: none;
}

.rodape__title {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  line-height: 1.6;
  margin-bottom: 20px;
}

.rodape__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  /*background-color: #e9ba2d;*/
  line-height: 1.6;
}

.rodape__link {
  color: #ffffff;
  text-decoration: none;
  transition: .3s ease;
  line-height: 2.3;
  padding-right: 10px;
}

.rodape__link:hover {
  text-decoration: underline;
  padding-left: 10px;
  padding-right: 0;
}

.rodape__link i {
  /* color: #e9ba2d; */
  margin: 0 5px;
}

.assinatura {
  background-color: #f3f2f2;
  display: flex;
  justify-content: center;
}

.assinatura .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

/*interna*/
.interna__content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}

.interna__content .container {
  line-height: 1.6;
  padding: 0px 0;
}

.interna__title {
  padding: 30px 5%;
  font-size: 28px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  background-color: #000000;
  color: #ffffff;
  text-transform: uppercase;
  width: 100%;
  /* margin-top: 115px; */
}
/*endinterna*/

@media (max-width: 1279px) {
  .nav .container {
    justify-content: center;
    padding-top: 20px;
  }
}

/*mobile*/
.topnavmobile {
  display: none;
}

.navmobile {
  display: none;
}

@media (max-width: 720px) {

  * {
    font-size: 12px;
  }

  .topnav {
    display: none;
  }

  .nav {
    display: none;
  }

  .navmobile {
    display: flex;
    justify-content: center;
    background-color: #ffffff;
  }

  .navmobile .container {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }

  .navmobile__logo {
    margin: 10px 0;
  }

  .navmobile__logo img {
		max-width:100%;
  }
  
  .navmobile__menu {
    outline: 0px solid rgba(0, 0, 0, 0.09);
    border: 1px solid rgba(0, 0, 0, 1) !important;
    border-radius: 50px;
    padding: 15px;
    width: 100%;
    color: #000000;
	margin-bottom:25px;
  }

  .navmobile__menu__item {
    text-transform: uppercase;
  }

  .navmobile__search__container {
    position: relative;
    margin: 10px 0;
    width: 100%;
	display:none;
  }

  .navmobile__search {
    border: 1px solid rgba(0, 0, 0, 0.09);
    background: white;
    border-radius: 30px;
    text-indent: 20px;
    color: #000000;
    width: 100%;
    padding: 15px;
  }

  .navmobile__search__btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 15%;
    background: none;
    border: none;
  }

  .topnavmobile {
    display: flex;
    justify-content: center;
    /*background-color: #e9ba2d; */
  }

  .topnavmobile .container {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
  }

  .topnav__item {
    padding: 10px;
    justify-content: flex-start;
    border: none;
  }

  .topnav__item:first-child {
    flex-basis: 60%;
  }

  .home {
    min-height: 700px;
  }

  .home__title {
    text-align: center;
  }

  .home__panel select {
    width: 100%;
    margin-bottom: 5px;
  }

  .home__panel__search {
    width: 100%;
    font-size: 20px;
    /* background-color: #e9ba2d; */
    border-radius: 5px;
    margin-top: 5px;
    padding: 12px;
    color: #ffffff;
  }

  .home__panel__search::after {
    content: 'Buscar';
    margin-left: 5px;
  }

  .home__frase {
    display: none;
  }
  
  .home .diversos__btn {
    display: none;
  }

  .destaque .container {
    width: 100%;
    margin-top: 10px;
  }

  .destaque__card {
    width: 100%;
    padding-top: 70%;
  }

  .destaque__info__tag {
    padding: 5px;
    text-align: center;
  }

  .card {
    width: 100%;
    padding: 30px 10px 40px 10px;
  }

  .destaque2__title {
    width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .destaque2__btn {
    width: 100%;
    margin-bottom: 5px;
  }

  .destaque2__card {
    width: 100%;
  }

  .destaque2__card__tag {
    display: none;
  }

  .destaque2__card__tag2 {
    display: none;
  }

  .diversos__tab {
    margin-right: 0;
    width: 100%;
  }

  .diversos__content__col {
    width: 100%;
  }

  .newsletter__input {
    width: 100%;
  }

  .newsletter__cod__input {
    width: 20%;
  }

  .rodapenav .container {
    flex-flow: row wrap;
  }

  .rodapenav__link {
    width: 100%;
  }

  .rodape .container {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .rodape__col {
    width: 100%;
    margin-bottom: 50px;
  }

  .assinatura .container {
    flex-direction: column;
  }

  .assinatura .container p {
    margin-bottom: 20px;
  }

  .interna__title {
    margin-top: 0;
  }
}
/*endmobile*/