/* ============================================================
   Conexão Corporativa — Design System v2 (Premium / Sob Medida)
   Paleta: Midnight Navy + Teal vibrante + Ouro champanhe
   Tipografia: "Sora" (display) + "Inter" (texto)
   ============================================================ */

:root {
  /* Brand core */
  --navy-950: #060d1c;
  --navy-900: #0a1426;
  --navy-800: #0e1d38;
  --navy-700: #142a4e;
  --navy-600: #1d3c6b;
  --navy-500: #28518f;

  --teal-600: #0fb6cc;
  --teal-500: #19c8de;
  --teal-400: #3fd8ec;
  --teal-300: #74e6f4;
  --teal-glow: rgba(25, 200, 222, 0.28);

  --gold-600: #cf9d31;
  --gold-500: #e6b94b;
  --gold-400: #f3cd6e;
  --gold-200: #f8e4ab;

  --slate-50: #f5f8fc;
  --slate-100: #eaf1f8;
  --slate-200: #d9e3ef;
  --slate-300: #bccbdd;
  --slate-400: #8a9cb3;
  --slate-500: #5f7088;
  --slate-600: #44546b;
  --slate-700: #2f3d52;
  --slate-800: #1c2738;
  --white: #ffffff;

  --green-500: #16a34a;
  --green-50: #ecfdf3;
  --red-500: #e1382c;
  --red-50: #fef2f1;
  --amber-500: #d98a06;

  --radius-xl: 22px;
  --radius: 15px;
  --radius-sm: 10px;

  --shadow-xs: 0 1px 2px rgba(10, 20, 38, 0.06);
  --shadow-sm: 0 2px 8px rgba(10, 20, 38, 0.07);
  --shadow: 0 10px 30px rgba(10, 20, 38, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 20, 38, 0.18);
  --shadow-teal: 0 14px 34px rgba(25, 200, 222, 0.30);
  --shadow-gold: 0 12px 30px rgba(227, 179, 65, 0.38);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Sora', 'Inter', sans-serif;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--teal-glow); color: var(--navy-900); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; }

/* Decorative section heading with kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-600);
  margin-bottom: 12px;
}
.kicker::before { content: ''; width: 26px; height: 2px; background: linear-gradient(90deg, var(--teal-500), transparent); border-radius: 2px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 15, 30, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 13px; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; letter-spacing: -0.01em; }
.brand .logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(140deg, var(--teal-400), var(--navy-600) 75%);
  display: grid; place-items: center; color: var(--white); font-weight: 800; font-family: var(--font-display);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), var(--shadow-teal);
  position: relative; overflow: hidden; font-size: 1.02rem;
}
.brand .logo-mark::after { content: ''; position: absolute; top: -60%; left: -30%; width: 60%; height: 200%; background: rgba(255,255,255,0.22); transform: rotate(20deg); }
.brand small { display: block; font-family: var(--font); font-size: 0.66rem; font-weight: 600; color: var(--slate-400); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { color: var(--slate-300); font-weight: 500; font-size: 0.93rem; padding: 9px 14px; border-radius: 9px; transition: .2s var(--ease); }
.nav-links a:hover { color: var(--white); background: rgba(255, 255, 255, 0.07); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 0.94rem;
  padding: 12px 22px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: .2s var(--ease); white-space: nowrap; line-height: 1; position: relative;
}
.btn-primary { background: linear-gradient(135deg, var(--teal-500), var(--teal-600)); color: #042b32; box-shadow: 0 6px 16px rgba(25,200,222,0.30); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-teal); filter: saturate(1.1); }
.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: #3a2b06; box-shadow: 0 6px 16px rgba(227,179,65,0.32); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-light { background: var(--white); color: var(--navy-800); border: 1px solid var(--slate-200); box-shadow: var(--shadow-xs); }
.btn-light:hover { border-color: var(--teal-500); color: var(--navy-900); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.28); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255,255,255,0.5); }
.btn-whatsapp { background: linear-gradient(135deg, #25d366, #1da955); color: #fff; box-shadow: 0 6px 16px rgba(37,211,102,0.32); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37,211,102,0.4); }
.btn-danger { background: var(--red-500); color: #fff; }
.btn-danger:hover { filter: brightness(1.08); }
.btn-success { background: var(--green-500); color: #fff; }
.btn-success:hover { filter: brightness(1.06); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 15px; font-size: 0.84rem; }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  padding: 96px 0 110px;
  background:
    radial-gradient(1200px 520px at 82% -12%, rgba(25, 200, 222, 0.22), transparent 58%),
    radial-gradient(900px 460px at 6% 118%, rgba(40, 81, 143, 0.55), transparent 60%),
    linear-gradient(158deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 34px 34px; mask-image: linear-gradient(180deg, #000, transparent 70%); opacity: .6;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); line-height: 1.06; font-weight: 800; max-width: 17ch; }
.hero h1 .accent { background: linear-gradient(95deg, var(--teal-300), var(--gold-400)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { margin-top: 20px; font-size: 1.14rem; color: rgba(225, 235, 248, 0.82); max-width: 58ch; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px;
  background: rgba(25, 200, 222, 0.10); border: 1px solid rgba(25, 200, 222, 0.32);
  color: var(--teal-300); font-size: 0.82rem; font-weight: 600; margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-400); box-shadow: 0 0 0 4px rgba(63,216,236,0.22); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(63,216,236,0.22); } 50% { box-shadow: 0 0 0 7px rgba(63,216,236,0.05); } }

/* trust row under hero */
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 30px; margin-top: 30px; align-items: center; }
.trust-row .ti { display: inline-flex; align-items: center; gap: 9px; color: rgba(220,232,247,0.72); font-size: 0.88rem; font-weight: 500; }
.trust-row .ti svg { width: 18px; height: 18px; color: var(--teal-400); }

/* ============================================================
   Search bar
   ============================================================ */
.search-card {
  margin-top: 36px; background: rgba(255,255,255,0.97); border-radius: var(--radius);
  padding: 15px; box-shadow: var(--shadow-lg); display: grid;
  grid-template-columns: 1.7fr 1fr 1fr auto; gap: 11px; border: 1px solid rgba(255,255,255,0.5);
}
.search-card .field { display: flex; flex-direction: column; }
.search-card label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-500); padding: 0 6px 4px; }
.search-card input, .search-card select {
  border: 1px solid transparent; background: var(--slate-100); border-radius: var(--radius-sm);
  padding: 13px 15px; font-size: 0.95rem; font-family: var(--font); color: var(--slate-800); outline: none; transition: .18s var(--ease);
}
.search-card input:focus, .search-card select:focus { background: var(--white); border-color: var(--teal-500); box-shadow: 0 0 0 3px var(--teal-glow); }
.search-card .btn { height: 100%; }
.search-stats { display: flex; gap: 36px; margin-top: 30px; flex-wrap: wrap; }
.search-stats .stat strong { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--white); }
.search-stats .stat span { font-size: 0.82rem; color: var(--slate-400); }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 72px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 30px; flex-wrap: wrap; gap: 14px; }
.section-head h2 { font-size: 1.85rem; font-weight: 800; color: var(--navy-900); }
.section-head p { color: var(--slate-500); margin-top: 5px; }

/* value props strip */
.value-strip { background: var(--white); border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding: 52px 0; }
.value-card { padding: 4px; }
.value-card .vc-ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(25,200,222,0.14), rgba(40,81,143,0.12)); color: var(--teal-600); margin-bottom: 16px; }
.value-card .vc-ic svg { width: 25px; height: 25px; }
.value-card h3 { font-size: 1.12rem; color: var(--navy-900); margin-bottom: 7px; }
.value-card p { color: var(--slate-500); font-size: 0.94rem; }

/* ============================================================
   Filters
   ============================================================ */
.filters-bar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 28px; }
.chip {
  border: 1px solid var(--slate-200); background: var(--white); color: var(--slate-600);
  padding: 8px 16px; border-radius: 999px; font-size: 0.84rem; font-weight: 600; cursor: pointer; transition: .18s var(--ease);
}
.chip:hover { border-color: var(--teal-500); color: var(--navy-800); transform: translateY(-1px); }
.chip.active { background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); color: var(--white); border-color: var(--navy-800); }

/* ============================================================
   Cards grid
   ============================================================ */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pro-card {
  background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius);
  overflow: hidden; transition: .25s var(--ease); display: flex; flex-direction: column; position: relative;
}
.pro-card::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius); box-shadow: 0 0 0 0 var(--teal-glow); transition: .25s var(--ease); pointer-events: none; }
.pro-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal-400); }
.pro-card.premium { border-color: var(--gold-500); box-shadow: 0 0 0 1px var(--gold-500), var(--shadow-sm); }
.pro-card.premium .cover { background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); }
.pro-card .cover { height: 132px; background: linear-gradient(135deg, var(--navy-700), var(--navy-500)); position: relative; overflow: hidden; }
.pro-card .cover::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px); background-size: 20px 20px; }
.pro-card .avatar {
  width: 86px; height: 86px; border-radius: 50%; border: 4px solid var(--white); object-fit: cover;
  position: absolute; left: 22px; bottom: -36px; background: linear-gradient(135deg, var(--slate-200), var(--slate-100));
  display: grid; place-items: center; color: var(--navy-700); font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
  box-shadow: var(--shadow-sm); z-index: 2;
}
.pro-card .body { padding: 48px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.pro-card h3 { font-size: 1.14rem; font-weight: 700; color: var(--navy-900); }
.pro-card .role { color: var(--teal-600); font-weight: 600; font-size: 0.88rem; margin-top: 2px; }
.pro-card .meta { display: flex; gap: 14px; color: var(--slate-500); font-size: 0.84rem; margin: 12px 0; flex-wrap: wrap; }
.pro-card .meta span { display: inline-flex; align-items: center; gap: 5px; }
.pro-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 18px; }
.tag-pill { background: var(--slate-100); color: var(--slate-600); font-size: 0.74rem; font-weight: 600; padding: 5px 11px; border-radius: 7px; transition: .15s; }
.pro-card:hover .tag-pill { background: var(--slate-50); }
.pro-card .price { font-family: var(--font-display); font-weight: 700; color: var(--navy-800); font-size: 0.94rem; }
.pro-card .card-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--slate-100); display: flex; align-items: center; justify-content: space-between; gap: 10px; }

/* Premium seal */
.seal {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #3c2c05; font-weight: 800; font-size: 0.7rem; letter-spacing: 0.04em;
  padding: 6px 12px; border-radius: 999px; text-transform: uppercase;
  box-shadow: var(--shadow-gold);
}
.seal svg { width: 13px; height: 13px; }

/* ============================================================
   Empty / loading
   ============================================================ */
.empty-state { text-align: center; padding: 64px 20px; color: var(--slate-500); }
.empty-state svg { width: 58px; height: 58px; color: var(--slate-300); margin: 0 auto 14px; }
.empty-state h3 { color: var(--navy-800); margin-bottom: 4px; }
.skeleton { background: linear-gradient(90deg, var(--slate-100) 25%, var(--slate-200) 37%, var(--slate-100) 63%); background-size: 400% 100%; animation: shimmer 1.4s infinite; border-radius: var(--radius); height: 296px; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* ============================================================
   Pagination
   ============================================================ */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination button { min-width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--slate-200); background: var(--white); color: var(--slate-700); font-weight: 600; cursor: pointer; transition: .15s; }
.pagination button:hover:not(:disabled) { border-color: var(--teal-500); }
.pagination button.active { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }
.pagination button:disabled { opacity: .4; cursor: not-allowed; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-950); color: var(--slate-400); padding: 56px 0 32px; margin-top: 48px; position: relative; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal-500), var(--gold-500), transparent); }
.site-footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 22px; align-items: center; }
.site-footer .brand { color: var(--white); }
.site-footer small { font-size: 0.82rem; }
.site-footer .flex a { transition: .15s; }
.site-footer .flex a:hover { color: var(--teal-400); }

/* ============================================================
   Profile page
   ============================================================ */
.profile-hero { background:
  radial-gradient(800px 360px at 85% -20%, rgba(25,200,222,0.18), transparent 60%),
  linear-gradient(158deg, var(--navy-950), var(--navy-700)); color: var(--white); padding: 60px 0 96px; position: relative; }
.profile-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 30px 30px; }
.profile-main { margin-top: -66px; position: relative; z-index: 1; }
.profile-card { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 34px; display: grid; grid-template-columns: 156px 1fr; gap: 30px; }
.profile-card .avatar-lg { width: 156px; height: 156px; border-radius: 20px; object-fit: cover; background: linear-gradient(135deg, var(--slate-100), var(--slate-200)); display: grid; place-items: center; font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--navy-700); box-shadow: var(--shadow-sm); }
.profile-card h1 { font-size: 1.95rem; font-weight: 800; color: var(--navy-900); }
.profile-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; margin-top: 28px; }
.panel { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-xs); }
.panel h3 { font-size: 1.12rem; font-weight: 700; color: var(--navy-900); margin-bottom: 14px; }
.contact-aside { position: sticky; top: 92px; }
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 16px; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   Auth / Forms
   ============================================================ */
.auth-wrap { min-height: calc(100vh - 74px); display: grid; place-items: center; padding: 48px 20px; position: relative; overflow: hidden;
  background: radial-gradient(820px 420px at 82% -5%, rgba(25,200,222,0.10), transparent 60%), var(--slate-50); }
.auth-wrap::before { content: ''; position: absolute; bottom: -120px; left: -80px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(40,81,143,0.10), transparent 70%); }
.auth-card { width: 100%; max-width: 452px; background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 40px; position: relative; z-index: 1; border: 1px solid var(--slate-100); }
.auth-card .auth-logo { display: flex; justify-content: center; margin-bottom: 18px; }
.auth-card h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy-900); text-align: center; }
.auth-card .sub { color: var(--slate-500); margin-bottom: 26px; font-size: 0.95rem; text-align: center; }
.form-group { margin-bottom: 17px; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--slate-700); margin-bottom: 7px; }
.input, textarea.input, select.input {
  width: 100%; border: 1px solid var(--slate-200); border-radius: var(--radius-sm); padding: 12px 15px;
  font-size: 0.95rem; font-family: var(--font); color: var(--slate-800); background: var(--white); transition: .16s var(--ease); outline: none;
}
.input:focus, textarea.input:focus, select.input:focus { border-color: var(--teal-500); box-shadow: 0 0 0 3px var(--teal-glow); }
.input::placeholder { color: var(--slate-400); }
textarea.input { resize: vertical; min-height: 116px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.auth-switch { text-align: center; margin-top: 20px; color: var(--slate-500); font-size: 0.9rem; }
.auth-switch a { color: var(--teal-600); font-weight: 600; }

/* ============================================================
   Alerts
   ============================================================ */
.alert { padding: 13px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 16px; display: none; }
.alert.show { display: block; }
.alert-error { background: var(--red-50); color: #9c1f17; border: 1px solid #f6cdc9; }
.alert-success { background: var(--green-50); color: #166534; border: 1px solid #bbf3cf; }
.alert-info { background: #eef5ff; color: #1e3a8a; border: 1px solid #c8dcfb; }

/* ============================================================
   Dashboard layout
   ============================================================ */
.dash { display: grid; grid-template-columns: 264px 1fr; min-height: 100vh; }
.sidebar { background: linear-gradient(180deg, var(--navy-950), var(--navy-900)); color: var(--slate-300); padding: 26px 16px; position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,0.05); }
.sidebar .brand { margin-bottom: 32px; padding: 0 8px; }
.side-nav { display: flex; flex-direction: column; gap: 4px; }
.side-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 11px; color: var(--slate-400); font-weight: 500; font-size: 0.93rem; cursor: pointer; transition: .16s var(--ease); }
.side-nav a:hover { background: rgba(255, 255, 255, 0.06); color: var(--white); }
.side-nav a.active { background: linear-gradient(135deg, var(--teal-500), var(--teal-600)); color: #042b32; font-weight: 700; box-shadow: var(--shadow-teal); }
.side-nav a svg { width: 19px; height: 19px; flex-shrink: 0; }
.side-foot { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 24px; }
.side-foot a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; transition: .15s; }
.side-foot a:hover { background: rgba(255,255,255,0.05); color: var(--white) !important; }
.dash-main { background: var(--slate-50); overflow-x: hidden; }
.dash-topbar { background: rgba(255,255,255,0.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--slate-200); padding: 16px 34px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 10; gap: 12px; }
.dash-topbar h1 { font-size: 1.3rem; font-weight: 700; color: var(--navy-900); }
.dash-content { padding: 34px; max-width: 1180px; }
.dash-view { display: none; }
.dash-view.active { display: block; animation: fade .3s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   Stat cards
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: 18px; margin-bottom: 28px; }
.stat-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-xs); transition: .2s var(--ease); position: relative; overflow: hidden; }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--teal-500); opacity: 0; transition: .2s; }
.stat-card:hover::before { opacity: 1; }
.stat-card .label { font-size: 0.78rem; color: var(--slate-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.stat-card .value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--navy-900); margin-top: 8px; line-height: 1; }
.stat-card .value.cyan { color: var(--teal-600); }
.stat-card .value.gold { color: var(--gold-600); }
.stat-card .value.green { color: var(--green-500); }
.stat-card .value.red { color: var(--red-500); }

/* ============================================================
   Table
   ============================================================ */
.table-wrap { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xs); }
table.data { width: 100%; border-collapse: collapse; }
table.data th { text-align: left; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-500); padding: 14px 18px; background: var(--slate-50); border-bottom: 1px solid var(--slate-200); font-weight: 700; }
table.data td { padding: 14px 18px; border-bottom: 1px solid var(--slate-100); font-size: 0.9rem; vertical-align: middle; }
table.data tr:last-child td { border-bottom: none; }
table.data tr:hover td { background: var(--slate-50); }

/* ============================================================
   Badges
   ============================================================ */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 11px; border-radius: 999px; font-size: 0.74rem; font-weight: 700; }
.badge svg { width: 12px; height: 12px; }
.badge-green { background: #dcfce7; color: #166534; }
.badge-amber { background: #fef3c7; color: #92400e; }
.badge-red { background: #fee2e2; color: #991b1b; }
.badge-slate { background: var(--slate-100); color: var(--slate-600); }
.badge-cyan { background: #cdf6fb; color: #0d5562; }
.badge-gold { background: linear-gradient(135deg, var(--gold-200), #fdf0cf); color: #7a5408; }

/* ============================================================
   Toggle switch
   ============================================================ */
.switch { position: relative; display: inline-block; width: 48px; height: 27px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: var(--slate-300); border-radius: 999px; transition: .2s; cursor: pointer; }
.switch .slider::before { content: ''; position: absolute; height: 21px; width: 21px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .2s var(--ease); box-shadow: var(--shadow-xs); }
.switch input:checked + .slider { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); }
.switch input:checked + .slider::before { transform: translateX(21px); }

/* ============================================================
   Modal
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; background: rgba(6, 13, 28, 0.62); backdrop-filter: blur(3px); display: none; place-items: center; z-index: 100; padding: 20px; }
.modal-overlay.show { display: grid; animation: fade .2s var(--ease); }
.modal { background: var(--white); border-radius: var(--radius-xl); max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); animation: pop .25s var(--ease); }
@keyframes pop { from { transform: scale(.96) translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-head { padding: 24px 28px; border-bottom: 1px solid var(--slate-200); display: flex; justify-content: space-between; align-items: center; }
.modal-head h3 { font-size: 1.22rem; font-weight: 700; color: var(--navy-900); }
.modal-body { padding: 28px; }
.modal-foot { padding: 18px 28px; border-top: 1px solid var(--slate-200); display: flex; justify-content: flex-end; gap: 10px; }
.close-x { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--slate-400); line-height: 1; transition: .15s; }
.close-x:hover { color: var(--navy-800); }

/* ============================================================
   Toast
   ============================================================ */
.toast-zone { position: fixed; bottom: 24px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--navy-800); color: #fff; padding: 14px 18px; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); font-size: 0.9rem; min-width: 264px; animation: slidein .28s var(--ease); border-left: 4px solid var(--teal-500); }
.toast.success { border-left-color: var(--green-500); }
.toast.error { border-left-color: var(--red-500); }
@keyframes slidein { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ============================================================
   How it works (steps + pricing)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 12px; }
.step { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 30px 26px; position: relative; box-shadow: var(--shadow-xs); transition: .2s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step .num { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { font-size: 1.14rem; color: var(--navy-900); margin-bottom: 8px; }
.step p { color: var(--slate-500); font-size: 0.94rem; }
.pricing { max-width: 460px; margin: 40px auto 0; background: linear-gradient(165deg, var(--navy-900), var(--navy-700)); color: var(--white); border-radius: var(--radius-xl); padding: 40px; text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.pricing::before { content: ''; position: absolute; top: -40%; right: -20%; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(25,200,222,0.22), transparent 70%); }
.pricing .price-tag { font-family: var(--font-display); font-size: 3rem; font-weight: 800; margin: 12px 0; position: relative; }
.pricing .price-tag small { font-size: 1rem; font-weight: 500; color: var(--slate-300); }
.pricing ul { list-style: none; text-align: left; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; position: relative; }
.pricing li { display: flex; align-items: center; gap: 11px; color: rgba(225,235,248,0.9); font-size: 0.95rem; }
.pricing li svg { width: 20px; height: 20px; color: var(--teal-400); flex-shrink: 0; }

/* ============================================================
   Helpers
   ============================================================ */
.muted { color: var(--slate-500); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.flex { display: flex; } .items-center { align-items: center; } .gap-2 { gap: 12px; } .gap-3 { gap: 20px; } .justify-between { justify-content: space-between; }
.hidden { display: none !important; }
.spinner { width: 18px; height: 18px; border: 2px solid rgba(255, 255, 255, 0.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: inline-block; }
.spinner.dark { border-color: rgba(4,43,50,0.3); border-top-color: #042b32; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Responsive
   ============================================================ */
.menu-toggle { display: none; background: none; border: 1px solid var(--slate-200); border-radius: 8px; padding: 9px 11px; cursor: pointer; font-size: 1.1rem; }
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .search-card { grid-template-columns: 1fr 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-card { grid-template-columns: 1fr; text-align: center; }
  .profile-card .avatar-lg { margin: 0 auto; }
  .value-grid, .steps { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
}
@media (max-width: 760px) {
  .dash { grid-template-columns: 1fr; }
  .sidebar { position: fixed; left: 0; top: 0; bottom: 0; width: 264px; transform: translateX(-100%); transition: .28s var(--ease); z-index: 60; height: 100%; }
  .sidebar.open { transform: none; box-shadow: var(--shadow-lg); }
  .menu-toggle { display: inline-flex !important; }
  .dash-content { padding: 22px; }
  .dash-topbar { padding: 14px 18px; }
  .dash-topbar h1 { font-size: 1.1rem; }
}
@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
  .search-card { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links a.hide-mobile { display: none; }
  .search-stats { gap: 22px; }
  .hero { padding: 64px 0 72px; }
  .auth-card { padding: 28px 22px; }
}

/* sidebar mobile backdrop */
.sidebar-backdrop { display: none; position: fixed; inset: 0; background: rgba(6,13,28,0.5); z-index: 55; }
.sidebar-backdrop.show { display: block; }

/* ===== Modal de confirmação customizado ===== */
.cc-modal-overlay{position:fixed;inset:0;z-index:2000;display:flex;align-items:center;justify-content:center;padding:1.25rem;background:rgba(8,15,30,.55);backdrop-filter:blur(6px);opacity:0;transition:opacity .2s var(--ease)}
.cc-modal-overlay.open{opacity:1}
.cc-modal{width:100%;max-width:420px;background:var(--white);border-radius:var(--radius-xl);padding:2rem 1.75rem 1.5rem;text-align:center;box-shadow:var(--shadow-lg);transform:translateY(14px) scale(.97);transition:transform .22s cubic-bezier(.2,.9,.3,1.2)}
.cc-modal-overlay.open .cc-modal{transform:translateY(0) scale(1)}
.cc-modal-icon{width:60px;height:60px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem}
.cc-modal-icon.primary{background:rgba(25,200,222,.14);color:var(--teal-600)}
.cc-modal-icon.danger{background:var(--red-50);color:var(--red-500)}
.cc-modal-title{font-family:var(--font-display);font-size:1.25rem;margin:0 0 .35rem;color:var(--navy-900)}
.cc-modal-msg{color:var(--slate-500);font-size:.95rem;line-height:1.55;margin:0 0 1.5rem}
.cc-modal-actions{display:flex;gap:.65rem;justify-content:center}
.cc-modal-actions .btn{min-width:130px;justify-content:center}
@media(max-width:480px){.cc-modal-actions{flex-direction:column-reverse}.cc-modal-actions .btn{width:100%}}
