/* === CADASTRO EXTRAS === */
.lp-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lp-field-hint {
  font-size: 11px;
  color: var(--texto-faint);
  margin-top: 4px;
}

.lp-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e8f5ee99' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.lp-select option { background: var(--card); }

/* FORÇA DA SENHA */
.lp-senha-forca {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-forca-barras {
  display: flex;
  gap: 4px;
  flex: 1;
}

.lp-forca-barra {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  transition: background .3s ease;
}

.lp-forca-label {
  font-size: 11px;
  font-weight: 700;
  min-width: 48px;
  text-align: right;
}

/* BENEFÍCIOS */
.lp-beneficios {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-beneficio {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lp-beneficio-ico {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.lp-beneficio-titulo {
  font-size: 14px;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 2px;
}

.lp-beneficio-desc {
  font-size: 12px;
  color: var(--texto-muted);
}

@media (max-width: 600px) {
  .lp-field-row { grid-template-columns: 1fr; }
}