/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed|Roboto:400,500,700");

/* =========================================
   VARIABLES & COLORS
   ========================================= */
:root {
  /* Brand / Theme Colors */
  --theme-primary: #B64D4A;
  --theme-secondary: #3F536E;

  /* Text Colors */
  --text-gray: #666666;
  --text-placeholder: #808080;
  --link-hover-green: #57b846;
  --white: #ffffff;
  --black: #000000;

  /* Form & Input Specifics */
  --input-focus-text: rgba(255, 255, 255, 0.6);
  --symbol-color: #808080;
  --symbol-focus-color: rgba(14, 14, 51, 0.8);
  --btn-border-light: rgba(255, 255, 255, 0.2);
  --alert-red: #c80000;

  /* Navbar Specifics */
  --nav-text-light: rgb(228, 228, 228);
  --nav-dropdown-bg: rgba(0, 0, 0, 0.99);
  --nav-dropdown-text: rgb(43, 46, 59);

  /* Gradients & Shadows */
  --shadow-overlay-start: rgba(0, 0, 0, 0);
  --shadow-overlay-end: rgba(0, 0, 0, 0.3);
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: "Roboto", sans-serif;
}



/*---------------------------------------------*/
a {
  font-family: "Roboto";
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
  margin: 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: var(--link-hover-green);
}

/*---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

p {
  font-family: "Roboto";
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
  margin: 0px;
}

ul,
li {
  margin: 0px;
  list-style-type: none;
}


/*---------------------------------------------*/
input {
  outline: none;
  border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus,
input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input::-webkit-input-placeholder {
  color: var(--text-placeholder);
}

input:-moz-placeholder {
  color: var(--text-placeholder);
}

input::-moz-placeholder {
  color: var(--text-placeholder);
}

input:-ms-input-placeholder {
  color: var(--text-placeholder);
}

textarea::-webkit-input-placeholder {
  color: var(--text-placeholder);
}

textarea:-moz-placeholder {
  color: var(--text-placeholder);
}

textarea::-moz-placeholder {
  color: var(--text-placeholder);
}

textarea:-ms-input-placeholder {
  color: var(--text-placeholder);
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}




/*//////////////////////////////////////////////////////////////////
[ Contact ]*/

.bg-contact100 {
  width: 100%;
  background: var(--theme-secondary);
  background: linear-gradient(297deg, var(--theme-secondary) 0%, var(--theme-secondary) 67%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.container-contact100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

/* Shine */
.hover14 figure {
  position: relative;
}

.hover14 figure::before {
  position: absolute;
  top: 10%;
  left: -10%;
  z-index: 2;
  display: block;
  content: '';
  width: 10%;
  height: 100%;
  background: -webkit-linear-gradient(left, var(--shadow-overlay-start) 0%, var(--shadow-overlay-end) 100%);
  background: linear-gradient(to right, var(--shadow-overlay-start) 0%, var(--shadow-overlay-end) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.hover14 figure:hover::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.wrap-contact100 {
  width: 1163px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 110px 130px 157px 148px;
}

/*------------------------------------------------------------------
[  ]*/
.contact100-pic {
  width: 310px;
  padding-top: 55px;
}

.contact100-pic img {
  max-width: 100%;
}


/*------------------------------------------------------------------
[  ]*/
.contact100-form {
  width: 390px;
}

.contact100-form-title {
  display: block;
  font-family: "Roboto";
  font-size: 24px;
  font-weight: bold;
  color: var(--white);
  line-height: 1.2;
  text-align: left;
  padding-bottom: 36px;
}

input.input100 {
  height: 50px;
  border-radius: 25px;
  padding: 0 30px 0 50px;
}

input.input100[name="email"] {
  padding: 0 30px 0 54px;
}

textarea.input100 {
  min-height: 150px;
  border-radius: 25px;
  padding: 14px 30px;
}

/*---------------------------------------------*/
.wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 10px;
}

.input100 {
  display: block;
  width: 100%;
  background: var(--white);
  font-family: "Roboto";
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-gray);
}


/*------------------------------------------------------------------
[ Focus ]*/
.focus-input100 {
  display: block;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: var(--input-focus-text);
}

.input100:focus+.focus-input100 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 60px 25px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 60px 25px;
    opacity: 0;
  }
}

.symbol-input100 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  pointer-events: none;
  color: var(--symbol-color);
  font-size: 15px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus+.focus-input100+.symbol-input100 {

  color: var(--symbol-focus-color);
  padding-left: 22px;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-contact100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

.contact100-form-btn {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: var(--theme-primary);
  background: linear-gradient(297deg, var(--theme-primary) 0%, var(--theme-primary) 67%);
  font-family: "Roboto";
  font-size: 15px;
  font-weight: bold;
  border: 2px solid var(--btn-border-light);
  line-height: 1.5;
  color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact100-form-btn:hover {
  background: var(--theme-primary);
  background: linear-gradient(297deg, var(--theme-primary) 0%, var(--theme-primary) 67%);
}

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 1200px) {
  .contact100-pic {
    width: 33.5%;
  }

  .contact100-form {
    width: 44%;
  }
}

@media (max-width: 992px) {
  .wrap-contact100 {
    padding: 110px 80px 157px 90px;
  }

  .contact100-pic {
    width: 35%;
  }

  .contact100-form {
    width: 55%;
  }
}

@media (max-width: 768px) {
  .wrap-contact100 {
    padding: 110px 80px 157px 80px;
  }

  .contact100-pic {
    display: none;
  }

  .contact100-form {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .wrap-contact100 {
    padding: 110px 15px 157px 15px;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: var(--white);
  border: 1px solid var(--alert-red);
  border-radius: 13px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;

  font-family: "Roboto";
  color: var(--alert-red);
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: var(--alert-red);
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 13px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


.nav-menu {
  background: var(--theme-secondary);
  background: linear-gradient(297deg, var(--theme-secondary) 0%, var(--theme-secondary) 67%);
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
}

.nav-menu.fixed-top {
  animation-duration: 0s;
  animation-name: fadeIn;
  -webkit-box-shadow: 0px 10px 22px -6px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 10px 22px -6px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 10px 22px -6px rgba(0, 0, 0, 0.5);
  background: var(--theme-secondary);
  background: linear-gradient(297deg, var(--theme-secondary) 0%, var(--theme-secondary) 67%);
  left: 0;
  position: fixed !important;
  right: 0 !important;
  top: 0 !important;
  width: 100%;
  z-index: 99;
}

.nav-menu.full-black {
  background: var(--black);
  position: relative;
}

.nav-menu .navbar-brand {
  line-height: 2.5;
}

.nav-menu .navbar {
  padding: 0;
}

.nav-menu .navbar .navbar-brand {
  padding: 0;
}

.nav-menu .navbar .navbar-nav .nav-item {
  position: relative;
}

.nav-menu .navbar .navbar-nav .nav-item .nav-link {
  line-height: 80px;
  padding: 0 14px;
  letter-spacing: 0px;
  font-size: 15px;
  font-weight: bold;
  color: var(--nav-text-light);
  transition: all 0.5s ease 0s;
}

.nav-menu .navbar .navbar-nav .nav-item .nav-link:before {
  position: absolute;
  content: "";
  background: var(--theme-primary);
  background: linear-gradient(333deg, var(--theme-primary) 0%, var(--theme-primary) 100%);
  width: 23px;
  height: 2px;
  top: 34%;
  left: 38%;
  transform: translateY(-15px);
  transition: all 0.5s ease 0s;
  opacity: 0;
}

.nav-menu .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-primary);
}

.nav-menu .navbar .navbar-nav .nav-item:hover .nav-link,
.nav-menu .navbar .navbar-nav .nav-item.active .nav-link {

  color: var(--theme-primary);
}

.nav-menu .navbar .navbar-nav .nav-item:hover .nav-link:before,
.nav-menu .navbar .navbar-nav .nav-item.active .nav-link:before {
  transform: translateY(-10px);
  opacity: 1;
}

.nav-menu .navbar .navbar-nav .dropdown-menu {
  border-radius: inherit;
  background: var(--nav-dropdown-bg);
}

.nav-menu .navbar .navbar-nav .dropdown-menu a,
.nav-menu .navbar .navbar-nav .dropdown-menu .comment-area .comment-box .user-cmnt .coments a i,
.comment-area .comment-box .user-cmnt .coments a .nav-menu .navbar .navbar-nav .dropdown-menu i {
  color: var(--nav-dropdown-text);
  font-weight: 300;
  padding: 4px 20px;
  font-size: 14px;
}

.nav-menu .navbar .navbar-nav .dropdown-menu a:hover,
.nav-menu .navbar .navbar-nav .dropdown-menu .comment-area .comment-box .user-cmnt .coments a i:hover,
.comment-area .comment-box .user-cmnt .coments a .nav-menu .navbar .navbar-nav .dropdown-menu i:hover {
  color: var(--theme-primary);
  color: linear-gradient(333deg, var(--theme-primary) 0%, var(--theme-primary) 100%);
  background: transparent;
}

.nav-menu .icon-menu ul li {
  display: inline-block;
  margin: 0 5px;
  line-height: 80px;
}

.nav-menu .icon-menu ul li a i,
.nav-menu .icon-menu ul li .comment-area .comment-box .user-cmnt .coments a i i,
.comment-area .comment-box .user-cmnt .coments a .nav-menu .icon-menu ul li i i {
  font-size: 16px;
}

.nav-menu .navbar-brand {
  line-height: 2.5;
}

.logoCabecalho {
  height: 40px;
  margin-top: 20px;

}

.iconBgprime {
  /*width: 350px;*/
  /*height: 300px;*/
  float: left;
  border-radius: 50px;
}