/* ────────────────────────────────────────────────
   BASE / TOKENS
──────────────────────────────────────────────── */
.whats {
  background: #E5E7EB;
  color: #333333;
}

/* ────────────────────────────────────────────────
   GRID 2 COLUNAS (1/3 + 2/3)
──────────────────────────────────────────────── */
.whats-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  padding: 16px;
}

/* ────────────────────────────────────────────────
   COLUNAS / CARDS
──────────────────────────────────────────────── */
.whats-left,
.whats-right {
  background: #FFFFFF;
  border: 1px solid #9CA3AF;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.whats-head .crumbs,
.result-head .subtitle,
.whats-head .subtitle {
  margin-top: 6px;
}

.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: #9CA3AF;
}

.crumbs a {
  color: #7B2C3A;
  text-decoration: none;
}

.crumbs a:hover {
  text-decoration: underline;
}

.whats-left h1 {
  margin: 10px 0 6px 0;
  color: #7B2C3A;
  font-family: Montserrat, Inter, Open Sans, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.whats-right h2 {
  margin: 0 0 6px 0;
  color: #7B2C3A;
  font-family: Montserrat, Inter, Open Sans, sans-serif;
  font-size: 20px;
}

/* ────────────────────────────────────────────────
   FORM
──────────────────────────────────────────────── */
.wa-form {
  display: grid;
  gap: 12px;
  margin-top: 5px;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333333;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #9CA3AF;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  background: #FFFFFF;
  color: #333333;
}

.field textarea {
  resize: vertical;
  min-height: 84px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.20);
}

.hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #9CA3AF;
}

.radios {
  border: 1px dashed #9CA3AF;
  border-radius: 12px;
  padding: 10px 12px;
}

.radios legend {
  font-weight: 700;
  color: #7B2C3A;
  padding: 0 6px;
}

.radio {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-right: 14px;
  font-size: 14px;
}

/* ────────────────────────────────────────────────
   BUTTONS (IDENTIDADE)
──────────────────────────────────────────────── */
.actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.05s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: #F97316;
  color: #FFFFFF;
}

.btn-secondary {
  background: #9CA3AF;
  color: #FFFFFF;
}

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ────────────────────────────────────────────────
   NOTICE
──────────────────────────────────────────────── */
.notice {
  margin-top: 6px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.45);
  color: #333333;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
}

/* ────────────────────────────────────────────────
   RESULT CARD
──────────────────────────────────────────────── */
.result-card {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 14px;
  background: #FFFFFF;
  margin-top: 12px;
}

.result-row {
  margin-bottom: 14px;
}

.result-row label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333333;
}

.out-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.out-line input {
  width: 100%;
  border: 1px solid #9CA3AF;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  background: #FFFFFF;
}

/* ────────────────────────────────────────────────
   CHIPS
──────────────────────────────────────────────── */
.opt-line {
  display: flex;
  gap: 10px;
}

.chip {
  border: 1px solid #9CA3AF;
  background: #FFFFFF;
  color: #333333;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}

.chip.is-active {
  border-color: #F97316;
  color: #F97316;
}

/* ────────────────────────────────────────────────
   QR AREA
──────────────────────────────────────────────── */
.qr-area {
  border-top: 1px solid #E5E7EB;
  padding-top: 14px;
}

.qr-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E5E7EB;
  border: 1px solid #9CA3AF;
  border-radius: 16px;
  padding: 14px;
}

.qr-target {
  width: 220px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

/* ────────────────────────────────────────────────
   TIPS
──────────────────────────────────────────────── */
.tips-card {
  margin-top: 12px;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 14px;
  background: #FFFFFF;
}

.tips-card h3 {
  margin: 0 0 8px 0;
  color: #7B2C3A;
  font-family: Montserrat, Inter, Open Sans, sans-serif;
}

.tips-card ul {
  margin: 0;
  padding-left: 18px;
  color: #333333;
}

/* ────────────────────────────────────────────────
   EXPLAIN + BLOG
──────────────────────────────────────────────── */
.whats-explain,
.whats-blog {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 16px;
  margin: 16px;
}

.whats-explain__eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #F97316;
}

.whats-explain h2,
.whats-blog h2 {
  color: #7B2C3A;
  font-family: Montserrat, Inter, Open Sans, sans-serif;
  margin: 8px 0 10px 0;
}

.whats-explain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.whats-explain__item {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 14px;
}

.whats-explain__item h3 {
  margin: 0 0 8px 0;
  color: #7B2C3A;
  font-family: Montserrat, Inter, Open Sans, sans-serif;
}

.whats-blog__item {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 14px;
  margin-top: 12px;
}

.whats-blog__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #F97316;
  margin-bottom: 8px;
}

.wa-notice {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}


/* ────────────────────────────────────────────────
   BOTÃO COPIAR (ATIVO / INATIVO)
──────────────────────────────────────────────── */
.btn-copy {
  background: #9CA3AF;
  color: #FFFFFF;
}

.btn-copy.is-active {
  background: #F97316;
  color: #FFFFFF;
}


/* ────────────────────────────────────────────────
   RESPONSIVO
──────────────────────────────────────────────── */
@media (max-width: 980px) {
  .whats-grid {
    grid-template-columns: 1fr;
  }
}
