/* ============================================================
   VetMatch Brasil — style.css v2 Premium
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --f1: #090f0a;
  --f2: #111e14;
  --f3: #1a2e1e;
  --verde: #2a5c42;
  --verde2: #1a3d2b;
  --ouro: #b8872e;
  --ouro2: #d4a043;
  --ouro-lt: #f6edd6;
  --ouro-xlt: #fdf8ee;
  --cream: #faf8f2;
  --light: #f2f5f2;
  --white: #ffffff;
  --ink: #0e1a10;
  --slate: #3a5444;
  --muted: #617060;
  --line: #d8e5da;
  --red: #b83232;
  --amber: #c07820;
  --blue: #1a4f8a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--light);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ══════════════════════════════════════════
   NAVEGAÇÃO
══════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(9,15,10,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,135,46,.15);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
  cursor: pointer;
}
.logo span { color: var(--ouro); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,.6);
  padding: 7px 13px;
  border-radius: 6px;
  font-size: .83rem;
  font-weight: 500;
  transition: all .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ouro); }

.btn-nav-primary {
  background: var(--ouro) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  padding: 8px 16px !important;
}
.btn-nav-primary:hover { background: var(--ouro2) !important; }

.btn-sair {
  border: 1px solid rgba(255,255,255,.18) !important;
  color: rgba(255,255,255,.6) !important;
}
.btn-sair:hover { border-color: var(--ouro) !important; color: var(--ouro) !important; }

.btn-admin {
  background: rgba(184,135,46,.15) !important;
  color: var(--ouro) !important;
  border: 1px solid rgba(184,135,46,.3) !important;
}

.notif-badge {
  background: var(--red) !important;
  color: #fff !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
}

/* ══════════════════════════════════════════
   HERO — PÁGINA INICIAL
══════════════════════════════════════════ */
.hero {
  background: var(--f1);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,135,46,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,135,46,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -10%; right: -5%;
  width: 520px; height: 520px;
  background: radial-gradient(ellipse, rgba(42,92,66,.2) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-pre {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-pre-line { width: 28px; height: 1px; background: var(--ouro); }
.hero-pre-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ouro);
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.13;
  margin-bottom: 18px;
  letter-spacing: -.4px;
}
.hero h1 em { font-style: normal; color: var(--ouro); }
.hero-sub {
  color: rgba(255,255,255,.5);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-btns a, .hero-btns button {
  padding: 13px 26px;
  border-radius: 6px;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .3px;
  transition: all .2s;
  border: none;
  display: inline-block;
  text-align: center;
}
.btn-hero-primary { background: var(--ouro); color: var(--ink); }
.btn-hero-primary:hover { background: var(--ouro2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,135,46,.3); }
.btn-hero-secondary { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.18) !important; }
.btn-hero-secondary:hover { border-color: var(--ouro) !important; color: var(--ouro); }

.hero-metrics {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.hm-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}
.hm-num span { color: var(--ouro); }
.hm-label {
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: 3px;
}

/* Hero cards (lado direito) */
.hero-cards { display: flex; flex-direction: column; gap: 10px; }
.hcard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 16px 18px;
  transition: all .3s;
}
.hcard:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(184,135,46,.3);
  transform: translateX(-4px);
}
.hcard-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hcard-av {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--f3), var(--verde));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: var(--ouro);
  flex-shrink: 0;
  overflow: hidden;
}
.hcard-av img { width: 100%; height: 100%; object-fit: cover; }
.hcard-name { font-size: .85rem; font-weight: 700; color: #fff; }
.hcard-role { font-size: .7rem; color: rgba(255,255,255,.4); margin-top: 1px; }
.hcard-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.htag {
  font-size: .62rem; font-weight: 700;
  padding: 2px 8px; border-radius: 3px;
  border: 1px solid rgba(184,135,46,.25);
  color: rgba(184,135,46,.8);
}
.htag.green {
  border-color: rgba(74,222,128,.25);
  background: rgba(74,222,128,.06);
  color: #4ade80;
}

/* ══════════════════════════════════════════
   SEÇÕES GERAIS
══════════════════════════════════════════ */
.section { padding: 80px 5%; }
.section.bg-dark { background: var(--f1); }
.section.bg-light { background: var(--cream); }
.section.bg-white { background: var(--white); }
.section.bg-verde { background: var(--f2); }

.container { max-width: 1120px; margin: 0 auto; }
.container-sm { max-width: 760px; margin: 0 auto; }

.section-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -.2px;
}
.section-title.white { color: #fff; }
.section-sub {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 10px;
}
.section-sub.light { color: rgba(255,255,255,.5); }

/* ══════════════════════════════════════════
   GRIDS
══════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

/* ══════════════════════════════════════════
   CARDS
══════════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
}
.card:hover { border-color: rgba(184,135,46,.3); }

.card-feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
  border-bottom: 3px solid transparent;
  transition: all .3s;
}
.card-feature:hover {
  border-bottom-color: var(--ouro);
  background: var(--ouro-xlt);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.card-feature-icon {
  width: 44px; height: 44px;
  border-radius: 9px;
  background: var(--light);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: all .3s;
}
.card-feature:hover .card-feature-icon {
  background: var(--ouro-lt);
  border-color: rgba(184,135,46,.4);
}
.card-feature-icon svg { width: 20px; height: 20px; fill: var(--slate); transition: fill .3s; }
.card-feature:hover .card-feature-icon svg { fill: var(--ouro); }
.card-feature h4 { font-size: .93rem; font-weight: 700; margin-bottom: 7px; }
.card-feature p { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* Card escuro */
.card-dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 24px;
  transition: all .3s;
}
.card-dark:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(184,135,46,.3);
}
.card-dark h4 { color: var(--ouro); font-size: .92rem; margin-bottom: 8px; }
.card-dark p { color: rgba(255,255,255,.55); font-size: .82rem; line-height: 1.65; }

/* ══════════════════════════════════════════
   AUDIÊNCIAS (para clinicas / para vets)
══════════════════════════════════════════ */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; }
.aud-box { padding: 52px 48px; }
.aud-box.light { background: var(--white); }
.aud-box.dark { background: var(--f2); }
.aud-tag {
  font-size: .65rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ouro); margin-bottom: 16px; display: block;
}
.aud-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 800; line-height: 1.25; margin-bottom: 12px;
}
.aud-box.light h3 { color: var(--ink); }
.aud-box.dark  h3 { color: #fff; }
.aud-box > p  { font-size: .85rem; line-height: 1.75; margin-bottom: 24px; }
.aud-box.light > p { color: var(--muted); }
.aud-box.dark  > p { color: rgba(255,255,255,.45); }
.aud-list { list-style: none; margin-bottom: 28px; }
.aud-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; padding: 8px 0;
  border-bottom: 1px solid;
}
.aud-box.light .aud-list li { color: var(--ink); border-color: var(--line); }
.aud-box.dark  .aud-list li { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.07); }
.aud-check {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--ouro);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  font-size: .65rem; color: var(--ouro); font-weight: 700;
}

/* ══════════════════════════════════════════
   STEPS (Como funciona)
══════════════════════════════════════════ */
.steps-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
}
.steps-tab {
  padding: 12px 28px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  cursor: pointer; border: none; background: none;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all .2s;
}
.steps-tab.active { color: var(--ink); border-bottom-color: var(--ouro); }
.steps-wrap { display: none; }
.steps-wrap.show {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
  position: relative;
}
.steps-wrap::before {
  content: '';
  position: absolute;
  top: 18px; left: 8%; width: 84%; height: 1px;
  background: linear-gradient(90deg, var(--ouro), rgba(184,135,46,.1));
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--ouro);
  color: var(--ouro);
  font-size: .78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.step h4 { font-size: .82rem; font-weight: 700; margin-bottom: 5px; }
.step p  { font-size: .74rem; color: var(--muted); line-height: 1.55; padding: 0 4px; }

/* ══════════════════════════════════════════
   PLANOS
══════════════════════════════════════════ */
.plan-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: all .3s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.plan-card.featured {
  border-color: var(--ouro);
  box-shadow: 0 0 0 3px rgba(184,135,46,.12);
}
.plan-badge-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 12px;
  background: var(--light); color: var(--muted);
}
.plan-badge-tag.gold { background: var(--ouro-lt); color: var(--ouro); }
.plan-price-big {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 800;
  color: var(--ink); letter-spacing: -2px; margin-bottom: 4px;
}
.plan-price-big span { font-size: .9rem; font-weight: 400; color: var(--muted); letter-spacing: 0; }
.plan-desc { font-size: .8rem; color: var(--muted); margin-bottom: 18px; line-height: 1.5; }
.plan-features { list-style: none; text-align: left; margin-bottom: 24px; }
.plan-features li {
  font-size: .82rem; color: var(--slate);
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.plan-features li:last-child { border: none; }
.plan-note { font-size: .73rem; color: var(--muted); margin-top: 10px; }

/* ══════════════════════════════════════════
   STATS
══════════════════════════════════════════ */
.stats-row {
  display: flex; justify-content: center;
  gap: 64px; text-align: center; flex-wrap: wrap;
}
.stat-item {}
.stat-num-big {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 800;
  color: var(--ouro); display: block; letter-spacing: -1px;
}
.stat-lbl-big {
  font-size: .72rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 4px;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: .9rem;
  color: var(--ink); list-style: none; transition: color .2s;
  gap: 12px;
}
.faq-item summary:hover { color: var(--slate); }
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; color: var(--ouro);
  flex-shrink: 0; transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a {
  padding: 0 0 18px;
  font-size: .85rem; color: var(--muted); line-height: 1.75;
}

/* ══════════════════════════════════════════
   FORMULÁRIOS
══════════════════════════════════════════ */
.form-card {
  max-width: 460px;
  margin: 56px auto;
  background: var(--white);
  padding: 36px;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
}
.form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 800; margin-bottom: 4px;
}
.form-card .form-subtitle {
  font-size: .82rem; color: var(--muted); margin-bottom: 22px;
}

label {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--slate); margin-bottom: 5px;
}

input[type=text], input[type=email], input[type=password],
input[type=number], input[type=tel], input[type=date],
input[type=time], input[type=file], select, textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-size: .88rem;
  color: var(--ink);
  background: var(--white);
  margin-bottom: 16px;
  transition: all .2s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--ouro);
  box-shadow: 0 0 0 3px rgba(184,135,46,.1);
}
textarea { min-height: 90px; resize: vertical; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

/* ══════════════════════════════════════════
   BOTÕES
══════════════════════════════════════════ */
.btn-ouro-btn {
  display: inline-block;
  background: var(--ouro); color: var(--ink);
  padding: 12px 24px; border-radius: 6px;
  font-size: .82rem; font-weight: 700;
  border: none; cursor: pointer; transition: all .2s;
  text-align: center; letter-spacing: .3px;
}
.btn-ouro-btn:hover { background: var(--ouro2); transform: translateY(-1px); }
.btn-ouro-btn.full { width: 100%; }
.btn-ouro-btn.block { display: block; }

.btn-outline-btn {
  display: inline-block;
  background: var(--white); color: var(--ink);
  padding: 12px 24px; border-radius: 6px;
  font-size: .82rem; font-weight: 700;
  border: 1.5px solid var(--line); cursor: pointer; transition: all .2s;
  text-align: center;
}
.btn-outline-btn:hover { border-color: var(--ink); }
.btn-outline-btn.block { display: block; }

.btn-verde {
  display: inline-block;
  background: var(--verde); color: #fff;
  padding: 10px 20px; border-radius: 6px;
  font-size: .8rem; font-weight: 700;
  border: none; cursor: pointer; transition: all .2s;
}
.btn-verde:hover { background: var(--verde2); }

.btn-sm { padding: 7px 14px !important; font-size: .73rem !important; }
.btn-red { background: #fdeaea !important; color: var(--red) !important; border: 1px solid #f5c6c6 !important; }
.btn-red:hover { background: #fca5a5 !important; }

/* ══════════════════════════════════════════
   ALERTAS
══════════════════════════════════════════ */
.alert-ok    { background: #dcfce7; color: #166534; border: 1.5px solid #86efac; padding: 13px 16px; border-radius: 8px; margin-bottom: 18px; font-size: .85rem; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1.5px solid #fca5a5; padding: 13px 16px; border-radius: 8px; margin-bottom: 18px; font-size: .85rem; }
.alert-warn  { background: #fef3c7; color: #92400e; border: 1.5px solid #fcd34d; padding: 13px 16px; border-radius: 8px; margin-bottom: 18px; font-size: .85rem; }

/* ══════════════════════════════════════════
   BADGES
══════════════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 9px; border-radius: 20px;
  font-size: .68rem; font-weight: 700;
  background: var(--light); color: var(--slate);
  border: 1px solid var(--line);
}
.badge-green  { background: #dcfce7; color: #166534; border-color: #86efac; }
.badge-red    { background: #fee2e2; color: var(--red); border-color: #fca5a5; }
.badge-blue   { background: #dbeafe; color: var(--blue); border-color: #93c5fd; }
.badge-amber  { background: #fef3c7; color: var(--amber); border-color: #fcd34d; }
.badge-ouro   { background: var(--ouro-xlt); color: var(--ouro); border-color: rgba(184,135,46,.3); }

/* ══════════════════════════════════════════
   DASHBOARD / SIDEBAR
══════════════════════════════════════════ */
.dashboard-layout {
  display: grid;
  grid-template-columns: 224px 1fr;
  min-height: calc(100vh - 64px);
}
.sidebar {
  background: var(--f2);
  padding: 22px 12px;
  border-right: 1px solid rgba(255,255,255,.05);
  position: sticky; top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}
.sidebar h3 {
  font-size: .6rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.25);
  padding: 0 9px; margin-bottom: 7px;
}
.sidebar a {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,.52);
  padding: 9px 10px; border-radius: 6px;
  font-size: .8rem; font-weight: 500;
  margin-bottom: 2px; transition: all .2s;
}
.sidebar a:hover { background: rgba(255,255,255,.05); color: rgba(255,255,255,.85); }
.sidebar a.active { background: rgba(184,135,46,.12); color: var(--ouro); font-weight: 600; }
.sidebar-sep { border-top: 1px solid rgba(255,255,255,.06); margin: 12px 4px; }

.admin-sidebar {
  background: var(--verde2);
  padding: 22px 12px;
  border-right: 1px solid rgba(255,255,255,.05);
}
.admin-sidebar h3 {
  font-size: .6rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  padding: 0 9px; margin-bottom: 7px;
}
.admin-sidebar a {
  display: block; color: rgba(255,255,255,.55);
  padding: 9px 10px; border-radius: 6px;
  font-size: .8rem; margin-bottom: 2px; transition: all .2s;
}
.admin-sidebar a:hover { background: rgba(255,255,255,.08); color: #fff; }
.admin-sidebar a.active { background: rgba(184,135,46,.15); color: var(--ouro); }

.content {
  padding: 30px;
  background: var(--light);
}

.page-header { margin-bottom: 24px; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 800;
}
.page-header p { color: var(--muted); font-size: .85rem; margin-top: 4px; }

.main { max-width: 1000px; margin: 32px auto; padding: 0 22px; }

/* ══════════════════════════════════════════
   VAGAS
══════════════════════════════════════════ */
.filtros-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 10px; margin-bottom: 12px;
}
.filtros-grid input,
.filtros-grid select { margin-bottom: 0; }

/* ══════════════════════════════════════════
   CHECKBOXES / CHIPS
══════════════════════════════════════════ */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 7px; margin-bottom: 6px;
}
.checkbox-item {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 11px;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  cursor: pointer; font-size: .78rem; font-weight: 500;
  transition: all .2s; background: var(--white);
  text-transform: none; letter-spacing: 0; color: var(--ink);
}
.checkbox-item:hover, .checkbox-item.checked {
  border-color: var(--ouro); background: var(--ouro-xlt);
}
.checkbox-item input { width: auto; margin: 0; padding: 0; }

.tab-tipo { display: flex; gap: 0; margin-bottom: 20px; }
.tab-btn {
  flex: 1; padding: 11px; border: 1.5px solid var(--line);
  background: var(--white); font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: all .2s; color: var(--muted);
}
.tab-btn:first-child { border-radius: 7px 0 0 7px; }
.tab-btn:last-child  { border-radius: 0 7px 7px 0; border-left: none; }
.tab-btn.active { background: var(--ouro-xlt); border-color: var(--ouro); color: var(--ink); }

.checkbox-label {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .84rem; font-weight: 400;
  text-transform: none; letter-spacing: 0;
  color: var(--ink); cursor: pointer; margin-bottom: 18px;
}
.checkbox-label input { width: auto; margin: 0; padding: 0; flex-shrink: 0; margin-top: 2px; }
.checkbox-label a { color: var(--ouro); }

/* ══════════════════════════════════════════
   DISPONIBILIDADE (calendário)
══════════════════════════════════════════ */
.avail-table { border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.avail-header, .avail-row {
  display: grid;
  grid-template-columns: 90px repeat(4,1fr);
  border-bottom: 1px solid var(--line);
}
.avail-row:last-child { border-bottom: none; }
.avail-header > div {
  padding: 9px 6px; background: var(--light);
  text-align: center; font-size: .67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; color: var(--muted);
}
.avail-day-label {
  padding: 10px 12px; font-size: .8rem; font-weight: 600; color: var(--slate);
  display: flex; align-items: center;
}
.avail-row > div:not(.avail-day-label) {
  padding: 6px; border-left: 1px solid var(--line);
}
.avail-cell {
  display: block; height: 34px; border-radius: 5px;
  border: 1.5px solid var(--line);
  cursor: pointer; transition: all .2s; background: var(--white);
}
.avail-cell.on { background: var(--ouro); border-color: var(--ouro); }
.avail-cell:hover { border-color: var(--ouro); }

/* ══════════════════════════════════════════
   STAT CARDS (Dashboard)
══════════════════════════════════════════ */
.stat-card { text-align: center; }
.stat-card .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem; font-weight: 800;
  color: var(--ouro); letter-spacing: -1px;
}
.stat-card .stat-label {
  font-size: .68rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 4px;
}
.stat-card .stat-trend { font-size: .72rem; color: var(--verde); margin-top: 5px; font-weight: 600; }
.stat-card.stat-warn .stat-num { color: var(--red); }

/* ══════════════════════════════════════════
   CRMV STATUS
══════════════════════════════════════════ */
.crmv-status {
  display: inline-block; padding: 5px 14px;
  border-radius: 20px; font-size: .78rem; font-weight: 700;
  margin-bottom: 8px;
}
.status-nenhum    { background: var(--light); color: var(--muted); }
.status-pendente  { background: #fef3c7; color: var(--amber); }
.status-verificado{ background: #dcfce7; color: #166534; }
.status-recusado  { background: #fee2e2; color: var(--red); }

/* ══════════════════════════════════════════
   CANDIDATOS
══════════════════════════════════════════ */
.cand-header {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 12px; flex-wrap: wrap;
}
.cand-avatar {
  width: 58px; height: 58px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
  border: 1.5px solid var(--line);
}
.cand-avatar-placeholder {
  width: 58px; height: 58px; border-radius: 10px;
  background: linear-gradient(135deg, var(--verde), var(--ouro));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: var(--ink); flex-shrink: 0;
}
.cand-valores { margin-left: auto; text-align: right; }
.cand-valores div { font-size: .78rem; line-height: 1.9; }
.cand-valores small { color: var(--muted); display: block; font-size: .7rem; }
.cand-bio { font-size: .82rem; color: var(--muted); margin-bottom: 10px; line-height: 1.55; }
.cand-mensagem {
  background: var(--ouro-xlt);
  border-left: 3px solid var(--ouro);
  padding: 10px 14px; border-radius: 0 7px 7px 0;
  font-size: .82rem; margin-bottom: 12px; color: var(--slate);
}
.cand-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.contato-liberado { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.contato-oculto   { color: var(--muted); font-size: .82rem; }

/* ══════════════════════════════════════════
   TABELA ADMIN
══════════════════════════════════════════ */
.admin-table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.admin-table th {
  padding: 10px 12px; text-align: left;
  font-size: .65rem; text-transform: uppercase;
  letter-spacing: 1px; color: var(--muted);
  border-bottom: 2px solid var(--line); white-space: nowrap;
}
.admin-table td { padding: 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-table tr:hover td { background: var(--light); }
.admin-table tr:last-child td { border-bottom: none; }

/* ══════════════════════════════════════════
   RODAPÉ
══════════════════════════════════════════ */
.footer {
  background: var(--f1);
  border-top: 1px solid rgba(184,135,46,.1);
  padding: 60px 5% 28px;
  margin-top: 60px;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: .8rem; color: rgba(255,255,255,.35);
  line-height: 1.75; margin-top: 10px; max-width: 260px;
}
.footer-col h5 {
  font-size: .65rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 14px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,.4);
  font-size: .8rem; margin-bottom: 8px; transition: color .2s;
}
.footer-col a:hover { color: var(--ouro); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 22px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .74rem; color: rgba(255,255,255,.2); }
.footer-admin-link { color: rgba(255,255,255,.05) !important; font-size: .5rem; }
.footer-admin-link:hover { color: rgba(255,255,255,.2) !important; }

/* ══════════════════════════════════════════
   UTILITÁRIOS
══════════════════════════════════════════ */
.text-center { text-align: center; }
.text-white  { color: #fff !important; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.ml-8  { margin-left: 8px; }
.muted { color: var(--muted); }
.border-bottom { border-bottom: 1px solid var(--line); }
.py-10 { padding-top: 10px; padding-bottom: 10px; }

/* ══════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .grid-4, .grid-3 { grid-template-columns: 1fr 1fr; }
  .aud-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .filtros-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .admin-sidebar { display: none; }
  .steps-wrap.show { grid-template-columns: repeat(3,1fr); }
  .steps-wrap::before { display: none; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 1.9rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .filtros-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 24px; }
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .hero-metrics { flex-wrap: wrap; gap: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links a:not(.btn-nav-primary):not(.btn-sair) { display: none; }
  .aud-box { padding: 36px 24px; }
  .section { padding: 56px 5%; }
  /* ============================================================
   VetMatch Brasil — style.css ADIÇÕES v2
   Cole este bloco NO FINAL do style.css existente
   Não apaga nada — apenas acrescenta novos componentes
============================================================ */

/* ── VARIÁVEIS NOVAS (harmonia com a landing page) ── */
:root {
    --navy:   #0f1923;
    --navy2:  #111827;
    --ouro-bright: #e8c14a;
    --ouro-bright2: #c9a52e;
    --ln-dark: rgba(255,255,255,.09);
    --mt-dark: rgba(255,255,255,.5);
}

/* ── NOTIFY BAR ── */
.vm-notify-bar {
    background: var(--ouro);
    padding: 8px 5%;
    text-align: center;
    font-size: .75rem;
    font-weight: 700;
    color: var(--ink);
}
.vm-notify-bar strong {
    background: rgba(0,0,0,.15);
    border-radius: 4px;
    padding: 2px 8px;
    margin: 0 5px;
}

/* ── STRIP ANIMADA ── */
.vm-strip {
    background: var(--ouro);
    padding: 11px 0;
    overflow: hidden;
}
.vm-strip-track {
    display: flex;
    animation: vmTick 30s linear infinite;
    white-space: nowrap;
}
.vm-strip-item {
    padding: 0 20px;
    font-size: .73rem;
    font-weight: 800;
    color: rgba(8,13,20,.65);
    flex-shrink: 0;
}
@keyframes vmTick {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── TICKER DE ATIVIDADE ── */
.vm-ticker {
    background: rgba(255,255,255,.03);
    border-top: 1px solid var(--ln-dark);
    border-bottom: 1px solid var(--ln-dark);
    padding: 9px 0;
    overflow: hidden;
}
.vm-ticker-track {
    display: flex;
    animation: vmTick 45s linear infinite;
    white-space: nowrap;
}
.vm-ticker-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 26px;
    font-size: .73rem;
    color: var(--mt-dark);
    flex-shrink: 0;
}
.vm-ticker-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ouro);
    flex-shrink: 0;
}

/* ── CARDS DE TIPO DE PERFIL ── */
.profile-type-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.profile-type-card {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--ln-dark);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: .2s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.profile-type-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(184,135,46,.35);
    transform: translateY(-2px);
}
.profile-type-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 12px;
}
.profile-type-card h4 {
    font-size: .85rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}
.profile-type-card p {
    font-size: .73rem;
    color: var(--mt-dark);
    line-height: 1.45;
    margin-bottom: 12px;
}

/* ── FEED SOCIAL — POSTS ── */
.feed-post {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--ln-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: .2s;
}
.feed-post:hover { border-color: rgba(184,135,46,.25); }
.feed-post-header {
    padding: 12px 14px;
    display: flex;
    gap: 9px;
    align-items: center;
    border-bottom: 1px solid var(--ln-dark);
}
.feed-post-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: .82rem;
    flex-shrink: 0;
    overflow: hidden;
}
.feed-post-avatar img { width: 100%; height: 100%; object-fit: cover; }
.feed-post-name { font-size: .81rem; font-weight: 700; color: #fff; }
.feed-post-type { font-size: .67rem; color: var(--mt-dark); }
.feed-post-sponsored {
    margin-left: auto;
    font-size: .62rem;
    font-weight: 700;
    padding: 2px 7px;
    background: rgba(99,102,241,.1);
    color: #818cf8;
    border-radius: 20px;
}
.feed-post-media {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    border-bottom: 1px solid var(--ln-dark);
    background: rgba(255,255,255,.02);
}
.feed-post-body { padding: 12px 14px; }
.feed-post-text {
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    margin-bottom: 10px;
}
.feed-post-actions {
    display: flex;
    gap: 14px;
    font-size: .71rem;
    color: var(--mt-dark);
}
.feed-post-action {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--mt-dark);
    font-size: .71rem;
    padding: 0;
    transition: .15s;
}
.feed-post-action:hover { color: var(--ouro); }
.feed-post-action.curtido { color: #ef4444; }

/* ── FEED (versão light para páginas claras) ── */
.feed-post-light {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}
.feed-post-light .feed-post-header { border-color: var(--line); }
.feed-post-light .feed-post-name { color: var(--ink); }
.feed-post-light .feed-post-text { color: var(--muted); }
.feed-post-light .feed-post-action { color: var(--muted); }
.feed-post-light .feed-post-action:hover { color: var(--ouro); }

/* ── RANKING ── */
.ranking-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--ln-dark);
    border-radius: 9px;
    margin-bottom: 8px;
    transition: .2s;
}
.ranking-item:hover { background: rgba(255,255,255,.06); }
.ranking-pos {
    width: 26px;
    text-align: center;
    font-size: .86rem;
    font-weight: 900;
    color: var(--mt-dark);
    flex-shrink: 0;
}
.ranking-pos.ouro { color: var(--ouro); }
.ranking-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: .88rem;
    flex-shrink: 0;
    overflow: hidden;
}
.ranking-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ranking-info { flex: 1; }
.ranking-name { font-size: .82rem; font-weight: 700; color: #fff; }
.ranking-spec { font-size: .7rem; color: var(--mt-dark); }
.ranking-score { text-align: right; }
.ranking-stars { font-size: .77rem; color: var(--ouro); }
.ranking-count { font-size: .68rem; color: var(--mt-dark); }

/* Versão light */
.ranking-item-light {
    background: var(--white);
    border: 1px solid var(--line);
}
.ranking-item-light .ranking-name { color: var(--ink); }
.ranking-item-light .ranking-spec { color: var(--muted); }

/* ── TRENDING TOPICS ── */
.trending-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.trending-tag {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--ln-dark);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: .78rem;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.75);
}
.trending-tag:hover {
    border-color: var(--ouro);
    background: rgba(184,135,46,.07);
}
.trending-tag-count { font-size: .66rem; color: var(--mt-dark); }
.trending-tag.hot {
    background: rgba(239,68,68,.07);
    border-color: rgba(239,68,68,.18);
    color: #f87171;
}

/* ── NÚMEROS ANIMADOS ── */
.stat-counter-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.stat-counter-card {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--ln-dark);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
}
.stat-counter-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--ouro);
}
.stat-counter-label {
    font-size: .67rem;
    color: var(--mt-dark);
    margin-top: 2px;
    line-height: 1.3;
}

/* ── QUIZ ── */
.quiz-box {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--ln-dark);
    border-radius: 13px;
    padding: 28px;
    max-width: 640px;
    margin: 0 auto;
}
.quiz-progress {
    display: flex;
    gap: 5px;
    margin-bottom: 22px;
}
.quiz-progress-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.13);
}
.quiz-progress-dot.done { background: var(--ouro); }
.quiz-question { font-size: .95rem; font-weight: 800; margin-bottom: 18px; color: #fff; }
.quiz-options { display: flex; flex-direction: column; gap: 9px; }
.quiz-option {
    background: rgba(255,255,255,.04);
    border: 1.5px solid var(--ln-dark);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: .82rem;
    cursor: pointer;
    transition: .2s;
    text-align: left;
    color: #fff;
    width: 100%;
}
.quiz-option:hover {
    border-color: var(--ouro);
    background: rgba(184,135,46,.06);
}
.quiz-option.selected {
    border-color: var(--ouro);
    background: rgba(184,135,46,.1);
    font-weight: 700;
}
.quiz-result { text-align: center; padding: 16px 0; }
.quiz-result h3 {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--ouro);
    margin-bottom: 9px;
}

/* ── MAPA DO BRASIL ── */
.map-state {
    fill: rgba(255,255,255,.06);
    stroke: rgba(255,255,255,.1);
    stroke-width: .5;
    cursor: pointer;
    transition: .2s;
}
.map-state:hover, .map-state.active {
    fill: rgba(184,135,46,.22);
    stroke: var(--ouro);
    stroke-width: 1;
}
.map-state.hot { fill: rgba(184,135,46,.13); }
.map-stat-card {
    background: rgba(255,255,255,.05);
    border-radius: 9px;
    padding: 13px;
    border: 1px solid var(--ln-dark);
}
.map-stat-num { font-size: 1.3rem; font-weight: 900; color: var(--ouro); }
.map-stat-label { font-size: .7rem; color: var(--mt-dark); margin-top: 2px; }

/* ── SIMULADOR ROI ── */
.roi-calculator {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--ln-dark);
    border-radius: 13px;
    padding: 26px;
}
.roi-result-grid {
    background: rgba(184,135,46,.07);
    border: 1px solid rgba(184,135,46,.18);
    border-radius: 9px;
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}
.roi-result-num { font-size: 1.3rem; font-weight: 900; color: var(--ouro); }
.roi-result-label { font-size: .68rem; color: var(--mt-dark); }
.roi-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 5px;
    border-radius: 3px;
    background: rgba(255,255,255,.1);
    outline: none;
    cursor: pointer;
    margin-bottom: 16px;
}
.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--ouro);
    cursor: pointer;
}

/* ── CARDS DE EVENTO ── */
.evento-card {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--ln-dark);
    border-radius: 11px;
    overflow: hidden;
    transition: .2s;
}
.evento-card:hover { border-color: rgba(184,135,46,.25); }
.evento-date-block {
    background: var(--ouro);
    color: var(--ink);
    padding: 12px;
    text-align: center;
}
.evento-day { font-size: 1.7rem; font-weight: 900; line-height: 1; }
.evento-month { font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.evento-body { padding: 14px; }
.evento-card h4 { font-size: .83rem; font-weight: 800; margin-bottom: 4px; color: #fff; }
.evento-card p { font-size: .73rem; color: var(--mt-dark); margin-bottom: 10px; }

/* Versão light */
.evento-card-light {
    background: var(--white);
    border: 1px solid var(--line);
}
.evento-card-light h4 { color: var(--ink); }
.evento-card-light p { color: var(--muted); }

/* ── WALL OF LOVE / DEPOIMENTOS ── */
.depoimento-card {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--ln-dark);
    border-radius: 11px;
    padding: 20px;
}
.depoimento-quote {
    font-size: .83rem;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    margin-bottom: 14px;
    font-style: italic;
}
.depoimento-author { display: flex; gap: 9px; align-items: center; }
.depoimento-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: .8rem;
    flex-shrink: 0;
}
.depoimento-name { font-size: .76rem; font-weight: 700; color: #fff; }
.depoimento-role { font-size: .66rem; color: var(--mt-dark); }
.depoimento-stars { color: var(--ouro); font-size: .76rem; }

/* ── APP TEASER ── */
.app-phone-frame {
    background: rgba(255,255,255,.04);
    border: 1.5px solid rgba(255,255,255,.09);
    border-radius: 30px;
    padding: 12px;
    max-width: 200px;
    margin: 0 auto;
}
.app-screen {
    background: rgba(255,255,255,.03);
    border-radius: 20px;
    padding: 14px;
    min-height: 340px;
    border: 1px solid var(--ln-dark);
}
.app-store-badge {
    background: rgba(255,255,255,.06);
    border: 1px solid var(--ln-dark);
    border-radius: 8px;
    padding: 9px 16px;
    font-size: .76rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
}

/* ── NEWSLETTER BOX ── */
.newsletter-box {
    background: rgba(184,135,46,.05);
    border: 1px solid rgba(184,135,46,.18);
    border-radius: 15px;
    padding: 36px;
    text-align: center;
}
.newsletter-form {
    display: flex;
    gap: 7px;
    margin-top: 18px;
    flex-wrap: wrap;
    justify-content: center;
}
.newsletter-input {
    background: rgba(255,255,255,.07) !important;
    border: 1px solid var(--ln-dark) !important;
    border-radius: 7px !important;
    padding: 10px 14px !important;
    font-size: .82rem !important;
    color: #fff !important;
    flex: 1;
    min-width: 200px;
    margin-bottom: 0 !important;
}
.newsletter-input::placeholder { color: var(--mt-dark) !important; }

/* ── PROGRESS BAR CTA ── */
.cta-progress-wrap {
    max-width: 380px;
    margin: 0 auto 24px;
    background: rgba(255,255,255,.04);
    border-radius: 9px;
    padding: 12px 16px;
}
.cta-progress-bar {
    background: rgba(255,255,255,.07);
    border-radius: 99px;
    height: 6px;
    overflow: hidden;
    margin-top: 6px;
}
.cta-progress-fill {
    height: 100%;
    background: var(--ouro);
    border-radius: 99px;
    transition: width 1.5s ease;
}
.cta-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: .68rem;
    color: var(--mt-dark);
}

/* ── ONLINE BADGE ── */
.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    color: rgba(255,255,255,.38);
}
.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulsarGreen 2s infinite;
}
@keyframes pulsarGreen {
    0%, 100% { opacity: 1; }
    50%       { opacity: .35; }
}

/* ── INFOGRÁFICO DE MERCADO ── */
.infog-card {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--ln-dark);
    border-radius: 11px;
    padding: 20px;
    text-align: center;
}
.infog-number { font-size: 1.8rem; font-weight: 900; color: var(--ouro); margin-bottom: 3px; }
.infog-label  { font-size: .74rem; color: var(--mt-dark); line-height: 1.4; }
.infog-bar    { height: 4px; background: rgba(255,255,255,.07); border-radius: 2px; margin-top: 10px; overflow: hidden; }
.infog-fill   { height: 100%; background: var(--ouro); border-radius: 2px; width: 0; transition: width 1.5s ease; }

/* ── MATCH SCORE ── */
.match-score-display {
    background: rgba(184,135,46,.08);
    border: 1px solid rgba(184,135,46,.2);
    border-radius: 8px;
    padding: 13px;
    text-align: center;
    margin-top: 14px;
}
.match-score-num { font-size: 1.8rem; font-weight: 900; color: var(--ouro); }
.match-score-label { font-size: .74rem; color: var(--mt-dark); }
.match-bar-wrap {
    background: rgba(255,255,255,.06);
    border-radius: 99px;
    height: 11px;
    overflow: hidden;
    margin: 7px 0;
}
.match-bar-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--ouro2), var(--ouro));
    width: 0;
    transition: width 1.5s ease;
}

/* ── RESPONSIVO NOVAS SEÇÕES ── */
@media (max-width: 1000px) {
    .profile-type-cards { grid-template-columns: repeat(2, 1fr); }
    .stat-counter-grid  { grid-template-columns: repeat(3, 1fr); }
    .roi-result-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .profile-type-cards { grid-template-columns: 1fr; }
    .stat-counter-grid  { grid-template-columns: repeat(2, 1fr); }
    .newsletter-form    { flex-direction: column; }
    .app-phone-frame    { display: none; }
}
}