@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
    --ColorPalet1: #e74519;
    --ColorPalet2: #e74519;
    --BlackCOlor: #797878;
    --footer: #1b1b1b;
    --FontDefault: 'Montserrat Alternates';
}

html{
    background-color: var(--footer);
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,body, #sobre, #contato, #projetos, #home{
  overflow-x: hidden;
}

 /* --------- SCROLL BAR --------- */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--ColorPalet2);
  border-radius: 2px;
}

::-webkit-scrollbar-track {
  background-color:var(--BlackCOlor);
}

body{
    font-family: 'Montserrat Alternates', sans-serif;
    margin: 0 auto;
}

header{
    z-index: 99;
    position: relative;
}



 /* --------- NAV CONTENT --------- */
/* Fonte para o menu */
body {
  font-family: 'Montserrat', sans-serif; /* Alterando a fonte */
}

.navContainer {
    position: fixed;
    text-rendering: optimizeLegibility !important;
    display: flex;
    background-color: rgba(0, 0, 0, 0.5); /* Cor de fundo transparente, mas com uma leve sombra */
    z-index: 10;
    height: 80px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: space-around;
    top: 0;
    backdrop-filter: blur(10px); /* Efeito de desfoque no fundo */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Leve sombra para destacar */
    padding: 0 20px; /* Espaço nas laterais */
}

/* Contêiner do menu */
.container-menu {
    display: flex;
    width: 100%;
    max-width: 1140px;
    justify-content: space-between;
    align-items: center;
    color: #fff; /* Cor branca para os itens do menu */
    font-size: 18px; /* Tamanho maior para os itens */
}

/* Estilo dos links do menu */
/* Estilo dos links do menu */
.container-menu a {
  text-decoration: none;
  color: #fff; /* Cor branca */
  font-weight: 600;
  padding: 10px 15px; /* Espaçamento interno */
  border-radius: 5px; /* Bordas arredondadas */
  transition: all 0.3s ease-in-out; /* Transição suave para os efeitos */
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); /* Efeito de borda suave ao redor das letras */
  background-color: rgba(0, 0, 0, 0.2); /* Fundo preto com 20% de transparência */
}

/* Efeito ao passar o mouse */
.container-menu a:hover {
  background-color: rgba(224, 66, 17, 0.7); /* Cor laranja com 70% de transparência */
  color: #000; /* Cor preta ao passar o mouse */
  transform: translateY(-3px); /* Levanta o item no hover */
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4); /* Aumenta o contorno da sombra ao passar o mouse */
}

/* Efeito de animação no menu */
.container-menu a {
  opacity: 0;
  animation: fadeInMenu 1s ease-out forwards;
}

@keyframes fadeInMenu {
  to {
      opacity: 1;
  }
}




.opaque{
    background-color: rgb(255, 255, 255);
  }

.nav__Menu{
    max-width: 1100px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.nav__Menu ul{
    margin-block-start: 0;
    margin-block-end: 0;
    flex-wrap: nowrap;
    margin: 0;
    padding-inline-start: 0;
    padding: 0;
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav__Menu a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 1s  ease;
}

.nav__Menu a:hover {
    color: var(--ColorPalet1) !important;
    text-decoration: none !important;
    transition: 0.2s ease;
}

.imgHeader{
    z-index: 999;
    position: relative;
    height: 80px;
}


/* --------- Main Content --------- */
.s-grid{
    max-width: 1250px;
    margin: 0 auto;
}

.section-home__container{
    background-image: url(../img/casapronta.jpg);
    background-size: cover;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    backface-visibility: 10;
    background-color: var(--BlackCOlor); 
    background-position: top center;
}

.section-home__container::after{
    filter: saturate(0.6); 
}

.s-home{
    color: #ffffff;
    height: 100vh;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;


}

.s-home .s-home__title h1{
    font-family: var(--FontDefault);
    padding-left: 15px;

    text-align: center;
    position: relative;
    font-weight: 700;
    font-size: clamp(1em, 1.5em + 2.1vw, 4em);
    max-width: 1140px;
    animation: down 2s ease forwards;
    /* animation-play-state: paused; */
    animation-fill-mode: both; 
    text-shadow: 0px 8px 8px rgba(0, 0, 0, 0.4);
}

@keyframes down {
    from {
      opacity: 0;
      bottom: -50px;
    }
    to {
      /* Estilos finais */
      opacity: 100%;
      bottom: 0;
     
    }
  }

section h1 span{
    position: relative;
    color: var(--ColorPalet1);
    animation: up 2s ease forwards;
    animation-delay: 1s;
    /* animation-play-state: paused;  */
    animation-fill-mode: both; 
}

@keyframes up {
    from {
      opacity: 0;
      bottom: -50px;
    }
    to {
      /* Estilos finais */
      opacity: 100%;
      bottom: 0;
     
    }
  }

 
/* ///////////////////////////////////////// ABOUT */

  .s-about{
    min-height: calc(100vh + 80px);
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    
  }

  .s-about{
    width: 100%;
    background: linear-gradient(145deg, #f0ecece8, #fffdfd);
    background-size: cover;
  }

  .s-about__content h4 span{
    color: var(--ColorPalet1);
  }

  .s-about-flex{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 100px;
    max-width: 1800px !important;
  }

  .abt-us{
    position: relative;
    height: clamp(33em, 20em + 10vw, 200em);
    visibility: hidden;
    /* opacity: 0; */
  }

  .imagem{
    animation: float 3.5s ease-in-out infinite;
  }


  @keyframes float{
    0%, 100% {
        transform: translateY(0);
    }
    50%{
      
        transform: translateY(-10px);
    }
  } 

  .abt-us.ease {
    animation: float 3s ease-in-out infinite;
    animation: aparecer 2.0s ease-in-out forwards;
    animation-delay: 1.2s;
  }



  @keyframes aparecer {
    to {
      opacity: 1;
    }
  }


  .s-about__list{
    position: relative;
    display: flex;
    gap: 20px;
    align-items: center; 
    align-items: center;
    flex-grow: 1;
    
  }

 

  .s-about__list:nth-child(1) {
    animation-delay: 0.3s; /* Delay para o primeiro elemento */
  }
  
  .s-about__list:nth-child(2) {
    animation-delay: 0.4s; /* Delay para o segundo elemento */
  }
  
  .s-about__list:nth-child(3) {
    animation-delay: 0.5s; /* Delay para o terceiro elemento */
  }
  
  .s-about__list:nth-child(4) {
    animation-delay: 0.6s; /* Delay para o quarto elemento */
  }
  
  .s-about__list:nth-child(5) {
    animation-delay: 0.7s; /* Delay para o quinto elemento */
  }
  
  .s-about__list:nth-child(6) {
    animation-delay: 0.8s; /* Delay para o sexto elemento */
  }
  
  .s-about__list:nth-child(7) {
    animation-delay: 0.85s; /* Delay para o sétimo elemento */
  }

  .s-about h4{
    font-weight: 800;
    font-size: clamp(0.79em, 0.2em + 1vw, 1.2em);
    color: #3f3e3e;
    max-width: 500px;
    margin: 0;
    padding: 0;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
  }

  .s-about__content{
    display: flex;
    max-width: 1140px;
    flex-direction: column;
    height: 70vh;
    margin: 0 auto;
  }

  .s-about__content img{
    height: 50px;
  }

 /* <--------------- CONCEITO --------------------> */

    .s-conceito{
      position: relative;
      display: flex;
      align-items: center;
      height: 100%;
      flex-wrap: wrap;
    }


    .s-conceito::before {
      content: '';
      background-image: url(../img/fundo.png);
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: cover;
      background-position: top top;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: -1;
      
  
      /* Clareia a imagem de fundo */
      filter: brightness(1);
  
      /* Adiciona a sobreposição branca com transparência */
      background-color: rgba(255, 255, 255, 0.4); /* Ajuste o valor de 0.4 para mais ou menos transparência */
  }
  
  
  
  .s-conceito img {
    position: relative;
    width: 200px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
    margin-bottom: 20px; /* Espaço entre a imagem e o texto */
  }
  
  .s-conceito__content {
    position: relative;
    padding: 150px 0; /* Remova o padding para evitar que o texto comece na frente da imagem */
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Altere para coluna para que o texto fique abaixo da imagem */
    justify-content: center;
    align-items: center; /* Alinhe o conteúdo ao centro */
  }
  
  .s-conceito__content h4 {
    position: relative;
    font-size: 25px;
    font-weight: 500;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4); 
    align-items: flex-start;
  }
  
  .s-conceito__content span {
    color: var(--ColorPalet1);
    font-weight: 800;
  }
  
  


/* <-- Projetos --> */

/* Estilo geral */
.s-projects {
  position: relative;
  background-color: var(--ColorPalet2);
  padding: 100px 20px;
  color: white;
}

.s-projects__contents > h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 30px;
}

.mySwiper {
  width: 90%;
  margin: auto;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.swiper-slide img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.swiper-slide video {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.swiper-slide.swiper-slide-active img {
  transform: scale(1.2);
  opacity: 1;
}

.swiper-slide.swiper-slide-active video {
  transform: scale(1.2);
  opacity: 1;
}

.swiper-slide:not(.swiper-slide-active) img {
  transform: scale(0.8);
  opacity: 0.5;
}

.swiper-slide:not(.swiper-slide-active) video {
  transform: scale(0.8);
  opacity: 0.5;
}

.slide-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
  text-align: left;
  border-radius: 0 0 15px 15px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.swiper-slide.swiper-slide-active .slide-overlay {
  opacity: 1;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
  .swiper-slide img {
    height: 80vh; /* Ajuste proporcional para telas menores */
  }

    .swiper-slide video{
      height: 80vh; /* Ajuste proporcional para telas menores */
    }

  .swiper-slide:not(.swiper-slide-active) img {
    opacity: 1; /* Evitar redução de opacidade em telas pequenas */
    transform: scale(1); /* Evitar redimensionamento em telas pequenas */
  }

  .swiper-slide:not(.swiper-slide-active) video {
    opacity: 1; /* Evitar redução de opacidade em telas pequenas */
    transform: scale(1); /* Evitar redimensionamento em telas pequenas */
  }
}



/* Botões de navegação */
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  cursor: pointer;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

/* Posição dos botões */
.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
  .swiper-slide img {
    height: 30vh;
  }

  .swiper-slide video {
    height: 30vh;
  }
}



/* Modal para Galeria */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: white;
  padding: 20px;
  border-radius: 15px;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  background: #f47721;
  border: none;
  padding: 5px 10px;
  border-radius: 50%;
  color: white;
}


/* Estilo das setas */
.swiper-button-next, .swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

/* Estilo dos bullets da paginação */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #ff9800;
  transform: scale(1.2);
}


/* // RESPONSIVE */
@media (max-width: 994px){
  .infos_contact {
    width: 100%;}
  .s-contact__form{
    justify-content: center;
  }

  .responsive-contact{
    margin: auto;
    position: relative;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(243,92,33,1) 37%, rgba(255,255,255,0) 100%);
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
  }
  .num{
    display: block;
  }

  .img_contact-div{
    position:absolute;
    z-index: 2;
    top: 250px;
    left: 3.0%;
  }

  .img_contact-div img,
  .img_contact-div video {
    position: absolute;
    height: 400px;
    max-width: initial;
  }
 

  .background{
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 90px 0 0 0;
  }


    .nav__Menu img{
        padding-top: 0.2em;
    }

    .s-conceito__content{
      flex-direction: column;
    }

    .s-conceito__content h4{
      text-align: justify;
      text-wrap: stable;
      margin-top: 100px;
      width: 98%;
      flex-basis: 0;
      font-size: 25px;
      letter-spacing: -1px;
    }
    
    .abt-us{
      margin-top: -120px;
      display: block;
      width: 360px;
      height: auto;
      z-index: 0;
    }
    

  .imagem::before {
    content: '';
      position: absolute;
      top: 0;
      left: -34px;
      width: 525px;
      height: 101%;
      background: rgb(255,255,255);
      background: linear-gradient(0deg, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 100%);
      z-index: 1;
      opacity: 0;
      animation: slideAnimation 0.8s ease-out forwards;
    animation-delay: 1.3s;
  } 
  
  @keyframes slideAnimation {
      0% {
        transform: translateY(500px);
          opacity: 0;
      }
      100% {
        transform: translateY(0);
          opacity: 100%;
      }
  }

    .s-about__content {
      margin-top: -100px;
      width: 80%;
    }


    .s-about-flex{
      padding: 30% 0 calc(100vh + 20%) 0
    }


    /* ----- MENU BURGUER ----- */

    nav {
        display: none;
    }
    .one,
    .two,
    .three{ /* Monta o traçado para o menu burguer */
        background-color: #ffffff; 
        height: 4px;
        width: 100%;
        margin: 8px;
        transition-duration: 0.3s;
     }

    .menu-toggle{ /* Ativa o menu toggle */
        padding-right: 9px;
        width: 30px;  
        height: 43px; 
     }

     /*  fullscreen  */
    .nav__Menu.on{
      transition: 0.8s ease-in-out;
      position: absolute;
      top:0;
      left:0;
      
      width: 100vw;
      height: 100vh;

      background-color: #ffffff;
      
      z-index: 10;

      display: flex;
      justify-content: center;
      align-items: center;
    }

    .nav__Menu.on nav {
      display: block;
    }

    .nav__Menu.on .menu-toggle {
      position: absolute;
      right: 20px;
      top: 20px;
    }

    .nav__Menu.on .menu-toggle .one { /* Monta o X para o menu burguer */
      transform: rotate(43deg) translate(5px, 7px);
      background-color: #000000 !important;
    }

    .nav__Menu.on .menu-toggle .two { /* "Removendo um dos traçados" */
      opacity: 0;
    }

    .nav__Menu.on .menu-toggle .three { /* Completando o X */ 
      background-color: #000000 !important;
      transform: rotate(-45deg) translate(10px, -12.1px);
    }

    .nav__Menu.on nav ul {
      text-align: center;
      display: block;
    }

    .nav__Menu.on nav ul a{
      color: var(--ColorPalet1) !important;
      font-size: 1.3rem;
      line-height: 5rem; 
    }

    .nav__Menu.on a:hover {
      color: #171717 !important;
      text-decoration: none !important;
      transition: 0.2s ease;}
      
    .s-about-flex{
      gap: 40px;
    }  
    }

@media (max-width: 698px){
  .s-projects__contents {
   
    padding: 130px 0 50px 0;
  }
  .img_contact-div{
    top: 210px;
    left: -9%;
  }
  .s-about-flex {padding: 50% 0 calc(100vh + 50%) 0;}

}

footer{
  padding: 0;
  margin: 0;
  background-color: var(--footer);
}
.container-footer{
  height: 50px;
  
}
.info-footer{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-footer p{
  font-size: 15px;
  font-weight: 600;
  color: #5e5d5d;
}

.info-footer a{
  font-size: 15px;
  font-weight: 600;
  color: #e74519;
}

.info-footer a:hover {
  color: #b93412; /* Cor ao passar o mouse */
}

/* Responsividade para telas menores */
@media (max-width: 600px) {
  .info-footer p,
  .info-footer a {
    font-size: 12px; /* Ajusta o tamanho da fonte para dispositivos móveis */
  }
  
  .container-footer {
    padding: 15px 10px; /* Adiciona um pouco mais de espaçamento em dispositivos móveis */
  }
}

/* Whats-app*/

#div-fixa {
  position: fixed;
  right: 5px;
  bottom: 20px;
  margin: 0 0px;
  width: 270px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.5s all;
  z-index: 1;
  box-shadow: 0 0 12px 0 rgb(0 0 0 / 35%);
  border: 1px solid #d6d6d6;
  background: white;
  transition: 0.5s all;

}

#div-fixa.shrink {
  width: 45px;
  transition: 0.5s all;
  overflow: hidden;
}

#div-fixa img {
  width: 45px;
  height: 45px;

}

#div-fixa a .flex-itens {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;


}

#div-fixa a .flex-itens span {
  display: flex;
  font-size: 13px;
  font-weight: 600;
  min-width: 210px;
  padding: 0;
  color: #053742;
  opacity: 1;


}

#div-fixa a {
  text-decoration: none;
}

#div-fixa a .flex-itens span .aparecer {
  transition: 0.7s all;
  opacity: 0;
  color: goldenrod;





}

.flutuar {
  animation-name: flutuar;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;



}

@keyframes flutuar {
  from {
      transform: translate3d(0, 0, 0);
      filter: brightness(100%)
  }

  to {
      transform: translate3d(0, -15px, 0);
      filter: brightness(120%)
  }

}

  /* <--------------- CONTATO --------------------> */

.s-contact {
  width: 100%;
  background: linear-gradient(145deg, #424040, #ccc9c9);
  color: #fff;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.s-contact__wrapper {
  max-width: 1200px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.s-contact__info {
  flex: 1;
  padding: 20px;
}

h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
}


a {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
}


.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  
}

.contact-item img {
  width: 30px;
  height: 30px;
}

.social-icons {
  display: table-column-group;
  justify-content: space-between;
  align-items: center;
  animation: slideInFromRight 1.5s ease-out forwards;
}

.social-icons img {
  width: 40px;
  height: 40px;

}

.s-contact__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInFromRight 1.5s ease-out forwards;
  position: relative;
  overflow: hidden; /* Evita que algo saia da área da imagem */
}

.s-contact__image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border: none; /* Remove qualquer borda */
  box-shadow: none; /* Remove qualquer sombra */
  background-color: transparent; /* Garante fundo transparente */
  object-fit: contain; /* Garante que a imagem não distorça */
}

.orange-text {
  color: rgb(248, 67, 35); /* Define a cor laranja */
}



/* Animação da imagem */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


 /* <--------------- SERVIÇOS --------------------> */



/* Estilização para os modais */
/* Geral */
/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Fundo escurecido */
.service-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Modal principal */
.service-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 80%;
  max-width: 600px;
  overflow-y: auto;
  max-height: 80%;
}

.close-button-modal {
  font-size: 30px;
  font-weight: bold;
  color: #ff6600;
  border: none;
  background: none;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

.modal-content {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.close-button {
  font-size: 30px;
  font-weight: bold;
  color: #ff6600;
  border: none;
  background: none;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

.close-button:hover {
  color: #ff3300;
}

.modal h3 {
  font-size: 24px;
  color: #ff6600; /* Título em laranja */
  margin-bottom: 15px;
  font-weight: 600;
}

.modal ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.modal ul li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.modal p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* Cards de Serviço */
/* Geral */
.services-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
}



/* Configuração do carrossel */
/* Geral */
.services-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
}

/* Carrossel */
.services-carousel {
  position: relative; /* Para os botões serem posicionados */
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
  max-width: 90%; /* Centraliza e limita o carrossel */
}

.services-carousel-btn {
  z-index: 10;           /* Garante que fiquem acima das imagens */
}

.services-carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8); /* Destaque ao passar o mouse */
}
/* Grade de serviços (cards) */
.services-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none; /* Esconde barra de rolagem no Firefox */
}

.services-grid::-webkit-scrollbar {
  display: none; /* Esconde barra de rolagem no Chrome/Safari */
}

/* Cada card de serviço */
.service-card {
  flex: 0 0 250px; /* Cada card terá largura fixa */
  background: #f3f3f2;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #f47721;
  margin-bottom: 10px;
}

.service-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Botões de navegação */
/* Botões de navegação */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f47721;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  overflow: visible; /* Garante que os botões não sejam cortados */
}

/* Ajuste de posicionamento próximo às bordas */
.carousel-button.left {
  left: 1px; /* Mantém um leve espaço da borda esquerda */
}

.carousel-button.right {
  right: 1px; /* Mantém um leve espaço da borda direita */
}

/* Container ajustado */
.services-container {
  position: relative; /* Garante que os botões sejam posicionados em relação ao container */
  padding: 20px; /* Para dar espaço entre os conteúdos e as bordas do container */
  overflow: visible; /* Certifica que os botões não sejam cortados */
}

/* Efeito ao passar o mouse */
.carousel-button:hover {
  background-color: #ff6600;
}




/* Botões de rolagem */
.scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f47721;
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.scroll-button.left {
  left: 0;
}

.scroll-button.right {
  right: 0;
}

.scroll-button:hover {
  background-color: #cc6100;
}

body.service-modal-open {
  overflow: hidden;
}

/* Estilos gerais para o botão */
#openFormButton {
    margin-top: 30px;
    width: 80%;
    background-color: #e74519;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 20px 40px;
    cursor: pointer; /* Para indicar que é um botão clicável */
    display: inline-block; /* Garante que o botão se comporte como um bloco */
    font-size: 20px; /* Ajuste o tamanho da fonte conforme necessário */
}

#openFormButton :hover {
  color: #b93412; /* Cor ao passar o mouse */
}
/* Estilo para telas menores */
@media screen and (max-width: 768px) {
    #openFormButton {
        width: 100%; 
        padding: 15px 20px; 
        font-size: 18px; 
    }
} 

