/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 24 2025 | 15:23:29 */
.wpp-modal{
  padding: 22px 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.wpp-title{
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  color: #111827;
}

.wpp-subtitle{
  margin: 0 0 14px 0;
  font-size: 14px;
  opacity: .85;
  text-align: center;
  color: #111827;
}

.wpp-actions{
  display: grid;
  gap: 12px;
}

/* BOTÃO: por padrão TUDO BRANCO (texto + ícones) */
.wpp-btn{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;

  color: #ffffff; 
  background: linear-gradient(135deg, #1FA855, #25D366);
  box-shadow: 0 10px 20px rgba(16, 185, 129, .25);

  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, color .18s ease;
}

/* garante herança de cor para QUALQUER coisa dentro do botão */
.wpp-btn :where(*){
  color: #ffffff;
}

/* SVG segue a cor do link (currentColor) */
.wpp-svg{
  width: 22px;
  height: 22px;
  display: block;
}

/* hover: TUDO PRETO */
.wpp-btn:hover{
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(16, 185, 129, .32);
  filter: saturate(1.05);
}

.wpp-btn:active{
  transform: translateY(0);
  box-shadow: 0 10px 18px rgba(16, 185, 129, .25);
}

/* brilho */
.wpp-btn::before{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), rgba(255,255,255,0) 55%);
  transform: translateX(-30%) rotate(10deg);
  opacity: 0;
  transition: opacity .18s ease, transform .45s ease;
  pointer-events: none;
}
.wpp-btn:hover::before{
  opacity: .9;
  transform: translateX(15%) rotate(10deg);
}

/* ripple */
.wpp-btn::after{
  content:"";
  position:absolute;
  left: var(--rx, 50%);
  top: var(--ry, 50%);
  width: 0;
  height: 0;
  background: rgba(255,255,255,.25);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: width .45s ease, height .45s ease, opacity .6s ease;
  opacity: 0;
  pointer-events: none;
}
.wpp-btn:active::after{
  width: 520px;
  height: 520px;
  opacity: 1;
}

/* ícone (placa) */
.wpp-icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  flex: 0 0 auto;
}

/* texto */
.wpp-text{
  display: grid;
  line-height: 1.1;
  gap: 4px;
}
.wpp-text strong{
  font-size: 15px;
  font-weight: 800;
}
.wpp-text small{
  font-size: 12px;
  opacity: .9;
}

/* setinha */
.wpp-arrow{
  margin-left: auto;
  font-size: 18px;
  opacity: .9;
  transition: transform .18s ease, opacity .18s ease;
}
.wpp-btn:hover .wpp-arrow{
  transform: translateX(3px);
  opacity: 1;
}

/* foco por teclado: mantém a regra (fica branco normalmente; se quiser preto no foco, use :focus-visible {color:#000}) */
.wpp-btn:focus-visible{
  outline: 3px solid rgba(37, 211, 102, .35);
  outline-offset: 3px;
}