/* CSS Import Order (DO NOT CHANGE) */

/* 1. Design system tokens */

/* Design System Tokens — Comunidade Incuca */

:root {
  /* Brand Colors */
  --blue: #2B6BD9;
  --blue-hover: #1F51B3;
  --blue-indigo: #3B4FD9;
  --gold: #D4A017;
  --gold-deep: #C9930A;
  --black: #18181B;
  --white: #FFFFFF;

  /* Light Theme — Surfaces */
  --bg: #FFFFFF;
  --bg-muted: #F4F4F5;
  --bg-soft: #FAFAFA;
  --card: #FFFFFF;
  --border: #ECECEE;
  --border-2: #E3E3E6;
  --border-strong: #B5B5BB;

  /* Light Theme — Text */
  --fg: #18181B;
  --fg-2: #52525B;
  --fg-3: #8A8A93;

  /* Dark Sidebar Scale */
  --side: #18181B;
  --side-2: #202023;
  --side-hover: #27272A;
  --side-border: #2A2A2E;
  --side-fg: #E7E7EA;
  --side-fg-2: #9A9AA2;

  /* Semantic Colors */
  --red: #EF4444;
  --green: #22C55E;
  --whatsapp: #25D366;

  /* Typography */
  --font: "Montserrat", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* Spacing & Borders */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(24, 24, 27, 0.06);
  --sh-md: 0 4px 18px rgba(24, 24, 27, 0.08);
  --sh-lg: 0 18px 40px rgba(24, 24, 27, 0.14);
  --sh-xl: 0 28px 60px rgba(24, 24, 27, 0.18);

  /* Easing & Layout */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --sidebar-w: 264px;
  --header-h: 64px;
  --content-max: 1080px;
}

/* Dark Theme Overrides */

[data-theme="dark"] {
  --bg: #131316;
  --bg-muted: #1E1E22;
  --bg-soft: #1A1A1D;
  --card: #1C1C20;
  --border: #2A2A2F;
  --border-2: #33333A;
  --border-strong: #45454D;

  --fg: #ECECEE;
  --fg-2: #A8A8B0;
  --fg-3: #71717A;

  --primary-soft: rgba(43, 107, 217, 0.18);
  --sh-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --sh-md: 0 4px 18px rgba(0, 0, 0, 0.45);
  --sh-lg: 0 18px 40px rgba(0, 0, 0, 0.55);
  --sh-xl: 0 28px 60px rgba(0, 0, 0, 0.6);
}

/* 2. Base styles and resets */

/* Base Styles & Resets — Comunidade Incuca */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-muted);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* 3. Demo platform styles (verbatim) */

/* ============================================================
   Comunidade Incuca — Plataforma (FREE)
   Tokens espelhados do Incuca Design System + gold da Comunidade
   ============================================================ */

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("assets/fonts/JetBrainsMono-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  /* Brand */
  --blue:        #2B6BD9;
  --blue-hover:  #1F51B3;
  --blue-indigo: #3B4FD9;
  --gold:        #D4A017;
  --gold-deep:   #C9930A;
  --black:       #18181B;
  --white:       #FFFFFF;

  /* Light surfaces */
  --bg:          #FFFFFF;
  --bg-muted:    #F4F4F5;
  --bg-soft:     #FAFAFA;
  --card:        #FFFFFF;
  --border:      #ECECEE;
  --border-2:    #E3E3E6;
  --border-strong: #B5B5BB;

  /* Text */
  --fg:          #18181B;
  --fg-2:        #52525B;
  --fg-3:        #8A8A93;

  /* Dark sidebar scale */
  --side:        #18181B;
  --side-2:      #202023;
  --side-hover:  #27272A;
  --side-border: #2A2A2E;
  --side-fg:     #E7E7EA;
  --side-fg-2:   #9A9AA2;

  --red:         #EF4444;
  --green:       #22C55E;
  --whatsapp:    #25D366;

  --font:  "Montserrat", system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(24,24,27,.06);
  --sh-md: 0 4px 18px rgba(24,24,27,.08);
  --sh-lg: 0 18px 40px rgba(24,24,27,.14);
  --sh-xl: 0 28px 60px rgba(24,24,27,.18);

  --ease: cubic-bezier(.2,.7,.2,1);
  --sidebar-w: 264px;
  --header-h: 64px;
  --content-max: 1080px;
}

/* ----- Dark theme overrides ----- */

[data-theme="dark"] {
  --bg:          #131316;
  --bg-muted:    #1E1E22;
  --bg-soft:     #1A1A1D;
  --card:        #1C1C20;
  --border:      #2A2A2F;
  --border-2:    #33333A;
  --border-strong: #45454D;

  --fg:          #ECECEE;
  --fg-2:        #A8A8B0;
  --fg-3:        #71717A;

  --primary-soft: rgba(43,107,217,.18);
  --sh-sm: 0 1px 2px rgba(0,0,0,.4);
  --sh-md: 0 4px 18px rgba(0,0,0,.45);
  --sh-lg: 0 18px 40px rgba(0,0,0,.55);
  --sh-xl: 0 28px 60px rgba(0,0,0,.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-muted);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

h1,h2,h3,h4 { letter-spacing: -0.02em; line-height: 1.15; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

.eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--blue);
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

/* ============================================================
   APP SHELL
   ============================================================ */

.app { display: flex; min-height: 100vh; }

/* ---------- Sidebar ---------- */

.sidebar {
  width: var(--sidebar-w); flex-shrink: 0; background: var(--side);
  border-right: 1px solid var(--side-border);
  display: flex; flex-direction: column;
  position: fixed; top: 0; bottom: 0; left: 0; z-index: 50;
}

.side-brand {
  display: flex; align-items: center; gap: 12px; padding: 22px 22px 20px;
}

.side-brand .mark {
  width: 34px; height: 34px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

.side-brand .mark svg { width: 100%; height: auto; }

.side-brand .bn { display: flex; flex-direction: column; line-height: 1.1; }

.side-brand .bn .t { font-weight: 700; font-size: 15px; color: #fff; letter-spacing: -0.01em; }

.side-brand .bn .s { font-size: 11px; color: var(--side-fg-2); font-weight: 500; letter-spacing: .02em; }

.side-nav { padding: 8px 14px; display: flex; flex-direction: column; gap: 3px; }

.side-nav .lbl {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--side-fg-2); padding: 14px 12px 7px;
}

.nav-item {
  display: flex; align-items: center; gap: 12px; padding: 11px 12px;
  border-radius: var(--r-sm); color: var(--side-fg-2); font-size: 14.5px; font-weight: 500;
  transition: background var(--ease) .16s, color var(--ease) .16s; width: 100%; text-align: left;
}

.nav-item svg { width: 19px; height: 19px; flex-shrink: 0; }

.nav-item:hover { background: var(--side-hover); color: var(--side-fg); }

.nav-item.active { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(43,107,217,.4); }

.nav-item .nav-badge {
  margin-left: auto; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: var(--r-pill);
  background: rgba(212,160,23,.16); color: var(--gold); border: 1px solid rgba(212,160,23,.35);
}

.side-spacer { flex: 1; }

/* upgrade cta in sidebar */

.side-upgrade {
  margin: 14px; padding: 16px; border-radius: var(--r-md);
  background: linear-gradient(150deg, #1f2d4a, #18181b);
  border: 1px solid var(--side-border); position: relative; overflow: hidden;
}

.side-upgrade::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(212,160,23,.2), transparent 70%);
}

.side-upgrade .crown {
  width: 34px; height: 34px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  background: rgba(212,160,23,.14); border: 1px solid rgba(212,160,23,.32); margin-bottom: 11px;
}

.side-upgrade .crown svg { width: 18px; height: 18px; color: var(--gold); }

.side-upgrade h4 { font-size: 14px; color: #fff; margin-bottom: 4px; position: relative; }

.side-upgrade p { font-size: 12px; color: var(--side-fg-2); line-height: 1.45; margin-bottom: 13px; position: relative; }

.btn-upgrade {
  display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%;
  background: var(--blue); color: #fff; font-weight: 600; font-size: 13px;
  padding: 10px; border-radius: var(--r-sm); transition: background var(--ease) .16s, transform var(--ease) .16s;
  position: relative;
}

.btn-upgrade svg { width: 15px; height: 15px; }

.btn-upgrade:hover { background: var(--blue-hover); transform: translateY(-1px); }

/* user mini */

.side-user {
  display: flex; align-items: center; gap: 11px; padding: 14px 18px;
  border-top: 1px solid var(--side-border);
}

.side-user .av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; text-decoration: none;
}

.side-user .ui { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; text-decoration: none; }

.side-user .ui .n { font-size: 13.5px; font-weight: 600; color: var(--side-fg); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.side-user .ui .pl { font-size: 11.5px; color: var(--side-fg-2); }

.side-user .cog { color: var(--side-fg-2); display: flex; background: none; border: 0; padding: 0; cursor: pointer; transition: color var(--ease) .16s; }

.side-user .cog:not(.logout) { margin-left: auto; }

.side-user .cog.logout { margin-left: 10px; }

.side-user .cog:hover { color: var(--side-fg); }

.side-user .cog.logout:hover { color: var(--red); }

.side-user .cog svg { width: 17px; height: 17px; }

/* ---------- Main ---------- */

.main { flex: 1; margin-left: var(--sidebar-w); min-width: 0; display: flex; flex-direction: column; }

.topbar {
  height: var(--header-h); background: rgba(255,255,255,.85); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 16px; padding: 0 30px;
}

.topbar .menu-btn { display: none; color: var(--fg); }

.topbar .menu-btn svg { width: 22px; height: 22px; }

.topbar .crumb { font-size: 14px; font-weight: 600; color: var(--fg); }

.topbar .crumb .sep { color: var(--fg-3); margin: 0 8px; font-weight: 400; }

.topbar .crumb .cur { color: var(--fg-3); font-weight: 500; }

.topbar .tb-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.topbar .icon-btn {
  width: 38px; height: 38px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: var(--fg-2); transition: background var(--ease) .16s; position: relative;
}

.topbar .icon-btn:hover { background: var(--bg-muted); }

.topbar .icon-btn svg { width: 19px; height: 19px; }

.topbar .icon-btn .dot { position: absolute; top: 9px; right: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); border: 2px solid #fff; }

.btn-upgrade-sm {
  display: inline-flex; align-items: center; gap: 7px; background: var(--blue); color: #fff;
  font-weight: 600; font-size: 13px; padding: 9px 16px; border-radius: var(--r-sm);
  transition: background var(--ease) .16s, transform var(--ease) .16s;
}

.tb-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; text-decoration: none; cursor: pointer;
  transition: transform var(--ease) .16s, box-shadow var(--ease) .16s;
}

.tb-avatar:hover { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,0,0,.18); }

.tb-avatar-img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }

.btn-upgrade-sm svg { width: 15px; height: 15px; }

.btn-upgrade-sm:hover { background: var(--blue-hover); transform: translateY(-1px); }

.content { padding: 38px 30px 60px; }

.wrap { max-width: var(--content-max); margin: 0 auto; }

/* view switching */

.view { display: none; }

.view.active { display: block; }

/* ============================================================
   BLOCK 1 — Welcome
   ============================================================ */

.welcome { margin-bottom: 30px; }

.welcome h1 { font-size: 28px; font-weight: 700; color: var(--fg); margin-bottom: 6px; }

.welcome p { font-size: 15.5px; color: var(--fg-2); }

/* section heading shared */

.sec-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; }

.sec-head h2 { font-size: 18px; font-weight: 700; color: var(--fg); }

.sec-head h2.semi { font-weight: 600; }

.sec-head .sub { font-size: 13.5px; color: var(--fg-3); }

.sec-head .more { margin-left: auto; font-size: 13px; color: var(--blue); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

.sec-head .more svg { width: 14px; height: 14px; transition: transform var(--ease) .16s; }

.sec-head .more:hover svg { transform: translateX(3px); }

.section { margin-bottom: 40px; }

/* ============================================================
   BLOCK 2 — Próxima Live hero
   ============================================================ */

.live-hero {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 0;
  background: var(--card); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-md); border: 1px solid var(--border);
  transition: box-shadow var(--ease) .2s;
}

.live-hero:hover { box-shadow: var(--sh-lg); }

.live-thumb {
  position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, #18181B 0%, #1A2D4D 55%, #2B6BD9 100%);
  display: flex; align-items: center; justify-content: center;
}

.live-thumb .mark-watermark {
  position: absolute; right: -20px; bottom: -24px; width: 200px; opacity: .12;
}

.live-thumb .mark-watermark svg { width: 100%; }

.live-thumb .play {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px); border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center; transition: transform var(--ease) .2s, background var(--ease) .2s;
}

.live-thumb .play svg { width: 28px; height: 28px; color: #fff; margin-left: 4px; }

.live-hero:hover .live-thumb .play { transform: scale(1.08); background: rgba(255,255,255,.26); }

.live-thumb .badges { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; }

.badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; padding: 6px 12px; border-radius: var(--r-pill);
}

.badge-live { background: var(--red); color: #fff; }

.badge-live .pdot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse-live 1.4s ease-in-out infinite; }

.badge-new { background: var(--gold); color: #3d2c00; }

.live-thumb .dur {
  position: absolute; bottom: 14px; right: 14px; font-size: 12px; font-weight: 600; color: #fff;
  background: rgba(0,0,0,.6); padding: 4px 9px; border-radius: var(--r-sm); font-family: var(--mono);
}

@keyframes pulse-live { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.live-info { padding: 30px 32px; display: flex; flex-direction: column; }

.live-info .eyebrow { margin-bottom: 12px; }

.live-info h3 { font-size: 23px; font-weight: 700; color: var(--fg); line-height: 1.2; margin-bottom: 16px; }

.live-meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }

.live-meta .row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-2); }

.live-meta .row svg { width: 16px; height: 16px; color: var(--fg-3); flex-shrink: 0; }

.live-meta .row b { color: var(--fg); font-weight: 600; }

.live-actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600;
  font-size: 14px; padding: 12px 20px; border-radius: var(--r-sm); transition: all var(--ease) .18s; white-space: nowrap;
}

.btn svg { width: 17px; height: 17px; }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(43,107,217,.3); }

.btn-primary:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(43,107,217,.4); }

.btn-ghost { background: var(--bg-muted); color: var(--fg); border: 1px solid var(--border-2); }

.btn-ghost:hover { background: #ECECEE; border-color: var(--border-strong); }

/* ============================================================
   BLOCK 3 — Stories
   ============================================================ */

.stories-rail {
  display: flex; gap: 18px; overflow-x: auto; padding: 6px 2px 14px;
  scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none;
}

.stories-rail::-webkit-scrollbar { display: none; }

.story {
  display: flex; flex-direction: column; align-items: center; gap: 9px; flex-shrink: 0;
  width: 84px; scroll-snap-align: start; background: none;
}

.story .ring {
  width: 76px; height: 76px; border-radius: 50%; padding: 3px;
  background: linear-gradient(135deg, var(--gold), #E8C063);
  transition: transform var(--ease) .18s, box-shadow var(--ease) .18s;
}

.story .ring.watched { background: var(--border-2); }

.story .av {
  width: 100%; height: 100%; border-radius: 50%; background: var(--bg-muted);
  border: 3px solid var(--bg-muted); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 22px; color: var(--fg-2); overflow: hidden;
}

.story:hover .ring { transform: scale(1.06); box-shadow: 0 6px 18px rgba(212,160,23,.4); }

.story .nm { font-size: 12px; font-weight: 500; color: var(--fg-2); text-align: center; line-height: 1.2; max-width: 84px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============================================================
   BLOCK 4 — Video library
   ============================================================ */

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.video-card {
  background: var(--card); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--sh-sm); transition: transform var(--ease) .2s, box-shadow var(--ease) .2s; cursor: pointer;
}

.video-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

.video-thumb {
  position: relative; aspect-ratio: 16/9; background: var(--bg-muted);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}

.video-thumb.g1 { background: linear-gradient(135deg, #1A2D4D, #2B6BD9); }

.video-thumb.g2 { background: linear-gradient(135deg, #18181B, #3B4FD9); }

.video-thumb.g3 { background: linear-gradient(135deg, #202840, #1F51B3); }

.video-thumb .play-sm {
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px); border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center; transition: transform var(--ease) .2s, background var(--ease) .2s;
}

.video-thumb .play-sm svg { width: 20px; height: 20px; color: #fff; margin-left: 3px; }

.video-card:hover .play-sm { transform: scale(1.1); background: rgba(255,255,255,.26); }

.video-thumb .dur {
  position: absolute; bottom: 10px; right: 10px; font-size: 11.5px; font-weight: 600; color: #fff;
  background: rgba(0,0,0,.6); padding: 3px 7px; border-radius: 6px; font-family: var(--mono);
}

.video-body { padding: 16px 18px 18px; }

.video-body .tag {
  display: inline-block; font-size: 11px; font-weight: 600; color: var(--blue);
  background: var(--primary-soft, #E8F0FC); padding: 4px 10px; border-radius: var(--r-pill); margin-bottom: 11px;
}

.video-body h4 { font-size: 15.5px; font-weight: 600; color: var(--fg); line-height: 1.35; }

/* ============================================================
   BLOCK 5 — Evolution banner
   ============================================================ */

.evo-banner {
  position: relative; overflow: hidden; border-radius: var(--r-xl); padding: 40px 44px;
  background: linear-gradient(120deg, #18181B 0%, #1A2440 45%, #1F3463 100%);
  display: grid; grid-template-columns: 1.18fr 0.92fr; gap: 44px; align-items: center;
  min-height: 360px;
}

.evo-lines { position: absolute; inset: 0; pointer-events: none; opacity: .5; }

.evo-lines::before, .evo-lines::after {
  content: ""; position: absolute; border-radius: 50%;
}

.evo-lines::before {
  right: -120px; top: -120px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,160,23,.16), transparent 70%);
}

.evo-lines::after {
  left: 30%; bottom: -160px; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(43,107,217,.22), transparent 70%);
}

.evo-left, .evo-content { position: relative; z-index: 2; }

.evo-crown {
  width: 48px; height: 48px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  background: rgba(212,160,23,.14); border: 1px solid rgba(212,160,23,.34); margin-bottom: 18px;
}

.evo-crown svg { width: 24px; height: 24px; color: var(--gold); }

.evo-left .eyebrow, .evo-content .eyebrow { color: var(--gold); margin-bottom: 12px; display: block; }

.evo-left h2, .evo-content h2 { font-size: 28px; font-weight: 700; color: #fff; line-height: 1.12; margin-bottom: 12px; }

.evo-left p, .evo-content p { font-size: 15px; color: #C7CBD4; line-height: 1.55; max-width: 520px; }

.evo-left p .price, .evo-content p .price { color: #fff; font-weight: 700; font-family: var(--mono); }

.evo-right { position: relative; z-index: 2; }

.evo-content .evo-benefits { margin-top: 22px; }

/* founders photo — full-height panel bleeding to the card's right edge */

.evo-photo {
  position: absolute; top: 0; right: 0; bottom: 0; z-index: 1;
  width: 46%; min-width: 340px; overflow: hidden;
}

.evo-photo img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; -o-object-position: 50% 26%; object-position: 50% 26%; display: block; }

/* left-edge fade so the photo melts into the banner gradient */

.evo-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, #18181B 0%, rgba(24,24,27,.55) 22%, rgba(24,24,27,.08) 48%, transparent 70%);
}

/* warm bottom vignette + faint gold top glow for depth */

.evo-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(0deg, rgba(15,18,28,.7) 0%, transparent 38%);
}

.evo-founders-tag {
  position: absolute; right: 22px; bottom: 20px; z-index: 3;
  display: flex; align-items: center; gap: 9px;
}

.evo-founders-tag .efn { display: flex; flex-direction: column; line-height: 1.25; text-align: right; }

.evo-founders-tag .efn .nm { font-size: 12.5px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }

.evo-founders-tag .efn .rl { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .09em; color: var(--gold); }

.evo-benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }

.evo-benefits li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: #E7E7EA; line-height: 1.4; }

.evo-benefits li .ck {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(212,160,23,.16); display: flex; align-items: center; justify-content: center;
}

.evo-benefits li .ck svg { width: 13px; height: 13px; color: var(--gold); }

.btn-evo {
  display: inline-flex; align-items: center; gap: 9px; background: var(--gold); color: #2b2000;
  font-weight: 700; font-size: 15px; padding: 15px 28px; border-radius: var(--r-sm);
  transition: transform var(--ease) .18s, box-shadow var(--ease) .18s; position: relative; overflow: hidden;
}

.btn-evo svg { width: 18px; height: 18px; }

.btn-evo::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); animation: shimmer 3.4s ease-in-out infinite;
}

@keyframes shimmer { 0% { left: -120%; } 55%,100% { left: 160%; } }

.btn-evo:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(212,160,23,.4); }

/* ============================================================
   BLOCK 6 — WhatsApp discreet
   ============================================================ */

.wa-foot { display: flex; justify-content: center; margin-top: 36px; }

.wa-link {
  display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--fg-3);
  padding: 9px 16px; border-radius: var(--r-pill); transition: background var(--ease) .16s, color var(--ease) .16s;
}

.wa-link svg { width: 17px; height: 17px; color: var(--whatsapp); }

.wa-link:hover { background: var(--bg-muted); color: var(--fg-2); }

/* ============================================================
   MODAL — story viewer
   ============================================================ */

.modal-backdrop {
  position: fixed; inset: 0; z-index: 100; background: rgba(10,10,12,.82);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; transition: opacity var(--ease) .22s;
}

.modal-backdrop.open { display: flex; opacity: 1; }

.story-modal {
  position: relative; width: min(420px, 94vw); aspect-ratio: 9/16; max-height: 88vh;
  border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(160deg, #1A2D4D, #18181B 70%); box-shadow: var(--sh-xl);
  transform: scale(.94); transition: transform var(--ease) .26s; display: flex; flex-direction: column;
}

.modal-backdrop.open .story-modal { transform: scale(1); }

.story-modal .sm-progress { position: absolute; top: 12px; left: 12px; right: 12px; height: 3px; background: rgba(255,255,255,.25); border-radius: 2px; z-index: 3; overflow: hidden; }

.story-modal .sm-progress .bar { height: 100%; width: 40%; background: #fff; border-radius: 2px; }

.story-modal .sm-head { position: absolute; top: 26px; left: 16px; right: 16px; display: flex; align-items: center; gap: 10px; z-index: 3; }

.story-modal .sm-head .av { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); color: #3d2c00; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; border: 2px solid rgba(255,255,255,.5); }

.story-modal .sm-head .who { line-height: 1.2; }

.story-modal .sm-head .who .n { font-size: 14px; font-weight: 600; color: #fff; }

.story-modal .sm-head .who .r { font-size: 12px; color: rgba(255,255,255,.7); }

.story-modal .sm-close { margin-left: auto; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.35); display: flex; align-items: center; justify-content: center; color: #fff; }

.story-modal .sm-close svg { width: 18px; height: 18px; }

.story-modal .sm-stage { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; }

.story-modal .sm-stage .play { width: 70px; height: 70px; border-radius: 50%; background: rgba(255,255,255,.16); border: 1.5px solid rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; }

.story-modal .sm-stage .play svg { width: 28px; height: 28px; color: #fff; margin-left: 4px; }

.story-modal .sm-foot { padding: 18px; background: linear-gradient(0deg, rgba(0,0,0,.55), transparent); position: relative; z-index: 3; }

.story-modal .sm-foot .cap { font-size: 13.5px; color: rgba(255,255,255,.9); line-height: 1.45; margin-bottom: 12px; }

.story-modal .sm-foot .watch {
  display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: #fff;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); padding: 10px 16px; border-radius: var(--r-sm);
  transition: background var(--ease) .16s; width: 100%; justify-content: center;
}

.story-modal .sm-foot .watch:hover { background: rgba(255,255,255,.24); }

.story-modal .sm-foot .watch svg { width: 15px; height: 15px; }

.story-modal .sm-nav { position: absolute; top: 0; bottom: 0; width: 38%; z-index: 2; }

.story-modal .sm-nav.prev { left: 0; }

.story-modal .sm-nav.next { right: 0; }

/* ============================================================
   SKETCH VIEWS — Lives & Perfil
   ============================================================ */

.page-head { margin-bottom: 26px; }

.page-head h1 { font-size: 26px; font-weight: 700; margin-bottom: 6px; }

.page-head p { font-size: 15px; color: var(--fg-2); }

.lives-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.profile-card {
  background: var(--card); border-radius: var(--r-lg); border: 1px solid var(--border);
  box-shadow: var(--sh-sm); padding: 30px; margin-bottom: 22px;
}

.profile-identity { margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }

.profile-identity .pi-name-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.profile-identity .pi-name { font-size: 22px; font-weight: 700; color: var(--fg); }

.profile-identity .pi-name.empty { color: var(--fg-3); font-style: italic; font-weight: 600; }

.profile-identity .pi-name-edit { margin-left: auto; }

.profile-identity .pi-login-email { display: flex; flex-direction: column; gap: 2px; margin-top: 12px; }

.profile-identity .pi-login-label { font-size: 12px; font-weight: 600; color: var(--fg-3); }

.profile-identity .pi-login-value { font-size: 14.5px; color: var(--fg); }

.profile-identity .pi-edit label { display: block; font-size: 12px; font-weight: 600; color: var(--fg-3); margin-bottom: 6px; }

.profile-identity .pi-edit input { width: 100%; max-width: 420px; font-size: 14.5px; color: var(--fg); padding: 11px 14px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-sm); }

.profile-identity .pi-edit .form-actions { margin-top: 14px; }

.profile-top { display: flex; align-items: center; gap: 20px; margin-bottom: 26px; }

.profile-top .av { width: 76px; height: 76px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 30px; flex-shrink: 0; }

.profile-top .pinfo h2 { font-size: 22px; font-weight: 700; }

.profile-top .pinfo .role { font-size: 14px; color: var(--fg-2); margin-top: 2px; }

.profile-top .pinfo .plan-chip { display: inline-flex; align-items: center; gap: 6px; margin-top: 9px; font-size: 12px; font-weight: 600; color: var(--fg-2); background: var(--bg-muted); border: 1px solid var(--border-2); padding: 4px 11px; border-radius: var(--r-pill); }

.profile-top .pinfo .plan-chip .d { width: 7px; height: 7px; border-radius: 50%; background: var(--fg-3); }

.profile-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.pfield label { display: block; font-size: 12px; font-weight: 600; color: var(--fg-3); margin-bottom: 6px; }

.pfield .val { font-size: 14.5px; color: var(--fg); padding: 11px 14px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-sm); }

/* Story P0-22 — redes sociais: ícone no rótulo + link clicável */

.pfield label svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 5px; }

.pfield .val .social-link { color: var(--blue); text-decoration: none; word-break: break-all; }

.pfield .val .social-link:hover { text-decoration: underline; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px; }

.stat {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--sh-sm);
}

.stat .num { font-family: var(--mono); font-size: 30px; font-weight: 700; color: var(--fg); letter-spacing: -0.02em; }

.stat .lbl { font-size: 13px; color: var(--fg-2); margin-top: 4px; }

/* ============================================================
   LIVES (enriquecida)
   ============================================================ */

.page-head.with-action { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.next-live-strip {
  display: grid; grid-template-columns: 200px 1fr auto; gap: 22px; align-items: center;
  background: linear-gradient(120deg, #18181B, #1A2440 60%, #1F3463); color: #fff;
  border-radius: var(--r-xl); padding: 20px; margin-bottom: 30px; position: relative; overflow: hidden;
}

.next-live-strip .nls-thumb {
  position: relative; aspect-ratio: 16/10; border-radius: var(--r-md); overflow: hidden;
  background: linear-gradient(135deg, #1A2D4D, #2B6BD9); display: flex; align-items: center; justify-content: center;
}

.next-live-strip .nls-thumb .play { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.45); display: flex; align-items: center; justify-content: center; }

.next-live-strip .nls-thumb .play svg { width: 19px; height: 19px; color: #fff; margin-left: 3px; }

.next-live-strip .nls-info .eyebrow { color: var(--gold); margin-bottom: 8px; display: block; }

.next-live-strip .nls-info h3 { font-size: 19px; font-weight: 700; line-height: 1.2; margin-bottom: 10px; }

.next-live-strip .nls-info .meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #C7CBD4; }

.next-live-strip .nls-info .meta span { display: inline-flex; align-items: center; gap: 6px; }

.next-live-strip .nls-info .meta svg { width: 14px; height: 14px; color: #9AA3B4; }

.next-live-strip .nls-cta { display: flex; flex-direction: column; gap: 9px; }

.next-live-strip .badge-live { align-self: flex-start; }

.filter-chips { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 22px; }

.fchip {
  font-size: 13px; font-weight: 500; color: var(--fg-2); background: var(--card);
  border: 1px solid var(--border-2); border-radius: var(--r-pill); padding: 8px 15px;
  transition: all var(--ease) .16s;
}

.fchip:hover { border-color: var(--border-strong); color: var(--fg); }

.fchip.active { background: var(--black); color: #fff; border-color: var(--black); }

/* richer live card meta */

.video-card .vc-meta { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 12.5px; color: var(--fg-3); }

.video-card .vc-meta .av { width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; }

/* ============================================================
   PERFIL (enriquecido)
   ============================================================ */

.profile-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }

.profile-col { display: flex; flex-direction: column; gap: 22px; }

.section-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); padding: 26px;
}

.section-card .sc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }

.section-card .sc-head h3 { font-size: 16px; font-weight: 700; }

.btn-edit {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--blue);
  padding: 7px 13px; border-radius: var(--r-sm); border: 1px solid var(--border-2); transition: all var(--ease) .16s;
}

.btn-edit svg { width: 14px; height: 14px; }

.btn-edit:hover { background: var(--primary-soft, #E8F0FC); border-color: var(--blue); }

/* activity timeline */

.activity { display: flex; flex-direction: column; gap: 2px; }

.act-item { display: flex; gap: 14px; padding: 12px 0; }

.act-item .ai-icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; background: var(--bg-muted);
  display: flex; align-items: center; justify-content: center; color: var(--fg-2);
}

.act-item .ai-icon svg { width: 17px; height: 17px; }

.act-item .ai-icon.blue { background: var(--primary-soft, #E8F0FC); color: var(--blue); }

.act-item .ai-icon.gold { background: rgba(212,160,23,.14); color: var(--gold-deep); }

.act-item .ai-body { flex: 1; }

.act-item .ai-body .t { font-size: 14px; color: var(--fg); line-height: 1.4; }

.act-item .ai-body .t b { font-weight: 600; }

.act-item .ai-body .when { font-size: 12px; color: var(--fg-3); margin-top: 2px; }

/* badges / achievements */

.badge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.ach {
  display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: var(--r-md);
  background: var(--bg-soft); border: 1px solid var(--border);
}

.ach.locked { opacity: .5; }

.ach .ac-ic { width: 40px; height: 40px; border-radius: var(--r-sm); flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(212,160,23,.14); border: 1px solid rgba(212,160,23,.3); }

.ach .ac-ic svg { width: 20px; height: 20px; color: var(--gold-deep); }

.ach.locked .ac-ic { background: var(--bg-muted); border-color: var(--border-2); }

.ach.locked .ac-ic svg { color: var(--fg-3); }

.ach .ac-t { font-size: 13.5px; font-weight: 600; color: var(--fg); line-height: 1.25; }

.ach .ac-s { font-size: 12px; color: var(--fg-3); margin-top: 1px; }

/* preferences toggles */

.pref-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-top: 1px solid var(--border); }

.pref-row:first-child { border-top: none; }

.pref-row .pr-label { font-size: 14px; color: var(--fg); }

.pref-row .pr-sub { font-size: 12.5px; color: var(--fg-3); margin-top: 2px; }

.switch { width: 42px; height: 24px; border-radius: var(--r-pill); background: var(--border-2); position: relative; transition: background var(--ease) .18s; flex-shrink: 0; }

.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: var(--sh-sm); transition: transform var(--ease) .18s; }

.switch.on { background: var(--blue); }

.switch.on::after { transform: translateX(18px); }

/* upgrade prompt card in profile */

.profile-upgrade {
  background: linear-gradient(150deg, #18181B, #1A2440 70%); color: #fff;
  border-radius: var(--r-lg); padding: 24px; position: relative; overflow: hidden;
}

.profile-upgrade .pu-crown { width: 40px; height: 40px; border-radius: var(--r-sm); background: rgba(212,160,23,.14); border: 1px solid rgba(212,160,23,.32); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }

.profile-upgrade .pu-crown svg { width: 20px; height: 20px; color: var(--gold); }

.profile-upgrade h3 { font-size: 17px; color: #fff; margin-bottom: 7px; }

.profile-upgrade p { font-size: 13.5px; color: #C7CBD4; line-height: 1.5; margin-bottom: 16px; }

.profile-upgrade .btn-evo { font-size: 14px; padding: 12px 20px; }

/* ============================================================
   CHECKOUT — Plano Evolução
   ============================================================ */

.checkout-back {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600;
  color: var(--fg-2); margin-bottom: 20px; transition: color var(--ease) .16s;
}

.checkout-back svg { width: 16px; height: 16px; transition: transform var(--ease) .16s; }

.checkout-back:hover { color: var(--fg); }

.checkout-back:hover svg { transform: translateX(-3px); }

.checkout-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: start; }

/* ----- left: plan value ----- */

.plan-value {
  position: relative; overflow: hidden; border-radius: var(--r-xl); padding: 34px 34px 30px;
  background: linear-gradient(150deg, #18181B 0%, #1A2440 50%, #1F3463 100%); color: #fff;
}

.plan-value .evo-lines { opacity: .6; }

.plan-value .pv-crown {
  width: 50px; height: 50px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  background: rgba(212,160,23,.14); border: 1px solid rgba(212,160,23,.34); margin-bottom: 18px; position: relative;
}

.plan-value .pv-crown svg { width: 25px; height: 25px; color: var(--gold); }

.plan-value .eyebrow { color: var(--gold); display: block; margin-bottom: 10px; position: relative; }

.plan-value h2 { font-size: 26px; font-weight: 700; line-height: 1.15; margin-bottom: 10px; position: relative; }

.plan-value .pv-sub { font-size: 14.5px; color: #C7CBD4; line-height: 1.55; margin-bottom: 26px; position: relative; max-width: 420px; }

.pv-benefits { list-style: none; display: flex; flex-direction: column; gap: 15px; position: relative; }

.pv-benefits li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: #E7E7EA; line-height: 1.4; }

.pv-benefits li .ck { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; background: rgba(212,160,23,.16); display: flex; align-items: center; justify-content: center; }

.pv-benefits li .ck svg { width: 14px; height: 14px; color: var(--gold); }

.pv-benefits li b { color: #fff; font-weight: 600; }

.pv-divider { height: 1px; background: rgba(255,255,255,.1); margin: 26px 0; position: relative; }

.pv-compare { position: relative; display: flex; align-items: center; gap: 14px; font-size: 13px; color: #9AA3B4; }

.pv-compare .from { text-decoration: line-through; }

.pv-compare svg { width: 16px; height: 16px; color: var(--gold); }

.pv-compare b { color: #fff; font-weight: 600; }

/* ----- right: order + payment ----- */

.order-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--sh-md); padding: 28px; position: sticky; top: 88px;
}

.order-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; }

.billing-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: var(--bg-muted);
  border: 1px solid var(--border); border-radius: var(--r-md); padding: 5px; margin-bottom: 22px;
}

.billing-toggle button {
  position: relative; padding: 10px 8px; border-radius: var(--r-sm); font-size: 13.5px; font-weight: 600;
  color: var(--fg-2); transition: background var(--ease) .18s, color var(--ease) .18s; line-height: 1.2;
}

.billing-toggle button .save {
  display: block; font-size: 10.5px; font-weight: 700; color: var(--gold-deep); margin-top: 2px;
}

.billing-toggle button.active { background: var(--card); color: var(--fg); box-shadow: var(--sh-sm); }

.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }

.price-row .amount { font-family: var(--mono); font-size: 40px; font-weight: 700; color: var(--fg); letter-spacing: -0.03em; }

.price-row .per { font-size: 14px; color: var(--fg-3); }

.price-note { font-size: 13px; color: var(--fg-3); margin-bottom: 22px; }

.price-note b { color: var(--gold-deep); font-weight: 600; }

.pay-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }

.pay-field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--fg-2); margin-bottom: 6px; }

.pay-input-wrap { position: relative; display: flex; align-items: center; }

.pay-input-wrap svg { position: absolute; left: 13px; width: 17px; height: 17px; color: var(--fg-3); pointer-events: none; }

.pay-field input {
  width: 100%; font-family: inherit; font-size: 14.5px; color: var(--fg);
  border: 1.5px solid var(--border-2); border-radius: var(--r-sm); padding: 12px 13px 12px 40px; background: var(--bg-soft);
  transition: border-color var(--ease) .14s, box-shadow var(--ease) .14s, background var(--ease) .14s;
}

.pay-field input::-moz-placeholder { color: #b6bcc7; }

.pay-field input::placeholder { color: #b6bcc7; }

.pay-field input:focus { outline: none; border-color: var(--blue); background: var(--card); box-shadow: 0 0 0 3px rgba(43,107,217,.14); }

.pay-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.summary-line { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--fg-2); padding: 13px 0; border-top: 1px solid var(--border); }

.summary-line.total { font-size: 16px; font-weight: 700; color: var(--fg); }

.summary-line.total .v { font-family: var(--mono); }

.btn-confirm {
  display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; margin-top: 18px;
  background: var(--gold); color: #2b2000; font-weight: 700; font-size: 15px; padding: 15px; border-radius: var(--r-sm);
  transition: transform var(--ease) .18s, box-shadow var(--ease) .18s;
}

.btn-confirm svg { width: 18px; height: 18px; }

.btn-confirm:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212,160,23,.4); }

.secure-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12px; color: var(--fg-3); margin-top: 14px; }

.secure-note svg { width: 13px; height: 13px; }

/* Garantia / reversão de risco (Story P0-25) — selo + texto discreto e
   confiável, próximo ao CTA de compra. Texto vem de app_settings (fallback demo). */

.checkout-guarantee {
  display: flex; align-items: flex-start; gap: 9px; margin-top: 16px;
  padding: 12px 14px; border-radius: var(--r-sm);
  background: rgba(34, 197, 94, .08); border: 1px solid rgba(34, 197, 94, .22);
  font-size: 13px; line-height: 1.45; color: var(--fg-2);
}

.checkout-guarantee svg { flex-shrink: 0; width: 18px; height: 18px; color: #22c55e; margin-top: 1px; }

/* Prova social / depoimentos (Story P0-26) — grid de cards de case, perto dos
   blocos de venda da home. Conteúdo via app_settings (testimonials_json) com
   fallback DEMO. Avatar cai nas iniciais quando sem foto. */

.testimonials-section h2 { margin: 6px 0 18px; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}

.testimonial-card {
  display: flex; flex-direction: column; gap: 12px; margin: 0;
  padding: 22px 22px 20px; border-radius: var(--r-md);
  background: var(--card); border: 1px solid var(--border);
}

.tc-quote-icon { width: 22px; height: 22px; color: var(--gold); opacity: .8; }

.tc-quote {
  margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--fg-2);
  flex: 1;
}

.tc-person { display: flex; align-items: center; gap: 11px; margin-top: 4px; }

.tc-avatar {
  width: 42px; height: 42px; border-radius: 50%; -o-object-fit: cover; object-fit: cover;
  flex-shrink: 0; background: var(--bg-2);
}

.tc-avatar-initials {
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: var(--gold);
  background: rgba(212,160,23,.14); border: 1px solid rgba(212,160,23,.28);
}

.tc-meta { display: flex; flex-direction: column; min-width: 0; }

.tc-name { font-weight: 700; font-size: 14px; }

.tc-role { font-size: 12.5px; color: var(--fg-3); }

@media (max-width: 1100px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* CTA de envio de depoimento (Story P0-34) — lugar estratégico na prova social. */

.tc-submit-cta {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap; margin-top: 20px; padding-top: 18px;
  border-top: 1px dashed var(--border); color: var(--fg-2); font-size: 14.5px;
}

/* Modal de envio (Story P0-34). */

.tsm-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  z-index: 50; padding: 16px;
}

.tsm-card { max-width: 520px; width: 100%; }

.tsm-form { display: grid; gap: 12px; margin-top: 8px; }

.tsm-row { display: flex; gap: 10px; flex-wrap: wrap; }

.tsm-row .tsm-label { flex: 1; min-width: 150px; }

.tsm-label { display: grid; gap: 4px; }

.tsm-label > span { font-size: 13px; color: var(--fg-2); font-weight: 600; }

.tsm-label input, .tsm-label textarea {
  width: 100%; padding: 10px 12px; border-radius: var(--r-md, 8px);
  border: 1px solid var(--border); background: var(--card); color: inherit;
  font: inherit; resize: vertical;
}

.tsm-sent {
  display: flex; align-items: flex-start; gap: 8px; margin: 10px 0 0;
  color: var(--fg); font-size: 14.5px; line-height: 1.5;
}

.tsm-sent svg { color: var(--green, #16a34a); flex-shrink: 0; margin-top: 2px; }

/* Quem está aqui (Story P0-27) — sinal de composição da comunidade: avatares
   sobrepostos + contagem + copy de posicionamento. Visível a todos os tiers. */

.community-snapshot h2 { margin: 6px 0 18px; }

.cs-body { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.cs-avatars { display: flex; align-items: center; }

.cs-avatar {
  width: 48px; height: 48px; border-radius: 50%; -o-object-fit: cover; object-fit: cover;
  flex-shrink: 0; background: var(--bg-2);
  border: 2px solid var(--card); margin-left: -12px;
}

.cs-avatars .cs-avatar:first-child { margin-left: 0; }

.cs-avatar-initials {
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--gold);
  background: rgba(212,160,23,.14);
}

.cs-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }

.cs-count {
  display: flex; align-items: center; gap: 8px; margin: 0;
  font-size: 15px; color: var(--fg-2);
}

.cs-count strong { font-size: 18px; color: var(--fg); }

.cs-count-icon { width: 18px; height: 18px; color: var(--gold); }

.cs-copy { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--fg-3); }

@media (max-width: 640px) {
  .cs-body { gap: 14px; }
  .cs-avatar { width: 40px; height: 40px; }
}

/* Reativação do membro que volta (Story P0-32) — banner dispensável apontando
   o acervo on-demand. Só pagantes (gating no InicioCommunidadePage). */

.reativacao-banner {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 16px 18px; margin-bottom: 26px; border-radius: var(--r-md);
  background: var(--card); border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
}

.reativacao-banner .rb-ic { display: flex; flex-shrink: 0; color: var(--gold); }

.reativacao-banner .rb-ic svg { width: 20px; height: 20px; }

.reativacao-banner .rb-text { flex: 1; min-width: 200px; }

.reativacao-banner .rb-title { margin: 0; font-size: 15px; font-weight: 700; }

.reativacao-banner .rb-sub { margin: 2px 0 0; font-size: 13.5px; color: var(--fg-2); }

.reativacao-banner .rb-cta {
  flex-shrink: 0; padding: 8px 16px; border-radius: var(--r-sm);
  background: var(--gold); color: #3d2c00; font-weight: 700; font-size: 13.5px;
}

.reativacao-banner .rb-dismiss {
  flex-shrink: 0; background: none; border: none; cursor: pointer;
  color: var(--fg-3); display: flex; padding: 4px;
}

.reativacao-banner .rb-dismiss svg { width: 16px; height: 16px; }

/* Destaques da semana (quick win #6) — top 3 do leaderboard semanal na home. */

.weekly-highlight .wkh-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; margin-bottom: 14px;
}

.weekly-highlight .wkh-head h2 {
  display: flex; align-items: center; gap: 8px; margin: 0;
}

.weekly-highlight .wkh-head h2 svg { width: 20px; height: 20px; color: var(--gold); }

.wkh-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  list-style: none; margin: 0; padding: 0;
}

.wkh-item {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
  border-radius: var(--r-md); background: var(--card);
  border: 1px solid var(--border); min-width: 0;
}

.wkh-rank { font-family: var(--mono); font-weight: 700; font-size: 15px; color: var(--gold); flex-shrink: 0; }

.wkh-avatar {
  width: 36px; height: 36px; border-radius: 50%; -o-object-fit: cover; object-fit: cover;
  flex-shrink: 0; background: var(--bg-2);
}

.wkh-avatar-initials {
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--gold);
  background: rgba(212,160,23,.14);
}

.wkh-name { flex: 1; min-width: 0; font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.wkh-points { font-family: var(--mono); font-size: 13px; color: var(--fg-2); flex-shrink: 0; }

@media (max-width: 760px) {
  .wkh-list { grid-template-columns: 1fr; }
}

/* Nota do acervo on-demand na home (quick win #10) — descoberta do benefício. */

.acervo-note { margin: 14px 0 0; font-size: 13.5px; color: var(--fg-2); }

.acervo-note a { color: var(--gold-deep, var(--gold)); font-weight: 600; text-decoration: underline; }

/* Badge de garantia nos banners de venda (Story P1-1) — reversão de risco
   ANTES do checkout (mesma garantia da P0-25). */

.banner-garantia {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  font-size: 13px; color: rgba(255,255,255,.85);
}

.banner-garantia svg { width: 15px; height: 15px; color: #4ade80; flex-shrink: 0; }

/* Recomendação por desafio (cross-sell contextual) — tom de dica, dado do
   perfil (main_challenge) que estava inerte. */

.desafio-card .dc-inner {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 18px 20px; border-radius: var(--r-md);
  background: var(--card); border: 1px solid var(--border);
}

.desafio-card .dc-ic { display: flex; flex-shrink: 0; color: var(--gold); }

.desafio-card .dc-ic svg { width: 22px; height: 22px; }

.desafio-card .dc-text { flex: 1; min-width: 240px; }

.desafio-card .dc-eyebrow {
  margin: 0; font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--fg-3);
}

.desafio-card .dc-title { margin: 2px 0 4px; font-size: 15px; font-weight: 700; }

.desafio-card .dc-reason { margin: 0; font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }

.desafio-card .dc-cta {
  display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
  font-weight: 700; font-size: 13.5px; color: var(--gold-deep, var(--gold));
}

.desafio-card .dc-cta svg { width: 15px; height: 15px; }

/* Micro-CTA de primeiro passo no lugar do upsell (Story P1-2) — tom de
   orientação, não de venda. */

.primeiro-passo-banner {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 18px 20px; border-radius: var(--r-md);
  background: var(--card); border: 1px dashed var(--border-strong);
}

.primeiro-passo-banner .pp-ic { display: flex; flex-shrink: 0; color: var(--gold); }

.primeiro-passo-banner .pp-ic svg { width: 22px; height: 22px; }

.primeiro-passo-banner .pp-text { flex: 1; min-width: 220px; }

.primeiro-passo-banner .pp-title { margin: 0; font-size: 15px; font-weight: 700; }

.primeiro-passo-banner .pp-sub { margin: 2px 0 0; font-size: 13.5px; color: var(--fg-2); }

.primeiro-passo-banner .pp-cta {
  flex-shrink: 0; font-weight: 700; font-size: 13.5px;
  color: var(--gold-deep, var(--gold));
}

/* Sua Evolução (Story P0-28) — progresso pessoal na home (REUSE de .stat-row
   da gamificação). Só para pagantes (gating no InicioCommunidadePage). */

.progress-snapshot h2 { margin: 6px 0 18px; }

.progress-snapshot .stat-row { margin-bottom: 0; }

/* Estado-zero (Story P0-30): convite de ação em vez de "0/0/0" no dia 1. */

.ps-empty {
  margin: 0; padding: 8px 0 2px; max-width: 560px;
  font-size: 15px; line-height: 1.55; color: var(--fg-2);
}

/* Vetor de movimento (Story P1-3): delta semanal + próxima conquista. */

.ps-delta {
  display: block; margin-top: 4px;
  font-size: 0.8125rem; font-weight: 500; color: var(--green, #1a7f4e);
}

.ps-next-badge {
  margin: 8px 0 0; font-size: 0.875rem; color: var(--fg-2);
}

/* Leaderboard — estado vazio por tier (Story P1-4). */

.lb-empty {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px; text-align: center; color: var(--fg-2);
}

.lb-empty p { margin: 0; }

.lb-not-ranked { margin-top: 14px; font-size: 13.5px; text-align: center; }

/* ============================================================
   ADMIN — gestão de conteúdo
   ============================================================ */

.admin-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--gold); background: rgba(212,160,23,.14);
  border: 1px solid rgba(212,160,23,.32); padding: 3px 9px; border-radius: var(--r-pill); margin-left: 8px;
}

.admin-tabs { display: flex; gap: 4px; background: var(--bg-muted); border: 1px solid var(--border); border-radius: var(--r-md); padding: 5px; margin-bottom: 26px; width: -moz-fit-content; width: fit-content; }

.admin-tabs button { padding: 9px 18px; border-radius: var(--r-sm); font-size: 13.5px; font-weight: 600; color: var(--fg-2); transition: all var(--ease) .16s; }

.admin-tabs button.active { background: var(--card); color: var(--fg); box-shadow: var(--sh-sm); }

.admin-tabpane { display: none; }

.admin-tabpane.active { display: block; }

.admin-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 24px; align-items: start; }

/* upload form card */

.admin-form {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); padding: 26px; position: sticky; top: 88px;
}

.admin-form h3 { font-size: 16px; font-weight: 700; margin-bottom: 18px; }

.afield { margin-bottom: 16px; }

.afield label { display: block; font-size: 12.5px; font-weight: 600; color: var(--fg-2); margin-bottom: 6px; }

.afield input, .afield select {
  width: 100%; font-family: inherit; font-size: 14px; color: var(--fg);
  border: 1.5px solid var(--border-2); border-radius: var(--r-sm); padding: 11px 13px; background: var(--bg-soft);
  transition: border-color var(--ease) .14s, box-shadow var(--ease) .14s, background var(--ease) .14s;
}

.afield input:focus, .afield select:focus { outline: none; border-color: var(--blue); background: var(--card); box-shadow: 0 0 0 3px rgba(43,107,217,.14); }

.afield .hint { font-size: 12px; color: var(--fg-3); margin-top: 5px; }

.dropzone {
  border: 1.5px dashed var(--border-2); border-radius: var(--r-md); padding: 28px 20px; text-align: center;
  background: var(--bg-soft); transition: border-color var(--ease) .16s, background var(--ease) .16s; cursor: pointer;
}

.dropzone:hover { border-color: var(--blue); background: var(--primary-soft, #E8F0FC); }

.dropzone .dz-ic { width: 44px; height: 44px; border-radius: 50%; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }

.dropzone .dz-ic svg { width: 21px; height: 21px; color: var(--blue); }

.dropzone .dz-t { font-size: 14px; font-weight: 600; color: var(--fg); }

.dropzone .dz-s { font-size: 12.5px; color: var(--fg-3); margin-top: 3px; }

.dropzone.portrait { aspect-ratio: 9/13; max-width: 200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; }

.btn-save-content {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 8px;
  background: var(--blue); color: #fff; font-weight: 600; font-size: 14px; padding: 13px; border-radius: var(--r-sm);
  transition: background var(--ease) .16s, transform var(--ease) .16s;
}

.btn-save-content svg { width: 16px; height: 16px; }

.btn-save-content:hover { background: var(--blue-hover); transform: translateY(-1px); }

/* content list (admin) */

.admin-list-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }

.admin-list-head h3 { font-size: 16px; font-weight: 700; }

.admin-list-head .count { font-size: 13px; color: var(--fg-3); }

.content-row {
  display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: var(--r-md);
  border: 1px solid var(--border); background: var(--card); margin-bottom: 10px; transition: box-shadow var(--ease) .16s;
}

.content-row:hover { box-shadow: var(--sh-md); }

.content-row .cr-thumb {
  width: 92px; height: 56px; border-radius: var(--r-sm); flex-shrink: 0; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1A2D4D, #2B6BD9);
}

.content-row .cr-thumb.portrait { width: 40px; height: 56px; border-radius: var(--r-sm); }

.content-row .cr-thumb svg { width: 18px; height: 18px; color: rgba(255,255,255,.85); }

.content-row .cr-body { flex: 1; min-width: 0; }

.content-row .cr-body .ct { font-size: 14px; font-weight: 600; color: var(--fg); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.content-row .cr-body .cs { font-size: 12.5px; color: var(--fg-3); margin-top: 3px; display: flex; align-items: center; gap: 8px; }

.content-row .cr-body .cs .pill { font-size: 11px; font-weight: 600; color: var(--blue); background: var(--primary-soft, #E8F0FC); padding: 2px 8px; border-radius: var(--r-pill); }

.content-row .cr-status { font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: var(--r-pill); flex-shrink: 0; }

.cr-status.pub { color: var(--green); background: rgba(34,197,94,.12); }

.cr-status.draft { color: var(--fg-3); background: var(--bg-muted); }

.content-row .cr-actions { display: flex; gap: 4px; flex-shrink: 0; }

.content-row .cr-actions button { width: 32px; height: 32px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--fg-3); transition: background var(--ease) .16s, color var(--ease) .16s; }

.content-row .cr-actions button:hover { background: var(--bg-muted); color: var(--fg); }

.content-row .cr-actions button svg { width: 16px; height: 16px; }

/* ============================================================
   PLANO EVOLUÇÃO (usuário pago)
   ============================================================ */

/* --- chrome state via .app[data-plan] --- */

.app[data-plan="free"] #navImersoes { display: none; }

.app:not([data-plan="estrutura"]) #navHotseat { display: none; }

.app[data-plan="free"] #btnManage { display: none; }

/* Upsell do chrome aparece para free (→evolucao) E evolucao (→estrutura);
   só o Estrutura (topo) esconde. React define o destino do CTA. */

.app[data-plan="estrutura"] #btnUpgradeTop { display: none; }

.app[data-plan="estrutura"] .side-upgrade { display: none; }

.app[data-plan="free"] .paid-only { display: none; }

.app[data-plan="free"] .evo-only { display: none; }

.app[data-plan="free"] .estrutura-only { display: none; }

.app[data-plan="evolucao"] .free-only { display: none; }

.app[data-plan="evolucao"] .estrutura-only { display: none; }

.app[data-plan="estrutura"] .free-only { display: none; }

.app[data-plan="estrutura"] .evo-only { display: none; }

.wa-free { display: inline; }

.wa-evo { display: none; }

.app:not([data-plan="free"]) .wa-free { display: none; }

.app:not([data-plan="free"]) .wa-evo { display: inline; }

/* plan switcher pill (prototype helper) */

.plan-switch {
  display: inline-flex; align-items: center; gap: 2px; background: var(--bg-muted);
  border: 1px solid var(--border); border-radius: var(--r-pill); padding: 3px;
}

.plan-switch button {
  font-size: 12px; font-weight: 600; color: var(--fg-3); padding: 6px 12px; border-radius: var(--r-pill);
  transition: all var(--ease) .16s;
}

.plan-switch button.active { background: var(--card); color: var(--fg); box-shadow: var(--sh-sm); }

.plan-switch button.active[data-plan-opt="evolucao"] { color: var(--gold-deep); }

.plan-switch button.active[data-plan-opt="estrutura"] { color: #2b2000; background: var(--gold); }

/* plan badge in mini-profile (avatar ring removido — visual limpo) */

.side-plan-badge { display: none !important; }

/* welcome plan chip */

.welcome .plan-inline {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700;
  color: var(--gold-deep); background: rgba(212,160,23,.12); border: 1px solid rgba(212,160,23,.3);
  padding: 3px 10px; border-radius: var(--r-pill); margin-left: 10px; vertical-align: middle;
}

.welcome .plan-inline .d { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ----- Bloco 2: Imersão do Mês hero ----- */

.imersao-hero {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1.5px solid rgba(212,160,23,.45); box-shadow: var(--sh-md);
  min-height: 360px; display: flex; align-items: flex-end;
  transition: box-shadow var(--ease) .25s;
}

.imersao-hero .ih-bg {
  position: absolute; inset: 0; background: linear-gradient(135deg, #18181B 0%, #1A2D4D 55%, #2B6BD9 110%);
}

.imersao-hero .ih-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,12,.85) 0%, rgba(10,10,12,.2) 55%, rgba(10,10,12,.35) 100%);
}

.imersao-hero.live { box-shadow: var(--sh-lg), 0 0 0 3px rgba(43,107,217,.3); }

.imersao-hero .ih-badges { position: absolute; top: 20px; left: 22px; display: flex; gap: 8px; z-index: 2; }

.badge-imersao { background: var(--blue); color: #fff; }

.badge-ended { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.25); }

.imersao-hero .ih-watermark { position: absolute; right: -10px; top: -10px; width: 220px; opacity: .1; z-index: 1; }

.imersao-hero .ih-content { position: relative; z-index: 2; padding: 70px 34px 32px; width: 100%; color: #fff; }

.imersao-hero .ih-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }

.imersao-hero h2 { font-size: 28px; font-weight: 700; line-height: 1.12; margin-bottom: 8px; max-width: 640px; }

.imersao-hero .ih-host { font-size: 14.5px; color: #C7CBD4; margin-bottom: 22px; display: flex; align-items: center; gap: 9px; }

.imersao-hero .ih-host .av { width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: #3d2c00; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }

/* countdown */

.countdown { display: flex; gap: 14px; margin-bottom: 24px; }

.cd-unit { text-align: center; }

.cd-unit .v { font-family: var(--mono); font-size: 34px; font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1; }

.cd-unit .l { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #9AA3B4; margin-top: 6px; }

.cd-sep { font-family: var(--mono); font-size: 30px; color: rgba(255,255,255,.3); line-height: 1; }

.ih-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-ondark-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); }

.btn-disabled { background: rgba(255,255,255,.08); color: rgba(255,255,255,.4); cursor: not-allowed; border: 1px solid rgba(255,255,255,.12); }

.btn-gold { background: var(--gold); color: #2b2000; }

.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(212,160,23,.4); }

/* evolucao home grid: hero + reforço side by side */

.evo-home-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 22px; align-items: stretch; }

/* ----- Bloco 3: Encontro de Reforço ----- */

.reforco-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--sh-sm); padding: 26px; display: flex; flex-direction: column;
}

/* Reforço inativo: só fica ativo 1 semana após a imersão (P0-10b). */

.reforco-card.is-inactive, .reforco-detail.is-inactive { opacity: .6; }

.rc-locked-note { color: var(--fg-3); font-size: 13px; }

.reforco-card .rc-ic { width: 46px; height: 46px; border-radius: var(--r-md); background: rgba(212,160,23,.12); border: 1px solid rgba(212,160,23,.3); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

.reforco-card .rc-ic svg { width: 22px; height: 22px; color: var(--gold-deep); }

.reforco-card .rc-label { font-size: 12px; font-weight: 600; color: var(--gold-deep); margin-bottom: 8px; }

.reforco-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; line-height: 1.2; }

.reforco-card .rc-desc { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin-bottom: 18px; }

.reforco-card .rc-confirmed { display: none; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--green); background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25); padding: 10px 14px; border-radius: var(--r-sm); margin-bottom: 12px; }

.reforco-card .rc-confirmed svg { width: 16px; height: 16px; }

.reforco-card.confirmed .rc-confirmed { display: flex; }

.reforco-card.confirmed .btn-confirm-presenca { display: none; }

.reforco-card.confirmed .btn-cancel-presenca { display: inline-flex; }

.btn-cancel-presenca { display: none; }

.btn-confirm-presenca {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  background: var(--gold); color: #2b2000; font-weight: 700; font-size: 14px; padding: 13px; border-radius: var(--r-sm);
  transition: transform var(--ease) .16s, box-shadow var(--ease) .16s;
}

.btn-confirm-presenca svg { width: 16px; height: 16px; transition: transform var(--ease) .2s; }

.btn-confirm-presenca:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(212,160,23,.35); }

.btn-cancel-presenca {
  align-items: center; justify-content: center; gap: 7px; width: 100%;
  background: var(--bg-muted); color: var(--fg-2); font-weight: 600; font-size: 13.5px; padding: 12px; border-radius: var(--r-sm);
  border: 1px solid var(--border-2);
}

.reforco-card .rc-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; font-size: 12.5px; color: var(--fg-3); }

.reforco-card .rc-meta a { color: var(--blue); font-weight: 600; }

.rc-vagas { display: flex; align-items: center; gap: 6px; }

.rc-vagas svg { width: 14px; height: 14px; }

/* ----- Bloco 5: locked future imersões ----- */

.locked-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1.5px dashed var(--border-2); background: var(--card);
}

.locked-card .lc-thumb { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, #20242e, #2b3340); display: flex; align-items: center; justify-content: center; }

.locked-card .lc-thumb::after { content: ""; position: absolute; inset: 0; background: rgba(10,10,12,.6); }

.locked-card .lc-lock { position: relative; z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center; }

.locked-card .lc-lock svg { width: 20px; height: 20px; color: #fff; }

.locked-card .lc-body { padding: 16px 18px 18px; }

.locked-card .lc-body h4 { font-size: 15px; font-weight: 600; color: var(--fg); opacity: .6; line-height: 1.35; margin-bottom: 6px; }

.locked-card .lc-body .lc-date { font-family: var(--mono); font-size: 12.5px; color: var(--fg-3); }

.locked-card .lc-tip {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%) translateY(-6px); z-index: 3;
  background: var(--black); color: #fff; font-size: 11.5px; font-weight: 500; padding: 6px 12px; border-radius: var(--r-sm);
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--ease) .18s, transform var(--ease) .18s;
}

.locked-card:hover .lc-tip { opacity: 1; transform: translateX(-50%) translateY(0); }

.section-inline-badge { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--fg-3); background: var(--bg-muted); border: 1px solid var(--border); padding: 3px 9px; border-radius: var(--r-pill); }

/* ----- Imersão detail view ----- */

.detail-back {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600;
  color: var(--fg-2); margin-bottom: 22px; transition: color var(--ease) .16s, gap var(--ease) .16s;
}

.detail-back svg { width: 16px; height: 16px; }

.detail-back:hover { color: var(--blue); gap: 11px; }

.player {
  position: relative; aspect-ratio: 16/9; width: 100%; border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(135deg, #18181B 0%, #1A2D4D 55%, #2B6BD9 110%);
  box-shadow: var(--sh-md); display: flex; align-items: center; justify-content: center;
}

.player .pl-watermark, .ish-player .pl-watermark { position: absolute; right: -16px; bottom: -20px; width: 230px; opacity: .1; }

.player .pl-watermark svg, .ish-player .pl-watermark svg { width: 100%; }

.player .pl-play, .ish-player .pl-play {
  position: relative; z-index: 2; width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,.16); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1.5px solid rgba(255,255,255,.42);
  display: flex; align-items: center; justify-content: center; transition: transform var(--ease) .2s, background var(--ease) .2s;
}

.player .pl-play svg, .ish-player .pl-play svg { width: 34px; height: 34px; color: #fff; margin-left: 5px; }

.player:hover .pl-play, .ish-player:hover .pl-play { transform: scale(1.07); background: rgba(255,255,255,.26); }

.player .pl-tag, .ish-player .pl-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2; font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: #fff; background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.25); padding: 6px 12px; border-radius: var(--r-pill);
}

.player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; margin-top: 26px; }

.detail-main .eyebrow { display: block; margin-bottom: 10px; color: var(--gold-deep); }

.detail-main h1 { font-size: 27px; font-weight: 700; line-height: 1.18; margin-bottom: 14px; }

.detail-meta { display: flex; flex-wrap: wrap; gap: 18px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }

.detail-meta .dm { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--fg-2); }

.detail-meta .dm svg { width: 16px; height: 16px; color: var(--fg-3); }

.detail-meta .dm .av { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: #3d2c00; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }

.detail-desc { font-size: 15.5px; line-height: 1.65; color: var(--fg-2); max-width: 640px; }

.detail-desc p { margin-bottom: 14px; }

.detail-desc p:last-child { margin-bottom: 0; }

/* Resumo da imersão (Story P0-29) — separador discreto abaixo da descrição;
   acervo on-demand para quem não assistiu ao vídeo. */

.im-summary {
  margin-top: 24px; padding-top: 16px; max-width: 640px;
  border-top: 1px solid var(--border);
}

.im-summary h3 {
  font-size: 12.5px; font-weight: 600; color: var(--fg-3);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px;
}

.im-summary p { font-size: 15px; line-height: 1.65; color: var(--fg-2); }

/* Copy contextual do player travado (Story P0-31) — distingue "gravação em
   breve" de "exclusivo de outro plano"; e micro-copy de resumo ausente. */

.pl-copy {
  position: absolute; left: 0; right: 0; bottom: 16px; margin: 0;
  text-align: center; font-size: 14px; color: #fff; padding: 0 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

.pl-copy a { color: var(--gold); font-weight: 600; text-decoration: underline; }

.sum-soon {
  margin-top: 12px; font-size: 13px; font-style: italic; color: var(--fg-3);
}

/* materials — only rendered when present */

.materials-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); padding: 22px; position: sticky; top: 84px;
}

.materials-card .mc-head { display: flex; align-items: center; gap: 9px; margin-bottom: 6px; }

.materials-card .mc-head svg { width: 18px; height: 18px; color: var(--blue); }

.materials-card .mc-head h3 { font-size: 15px; font-weight: 700; }

.materials-card .mc-sub { font-size: 12.5px; color: var(--fg-3); margin-bottom: 16px; }

.material {
  display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: var(--r-sm);
  border: 1px solid var(--border); transition: border-color var(--ease) .16s, background var(--ease) .16s; margin-bottom: 9px;
}

.material:last-child { margin-bottom: 0; }

.material:hover { border-color: var(--blue); background: var(--primary-soft, #E8F0FC); }

.material .m-ic { width: 38px; height: 38px; border-radius: var(--r-sm); flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--bg-muted); }

.material .m-ic svg { width: 18px; height: 18px; color: var(--fg-2); }

.material .m-info { min-width: 0; flex: 1; }

.material .m-info .mn { font-size: 13.5px; font-weight: 600; color: var(--fg); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.material .m-info .mt { font-size: 11.5px; color: var(--fg-3); font-family: var(--mono); }

.material .m-dl { color: var(--fg-3); display: flex; flex-shrink: 0; }

.material .m-dl svg { width: 17px; height: 17px; }

.material:hover .m-dl { color: var(--blue); }

/* when no materials, main spans full width */

.detail-grid.no-materials { grid-template-columns: 1fr; }

.detail-grid.no-materials .materials-card { display: none; }

@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
  .materials-card { position: static; }
}

/* ============================================================
   IMERSÕES — Trilha de ciclo anual
   ============================================================ */

.cycle-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 38px; flex-wrap: wrap; }

.cycle-title-row { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }

.cycle-title-row h1 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }

.cycle-badge {
  font-size: 12px; font-weight: 600; color: var(--gold-deep); background: rgba(212,160,23,.12);
  border: 1px solid rgba(212,160,23,.32); padding: 4px 11px; border-radius: var(--r-pill);
}

.cycle-head-left p { font-size: 15px; color: var(--fg-2); max-width: 560px; }

.year-nav { display: flex; align-items: center; gap: 4px; }

.year-nav .yn-arrow, .year-nav .yn-year {
  font-size: 13px; font-weight: 600; color: var(--fg-3); padding: 6px 10px; border-radius: var(--r-sm);
  transition: all var(--ease) .16s; display: inline-flex; align-items: center;
}

.year-nav .yn-arrow svg { width: 16px; height: 16px; }

.year-nav .yn-year:hover, .year-nav .yn-arrow:hover { color: var(--fg); background: var(--bg-muted); }

.year-nav .yn-year.active { color: var(--fg); background: var(--bg-muted); border: 1px solid var(--border-2); }

/* track */

.cycle-track { display: flex; flex-direction: column; gap: 36px; margin-bottom: 44px; }

.cycle-row { display: grid; grid-template-columns: repeat(4, 1fr); }

.month-node { position: relative; padding: 0 9px; min-width: 0; }

/* rail (dot + connector line) */

.node-rail { position: relative; height: 30px; display: flex; align-items: center; justify-content: center; }

.node-rail::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  height: 2px; background: var(--border-2); z-index: 0;
}

.cycle-row .month-node:first-child .node-rail::before { left: 50%; }

.cycle-row .month-node:last-child .node-rail::before { right: 50%; }

.month-node.done .node-rail::before { background: var(--blue); }

.month-node.current .node-rail::before { background: linear-gradient(90deg, var(--blue) 50%, var(--border-2) 50%); }

.month-node.future .node-rail::before { background: none; border-top: 2px dashed var(--border-2); height: 0; }

.node-dot {
  position: relative; z-index: 2; width: 13px; height: 13px; border-radius: 50%;
  background: var(--blue); border: 2px solid var(--bg-muted); box-sizing: content-box;
}

.month-node.future .node-dot { background: var(--card); border: 2px solid var(--border-strong); }

.month-node.current .node-dot {
  width: 17px; height: 17px; background: var(--blue);
  box-shadow: 0 0 0 5px rgba(43,107,217,.18); animation: dot-pulse 1.8s var(--ease) infinite;
}

.month-node.live .node-dot { background: var(--red); box-shadow: 0 0 0 5px rgba(239,68,68,.2); }

@keyframes dot-pulse {
  0%,100% { box-shadow: 0 0 0 5px rgba(43,107,217,.18); }
  50% { box-shadow: 0 0 0 9px rgba(43,107,217,.05); }
}

/* node card */

.node-card {
  margin-top: 14px; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm); cursor: pointer;
  transition: transform var(--ease) .18s, box-shadow var(--ease) .18s, border-color var(--ease) .18s;
  display: flex; flex-direction: column;
}

.node-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.month-node.current .node-card { border: 2px solid var(--gold); }

.month-node.live .node-card { border: 2px solid var(--red); }

.month-node.future .node-card { border-style: dashed; box-shadow: none; background: var(--bg-soft); }

.nc-thumb { position: relative; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; overflow: hidden; }

.nc-thumb .nc-thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; z-index: 1; }

.nc-thumb.g1 { background: linear-gradient(135deg, #1A2D4D, #2B6BD9); }

.nc-thumb.g2 { background: linear-gradient(135deg, #18181B, #3B4FD9); }

.nc-thumb.g3 { background: linear-gradient(135deg, #202840, #1F51B3); }

.nc-thumb .nc-play {
  position: relative; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.16);
  border: 1.5px solid rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center;
  transition: transform var(--ease) .2s, background var(--ease) .2s;
}

.nc-thumb .nc-play svg { width: 16px; height: 16px; color: #fff; margin-left: 2px; }

.node-card:hover .nc-thumb .nc-play { transform: scale(1.1); background: rgba(255,255,255,.28); }

.nc-thumb .nc-dur { position: absolute; bottom: 8px; right: 8px; font-size: 10.5px; font-weight: 600; color: #fff; background: rgba(0,0,0,.6); padding: 2px 6px; border-radius: 5px; font-family: var(--mono); }

.nc-thumb.locked { background: linear-gradient(135deg, #20242e, #2b3340); }

/* P0-23: capa também aparece nos nós bloqueados, sob um overlay escuro (z-index
   acima da imagem .nc-thumb-img que é z-index:1) + cadeado por cima (z-index:3).
   Sem capa, o gradiente cinza do .locked fica visível através do overlay. */

.nc-thumb.locked::after { content: ""; position: absolute; inset: 0; z-index: 2; background: rgba(10,10,12,.62); }

.nc-thumb.locked .nc-thumb-img { filter: grayscale(.35); }

.nc-thumb .nc-lock { position: relative; z-index: 3; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); background: rgba(0,0,0,.32); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center; }

.nc-thumb .nc-lock svg { width: 17px; height: 17px; color: #fff; }

.nc-thumb .live-tag {
  position: absolute; z-index: 2; top: 8px; left: 8px; display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #fff;
  background: var(--red); padding: 4px 9px; border-radius: var(--r-pill);
}

.nc-thumb .live-tag .pdot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse-live 1.4s ease-in-out infinite; }

.nc-body { padding: 13px 14px 15px; display: flex; flex-direction: column; flex: 1; }

.nc-month { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .04em; color: var(--fg-3); text-transform: uppercase; margin-bottom: 6px; }

.month-node.current .nc-month, .month-node.live .nc-month { color: var(--gold-deep); }

.nc-title {
  font-size: 14px; font-weight: 600; color: var(--fg); line-height: 1.3; margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 36px;
}

.month-node.future .nc-title { opacity: .6; }

.nc-foot { margin-top: auto; }

.nc-creditrow { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--fg-3); margin-bottom: 11px; }

.nc-creditrow .av { width: 20px; height: 20px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; }

/* current-month badge + countdown */

.nc-badge {
  display: inline-block; font-size: 10.5px; font-weight: 700; color: var(--gold-deep);
  background: rgba(212,160,23,.12); border: 1px solid rgba(212,160,23,.3);
  padding: 4px 8px; border-radius: var(--r-sm); margin-bottom: 10px; line-height: 1.3;
}

.nc-badge.live { color: #fff; background: var(--red); border-color: var(--red); }

.nc-badge.gray { color: var(--fg-3); background: var(--bg-muted); border-color: var(--border-2); }

.nc-countdown { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--fg); margin-bottom: 10px; letter-spacing: -0.01em; }

.nc-countdown .u { color: var(--fg-3); font-weight: 500; }

/* node buttons */

.nc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px; width: 100%;
  font-size: 12.5px; font-weight: 600; padding: 9px; border-radius: var(--r-sm); transition: all var(--ease) .16s;
}

.nc-btn svg { width: 14px; height: 14px; }

.nc-btn.outline { color: var(--blue); border: 1px solid var(--border-2); background: var(--card); }

.nc-btn.outline:hover { border-color: var(--blue); background: var(--primary-soft, #E8F0FC); }

.nc-btn.gold { color: #2b2000; background: var(--gold); }

.nc-btn.gold:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(212,160,23,.35); }

.nc-btn.solid { color: #fff; background: var(--blue); }

.nc-btn.solid:hover { background: var(--blue-hover); }

.nc-btn.disabled { color: var(--fg-3); background: var(--bg-muted); border: 1px solid var(--border-2); cursor: not-allowed; }

.nc-btn.locked-btn { color: var(--fg-3); background: transparent; border: 1px dashed var(--border-2); cursor: default; }

/* cycle footer */

.cycle-foot {
  display: flex; align-items: center; gap: 16px; background: var(--bg-muted);
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px 24px;
}

.cycle-foot .cf-ic { width: 40px; height: 40px; border-radius: var(--r-md); flex-shrink: 0; background: var(--card); border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; }

.cycle-foot .cf-ic svg { width: 19px; height: 19px; color: var(--blue); }

.cycle-foot p { flex: 1; font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }

.cycle-foot .cf-badge { font-size: 12px; font-weight: 600; color: var(--fg-2); background: var(--card); border: 1px solid var(--border-2); padding: 6px 13px; border-radius: var(--r-pill); white-space: nowrap; }

/* ============================================================
   IMERSÃO drawer (sheet from right)
   ============================================================ */

.sheet-overlay {
  position: fixed; inset: 0; z-index: 90; background: rgba(10,10,12,.5);
  opacity: 0; pointer-events: none; transition: opacity var(--ease) .26s;
}

.sheet-overlay.open { opacity: 1; pointer-events: auto; }

.imersao-sheet {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 92vw); z-index: 91;
  background: var(--card); box-shadow: -20px 0 60px rgba(10,10,12,.28);
  transform: translateX(100%); transition: transform var(--ease) .32s;
  display: flex; flex-direction: column;
}

.imersao-sheet.open { transform: none; }

.ish-bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--border); flex-shrink: 0; }

.ish-close, .ish-step {
  width: 36px; height: 36px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: var(--fg-2); transition: background var(--ease) .16s;
}

.ish-close svg, .ish-step svg { width: 19px; height: 19px; }

.ish-close:hover, .ish-step:hover { background: var(--bg-muted); }

.ish-step:disabled { opacity: .35; cursor: not-allowed; }

.ish-nav { display: flex; gap: 4px; }

.ish-scroll { overflow-y: auto; flex: 1; }

.ish-player {
  position: relative; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #18181B 0%, #1A2D4D 55%, #2B6BD9 110%); overflow: hidden;
}

.ish-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.ish-player .ish-lock { display: none; position: relative; z-index: 2; width: 60px; height: 60px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); align-items: center; justify-content: center; }

.ish-player .ish-lock svg { width: 26px; height: 26px; color: #fff; }

.ish-player.locked::after { content: ""; position: absolute; inset: 0; background: rgba(10,10,12,.5); }

.ish-player.locked .ish-lock { display: flex; }

.ish-player.locked .pl-play { display: none; }

.ish-body { padding: 24px; }

.ish-month { font-size: 12px; font-weight: 700; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: 9px; }

.ish-body h2 { font-size: 21px; font-weight: 700; line-height: 1.2; margin-bottom: 18px; }

.ish-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }

.ish-host { display: flex; align-items: center; gap: 10px; }

.ish-host .av { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); color: #3d2c00; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }

.ish-host .hn { display: flex; flex-direction: column; line-height: 1.25; }

.ish-host .hn .n { font-size: 14px; font-weight: 600; color: var(--fg); }

.ish-host .hn .r { font-size: 12px; color: var(--fg-3); }

.ish-dur { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--fg-2); }

.ish-dur svg { width: 15px; height: 15px; color: var(--fg-3); }

.ish-desc { font-size: 14.5px; line-height: 1.6; color: var(--fg-2); margin-bottom: 18px; }

.ish-status { margin-bottom: 18px; }

.ish-status:empty { display: none; }

.ish-status .pill {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600;
  padding: 9px 14px; border-radius: var(--r-sm);
}

.ish-status .pill svg { width: 15px; height: 15px; }

.ish-status .pill.gold { color: var(--gold-deep); background: rgba(212,160,23,.12); border: 1px solid rgba(212,160,23,.3); }

.ish-status .pill.live { color: #fff; background: var(--red); }

.ish-status .pill.gray { color: var(--fg-3); background: var(--bg-muted); border: 1px solid var(--border-2); }

.ish-yt {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%;
  font-size: 14px; font-weight: 600; color: #fff; background: var(--blue);
  padding: 13px; border-radius: var(--r-sm); transition: background var(--ease) .16s;
}

.ish-yt svg { width: 17px; height: 17px; }

.ish-yt:hover { background: var(--blue-hover); }

.ish-yt.disabled { color: var(--fg-3); background: var(--bg-muted); pointer-events: none; }

/* responsive cycle (P0-13: linha base 4 → 2 no tablet) */

@media (max-width: 1100px) {
  .cycle-row { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .cycle-row .month-node:nth-child(2n+1) .node-rail::before { left: 50%; }
  .cycle-row .month-node:nth-child(2n) .node-rail::before { right: 50%; }
}

@media (max-width: 680px) {
  .cycle-row { grid-template-columns: 1fr; row-gap: 0; }
  .node-rail { display: none; }
  .month-node { padding: 0; border-left: 2px solid var(--border-2); padding-left: 18px; padding-bottom: 22px; }
  .month-node.done { border-left-color: var(--blue); }
  .month-node.current, .month-node.live { border-left-color: var(--gold); }
  .node-card { margin-top: 0; }
  .cycle-head { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   IMERSÃO — página própria (player interno + reforço)
   ============================================================ */

.im-topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }

.im-stepnav { display: flex; gap: 8px; }

.im-step {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--fg-2);
  padding: 8px 14px; border-radius: var(--r-sm); border: 1px solid var(--border-2); background: var(--card);
  transition: all var(--ease) .16s;
}

.im-step svg { width: 15px; height: 15px; }

.im-step:hover { border-color: var(--blue); color: var(--blue); }

.im-step:disabled { opacity: .4; cursor: not-allowed; }

.im-step:disabled:hover { border-color: var(--border-2); color: var(--fg-2); }

.im-grid { display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: start; }

.im-main .player { margin-bottom: 14px; }

.player .pl-lock { display: none; position: relative; z-index: 2; width: 76px; height: 76px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); align-items: center; justify-content: center; }

.player .pl-lock svg { width: 32px; height: 32px; color: #fff; }

.player.locked::after { content: ""; position: absolute; inset: 0; background: rgba(10,10,12,.55); }

.player.locked .pl-lock { display: flex; }

.player.locked .pl-play { display: none; }

.im-protected { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--fg-3); margin-bottom: 22px; }

.im-protected svg { width: 15px; height: 15px; color: var(--success); }

.im-main h1 { font-size: 26px; font-weight: 700; line-height: 1.18; margin-bottom: 14px; }

.im-main .eyebrow { display: block; margin-bottom: 10px; color: var(--gold-deep); }

/* in-platform video stage (protected playback) */

.vstage { position: absolute; inset: 0; background: #0c0c0e; display: flex; flex-direction: column; }

.vstage .vs-screen { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; }

.vstage .vs-screen .vs-pause { width: 70px; height: 70px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; }

.vstage .vs-screen .vs-pause svg { width: 28px; height: 28px; color: #fff; }

.vstage .vs-screen .vs-watermark { position: absolute; bottom: 14px; right: 16px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4); font-family: var(--mono); }

.vstage .vs-bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: linear-gradient(0deg, rgba(0,0,0,.85), rgba(0,0,0,.3)); }

.vstage .vs-bar .vs-ic { color: rgba(255,255,255,.85); display: flex; }

.vstage .vs-bar .vs-ic svg { width: 18px; height: 18px; }

.vstage .vs-track { flex: 1; height: 4px; border-radius: 3px; background: rgba(255,255,255,.25); position: relative; }

.vstage .vs-track .vs-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 12%; background: var(--blue); border-radius: 3px; }

.vstage .vs-track .vs-knob { position: absolute; left: 12%; top: 50%; transform: translate(-50%,-50%); width: 11px; height: 11px; border-radius: 50%; background: #fff; }

.vstage .vs-time { font-family: var(--mono); font-size: 11.5px; color: rgba(255,255,255,.8); white-space: nowrap; }

/* reforço detail card */

.reforco-detail {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); padding: 24px; position: sticky; top: 84px;
}

.reforco-detail .rd-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }

.reforco-detail .rd-ic { width: 38px; height: 38px; border-radius: var(--r-sm); background: rgba(212,160,23,.12); border: 1px solid rgba(212,160,23,.3); display: flex; align-items: center; justify-content: center; }

.reforco-detail .rd-ic svg { width: 19px; height: 19px; color: var(--gold-deep); }

.reforco-detail .rd-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-deep); }

.reforco-detail h3 { font-size: 17px; font-weight: 700; line-height: 1.25; margin-bottom: 8px; }

.reforco-detail .rd-desc { font-size: 13.5px; color: var(--fg-2); line-height: 1.55; margin-bottom: 16px; }

.reforco-detail .rd-date { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg); font-weight: 500; margin-bottom: 16px; }

.reforco-detail .rd-date svg { width: 15px; height: 15px; color: var(--fg-3); }

/* Botão "Adicionar à agenda" (Google Calendar) — P0-9 */

.im-calendar-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--fg-2);
  padding: 9px 14px; border: 1px solid var(--border); border-radius: var(--r-sm, 8px);
  background: var(--card); transition: all var(--ease) .16s; cursor: pointer;
}

.im-calendar-btn svg { width: 15px; height: 15px; }

.im-calendar-btn:hover { color: var(--fg); border-color: var(--fg-3); }

.reforco-detail .rd-action .rbtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  font-size: 13.5px; font-weight: 600; padding: 12px; border-radius: var(--r-sm); transition: all var(--ease) .16s;
}

.reforco-detail .rd-action .rbtn svg { width: 16px; height: 16px; }

.reforco-detail .rd-action .rbtn.gold { background: var(--gold); color: #2b2000; }

.reforco-detail .rd-action .rbtn.gold:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(212,160,23,.35); }

.reforco-detail .rd-action .rbtn.outline { background: var(--card); color: var(--blue); border: 1px solid var(--border-2); }

.reforco-detail .rd-action .rbtn.outline:hover { border-color: var(--blue); background: var(--primary-soft, #E8F0FC); }

.reforco-detail .rd-action .rbtn.locked { background: var(--bg-muted); color: var(--fg-3); border: 1px dashed var(--border-2); cursor: default; }

.reforco-detail .rd-confirmed { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--success); background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25); padding: 11px 14px; border-radius: var(--r-sm); }

.reforco-detail .rd-confirmed svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .im-grid { grid-template-columns: 1fr; }
  .reforco-detail { position: static; }
}

/* ============================================================
   PLANO ESTRUTURA — blocos exclusivos
   ============================================================ */

/* welcome */

.welcome .plan-pill-estrutura {
  display: inline-flex; align-items: center; gap: 7px; vertical-align: middle; margin-left: 12px;
  background: linear-gradient(180deg, rgba(212,160,23,.12), rgba(212,160,23,.05));
  color: #C99A2E; border: 1px solid rgba(212,160,23,.45); font-weight: 600; font-size: 10.5px;
  letter-spacing: .18em; padding: 5px 13px; border-radius: var(--r-pill);
}

.welcome .plan-pill-estrutura::before { content: "\25C6"; font-size: 8px; color: var(--gold-deep); }

[data-theme="dark"] .welcome .plan-pill-estrutura { color: #E3C988; }

.welcome .welcome-sub-line { display: block; margin-top: 7px; font-size: 13px; color: var(--fg-3); }

/* shared exclusive-card treatment: thicker gold border + faint gold shadow */

.est-card {
  background: var(--card); border: 2px solid var(--gold); border-radius: var(--r-xl);
  box-shadow: 0 0 0 4px rgba(212,160,23,.06), var(--sh-sm); padding: 30px;
}

.est-utility {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); padding: 24px;
}

.est-head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }

.est-head .est-ic { width: 46px; height: 46px; border-radius: var(--r-md); flex-shrink: 0; background: rgba(212,160,23,.12); border: 1px solid rgba(212,160,23,.32); display: flex; align-items: center; justify-content: center; }

.est-head .est-ic svg { width: 23px; height: 23px; color: var(--gold-deep); }

.est-head .est-ic.blue { background: var(--primary-soft, #E8F0FC); border-color: rgba(43,107,217,.3); }

.est-head .est-ic.blue svg { color: var(--blue); }

.est-head .eh-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--gold-deep); display: block; margin-bottom: 3px; }

.est-head .eh-title { font-size: 20px; font-weight: 700; line-height: 1.2; }

.est-sub { font-size: 14.5px; color: var(--fg-2); line-height: 1.55; margin-bottom: 18px; max-width: 600px; }

/* Hot Seat specifics */

.hs-datarow { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-bottom: 16px; }

.hs-datarow .dchip { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--fg); font-weight: 500; }

.hs-datarow .dchip svg { width: 16px; height: 16px; color: var(--fg-3); }

.hs-vagas { margin-bottom: 20px; max-width: 340px; }

.hs-vagas .hv-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 7px; }

.hs-vagas .hv-count { font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--fg); }

.hs-vagas .hv-count .tot { color: var(--fg-3); font-weight: 500; }

.hs-vagas .hv-label { font-size: 12px; color: var(--fg-3); }

.hs-bar { height: 7px; border-radius: 4px; background: var(--bg-muted); overflow: hidden; }

.hs-bar .hb-fill { height: 100%; background: linear-gradient(90deg, var(--gold), #E8C063); border-radius: 4px; transition: width var(--ease) .4s; }

/* P2-4: copy de escassez no lugar da barra numérica (RLS não conta cross-user). */

.hs-vagas-copy { margin: 0 0 18px; font-size: 13.5px; font-weight: 600; color: var(--gold-deep, var(--gold)); }

/* Convite contextual de upgrade na live (P1-5) — free na 3ª live assistida. */

.live-nudge {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin: 18px 0 6px; padding: 16px 18px; border-radius: var(--r-md);
  background: var(--card); border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
}

.live-nudge .ln-text { flex: 1; min-width: 240px; }

.live-nudge .ln-title { margin: 0; font-size: 15px; font-weight: 700; }

.live-nudge .ln-sub { margin: 3px 0 8px; font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }

.live-nudge .ln-garantia {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--fg-3);
}

.live-nudge .ln-garantia svg { width: 14px; height: 14px; color: #16a34a; }

.live-nudge .ln-cta {
  display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
  padding: 10px 18px; border-radius: var(--r-sm);
  background: var(--gold); color: #3d2c00; font-weight: 700; font-size: 13.5px;
}

.live-nudge .ln-cta svg { width: 15px; height: 15px; }

/* A Mesa (P0-35): nota de curadoria no card ritual da página. */

.mesa-curadoria {
  margin: 12px 0 0; padding: 10px 14px; border-radius: var(--r-sm);
  background: var(--bg-muted); font-size: 13px; line-height: 1.55;
  color: var(--fg-2);
}

.btn-hs-apply {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: #18181B; font-weight: 700; font-size: 14.5px;
  padding: 13px 24px; border-radius: var(--r-sm); transition: transform var(--ease) .16s, box-shadow var(--ease) .16s;
}

.btn-hs-apply svg { width: 17px; height: 17px; }

.btn-hs-apply:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(212,160,23,.35); }

.hs-form { display: none; margin-top: 18px; }

.hs-form.open { display: block; }

.hs-form label { display: block; font-size: 13px; font-weight: 600; color: var(--fg-2); margin-bottom: 8px; }

.hs-form textarea, .diag-card textarea {
  width: 100%; border: 1px solid var(--border-2); border-radius: var(--r-sm); padding: 12px 14px;
  font-family: var(--font); font-size: 14px; color: var(--fg); resize: vertical; background: var(--bg-soft);
  transition: border-color var(--ease) .16s;
}

.hs-form textarea:focus, .diag-card textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,107,217,.12); }

.hs-form .hs-form-actions { display: flex; gap: 10px; margin-top: 14px; }

.btn-hs-send { background: var(--gold); color: #18181B; font-weight: 700; font-size: 14px; padding: 11px 22px; border-radius: var(--r-sm); }

.btn-hs-send:hover { box-shadow: 0 6px 16px rgba(212,160,23,.3); }

.btn-hs-cancel-form { background: var(--bg-muted); color: var(--fg-2); font-weight: 600; font-size: 14px; padding: 11px 18px; border-radius: var(--r-sm); border: 1px solid var(--border-2); }

/* Hot Seat — inscrito state */

.hs-state { }

.hs-state.hidden { display: none; }

.hs-enrolled-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--success); background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.28); padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 14px; }

.hs-enrolled-badge svg { width: 14px; height: 14px; }

.hs-summary { font-size: 14px; color: var(--fg-2); line-height: 1.55; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 14px 16px; margin-bottom: 16px; }

.hs-enrolled-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

.btn-hs-leave { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--fg-2); background: var(--card); border: 1px solid var(--border-2); padding: 10px 16px; border-radius: var(--r-sm); }

.btn-hs-leave:hover { border-color: var(--danger); color: var(--danger); }

.hs-remind { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--fg-3); }

.hs-remind svg { width: 15px; height: 15px; }

.hs-remind a { color: var(--blue); font-weight: 600; }

/* Grupo Fechado */

.grupo-card .est-sub { margin-bottom: 16px; }

.btn-wa-outline {
  display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--fg);
  background: var(--card); border: 1px solid var(--border-2); padding: 12px 20px; border-radius: var(--r-sm);
  transition: all var(--ease) .16s;
}

.btn-wa-outline svg { width: 18px; height: 18px; color: var(--whatsapp); }

.btn-wa-outline:hover { border-color: var(--whatsapp); background: rgba(37,211,102,.06); }

.btn-wa-outline:disabled { opacity: .5; cursor: not-allowed; }

.btn-wa-outline:disabled:hover { border-color: var(--border-2); background: var(--card); }

.grupo-note { display: block; margin-top: 11px; font-size: 12px; color: var(--fg-3); }

/* Diagnóstico */

.diag-card .diag-fields { display: flex; flex-direction: column; gap: 16px; margin-bottom: 18px; }

.diag-card .diag-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--fg); margin-bottom: 8px; }

.btn-diag-send { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff; font-weight: 600; font-size: 14px; padding: 12px 24px; border-radius: var(--r-sm); transition: background var(--ease) .16s; }

.btn-diag-send svg { width: 16px; height: 16px; }

.btn-diag-send:hover { background: var(--blue-hover); }

.diag-history { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; color: var(--blue); font-weight: 600; }

.diag-history svg { width: 14px; height: 14px; }

.diag-sent { display: none; }

.diag-sent.show { display: block; }

.diag-card.sent .diag-form { display: none; }

.diag-sent-confirm { display: flex; align-items: flex-start; gap: 12px; background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25); border-radius: var(--r-md); padding: 18px 20px; margin-bottom: 16px; }

.diag-sent-confirm .ds-ic { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; background: rgba(34,197,94,.16); display: flex; align-items: center; justify-content: center; }

.diag-sent-confirm .ds-ic svg { width: 18px; height: 18px; color: var(--success); }

.diag-sent-confirm .ds-txt .t { font-size: 15px; font-weight: 600; color: var(--fg); margin-bottom: 3px; }

.diag-sent-confirm .ds-txt .d { font-size: 12.5px; color: var(--fg-3); font-family: var(--mono); }

.diag-update label { display:block; font-size: 13px; font-weight: 600; color: var(--fg-2); margin-bottom: 8px; }

.btn-diag-update { margin-top: 12px; display:inline-flex; align-items:center; gap:7px; background: var(--bg-muted); color: var(--fg); font-weight:600; font-size:13.5px; padding:10px 18px; border-radius: var(--r-sm); border:1px solid var(--border-2); }

/* estrutura: more breathing room between blocks */

.app[data-plan="estrutura"] .section { margin-bottom: 52px; }

/* NOTE: a regra legada `.app[data-plan="estrutura"] .wa-foot { display:none }`
   foi removida (P0-19) — o Estrutura tem seu próprio grupo (whatsapp_group_estrutura)
   e o CTA do rodapé deve aparecer quando o link estiver cadastrado, como nos
   demais tiers. O WhatsAppFoot já se oculta sozinho se a chave estiver vazia. */

.billing-intro { font-size: 13px; color: var(--fg-2); margin-bottom: 12px; }

/* ===== Masterclass "A Jornada" — destaque secundário (card claro, acento dourado) ===== */

.mc-banner {
  position: relative; overflow: hidden; border-radius: var(--r-lg); margin-bottom: 0;
  background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--gold);
  box-shadow: var(--sh-sm);
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
  padding: 22px 26px;
}

.mc-glow { display: none; }

.mc-left { position: relative; z-index: 2; }

.mc-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--gold-deep); margin-bottom: 9px; }

.mc-tag .pdot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.mc-title { font-size: 19px; font-weight: 700; color: var(--fg); line-height: 1.22; letter-spacing: -0.01em; margin-bottom: 7px; max-width: 560px; }

.mc-sub { font-size: 13.5px; color: var(--fg-2); line-height: 1.5; max-width: 540px; margin-bottom: 13px; }

.mc-meta { display: flex; flex-wrap: wrap; gap: 14px; }

.mc-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--fg-3); font-weight: 500; }

.mc-chip svg { width: 14px; height: 14px; color: var(--gold-deep); }

.mc-right { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-end; text-align: right; min-width: 170px; }

.mc-price { display: flex; align-items: baseline; gap: 9px; margin-bottom: 12px; }

.mc-from { font-size: 13px; color: var(--fg-3); text-decoration: line-through; font-family: var(--mono); }

.mc-now { font-family: var(--mono); font-size: 34px; font-weight: 800; color: var(--fg); line-height: 1; letter-spacing: -0.02em; }

.mc-now .cur { font-size: 16px; font-weight: 700; color: var(--gold-deep); margin-right: 2px; }

.mc-cta {
  display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #2b2000;
  font-weight: 700; font-size: 14px; padding: 11px 20px; border-radius: var(--r-sm); white-space: nowrap;
  transition: transform var(--ease) .16s, box-shadow var(--ease) .16s;
}

.mc-cta svg { width: 16px; height: 16px; }

.mc-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(212,160,23,.32); }

.mc-cta.done { background: rgba(34,197,94,.12); color: var(--success); border: 1px solid rgba(34,197,94,.3); }

.mc-cta-disabled { background: var(--card); color: var(--fg-3); border: 1px solid var(--border); cursor: not-allowed; box-shadow: none; }

.mc-cta-disabled:hover { transform: none; box-shadow: none; }

.mc-note { font-size: 11px; color: var(--fg-3); margin-top: 8px; }

/* Capa da masterclass (P0-20) — imagem chamativa no topo da coluna direita. */

.mc-image {
  width: 220px; max-width: 100%; aspect-ratio: 16 / 9; -o-object-fit: cover; object-fit: cover;
  border-radius: var(--r-sm); border: 1px solid var(--border); margin-bottom: 14px; display: block;
}

@media (max-width: 760px) {
  .mc-banner { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .mc-right { align-items: flex-start; text-align: left; }
  .mc-cta { width: 100%; justify-content: center; }
  .mc-image { width: 100%; }
}

.video-thumb .hs-ended-badge { position: absolute; top: 8px; left: 8px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--fg-2); background: rgba(255,255,255,.92); padding: 4px 9px; border-radius: var(--r-pill); }

/* ===== Imersões page: highlight banner for current month ===== */

/* P0-23: card de destaque horizontal estilo welcome-hero — conteúdo à esquerda
   (eyebrow, título, host, countdown, CTA), capa real da imersão à direita como
   mídia lateral chamativa (.ib-bg, antes era fundo full-bleed). */

.imersao-banner {
  position: relative; overflow: hidden; border-radius: var(--r-xl); margin-bottom: 38px;
  border: 1.5px solid rgba(212,160,23,.5);
  background: linear-gradient(120deg, #18181B 0%, #1A2440 50%, #1F3463 100%);
  display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 36px; align-items: center; padding: 34px 38px;
}

.imersao-banner::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(212,160,23,.16), transparent 70%); pointer-events: none;
}

.imersao-banner .ib-wm { position: absolute; right: -20px; top: -24px; width: 200px; opacity: .1; pointer-events: none; }

.imersao-banner .ib-wm svg { width: 100%; }

.imersao-banner .ib-left { position: relative; z-index: 2; }

.imersao-banner .ib-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--gold); display: inline-flex; align-items: center; gap: 7px; margin-bottom: 11px; }

.imersao-banner .ib-eyebrow .pdot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.imersao-banner h2 { font-size: 28px; font-weight: 800; color: #fff; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 12px; max-width: 520px; }

.imersao-banner .ib-host { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #C7CBD4; margin-bottom: 22px; }

.imersao-banner .ib-host .av { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: #3d2c00; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; }

/* mídia lateral: capa real da imersão (proporcional 16/10, estilo .wh-video) */

.imersao-banner .ib-bg {
  position: relative; z-index: 2; aspect-ratio: 16/10; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.14); box-shadow: 0 20px 50px rgba(0,0,0,.45);
  background: linear-gradient(135deg, #1A2D4D, #2B6BD9);
}

.imersao-banner .ib-bg img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; display: block; }

.imersao-banner .ib-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,12,18,.45) 0%, transparent 50%); pointer-events: none; }

.ib-countdown { display: flex; gap: 12px; margin-bottom: 18px; }

.ib-countdown .u { text-align: center; }

.ib-countdown .u .v { font-family: var(--mono); font-size: 30px; font-weight: 700; color: #fff; line-height: 1; }

.ib-countdown .u .l { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: #9AA3B4; margin-top: 5px; }

.ib-countdown .sep { font-family: var(--mono); font-size: 26px; color: rgba(255,255,255,.3); }

.ib-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-ib-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #2b2000; font-weight: 700; font-size: 14px; padding: 12px 20px; border-radius: var(--r-sm); transition: transform var(--ease) .16s, box-shadow var(--ease) .16s; }

.btn-ib-primary svg { width: 16px; height: 16px; }

.btn-ib-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(212,160,23,.4); }

.btn-ib-ghost { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); font-weight: 600; font-size: 14px; padding: 12px 18px; border-radius: var(--r-sm); }

.btn-ib-ghost svg { width: 16px; height: 16px; }

@media (max-width: 860px) {
  .imersao-banner { grid-template-columns: 1fr; gap: 22px; padding: 26px; }
  .imersao-banner .ib-bg { order: -1; aspect-ratio: 16/9; }
  .imersao-banner h2 { font-size: 24px; }
}

/* ===== Imersão page: countdown + agenda for upcoming ===== */

.im-upcoming { background: var(--bg-muted); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px 22px; margin-bottom: 18px; }

.im-upcoming .iu-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-deep); margin-bottom: 12px; display: flex; align-items: center; gap: 7px; }

.im-upcoming .iu-label svg { width: 14px; height: 14px; }

.im-cd { display: flex; gap: 12px; margin-bottom: 16px; }

.im-cd .u { text-align: center; }

.im-cd .u .v { font-family: var(--mono); font-size: 26px; font-weight: 700; color: var(--fg); line-height: 1; }

.im-cd .u .l { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--fg-3); margin-top: 5px; }

.im-cd .sep { font-family: var(--mono); font-size: 22px; color: var(--border-strong); }

.btn-im-agenda { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff; font-weight: 600; font-size: 13.5px; padding: 11px 18px; border-radius: var(--r-sm); transition: background var(--ease) .16s; }

.btn-im-agenda svg { width: 16px; height: 16px; }

.btn-im-agenda:hover { background: var(--blue-hover); }

.im-upcoming.hidden { display: none; }

/* ============================================================
   ASSINATURA (gerenciar plano)
   ============================================================ */

.assinatura-grid { display: grid; grid-template-columns: 1fr 320px; gap: 26px; align-items: start; }

.assinatura-main { display: flex; flex-direction: column; gap: 22px; }

.sub-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-sm); padding: 26px; }

.sub-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; }

.sub-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--blue); display: block; margin-bottom: 5px; }

.sub-card-head h2 { font-size: 22px; font-weight: 700; }

.sub-status { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--success); background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25); padding: 5px 12px; border-radius: var(--r-pill); white-space: nowrap; }

.sub-status .d { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }

.sub-rows { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: var(--r-sm); overflow: hidden; margin-bottom: 22px; }

.sub-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 16px; background: var(--bg-soft); }

.sub-row .k { font-size: 13.5px; color: var(--fg-2); }

.sub-row .v { font-size: 14px; font-weight: 600; color: var(--fg); }

.sub-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.sub-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; padding: 11px 18px; border-radius: var(--r-sm); transition: all var(--ease) .16s; }

.sub-btn svg { width: 16px; height: 16px; }

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

.sub-btn.primary:hover { background: var(--blue-hover); transform: translateY(-1px); }

.sub-btn.ghost { background: var(--bg-muted); color: var(--fg); border: 1px solid var(--border-2); }

.sub-btn.ghost:hover { border-color: var(--fg-3); }

.sub-btn.danger { background: transparent; color: var(--fg-3); border: 1px solid var(--border-2); }

.sub-btn.danger:hover { color: var(--danger); border-color: var(--danger); }

.sub-h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }

.invoice-list { display: flex; flex-direction: column; }

.invoice { display: grid; grid-template-columns: 100px 1fr auto auto; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--border); }

.invoice:last-child { border-bottom: none; }

.invoice .inv-date { font-size: 12.5px; color: var(--fg-3); }

.invoice .inv-desc { font-size: 13.5px; color: var(--fg); }

.invoice .inv-amt { font-size: 13.5px; font-weight: 600; color: var(--fg); }

.invoice .inv-dl { width: 32px; height: 32px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--fg-3); cursor: pointer; transition: background var(--ease) .16s, color var(--ease) .16s; }

.invoice .inv-dl:hover { background: var(--bg-muted); color: var(--blue); }

.invoice .inv-dl svg { width: 16px; height: 16px; }

.assinatura-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 84px; }

.sub-upsell { position: relative; overflow: hidden; background: linear-gradient(150deg, #1f2d4a, #18181b); border: 1px solid var(--side-border); border-radius: var(--r-lg); padding: 24px; }

.sub-upsell .su-ic { width: 40px; height: 40px; border-radius: var(--r-sm); background: rgba(212,160,23,.14); border: 1px solid rgba(212,160,23,.32); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }

.sub-upsell .su-ic svg { width: 20px; height: 20px; color: var(--gold); }

.sub-upsell h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 7px; }

.sub-upsell p { font-size: 13px; color: #C7CBD4; line-height: 1.5; margin-bottom: 16px; }

.su-btn { width: 100%; background: var(--gold); color: #2b2000; font-weight: 700; font-size: 13.5px; padding: 11px; border-radius: var(--r-sm); transition: transform var(--ease) .16s, box-shadow var(--ease) .16s; }

.su-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(212,160,23,.32); }

.sub-help { display: flex; gap: 12px; align-items: flex-start; background: var(--bg-muted); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px; }

.sub-help svg { width: 20px; height: 20px; color: var(--fg-3); flex-shrink: 0; margin-top: 1px; }

.sub-help .sh-t { display: block; font-size: 13.5px; font-weight: 600; color: var(--fg); margin-bottom: 2px; }

.sub-help .sh-d { font-size: 12.5px; color: var(--fg-3); line-height: 1.45; }

.sub-upsell.hidden { display: none; }

/* ============================================================
   SUCCESS MODAL (pós-compra)
   ============================================================ */

.success-backdrop { background: rgba(10,10,12,.78); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }

.success-modal {
  position: relative; width: min(460px, 94vw); background: var(--card);
  border-radius: var(--r-xl); padding: 44px 40px 36px; text-align: center;
  box-shadow: var(--sh-xl); overflow: hidden;
  transform: scale(.9); opacity: 0; transition: transform .42s var(--ease-bounce, cubic-bezier(.34,1.56,.64,1)), opacity .3s var(--ease);
}

.success-backdrop.open .success-modal { transform: scale(1); opacity: 1; }

.success-glow { position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 320px; height: 220px; background: radial-gradient(circle, rgba(212,160,23,.22), transparent 70%); pointer-events: none; }

.success-check {
  position: relative; width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 22px;
  background: linear-gradient(150deg, var(--gold), #E8C063); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(212,160,23,.4);
  transform: scale(0); animation: success-pop .5s var(--ease-bounce, cubic-bezier(.34,1.56,.64,1)) .15s forwards;
}

.success-check svg { width: 38px; height: 38px; color: #18181B; stroke-width: 3; }

@keyframes success-pop { to { transform: scale(1); } }

.success-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-deep); display: block; margin-bottom: 10px; }

.success-modal h2 { font-size: 25px; font-weight: 800; color: var(--fg); margin-bottom: 10px; letter-spacing: -0.02em; }

.success-modal > p { font-size: 14.5px; color: var(--fg-2); line-height: 1.55; max-width: 360px; margin: 0 auto 22px; }

.success-list { list-style: none; text-align: left; max-width: 320px; margin: 0 auto 26px; display: flex; flex-direction: column; gap: 11px; }

.success-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--fg); line-height: 1.4; }

.success-list li .lc { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; background: rgba(212,160,23,.15); display: flex; align-items: center; justify-content: center; margin-top: 1px; }

.success-list li .lc svg { width: 12px; height: 12px; color: var(--gold-deep); }

.success-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff; font-weight: 700; font-size: 14.5px; padding: 14px 28px; border-radius: var(--r-sm); transition: background var(--ease) .16s, transform var(--ease) .16s; }

.success-cta svg { width: 17px; height: 17px; transition: transform var(--ease) .18s; }

.success-cta:hover { background: var(--blue-hover); transform: translateY(-1px); }

.success-cta:hover svg { transform: translateX(3px); }

@media (max-width: 980px) {
  .assinatura-grid { grid-template-columns: 1fr; }
  .assinatura-side { position: static; }
}

/* ============================================================
   WELCOME HERO (free, primeira visita) — ponte LP → plataforma
   ============================================================ */

/* show hero only for un-welcomed free users; greeting takes over after */

.app.welcomed #welcomeHero { display: none !important; }

.app:not(.welcomed) #view-inicio .welcome.free-only { display: none; }

.welcome-hero {
  position: relative; overflow: hidden; border-radius: var(--r-xl); margin-bottom: 30px;
  background: linear-gradient(125deg, #18181B 0%, #1A2D4D 52%, #234d8f 105%);
  border: 1px solid rgba(255,255,255,.08);
  display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 40px; align-items: center;
  padding: 40px 44px;
}

.welcome-hero::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,160,23,.18), transparent 70%); pointer-events: none;
}

.wh-dismiss {
  position: absolute; top: 16px; right: 16px; z-index: 5; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); transition: all var(--ease) .16s;
}

.wh-dismiss svg { width: 17px; height: 17px; }

.wh-dismiss:hover { color: #fff; background: rgba(255,255,255,.14); }

.wh-left { position: relative; z-index: 2; }

.wh-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 16px;
}

.wh-eyebrow .wh-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(212,160,23,.22); }

.welcome-hero h1 { font-size: 32px; font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 12px; }

.welcome-hero h1 .u-first { color: var(--gold); }

.wh-sub { font-size: 15.5px; color: #C7CBD4; line-height: 1.55; max-width: 460px; margin-bottom: 24px; }

.wh-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.wh-step { display: flex; gap: 14px; align-items: flex-start; }

.wh-step .n {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; font-family: var(--mono); font-weight: 700; font-size: 14px;
  color: var(--gold); background: rgba(212,160,23,.12); border: 1px solid rgba(212,160,23,.32);
  display: flex; align-items: center; justify-content: center;
}

/* P0-24 AC5: estado de progresso do passo (concluído) — badge vira check verde. */

.wh-step.done .n {
  color: #1f9d57; background: rgba(31,157,87,.14); border-color: rgba(31,157,87,.4);
}

.wh-step.done .wh-step-tx b { color: var(--side-fg-2); }

.wh-step-tx { display: flex; flex-direction: column; line-height: 1.35; padding-top: 2px; }

.wh-step-tx b { font-size: 14.5px; font-weight: 600; color: #fff; }

.wh-step-tx span { font-size: 13px; color: var(--side-fg-2); }

.wh-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.wh-cta {
  display: inline-flex; align-items: center; gap: 9px; background: var(--blue); color: #fff;
  font-weight: 700; font-size: 15px; padding: 14px 26px; border-radius: var(--r-sm);
  transition: background var(--ease) .16s, transform var(--ease) .16s, box-shadow var(--ease) .16s;
}

.wh-cta svg { width: 17px; height: 17px; transition: transform var(--ease) .18s; }

.wh-cta:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(43,107,217,.42); }

.wh-cta:hover svg { transform: translateX(3px); }

.wh-secondary {
  display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: 14px;
  padding: 14px 20px; border-radius: var(--r-sm); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  transition: background var(--ease) .16s;
}

.wh-secondary svg { width: 15px; height: 15px; color: var(--gold); }

.wh-secondary:hover { background: rgba(255,255,255,.16); }

.wh-video {
  position: relative; z-index: 2; aspect-ratio: 16/10; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.14); box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.wh-video img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; -o-object-position: 50% 26%; object-position: 50% 26%; }

.wh-video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,12,18,.7) 0%, transparent 45%); pointer-events: none; }

.wh-vtag {
  position: absolute; top: 14px; left: 14px; z-index: 3; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: #fff; background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.22); padding: 6px 12px; border-radius: var(--r-pill);
}

.wh-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 70px; height: 70px; border-radius: 50%; background: rgba(255,255,255,.18); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center;
  transition: transform var(--ease) .2s, background var(--ease) .2s;
}

.wh-play svg { width: 28px; height: 28px; color: #fff; margin-left: 4px; }

.wh-play:hover { transform: translate(-50%,-50%) scale(1.08); background: rgba(255,255,255,.28); }

.wh-byline { position: absolute; bottom: 14px; left: 16px; z-index: 3; font-size: 12.5px; font-weight: 600; color: #fff; }

@media (max-width: 980px) {
  .welcome-hero { grid-template-columns: 1fr; gap: 24px; padding: 30px 26px; }
  .wh-video { order: -1; aspect-ratio: 16/9; }
  .welcome-hero h1 { font-size: 27px; }
}

/* discreet reopen affordance (free, after dismiss) */

.wh-reopen {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 12px;
  font-size: 12.5px; font-weight: 600; color: var(--fg-2);
  background: var(--bg-muted); border: 1px solid var(--border); padding: 7px 13px; border-radius: var(--r-pill);
  transition: border-color var(--ease) .16s, color var(--ease) .16s, background var(--ease) .16s;
}

.wh-reopen svg { width: 15px; height: 15px; color: var(--gold-deep); }

.wh-reopen:hover { border-color: var(--gold); color: var(--fg); background: rgba(212,160,23,.06); }

/* ============================================================
   SOLUÇÕES INCUCA (ecossistema)
   ============================================================ */

.sol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 26px; }

.sol-card {
  position: relative; overflow: hidden; border-radius: var(--r-xl); padding: 32px;
  display: flex; flex-direction: column; color: #fff;
  border: 1px solid rgba(255,255,255,.1);
}

.sol-intelligence { background: linear-gradient(150deg, #14233f 0%, #1c3a6e 60%, #2B6BD9 130%); }

.sol-authority { background: linear-gradient(150deg, #16181d 0%, #1e2433 55%, #2d3550 120%); }

.sol-card::after {
  content: ""; position: absolute; right: -90px; top: -90px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,.1), transparent 70%); pointer-events: none;
}

.sol-head { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; position: relative; z-index: 2; }

.sol-mark { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; opacity: .95; }

.sol-mark svg { width: 100%; height: auto; }

.sol-name { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; }

.sol-kind { margin-left: auto; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 5px 11px; border-radius: var(--r-pill); }

.sol-title { font-size: 22px; font-weight: 700; line-height: 1.2; margin-bottom: 12px; position: relative; z-index: 2; letter-spacing: -0.01em; }

.sol-desc { font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.6; margin-bottom: 24px; position: relative; z-index: 2; flex: 1; }

.sol-stats { display: flex; gap: 26px; margin-bottom: 26px; position: relative; z-index: 2; }

.sol-stat { display: flex; flex-direction: column; gap: 3px; }

.sol-stat .v { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }

.sol-stat .l { font-size: 12px; color: rgba(255,255,255,.6); }

.sol-cta {
  display: inline-flex; align-items: center; gap: 9px; align-self: flex-start; position: relative; z-index: 2;
  font-weight: 700; font-size: 14.5px; padding: 13px 22px; border-radius: var(--r-sm);
  transition: transform var(--ease) .16s, box-shadow var(--ease) .16s, background var(--ease) .16s;
}

.sol-cta svg { width: 16px; height: 16px; transition: transform var(--ease) .18s; }

.sol-cta.blue { background: #fff; color: #15233f; }

.sol-authority .sol-cta.blue { color: #1c2030; }

.sol-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.35); }

.sol-cta:hover svg { transform: translate(2px,-2px); }

/* RevOps — banner vermelho (carro-chefe) */

.revops-banner {
  position: relative; overflow: hidden; border-radius: var(--r-xl); padding: 40px 44px;
  background: linear-gradient(120deg, #2a0c0c 0%, #8c1d1a 48%, #c62b25 110%);
  display: grid; grid-template-columns: 1.5fr auto; gap: 40px; align-items: center;
  border: 1px solid rgba(255,255,255,.1);
}

.revops-glow { position: absolute; right: 12%; top: -70px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%); pointer-events: none; }

.revops-mark { position: absolute; right: -24px; bottom: -30px; width: 230px; opacity: .12; z-index: 1; }

.revops-mark svg { width: 100%; }

.revops-content { position: relative; z-index: 2; }

.revops-eyebrow { display: inline-block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #ffd9d6; margin-bottom: 14px; }

.revops-banner h2 { font-size: 28px; font-weight: 800; color: #fff; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 12px; max-width: 620px; }

.revops-banner > .revops-content > p { font-size: 15px; color: rgba(255,255,255,.86); line-height: 1.55; max-width: 560px; margin-bottom: 20px; }

.revops-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.revops-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: #fff; }

.revops-list li svg { width: 17px; height: 17px; color: #fff; background: rgba(255,255,255,.18); border-radius: 50%; padding: 3px; flex-shrink: 0; }

.revops-action { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; text-align: right; }

.revops-cta {
  display: inline-flex; align-items: center; gap: 9px; background: #fff; color: #b21f1a;
  font-weight: 800; font-size: 15.5px; padding: 15px 28px; border-radius: var(--r-sm); white-space: nowrap;
  transition: transform var(--ease) .16s, box-shadow var(--ease) .16s;
}

.revops-cta svg { width: 17px; height: 17px; transition: transform var(--ease) .18s; }

.revops-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,.4); }

.revops-cta:hover svg { transform: translate(2px,-2px); }

.revops-note { font-size: 12.5px; color: rgba(255,255,255,.72); max-width: 200px; }

@media (max-width: 980px) {
  .sol-grid { grid-template-columns: 1fr; }
  .revops-banner { grid-template-columns: 1fr; gap: 26px; padding: 32px 28px; }
  .revops-action { align-items: flex-start; text-align: left; }
}

/* ============================================================
   FORM SYSTEM (perfil edit + aplicação Conselho)
   ============================================================ */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-grid.one { grid-template-columns: 1fr; }

.ffield { display: flex; flex-direction: column; }

.ffield.full { grid-column: 1 / -1; }

.ffield label { font-size: 12.5px; font-weight: 600; color: var(--fg-2); margin-bottom: 7px; }

.ffield label .req { color: var(--blue); }

.ffield input, .ffield select, .ffield textarea {
  width: 100%; font-family: var(--font); font-size: 14px; color: var(--fg);
  background: var(--bg-soft); border: 1px solid var(--border-2); border-radius: var(--r-sm);
  padding: 11px 13px; transition: border-color var(--ease) .16s, box-shadow var(--ease) .16s;
}

.ffield textarea { resize: vertical; min-height: 84px; }

.ffield select { -moz-appearance: none; appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8A93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 38px;
}

.ffield input:focus, .ffield select:focus, .ffield textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,107,217,.12); }

.ffield .fhint { font-size: 11.5px; color: var(--fg-3); margin-top: 6px; }

.form-section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--blue); margin: 8px 0 2px; display: flex; align-items: center; gap: 8px; }

.form-section-label:not(:first-child) { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--border); }

.form-actions { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }

.fbtn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; padding: 12px 22px; border-radius: var(--r-sm); transition: all var(--ease) .16s; }

.fbtn svg { width: 16px; height: 16px; }

.fbtn.primary { background: var(--blue); color: #fff; }

.fbtn.primary:hover { background: var(--blue-hover); transform: translateY(-1px); }

.fbtn.ghost { background: var(--bg-muted); color: var(--fg); border: 1px solid var(--border-2); }

.fbtn.ghost:hover { border-color: var(--fg-3); }

/* profile completeness meter */

.profile-complete { display: flex; align-items: center; gap: 16px; background: linear-gradient(120deg, #18181B, #1f3463); border-radius: var(--r-lg); padding: 18px 22px; margin-bottom: 22px; }

.profile-complete.full { background: linear-gradient(120deg, #14331f, #1b7a45); }

.pc-ring { position: relative; width: 52px; height: 52px; flex-shrink: 0; }

.pc-ring svg { transform: rotate(-90deg); }

.pc-ring .pc-num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 13px; font-weight: 700; color: #fff; }

.profile-complete .pc-text { flex: 1; }

.profile-complete .pc-text .t { font-size: 14.5px; font-weight: 600; color: #fff; margin-bottom: 2px; }

.profile-complete .pc-text .s { font-size: 12.5px; color: rgba(255,255,255,.7); }

.profile-complete .pc-btn { background: var(--gold); color: #2b2000; font-weight: 700; font-size: 13px; padding: 10px 18px; border-radius: var(--r-sm); white-space: nowrap; transition: transform var(--ease) .16s; }

.profile-complete .pc-btn:hover { transform: translateY(-1px); }

.profile-complete.full .pc-btn { display: none; }

/* profile read view: grouped fields */

.profile-fields.rich { grid-template-columns: 1fr 1fr; }

.pfield .val.empty { color: var(--fg-3); font-style: italic; }

.pgroup-label { grid-column: 1 / -1; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--fg-3); margin-top: 8px; }

.pgroup-label:first-child { margin-top: 0; }

/* P0-7 — utilitário de empilhamento vertical de cards/seções.
   Mesma escala do design (.profile-col { gap: 22px }). Usado onde
   vários .section-card empilham sem margin própria (margin:0 global).
   Filhos diretos têm margin vertical zerada para que só o gap controle
   o ritmo (evita 22px do gap + 22px/40px de margin própria). */

.v-stack { display: flex; flex-direction: column; gap: 22px; }

.v-stack > * { margin-top: 0; margin-bottom: 0; }

/* P0-7 — feedback de salvar do perfil. Sem CSS antes, com margin:0
   global ficavam colados ao .profile-top / aos campos. */

.save-success, .save-error { font-size: 13.5px; font-weight: 600; margin: 14px 0; }

.save-success { color: var(--green, #1b7a45); }

.save-error { color: var(--red, #c0392b); }

/* P0-7 — título de seção das telas admin/analytics (sem equivalente 1:1
   no design). Mesma escala do design (.sec-head h2 = 18px/700,
   .sec-head margin-bottom: 16px). Substitui inline style repetido. */

.admin-section-title { font-size: 18px; font-weight: 700; color: var(--fg); margin-bottom: 16px; }

/* Sub-navegação do admin em cards (P0-9, AC5) */

.admin-nav-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.admin-nav-card {
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color var(--ease) .16s, transform var(--ease) .16s;
}

.admin-nav-card:hover { border-color: var(--fg-3); transform: translateY(-2px); }

.admin-nav-title { font-size: 15px; font-weight: 700; color: var(--fg); }

.admin-nav-title::after { content: ' →'; color: var(--fg-3); font-weight: 600; }

.admin-nav-desc { font-size: 12.5px; line-height: 1.4; }

/* profile edit form hidden by default */

#profileEdit { display: none; }

.profile-card.editing #profileView { display: none; }

.profile-card.editing #profileEdit { display: block; }

/* ============================================================
   APLICAÇÃO CONSELHO
   ============================================================ */

.aplic-grid { display: grid; grid-template-columns: 1fr 320px; gap: 26px; align-items: start; }

.aplic-main { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-sm); padding: 30px; }

.aplic-intro { font-size: 14.5px; color: var(--fg-2); line-height: 1.6; margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }

.aplic-aside { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 84px; }

.aplic-hero { position: relative; overflow: hidden; border-radius: var(--r-lg); padding: 26px; background: linear-gradient(150deg, #18181B 0%, #1A2440 60%, #1F3463 120%); color: #fff; }

.aplic-hero::after { content: ""; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(212,160,23,.2), transparent 70%); }

.aplic-hero .ah-ic { width: 44px; height: 44px; border-radius: var(--r-md); background: rgba(212,160,23,.14); border: 1px solid rgba(212,160,23,.34); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; position: relative; }

.aplic-hero .ah-ic svg { width: 22px; height: 22px; color: var(--gold); }

.aplic-hero h3 { font-size: 18px; font-weight: 700; line-height: 1.25; margin-bottom: 10px; position: relative; }

.aplic-hero p { font-size: 13px; color: #C7CBD4; line-height: 1.55; position: relative; }

.aplic-criteria { background: var(--bg-muted); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; }

.aplic-criteria h4 { font-size: 13px; font-weight: 700; margin-bottom: 14px; }

.aplic-criteria li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--fg-2); line-height: 1.45; margin-bottom: 10px; list-style: none; }

.aplic-criteria li:last-child { margin-bottom: 0; }

.aplic-criteria li svg { width: 15px; height: 15px; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }

.aplic-sent { display: none; text-align: center; padding: 30px 24px; }

.aplic-main.sent .aplic-form { display: none; }

.aplic-main.sent .aplic-sent { display: block; }

.aplic-sent .as-check { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; background: linear-gradient(150deg, var(--gold), #E8C063); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(212,160,23,.36); }

.aplic-sent .as-check svg { width: 32px; height: 32px; color: #18181B; stroke-width: 3; }

.aplic-sent h2 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }

.aplic-sent p { font-size: 14.5px; color: var(--fg-2); line-height: 1.55; max-width: 420px; margin: 0 auto 20px; }

.aplic-sent .as-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-muted); color: var(--fg); font-weight: 600; font-size: 14px; padding: 12px 22px; border-radius: var(--r-sm); border: 1px solid var(--border-2); }

@media (max-width: 980px) {
  .aplic-grid { grid-template-columns: 1fr; }
  .aplic-aside { position: static; }
}

@media (max-width: 680px) {
  .form-grid { grid-template-columns: 1fr; }
  .profile-fields.rich { grid-template-columns: 1fr; }
}

/* ============================================================
   Reveal class is a no-op: content is always visible.
   (Opacity-gated entrances break in hidden tabs / print / capture
   because a running-but-frozen animation resolves to its 0% frame.)
   ============================================================ */

.reveal { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .badge-live .pdot, .btn-evo::after { animation: none; }
}

/* ----- Dark-specific surface fixes ----- */

[data-theme="dark"] .topbar { background: rgba(19,19,22,.85); }

[data-theme="dark"] .video-body .tag,
[data-theme="dark"] .content-row .cr-body .cs .pill,
[data-theme="dark"] .sec-head .more,
[data-theme="dark"] .btn-edit,
[data-theme="dark"] .checkout-back:hover { color: #7EA6E8; }

[data-theme="dark"] .fchip.active { background: var(--blue); border-color: var(--blue); }

[data-theme="dark"] .act-item .ai-icon.blue { background: rgba(43,107,217,.2); color: #7EA6E8; }

[data-theme="dark"] .btn-ghost { background: var(--bg-muted); color: var(--fg); border-color: var(--border-2); }

[data-theme="dark"] .btn-ghost:hover { background: var(--border); }

/* theme toggle button reuses .icon-btn */

.theme-toggle .moon { display: none; }

[data-theme="dark"] .theme-toggle .sun { display: none; }

[data-theme="dark"] .theme-toggle .moon { display: block; }

/* ============================================================
   Mobile drawer + responsive
   ============================================================ */

.drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(10,10,12,.5); z-index: 49; }

.drawer-overlay.open { display: block; }

/* offer banner stacks (photo on top) only on genuinely narrow screens */

@media (max-width: 980px) {
  .evo-banner { grid-template-columns: 1fr; gap: 0; padding: 0; min-height: 0; }
  .evo-photo { position: relative; width: 100%; min-width: 0; height: 240px; order: -1; }
  .evo-photo img { -o-object-position: 50% 24%; object-position: 50% 24%; }
  .evo-photo::before { background: linear-gradient(0deg, #18181B 0%, rgba(24,24,27,.2) 42%, transparent 72%); }
  .evo-content { padding: 28px 28px 32px; }
}

@media (max-width: 1100px) {
  .video-grid, .lives-grid { grid-template-columns: repeat(2, 1fr); }
  .live-hero { grid-template-columns: 1fr; }
  .live-thumb { aspect-ratio: 16/8; }
  .checkout-grid { grid-template-columns: 1fr; gap: 22px; }
  .order-card { position: static; }
  .admin-grid { grid-template-columns: 1fr; gap: 20px; }
  .admin-form { position: static; }
  .profile-layout { grid-template-columns: 1fr; }
  .next-live-strip { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .sidebar { transform: translateX(-100%); transition: transform var(--ease) .26s; }
  .sidebar.open { transform: translateX(0); }
  .main { margin-left: 0; }
  .topbar .menu-btn { display: flex; }
  .topbar { padding: 0 18px; }
  .content { padding: 26px 18px 50px; }
  .video-grid, .lives-grid, .profile-fields, .stat-row { grid-template-columns: 1fr; }
  .welcome h1 { font-size: 24px; }
  .evo-left h2, .evo-content h2 { font-size: 25px; }
  .evo-banner { padding: 30px 24px; }
  .pay-row2 { grid-template-columns: 1fr; }
  .plan-value { padding: 28px 24px; }
}

/* 4. shadcn/ui overrides */

/* shadcn/ui Component Overrides — Placeholder */

/* This file is reserved for reskinning shadcn/ui components to match demo design */

/* Currently empty — will be populated as components are added */

/* 5. Tailwind directives */

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media (min-width: 1400px) {

  .container {
    max-width: 1400px;
  }
}

.\!visible {
  visibility: visible !important;
}

.visible {
  visibility: visible;
}

.collapse {
  visibility: collapse;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0px;
}

.-top-11 {
  top: -2.75rem;
}

.right-0 {
  right: 0px;
}

.z-10 {
  z-index: 10;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-16 {
  height: 4rem;
}

.h-9 {
  height: 2.25rem;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.w-16 {
  width: 4rem;
}

.w-9 {
  width: 2.25rem;
}

.w-full {
  width: 100%;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-md {
  max-width: 28rem;
}

.shrink-0 {
  flex-shrink: 0;
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes pulse {

  50% {
    opacity: .5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.resize {
  resize: both;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border {
  border-width: 1px;
}

.bg-black\/40 {
  background-color: rgb(0 0 0 / 0.4);
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.text-center {
  text-align: center;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-\[15px\] {
  font-size: 15px;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.italic {
  font-style: italic;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}

.outline {
  outline-style: solid;
}

.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

@keyframes enter {

  from {
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}

@keyframes exit {

  to {
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}

.running {
  animation-play-state: running;
}
