.linka-brief-wrap{
  width:100%;
}

.linka-brief-title{
  margin:0 0 12px 0;
  font-weight:600;
}

.linka-brief-form{
  display:flex;
  flex-direction:column;
  gap:14px; /* Elementor pode sobrescrever pelo controle "Espaçamento entre campos" */
  width:100%;
}

.linka-field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.linka-field > label{
  font-weight:600;
  line-height:1.2;
}

.linka-field .help{
  font-size:0.95em;
  opacity:0.85;
}

.linka-brief-form input[type="text"],
.linka-brief-form input[type="email"],
.linka-brief-form input[type="url"],
.linka-brief-form input[type="number"],
.linka-brief-form textarea,
.linka-brief-form select{
  width:100%;
  box-sizing:border-box;
  outline:none;
}

.linka-brief-form textarea{
  min-height:120px;
  resize:vertical;
}

.linka-check,
.linka-radio{
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  user-select:none;
}

.linka-check input,
.linka-radio input{
  margin:0;
}

.linka-brief-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.linka-brief-btn{
  cursor:pointer;
}

.linka-brief-success{
  width:100%;
  box-sizing:border-box;
}

.linka-choice:checked {
  position: relative;
}

.linka-choice[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: currentColor;
  border-radius: 2px;
}

.linka-choice[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: currentColor;
  border-radius: 999px;
}
.linka-choice{appearance:none;-webkit-appearance:none;box-sizing:border-box;cursor:pointer;}
.linka-choice[type="radio"]{border-radius:999px;}
/* Linka Briefings - normalize checkbox/radio */
.linka-brief-wrap .linka-choice{
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  background-clip: padding-box;
}

/* radio sempre redondo */
.linka-brief-wrap .linka-choice[type="radio"]{
  border-radius: 999px;
}
.linka-brief-success {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #22c55e;

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

    margin-bottom: 24px;
}

.linka-brief-success-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;

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

    background: #22c55e;
    color: #ffffff;

    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
}

.linka-brief-success-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.linka-brief-success-text strong {
    font-size: 15px;
    font-weight: 600;
    color: #14532d;
}

.linka-brief-success-text span {
    font-size: 13px;
    color: #166534;
    opacity: 0.9;
}
/* ====== SEÇÃO: DADOS DO CLIENTE ====== */
.lb-client-card {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.lb-client-card h3 {
  margin: 0 0 12px 0;
}

/* grid para dar cara de "bloco separado" */
.lb-client-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .lb-client-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
  }
  .lb-client-grid .lb-client-full {
    grid-column: 1 / -1;
  }
}

.lb-client-card label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.lb-client-card input {
  width: 100%;
  box-sizing: border-box;
}

/* ====== SEPARADOR VISUAL ENTRE CLIENTE E BRIEFING ====== */
.lb-brief-divider {
  margin: 16px 0 6px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0,0,0,.14);
}

.lb-brief-divider .lb-brief-divider-title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
}
/* Só esconde quando existe o seletor na página (JS adiciona a classe no body) */
body.linka-brief-has-selector .linka-brief-wrap {
  display: none;
}

body.linka-brief-has-selector .linka-brief-wrap.is-active {
  display: block;
}


