/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #90764B;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #C59D6C;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.entre-linha {
    margin-bottom: 60px;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #5B400C;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  left: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #C59D6C;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  padding: 21px 0;
  background: #fff;
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled,
#header.header-pages {
  height: 80px;
  padding: 4px 0;
}

#header .logo img {
    padding: 0;
    max-height: 80px;
    margin-top: -15px;
}

#header.header-scrolled, .logo img {
    padding-top: 15px;
}

.main-pages {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  position: relative;
  background: url("../img/intro_bg.jpg") center bottom no-repeat;
  background-size: cover;
}

#intro .intro-img {
    width: 30%;
    float: right;
    padding: 130px 0 0 0;
}

#intro .intro-info {
    width: 70%;
    float: left;
    padding: 190px 0 70px 0;
}

#intro .intro-info h2 {
    color: #fff;
    margin-bottom: 80px;
    font-size: 52px;
    font-weight: 700;
    line-height: 150%;
}

#intro .intro-info h2 span {
  color: #F9E5CF;
  text-decoration: underline;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #5B400C;
  border: 2px solid #5B400C;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #5B400C;
  border-color: #5B400C;
  color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #5B400C;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #C59D6C;
  text-decoration: none;
}

.area-cliente {
    display: block;
}

.mobile {
    display: none;
}

@media (max-width: 991px) {
    .area-cliente {
        display: none;
    }

    .mobile {
        display: block;
    }
}

.dropdown-menu {
    width: 300px !important;
    height: 190px;
    overflow: hidden;
    padding-top: 8px;
}

#login {
    height: 260px;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9998;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #74b5fc;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9997;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #004289;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9996;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #ecf5ff;
}

/* Seção Sobre Nós
--------------------------------*/

#sobre {
  background: #fff;
  padding: 60px 0;
}

#sobre .about-container .background {
  margin: auto;
}

#sobre .about-container .content {
  background: #fff;
}

#sobre .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#sobre .about-container p {
    line-height: 26px;
    text-align: justify;
}

#sobre .about-container p:last-child {
  margin-bottom: 0;
}

#sobre .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#sobre .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #5B400C;
  transition: all 0.3s ease-in-out;
}

#sobre .about-container .icon-box .icon i {
  color: #5B400C;
  font-size: 24px;
}

#sobre .about-container .icon-box:hover .icon {
  background: #5B400C;
}

#sobre .about-container .icon-box:hover .icon i {
  color: #fff;
}

#sobre .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#sobre .about-container .icon-box .title a {
  color: #283d50;
}

#sobre .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#sobre .about-extra {
  padding-top: 60px;
}

#sobre .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

/* Serviços Section
--------------------------------*/

#servicos {
  padding: 60px 0 40px 0;
  box-shadow: inset 0 0 12px 0 rgba(0, 0, 0, 0.1);
}

#servicos .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#servicos .box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#servicos .icon {
  position: absolute;
  left: 20px;
  top: calc(50% - 32px);
}

#servicos .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

#servicos .title {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 18px;
    text-align: center;
}

#servicos .title a {
  color: #111;
}

#servicos .box:hover .title a {
  color: #5B400C;
}

#servicos .description {
  font-size: 14px;
  margin-left: 68px;
  line-height: 24px;
  margin-bottom: 0;
    text-align: justify;
}

/* Depoimentos Section
--------------------------------*/

#depoimentos {
  padding: 60px 0;
  box-shadow: inset 0 0 12px 0 rgba(0, 0, 0, 0.1);
}

#depoimentos .section-header {
  margin-bottom: 40px;
}

#depoimentos .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

#depoimentos .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  margin-left: 140px;
}

#depoimentos .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#depoimentos .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

#depoimentos .owl-nav,
#depoimentos .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#depoimentos .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#depoimentos .owl-dot.active {
  background-color: #5B400C;
}

/* Equipe Section
--------------------------------*/

#equipe {
  background: #fff;
  padding: 60px 0;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
}

#equipe .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

#equipe .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#equipe .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
}

#equipe .member:hover .member-info {
  background: rgba(0, 62, 128, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#equipe .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#equipe .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#equipe .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#equipe .member .social {
  margin-top: 15px;
}

#equipe .member .social a {
  transition: none;
  color: #fff;
}

#equipe .member .social a:hover {
  color: #5B400C;
}

#equipe .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Clientes Section
--------------------------------*/

#clientes {
  padding: 60px 0;
  box-shadow: inset 0 0 12px 0 rgba(0, 0, 0, 0.1);
}

#clientes .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clientes .client-logo {
  padding: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clientes .client-logo:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#clientes img {
  transition: all 0.4s ease-in-out;
}

/*Início Box Calendário de Obrigaçoes*/
#box-calendario {
    background-color: #DDDDDD;
    width: 100%;
    min-height: 100vh;
    max-height: auto;
    padding-top: 80px;
    margin: 0 auto;
}

#box-calendario h3 {
    margin-bottom: 50px;
}

iframe#calendarios {
    display: block;
    overflow: hidden;
    margin: 0 auto;
}

iframe#obrigacoes {
    display: block;
    margin-top: -9px;
    overflow: hidden;
}
/*Fim Box Calendário de Obrigaçoes*/

/*Início Box Noticias*/
#noticias {
    background: #f2f2f2;
    padding-top: 80px;
    padding-bottom: 140px;
}

#noticias h3 {
    font-size: 26px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    #noticias {
        background: #f2f2f2;
        padding-top: 50px;
        padding-bottom: 100px;
    }

    #noticias h3 {
        font-size: 22px;
        margin-top: 60px;
        margin-bottom: 30px;
    }
}

/*Fim Box Notícias*/

/* Contato Section
--------------------------------*/

#contato {
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contato .section-header {
  padding-bottom: 30px;
}

#contato .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5B400C;
}

#contato .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contato .social-links {
  padding-bottom: 20px;
}

#contato .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #5B400C;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #5B400C;
}

#contato .social-links a:hover {
  background: #5B400C;
  color: #fff;
}

#contato .info {
  color: #283d50;
}

#contato .info i {
  font-size: 32px;
  color: #5B400C;
  float: left;
  line-height: 1;
    font-weight: 100;
}

#contato .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 14px;
}

.contact-form input[type="text"], .contact-form input[type="email"] {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #ccc;
    border-radius: 0;
    color: #444;
    height: 40px;
    margin-bottom: 16px;
    padding-left: 20px;
    width: 100%;
}

.contact-form textarea  {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #ccc;
    border-radius: 0;
    color: #444;
    height: 140px;
    padding: 20px;
    width: 100%;
}

.contact-form button[type="submit"] {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #ccc;
    color: #444;
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
    padding: 12px 30px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    border-radius: 30px;
}

.contact-form button[type=submit]:hover {
    color: #fff;
    border: 1px solid #73B72A;
    background: #73B72A;
}

.contact-form  #sendmessage {
    color: #73B72A;
    border: 1px solid #73B72A;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-form #sendmessage.show, .contact-form #errormessage.show, .contact-form .show {
    display: block;
}

#contato .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #524D2A;
    padding: 0 0 30px 0;
    color: #eee;
    font-size: 14px;
}

#footer .footer-top {
    background: #5C552E;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

.box-titulo-rodape {
    margin-bottom: 20px;
}

#footer .footer-top .footer-info p {
    font-size: 13px;
    line-height: 24px;
    text-align: justify;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
    color: #ecf5ff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #90764B;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #C59D6C;
    color: #fff;
}

#footer .footer-top h4 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul li {
    padding: 4px 0;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #ffffff;
}

#footer .footer-top .footer-links ul a:hover {
    color: #F8E1C7;
}

#footer .footer-top .footer-links i {
    margin-right: 10px;
}

#footer .footer-top .footer-links ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ol li {
    padding: 4px 0;
    text-align: left;
    color: #34495e;
    line-height: 26px;
    list-style: none;
}

#footer .footer-top .footer-links ol a {
    color: #ecf5ff;
}

#footer .footer-top .footer-links ol a:hover {
    color: #F8E1C7;
}

#footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
    border: 0;
    padding: 6px 8px;
    width: 65%;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    text-align: center;
    font-size: 13px;
    color: #f1f7ff;
}

#footer .credits a {
    color: #F8E1C7;
}

#footer .credits a:hover {
    color: #F8E1C7;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 992px) {
  #depoimentos .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 991px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #intro {
    padding: 140px 0 60px 0;
  }

  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }

  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
      padding: 80px 0 30px 0;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
      padding: 80px 0 30px 0;
  }

  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .section-header p {
    width: 100%;
  }

  #depoimentos .testimonial-item {
    text-align: center;
  }

  #depoimentos .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }

  #depoimentos .testimonial-item h3,
  #depoimentos .testimonial-item h4,
  #depoimentos .testimonial-item p {
    margin-left: 0;
  }
}

@media (max-width: 574px) {
  #intro {
    padding: 100px 0 20px 0;
  }
}

/*Section Botões*/

.box-botoes {
    background: linear-gradient(160deg, #5B400C, #C59D6C);
    height: auto;
    padding-top: 40px;
    padding-bottom: 100px;
}

.box-botoes h1 {
    font-size: 26px;
    font-weight: 300;
    line-height: 38px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

.abertura-empresa {
    display: block;
    width: 320px;
    color: #ffffff;
    font-size:16px;
    border: none;
    border-radius:30px;
    padding: 12px 20px;
    margin: auto;
    background-color: #5CB85C;
}

.abertura-empresa:hover {
    background:#449D44;
    color: #ffffff;
    font-size:16px;
}

@media (max-width: 768px) {
    .abertura-empresa {
        width: 100%;
        padding: 10px 5px;
        font-size:15px;
    }
    .trocar-contabilidade {
        width: 100%;
        padding: 10px 5px;
        font-size:15px;
    }
}

/*Botões*/

.modal {
    z-index: 9999;
}

.modal-body {
    padding: 30px 60px 30px 60px;
}

.box-btn-formulario-enviar {
    float: right;
    margin-top: 10px;
}
.box-btn-formulario-enviar input {
    height: 40px;
    float: left;
    background-color: #5CB85C;
    border: 0 none;
    color: #fff;
    font-family: "Roboto",Helvetica,Arial,sans-serif;
    font-size: 16px;
    padding: 5px 15px;
    border-radius: 5px;
}

.box-btn-formulario-enviar input:hover {
    background-color: #449D44;
}

.btn-fechar {
    height: 40px;
    float: left;
    background-color: #d62c1a;
    border: 0 none;
    color: #fff;
    font-family: "Roboto",Helvetica,Arial,sans-serif;
    font-size: 16px;
    padding: 5px 15px;
    border-radius: 5px;
    margin-top: 10px;
}

.btn-fechar:hover {
    background-color: #953b39;
}

/* Cotação de Moedas */
iframe#cotacao {
    display: block;
    overflow: hidden;
    padding: 0;
    margin: 0;
}