@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

}
html{
  scroll-behavior: smooth;
}
body {
  min-height: 500vh;
}
.inicio {
     padding-top: 90px;
  min-height: 100vh;
  background-image: url(img/amplo-inicial.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.barra-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 5rem;
  min-height: 90px;
  background-color: black;
  color: #fff;
}

.barra-nav h1 {
  position: relative;
  padding-left: 16px;
  font-size: 3.7rem;
  font-weight: 800;
}
.barra-nav h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 40px;
  background: #fff;
}
nav {
  margin-left: auto;
  padding-right: 2rem;
}

nav ul {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}
.botao-inicial {
  padding: 0.5rem 2.2rem;
  color: #fff;
  background-color: #25D366;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}
.botao-inicial img{
  position: relative;
  top: 3px;
  left: 10px;
  
  
}
.botao-iniciall {
    display: none;
  padding: 0.5rem 2.2rem;
  color: #fff;
  background-color: #25D366;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  font-weight: 600;
  white-space: nowrap;
}
.botao-inicial:hover{
    transition: .3s ease-in-out;
    transform: translateY(-5px);
}.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  width: 26px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

/* vira X */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
.info-inicial {
  margin-left: 5rem;
  margin-top: 12rem;
}
.info-inicial h1{
    font-size: 6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;

} 
.info-inicial p{
    color: #fff;
    letter-spacing: 2px;
}

.info-inicial button{
    margin-top: 2rem;
    padding: 0.8rem 2.2rem;
    background-color: #000000;
    color: #fff;
    border: none;
    width: 40;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;

}
.info-inicial button:hover{
    background-color: #fff;
    color: #000000;
    transition: 1s ease-in-out;
    transform: scale(1.1);
}
.redes{
    font-size: 1.9rem;
    color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* ou center */
  gap: 1.5rem;
  margin-top: 11rem;
  padding-right: 6rem;
  font-weight: bold;



}
.redes span{
    font-weight: 200;
}

.redes-icons{
    display: flex;
    justify-content: flex-end;
    padding: 0 16rem;
    gap: 1.5rem;
    cursor: pointer;

}
.whatsapp-float{
  position: fixed;
  right: 1.5rem;
  bottom: 25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  transform: translateY(20px);
  z-index: 9999;
}
.whatsapp-float.show{
  opacity: 1;
  pointer-events: auto;
  animation: float 1s ease-in-out infinite;
}

/* animação suave */
@keyframes float{
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-8px);
  }
  100%{
    transform: translateY(0);
  }}
.sobre-nos{
  position: relative;
  overflow: hidden;
  background-image:
    url("img/linhaesq.png"),
    url("img/linha\ direitacerta.png");

  background-repeat: no-repeat, no-repeat;
  background-position:
  left center,
  right 12px;

  background-size:
    auto 100%,
    auto 100%;
}

.icons-img-sobre-nos{
  display: flex;
 /* centraliza horizontal */
  justify-content: center;
  margin-left: 3.8rem; /* centraliza vertical */
        /* centraliza o bloco */
}
.icons-img-sobre-nos img{
  margin-top: 2rem;

}
.icons-img-sobre-nos .alinhar{
  margin-top: 15px;
}
.titulo-amplo{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 10rem;
}

.logo-linha{
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-linha img{
  width: 66px;
  display: block;
}

.logo-linha .linha{
  width: 2px;
  height: 52px;
  margin-left: 4.5rem;
  background: #000;
}

.titulo-amplo h2{
  margin: 0;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}
.destaque{
  background: #000000;
    position: relative;
  overflow: hidden;
  background-image:
    url("img/linhabranca.png"),
    url("img/linha-branca-esquerda.png");

  background-repeat: no-repeat, no-repeat;
background-position:
  right 8px,
  left bottom;
  background-size:
    auto 70%,
    auto 23%;
  color: #fff;
  margin-top: 1rem;
  padding: 4rem 4rem;
  position: relative;
}


.linhaa{
  position: absolute;
  width: 460px;
  pointer-events: none;
}
.subtitulo{
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: 5.5rem;
  font-size: 1.2rem;
}

.subtitulo::after{
  content: "";
  height: 1px;
  width: 60px;
  background: #FFF600;
}
.titulos-second-page h3{
  
  text-align: center;
}

.destaque h2{
  font-size: 3rem;
  margin: 0.5rem 0 4rem;
  margin-left: 5rem;
}

.cards-destaque{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.carde-topo{
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
}
.card-topo span{
  position: relative;
  top: -35px;
}


.carde h3{
  margin: 1rem 0;
  font-size: 2.1rem;
}

.carde p{
  
  font-size: 1.4rem;
  line-height: 1.6;
  
  color: #ddd;
}

.box-missao{
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-top: 1rem;
   background: #000000;
 box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 420px;
}

.box-missao .itens{
  display: flex;

  gap: 2rem;
}

.box-missao span{
  display: block;
  font-size: 1.6rem;
  margin-top: 0.5rem;
}

.box-missao button{
  background: #fff;
  color: #000;
  border: none;
  margin-top: 1.2rem;
  padding: 0.6rem 1.6rem;
  border-radius: 6px;
  cursor: pointer;
}
.central{
  position: relative;
  overflow: hidden;
  background-image:
    url("img/linha-final-esq.JPG"),
    url("img/linha-ultimadir.png");

  background-repeat: no-repeat, no-repeat;
  background-position:
  left center,
  right -12px;

  background-size:
    auto 100%,
    auto 115%;
}
.centralizar-titulos{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  
}
.centralizar-titulos h1{
  font-size: 4rem;
  font-weight: 900;
}
.grid-servicos{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 1700px;
  margin: 0 auto;
}

.grid-esquerda{
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: -5rem;
}

.card{
  position: relative;
  margin-top: 1rem;
  overflow: hidden;

  min-height: 400px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 2.5rem;
  color: #fff;

  background-size: cover;
  background-position: center;
}

.card h3{
   font-family: "Inter", sans-serif;
  font-size: 4rem;
  font-weight: 800;
}

.card p{
  font-size: .9rem;
  max-width: 90%;
}

/* Imagens */
.card-cores{
  background-image: url(img/cores.jpg);
}

.card-montagem{
 background-image: url(img/montagem.jpg);
}

.card-ambientes{
  background-image: url(img/ambientes.JPG);
  min-height: 90%;
}
.card a{
  text-decoration: none;
  color: #fff;
}
.card a:hover{
  transition: .5s;
  color: #FFF600;
}

.sec-equipe{
  display: grid;

  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  max-width: 1400px;

  margin: 0 auto;
  margin-top: 0rem;
  gap: 4rem;
}

.equipes-texto h2{
  font-size: 5rem;
  font-weight: 700;
  margin-left: -8rem;
}
.equipes-texto p{
  margin-left: -8rem;
  color: #676767;
}
.btn-saiba{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 2rem;
  margin-left: -8rem;

  background: #000;
  color: #FFF600;
  border-bottom: 5px solid #FFF600 ;

  padding: .35rem 1.4rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;

  border-radius: 2px;
}

.btn-saiba span{
  font-size: 1rem;
  transition: transform .2s ease;
}

.btn-saiba:hover span{
  transform: translateX(4px);
}

.planejamento{
  margin-left: 45%;
  margin-top: 3rem;
  font-size: 1.8rem;
  font-weight: 500;
}

.equipes-slider{
  overflow: hidden;


}

.slider{
  max-width: 900px;
  margin-left: auto;
}

.slider-wrapper{
  display: flex;
  gap: .8rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
}

.slider-item{
  flex: 0 0 170px;
  border-radius: 16px;
  overflow: hidden;
  transition: .35s;
  cursor: pointer;
}
.slider-wrapper:hover >:not(:hover){
  opacity: .4;
  transform: scale(0.9);
}

.slider-item img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

/* bolinhas */
.slider-dots{
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-top: .8rem;
  cursor: pointer;
}

.slider-dots span{
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
}

.slider-dots .active{
  background: #000;
}
.modal-img{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 9999;
}

.modal-img.active{
  opacity: 1;
  pointer-events: auto;
}

.modal-img img{
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  animation: zoom .3s ease;
} 

@keyframes zoom{
  from{
    transform: scale(.8);
    opacity: 0;
  }
  to{
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close{
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
}
.avaliaçoes-localizacao > *{
  margin: 0;
}
.avaliaçoes-localizacao{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10;
  margin-top: 4rem;
  justify-items: center;
}
.Avali{
  background-color: #000;
  box-shadow: rgba(0,0,0,.25) 0 54px 55px,
              rgba(0,0,0,.22) 0 -12px 30px,
              rgba(0,0,0,.12) 0 4px 6px,
              rgba(0,0,0,.17) 0 12px 13px,
              rgba(0,0,0,.09) 0 -3px 5px;

  width: 100%;
  max-width: 1200px;

  min-height: 27vw;
  height: auto;

  color: #fff;
  border-radius: 8px;
}
.avaliaçoes-localizacao .avalia{

  font-size: 2.5rem;
  font-weight: 200;

} 
.avaliaçoes-localizacao .avalia span{
  font-weight: 700;
}

.avalia{
    margin: 0;
  position: relative;
  top: 1.5rem;
}
.avalia{
  font-size: 2rem;
  text-align: center;
}
iframe{
  display: block;
  width: 80%;
  height: 16vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  border-radius: 20px;
}
.btn-horizontal{
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: 5rem;
}
.maps {
  text-decoration: none;
}.maps {
  text-decoration: none;
}

a .maps {
  text-decoration: none;
}a {
  text-decoration: none;
  color: inherit;
}

.btn-horizontal button{
  padding: 10px;
  border-radius: 10px;
  width: 273px;
  border: none;
  cursor: pointer;
  
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
  font-weight: 700;
}
.btn-horizontal button:hover{
  transition: .5s;
  transform: translateY(-3px);
}

.waze{
  background-color: #35b2f0;
  color: #fff;
}
.maps{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maps img{
  position: absolute;
  right: 1rem;
  width: 18px;
}
.waze{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waze img{
  position: absolute;
  right: 1rem;
  width: 18px;
}
.footer{
  background:#000;
  color:#fff;
  margin-top:8rem;
  height: auto;
}

.footer-top{
  position:relative;
  display:flex;
  align-items:center;
  border-bottom:1px solid #fff;
  padding:20px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.footer-brand img{
  padding-right:14px;
  border-right:1px solid #fff;
}

.footer-brand h1{
  font-size:5rem;
  font-weight:800;
  margin:0;
}

.footer-brand p{
  font-size:1.6rem;
  font-weight:200;
  margin:0;
}

.social-icons{
  position:absolute;
  top:100px;
  right:20px;
  display:flex;
  gap:.7rem;
  z-index:10;
}

.social-icons img{
  width:28px;
  height:28px;
}
.footer-content{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #fff;
  margin-top:5rem;
}
.footer-col.contato{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col.sub-col{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-col h3{
  font-size: 32px;
  font-weight: 500;
  transform: translateY(-4.6rem);
}

.footer-col p{

  transform: translateY(-3.6rem);
}
.grupo-menu li{
  position: relative;
  display: flex;
  flex-direction: column;
  gap:.8rem;
  font-size:1.2rem;
  top: -3.5rem;
}
.grupo-menu ul{
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.footer-col{
  position: relative;
  padding: 30px;
  
}
.grupo-menu{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.footer-col:not(:last-child)::after{
  content: "";
  position: absolute;
  top: -26%;
  right: 0;
  width: 1px;
  height: 126%;
  background: #fff;
}
.footer-bottom{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6vh;
  font-size: 1rem;
}
.footer-col.destaquee button{
  margin-top: -.5rem;
  padding: .6rem 3rem;
  background: #fff;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(255, 246, 0, 0.3); /* sombra discreta embaixo */
  transition: transform .2s ease, box-shadow .2s ease;
}

.footer-col.destaquee button:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 246, 0, 0.35); /* leve aumento no hover */
}

.footer-col.destaquee button:active{
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(255, 246, 0, 0.25); /* ainda mais suave ao clicar */
}
#page-loader{
  position: fixed;
  inset: 0;
  background: #000;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#page-loader.active{
  display: flex;
}

.spinner{
  width: 48px;
  height: 48px;
  border: 4px solid #ffffff;
  border-top: 4px solid #fff600;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}
.carrossel{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 35px;
}

/* janela que corta os cards */
.viewport{
   width: 520px;
  max-width: 90vw;
  overflow: hidden;
  touch-action: pan-y;
}

/* trilho */
.track{
  display: flex;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.cardes h3{
  color: #000;
  font-size: 2rem;
}
.cardes p{
  color: #000;
}

.stars{
  color: #f5b301; /* mantém amarelo */
}
/* card */
.cardes{
  min-width: 520px;
  height: 400px; /* igual viewport */
  background: #f5f5f5;
  padding: 24px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.stars{
  color: #f5b301;
}

/* botões */
.btnn-prev,
.btnn-next{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #626262;
  color: #fff;
  cursor: pointer;
}.topo-avaliacao{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

/* foto pequena */
.avatar-mini{
  margin-top: -20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

/* nome */
.info-cliente h3{
  margin: 0;
  margin-top: 0px;
  font-size: 2.6rem;
}

/* texto cinza (tempo) */
.tempo{
  font-size: 13px;
  color: #888;
}
.linha-nome{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ícone google pequeno */
.google-mini{
  margin-left:10%;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

@keyframes spin{
  to{ transform: rotate(360deg); }
}

@media (min-width: 1367px) and (max-width: 1618px){
  .grid-servicos{
    max-width: 2500px;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    padding: 0 3rem;
  }
       .equipes-texto h2{
    font-size: 4rem;
    margin-left: 2rem;
  }
  .equipes-texto p{
    margin-left: 2rem;
  } 
  .barra-nav h1{
    font-size: 2rem;
  }
  
nav ul {
  display: flex;
  gap: 2.9rem;
  list-style: none;
  
  margin: 0;
  padding: 0;
}
.redes{
  margin-top: 1.7rem;
}


nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  margin-left: -2rem;
}
.sobre-nos{
  position: relative;
  overflow: hidden;
  background-image:
    url("img/linhaesq.png"),
    url("img/linha\ direitacerta.png");

  background-repeat: no-repeat, no-repeat;
background-position:
  left 1px,
  right 12px;
  background-size:
    auto 90%,
    auto 100%;
}


.icons-img-sobre-nos img{
  height: 200px;
}
.btn-saiba{
  margin-left: 2rem;
}
  .avaliaçoes-localizacao{
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .avalia{
    font-size: 2rem;
  }
   .Avali{
    padding: 1.2rem;
    height: auto;
  }

  .avalia{
    font-size: 1.7rem;
    text-align: center;
  }

  .Avali iframe{
    width: 85%;
    height: 280px;
    border-radius: 10px;
  }

  .btn-horizontal{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
  }

  .btn-horizontal button{
    width: 280px;
    font-size: 0.9rem;
  }
  .maps{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maps img{
  position: absolute;
  right: 1rem;
  width: 18px;
}
.waze{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waze img{
  position: absolute;
  right: 1rem;
  width: 18px;
}.footer-col:not(:last-child)::after{
  content: "";
  position: absolute;
  top: -25%;
  right: 0;
  width: 1px;
  height: 124%;
  background: #fff;
}


}

/* NOTEBOOK MENOR */

/* mobile */
@media (min-width: 1422px){
  .linha{
  position: absolute;
  width: 460px;
  pointer-events: none;
}
 
  .avaliaçoes-localizacao{
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
.footer-col:not(:last-child)::after{
  content: "";
  position: absolute;
  top: -22%;
  right: 0;
  width: 1px;
  height: 122%;
  background: #fff;
}
  


}
@media (max-width: 1421px){
    

.icons-img-sobre-nos{
  display: flex;
  justify-content: center;
  align-items: center;

}

.sobre-nos{
  position: relative;
  overflow: hidden;
  background-image:
    url("img/linhaesq.png"),
    url("img/linha\ direitacerta.png");

  background-repeat: no-repeat, no-repeat;
background-position:
  left 1px,
  right 12px;
  background-size:
    auto 95%,
    auto 100%;
}


.icons-img-sobre-nos img{
  height: 170px;
}
   .equipes-texto h2{
    font-size: 4rem;
    margin-left: 2rem;
  }
  .equipes-texto p{
    margin-left: 2rem;
  }
  .slider-item{
  flex: 0 0 160px;
  border-radius: 16px;
  overflow: hidden;
  transition: .35s;
  cursor: pointer;
}
.planejamento{
  font-size: 1.4rem;
}

.btn-saiba{
  margin-left: 2rem;
}

.slider{
  max-width: 900px;
  margin-left: auto;
}

.slider-wrapper{
  display: flex;
  gap: .8rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
margin-left: -1rem;
  /* REMOVE isso */
  
  animation: spin 60s infinite linear;
}

.slider-item{
  flex: 0 0 160px;
  border-radius: 16px;
  overflow: hidden;
  transition: .35s;
  cursor: pointer;
  
}
.slider-wrapper:hover >:not(:hover){
  opacity: .4;
  transform: scale(0.9);
}

.slider-item img{
  width: 100%;
  height: 170px;
  
  object-fit: cover;
  display: block;
}

   .avaliaçoes-localizacao{
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .Avali{
    width: 100%;
    height:42vw;
    padding: 1.5rem;
  }

  .avalia{
    font-size: 2rem;
  }
  .btn-horizontal{

  gap: 3.4rem;
}
.btn-horizontal button{
  width: 220px;
}

  .btn-horizontal button{
    width: 280px;
    font-size: 0.9rem;
  }
  .maps{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maps img{
  position: absolute;
  right: 1rem;
  width: 18px;
}
.waze{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waze img{
  position: absolute;
  right: 1rem;
  width: 18px;
}.footer-col:not(:last-child)::after{
  content: "";
  position: absolute;
  top: -20%;
  right: 0;
  width: 1px;
  height: 120%;
  background: #fff;
}


  .viewport{

    max-width: 400px;
    margin: 0 auto;
  }

  .cardes{
    min-width: 100%; /* ESSENCIAL */
    width: 100%;
    height: auto;
  }

  .cardes h3{
    font-size: 1.5rem;
  }


}


@media (max-width: 1366px){
  .grid-servicos{
    grid-template-columns: 1.1fr 1.4fr;
    gap: .6rem;
    max-width: 1500px;
    padding: 0 2rem;
  }
  .barra-nav h1{
    font-size: 1.6rem;
  }
  
nav ul {
  display: flex;
  gap: 2.9rem;
  list-style: none;
  
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  margin-left: -2rem;
}




.avaliaçoes-localizacao{
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .Avali{
    width: 100%;
    height: 22vw;
    padding: 1.5rem;
  }


   .Avali{
    padding: 1.2rem;
    height: auto;
  }

  .avalia{
    font-size: 1.7rem;
    text-align: center;
  }

  .Avali iframe{
    width: 85%;
    height: 180px;
    border-radius: 10px;
  }

  .btn-horizontal{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
  }

  .btn-horizontal button{
    width: 280px;
    font-size: 0.9rem;
  }
  .maps{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maps img{
  position: absolute;
  right: 1rem;
  width: 18px;
}
.waze{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waze img{
  position: absolute;
  right: 1rem;
  width: 18px;
}


}
@media (max-width: 1218px) {

  .sobre-nos{
  position: relative;
  overflow: hidden;
  background-image:
    url("img/linhaesq.png"),
    url("img/linha\ direitacerta.png");

  background-repeat: no-repeat, no-repeat;
background-position:
  left 1px,
  right 12px;
  background-size:
    auto 80%,
    auto 100%;
}


.icons-img-sobre-nos img{
  height: 160px;
}
.menu-btn {
    display: flex;
  margin-left: auto;
  margin-right: -4rem;
}

  nav {
    position: fixed;
    
    top: 0;
    left: 0;
    height: 100vh;
    width: 360px;
    background: #000000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding-top: 6rem;
  }
    .botao-iniciall{
        margin-top: 2rem;
        margin-left: 1.2rem;
        display: flex;
    }

  nav.active {
    transform: translateX(0);
  }

  nav ul {
    flex-direction: column;
    gap: 1.8rem;
    padding-left: 4rem;
  }


  .botao-inicial {
    display: none;
  }
.titulo-amplo h2{
  font-size: 3rem;
}

        .info-inicial {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 5rem 2rem;
  }

  .titulo-central {
    font-size: 5rem !important;
    text-align: center;
  }

  .destaque{
  background: #000000;
    position: relative;
  overflow: hidden;
  background-image:
    url("img/linhabranca.png"),
    url("img/linha-branca-esquerda.png");

  background-repeat: no-repeat, no-repeat;
background-position:
  right 8px,
  left bottom;
  background-size:
    auto 50%,
    auto 20%;
  color: #fff;
  margin-top: 1rem;
  padding: 4rem 4rem;
  position: relative;
}
    .redes {
    align-items: center;
    padding-right: 0;
    margin-top:6rem;
    text-align: center;
  }

  .redes-icons {
    justify-content: center;
    padding: 0;
  }
    .centralizar-titulos{
    margin-top: 4rem;
    padding: 0 1.5rem;
  }
.planejamento{
  display: none;
}
  .centralizar-titulos h1{
    font-size: 4rem;
    line-height: 1.15;
    text-align: center;
  }
   .equipes-texto h2{
    margin-top: 3rem;
    font-size: 2.5rem;
    margin-left: 2rem;
  }
  .equipes-texto p{
    margin-left: 2rem;
  }
  .slider-item{
  flex: 0 0 160px;
  border-radius: 16px;
  overflow: hidden;
  transition: .35s;
  cursor: pointer;
}

.btn-saiba{
  margin-left: 2rem;
}

.slider-item img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.avaliaçoes-localizacao{
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .Avali{
    width: 95%;
    height: auto;
    padding: 2rem 1rem;
  }

  .avalia{
    font-size: 1.6rem;
  }
  
}

@media (max-width: 1054px){
  .grid-esquerda h3{
    font-size: 3.3rem;
  }
  .sobre-nos{
  position: relative;
  overflow: hidden;
  background-image:
    url("img/linhaesq.png"),
    url("img/linha\ direitacerta.png");

  background-repeat: no-repeat, no-repeat;
background-position:
  left 1px,
  right 12px;
  background-size:
    auto 80%,
    auto 100%;
}
.icons-img-sobre-nos img{
  height: 130px;
}
   .rodape-inicial h1{
    font-size: 4rem;  
  }
    .footer-content{
      
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-col{
    border-right: none;
    border-bottom: 1px solid #fff;
  }
.footer-col.destaquee{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-col.destaquee h3{

  margin-top: 5.6rem;
  
}
.social-icons{
  position:absolute;
  top:140px;
  right:20px;
  display:flex;
  gap:.7rem;
  z-index:10;
}
.footer-col:not(:last-child)::after{
  content: "";
  position: absolute;
  top: -22%;
  right: 0;
  width: 1px;
  height: 122%;
  background: #fff;
}

}
@media (max-width: 884px){
  .cards-destaque{
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
.titulo-amplo h2{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2.8rem;

}
  .botao-iniciall{
        margin-top: 2rem;
        margin-left: 1.2rem;
        display: flex;
    }
.titulo-amplo img{
  position: absolute;
  margin-top: -1rem;

}

  .destaque{
    padding: 1rem 2rem;
  }
 
  .icons-img-sobre-nos{
  display: flex;
  flex-direction: column;
  align-items: center;   /* centraliza horizontal */
  justify-content: center;
   /* centraliza vertical */
  width: 100%;
  max-width: 320px;      /* controla o tamanho */
  margin: 0 auto;        /* centraliza o bloco */
}
  .sobre-nos{
  position: relative;
  overflow: hidden;
  background-image:
    url("img/linhaesq.png"),
    ;

  background-repeat: no-repeat, no-repeat;
background-position:
  left 1px,
  right 882px ;
  background-size:
    auto 30%,
    auto 0%;

  
}
.icons-img-sobre-nos img{

  height: 120%;
  width: 120%;
  z-index: -10;

}
  .centralizar-titulos{
    margin-top: 4rem;
    padding: 0 1.5rem;
  }

  .centralizar-titulos h1{
    font-size: 3rem;
    line-height: 1.15;
    text-align: center;
  }
    .grid-servicos{
    grid-template-columns: 1fr;
    grid-template-areas:
      "cores"
      "montagem"
      "ambientes";

    gap: 2rem;
    padding: 0 1.5rem;
  }

  
  .destaque{
  background: #000000;
    position: relative;
  overflow: hidden;
  background-image:
    url("img/linhabranca.png"),
    url("img/linha-branca-esquerda.png");

  background-repeat: no-repeat, no-repeat;
background-position:
  right 8px,
  left bottom;
  background-size:
    auto 30%,
    auto 10%;
  color: #fff;
  margin-top: 1rem;
  padding: 4rem 4rem;
  position: relative;
}

  .card{
    min-height: 460px;
    padding: 2rem;
  }


  .card h3{
    font-size: 3.6rem;
  }

  .card p{
    font-size: 1rem;
    max-width: 100%;
  }
  .equipes-texto h2{
  font-size: 4rem;
  font-weight: 700;
  margin: 0 auto;
  text-align: center;
}
.equipes-texto p{
  margin: 0 auto;
  margin-left: 8rem;

  max-width: 520px;
}
.btn-saiba{
  margin-left: 8rem;
}
    .sec-equipe{
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .slider{
    width: 60vw;
    max-width: 60vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .slider-wrapper{
    gap: .5em;
  }

  .slider-item{
    flex: 0 0 60vw;
  }

  .slider-item img{
    height: 200px;
  }
  .planejamento{
    display: none;
}.avaliaçoes-localizacao{
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .Avali{
    width: 95%;
    height: auto;
    padding: 2rem 1rem;
  }

  .avalia{
    font-size: 1.6rem;
  }
   .rodape-inicial{
    display: flex;
    justify-content: center;
    text-align: center;
    padding:3rem 1rem;
    gap:1.5rem;
  }

  .footer{
    height: auto;
    margin-top: 4rem;
  }

  .footer-top{
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }

  .footer-brand{
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
  }

  .footer-brand img{
    padding-right: 0;
    border-right: none;
  }

  .footer-brand h1{
    font-size: 3.2rem;
  }

.footer-col h3{

  transform: translateY(-12.6rem);
}

  .social-icons{
    position: static;
    margin-top: 1rem;
  }

  .footer-content{
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }
  .grupo-menu{
    text-align: center;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }
    .footer-col.contato{
    padding-top: 4rem;
    padding-bottom: 4rem;
    
  }
  .footer-col.destaquee{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-col.destaquee button{
  margin-top: 1.6rem;
}
  .footer-col{
    padding: 24px 16px;
  }

  .footer-col h3,
  .footer-col p{
    transform: none;
  }

  .grupo-menu li{
    top: 0;
    font-size: 1.3rem;
  }

  .footer-col::after{
    display: none;
  }

  .footer-bottom{
    font-size: .9rem;
    padding: 1.2rem;
    text-align: center;
  }
.viewport{
  touch-action: pan-y;
}

}


@media (max-width: 700px){
    .barra-nav h1{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        text-align: center;
    }
    .botao-iniciall{
        margin-top: 2rem;
        margin-left: 1.2rem;
        display: flex;
    }
      .info-inicial {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 5rem 2rem;
  }

  .titulo-central {
    font-size: 4.2rem !important;
  }

  .info-inicial p {
    margin: 1rem 0;
  }

  .info-inicial button {
    margin-top: 1.5rem;
  }
    .redes {
    align-items: center;
    padding-right: 0;
    margin-top: 0rem;
    text-align: center;
  }
  .redes-icons {
    justify-content: center;
    padding: 0;
  }

  
  

.icons-img-sobre-nos{
  display: flex;
  flex-direction: column;
  align-items: center;   /* centraliza horizontal */
  justify-content: center;
   /* centraliza vertical */
  width: 100%;
  max-width: 320px;      /* controla o tamanho */
  margin: 0 auto;        /* centraliza o bloco */
}
.icons-img-sobre-nos img{

  height: 120%;
  width: 120%;

}

.titulo-amplo h2{
  font-size: 2.2rem;

}
  .cards-destaque{
    grid-template-columns: 1fr;
    gap: 3rem;
  }
.carde h3{
  margin-left: -5rem;

}
  .carde-topo h3{
    margin-left: -2rem;
  }
  
  .destaque{
  background: #000000;
    position: relative;
  overflow: hidden;
  background-image:
    url("img/linhabranca.png"),
    url("img/linha-branca-esquerda.png");

  background-repeat: no-repeat, no-repeat;
background-position:
  right 8px,
  left bottom;
  background-size:
    auto 20%,
    auto 10%;
  color: #fff;
  margin-top: 1rem;
  padding: 4rem 4rem;
  position: relative;
}
 

  .box-missao{
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
    .centralizar-titulos{
    margin-top: 3rem;
    padding: 0 1rem;
  }

  .centralizar-titulos h1{
    font-size: 2.8rem;
    line-height: 1.2;
    text-align: center;
  }
  .centralizar-titulos p{
    display: flex;
    text-align: center;
    font-size: 0.8rem;
  }
 .grid-servicos{
    grid-template-columns: 1fr;
    grid-template-areas:
      "cores"
      "montagem"
      "ambientes";

    gap: 1.5rem;
    padding: 0 1rem;
  }


  .card{
    min-height: 420px;
    padding: 1.5rem;
  }

  .card h3{
    font-size: 3.6rem;
  }

  .card p{
    font-size: .95rem;
    max-width: 100%;
  }
  .equipes-texto h2{
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto;
  text-align: center;
}
.equipes-texto p{
  margin: 0 auto;
  margin-left: 2rem;

  max-width: 520px;
}
.btn-saiba{
  margin-left: 8rem;
}
   .sec-equipe{
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .slider{
    width: 70vw;
    max-width: 70vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .slider-wrapper{
    gap: .5em;
  }

  .slider-item{
    flex: 0 0 60vw;
  }

  .slider-item img{
    height: 200px;
   
  }
.avaliaçoes-localizacao{
    grid-template-columns: 1fr;
    gap: 1rem;
  }

.Avali{
  height: auto;
}


  .avalia{
    font-size: 1.6rem;
  }
  .Avali iframe{
    height: 320px;
  }
.btn-horizontal{
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 1.2rem;
}

.btn-horizontal button{
  width: 15 0%;
  max-width: 420px;
}
.central{
  position: relative;
  overflow: hidden;
  background-image:
    url("img/linha-final-esq.JPG"),
    url("img/linha-ultimadir.png");

  background-repeat: no-repeat, no-repeat;
  background-position:
  left center,
  right -12px;

  background-size:
    auto 0%,
    auto 0%;
}
   .rodape-inicial{
    display: flex;
    justify-content: center;
    text-align: center;
    padding:3rem 1rem;
    gap:1.5rem;
  }

  .coluna h1{
    font-size:2.5rem;

  }
    .coluna p{
      display: flex;
      justify-content: center;
      text-align: center;
   

  }
 
  .footer{
    height: auto;
    margin-top: 4rem;
  }

  .footer-top{
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }

  .footer-brand{
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
  }

  .footer-brand img{
    padding-right: 0;
    border-right: none;
  }

  .footer-brand h1{
    font-size: 3.2rem;
  }

.footer-col h3{

  transform: translateY(-12.6rem);
}

  .social-icons{
    position: static;
    margin-top: 1rem;
  }

  .footer-content{
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }
  .grupo-menu{
    text-align: center;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }
    .footer-col.contato{
    padding-top: 4rem;
    padding-bottom: 4rem;
    
  }
  .footer-col.destaquee{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-col.destaquee button{
  margin-top: 1.6rem;
}
  .footer-col{
    padding: 24px 16px;
  }

  .footer-col h3,
  .footer-col p{
    transform: none;
  }

  .grupo-menu li{
    top: 0;
    font-size: 1.3rem;
  }

  .footer-col::after{
    display: none;
  }

  .footer-bottom{
    font-size: .9rem;
    padding: 1.2rem;
    text-align: center;
  } .carrossel{
    gap: 10px;
  }

  .viewport{
    touch-action: pan-y;
    width: 60vw;
    height: 90vw;
  }

  .cardes{
    min-width: 60vw;
    height:90vw;
    padding: 20px;
  }

  .cardes h3{
    font-size: 1.5rem;
  }.carrossel{
  position: relative;
  justify-content: center;
}

.btnn-prev,
.btnn-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.btnn-prev{
    height: 40px;
  width: 40px;
  z-index: 10;
  left: -10px;
}

.btnn-next{
    height: 40px;
  width: 40px;
  right: -10px;
}
}

@media (max-width: 580px){

.barra-nav img {
  height: 60px;

  margin-left: -4rem;
}

.icons-img-sobre-nos img {
  width: 90%;
  justify-self: center;
}
.titulo-amplo h2{
  font-size: 2.2rem;
  text-align: center;

} 
.titulo-amplo img{
  position: absolute;
  

}

.titulo-amplo{
  display: flex;
  justify-content: center;
  align-items: center;

}
  .destaque{
  background: #000000;
    position: relative;
  overflow: hidden;
  background-image:
    url("img/linhabranca.png"),
    url("img/linha-branca-esquerda.png");

  background-repeat: no-repeat, no-repeat;
background-position:
  right 8px,
  left bottom;
  background-size:
    auto 12%,
    auto 10%;
  color: #fff;
  margin-top: 1rem;
  padding: 4rem 4rem;
  position: relative;
}.viewport{
  touch-action: pan-y;
}


}

@media (max-width: 502px){
    .barra-nav h1{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.8rem;
        text-align: center;
    }
          .info-inicial {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 5rem 2rem;
  }

  .titulo-central {
    font-size: 3.6rem !important;
  }

  .info-inicial p {
    margin: 1rem 0;
  }

  .info-inicial button {
    margin-top: 1.5rem;
  }
  .titulo-amplo h2{
  font-size: 1.8rem;
  text-align: center;

}
.destaque h2{
  margin-left: 2rem;
}
.subtitulo{
margin-left: 2rem;
}
  .icons-img-sobre-nos{
  display: flex;
  flex-direction: column;
  align-items: center;   /* centraliza horizontal */
  justify-content: center;
   /* centraliza vertical */
  width: 100%;
  max-width: 320px;      /* controla o tamanho */
  margin: 0 auto;        /* centraliza o bloco */
}

.titulos-second-page h3{
  font-size: 2rem;
  margin-left: -1rem;
}
  .sobre-nos{
  position: relative;
  overflow: hidden;
  background-image:
    url("img/linhaesq.png"),
    ;

  background-repeat: no-repeat, no-repeat;
background-position:
  left 1px,
  right 882px ;
  background-size:
    auto 20%,
    auto 0%;

  
}

.box-missao span{
  display: block;
  font-size: 1rem;
  margin-top: 0.5rem;
}
  .viewport{
    touch-action: pan-y;
    width: 86vw;
    height: 130vw;
  }

  .cardes{
    min-width: 90vw;
    height:126vw;
    padding: 20px;
  }

  .cardes h3{
    font-size:  1.5rem;
  }

@media (max-width: 416px){


  .barra-nav h1{
    font-size:1.9rem;
  }
  .titulo-central{
    font-size: 2.6rem;
  }
  .destaque h2{
    font-size: 2.6rem !important;
    margin-left: -1rem;

  }
  .carde h3{
    margin-left: 0rem;
  }

  
  .sobre-nos{
  position: relative;
  overflow: hidden;
  background-image:
    url("img/linhaesq.png"),
    ;

  background-repeat: no-repeat, no-repeat;
background-position:
  left 1px,
  right 882px ;
  background-size:
    auto 23%,
    auto 0%;

  
}

.destaque{
  background: #000000;
    position: relative;
  overflow: hidden;
  background-image:
    url("img/linhabranca.png"),
    url("img/linha-branca-esquerda.png");

  background-repeat: no-repeat, no-repeat;
background-position:
  right 8px,
  left bottom;
  background-size:
    auto 15%,
    auto 5%;
  color: #fff;
  margin-top: 1rem;
  padding: 4rem 4rem;
  position: relative;
}.info-inicial h1{
    font-size: 3rem !important;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;

} 
.subtitulo{
  white-space: nowrap;
}
.destaque h2{
  font-size: 3rem;
  text-align: center;
}
.box-missao img{
  height:50px;
  
}
.itens span{
  font-size: 0.8rem;
}
nav{
  width: 80%;
}
.card h3{
  font-size: 3.3rem;
}
}
}