:root {
  --pa-red: #e30613;
  --pa-red-dark: #bd0711;
  --pa-blue: #043f8f;
  --pa-ink: #0d1a31;
  --pa-text: #344056;
  --pa-muted: #697386;
  --pa-line: #dde4ed;
  --pa-soft: #f5f8fc;
  --pa-green: #169c4b;
  --pa-shadow: 0 18px 48px rgba(14, 31, 61, 0.11);
}

.price-launcher {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 36px auto 12px;
  width: min(1180px, calc(100% - 32px));
  padding: 28px 32px;
  border: 1px solid rgba(227, 6, 19, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 12%, rgba(227, 6, 19, 0.10), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
  box-shadow: var(--pa-shadow);
}

.price-launcher-copy {
  display: grid;
  gap: 7px;
}

.price-launcher-kicker {
  margin: 0;
  color: var(--pa-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price-launcher h2 {
  margin: 0;
  color: var(--pa-ink);
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1.12;
}

.price-launcher p {
  margin: 0;
  color: var(--pa-text);
  line-height: 1.6;
}

.price-launcher-actions {
  display: grid;
  gap: 9px;
  min-width: 260px;
}

.price-launcher-actions .btn {
  text-align: center;
}

.price-launcher-note {
  color: var(--pa-muted);
  font-size: 12px;
  text-align: center;
}

.pa-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 0%, rgba(4, 63, 143, .08), transparent 28%),
    radial-gradient(circle at 100% 18%, rgba(227, 6, 19, .07), transparent 25%),
    #f7f9fc;
}

.pa-main {
  padding: 44px 16px 92px;
}

.pa-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.pa-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.pa-intro h1 {
  margin: 0 0 8px;
  color: var(--pa-ink);
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.05;
}

.pa-intro p {
  margin: 0;
  color: var(--pa-text);
  line-height: 1.65;
}

.pa-time {
  flex: 0 0 auto;
  padding: 11px 14px;
  border: 1px solid var(--pa-line);
  border-radius: 12px;
  color: var(--pa-text);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(14,31,61,.07);
}

.pa-card {
  overflow: hidden;
  border: 1px solid var(--pa-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--pa-shadow);
}

.pa-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 28px 34px 22px;
  border-bottom: 1px solid var(--pa-line);
  background: linear-gradient(180deg, #fff, #fbfcfe);
}

.pa-progress-item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #7c8596;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.pa-progress-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 20px);
  width: calc(100% - 40px);
  height: 2px;
  background: #e1e6ed;
}

.pa-progress-item.is-active,
.pa-progress-item.is-complete {
  color: var(--pa-ink);
}

.pa-progress-item.is-complete:not(:last-child)::after {
  background: var(--pa-red);
}

.pa-progress-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e7ebf1;
  color: #657082;
  font-size: 14px;
  font-weight: 900;
}

.pa-progress-item.is-active .pa-progress-number,
.pa-progress-item.is-complete .pa-progress-number {
  color: #fff;
  background: var(--pa-red);
  box-shadow: 0 8px 20px rgba(227, 6, 19, .24);
}

.pa-form {
  padding: 34px;
}

.pa-step[hidden] {
  display: none !important;
}

.pa-step-head {
  margin-bottom: 26px;
}

.pa-step-head h2 {
  margin: 0 0 7px;
  color: var(--pa-ink);
  font-size: clamp(25px, 4vw, 34px);
}

.pa-step-head p {
  margin: 0;
  color: var(--pa-muted);
  line-height: 1.6;
}

.pa-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pa-choice {
  position: relative;
  min-height: 160px;
}

.pa-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pa-choice label {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 9px;
  height: 100%;
  min-height: 160px;
  padding: 18px 12px;
  border: 1.5px solid var(--pa-line);
  border-radius: 15px;
  color: var(--pa-ink);
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.pa-choice label:hover {
  transform: translateY(-2px);
  border-color: rgba(227, 6, 19, .38);
  box-shadow: 0 12px 30px rgba(14,31,61,.08);
}

.pa-choice input:focus-visible + label {
  outline: 3px solid rgba(4,63,143,.22);
  outline-offset: 3px;
}

.pa-choice input:checked + label {
  border-color: var(--pa-red);
  color: var(--pa-red);
  background: linear-gradient(180deg, rgba(227,6,19,.055), rgba(227,6,19,.018));
  box-shadow: 0 12px 32px rgba(227,6,19,.11);
}

.pa-choice-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #48576d;
}

.pa-choice input:checked + label .pa-choice-icon {
  color: var(--pa-red);
}

.pa-choice-icon svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pa-choice-title {
  font-size: 16px;
  font-weight: 900;
}

.pa-choice-sub {
  color: var(--pa-muted);
  font-size: 12px;
  line-height: 1.4;
}

.pa-panel {
  padding: 24px;
  border: 1px solid var(--pa-line);
  border-radius: 16px;
  background: #fff;
}

.pa-panel + .pa-panel {
  margin-top: 18px;
}

.pa-panel h3 {
  margin: 0 0 18px;
  color: var(--pa-ink);
  font-size: 20px;
}

.pa-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pa-field {
  display: grid;
  gap: 7px;
}

.pa-field--wide {
  grid-column: 1 / -1;
}

.pa-field label,
.pa-field legend {
  color: var(--pa-ink);
  font-size: 14px;
  font-weight: 800;
}

.pa-field input,
.pa-field select,
.pa-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1.5px solid #d9e0e9;
  border-radius: 10px;
  color: var(--pa-ink);
  background: #fff;
  font: inherit;
}

.pa-field textarea {
  min-height: 112px;
  resize: vertical;
}

.pa-field input:focus,
.pa-field select:focus,
.pa-field textarea:focus {
  border-color: var(--pa-blue);
  outline: 3px solid rgba(4,63,143,.10);
}

.pa-help {
  color: var(--pa-muted);
  font-size: 12px;
  line-height: 1.45;
}

.pa-inline-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pa-inline-option {
  position: relative;
}

.pa-inline-option input {
  position: absolute;
  opacity: 0;
}

.pa-inline-option label {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 12px;
  border: 1.5px solid var(--pa-line);
  border-radius: 12px;
  color: var(--pa-text);
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.pa-inline-option input:checked + label {
  border-color: var(--pa-red);
  color: var(--pa-red);
  background: rgba(227,6,19,.045);
}

.pa-fill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.pa-fill {
  position: relative;
}

.pa-fill input {
  position: absolute;
  opacity: 0;
}

.pa-fill label {
  display: grid;
  gap: 8px;
  min-height: 130px;
  padding: 17px;
  border: 1.5px solid var(--pa-line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.pa-fill input:checked + label {
  border-color: var(--pa-red);
  background: rgba(227,6,19,.045);
  box-shadow: 0 10px 28px rgba(227,6,19,.09);
}

.pa-fill-bar {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 40px;
}

.pa-fill-bar i {
  display: block;
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: #d8dee8;
}

.pa-fill-bar i:nth-child(1) { height: 28%; }
.pa-fill-bar i:nth-child(2) { height: 48%; }
.pa-fill-bar i:nth-child(3) { height: 68%; }
.pa-fill-bar i:nth-child(4) { height: 90%; }

.pa-fill[data-level="light"] .pa-fill-bar i:nth-child(n+2),
.pa-fill[data-level="normal"] .pa-fill-bar i:nth-child(n+3),
.pa-fill[data-level="strong"] .pa-fill-bar i:nth-child(n+4) {
  opacity: .22;
}

.pa-fill input:checked + label .pa-fill-bar i {
  background: var(--pa-red);
}

.pa-fill-title {
  color: var(--pa-ink);
  font-weight: 900;
}

.pa-fill-sub {
  color: var(--pa-muted);
  font-size: 12px;
  line-height: 1.42;
}

.pa-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pa-check {
  position: relative;
}

.pa-check input {
  position: absolute;
  opacity: 0;
}

.pa-check label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-height: 90px;
  padding: 16px;
  border: 1.5px solid var(--pa-line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
}

.pa-check label::before {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border: 2px solid #b7c0ce;
  border-radius: 6px;
  background: #fff;
}

.pa-check input:checked + label {
  border-color: var(--pa-green);
  background: rgba(22,156,75,.045);
}

.pa-check input:checked + label::before {
  border-color: var(--pa-green);
  background:
    linear-gradient(135deg, transparent 43%, #fff 43% 54%, transparent 54%) 4px 5px / 11px 8px no-repeat,
    var(--pa-green);
}

.pa-check strong {
  display: block;
  color: var(--pa-ink);
  margin-bottom: 3px;
}

.pa-check span {
  color: var(--pa-muted);
  font-size: 12px;
  line-height: 1.4;
}

.pa-note {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 11px;
  color: var(--pa-text);
  background: var(--pa-soft);
  font-size: 13px;
  line-height: 1.55;
}

.pa-note--warning {
  border-left: 4px solid #e0a400;
  background: #fff9e9;
}

.pa-upload-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pa-upload {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 16px;
  border: 1.5px dashed #bfc8d6;
  border-radius: 13px;
  color: var(--pa-text);
  background: #fbfcfe;
  text-align: center;
  cursor: pointer;
}

.pa-upload:hover {
  border-color: var(--pa-blue);
  background: #f5f8fd;
}

.pa-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.pa-upload strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pa-ink);
}

.pa-upload-name {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: var(--pa-muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pa-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 17px;
  color: var(--pa-text);
  font-size: 13px;
  line-height: 1.55;
}

.pa-consent input {
  margin-top: 4px;
}

.pa-consent a {
  color: var(--pa-blue);
  font-weight: 800;
  text-decoration: underline;
}

.pa-result {
  display: grid;
  gap: 22px;
}

.pa-result-hero {
  padding: 28px;
  border: 1px solid rgba(22,156,75,.25);
  border-radius: 18px;
  background:
    radial-gradient(circle at 95% 5%, rgba(22,156,75,.12), transparent 32%),
    linear-gradient(135deg, #f4fff8, #fff);
  text-align: center;
}

.pa-result-label {
  margin: 0 0 8px;
  color: var(--pa-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pa-result-price {
  margin: 0;
  color: var(--pa-ink);
  font-size: clamp(40px, 8vw, 68px);
  line-height: 1;
}

.pa-result-duration {
  margin: 12px 0 0;
  color: var(--pa-text);
  font-weight: 800;
}

.pa-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--pa-line);
  border-radius: 15px;
  background: #fff;
}

.pa-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #edf0f4;
}

.pa-summary div:nth-last-child(-n+2) {
  border-bottom: 0;
}

.pa-summary dt {
  color: var(--pa-muted);
}

.pa-summary dd {
  margin: 0;
  color: var(--pa-ink);
  font-weight: 800;
  text-align: right;
}

.pa-result-info {
  padding: 17px 19px;
  border-left: 4px solid var(--pa-blue);
  border-radius: 10px;
  color: var(--pa-text);
  background: #f3f7fd;
  line-height: 1.65;
}

.pa-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.pa-actions-right {
  display: flex;
  gap: 11px;
  margin-left: auto;
}

.pa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.pa-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pa-red), #f3212d);
  box-shadow: 0 10px 24px rgba(227,6,19,.2);
}

.pa-btn--primary:hover {
  background: linear-gradient(135deg, var(--pa-red-dark), var(--pa-red));
}

.pa-btn--secondary {
  border: 1.5px solid var(--pa-line);
  color: var(--pa-ink);
  background: #fff;
}

.pa-btn--whatsapp {
  color: #fff;
  background: #1fbf5b;
}

.pa-error {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 9px;
  color: #8f111a;
  background: #fff0f1;
  font-size: 13px;
  font-weight: 700;
}

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

.pa-trust div {
  padding: 15px;
  border: 1px solid var(--pa-line);
  border-radius: 12px;
  color: var(--pa-text);
  background: #fff;
  text-align: center;
}

.pa-trust b {
  display: block;
  color: var(--pa-ink);
  margin-bottom: 3px;
}

.pa-trust span {
  font-size: 12px;
}

.pa-hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .price-launcher {
    grid-template-columns: 1fr;
  }

  .price-launcher-actions {
    min-width: 0;
  }

  .pa-choice-grid,
  .pa-inline-options,
  .pa-fill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pa-progress {
    padding-inline: 16px;
  }
}

@media (max-width: 680px) {
  .price-launcher {
    width: min(100% - 20px, 1180px);
    padding: 22px 18px;
    border-radius: 16px;
  }

  .pa-main {
    padding: 28px 10px 90px;
  }

  .pa-intro {
    display: grid;
  }

  .pa-time {
    justify-self: start;
  }

  .pa-card {
    border-radius: 16px;
  }

  .pa-progress {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(78px, 1fr));
    padding: 18px 10px 14px;
  }

  .pa-progress-item {
    font-size: 10px;
  }

  .pa-progress-number {
    width: 34px;
    height: 34px;
  }

  .pa-progress-item:not(:last-child)::after {
    top: 16px;
  }

  .pa-form {
    padding: 20px 15px;
  }

  .pa-choice-grid,
  .pa-fields,
  .pa-inline-options,
  .pa-fill-grid,
  .pa-check-grid,
  .pa-upload-grid,
  .pa-summary,
  .pa-trust {
    grid-template-columns: 1fr;
  }

  .pa-choice,
  .pa-choice label {
    min-height: 126px;
  }

  .pa-panel {
    padding: 17px 14px;
  }

  .pa-actions,
  .pa-actions-right {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .pa-actions-right {
    margin-left: 0;
  }

  .pa-btn {
    width: 100%;
  }

  .pa-summary div,
  .pa-summary div:nth-last-child(-n+2) {
    border-bottom: 1px solid #edf0f4;
  }

  .pa-summary div:last-child {
    border-bottom: 0;
  }
}
