/* Geral -------------------------------------------------------*/

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}
@font-face{
  font-family: Lucida-Caligraphy;
  src: url("../fonts/lucida-calligraphy-italic.ttf");
}

a {
  color: #e43c5c;
}

a:hover {
  color: #ea6981;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", sans-serif;
}

.row {
  margin: 0;
}


/*---Topo das paginas comuns sem ser a incial--------*/
.topo{
  width: 100%;
  height: 40vh;
  background: url("../imagens/martelo.png") top center;
  background-size: cover;
  position: relative; 
}

/*--------Back to top button----------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  transition: 0.5s;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #e43c5c;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top:hover {
  bottom: 19px;
}


/*-------- Header-------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header .logo {
  font-size: 25px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

#header, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  padding: 12px 0;
}


#header.header-scrolled, #header.header-inner-pages {
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

#header.header-scrolled .logo a, #header.header-inner-pages .logo a {
  color: #493c3e;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}


/*---- Menu de navegação------------------------*/
/* Desktop */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 25px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 15px;
  padding: 0 4px;
  letter-spacing: 0.4px;
  font-family: "Poppins", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #e43c5c;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  transform: scaleX(1);
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #493c3e;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #e43c5c;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

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

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

.header-scrolled .nav-menu > ul > li > a, .header-inner-pages .nav-menu > ul > li > a {
  color: #493c3e;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}


/* Mobile Navigation */

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  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 {
  color: #e43c5c;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

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

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

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

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

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

.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-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(45, 37, 38, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

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


/* Slider */

.carousel .btn {
  background: #e43c5c;
  border: 0;
  padding: 10px 28px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.carousel .btn:hover {
  background: #d01d3f;
}

.container-fluid {
  padding: 0;
}

#mainSlider .carousel-inner, #mainSlider .carousel-item {
  position: relative;
  height: 100vh;
}

#mainSlider .carousel-caption {
  width: 450px;
  height: 250px;
  padding-left: 15px;
  padding-right: 15px;
  bottom: 5rem;
}

#mainSlider .carousel-caption h2 {
  
}

#mainSlider .carousel-caption p {
  font-size: 22px;
  font-weight: 300;
  color: #FFF;
}

.main-btn {
  background: #e43c5c;
  border: 0;
  padding: 10px 28px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.main-btn:hover {
  background: #d01d3f;
}

.carousel-indicators .active {
  background-color: #e43c5c !important;
 
}

.carousel-item {
  position: relative;
}

.carousel-item:after{
  content: '';
  position: absolute;
 /* background: rgba(0, 0, 0, 0.3); /*escurecer imagem no carrousel*/
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1; 
}

.carousel-caption {
  width: 450px;
  height: 200px;
  padding-left: 15px;
  padding-right: 15px;
  bottom: 5rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
}

.carousel-item > img {
  position: relative;
  top: 0;
  left: 0;
  min-width: 100%;
 
}

/* Carousel base class */
/*
*.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
/*.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
/*.carousel-item {
  height: 32rem;
}

.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 32rem;
}
*/

.carousel .btn {
  background: #e43c5c;
  border: 0;
  padding: 10px 28px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.carousel .btn:hover {
  background: #d01d3f;
}

/*------------------- Escritório--------------------------------*/
#escritorio .descricao {
  background: #fff;
  padding: 60px 5px;
  text-align: justify;
}

#escritorio .fotos {
   padding: 60px 30px;  
}


/*--------------------------------------------------------------
# Detalhes Escritório
--------------------------------------------------------------*/
.escritorio-detalhes .escritorio-detalhes-container {
  position: relative;  
}

.escritorio-detalhes .escritorio-detalhes-carousel {
  position: relative;
  z-index: 10;
}

.escritorio-detalhes .escritorio-detalhes-carousel .owl-nav, .escritorio-detalhes .escritorio-detalhes-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.escritorio-detalhes .escritorio-detalhes-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.escritorio-detalhes .escritorio-detalhes-carousel .owl-dot.active {
  background-color: #e43c5c !important;
}


/*---- áreas de atuação----------------------------*/
.areasdeatuacao {
  padding-bottom: 30px;
  padding-top: 30px;
}

#areasdeatuacao .box{
  margin-top: 10px;
  margin-bottom: 20px;
  padding-top: 30px;
}

.areasdeatuacao .icon-box {
  padding: 30px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 2px 0 35px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  text-align: center;
}

.areasdeatuacao .icon-box::before {
  content: '';
  position: absolute;
  background: #fdeff2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.4s;
  z-index: -1;
}

.areasdeatuacao .icon-box:hover::before {
  background: #e43c5c;
  top: 0;
  border-radius: 0px;
}

.areasdeatuacao .icon {
  margin-bottom: 15px;
}

.areasdeatuacao .icon i {
  font-size: 48px;
  line-height: 1;
  color: #e43c5c;
  transition: all 0.3s ease-in-out;
}

.areasdeatuacao .titulo {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.areasdeatuacao .titulo a {
  color: #111;
}

.areasdeatuacao .descricao {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.areasdeatuacao li{
  text-align: left;
}

.areasdeatuacao .icon-box:hover .titulo a, .areasdeatuacao .icon-box:hover .descricao{
  color: #fff;
}

.areasdeatuacao .icon-box:hover .icon i {
  color: #fff;
}

.areasdeatuacao .icon-box:hover li{
  color: #fff;
}


/*-------Equipe------------------------------*/
.equipe {
  background: #fff;
  padding: 60px 0;
}

.equipe .container{
  padding-left: 0;
  padding-right: 0;
}

#equipe .equipecol{
  padding-left: 3px;
  padding-right: 3px;
}

.equipe .membro {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.equipe .membro .membro-imagem {
  position: relative;
  overflow: hidden;
}

.equipe .membro .cargo {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}

.equipe .membro .membro-informacao {
  padding: 25px 15px;
}

.equipe .membro .membro-informacao h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #493c3e;
}

.equipe .membro .membro-informacao span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.equipe .membro .membro-informacao p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.equipe .membro:hover .cargo {
  opacity: 1;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.topo{
  width: 100%;
  height: 40vh;
  background: url("../imagens/martelo.png") top center;
  background-size: cover;
  position: relative; 
}

.topo-atuacao{
  width: 100%;
  height: 40vh;
  background: url("../imagens/apertodemaos6.jpg") top center;
  background-size: cover;
  position: relative; 
}

.contato .info {
  width: 100%;
  background: #fff;
}

.contato .info i {
  font-size: 20px;
  color: #e43c5c;
  float: left;
  width: 44px;
  height: 44px;
  background: #fdeff2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contato .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #493c3e;
}

.contato .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #816a6e;
}

.contato .info .email, .contato .info .telefone {
  margin-top: 40px;
}

.contato .info .email:hover i, .contato .info .endereco:hover i, .contato .info .telefone:hover i {
  background: #e43c5c;
  color: #fff;
}

.contato .form input, .contato .form textarea {
  box-shadow: none;
   
}

.contato .form input:focus, .contato .form textarea:focus {
  border-color: #e43c5c;
  box-shadow: 0 0 3px #e43c5c;
 
}

.contato textarea {
  padding: 10px 12px;
}

.contato button[type="submit"] {
  background: #e43c5c;
  border: 0;
  padding: 10px 28px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contato button[type="submit"]:hover {
  background: #d01d3f;
}

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Footer------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.2);
}

#footer .footer-top {
  padding: 35px 0;
  background: #f6f4f4;
}

#footer .collogorodape {
  display: flex;
  justify-content: center;
  align-items: center !important;
}

#footer .endereco{
  display: flex;
  justify-content: center;
  align-items: center !important;
  margin-top: 30px;
}

#footer .telefone {
  display: flex;
  justify-content: center;
  align-items: center !important;
  margin-top: 30px;
}

#footer .credits {
  padding-top: 12px;
  margin-bottom: 0px;
  font-size: 13px;
}

#footer .credits img{
  width: 2%;
  height: 2%;
}


/* responsive */
@media(max-width: 768px) {
  
  /* geral */
  .container {
    padding: 20px 0;
  }
  
  /* slider */
  #mainSlider .carousel-inner, #mainSlider .carousel-item {
    height: auto;
  }

  #mainSlider .carousel-caption h2 {
    font-size: 28px;
  }

  #mainSlider .carousel-caption p {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .carousel-caption {
    left: 10%;
    right: 10%;
  }
  
  /* about */
  #about-area img {
    margin-top: 100px;
  }
  
  /* data */
  .circle-box div {
    padding: 0 10px;
  }

  #data-area p {
    font-size: 16px;
  }
  
  /* team */
  .card-title {
    font-size: 14px;
  }

  .card-text {
    font-size: 12px;
  }

  /* apply */
  #apply-area .apply-box {
    padding: 50px 25px;
  }

  /* news */
  #news-area p {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  #email-input {
    width: 70%;
  }

  #call-area {
    margin-top: 30px;
  }

  #call-area .container {
    padding: 30px;
  }

  #call-area p, #call-area #call-btn {
    font-size: 16px;
  }

}


@media(max-width: 425px) {

  /* slider */
  #mainSlider {
    margin-top: 90px;
  }

  #mainSlider .carousel-caption {
    top: 5%;
  }

  #mainSlider .carousel-caption h2 {
    font-size: 18px;
    margin-bottom: 40px;
  }

  #mainSlider .carousel-caption p {
    display: none;
  }

  .carousel-caption .main-btn {
    
    font-size: 14px;
  }

  /* about */
  .main-title {
    font-size: 30px;
  }

  #about-area img {
    margin-top: 0;
    margin-bottom: 30px;
  }

  /* data */
  .circle-box {
    width: 50%;
  }

  #team-area .col-md-3 {
    width: 50%;
    margin-bottom: 30px;
  }

  /* apply */
  #apply-area {
    height: auto;
  }

  #company-img {
    display: none;
  }

  /* filter */
  #portfolio-area .filter-btn {
    margin-bottom: 20px;
  }

  .project-box {
    width: 50%;
  }

  /* news */
  #news-area .main-title {
    font-size: 24px;
  }

  #news-area p {
    font-size: 16px;
  }

  #email-input {
    width: 80%;
  }

  #call-area p, #call-area #call-btn {
    font-size: 14px;
    letter-spacing: 0;
  }

  #call-area p, #call-area #call-btn {
    margin: 0;
    width: 50%;
  }

  /* contact */
  .contact-box {
    border: none;
    margin-bottom: 0;
  }

}



@media (max-width: 640px) {
  #header .logo {
    font-size: 1.5em;
    padding: 0 10px;
  }
}

@media (max-width: 414px) {
  #header .logo {
    font-size: 1.4em;
    padding: 0 10px;
  }

  .mobile-nav-toggle {
    top: 9px;
  }

}

@media (max-width: 411px) {
  #header .logo {
    font-size: 1.3em;
    padding: 0 10px;
  }

  .mobile-nav-toggle {
    top: 10px;
  }

}

@media (max-width: 360px) {
  #header .logo {
    font-size: 1.3em;
    padding: 0 10px;
  }

  .mobile-nav-toggle {
    top: 10px;
  }

  #escritorio .descricao {
  padding: 10px 20px;
  font-size: 0.8em;
  }

  #escritorio .fotos {
   padding: 0px 30px;  
   margin-top: 0px;
  }

}

@media (max-width: 320px) {
  #header .logo {
    font-size: 1.1em;
    padding: 0 10px;
  }

  .mobile-nav-toggle {
    top: 8px;
  }
}