/* ==========================================================================
   Fique de Olho — Design tokens & componentes compartilhados
   Cores/fonte extraídas da identidade visual de fiquedeolho.com.br
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Exo:wght@400;500;600;700;800;900&display=swap');

:root {
  --fo-primary: #F28020;
  --fo-primary-active: #dd6808;
  --fo-secondary: #008a4c;
  --fo-secondary-active: #00A057;
  --fo-tertiary: #05A2D3;
  --fo-tertiary-active: #0086af;
  --fo-quaternary: #9C5723;
  --fo-quintenary: #EFA750;

  --fo-text: #1c1c1c;
  --fo-text-muted: #6c757d;
  --fo-bg: #ffffff;
  --fo-bg-soft: #f8f9fa;
  --fo-border: #e9ecef;

  --fo-danger: #dc3545;
  --fo-success: #198754;

  --fo-font: 'Exo', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --fo-radius: 0.375rem;
  --fo-radius-lg: 1rem;
  --fo-radius-pill: 50rem;

  --fo-shadow: 0 6px 20px rgba(28, 28, 28, 0.08);
  --fo-shadow-sm: 0 2px 8px rgba(28, 28, 28, 0.06);

  --fo-gradient-brand: linear-gradient(135deg, var(--fo-primary) 0%, var(--fo-secondary) 100%);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--fo-font);
  color: var(--fo-text);
  background: var(--fo-bg-soft);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--fo-tertiary);
  text-decoration: none;
}

/* ---------- Cabeçalho de marca ---------- */

.fo-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem 1rem;
}

.fo-header img.fo-logo {
  height: 56px;
  width: auto;
}

.fo-logo-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--fo-text);
}

.fo-logo-text .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--fo-gradient-brand);
  display: inline-block;
}

/* ---------- Botões ---------- */

.fo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--fo-font);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--fo-radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
  user-select: none;
}

.fo-btn:active {
  transform: scale(0.98);
}

.fo-btn-primary {
  background: var(--fo-primary);
  color: #fff;
}

.fo-btn-primary:hover {
  background: var(--fo-primary-active);
}

.fo-btn-secondary {
  background: #fff;
  color: var(--fo-text);
  border-color: var(--fo-border);
}

.fo-btn-secondary:hover {
  border-color: var(--fo-primary);
  color: var(--fo-primary);
}

.fo-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.fo-btn-block {
  width: 100%;
}

/* ---------- Cards ---------- */

.fo-card {
  background: #fff;
  border-radius: var(--fo-radius-lg);
  box-shadow: var(--fo-shadow);
  padding: 1.75rem;
}

/* ---------- Formulário ---------- */

.fo-field-label {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  line-height: 1.4;
  display: block;
}

.fo-field-hint {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--fo-text-muted);
  display: block;
  margin-top: 0.15rem;
}

.fo-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--fo-border);
  border-radius: var(--fo-radius);
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: border-color 0.12s ease, background-color 0.12s ease;
}

.fo-option:hover {
  border-color: var(--fo-quintenary);
  background: #fffaf3;
}

.fo-option input {
  margin-top: 0.2rem;
  accent-color: var(--fo-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.fo-option.is-checked {
  border-color: var(--fo-primary);
  background: #fff5eb;
}

.fo-option span.opt-label {
  font-size: 0.98rem;
  line-height: 1.35;
}

.fo-text-input {
  width: 100%;
  font-family: var(--fo-font);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--fo-border);
  border-radius: var(--fo-radius);
  margin-top: 0.5rem;
}

.fo-text-input:focus {
  outline: none;
  border-color: var(--fo-primary);
}

/* ---------- Utilidades ---------- */

.fo-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.fo-eyebrow {
  color: var(--fo-secondary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fo-title {
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0.35rem 0 0.5rem;
  letter-spacing: -0.01em;
}

.fo-subtitle {
  color: var(--fo-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
