/*
 * Posta Já — Central de Contato v2
 * Reconstruída do zero em 17/08/2026.
 * Um único launcher, sem gatilhos de scroll e sem dependência de breakpoint.
 */

:root {
  --pj-contact-navy: var(--brand-navy, #2c4364);
  --pj-contact-navy-deep: #183553;
  --pj-contact-yellow: var(--brand-yellow, #ffcd00);
  --pj-contact-yellow-bright: #fff112;
  --pj-contact-green: #25d366;
  --pj-contact-green-dark: #1fb85a;
  --pj-contact-text: #26364a;
  --pj-contact-muted: #69778a;
  --pj-contact-border: #e1e8f0;
  --pj-contact-soft: #f6f8fb;
}

.pj-contact-launcher {
  position: fixed;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 1250;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--pj-contact-green);
  color: #fff;
  box-shadow: 0 12px 30px rgba(14, 52, 92, 0.22), 0 7px 18px rgba(37, 211, 102, 0.28);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  animation: pj-contact-launcher-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.pj-contact-launcher:hover {
  transform: translateY(-2px) scale(1.035);
  background: var(--pj-contact-green-dark);
  box-shadow: 0 16px 34px rgba(14, 52, 92, 0.25), 0 8px 22px rgba(37, 211, 102, 0.34);
}

.pj-contact-launcher:active {
  transform: scale(0.96);
}

.pj-contact-launcher:focus-visible,
.pj-contact-close:focus-visible,
.pj-contact-button:focus-visible,
.pj-contact-choice:focus-visible,
.pj-contact-quiz-option:focus-visible,
.pj-contact-link:focus-visible,
.pj-contact-back:focus-visible {
  outline: 3px solid rgba(255, 205, 0, 0.72);
  outline-offset: 3px;
}

.pj-contact-launcher svg {
  width: 30px;
  height: 30px;
  display: block;
}

@keyframes pj-contact-launcher-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.86);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pj-contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 18, 31, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.pj-contact-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pj-contact-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100dvh - 48px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(5, 18, 34, 0.4);
  transform: translateY(16px) scale(0.985);
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.pj-contact-overlay.is-open .pj-contact-dialog {
  transform: translateY(0) scale(1);
}

.pj-contact-header {
  position: relative;
  flex: 0 0 auto;
  padding: 24px 60px 21px 26px;
  background: linear-gradient(135deg, var(--pj-contact-navy) 0%, var(--pj-contact-navy-deep) 100%);
  color: #fff;
}

.pj-contact-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 1.72rem);
  font-weight: 900;
  line-height: 1.15;
}

.pj-contact-title-highlight {
  display: inline-block;
}

.pj-contact-title-divider {
  display: none;
}

.pj-contact-subtitle {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.55;
}

.pj-contact-header--home,
.pj-contact-header--quiz,
.pj-contact-header--plan {
  padding: 28px 62px 24px;
  text-align: center;
}

.pj-contact-header--quiz {
  padding-top: 25px;
  padding-bottom: 21px;
}

.pj-contact-header--home .pj-contact-title,
.pj-contact-header--quiz .pj-contact-title,
.pj-contact-header--plan .pj-contact-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.22em;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.015em;
}

.pj-contact-header--home .pj-contact-title-highlight,
.pj-contact-header--quiz .pj-contact-title-highlight,
.pj-contact-header--plan .pj-contact-title-highlight {
  padding: 0.08em 0.24em 0.1em;
  border-radius: 0.22em;
  background: var(--pj-contact-yellow-bright);
  color: var(--pj-contact-navy-deep);
  box-shadow: 0 7px 18px rgba(255, 205, 0, 0.16);
}

.pj-contact-header--home .pj-contact-title-divider,
.pj-contact-header--quiz .pj-contact-title-divider,
.pj-contact-header--plan .pj-contact-title-divider {
  width: min(100%, 390px);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px auto 0;
}

.pj-contact-title-divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.42));
}

.pj-contact-title-divider-line:last-child {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08));
}

.pj-contact-title-divider img {
  width: 26px;
  height: 26px;
  display: block;
  flex: 0 0 auto;
}

.pj-contact-header--home .pj-contact-subtitle,
.pj-contact-header--quiz .pj-contact-subtitle,
.pj-contact-header--plan .pj-contact-subtitle {
  max-width: 590px;
  margin: 13px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.pj-contact-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.pj-contact-close:hover {
  background: rgba(255, 255, 255, 0.17);
  transform: rotate(4deg);
}

.pj-contact-body {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px 26px 26px;
}

.pj-contact-view[hidden] {
  display: none !important;
}

.pj-contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pj-contact-choice {
  min-height: 174px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border: 1.5px solid var(--pj-contact-border);
  border-radius: 17px;
  background: #fff;
  color: var(--pj-contact-text);
  text-align: left;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.pj-contact-choice:hover {
  transform: translateY(-2px);
  border-color: rgba(44, 67, 100, 0.32);
  box-shadow: 0 12px 28px rgba(25, 50, 78, 0.09);
}

.pj-contact-choice--whatsapp {
  background: linear-gradient(145deg, rgba(37, 211, 102, 0.09), #fff 68%);
  border-color: rgba(37, 211, 102, 0.32);
}

.pj-contact-choice--quiz {
  background: linear-gradient(145deg, rgba(255, 241, 18, 0.15), #fff 70%);
  border-color: rgba(255, 205, 0, 0.38);
}

.pj-contact-choice-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--pj-contact-navy);
  color: #fff;
}

.pj-contact-choice--whatsapp .pj-contact-choice-icon {
  align-self: center;
  background: var(--pj-contact-green);
}

.pj-contact-choice--quiz .pj-contact-choice-icon {
  align-self: center;
  background: var(--pj-contact-yellow-bright);
  color: var(--pj-contact-navy);
}

.pj-contact-choice--whatsapp strong,
.pj-contact-choice--whatsapp small,
.pj-contact-choice--quiz strong,
.pj-contact-choice--quiz small {
  width: 100%;
  text-align: center;
}

.pj-contact-choice-icon svg {
  width: 23px;
  height: 23px;
}

.pj-contact-choice strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
}

.pj-contact-choice small {
  display: block;
  margin-top: -4px;
  color: var(--pj-contact-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.pj-contact-choice-arrow {
  margin-top: auto;
  color: var(--pj-contact-navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.pj-contact-choice-cta {
  min-height: 38px;
  width: 100%;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 10px;
  background: var(--pj-contact-navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-align: center;
  box-shadow: 0 8px 18px rgba(24, 53, 83, 0.14);
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.pj-contact-choice--whatsapp:hover .pj-contact-choice-cta,
.pj-contact-choice--quiz:hover .pj-contact-choice-cta {
  background: var(--pj-contact-navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(24, 53, 83, 0.19);
}

.pj-contact-context {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 11px 13px;
  border: 1px solid var(--pj-contact-border);
  border-radius: 12px;
  background: var(--pj-contact-soft);
  color: var(--pj-contact-muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.pj-contact-context strong {
  color: var(--pj-contact-navy);
}

.pj-contact-context-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pj-contact-yellow);
}

.pj-contact-direct {
  text-align: center;
}

.pj-contact-direct-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  border-radius: 18px;
  background: rgba(37, 211, 102, 0.11);
  color: var(--pj-contact-green);
}

.pj-contact-direct-icon svg {
  width: 34px;
  height: 34px;
}

.pj-contact-direct-title,
.pj-contact-result-title,
.pj-contact-question {
  margin: 0;
  color: var(--pj-contact-navy);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.25;
}

.pj-contact-question {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pj-contact-direct-copy,
.pj-contact-result-copy {
  max-width: 500px;
  margin: 9px auto 0;
  color: var(--pj-contact-muted);
  font-size: 0.82rem;
  line-height: 1.58;
}

.pj-contact-plan-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 auto 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 205, 0, 0.38);
  border-radius: 999px;
  background: rgba(255, 241, 18, 0.13);
  color: var(--pj-contact-navy);
  font-size: 0.69rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


/* Página Clube de Envios: contato direto com hierarquia enxuta e comercial. */
.pj-contact-view--plan-direct .pj-contact-direct {
  width: min(100%, 540px);
  margin: 0 auto;
  padding: 26px 30px 28px;
  border: 1.5px solid rgba(44, 67, 100, 0.13);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 14px 30px rgba(25, 50, 78, 0.07);
}

.pj-contact-view--plan-direct .pj-contact-plan-eyebrow {
  margin: 0 0 10px;
  color: var(--pj-contact-muted);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  text-align: center;
}

.pj-contact-view--plan-direct .pj-contact-plan-chip--featured {
  margin: 0 auto 22px;
  padding: 0.36em 0.82em 0.42em;
  border: 0;
  border-radius: 0.42em;
  background: #fccd04;
  color: #0e345c;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0.018em;
  box-shadow: 0 0.12em 0.3em rgba(14, 52, 92, 0.13);
}

.pj-contact-view--plan-direct .pj-contact-direct-icon {
  display: none;
}

.pj-contact-view--plan-direct .pj-contact-direct-title {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pj-contact-view--plan-direct .pj-contact-direct-copy {
  max-width: 440px;
  margin-top: 9px;
  font-size: 0.83rem;
  line-height: 1.58;
}

.pj-contact-view--plan-direct .pj-contact-actions {
  max-width: 430px;
  margin: 22px auto 0;
}

.pj-contact-view--plan-direct .pj-contact-button--whatsapp {
  min-height: 50px;
  border-radius: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}


/* Página de rastreamento: mesmo padrão visual do card de contato da Home. */
.pj-contact-view--tracking-direct .pj-contact-direct {
  width: min(100%, 540px);
  margin: 0 auto;
  padding: 26px 30px 28px;
  border: 1.5px solid rgba(37, 211, 102, 0.32);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(37, 211, 102, 0.09), #ffffff 68%);
  box-shadow: 0 14px 30px rgba(25, 50, 78, 0.07);
}

.pj-contact-view--tracking-direct .pj-contact-direct-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: var(--pj-contact-green);
  color: #ffffff;
}

.pj-contact-view--tracking-direct .pj-contact-direct-icon svg {
  width: 30px;
  height: 30px;
}

.pj-contact-view--tracking-direct .pj-contact-direct-title {
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pj-contact-view--tracking-direct .pj-contact-direct-copy {
  max-width: 430px;
  margin-top: 9px;
  font-size: 0.83rem;
  line-height: 1.58;
}

.pj-contact-view--tracking-direct .pj-contact-actions {
  max-width: 430px;
  margin: 22px auto 0;
}

.pj-contact-view--tracking-direct .pj-contact-button--whatsapp {
  min-height: 50px;
  border-radius: 12px;
  background: var(--pj-contact-navy);
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(24, 53, 83, 0.14);
}

.pj-contact-view--tracking-direct .pj-contact-button--whatsapp:hover {
  background: var(--pj-contact-navy-deep);
  box-shadow: 0 10px 22px rgba(24, 53, 83, 0.2);
}

.pj-contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.pj-contact-button,
.pj-contact-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 12px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.pj-contact-button {
  border: 0;
}

.pj-contact-button--whatsapp {
  background: var(--pj-contact-green);
  color: #fff;
  box-shadow: 0 9px 22px rgba(37, 211, 102, 0.24);
}

.pj-contact-button--whatsapp:hover {
  transform: translateY(-1px);
  background: var(--pj-contact-green-dark);
  box-shadow: 0 11px 26px rgba(37, 211, 102, 0.29);
}

.pj-contact-button--secondary,
.pj-contact-link {
  border: 1.5px solid var(--pj-contact-border);
  background: #fff;
  color: var(--pj-contact-navy);
}

.pj-contact-button--secondary:hover,
.pj-contact-link:hover {
  transform: translateY(-1px);
  border-color: rgba(44, 67, 100, 0.3);
  background: var(--pj-contact-soft);
}

.pj-contact-button svg,
.pj-contact-link svg {
  width: 19px;
  height: 19px;
}

.pj-contact-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 0 16px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--pj-contact-navy);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
}

.pj-contact-back:hover {
  text-decoration: underline;
}

[data-pj-contact-view="quiz"] .pj-contact-back--quiz {
  width: auto;
  min-width: 104px;
  min-height: 34px;
  margin: 0;
  padding: 7px 16px;
  border: 1px solid var(--pj-contact-navy);
  border-radius: 10px;
  background: var(--pj-contact-navy);
  color: #fff;
  font-size: 0.69rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.035em;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 5px 12px rgba(44, 67, 100, 0.14);
  transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

[data-pj-contact-view="quiz"] .pj-contact-back--quiz:hover {
  transform: translateY(-1px);
  background: var(--pj-contact-navy-deep);
  text-decoration: none;
  box-shadow: 0 7px 16px rgba(44, 67, 100, 0.2);
}

.pj-contact-quiz-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.pj-contact-quiz-step {
  color: var(--pj-contact-muted);
  font-size: 0.69rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pj-contact-progress {
  height: 7px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #e9eef4;
}

.pj-contact-progress-bar {
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pj-contact-yellow), var(--pj-contact-yellow-bright));
  transition: width 0.22s ease;
}

.pj-contact-quiz-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.pj-contact-quiz-option {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px;
  border: 1.5px solid rgba(44, 67, 100, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f5f8fc 100%);
  color: var(--pj-contact-navy);
  text-align: center;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.38;
  cursor: pointer;
  box-shadow: 0 7px 16px rgba(25, 50, 78, 0.045);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.pj-contact-quiz-option:hover {
  transform: translateY(-2px);
  border-color: var(--pj-contact-navy);
  background: var(--pj-contact-navy);
  color: #fff;
  box-shadow: 0 11px 22px rgba(25, 50, 78, 0.15);
}

.pj-contact-quiz-option.is-selected {
  transform: translateY(-1px);
  border-color: var(--pj-contact-yellow);
  background: var(--pj-contact-yellow-bright);
  color: var(--pj-contact-navy-deep);
  box-shadow: 0 0 0 2px rgba(255, 205, 0, 0.13), 0 9px 20px rgba(25, 50, 78, 0.08);
}

.pj-contact-result-topline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pj-contact-back--result {
  width: auto;
  min-width: 150px;
  min-height: 38px;
  margin: 0;
  padding: 9px 18px;
  border: 1px solid var(--pj-contact-navy);
  border-radius: 10px;
  background: var(--pj-contact-navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.035em;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(44, 67, 100, 0.16);
  transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.pj-contact-back--result:hover {
  transform: translateY(-1px);
  background: var(--pj-contact-navy-deep);
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(44, 67, 100, 0.22);
}

.pj-contact-result {
  text-align: center;
}

.pj-contact-result-plan-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.pj-contact-result-eyebrow {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  color: var(--pj-contact-muted);
  font-size: 0.67rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pj-contact-result-plan {
  display: table;
  max-width: min(100%, 620px);
  margin: 0 auto;
  padding: 0.08em 0.38em 0.12em;
  border-radius: 0.42em;
  background: var(--pj-contact-yellow-bright);
  color: var(--pj-contact-navy);
  font-size: clamp(1.8rem, 5vw, 2.75rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  box-shadow: 0 0.08em 0.22em rgba(14, 52, 92, 0.12), 0 10px 24px rgba(255, 205, 0, 0.13);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* CLUBE+ no resultado segue exatamente a linguagem visual usada na página do plano. */
.pj-contact-result-plan[data-plan-key="clube_mais"],
.pj-contact-result-plan.pj-clube-plus {
  display: table;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.08em 0.38em 0.1em;
  border-radius: 0.42em;
  background: #fccd04 !important;
  color: #0e345c !important;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 0.08em 0.22em rgba(14, 52, 92, 0.12);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.pj-contact-result-price {
  width: 100%;
  margin: 9px 0 0;
  text-align: center;
  color: var(--pj-contact-navy);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.3;
}

.pj-contact-result-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 470px;
  margin: 18px auto 20px;
}

.pj-contact-result-divider span {
  flex: 1 1 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(44, 67, 100, 0.16), rgba(44, 67, 100, 0.05));
}

.pj-contact-result-divider span:last-child {
  background: linear-gradient(90deg, rgba(44, 67, 100, 0.05), rgba(44, 67, 100, 0.16));
}

.pj-contact-result-divider img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: block;
}

.pj-contact-result-title {
  max-width: 590px;
  margin: 0 auto;
  color: var(--pj-contact-navy);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

.pj-contact-result-copy {
  max-width: 610px;
  margin: 10px auto 0;
  color: var(--pj-contact-muted);
  font-size: 0.82rem;
  line-height: 1.62;
  text-align: center;
}

.pj-contact-result-section {
  margin-top: 22px;
}

.pj-contact-result-section-label {
  display: block;
  margin: 0 0 13px;
  color: var(--pj-contact-navy);
  font-size: 0.8rem;
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: 0.075em;
  text-align: center;
  text-transform: uppercase;
}

.pj-contact-result-section-label::after {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  margin: 7px auto 0;
  border-radius: 999px;
  background: var(--pj-contact-yellow);
}

.pj-contact-result-profile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.pj-contact-result-profile-row {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(44, 67, 100, 0.14);
  border-radius: 13px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f5f8fc 100%);
  color: var(--pj-contact-muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.pj-contact-result-profile-row span {
  font-weight: 700;
}

.pj-contact-result-profile-row strong {
  max-width: none;
  color: var(--pj-contact-navy);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.pj-contact-result-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pj-contact-result-features li {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 12px;
  border: 1px solid rgba(44, 67, 100, 0.1);
  border-radius: 13px;
  background: var(--pj-contact-soft);
  color: var(--pj-contact-text);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.pj-contact-result-features li::before {
  content: '✓';
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 25px;
  border-radius: 999px;
  background: rgba(22, 156, 75, 0.1);
  color: #169c4b;
  font-size: 0.86rem;
  font-weight: 950;
}

.pj-contact-actions--result {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.pj-contact-note {
  margin: 15px 0 0;
  color: #8490a0;
  font-size: 0.66rem;
  line-height: 1.48;
  text-align: center;
}

body.pj-contact-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .pj-contact-header--plan {
    padding: 24px 48px 20px;
  }

  .pj-contact-header--plan .pj-contact-title {
    font-size: 1.34rem;
  }

  .pj-contact-header--plan .pj-contact-subtitle {
    font-size: 0.82rem;
  }

  .pj-contact-view--plan-direct .pj-contact-direct {
    padding: 20px 17px 21px;
    border-radius: 16px;
  }

  .pj-contact-view--plan-direct .pj-contact-plan-chip--featured {
    font-size: 0.76rem;
  }


  .pj-contact-result-topline {
    justify-content: center;
    margin-bottom: 16px;
  }

  .pj-contact-back--result {
    min-width: 136px;
    min-height: 36px;
    padding: 8px 15px;
    font-size: 0.66rem;
  }

  .pj-contact-result-plan {
    max-width: 100%;
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .pj-contact-result-divider {
    margin: 15px auto 17px;
  }

  .pj-contact-result-profile,
  .pj-contact-result-features,
  .pj-contact-actions--result {
    grid-template-columns: 1fr;
  }

  .pj-contact-result-profile-row,
  .pj-contact-result-features li {
    min-height: 0;
  }

  .pj-contact-launcher {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: 54px;
    height: 54px;
  }

  .pj-contact-launcher svg {
    width: 28px;
    height: 28px;
  }

  .pj-contact-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .pj-contact-dialog {
    width: 100%;
    max-height: min(88dvh, 760px);
    border-radius: 22px 22px 0 0;
    transform: translateY(30px);
  }

  .pj-contact-overlay.is-open .pj-contact-dialog {
    transform: translateY(0);
  }

  .pj-contact-header {
    padding: 20px 54px 17px 20px;
  }

  .pj-contact-header--home,
  .pj-contact-header--quiz {
    padding: 23px 50px 20px;
  }

  .pj-contact-header--quiz {
    padding-top: 21px;
    padding-bottom: 18px;
  }

  .pj-contact-title {
    font-size: 1.28rem;
  }

  .pj-contact-header--home .pj-contact-title,
  .pj-contact-header--quiz .pj-contact-title {
    font-size: 1.4rem;
  }

  .pj-contact-header--home .pj-contact-title-divider,
  .pj-contact-header--quiz .pj-contact-title-divider {
    gap: 9px;
    margin-top: 12px;
  }

  .pj-contact-title-divider img {
    width: 24px;
    height: 24px;
  }

  .pj-contact-subtitle {
    font-size: 0.8rem;
  }

  .pj-contact-header--home .pj-contact-subtitle,
  .pj-contact-header--quiz .pj-contact-subtitle {
    margin-top: 10px;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .pj-contact-close {
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
  }

  .pj-contact-body {
    padding: 19px 18px calc(22px + env(safe-area-inset-bottom, 0px));
  }

  .pj-contact-choice-grid,
  .pj-contact-quiz-options {
    grid-template-columns: 1fr;
  }

  .pj-contact-choice {
    min-height: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 5px 12px;
    padding: 15px;
  }

  .pj-contact-choice-icon {
    grid-row: 1 / span 3;
    width: 42px;
    height: 42px;
  }

  .pj-contact-choice strong,
  .pj-contact-choice small,
  .pj-contact-choice-arrow {
    grid-column: 2;
  }

  .pj-contact-choice-cta {
    grid-column: 1 / -1;
    min-height: 40px;
    margin-top: 8px;
  }

  .pj-contact-choice small {
    margin-top: 0;
  }

  .pj-contact-choice-arrow {
    margin-top: 3px;
  }

  .pj-contact-quiz-option {
    min-height: 58px;
    padding: 13px 16px;
  }

  [data-pj-contact-view="quiz"] .pj-contact-back--quiz {
    min-width: 92px;
    min-height: 32px;
    padding: 7px 13px;
    font-size: 0.66rem;
  }

  .pj-contact-quiz-topline {
    gap: 10px;
  }

  .pj-contact-quiz-step {
    font-size: 0.65rem;
  }

  .pj-contact-result-profile-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .pj-contact-result-profile-row strong {
    max-width: none;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .pj-contact-view--plan-direct .pj-contact-direct {
    padding: 22px 18px 24px;
    border-radius: 17px;
  }

  .pj-contact-view--plan-direct .pj-contact-plan-chip--featured {
    font-size: 0.82rem;
  }

  .pj-contact-view--plan-direct .pj-contact-direct-title {
    font-size: 1.05rem;
  }

  .pj-contact-view--plan-direct .pj-contact-direct-copy {
    font-size: 0.79rem;
  }
}

@media (max-width: 640px) {
  .pj-contact-view--plan-direct .pj-contact-plan-chip--featured {
    margin-bottom: 18px;
    padding: 0.34em 0.7em 0.4em;
    font-size: clamp(1.15rem, 6vw, 1.4rem);
  }
}



/* Página CLUBE+: mesma arquitetura do Clube de Envios, adaptada à paleta premium escura do plano. */
.pj-contact-header--clube-plus {
  border-bottom: 1px solid rgba(212, 160, 23, 0.28);
  background:
    radial-gradient(circle at 50% -30%, rgba(255, 241, 18, 0.08), transparent 48%),
    linear-gradient(135deg, #0d0f14 0%, #151820 58%, #101217 100%);
}

.pj-contact-header--clube-plus .pj-contact-title-highlight {
  background: #fff112;
  color: #0d0f14;
  box-shadow: 0 7px 20px rgba(255, 241, 18, 0.2);
}

.pj-contact-header--clube-plus .pj-contact-title-divider-line {
  background: linear-gradient(90deg, rgba(212, 160, 23, 0.06), rgba(245, 200, 66, 0.62));
}

.pj-contact-header--clube-plus .pj-contact-title-divider-line:last-child {
  background: linear-gradient(90deg, rgba(245, 200, 66, 0.62), rgba(212, 160, 23, 0.06));
}

.pj-contact-header--clube-plus .pj-contact-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.pj-contact-dialog--clube-plus {
  border-color: rgba(212, 160, 23, 0.3);
  background: #111318;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58), 0 0 42px rgba(212, 160, 23, 0.06);
}

.pj-contact-dialog--clube-plus .pj-contact-body {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 160, 23, 0.055), transparent 42%),
    #111318;
}

.pj-contact-view--plan-direct-clube-plus .pj-contact-direct {
  border-color: rgba(212, 160, 23, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.01) 100%),
    #1a1d24;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.pj-contact-view--plan-direct-clube-plus .pj-contact-plan-eyebrow {
  color: #f5c842;
}

.pj-contact-view--plan-direct-clube-plus .pj-contact-plan-chip--featured,
.pj-contact-view--plan-direct-clube-plus .pj-contact-plan-chip--featured.pj-clube-plus {
  margin-bottom: 24px;
  padding: 0.08em 0.38em 0.1em;
  border: 0;
  border-radius: 0.42em;
  background: #fccd04 !important;
  color: #0e345c !important;
  font-size: clamp(1.7rem, 4vw, 2.15rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 0.08em 0.22em rgba(14, 52, 92, 0.12);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.pj-contact-view--plan-direct-clube-plus .pj-contact-direct-title {
  color: #ffffff;
}

.pj-contact-view--plan-direct-clube-plus .pj-contact-direct-copy {
  color: rgba(255, 255, 255, 0.58);
}

.pj-contact-view--plan-direct-clube-plus .pj-contact-button--whatsapp {
  background: #fff112;
  color: #0d0f14;
  box-shadow: 0 10px 28px rgba(255, 241, 18, 0.18);
}

.pj-contact-view--plan-direct-clube-plus .pj-contact-button--whatsapp:hover {
  background: #f5c842;
  color: #0d0f14;
  box-shadow: 0 13px 32px rgba(255, 241, 18, 0.24);
}

.pj-contact-view--plan-direct-clube-plus .pj-contact-button--whatsapp svg {
  color: currentColor;
}

@media (max-width: 640px) {
  .pj-contact-view--plan-direct-clube-plus .pj-contact-plan-chip--featured,
  .pj-contact-view--plan-direct-clube-plus .pj-contact-plan-chip--featured.pj-clube-plus {
    margin-bottom: 18px;
    font-size: clamp(1.35rem, 8vw, 1.7rem);
  }

  .pj-contact-view--plan-direct-clube-plus .pj-contact-direct {
    border-radius: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pj-contact-launcher,
  .pj-contact-overlay,
  .pj-contact-dialog,
  .pj-contact-choice,
  .pj-contact-choice-cta,
  .pj-contact-button,
  .pj-contact-link,
  .pj-contact-quiz-option,
  .pj-contact-progress-bar,
  .pj-contact-close {
    animation: none !important;
    transition: none !important;
  }
}
