/* =========================================================
   ASG PRIME — Cotação (CSS limpo)
   Fonte: Montserrat
   Cores: primária #1924b3 | secundária #3fc0ca
   Sem !important, sem sobreposição em cascata
========================================================= */

/* ---------- Tokens ---------- */
:root{
  --primary: #1924b3;
  --secondary: #3fc0ca;

  --bg: #f6f8fb;
  --card: #ffffff;

  --text: #0f172a;
  --muted: #475569;

  --border: #dce7f3;
  --border-soft: #e6edf5;

  --r12: 12px;
  --r16: 16px;
  --r20: 20px;

  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.12);

  --input-h: 52px;

  /* ÍCONES PNG (ajuste os caminhos) */
  --icon-car: url("src/images/carro.png");
  --icon-moto: url("src/images/moto.png");
  --icon-truck: url("src/images/caminhao.png");
}

/* ---------- Base ---------- */
*{ box-sizing: border-box; }
html{ font-size: 62.5%; }
body{
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.45;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a{ color: var(--secondary);; text-decoration: none; }
img{ max-width: 100%; height: auto; }

.container{
  max-width: 1140px;
  width: 92%;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.header-page{
  height: 76px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-page .container{
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.header-page img{
  display: block;
  max-height: 46px;
}

/* ---------- Banner / Hero ---------- */
.banner{
  padding: 42px 0 30px;
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(63,192,202,.22), transparent 62%),
    radial-gradient(820px 520px at 90% 0%, rgba(25,36,179,.18), transparent 60%),
    linear-gradient(180deg, #ffffff, #f3f7fb);
  border-bottom: 1px solid var(--border-soft);
}
.banner .container header{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: start;
  min-height: unset;
  align-items: center;
}

.text-banner h1{
  margin: 0 0 10px;
  font-size: clamp(2.6rem, 2.6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--primary);
  font-weight: 800;
  text-transform: none;
}
.text-banner p{
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.7rem;
  font-weight: 500;
}

/* ---------- Form Card ---------- */
.box-call-to-action-form{
  width: 100%;
  max-width: 540px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r20);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 16px;
  position: relative;
}

/* Top bar (titulo + ícone) */
.box-call-to-action-form > span{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--r16);
  /*background: linear-gradient(90deg, rgba(25,36,179,.10), rgba(63,192,202,.12));*/
  border: 1px solid var(--border-soft);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.box-call-to-action-form > span::before{
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(63,192,202,.18);
  border: 1px solid rgba(63,192,202,.30);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231924b3' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

/* Progress + passo automático (sem JS) */
@supports(selector(:has(*))){
  .box-call-to-action-form::before{
    content:"";
    position: absolute;
    left: 35px;
    right: 30px;
    top: 80px;
    height: 10px;
    border-radius: 999px;
    background: rgba(220,231,243,.9);
  }

  .box-call-to-action-form::after{
    content:"";
    position: absolute;
    left: 30px;
    top: 80px;
    height: 10px;
    border-radius: 999px;
    background: var(--secondary);
    width: 33.33%;
    transition: width .25s ease;
  }

  .box-call-to-action-form > span{
    position: relative;
    padding: 10px;
  }
  .box-call-to-action-form > span::after{
    content: "Passo 1 de 3";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    background: var(--secondary);
    border: 1px solid var(--border-soft);
    padding: 6px 10px;
    border-radius: 999px;
  }

  .box-call-to-action-form:has(#pwr_step_2:not([style*="display:none"]))::after{ width: 66.66%; }
  .box-call-to-action-form:has(#pwr_step_3:not([style*="display:none"]))::after{ width: 100%; }

  .box-call-to-action-form:has(#pwr_step_2:not([style*="display:none"])) > span::after{ content:"Passo 2 de 3"; }
  .box-call-to-action-form:has(#pwr_step_3:not([style*="display:none"])) > span::after{ content:"Passo 3 de 3"; }
}

/* ---------- Fields ---------- */
.step{ padding: 30px 4px 6px; }
.group-form{ margin-bottom: 12px; }

.group-form label{
  display:block;
  margin: 0 0 6px;
  font-weight: 600;
  color: #0b1220;
  font-size: 1.35rem;
}

input, select{
  width: 100%;
  height: var(--input-h);
  border-radius: var(--r16);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 1.55rem;
  padding: 0 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

input:hover, select:hover{
  border-color: rgba(63,192,202,.55);
}
input:focus, select:focus{
  border-color: rgba(25,36,179,.55);
  box-shadow: 0 0 0 4px rgba(63,192,202,.18);
}

select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(25,36,179,.55) 50%),
    linear-gradient(135deg, rgba(25,36,179,.55) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 13px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* Validações do sistema */
.required{
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239,68,68,.10);
}
.input-true{
  border-color: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.10);
}

/* ---------- Step 1: ícones dentro do campo ---------- */
#pwr_step_1 input{
  padding-left: 52px;
  background-repeat: no-repeat;
  background-position: 16px 50%;
  background-size: 20px 20px;
}
#pwr_step_1 #pwr_field_name{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%231924b3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}
#pwr_step_1 #pwr_field_email{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%231924b3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='m4 6 8 7 8-7'/%3E%3C/svg%3E");
}
#pwr_step_1 #pwr_field_mobile{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%231924b3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.08 4.18 2 2 0 0 1 4.06 2h3a2 2 0 0 1 2 1.72c.12.86.32 1.7.59 2.5a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.58-1.11a2 2 0 0 1 2.11-.45c.8.27 1.64.47 2.5.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

/* ---------- Step 2: Tipo de veículo com PNG ---------- */
#pwr_step_2 .group-form ul{
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

#pwr_step_2 .group-form ul li{
  position: relative;
  width: 90%;
}

/* Esconde o radio padrão */
#pwr_step_2 .option-input.radio{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Card clicável */
#pwr_step_2 .group-form ul li label{
  display: flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 44px 0 14px;
  border-radius: var(--r16);
  border: 2px solid var(--border);
  background: #fff;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: transform .12s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
#pwr_step_2 .group-form ul li label:hover{
  transform: translateY(-1px);
  border-color: rgba(63,192,202,.65);
  box-shadow: var(--shadow-sm);
}

/* Ícone PNG */
#pwr_step_2 .group-form ul li label::before{
  content:"";
  width: 42px;
  height: 42px;
  border-radius: 14px;
  /*background: rgba(63,192,202,.14);
  border: 1px solid rgba(63,192,202,.26);*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px; /* tamanho do PNG dentro */
  flex: 0px;
}

/* Aplica PNG por opção */
#pwr_field_type_car + label::before{ background-image: var(--icon-car); }
#pwr_field_type_motorcycle + label::before{ background-image: var(--icon-moto); }
#pwr_field_type_truck + label::before{ background-image: var(--icon-truck); }

/* Selecionado */
#pwr_field_type_car:checked + label,
#pwr_field_type_motorcycle:checked + label,
#pwr_field_type_truck:checked + label{
  background: rgba(63,192,202,.16);
  border-color: rgba(25,36,179,.45);
  box-shadow: 0 0 0 4px rgba(63,192,202,.20);
}

/* Check */
#pwr_field_type_car:checked + label::after,
#pwr_field_type_motorcycle:checked + label::after,
#pwr_field_type_truck:checked + label::after{
  content:"";
  position:absolute;
  right: 14px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 8px 18px rgba(25,36,179,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

/* ---------- Step 3: checkbox alinhado ---------- */
#pwr_step_3 .box-input{
  width: 100%;
  min-height: var(--input-h);
  border-radius: var(--r16);
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
#pwr_step_3 .box-input:hover{
  border-color: rgba(63,192,202,.55);
}

#pwr_step_3 .option-input.checkbox{
  appearance: none;
  width: 33px;
  height: 33px;
  border-radius: 50px;
  border: 1px solid #cbd5e1;
  background: #fff;
  display: inline-grid;
  place-items: center;
  flex: 0 0 22px;
  padding: 16px;
}
#pwr_step_3 .option-input.checkbox:checked{
  background: var(--secondary);
  border-color: var(--secondary);
  padding: 10px;
}
#pwr_step_3 .option-input.checkbox:checked::before{
  content:"";
  width: 12px;
  height: 12px;
  background: #fff;
  clip-path: polygon(14% 44%, 0 60%, 42% 100%, 100% 22%, 84% 8%, 40% 72%);
}
#pwr_step_3 .box-input label{
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
  font-weight: 700;
}
#pwr_step_3 .box-input label small{
  font-weight: 600;
  color: #64748b;
  font-size: 1.25rem;
}

@supports(selector(:has(*))){
  #pwr_step_3 .box-input:has(#pwr_field_uber:checked),
  #pwr_step_3 .box-input:has(#pwr_field_uber:focus){
    border-color: rgba(25,36,179,.55);
    box-shadow: 0 0 0 4px rgba(63,192,202,.18);
  }
}

/* ---------- Buttons ---------- */
.row-flexbox{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.row-flexbox .two-col{ flex: 1; }

.button{
  padding: 0px 55px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.55rem;
  color: #fff;
  background: linear-gradient(180deg, #2a37ff, var(--primary));
  box-shadow: 0 12px 26px rgba(25,36,179,.20);
  position: relative;
  transition: transform .12s ease, filter .2s ease, box-shadow .2s ease;
}
.button::after{
  content:"→";
  position:absolute;
  right: 18px;
  top: 47%;
  transform: translateY(-50%);
  font-size: 1.9rem;
  opacity: .92;
  transition: transform .18s ease;
}
.button:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(25,36,179,.24);
}
.button:hover::after{
  transform: translateY(-50%) translateX(3px);
}

@keyframes pulse{
  0%,100%{ box-shadow: 0 12px 26px rgba(25,36,179,.20); }
  50%{ box-shadow: 0 12px 26px rgba(25,36,179,.20), 0 0 0 6px rgba(63,192,202,.14); }
}
#pwr_step_1_next, #pwr_step_2_next, #pwr_step_3_go{
  animation: pulse 2.4s ease-in-out infinite;
}

.back{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
}
.back:hover{
  transform: translateY(-1px);
  border-color: rgba(25,36,179,.25);
  box-shadow: var(--shadow-sm);
}

/* Sticky actions no mobile */
@media (max-width: 600px){
  .row-flexbox{
    position: sticky;
    bottom: 10px;
    padding: 10px;
    background: rgba(246,248,251,.76);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    z-index: 5;
  }
}

/* ---------- Footer steps cards ---------- */
.banner > .container footer{
  margin-top: 28px;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
.box-banner{
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border-soft);
  border-radius: var(--r16);
  padding: 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  box-shadow: var(--shadow-sm);
}
.box-banner .number{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  color: var(--primary);
  background: rgba(63,192,202,.16);
  border: 1px solid rgba(63,192,202,.30);
}
.box-banner span{
  display:block;
  font-weight: 800;
}
.box-banner p{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1.35;
}

/* ---------- Footer final (se existir) ---------- */
.footer-page{
  text-align: -webkit-center;
  font-size: 12px;
  background: #1924b3;
  color: rgba(255,255,255,.86);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.footer-page img{
  max-width: 140px;
  max-height: 140px;
  opacity: .40;
}

/* ---------- Responsivo ---------- */
@media (max-width: 992px){
  .banner .container header{ grid-template-columns: 1fr; }
  .box-call-to-action-form{ max-width: 680px; justify-self: center; }
  .banner > .container footer{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  #pwr_step_2 .group-form ul{ gap: 10px; }

  #pwr_step_2 .group-form ul li label{
    height: 92px;
    padding: 10px 10px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0px;
  }

  #pwr_step_2 .group-form ul li label::after{
    top: 10px;
    right: 10px;
  }
} /* ✅ FECHA O @media AQUI */


/* (opcional) ajuste do termo — recomendo remover !important se não precisar */
#powerTerms{
  font-size: 11px;
  text-align: center;
}


/* =========================================================
   ASG PRIME — BOTÃO WHATSAPP NO HEADER
   (mesmo visual do rodapé)
========================================================= */

/* botão base */
header a.button-whatsapp.pwrConsultantExists{
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 10px 16px;
  border-radius: 999px;

  background: #25D366;
  color: #ffffff;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0,0,0,.22);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;

  white-space: nowrap;
}

/* hover desktop */
header a.button-whatsapp.pwrConsultantExists:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 12px 26px rgba(0,0,0,.28);
}

/* ícone */
header a.button-whatsapp.pwrConsultantExists .icon-whatsapp{
  width: 32px;
  height: 32px;
  border-radius: 999px;

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

  background: rgba(255,255,255,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='white'%3E%3Cpath d='M19.11 17.45c-.27-.14-1.6-.79-1.85-.88-.25-.09-.43-.14-.61.14-.18.27-.7.88-.86 1.06-.16.18-.32.2-.59.07-.27-.14-1.14-.42-2.17-1.33-.8-.71-1.34-1.58-1.5-1.85-.16-.27-.02-.42.12-.55.12-.12.27-.32.41-.48.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.47-.84-2.01-.22-.53-.45-.46-.61-.47h-.52c-.18 0-.48.07-.73.34-.25.27-.96.94-.96 2.3 0 1.36.98 2.67 1.12 2.86.14.18 1.93 2.95 4.67 4.13.65.28 1.16.45 1.55.58.65.21 1.24.18 1.71.11.52-.08 1.6-.65 1.83-1.28.23-.63.23-1.17.16-1.28-.07-.11-.25-.18-.52-.32zM16.04 3C9.41 3 4 8.2 4 14.6c0 2.54.86 4.89 2.3 6.79L5 29l7.81-1.97c1.08.29 2.22.45 3.23.45 6.63 0 12.04-5.2 12.04-11.6S22.67 3 16.04 3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

/* texto */
header a.button-whatsapp.pwrConsultantExists span{
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

header a.button-whatsapp.pwrConsultantExists small{
  font-size: 1.05rem;
  font-weight: 700;
  opacity: .95;
}

header a.button-whatsapp.pwrConsultantExists .pwrConsultantPhone{
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}


/* =========================================================
   ASG PRIME — CONSULTOR NO RODAPÉ (DESKTOP + MOBILE)
   Container: <footer id="footer" class="footer-page">
========================================================= */

/* ✅ garante que o bloco não herde centralização estranha do footer */
#footer.footer-page header.pwrConsultantExists{
  width: 100%;
  max-width: 1140px;
  margin: 16px auto 0;
  padding: 18px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  background: linear-gradient(90deg, rgba(25,36,179,.96), rgba(25,36,179,.88));
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);

  color: #fff;

  text-align: left; /* ✅ anula o -webkit-center do footer */
}

/* esquerda */
#footer.footer-page header.pwrConsultantExists .consultant{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
}

/* avatar circular perfeito */
#footer.footer-page header.pwrConsultantExists img.pwrConsultantPicture{
  width: 58px;
  height: 58px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  flex: 0 0 58px;

  border: 2px solid rgba(255,255,255,.35);
  background: #fff;
}

/* dados */
#footer.footer-page header.pwrConsultantExists .dados-consultant{
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
  min-width: 0;
  align-items: flex-start;
}

#footer.footer-page header.pwrConsultantExists .dados-consultant > span:first-child{
  font-size: 1.2rem;
  font-weight: 600;
}

#footer.footer-page header.pwrConsultantExists .pwrConsultantName{
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#footer.footer-page header.pwrConsultantExists .pwrConsultantEmail{
  font-size: 1.25rem;
  font-weight: 600;
  opacity: .92;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* botão whatsapp */
#footer.footer-page header.pwrConsultantExists a.button-whatsapp.pwrConsultantExists{
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 10px 18px;
  border-radius: 999px;

  background: #25D366;
  color: #fff;
  text-decoration: none;

  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  flex: 0 0 auto;
}

#footer.footer-page header.pwrConsultantExists a.button-whatsapp.pwrConsultantExists:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(0,0,0,.28);
}

#footer.footer-page header.pwrConsultantExists a.button-whatsapp .icon-whatsapp{
  width: 34px;
  height: 34px;
  border-radius: 999px;

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

  background: rgba(255,255,255,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='white'%3E%3Cpath d='M19.11 17.45c-.27-.14-1.6-.79-1.85-.88-.25-.09-.43-.14-.61.14-.18.27-.7.88-.86 1.06-.16.18-.32.2-.59.07-.27-.14-1.14-.42-2.17-1.33-.8-.71-1.34-1.58-1.5-1.85-.16-.27-.02-.42.12-.55.12-.12.27-.32.41-.48.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.47-.84-2.01-.22-.53-.45-.46-.61-.47h-.52c-.18 0-.48.07-.73.34-.25.27-.96.94-.96 2.3 0 1.36.98 2.67 1.12 2.86.14.18 1.93 2.95 4.67 4.13.65.28 1.16.45 1.55.58.65.21 1.24.18 1.71.11.52-.08 1.6-.65 1.83-1.28.23-.63.23-1.17.16-1.28-.07-.11-.25-.18-.52-.32zM16.04 3C9.41 3 4 8.2 4 14.6c0 2.54.86 4.89 2.3 6.79L5 29l7.81-1.97c1.08.29 2.22.45 3.23.45 6.63 0 12.04-5.2 12.04-11.6S22.67 3 16.04 3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

#footer.footer-page header.pwrConsultantExists a.button-whatsapp span{
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.05;
}

#footer.footer-page header.pwrConsultantExists a.button-whatsapp small{
  font-size: 1.1rem;
  font-weight: 700;
  opacity: .92;
}

#footer.footer-page header.pwrConsultantExists .pwrConsultantPhone{
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary)
}

/* responsivo do consultor */
@media (max-width: 720px){
  #footer.footer-page header.pwrConsultantExists{
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  #footer.footer-page header.pwrConsultantExists .consultant{
    justify-content: center;
  }

  #footer.footer-page header.pwrConsultantExists a.button-whatsapp.pwrConsultantExists{
    width: 100%;
    justify-content: center;
  }
}
