/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 22px; border-radius: 999px;
  font-family: var(--ff-ui); font-weight: 500; font-size: 0.98rem; letter-spacing: 0.005em;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-wa { background: var(--wa-green); color: #fff; }
.btn-wa:hover { background: var(--wa-green-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text); border: 1.5px solid var(--text);
}
.btn-ghost:hover { background: var(--text); color: var(--bg); }
.btn-light {
  background: rgba(255,255,255,0.95); color: var(--text); border: 1.5px solid rgba(255,255,255,0.95);
}
.btn-light:hover { background: #fff; transform: translateY(-1px); }
.btn-outline-light {
  background: transparent; color: #fff; border: 1.5px solid #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--text); }

/* Card riso (LAY-3 risograph: ombre offset accent solide, craft signature) */
.c-riso {
  background: var(--bg);
  border: 1.5px solid var(--text);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 5px 5px 0 var(--accent);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
}
.c-riso:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--accent); }
.c-riso__num {
  font-family: var(--ff-display); font-style: italic;
  font-size: 0.95rem; color: var(--accent);
  letter-spacing: 0.05em;
}
.c-riso__title { font-family: var(--ff-display); font-size: clamp(1.2rem, 2.2vw, 1.4rem); color: var(--text); line-height: 1.2; }
.c-riso__text { color: var(--text-2); font-size: 0.96rem; line-height: 1.55; }
.c-riso__icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: 6px;
  display: grid; place-items: center;
}
.c-riso__icon svg { width: 100%; height: 100%; }
.c-riso--dark {
  background: #2A241B;
  border-color: #2A241B;
  box-shadow: 5px 5px 0 var(--accent-2);
}
.c-riso--dark .c-riso__title,
.c-riso--dark :where(h2, h3, h4, p, li, span, a, blockquote, cite) { color: #F1E9D5; }
.c-riso--dark .c-riso__text,
.c-riso--dark .c-riso__num { color: #D4C9B0; }
.c-riso--dark .c-riso__num { color: var(--accent-2); }
.c-riso--dark .c-riso__icon { color: var(--accent-2); }
@media (prefers-reduced-motion: reduce) { .c-riso { transition: none; } .c-riso:hover { transform: none; } }

/* Form */
.field {
  display: flex; flex-direction: column; gap: 6px; min-width: 0;
}
.field label {
  font-family: var(--ff-ui); font-size: 0.85rem; font-weight: 500;
  color: var(--text); letter-spacing: 0.005em;
}
.field input, .field textarea, .field select {
  width: 100%; min-width: 0;
  font-family: var(--ff-body); font-size: 1rem;
  padding: 12px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--accent);
  background: var(--surface);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }

.form-status {
  margin-top: 14px;
  font-family: var(--ff-ui); font-size: 0.92rem;
  min-height: 0;
}
.form-status:empty { display: none; }
.form-status.is-ok, .form-status.is-err { padding: 12px 16px; border-radius: 10px; }
.form-status.is-ok { background: color-mix(in srgb, var(--accent) 18%, var(--bg)); color: var(--accent-deep); border: 1px solid var(--accent); }
.form-status.is-err { background: #FBE3E3; color: #7A1F1F; border: 1px solid #C8484E; }

/* Chips */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--accent) 14%, var(--bg));
  color: var(--accent-deep);
  border-radius: 999px;
  font-family: var(--ff-ui); font-size: 0.82rem; font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
}

/* Stars */
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 16px; height: 16px; }

/* Badge Google */
.badge-google {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-ui); font-size: 0.78rem; color: var(--text-2);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
}
.badge-google svg { width: 13px; height: 13px; }
