
.gallery-more {
  display: none;
  margin: 15px auto 0;
  padding: 10px 20px;

  background: red;
  color: white;
  border: none;
  border-radius: 6px;

  cursor: pointer;
  font-weight: bold;
}

/* MOBILE: só 2 imagens visíveis */
@media (max-width: 600px) {

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img:nth-child(n+3) {
    display: none;
  }

  .gallery.expanded .gallery-grid img {
    display: block;
  }

  .gallery-more {
    display: block;
  }
}










/* NEON SUAVE NA SECÇÃO EMPRESA */
.about {
  position: relative;
  z-index: 1;
}

.about::after {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 12px;

  box-shadow:
    0 0 20px rgba(255,0,0,0.15),
    0 0 40px rgba(255,0,0,0.1);

  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* quando aparece */
.about.neon-active::after {
  opacity: 1;
}

























.app-carousel {
  width: 100%;
  overflow: hidden;
}

.app-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
  align-items: center;
}

.app-slide {
  flex: 0 0 260px;

  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.4s ease;

  text-align: center;
}

.app-slide img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.app-slide.active {
  opacity: 1;
  transform: scale(1);
}

.app-slide p {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

/* dots */
.app-dots {
  text-align: center;
  margin-top: 20px;
}

.app-dots span {
  width: 10px;
  height: 10px;
  margin: 5px;
  display: inline-block;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.app-dots span.active {
  background: red;
}













	
	
	
	.form-highlight {
  animation: formGlow 1.5s ease;
}

@keyframes formGlow {
  0% {
    transform: translateY(30px);
    opacity: 0;
    box-shadow: 0 0 0 rgba(255,0,0,0);
  }

  50% {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 0 25px rgba(255,0,0,0.4);
  }

  100% {
    box-shadow: 0 0 0 rgba(255,0,0,0);
  }
}











/* BOTÃƒO VOLTAR AO TOPO */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 50px;
  height: 50px;

  background: red;
  color: white;
  border: none;
  border-radius: 50%;

  font-size: 22px;
  font-weight: bold;

  cursor: pointer;

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

  box-shadow: 0 5px 15px rgba(0,0,0,0.3);

  opacity: 0;
  pointer-events: none;

  transition: all 0.3s ease;

  z-index: 999;

  transform: rotate(-90deg);

  /* ðŸ”¥ efeito pulse igual aos outros botÃµes */
  animation: topPulse 2.5s infinite ease-in-out;
}

/* visÃ­vel */
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

/* hover premium */
#backToTop:hover {
  animation-play-state: paused;
  transform: rotate(-90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(255,0,0,0.6);
}

/* ðŸ”¥ mesma animaÃ§Ã£o dos outros botÃµes */
@keyframes topPulse {
  0% {
    transform: rotate(-90deg) scale(1);
    box-shadow: 0 0 0 rgba(255,0,0,0.4);
  }

  50% {
    transform: rotate(-90deg) scale(1.05);
    box-shadow: 0 0 15px rgba(255,0,0,0.5);
  }

  100% {
    transform: rotate(-90deg) scale(1);
    box-shadow: 0 0 0 rgba(255,0,0,0.4);
  }
}











.whatsapp-float {
  position: fixed;
  right: 27px;
  bottom: 95px;
	

  width: 55px;
  height: 55px;

  background: #25D366;
  border-radius: 50%;

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

  box-shadow: 0 5px 15px rgba(0,0,0,0.3);

  z-index: 1000;

  animation: whatsappPulse 2.5s infinite ease-in-out;
}

/* efeito igual aos outros */
@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(37,211,102,0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(37,211,102,0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(37,211,102,0.4);
  }
}

.whatsapp-float:hover {
  animation-play-state: paused;
  transform: scale(1.1);
}