.branding-live-preview{
  border:1px solid var(--border);
  border-radius:22px;
  padding:18px;
  background:
    radial-gradient(circle at top right, rgba(20,184,166,.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(59,130,246,.14), transparent 28%),
    linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  box-shadow:var(--shadow);
}

.branding-live-header{
  display:grid;
  gap:14px;
}

.branding-live-preview-top{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.branding-live-logo{
  width:56px;
  height:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  background:var(--card);
  border:1px solid var(--border);
}

.branding-live-title{
  font-size:20px;
  font-weight:800;
  margin-bottom:4px;
  color:var(--text);
}

.branding-live-subtitle{
  font-size:14px;
  color:var(--muted);
  line-height:1.5;
}

.branding-live-wait-box{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
}

.branding-live-wait-label{
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:8px;
  letter-spacing:.05em;
}

.branding-live-wait-value{
  font-size:30px;
  font-weight:800;
  color:var(--primary);
  line-height:1;
  margin-bottom:6px;
}

.branding-live-wait-detail{
  font-size:13px;
  color:var(--muted);
}

.branding-live-meta{
  margin-top:14px;
  color:var(--text);
  font-weight:700;
}

.branding-live-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.branding-live-chip{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--card);
  border:1px solid var(--border);
  color:var(--primary);
  font-size:12px;
  font-weight:700;
}


.branding-hero-card-active{
  border:2px solid rgba(37,99,235,.18);
  box-shadow:0 12px 40px rgba(37,99,235,.08);
}

.branding-hero-kicker{
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#64748b;
  margin-bottom:10px;
}

.branding-hero-title{
  font-size:22px;
  font-weight:800;
  line-height:1.1;
  color:#0f172a;
}

.branding-hero-meta{
  margin-top:10px;
  font-size:14px;
  color:#64748b;
}

.branding-live-preview{
  margin-top:14px;
  border-radius:22px;
  padding:18px;
  background:linear-gradient(135deg,#ffffff,#f1f5f9);
  border:1px solid rgba(15,23,42,.08);
}

/* =========================================================
   BRANDING DÉMO
   ========================================================= */
.preset-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:16px;
}

.preset-card{
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
  background:linear-gradient(180deg, #fff 0%, var(--surface-alt) 100%);
  box-shadow:var(--shadow);
  cursor:pointer;
  transition:transform .12s ease, box-shadow .2s ease, border-color .2s ease;
}

.preset-card:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(15,23,42,.10);
  border-color:rgba(59,130,246,.18);
}

.preset-chip-row{
  display:flex;
  gap:8px;
  margin-top:10px;
}

.preset-chip{
  width:18px;
  height:18px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.08);
}


.tc-preset-grid button{
  border:1px solid rgba(15,23,42,.08);
  background:#f8fafc;
  border-radius:16px;
  padding:12px;
  font-weight:800;
  cursor:pointer;
}