/* BS4 Compatibility Helpers for BS3 */
.mt-2 { margin-top: 10px !important; }
.mt-3 { margin-top: 16px !important; }
.mt-5 { margin-top: 48px !important; }
.mb-4 { margin-bottom: 24px !important; }
.mb-5 { margin-bottom: 48px !important; }
.pt-4 { padding-top: 24px !important; }
.pl-4 { padding-left: 24px !important; }

.rm-pl-4{
  padding-left: 0 !important;
}

/* SIDENAV */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.smooth-link:hover{
  color:black;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}


::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(247, 247, 247); 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(34, 34, 34); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #818181; 
}

body{
  font-family: 'PT Sans', sans-serif;
}

a:hover {
    text-decoration: none !important;
}
.container{
    max-width: 1200px !important;
}

.img-circular{
    width: 55%;
    display: block;
    margin: 0 auto;
    float: none;
}

.padding-servicos{
    padding: 10px 15px;
}

.borda-servicos{
border: solid 1px rgb(230, 230, 230);
padding:20px 15px;
min-height: 330px;
text-align: center;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Playfair Display', serif;
}

.arrow-indicador{
    font-size: 70px;
    color:white;
}

/* CORES */
.white{
    color:white;
}

.bg-gray{
    background-color: rgb(240, 240, 240);
}

.gray{
    color: #000;
}

header,.menu-movel{
    display: flex;
    justify-content: space-between;
}

header.container,
#navbar .menu-movel.container{
    max-width: none !important;
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.preto-cor{
  color:black;
}

ul.menu{
    list-style-type: none;
    display: flex;
}

ul.menu li{
    margin: 30px 20px;
}

ul.menu li a{
  font-family: 'PT Sans', sans-serif;
}

#navbar {
    background-color:  #a74612;
    position: fixed;
    top: 0;
    width: 100%;
    display: block;
    transition: top 0.3s;
    z-index: 1000;
  }
  
  #navbar a:hover {
    color: white;
  }

/* --- Banner Principal Refatorado (Clean) --- */

.banner-wrapper {
    position: relative;
    width: 100%;
}

#banner{
    position: relative;
}

.banner-info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10px;
    z-index: 10;
    pointer-events: none; /* Permite clique no carrossel abaixo se necessário */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

/* Garante que o botão e título sejam interativos */
.banner-info > * {
    pointer-events: auto;
}

.banner-title {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    color: #000;
}

.banner-cta {
    display: inline-block;
    background-color: #fff;
    padding: 20px 40px 20px 20px;
    text-transform: uppercase;
    color: #000;
    font-weight: regular;
    text-decoration: none;
    position: relative;
}

.banner-cta:hover {
    color: #000;
    text-decoration: none;
}

/* Permite posicionamento manual do CTA quando necessário */
.banner-cta--abs{
    position: absolute;
    top: var(--cta-top, auto);
    right: var(--cta-right, auto);
    bottom: var(--cta-bottom, 0);
    left: var(--cta-left, 60px);
}

.banner-cta:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -70px;
    width: 55px;
    height: 1px;
    background-color: #000;
    transform: translateY(-50%);
}

/* Navegação (Setas) */
.banner-nav {
    position: absolute;
    bottom: 10px;
    left: 150px;
    right: 24px;
    transform: none;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.banner-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    pointer-events: auto;
}

.banner-nav-btn:hover {
    transform: scale(1.1);
}

.banner-nav-btn:hover .icon-arrow{
    border-top-color: #fff;
    border-right-color: #fff;
}

/* Ícones de seta com CSS puro (Clean) */
.icon-arrow {
    display: block;
    width: 26px;
    height: 26px;
    border-top: 3px solid #666;
    border-right: 3px solid #666;
}

.icon-prev {
    transform: rotate(-135deg);
}

.icon-next {
    transform: rotate(45deg);
}

#fade-banner-carousel .carousel-inner > .item {
    opacity: 0;
    transition: opacity 0.6s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#fade-banner-carousel .carousel-inner{
    position: relative;
}

#fade-banner-carousel .carousel-inner:before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 3;
    pointer-events: none;
}

#fade-banner-carousel .carousel-inner > .active {
    opacity: 1;
    position: relative;
    z-index: 2;
}

#fade-banner-carousel .carousel-inner > .next,
#fade-banner-carousel .carousel-inner > .prev,
#fade-banner-carousel .carousel-inner > .active.left,
#fade-banner-carousel .carousel-inner > .active.right {
    opacity: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
}

#fade-banner-carousel .carousel-inner > .next.left,
#fade-banner-carousel .carousel-inner > .prev.right {
    opacity: 1;
    left: 0;
    transform: translate3d(0, 0, 0);
}

/* Esconder indicadores no desktop por padrão */
#fade-banner-carousel .carousel-indicators {
    opacity: 0;
    transition: opacity 0.3s;
}

/* Mobile */
@media (max-width: 991px) {
    .banner-info {
        display: none;
        position: static;
        top: auto;
        left: auto;
        bottom: auto;
        transform: none;
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
        padding: 20px 0;
    }
    
    .banner-title {
        font-size: 40px;
    }

    .banner-nav {
        display: none; /* Opcional: esconder setas no mobile */
    }

    /* Mostrar indicadores no mobile */
    #fade-banner-carousel .carousel-indicators {
        opacity: 1;
    }

    .banner-cta--abs{
        position: static;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}


.quem-somos-subtitulo{
    color: #000;
    font-size: 18px;
}


.titulo-servicos{

}

.subtitulo-servicos{
    font-size:16px;
    color: #000;
    margin-bottom: 80px;
    font-family: 'PT Sans', sans-serif;
}

.titulo-servico{
    font-size:16px;
    text-transform: uppercase;
    padding: 20px 0 0 0;
    font-weight: bold;
}
.subtitulo-servico{
    font-size: 14px;
    color: #000;
    padding: 0 10px;
    line-height: 15px;
}


#carousel{
    margin-top: 120px;
    margin-bottom:100px;
}

.quote {
    color: rgba(0,0,0,1);
    text-align: center;
    margin-bottom: 30px;
}

/*-------------------------------*/
/*    Carousel Fade Transition   */
/*-------------------------------*/



#fade-quote-carousel.carousel {
  padding-bottom: 60px;
}
#fade-quote-carousel.carousel .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
      -ms-transition-property: opacity;
          transition-property: opacity;
}
#fade-quote-carousel.carousel .carousel-inner .active {
  opacity: 1;
  -webkit-transition-property: opacity;
      -ms-transition-property: opacity;
          transition-property: opacity;
}
#fade-quote-carousel.carousel .carousel-indicators {
  bottom: 10px;
}
#fade-quote-carousel.carousel .carousel-indicators > li { 
  border: solid 1px rgb(104, 104, 104);
}
#fade-quote-carousel blockquote {
    text-align: center;
    border: none;
}
#fade-quote-carousel .profile-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 100px;
}

.carousel-indicators li{
    width: 10px !important;
    border-radius: 50%;
    height: 10px !important;
}

.carousel-indicators li.active{
    background-color: rgb(105, 105, 105) !important;
}

.portfolio-item{
    width: 100%;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover{
    transform: scale(1.1);
    cursor: pointer;
}


.portfolio-item-1{
  background-image: url("../img/portfolio/01.jpg");
}


.portfolio-item-2{
    background-image: url("../img/portfolio/02.jpg");
}


.portfolio-item-3{
    background-image: url("../img/portfolio/03.jpg");
    
}

.portfolio-item-4{
    background-image: url("../img/portfolio/04.jpg");
    
}

.portfolio-item-5{
    background-image: url("../img/portfolio/05.jpg");
    
}

.portfolio-item-6{
    background-image: url("../img/portfolio/06.jpg");
   
}
.portfolio-item-7{
    background-image: url("../img/portfolio/07.jpg");
    
}
.portfolio-item-8{
    background-image: url("../img/portfolio/08.jpg");
   
}
.portfolio-item-9{
    background-image: url("../img/portfolio/09.jpg");
}


.img-diferenciais{
    width:80px;
    float:left;
    margin-right: 10px;
    margin-top:10px;
}

.titulo-diferenciais{
    font-size: 18px;
    font-family: 'Slabo 27px', serif;
    margin-top:10px;
}

.desc-diferenciais{
    font-size: 15px;
    font-family: 'Slabo 27px', serif;
    padding-right: 30px;
}

iframe{
    width:100%;
    height: 400px;
    margin-top: 50px;
    margin-bottom: 50px;
    border: 0;
}

.btn-enviar{
    background-color: rgb(43, 43, 43);
    color: rgb(235, 235, 235);
    padding: 13px 50px;
    border-radius: 3px;
}

footer{
    background-color: #a74612;
}

.fancy {
    line-height: 0.5;
    text-align: center;
  }
  .fancy span {
    display: inline-block;
    position: relative;  
  }
  .fancy span:before {
    content: "";
    position: absolute;
    height: 5px;
    border-top: 1px solid rgb(0, 0, 0);
    top: 0;
    width: 100%;
  }
  .fancy span:before {
    right: 100%;
    margin-right: 15px;
    margin-top:2px;
  }

  @media (min-width: 768px) and (max-width: 991px) {
    header.container{
      width: 100% !important;
      max-width: none !important;
    }
    section.banner-wrapper.container{
      width: 100% !important;
      max-width: none !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
    section.banner-wrapper .row{
      margin-left: 0;
      margin-right: 0;
    }
    #banner{
      width: 100% !important;
    }
  }


  @media only screen and (max-width: 991px) {
    #myModal{
      display: none !important;
    }
    .hide-mobile{
      display: none !important;
    }
    header{
      position: fixed;
      top:0;
      left:0;
      right:0;
      width: 100%;
      z-index: 100;
      background-color:white;
      -webkit-box-shadow: 0 5px 4px -6px #777;
       -moz-box-shadow: 0 5px 4px -6px #777;
            box-shadow: 0 5px 4px -6px #777;
    }
    #navbar{
      width: 100%;
      left: 0;
      right: 0;
    }
    ul.menu li{
      margin: 23px 3px !important;
  }
    .img-mobile{
      width:120px !important;
    }
    .menu{
      margin-bottom: 0px !important;
    }
    #banner{
      padding-left: 0px;
      padding-right: 0px;
      margin-top: 0px;
    }
    .testemunha-text{
      font-size: 14px !important;
    }
    .img-diferenciais{
        float: none !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .aparecer-list{
      opacity: 1 !important;
    }
    .padding-mobile-portfolio{
      padding: 5px 10% !important;
    }

    .desc-diferenciais,.titulo-diferenciais{
        text-align: center !important;
        padding: 0 20px !important;
    }
  }



  /* arrow style */

  .the-arrow {
    width: 64px;
    transition: all 0.2s;
  }
  .the-arrow.-left {
    position: absolute;
    top: 60%;
    left: 0;
  }
  .the-arrow.-left > .shaft {
    width: 0;
    background-color: #999;
  }
  .the-arrow.-left > .shaft:before, .the-arrow.-left > .shaft:after {
    width: 0;
    background-color: #999;
  }
  .the-arrow.-left > .shaft:before {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .the-arrow.-left > .shaft:after {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .the-arrow.-right {
    top: 3px;
  }
  .the-arrow.-right > .shaft {
    width: 64px;
    transition-delay: 0.2s;
  }
  .the-arrow.-right > .shaft:before, .the-arrow.-right > .shaft:after {
    width: 8px;
    transition-delay: 0.3s;
    transition: all 0.5s;
  }
  .the-arrow.-right > .shaft:before {
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
  }
  .the-arrow.-right > .shaft:after {
    -webkit-transform: rotate(-40deg);
            transform: rotate(-40deg);
  }
  .the-arrow > .shaft {
    background-color: #999;
    display: block;
    height: 1px;
    position: relative;
    transition: all 0.2s;
    transition-delay: 0;
    will-change: transform;
  }
  .the-arrow > .shaft:before, .the-arrow > .shaft:after {
    background-color: #999;
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.2s;
    transition-delay: 0;
  }
  .the-arrow > .shaft:before {
    -webkit-transform-origin: top right;
            transform-origin: top right;
  }
  .the-arrow > .shaft:after {
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }
  
  .animated-arrow {
    display: inline-block;
    color: rgb(0, 0, 0);
    font-size: 1.25em;
    font-style: italic;
    font-size: 17px;
    text-decoration: none;
    position: relative;
    transition: all 0.2s;
    font-family: 'Slabo 27px', serif;
    margin-top: 20px;
    cursor: pointer;
  }
  .animated-arrow:hover {
    color: #eaeaea;
  }
  .animated-arrow:hover > .the-arrow.-left > .shaft {
    width: 64px;
    transition-delay: 0.1s;
    background-color: #eaeaea;
  }
  .animated-arrow:hover > .the-arrow.-left > .shaft:before, .animated-arrow:hover > .the-arrow.-left > .shaft:after {
    width: 8px;
    transition-delay: 0.1s;
    background-color: #eaeaea;
  }
  .animated-arrow:hover > .the-arrow.-left > .shaft:before {
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
  }
  .animated-arrow:hover > .the-arrow.-left > .shaft:after {
    -webkit-transform: rotate(-40deg);
            transform: rotate(-40deg);
  }
  .animated-arrow:hover > .main {
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
  .animated-arrow:hover > .main > .the-arrow.-right > .shaft {
    width: 0;
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
    transition-delay: 0;
  }
  .animated-arrow:hover > .main > .the-arrow.-right > .shaft:before, .animated-arrow:hover > .main > .the-arrow.-right > .shaft:after {
    width: 0;
    transition-delay: 0;
    transition: all 0.1s;
  }
  .animated-arrow:hover > .main > .the-arrow.-right > .shaft:before {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .animated-arrow:hover > .main > .the-arrow.-right > .shaft:after {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .animated-arrow > .main {
    display: flex;
    align-items: center;
    transition: all 0.2s;
  }
  .animated-arrow > .main > .text {
    margin: 0 16px 0 0;
    line-height: 1;
  }
  .animated-arrow > .main > .the-arrow {
    position: relative;
  }



/* ARROW 1 */
  .arrow {
    cursor: pointer;
    height: 120px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: transform .1s;
    width: 80px;
  }
  .arrow-top, .arrow-bottom {
    background-color: #666;
    height: 4px;
    left: -5px;
    position: absolute;
    top: 0;
    width: 30%;
  }
  .arrow-top:after, .arrow-bottom:after {
    background-color: #fff;
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    transition: all 0.15s;
  }
  .arrow-top {
    transform: rotate(45deg);
    transform-origin: bottom right;
  }
  .arrow-top:after {
    left: 100%;
    right: 0;
    transition-delay: 0s;
  }
  .arrow-bottom {
    transform: rotate(-45deg);
    transform-origin: top right;
  }
  .arrow-bottom:after {
    left: 0;
    right: 100%;
    transition-delay: 0.15s;
  }
  .arrow:hover .arrow-top:after {
    left: 0;
    transition-delay: 0.15s;
  }
  .arrow:hover .arrow-bottom:after {
    right: 0;
    transition-delay: 0s;
  }
  .arrow:active {
    transform: translateX(-50%) translateY(-50%) scale(0.9);
  }


  /* ARROW-2 */

  .arrow-2 {
    cursor: pointer;
    height: 120px;
    left: 60px;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: transform .1s;
    width: 77px;
  }
  .arrow-top-2, .arrow-bottom-2 {
    background-color: #666;
    height: 4px;
    left: -5px;
    position: absolute;
    top: 0;
    width: 29%;
  }

  .arrow-bottom-2{
      width: 30% !important;
  }
  .arrow-top-2:after, .arrow-bottom-2:after {
    background-color: #fff;
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    transition: all 0.15s;
  }
  .arrow-top-2 {
    transform: rotate(135deg);
    transform-origin: bottom right;
  }
  .arrow-top-2:after {
    left: 100%;
    right: 0;
    transition-delay: 0s;
  }
  .arrow-bottom-2 {
    transform: rotate(-135deg);
    transform-origin: bottom right;
  }
  .arrow-bottom-2:after {
    left: 0;
    right: 100%;
    transition-delay: 0.15s;
  }
  .arrow-2:hover .arrow-top-2:after {
    left: 0;
    transition-delay: 0.15s;
  }
  .arrow-2:hover .arrow-bottom-2:after {
    right: 0;
    transition-delay: 0s;
  }
  .arrow-2:active {
    transform: translateX(-50%) translateY(-50%) scale(0.9);
  }


.quem-somos-section{
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.6s ease;
}

.quem-somos-section.is-open{
    max-height: 2000px;
    opacity: 1;
}


  /* Removed unused portfolio overlay styles */

  .image {
    display: block;
    width: 100%;
    height: auto;
  }

  .footer-text{
      color:white;
      font-size: 14px;
  }

  ul.menu-redes-sociais{
      list-style-type: none;
      color:white;
      font-size: 14px;
  }

  .testemunha-text{
    font-size: 20px;
    font-style: italic;
    font-family: 'Playfair Display', serif;
  }



  /* GALERIA DE IMAGEM */

  .column {
    float: left;
    width: 11.1%;
  }
  /* The Modal (background) */
.modal-gallery {
  display: none;
  position: fixed;
  z-index: 100000000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content-gallery {
  position: relative;
  margin: auto;
  padding: 0;
  width: 40%;
  max-width: 1200px;
}

/* The Close Button */
.close-gallery {
  color: white;
  position: fixed;
  top: 50px;
  right: 55px;
  font-size: 40px;
  font-weight: bold;
}

.close-gallery:hover,
.close-gallery:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev-gallery,
.next-gallery {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white !important;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next-gallery {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev-gallery:hover,
.next-gallery:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

 .gallery {
  margin: auto;
  display:block;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo-gallery {
  opacity: 0.6;
}

.active-gallery,
.demo-gallery:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
