.elementor-kit-8{--e-global-color-primary:#152F52;--e-global-color-secondary:#595E61;--e-global-color-text:#2B3034;--e-global-color-accent:#FFC350;--e-global-color-819d79b:#B1BAC2;--e-global-color-05cc0ef:#FFFFFF;--e-global-color-3fe6657:#0F63D0;--e-global-typography-primary-font-family:"Outfit";--e-global-typography-primary-font-weight:700;--e-global-typography-secondary-font-family:"Outfit";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Outfit";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Outfit";--e-global-typography-accent-font-weight:400;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* =========================================
   BOTÃO WHATSAPP - MEDEIROS REAL ESTATE
   ========================================= */

/* 1️⃣ Efeito de subida (fade + translateY) */
@keyframes fadeUpButton {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2️⃣ Pulso verde suave */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

/* 3️⃣ Brilho lateral (reflexo ao hover) */
@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* 4️⃣ Botão elegante estilo WhatsApp */
.botao-whatsapp {
  background-color: #25D366; /* Cor oficial do WhatsApp */
  color: #fff;
  border-radius: 50px; /* Bordas arredondadas */
  font-weight: 600;
  font-size: 18px;
  padding: 14px 36px;
  border: none;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  
  /* Animações */
  opacity: 0;
  transform: translateY(0);
  animation: fadeUpButton 1.2s ease forwards, pulseGlow 2.8s infinite 2s;
  transition: all 0.4s ease;
}

/* 5️⃣ Brilho no hover */
.botao-whatsapp::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
}

.botao-whatsapp:hover::after {
  animation: shine 1s forwards;
}

.botao-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(37,211,102,0.4);
}/* End custom CSS */