@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100&display=swap');

body,
html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', 'Helvetica Neue', Arial, sans-serif;
}

/* ini: Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  /* cor do background que vai ocupar o body */
  z-index: 999;
  /* z-index para jogar para frente e sobrepor tudo */
}

#preloader .inner {
  position: absolute;
  top: 50%;
  /* centralizar a parte interna do preload (onde fica a animação)*/
  left: 50%;
  transform: translate(-50%, -50%);
}

.bolas>div {
  display: inline-block;
  background-color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  margin: 3px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: animarBola;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

}

.bolas>div:nth-child(1) {
  animation-duration: 0.75s;
  animation-delay: 0;
}

.bolas>div:nth-child(2) {
  animation-duration: 0.75s;
  animation-delay: 0.12s;
}

.bolas>div:nth-child(3) {
  animation-duration: 0.75s;
  animation-delay: 0.24s;
}

@keyframes animarBola {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  16% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }

  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/* end: Preloader */

/* Fontes e textos */
.fonte-cursiva {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2.5rem;
}

.fonte-larga {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
}

.fonte-cursiva2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.2rem;
}

.fonte-cursiva3 {
  font-family: 'Inter', sans-serif;
  font-size: 50px;
  text-align: left;
}

@media (max-width: 992px) {
  .fonte-cursiva3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
  }
}

.fonte-texto {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
}

.cor-0 {
  color: #B3832F;
}

.cor-1 {
  color: #D2A85E;
}

.cor-2 {
  color: #155091;
}

.cor-3 {
  color: #00152e;
}

.cor-4 {
  color: #CD7f32;
}


hr {
  max-width: 50px;
  border-width: 1px;
  border-color: #B3832F;
}

hr.light {
  border-color: #fff;
}

hr.light2 {
  max-width: 300px;
  border-color: #fff;
}

hr.light3 {
  max-width: 1100px;
  border-color: #155091;
}



a {
  color: inherit;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
}

/* CTA */

.cta {
  color: inherit;
  text-align: center;
  align-items: center;
  width: 150px;
  height: 50;
  border: solid 1px #B3832F;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 3px 15px;
  background-color: #ffffff;
}

.cta:hover {
  color: #fff;
  border: #04c3f6;
  /* border: #CD7f32; */
  text-decoration: none;
  background-image: linear-gradient(to right, #D2A85E 0, #B3832F 100%);
  /* background-image: linear-gradient(to right,#e4e4e4 0,#CD7f32 100%); */
}

.cta2 {
  text-align: center;
  align-items: center;
  width: 150px;
  height: 50;
  border: solid 1px #fff;
  padding: 3px 6px;
  text-decoration: none;
  border-radius: 3px 15px;
  background-color: #fff;
}

.cta2:hover {
  text-decoration: none;
  color: #fff;
  border: #04c3f6;
  background-image: linear-gradient(to right, #D2A85E 0, #B3832F 100%);
}

.cta-whats {
  background-color: #04c3f6;
  color: #fff;
  text-align: center;
  align-items: center;
  width: 150px;
  height: 50;
  border: solid 1px #000;
  margin-left: 50px;
  padding: 2px 3px;
  text-decoration: none;
}

.cta-whats:hover {
  text-decoration: none;
  background-color: #155091;
  color: #fff;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

.bg-primary {
  background-color: #155091 !important;
}

.bg-dark {
  background-color: #212529 !important;
}

.text-faded {
  color: rgba(255, 255, 255, 0.7);
}

.secao1-procedimentos {
  padding: 6rem 0;
  background-color: #04c3f6;
}

.secao2-procedimentos {
  padding: 6rem 0;
  background-color: #155091;
}

.bg-secao2 {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 4rem;
}

.bg-depoimentos-videos {
  padding: 6rem 0;

}

.BG-PADRAO2 {
  padding: 6rem 0;
  background-color: #F8F9FC;
}

.margems {
  margin-top: 10px;

}


.bg-default1 {
  padding: 6rem 0;
}

.bg-default2 {
  padding: 6rem 6rem;
}

.bg-default3 {
  padding: 6rem 6rem;
}

.bg-default4 {
  padding: 6rem 6rem;
}

section {
  padding: 8rem 0;
}

.section-heading {
  margin-top: 0;
}

::-moz-selection {
  color: #fff;
  background: #212529;
  text-shadow: none;
}

::selection {
  color: #fff;
  background: #212529;
  text-shadow: none;
}

img::selection {
  color: #fff;
  background: transparent;
}

img::-moz-selection {
  color: #fff;
  background: transparent;
}

body {
  -webkit-tap-highlight-color: #212529;
}

#mainNav {
  /* border-bottom: 1px solid rgba(33, 37, 41, 0.1); */
  background-color: #fff;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

#mainNav .navbar-brand {
  font-weight: 700;
  color: #D2A85E;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  padding: 0 0;
}

#mainNav .navbar-brand:focus, #mainNav .navbar-brand:hover {
  color: #B3832F;
}

#mainNav .navbar-nav>li.nav-item>a.nav-link,
#mainNav .navbar-nav>li.nav-item>a.nav-link:focus {
  font-size: 1rem;
  /* font-weight: 500; */
  color: #212529;
}

#mainNav .navbar-nav>li.nav-item>a.nav-link:hover,
#mainNav .navbar-nav>li.nav-item>a.nav-link:focus:hover {
  color: #B3832F;
}

/* color: #155091; } */
#mainNav .navbar-nav>li.nav-item>a.nav-link.active,
#mainNav .navbar-nav>li.nav-item>a.nav-link:focus.active {
  color: #E2C796 !important;
  background-color: transparent;
  border-bottom: solid 2px #E2C796
}

#mainNav .navbar-nav>li.nav-item>a.nav-link.active:hover,
#mainNav .navbar-nav>li.nav-item>a.nav-link:focus.active:hover {
  background-color: transparent;
}

@media (min-width: 992px) {
  #mainNav {
    border-color: #04c3f6;
    background-color: transparent;
  }

  #mainNav .navbar-brand {
    color: rgba(255, 255, 255, 0.7);
  }

  #mainNav .navbar-brand:focus, #mainNav .navbar-brand:hover {
    color: #fff;
  }

  #mainNav .navbar-nav>li.nav-item>a.nav-link {
    padding: 0.5rem 1rem;
  }

  #mainNav .navbar-nav>li.nav-item>a.nav-link,
  #mainNav .navbar-nav>li.nav-item>a.nav-link:focus {
    color: #fff;
  }

  #mainNav .navbar-nav>li.nav-item>a.nav-link:hover,
  #mainNav .navbar-nav>li.nav-item>a.nav-link:focus:hover {
    color: #B3832F;
  }

  #mainNav.navbar-shrink {
    border-bottom: 1px solid rgba(33, 37, 41, 0.1);
    background-color: #fff;
  }

  #mainNav.navbar-shrink .navbar-brand {
    color: #B3832F;
  }

  #mainNav.navbar-shrink .navbar-brand:focus, #mainNav.navbar-shrink .navbar-brand:hover {
    color: #B3832F;
  }

  #mainNav.navbar-shrink .navbar-nav>li.nav-item>a.nav-link,
  #mainNav.navbar-shrink .navbar-nav>li.nav-item>a.nav-link:focus {
    color: #B3832F;
  }

  #mainNav.navbar-shrink .navbar-nav>li.nav-item>a.nav-link:hover,
  #mainNav.navbar-shrink .navbar-nav>li.nav-item>a.nav-link:focus:hover {
    color: #B3832F;
  }
}
header.masthead {
  padding-top: 10rem;
  padding-bottom: calc(10rem - 56px);
  /* width: 100%; */
  background-image: url("../img/feedbacks/banner-feedback.png");
  background-position: center top;
  /* background-repeat: no-repeat; */
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

header.masthead hr {
  margin-top: 30px;
  margin-bottom: 30px;
}

header.masthead h1 {
  margin-top: 8rem;
  font-size: 2rem;
}

header.masthead p {
  font-weight: 300;
}

@media (min-width: 768px) {
  header.masthead p {
    font-size: 1.15rem;
  }
}

@media (min-width: 992px) {
  header.masthead {
    height: auto;
    min-height: 400px;
    padding-top: 0;
    padding-bottom: 0;
  }

  header.masthead h1 {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  header.masthead h1 {
    font-size: 4rem;
  }
}

.service-box {
  max-width: 400px;
}

.portfolio-box {
  position: relative;
  display: block;
  max-width: 650px;
  margin: 0 auto;
}

.portfolio-box .portfolio-box-caption {
  position: absolute;
  bottom: 0;
  display: block;

  height: 100%;
  text-align: center;
  opacity: 0;
  color: #fff;
  background: rgba(240, 95, 64, 0.9);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
  padding: 0 15px;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
  font-size: 18px;
}

.portfolio-box:hover .portfolio-box-caption {
  opacity: 1;
}

.portfolio-box:focus {
  outline: none;
}

@media (min-width: 768px) {
  .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
    font-size: 16px;
  }

  .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
    font-size: 22px;
  }
}

.text-primary {
  color: #155091 !important;
}

.btn {
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 300px;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

.btn-xl {
  padding: 1rem 2rem;
}

.btn-primary {
  background-color: #155091;
  border-color: #155091;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  color: #fff;
  background-color: #ee4b28 !important;
}

.btn-primary:active, .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 95, 64, 0.5) !important;
}
.icone-social {
  color: #B3832F;
}

.icone-social:hover {
  color: #D2A85E;
}

.bg-rodape {
  /* background-image: linear-gradient(to right,#ffffff 0,#00152e 100%); */
  /* background-color: #00152e; */
  /* background-color: #113b75; */
  /* background-color: #155091; */
  /* background-color: #003576; */
  /* background-color: #CD7f32; */
  /* background-color: #000; */
  /* background-color: #363636	; */
  /* background-color: #dcdcdc; */
  background-color: #e4e4e4;
  /* background-color: #1C1C1C; */
  border-top: solid 2px #B3832F;
}

.efeito-link-rodape {
  text-decoration: none;
  /* color: #212529; */
  color: #B3832F;
}

.efeito-link-rodape:hover {
  text-decoration: none;
  /* color: #CD7f32; */
  color: #D2A85E;
}

/* Barra de rolagem */
::-webkit-scrollbar {
  width: 12px;
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #B3832F;
  border-radius: 0;
}


/* @media (max-width:728px) {
    .video-sobre {
          position: relative;
          padding-bottom: 56.25%; 
          padding-top: 200px;
          height: 0;
      }
  
    .video-sobre iframe {
          Position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
     }
  } */

.video-sobre {
  position: relative;
  padding-bottom: 20%;
}

.video-sobre>iframe {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 83%;
}

@media (max-width: 992px) {
  .video-sobre {
    padding-bottom: 65%;
  }
}