/* Efeitos de rolagem para revelar elementos */


/* Configuração base para todos que revelam */
.reveal-left, .reveal-right {
  opacity: 0;
  transition: all 1.2s ease-out;
}

/* Estado inicial: Esquerda */
.reveal-left { transform: translateX(-80px); }

/* Estado inicial: Direita */
.reveal-right { transform: translateX(80px); }

/* Estado Final (quando o JS ativar) */
.reveal-left.active, .reveal-right.active {
  opacity: 2;
  transform: translateX(0);
}

/*Whatasapp*/
.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 14px;
}

.whatsapp-message {
  position: relative;
  background: #fff;
  color: #333;
  font-size: 17px;
  line-height: 1.35;
  padding: 16px 46px 16px 18px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: .4s ease;
}

.whatsapp-message::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 10px 0 10px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

.whatsapp-message.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.close-msg {
  position: absolute;
  top: 8px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 22px;
  color: #999;
  cursor: pointer;
}

.whatsapp-btn {
  width: 66px;
  height: 66px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37,211,102,.35);
  transition: .3s;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

@media (max-width: 600px) {
  .whatsapp-widget {
    right: 16px;
    bottom: 18px;
    gap: 10px;
  }

  .whatsapp-message {
    max-width: 230px;
    font-size: 14px;
    padding: 14px 38px 14px 14px;
  }

  .whatsapp-btn {
    width: 56px;
    height: 56px;
    font-size: 29px;
  }
}




/* SPLASH SCREEN MOBILE efeito carregamento mobile */
#mobile-loader {
    display: none;
}

@media (max-width: 768px) {

    #mobile-loader {
        position: fixed;
        inset: 0;
  background: linear-gradient(135deg, #ffffff, #dbdbdb);
        z-index: 999999;

        display: flex;
        align-items: center;
        justify-content: center;

        transition: opacity 0.6s ease;
    }

    #mobile-loader img {
        width: 180px;
        animation: zoomLogo 1.2s ease;
    }

    @keyframes zoomLogo {
        from {
            opacity: 0;
            transform: scale(0.8);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }
}
/* SPLASH SCREEN MOBILE efeito carregamento mobile */
