:root {
  --fc-red: #E24B4A;
  --fc-red-hover: #c73836;
  --fc-dark: #1a1a1a;
  --fc-gray-bg: #f5f5f5;
  --fc-text-muted: #6b7280;
  --fc-border: #e5e7eb;
}

* { box-sizing: border-box; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--fc-gray-bg); color: var(--fc-dark); }

/* NAVBAR */
.fc-navbar { background: var(--fc-dark); position: sticky; top: 0; z-index: 100; }
.fc-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.fc-logo-icon { width: 30px; height: 30px; background: var(--fc-red); border-radius: 5px; display: flex; align-items: center; justify-content: center; }
.fc-logo-icon i { color: #fff; font-size: 17px; }
.fc-logo span { color: #fff; font-size: 16px; font-weight: 500; }
.fc-logo-icon-sm { width: 22px; height: 22px; background: var(--fc-red); border-radius: 3px; display: flex; align-items: center; justify-content: center; }
.fc-logo-icon-sm i { color: #fff; font-size: 12px; }
.fc-nav-link { color: rgba(255,255,255,.75); font-size: 13px; text-decoration: none; transition: color .2s; }
.fc-nav-link:hover { color: #fff; }
.fc-lang-selector { display: flex; gap: 8px; align-items: center; }
.fc-lang-selector a,
.fc-lang-btn { color: rgba(255,255,255,.4); font-size: 12px; text-decoration: none; font-weight: 500; background: none; border: 0; padding: 0; cursor: pointer; }
.fc-lang-selector a.active,
.fc-lang-btn.active { color: var(--fc-red); }
.fc-lang-selector a:hover,
.fc-lang-btn:hover { color: #fff; }

/* BOTÕES */
.fc-btn-primary { background: var(--fc-red); color: #fff; border: none; padding: 9px 20px; font-size: 13px; font-weight: 500; border-radius: 6px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; transition: background .2s; }
.fc-btn-primary:hover { background: var(--fc-red-hover); color: #fff; }
.fc-btn-primary-lg { padding: 14px 32px; font-size: 16px; }
.fc-btn-outline { background: transparent; color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.3); padding: 8px 18px; font-size: 13px; border-radius: 6px; cursor: pointer; text-decoration: none; transition: all .2s; }
.fc-btn-outline:hover { border-color: #fff; color: #fff; }
.fc-btn-outline-red { border-color: var(--fc-red); color: var(--fc-red); background: transparent; padding: 8px 18px; font-size: 13px; border-radius: 6px; text-decoration: none; border: 1.5px solid; transition: all .2s; display: inline-flex; align-items: center; gap: 6px; }
.fc-btn-outline-red:hover { background: var(--fc-red); color: #fff; }

/* HERO */
.fc-hero { background: var(--fc-dark); padding: 36px 0 40px; }
.fc-hero h1 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 0; }
.fc-hero h1 span { color: var(--fc-red); }
.fc-hero p { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.5; }
.fc-country-chip { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: 20px; background: rgba(255,255,255,.08); font-size: 13px; color: rgba(255,255,255,.75); }

/* STATS BAR */
.fc-stats-bar { background: var(--fc-red); padding: 20px 0; }
.fc-stat-num { font-size: 26px; font-weight: 700; color: #fff; }
.fc-stat-label { font-size: 11px; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .8px; margin-top: 2px; }
.fc-stat-divider { border-left: 1px solid rgba(255,255,255,.25); height: 40px; }

/* CARDS DE PETIÇÃO */
.fc-petition-card { background: #fff; border: 0.5px solid var(--fc-border); border-radius: 10px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.fc-petition-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.fc-petition-card-top { height: 5px; background: var(--fc-red); }
.fc-petition-tag { display: inline-block; font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 4px; background: #FCEBEB; color: #A32D2D; text-transform: uppercase; letter-spacing: .5px; }

/* PROGRESS BAR */
.fc-progress { height: 5px; background: #f0f0f0; border-radius: 3px; overflow: hidden; }
.fc-progress-fill { height: 100%; background: var(--fc-red); border-radius: 3px; transition: width .5s; }

/* SHARE BUTTONS */
.fc-share-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 6px; font-size: 13px; font-weight: 500; cursor: pointer; border: none; text-decoration: none; transition: opacity .2s; }
.fc-share-btn:hover { opacity: .85; }
.fc-share-twitter { background: #1DA1F2; color: #fff; }
.fc-share-facebook { background: #1877F2; color: #fff; }
.fc-share-whatsapp { background: #25D366; color: #fff; }
.fc-share-instagram { background: #E1306C; color: #fff; }
.fc-share-linkedin { background: #0A66C2; color: #fff; }
.fc-share-tiktok { background: #000000; color: #fff; }
.fc-share-telegram { background: #26A5E4; color: #fff; }
.fc-share-copy { background: #6B7280; color: #fff; }

/* SECTION */
.fc-section-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--fc-red); margin-bottom: 6px; }
.fc-section-title { font-size: 28px; font-weight: 600; color: var(--fc-dark); margin-bottom: 8px; }

/* STEPS */
.fc-step-icon { width: 56px; height: 56px; background: var(--fc-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.fc-step-icon i { color: #fff; font-size: 26px; }

/* FORM DE ASSINATURA */
.fc-sign-form { background: #fff; border: 0.5px solid var(--fc-border); border-radius: 12px; padding: 28px; }
.fc-sign-form input { width: 100%; border: 1px solid var(--fc-border); border-radius: 6px; padding: 10px 14px; font-size: 14px; margin-bottom: 12px; outline: none; transition: border-color .2s; }
.fc-sign-form input:focus { border-color: var(--fc-red); }
.fc-sign-form .fc-btn-primary { width: 100%; justify-content: center; padding: 13px; font-size: 15px; }

/* FOOTER */
.fc-footer { background: var(--fc-dark); }
.fc-footer-link { color: rgba(255,255,255,.45); font-size: 12px; text-decoration: none; transition: color .2s; }
.fc-footer-link:hover { color: rgba(255,255,255,.8); }
.fc-social-icon { color: rgba(255,255,255,.4); font-size: 18px; text-decoration: none; transition: color .2s; }
.fc-social-icon:hover { color: var(--fc-red); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .fc-hero { padding: 24px 0 28px; }
  .fc-hero h1 { font-size: 24px; }
  .fc-hero p { font-size: 14px; margin-bottom: 12px; }
  .fc-navbar .d-flex { flex-wrap: wrap; gap: 8px; }
}

/* --- Vitalidade (seed 2026-07) --- */
.fc-badge-new {
  display: inline-block;
  background: #E24B4A;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 8px;
  border-radius: 999px;
}
.fc-first-signer {
  color: #E24B4A;
  font-weight: 600;
}
.fc-first-signer .ti {
  vertical-align: -1px;
}

/* --- Navegação por país/tema (2026-07) --- */
a.fc-country-chip { text-decoration: none; }
a.fc-country-chip:hover { background: rgba(255,255,255,.18); color: #fff; }
.fc-chip-dark { background: #f3f4f6; color: #374151; }
.fc-chip-dark:hover { background: #e5e7eb; color: #111827; }
.fc-chip-dark.active { background: var(--fc-red); color: #fff; }
.fc-chip-count { background: rgba(0,0,0,.08); border-radius: 10px; padding: 0 7px; font-size: 11px; margin-left: 4px; }
.fc-card-geo { font-size: 11px; color: #9ca3af; margin-bottom: 6px; }

/* Sticky CTA mobile na página de petição */
.fc-sticky-sign { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--fc-red); color: #fff; text-align: center; padding: 14px 16px; font-weight: 600; font-size: 16px; text-decoration: none; box-shadow: 0 -4px 12px rgba(0,0,0,.18); }
.fc-sticky-sign:hover { background: var(--fc-red-hover); color: #fff; }
@media (max-width: 991px) { body:has(.fc-sticky-sign) { padding-bottom: 56px; } }
.show-form { display: none !important; } /* substituído pelo fc-sticky-sign */

/* País no canto inferior direito do cartão + barra de filtros */
.fc-card-country { font-size: 11px; color: #9ca3af; white-space: nowrap; }
.fc-filter-select { border: 1.5px solid var(--fc-border); border-radius: 6px; padding: 8px 12px; font-size: 13px; color: #374151; background: #fff; cursor: pointer; max-width: 230px; }
.fc-filter-select:focus { outline: none; border-color: var(--fc-red); }

/* Slots de publicidade (altura reservada, CLS=0) */
.fc-ad { display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 24px auto; max-width: 970px; }
.fc-ad-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: #c4c7cc; margin-bottom: 4px; }
