    /* --------------------------------------------------
       SISTEMA DE DESIGN & TOKENS CSS (ULTRA-CLEAN / LIGHT MODE)
       -------------------------------------------------- */
    :root {
      --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      --glass-bg: rgba(255, 255, 255, 0.85);
      --glass-border: rgba(16, 185, 129, 0.08);
      --glass-glow: rgba(16, 185, 129, 0.03);
      
      --primary: #10b981; /* Verde Esmeralda */
      --primary-hover: #059669;
      --primary-glow: rgba(16, 185, 129, 0.15);
      
      --secondary: #7c3aed; /* Violeta */
      --secondary-glow: rgba(124, 58, 237, 0.12);
      
      --success: #10b981;
      --warning: #f59e0b;
      --danger: #ef4444;
      
      --text-main: #0f172a;
      --text-muted: #64748b;
      --text-inverse: #ffffff;
      
      --font-outfit: 'Outfit', sans-serif;
      --font-inter: 'Inter', sans-serif;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    body {
      font-family: var(--font-inter);
      background: var(--bg-gradient);
      color: var(--text-main);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, .brand {
      font-family: var(--font-outfit);
      font-weight: 600;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.05);
    }
    ::-webkit-scrollbar-thumb {
      background: rgba(124, 58, 237, 0.2);
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: rgba(124, 58, 237, 0.4);
    }

    /* --------------------------------------------------
       NOTIFICAÇÕES & ALERTA EM TEMPO REAL (REGRA GLOBAL)
       -------------------------------------------------- */
    .error-banner {
      background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
      border-bottom: 2px solid var(--danger);
      color: #fff;
      padding: 12px 24px;
      font-family: var(--font-inter);
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      animation: slideDown 0.4s ease-out;
    }
    
    .hidden {
      display: none !important;
    }

    @keyframes slideDown {
      from { transform: translateY(-100%); }
      to { transform: translateY(0); }
    }

    /* --------------------------------------------------
       LAYOUT GERAL
       -------------------------------------------------- */
    header {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(124, 58, 237, 0.08);
      padding: 16px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 900;
    }

    .brand-container {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-logo {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px var(--primary-glow);
    }

    .brand-name {
      font-weight: 800;
      letter-spacing: 1px;
      color: var(--text-main);
    }

    .nav-tabs {
      display: flex;
      background: rgba(0, 0, 0, 0.03);
      padding: 4px;
      border-radius: 30px;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-btn {
      background: transparent;
      border: none;
      color: var(--text-muted);
      padding: 8px 24px;
      border-radius: 20px;
      cursor: pointer;
      font-family: var(--font-outfit);
      font-weight: 600;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .nav-btn.active {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: #fff;
      box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
    }

    .container {
      max-width: 1400px;
      margin: 32px auto;
      padding: 0 24px;
      flex: 1;
      width: 100%;
    }

    /* --------------------------------------------------
       PAINÉIS DE VISUALIZAÇÃO E GRIDS
       -------------------------------------------------- */
    .dashboard-grid {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 24px;
      align-items: start;
    }

    /* Cards de vidro */
    .glass-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 24px;
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.06);
      position: relative;
      overflow: hidden;
    }

    .glass-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.15), transparent);
    }

    /* --------------------------------------------------
       COMPONENTE: VÍDEO PLAYER EXPRESSO
       -------------------------------------------------- */
    .video-wrapper {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 16/9;
      background: #f1f5f9;
      border: 1px solid rgba(0, 0, 0, 0.05);
      margin-bottom: 16px;
    }

    .video-mock {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle, rgba(124,58,237,0.04) 0%, rgba(241,245,249,0.95) 100%);
      color: var(--text-main);
      text-align: center;
      padding: 16px;
    }

    .video-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid var(--primary);
      color: var(--primary);
      padding: 4px 10px;
      border-radius: 8px;
      font-size: 11px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 4px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .play-btn {
      width: 48px;
      height: 48px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 12px var(--primary-glow);
      transition: var(--transition);
      margin-bottom: 12px;
    }

    .play-btn:hover {
      transform: scale(1.1);
      background: var(--primary-hover);
    }

    /* --------------------------------------------------
       COMPONENTE: MÚLTIPLA SELEÇÃO DE PERFIL
       -------------------------------------------------- */
    .profile-selector {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .profile-item {
      background: rgba(255, 255, 255, 0.5);
      border: 1px solid var(--glass-border);
      padding: 16px;
      border-radius: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: var(--transition);
    }

    .profile-item:hover {
      background: rgba(255, 255, 255, 0.9);
      border-color: rgba(124, 58, 237, 0.2);
    }

    .profile-item.active {
      background: rgba(124, 58, 237, 0.05);
      border-color: var(--primary);
      box-shadow: 0 4px 12px var(--glass-glow);
    }

    .avatar {
      width: 46px;
      height: 46px;
      background: linear-gradient(135deg, #3b82f6 0%, var(--primary) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #fff;
    }

    .avatar-clickable {
      cursor: pointer;
      position: relative;
      transition: var(--transition);
    }
    .avatar-clickable:hover {
      opacity: 0.9;
      transform: scale(1.05);
    }
    .avatar-clickable:hover::after {
      content: 'Alterar';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.6);
      color: #fff;
      font-size: 9px;
      padding: 2px 0;
      text-align: center;
      font-family: var(--font-inter);
      font-weight: 600;
    }

    .profile-info {
      flex: 1;
    }

    .profile-name {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
    }

    .profile-sub {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* --------------------------------------------------
       COMPONENTE: MÓDULO DE ADERÊNCIA / COMPATIBILIDADE
       -------------------------------------------------- */
    .compatibility-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .compatibility-radial {
      position: relative;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: radial-gradient(closest-side, #ffffff 79%, transparent 80% 100%),
                  conic-gradient(var(--primary) 85%, rgba(0,0,0,0.05) 0);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .compatibility-value {
      font-family: var(--font-outfit);
      font-size: 18px;
      font-weight: 800;
      color: var(--primary);
    }

    .badge {
      display: inline-block;
      padding: 4px 10px;
      border-radius: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .badge-primary { background: rgba(124, 58, 237, 0.08); color: var(--primary); border: 1px solid rgba(124, 58, 237, 0.2); }
    .badge-success { background: rgba(16, 185, 129, 0.08); color: #059669; border: 1px solid rgba(16, 185, 129, 0.2); }
    .badge-warning { background: rgba(245, 158, 11, 0.08); color: #d97706; border: 1px solid rgba(245, 158, 11, 0.2); }

    .criteria-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 24px;
    }

    .criteria-item {
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(0,0,0,0.04);
      border-radius: 12px;
      padding: 12px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    }

    .criteria-label {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .criteria-val {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-main);
      margin-top: 6px;
    }

    /* --------------------------------------------------
       COMPONENTE: HISTÓRICO DE COMPORTAMENTO & TRAVA
       -------------------------------------------------- */
    .safety-block {
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.04) 0%, rgba(124, 58, 237, 0.02) 100%);
      border: 1px dashed rgba(239, 68, 68, 0.2);
      padding: 24px;
      border-radius: 16px;
      text-align: center;
      margin-bottom: 24px;
    }

    .safety-icon {
      width: 48px;
      height: 48px;
      background: rgba(239, 68, 68, 0.08);
      color: var(--danger);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px auto;
    }

    .safety-title {
      font-family: var(--font-outfit);
      font-size: 15px;
      font-weight: 700;
      color: #dc2626;
      margin-bottom: 8px;
    }

    .safety-text {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .metrics-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
      margin-bottom: 24px;
    }

    .metric-box {
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(0,0,0,0.04);
      border-radius: 12px;
      padding: 12px;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.02);
      position: relative;
    }
    
    .metric-box::after {
      content: attr(data-tooltip);
      position: absolute;
      bottom: 118%;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(15, 23, 42, 0.95);
      color: #fff;
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 10px;
      font-family: var(--font-inter);
      white-space: normal;
      width: 180px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.15);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 1000;
      text-align: center;
      font-weight: 500;
      line-height: 1.4;
    }
    
    .metric-box::before {
      content: '';
      position: absolute;
      bottom: 104%;
      left: 50%;
      transform: translateX(-50%);
      border-width: 6px;
      border-style: solid;
      border-color: rgba(15, 23, 42, 0.95) transparent transparent transparent;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 1000;
    }
    
    .metric-box:hover::after,
    .metric-box:hover::before {
      opacity: 1;
    }

    .metric-val {
      font-family: var(--font-outfit);
      font-size: 20px;
      font-weight: 800;
      color: var(--primary);
    }

    .metric-lbl {
      font-size: 10px;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-top: 4px;
    }

    /* --------------------------------------------------
       COMPONENTE: CHAT INTERNO E CONTROLES DE MATCH
       -------------------------------------------------- */
    .match-banner {
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(219, 39, 119, 0.08) 100%);
      border: 1px solid var(--primary);
      padding: 16px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      box-shadow: 0 4px 15px rgba(124, 58, 237, 0.05);
    }

    .match-banner-text {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
    }

    .chat-box {
      background: rgba(255, 255, 255, 0.5);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 16px;
      height: 280px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      margin-bottom: 12px;
    }

    .chat-messages {
      flex: 1;
      padding: 16px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .message {
      max-width: 80%;
      padding: 10px 14px;
      border-radius: 14px;
      font-size: 13px;
      line-height: 1.5;
    }

    .message.received {
      background: rgba(0, 0, 0, 0.05);
      align-self: flex-start;
      border-bottom-left-radius: 2px;
      color: var(--text-main);
    }

    .message.sent {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      align-self: flex-end;
      border-bottom-right-radius: 2px;
      color: #fff;
    }

    .chat-lock-container {
      background: rgba(239, 68, 68, 0.04);
      border: 1px solid rgba(239, 68, 68, 0.15);
      padding: 12px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .chat-lock-text {
      font-size: 12px;
      color: #b91c1c;
    }

    .chat-input-bar {
      display: flex;
      padding: 8px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      gap: 8px;
      background: rgba(255, 255, 255, 0.7);
    }

    .chat-input {
      flex: 1;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 20px;
      padding: 8px 16px;
      color: var(--text-main);
      font-size: 13px;
      outline: none;
      transition: var(--transition);
    }

    .chat-input:focus {
      border-color: var(--primary);
      background: #fff;
    }

    .send-btn {
      background: var(--primary);
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      cursor: pointer;
      transition: var(--transition);
    }

    .send-btn:hover {
      background: var(--primary-hover);
      transform: scale(1.05);
    }

    .send-btn:disabled {
      background: rgba(0, 0, 0, 0.05);
      color: var(--text-muted);
      cursor: not-allowed;
      transform: none;
    }

    /* --------------------------------------------------
       COMPONENTE: PAINEL DE APOIO A ENTREVISTAS EM TEMPO REAL
       -------------------------------------------------- */
    .interview-helper-card {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
      border: 1px solid rgba(16, 185, 129, 0.15);
      border-radius: 20px;
      padding: 20px;
      margin-top: 24px;
    }

    .interview-helper-title {
      font-family: var(--font-outfit);
      font-size: 15px;
      font-weight: 700;
      color: #059669;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }

    .helper-field {
      margin-bottom: 12px;
    }

    .helper-lbl {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-bottom: 6px;
      display: block;
    }

    .helper-input {
      width: 100%;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 8px;
      padding: 8px 12px;
      color: var(--text-main);
      font-size: 13px;
      outline: none;
      resize: none;
    }

    .helper-input:focus {
      border-color: var(--success);
    }

    .checkbox-container {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      user-select: none;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-main);
    }

    .checkbox-custom {
      width: 18px;
      height: 18px;
      border: 2px solid rgba(0, 0, 0, 0.15);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      background: #fff;
    }

    .checkbox-container.checked .checkbox-custom {
      background: var(--success);
      border-color: var(--success);
    }

    .checkbox-container.checked .checkbox-custom::after {
      content: '✓';
      color: #fff;
      font-size: 12px;
      font-weight: 900;
    }

    /* --------------------------------------------------
       COMPONENTE: REPUTAÇÃO E DISCLAIMER JURÍDICO
       -------------------------------------------------- */
    .reputation-card {
      margin-top: 24px;
      background: rgba(255,255,255,0.5);
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 20px;
      padding: 20px;
    }

    .reputation-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .stars {
      display: flex;
      gap: 4px;
    }

    .star {
      color: var(--warning);
      width: 18px;
      height: 18px;
    }

    .star-muted {
      color: rgba(0, 0, 0, 0.08);
      width: 18px;
      height: 18px;
    }

    .reputation-text {
      font-size: 13px;
      color: var(--text-main);
      font-style: italic;
      line-height: 1.5;
    }

    .reputation-reply {
      margin-top: 12px;
      background: rgba(124, 58, 237, 0.05);
      border-left: 3px solid var(--primary);
      padding: 8px 12px;
      border-radius: 4px;
      font-size: 12px;
    }

    .legal-disclaimer {
      margin-top: 16px;
      background: rgba(0,0,0,0.02);
      border: 1px solid rgba(0,0,0,0.05);
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 11px;
      color: var(--text-muted);
      line-height: 1.4;
      text-align: justify;
    }

    /* --------------------------------------------------
       MÓDULO DE CURTIDAS E MATCHING DIRECT ACTIONS
       -------------------------------------------------- */
    .action-row {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .action-btn {
      flex: 1;
      padding: 12px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      font-family: var(--font-outfit);
      font-weight: 700;
      font-size: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: var(--transition);
    }

    .btn-like {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: #fff;
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
    }

    .btn-like:hover {
      box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
      transform: translateY(-2px);
    }

    .btn-reject {
      background: rgba(0, 0, 0, 0.04);
      color: var(--text-muted);
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .btn-reject:hover {
      background: rgba(0, 0, 0, 0.08);
      color: var(--text-main);
    }

    /* --------------------------------------------------
       ANIMAÇÃO DE MATCH EXPLOSIVO
       -------------------------------------------------- */
    .match-explosion {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(15, 23, 42, 0.92);
      backdrop-filter: blur(16px);
      z-index: 5000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .match-explosion-title {
      font-size: 68px;
      font-weight: 800;
      background: linear-gradient(135deg, #a78bfa 0%, #f472b6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 16px;
      animation: pulseMatch 1s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
      filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.4));
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .match-explosion-subtitle {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 40px;
      font-family: var(--font-inter);
      font-weight: 400;
    }

    .match-avatars-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      margin-bottom: 48px;
    }

    .match-avatar-wrapper {
      position: relative;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      padding: 4px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
      animation: avatarPopIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    }
    
    .match-avatar-wrapper.candidato {
      animation-delay: 0.1s;
    }
    .match-avatar-wrapper.empresa {
      animation-delay: 0.3s;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
    }

    .match-avatar-inner {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: #0f172a;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      font-weight: 800;
      color: #fff;
      font-family: var(--font-outfit);
    }

    .match-heart-center {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--secondary);
      fill: var(--secondary);
      width: 64px;
      height: 64px;
      animation: heartBeatMatch 0.8s infinite alternate cubic-bezier(0.25, 0.8, 0.25, 1);
      filter: drop-shadow(0 0 20px rgba(219, 39, 119, 0.6));
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes pulseMatch {
      from { transform: scale(0.93); }
      to { transform: scale(1.07); }
    }

    @keyframes avatarPopIn {
      from { transform: scale(0) rotate(-45deg); opacity: 0; }
      to { transform: scale(1) rotate(0deg); opacity: 1; }
    }

    @keyframes heartBeatMatch {
      0% { transform: scale(0.8) rotate(0deg); }
      50% { transform: scale(1.2) rotate(10deg); }
      100% { transform: scale(0.9) rotate(-5deg); }
    }

    /* Footer */
    footer {
      border-top: 1px solid rgba(0,0,0,0.06);
      padding: 16px;
      text-align: center;
      font-size: 12px;
      color: var(--text-muted);
      background: rgba(0,0,0,0.02);
      margin-top: auto;
    }


    /* --------------------------------------------------
       COMPONENTE: FUNIL DE RECRUTAMENTO (KANBAN)
       -------------------------------------------------- */
    .funnel-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 16px;
    }

    .funnel-column {
      background: rgba(0, 0, 0, 0.015);
      border: 1px solid rgba(0, 0, 0, 0.04);
      border-radius: 16px;
      padding: 12px;
      min-height: 180px;
      display: flex;
      flex-direction: column;
    }

    .funnel-column-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
    }

    .col-yellow { background: rgba(245, 158, 11, 0.08); color: #d97706; border: 1px solid rgba(245, 158, 11, 0.15); }
    .col-blue { background: rgba(59, 130, 246, 0.08); color: #2563eb; border: 1px solid rgba(59, 130, 246, 0.15); }
    .col-purple { background: rgba(124, 58, 237, 0.08); color: #7c3aed; border: 1px solid rgba(124, 58, 237, 0.15); }
    .col-green { background: rgba(16, 185, 129, 0.08); color: #059669; border: 1px solid rgba(16, 185, 129, 0.15); }

    .funnel-column-badge {
      background: rgba(0, 0, 0, 0.05);
      border-radius: 50%;
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 800;
    }

    .funnel-column-cards {
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }

    .funnel-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 12px;
      padding: 12px;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
      transition: all 0.2s ease;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .funnel-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
      border-color: rgba(124, 58, 237, 0.2);
    }

    .funnel-card.active {
      border-color: var(--primary);
      background: rgba(124, 58, 237, 0.02);
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
    }

    .funnel-card-header {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .funnel-card-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
    }

    .funnel-card-info {
      flex: 1;
      overflow: hidden;
    }

    .funnel-card-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-main);
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
    }

    .funnel-card-email {
      font-size: 10px;
      color: var(--text-muted);
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
    }

    .funnel-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(0, 0, 0, 0.04);
      padding-top: 6px;
      margin-top: 2px;
    }

    .funnel-card-badge {
      font-size: 9px;
      font-weight: 700;
    }

    .funnel-card-icons {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 10px;
      color: var(--text-muted);
    }

    /* --------------------------------------------------
       COMPONENTE: REELS MOCKUP (TRAMPO REELS)
       -------------------------------------------------- */
    .reels-wrapper {
      position: relative;
      width: 100%;
      max-width: 320px;
      aspect-ratio: 9/16;
      background: #000;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      border: 4px solid var(--text-main);
      margin: 16px auto;
      user-select: none;
    }

    .reels-screen {
      width: 100%;
      height: 100%;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, rgba(15,23,42,0.98) 100%);
      color: #fff;
      padding: 16px;
    }

    .reels-overlay-lock {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      z-index: 100;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px;
    }

    .reels-overlay-lock-title {
      font-family: var(--font-outfit);
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .reels-overlay-lock-text {
      font-size: 11px;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .reels-controls-side {
      position: absolute;
      right: 10px;
      bottom: 60px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: center;
      z-index: 20;
    }

    .reels-btn-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .reels-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .reels-btn:hover {
      transform: scale(1.1);
      background: rgba(255,255,255,0.35);
    }

    .reels-btn.liked {
      background: rgba(219, 39, 119, 0.2);
      border-color: var(--secondary);
      color: var(--secondary);
    }

    .reels-btn-label {
      font-size: 8px;
      font-weight: 800;
      color: rgba(255,255,255,0.9);
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .reels-info-bottom {
      width: calc(100% - 50px);
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 4px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    .reels-info-name {
      font-family: var(--font-outfit);
      font-size: 15px;
      font-weight: 700;
      color: #fff;
    }

    .reels-info-desc {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.4;
    }

    .reels-center-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 5;
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #fff;
      width: 62px;
      height: 62px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0.8;
      transition: all 0.2s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    }
    .reels-center-play:hover {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1.08);
      background: rgba(0, 0, 0, 0.6);
    }
    .reels-center-play.hidden {
      display: none;
    }

    .heart-pop {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      color: var(--secondary);
      animation: heartExplode 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
      pointer-events: none;
      z-index: 50;
      filter: drop-shadow(0 0 15px rgba(219,39,119,0.5));
    }

    @keyframes heartExplode {
      0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
      50% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
      80% { opacity: 1; }
      100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
    }

    @keyframes heartBeat {
      0% { transform: scale(1); }
      100% { transform: scale(1.15); }
    }

    .filter-bar {
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(0,0,0,0.05);
      border-radius: 16px;
      padding: 14px;
      margin-bottom: 20px;
      display: grid;
      grid-template-columns: 1fr 1fr auto;
      gap: 12px;
      align-items: center;
    }

    .filter-field {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    /* --------------------------------------------------
       SISTEMA DE LAYOUT: SIDEBAR SAAS (RETRÁTIL PREMIUM)
       -------------------------------------------------- */
    .app-layout {
      display: flex;
      min-height: 100vh;
      width: 100vw;
    }

    .sidebar {
      width: 80px;
      background: rgba(255, 255, 255, 0.95);
      border-right: 1px solid rgba(124, 58, 237, 0.08);
      padding: 24px 16px;
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      z-index: 950;
      backdrop-filter: blur(20px);
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-x: hidden;
    }

    .sidebar:hover {
      width: 280px;
      padding: 24px;
    }

    .content-area {
      flex: 1;
      margin-left: 80px;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      background: var(--bg-gradient);
      transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .sidebar-menu {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-top: 32px;
    }

    .sidebar-item {
      background: transparent;
      border: none;
      width: 100%;
      padding: 12px 14px;
      border-radius: 12px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0px;
      font-family: var(--font-outfit);
      font-weight: 600;
      font-size: 14px;
      color: var(--text-muted);
      transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1), gap 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s, color 0.3s;
      text-align: left;
    }

    .sidebar:hover .sidebar-item {
      padding: 12px 16px;
      gap: 12px;
    }

    .sidebar-item i {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sidebar-item span {
      opacity: 0;
      max-width: 0;
      overflow: hidden;
      white-space: normal;
      display: inline-block;
      transition: opacity 0.15s ease, max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .sidebar:hover .sidebar-item span {
      opacity: 1;
      max-width: 200px;
    }

    .sidebar-item:hover {
      background: rgba(124, 58, 237, 0.04);
      color: var(--primary);
    }

    .sidebar-item.active {
      background: rgba(124, 58, 237, 0.08);
      color: var(--primary);
      box-shadow: 0 2px 8px rgba(124, 58, 237, 0.05);
    }

    .sidebar-divider {
      height: 1px;
      background: rgba(0, 0, 0, 0.04);
      margin: 16px 0;
      width: 100%;
    }

    .sidebar .brand-container {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-bottom: 24px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .sidebar:hover .brand-container {
      justify-content: flex-start;
      gap: 12px;
    }

    .sidebar .brand-name {
      opacity: 0;
      max-width: 0;
      overflow: hidden;
      white-space: nowrap;
      display: inline-block;
      font-size: 25px;
      transition: opacity 0.15s ease, max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      color: var(--text-main);
    }

    .sidebar:hover .brand-name {
      opacity: 1;
      max-width: 200px;
    }

    /* Modais Clean para as novas funções */
    .reels-modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(15, 23, 42, 0.4);
      backdrop-filter: blur(8px);
      z-index: 3000;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.2s ease-out;
    }

    .modal-card {
      width: 100%;
      max-width: 480px;
      background: #ffffff;
      border: 1px solid rgba(124, 58, 237, 0.15);
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }

    /* --------------------------------------------------
       ESTILOS DA TELA DE AUTENTICAÇÃO REAL SUPABASE
       -------------------------------------------------- */
    .auth-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100dvh;
      background: var(--bg-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: 20px;
      overflow-y: auto;
      backdrop-filter: blur(8px);
    }

    .auth-card {
      width: 100%;
      max-width: 440px;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 28px;
      padding: 36px;
      backdrop-filter: blur(20px);
      box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
      position: relative;
      animation: authSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes authSlideUp {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .auth-title {
      font-family: var(--font-outfit);
      font-size: 28px;
      font-weight: 800;
      text-align: center;
      margin-bottom: 6px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.5px;
    }

    .auth-subtitle {
      font-size: 13px;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .auth-alert {
      padding: 12px 16px;
      border-radius: 12px;
      font-size: 13px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: fadeIn 0.3s ease-out;
      line-height: 1.4;
    }

    .auth-alert.error {
      background: rgba(239, 68, 68, 0.08);
      border: 1px solid rgba(239, 68, 68, 0.2);
      color: #dc2626;
    }

    .auth-alert.success {
      background: rgba(16, 185, 129, 0.08);
      border: 1px solid rgba(16, 185, 129, 0.2);
      color: #059669;
    }

    .auth-alert i {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
    }

    .auth-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .auth-footer {
      margin-top: 24px;
      text-align: center;
      font-size: 13px;
      color: var(--text-muted);
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .auth-link {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }

    .auth-link:hover {
      color: var(--primary-hover);
      text-decoration: underline;
    }

    .role-selector-group {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 8px;
    }

    .role-option {
      border: 2px solid rgba(0, 0, 0, 0.05);
      background: rgba(255, 255, 255, 0.5);
      border-radius: 14px;
      padding: 12px;
      cursor: pointer;
      text-align: center;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .role-option:hover {
      background: rgba(255, 255, 255, 0.9);
      border-color: rgba(124, 58, 237, 0.2);
    }

    .role-option.active {
      background: rgba(124, 58, 237, 0.05);
      border-color: var(--primary);
    }

    .role-option i {
      width: 20px;
      height: 20px;
      color: var(--text-muted);
      transition: var(--transition);
    }

    .role-option.active i {
      color: var(--primary);
    }

    .role-option span {
      font-size: 13px;
      font-weight: 700;
      font-family: var(--font-outfit);
      color: var(--text-muted);
      transition: var(--transition);
    }

    .role-option.active span {
      color: var(--primary);
    }

    .config-indicator {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(0,0,0,0.03);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      cursor: pointer;
      transition: var(--transition);
    }

    .config-indicator:hover {
      background: rgba(0,0,0,0.08);
      color: var(--text-main);
    }

    /* --------------------------------------------------
       NOVOS ESTILOS: SUB-PÁGINAS & MAPA SVG (PARTE 2/3)
       -------------------------------------------------- */
    .subpage-rec, .subpage-cand {
      display: block;
      animation: fadeInSub 0.3s ease-out;
      width: 100%;
    }
    .subpage-rec.hidden, .subpage-cand.hidden {
      display: none !important;
    }

    @keyframes fadeInSub {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Grade de Vagas no Dashboard */
    .jobs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 16px;
    }
    .job-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 20px;
      backdrop-filter: blur(12px);
      box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 180px;
    }
    .job-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
      border-color: rgba(124, 58, 237, 0.2);
    }
    .job-card-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      font-family: var(--font-outfit);
    }
    .job-card-meta {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 6px;
    }
    .job-card-salary {
      font-size: 16px;
      font-weight: 700;
      color: var(--success);
      margin-top: 10px;
      font-family: var(--font-outfit);
    }
    .job-card-actions {
      display: flex;
      gap: 10px;
      margin-top: 16px;
    }

    /* Botões de Ação do Card de Vaga (Recrutador) */
    .btn-rec-match {
      background: rgba(124, 58, 237, 0.08) !important;
      color: var(--primary) !important;
      border: 1px solid rgba(124, 58, 237, 0.15) !important;
      transition: all 0.2s ease-in-out !important;
    }
    .btn-rec-match:hover {
      background: var(--primary) !important;
      color: #fff !important;
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3) !important;
      transform: scale(1.04) !important;
    }

    .btn-rec-sponsor {
      background: rgba(16, 185, 129, 0.08) !important;
      color: var(--success) !important;
      border: 1px solid rgba(16, 185, 129, 0.15) !important;
      transition: all 0.2s ease-in-out !important;
    }
    .btn-rec-sponsor:hover {
      background: var(--success) !important;
      color: #fff !important;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
      transform: scale(1.04) !important;
    }

    .btn-rec-edit {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
      color: #fff !important;
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2) !important;
      transition: all 0.2s ease-in-out !important;
    }
    .btn-rec-edit:hover {
      box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5) !important;
      transform: scale(1.04) translateY(-1px) !important;
      filter: brightness(1.1) !important;
    }

    /* Badges Clicáveis do Card de Vaga (Recrutador) */
    .badge-click-prontos {
      cursor: pointer !important;
      transition: all 0.2s ease-in-out !important;
    }
    .badge-click-prontos:hover {
      background: var(--success) !important;
      color: #fff !important;
      transform: scale(1.05) !important;
      box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
    }
    .badge-click-prontos:hover span {
      background: #fff !important;
    }

    .badge-click-treinaveis {
      cursor: pointer !important;
      transition: all 0.2s ease-in-out !important;
    }
    .badge-click-treinaveis:hover {
      background: var(--primary) !important;
      color: #fff !important;
      transform: scale(1.05) !important;
      box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3) !important;
    }
    .badge-click-treinaveis:hover span {
      background: #fff !important;
    }

    /* Caixas de Estatísticas Clicáveis no Modal de Vagas (Recrutador) */
    .box-rec-stat-prontos {
      cursor: pointer !important;
      transition: all 0.2s ease-in-out !important;
    }
    .box-rec-stat-prontos:hover {
      background: rgba(16, 185, 129, 0.08) !important;
      border-color: var(--success) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15) !important;
    }

    .box-rec-stat-treinaveis {
      cursor: pointer !important;
      transition: all 0.2s ease-in-out !important;
    }
    .box-rec-stat-treinaveis:hover {
      background: rgba(124, 58, 237, 0.08) !important;
      border-color: var(--primary) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15) !important;
    }

    /* Estilos do Mapa SVG Interativo */
    .map-wrapper {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 20px;
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 32px rgba(15,23,42,0.04);
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px;
      width: 100%;
    }
    .map-svg {
      width: 100%;
      max-width: 320px;
      height: auto;
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 16px;
      background: #f8fafc;
      padding: 10px;
    }
    .map-region {
      fill: rgba(124, 58, 237, 0.04);
      stroke: var(--primary);
      stroke-width: 1.5;
      cursor: pointer;
      transition: var(--transition);
    }
    .map-region:hover {
      fill: rgba(124, 58, 237, 0.12);
    }
    .map-region.selected {
      fill: rgba(124, 58, 237, 0.22);
      stroke-width: 2.5;
    }
    .map-region-label {
      font-size: 10px;
      font-weight: 800;
      fill: var(--text-muted);
      pointer-events: none;
      text-anchor: middle;
      font-family: var(--font-outfit);
    }
    .map-region.selected + .map-region-label {
      fill: var(--primary);
    }
    .map-pin {
      fill: var(--secondary);
      stroke: #ffffff;
      stroke-width: 1.5;
      cursor: pointer;
      transition: var(--transition);
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }
    .map-pin:hover {
      fill: var(--primary);
      transform: scale(1.2);
    }

    /* --------------------------------------------------
       NOVOS ESTILOS: ASSISTENTE DE CURRÍCULO (WIZARD 8 PASSOS)
       -------------------------------------------------- */
    .wizard-layout {
      display: grid;
      grid-template-columns: 240px 1fr 260px;
      gap: 24px;
      align-items: start;
      width: 100%;
    }
    
    .wizard-sidebar-sec {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 16px;
      backdrop-filter: blur(12px);
      box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
      display: flex;
      flex-direction: column;
      gap: 4px;
      position: relative;
    }
    
    .wizard-sidebar-sec::before {
      content: '';
      position: absolute;
      left: 27px;
      top: 66px;
      bottom: 28px;
      width: 2px;
      background: rgba(124, 58, 237, 0.08);
      z-index: 1;
    }
    
    .wizard-step-btn {
      background: transparent;
      border: none;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 8px;
      cursor: pointer;
      width: 100%;
      text-align: left;
      transition: var(--transition);
      border-radius: 8px;
      position: relative;
      z-index: 2;
    }
    
    .wizard-step-btn:hover {
      background: rgba(124, 58, 237, 0.03);
    }
    
    .wizard-step-circle {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #f1f5f9;
      border: 2px solid rgba(0,0,0,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      color: var(--text-muted);
      transition: var(--transition);
      flex-shrink: 0;
    }
    
    .wizard-step-btn.active .wizard-step-circle {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
      box-shadow: 0 0 10px rgba(124, 58, 237, 0.25);
    }
    
    .wizard-step-btn.completed .wizard-step-circle {
      background: var(--success);
      border-color: var(--success);
      color: #fff;
    }
    
    .wizard-step-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-muted);
      font-family: var(--font-outfit);
      transition: var(--transition);
    }
    
    .wizard-step-btn.active .wizard-step-label {
      color: var(--primary);
    }
    
    .wizard-step-btn.completed .wizard-step-label {
      color: var(--text-main);
    }

    .wizard-form-box {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 24px;
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
    }
    
    .wizard-advice-card {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
      border: 1px solid rgba(59, 130, 246, 0.12);
      border-radius: 20px;
      padding: 20px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.01);
      position: relative;
    }
    
    .wizard-advice-title {
      font-family: var(--font-outfit);
      font-size: 13px;
      font-weight: 700;
      color: #1e3a8a;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 12px;
    }
    
    .wizard-advice-text {
      font-size: 11.5px;
      color: var(--text-muted);
      line-height: 1.5;
    }
    
    .input-error-state {
      border-color: var(--danger) !important;
      background-color: rgba(239, 68, 68, 0.02) !important;
    }
    
    .error-feedback {
      color: var(--danger);
      font-size: 10px;
      margin-top: 4px;
      font-weight: 600;
      display: none;
      animation: fadeInSub 0.2s ease-out;
    }
    
    .input-error-state + .error-feedback {
      display: block;
    }

    @media (max-width: 1024px) {
      .wizard-layout {
        grid-template-columns: 200px 1fr;
      }
      .wizard-advice-card {
        grid-column: span 2;
      }
    }
    @media (max-width: 768px) {
      .wizard-layout {
        grid-template-columns: 1fr;
      }
      .wizard-sidebar-sec {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
      }
      .wizard-sidebar-sec::before {
        display: none;
      }
    }

    /* --------------------------------------------------
       NOVOS ESTILOS: TOPBAR & DRAWER DE PERFIL SAAS
       -------------------------------------------------- */
    .topbar {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 16px 40px;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(124, 58, 237, 0.08);
      position: sticky;
      top: 0;
      z-index: 850;
    }

    .topbar-profile {
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      padding: 6px 16px;
      border-radius: 30px;
      border: 1px solid rgba(124, 58, 237, 0.1);
      background: rgba(255, 255, 255, 0.8);
      transition: var(--transition);
      user-select: none;
    }

    .topbar-profile:hover {
      background: rgba(124, 58, 237, 0.04);
      border-color: var(--primary);
      transform: translateY(-1px);
    }

    .topbar-profile span {
      font-family: var(--font-outfit);
      font-weight: 600;
      font-size: 14px;
      color: var(--text-main);
    }

    .topbar-profile .avatar {
      width: 34px;
      height: 34px;
      font-size: 12px;
      font-weight: 700;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      border: 2px solid #ffffff;
      box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15);
      border-radius: 50%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .topbar-profile .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Backdrop do Drawer */
    .profile-drawer-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(15, 23, 42, 0.3);
      backdrop-filter: blur(4px);
      z-index: 2400;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .profile-drawer-backdrop.open {
      opacity: 1;
      pointer-events: auto;
    }

    /* Drawer */
    .profile-drawer {
      position: fixed;
      top: 0;
      right: -420px;
      width: 400px;
      height: 100vh;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      box-shadow: -10px 0 30px rgba(15, 23, 42, 0.08);
      z-index: 2500;
      transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
    }

    .profile-drawer.open {
      right: 0;
    }

    .profile-drawer-header {
      padding: 24px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .drawer-close-btn {
      background: transparent;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--text-muted);
      transition: var(--transition);
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .drawer-close-btn:hover {
      background: rgba(0, 0, 0, 0.05);
      color: var(--text-main);
    }

    .profile-drawer-body {
      flex: 1;
      overflow-y: auto;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .drawer-user-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .drawer-avatar-container {
      position: relative;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      cursor: pointer;
      overflow: hidden;
      border: 3px solid #ffffff;
      box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15);
      transition: var(--transition);
    }

    .drawer-avatar-container:hover {
      transform: scale(1.02);
    }

    .drawer-avatar {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: #ffffff;
      font-size: 36px;
      font-family: var(--font-outfit);
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
    }

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

    .drawer-avatar-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      color: #ffffff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      opacity: 0;
      transition: var(--transition);
    }

    .drawer-avatar-container:hover .drawer-avatar-overlay {
      opacity: 1;
    }

    .drawer-avatar-overlay span {
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .drawer-section {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .drawer-section-title {
      font-family: var(--font-outfit);
      font-size: 12px;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      padding-bottom: 6px;
    }

    .drawer-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .drawer-stat-card {
      background: rgba(124, 58, 237, 0.03);
      border: 1px solid rgba(124, 58, 237, 0.06);
      padding: 14px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
      transition: var(--transition);
    }

    .drawer-stat-card:hover {
      background: rgba(124, 58, 237, 0.06);
      border-color: rgba(124, 58, 237, 0.12);
    }

    .drawer-stat-val {
      font-family: var(--font-outfit);
      font-size: 22px;
      font-weight: 800;
      color: var(--primary);
    }

    .drawer-stat-lbl {
      font-size: 10px;
      color: var(--text-muted);
      text-transform: uppercase;
      font-weight: 600;
      margin-top: 4px;
      line-height: 1.2;
    }

    .drawer-safety-box {
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.04) 0%, rgba(124, 58, 237, 0.02) 100%);
      border: 1px dashed rgba(239, 68, 68, 0.2);
      padding: 16px;
      border-radius: 12px;
      text-align: center;
      font-size: 11px;
      color: var(--danger);
      font-weight: 600;
      line-height: 1.4;
      margin-top: 4px;
    }

    .drawer-action-menu {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .drawer-menu-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      background: #f8fafc;
      border: 1px solid rgba(0, 0, 0, 0.03);
      padding: 14px 16px;
      border-radius: 14px;
      cursor: pointer;
      transition: var(--transition);
    }

    .drawer-menu-item:hover {
      background: rgba(124, 58, 237, 0.04);
      border-color: rgba(124, 58, 237, 0.1);
    }

    .drawer-menu-icon-label {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-main);
    }

    .drawer-menu-icon-label i {
      width: 18px;
      height: 18px;
      color: var(--primary);
    }

    .drawer-menu-icon-label span {
      font-size: 13.5px;
      font-weight: 600;
      font-family: var(--font-inter);
    }

    .drawer-menu-item .chevron-arrow {
      width: 16px;
      height: 16px;
      color: var(--text-muted);
      transition: var(--transition);
    }

    .drawer-menu-item:hover .chevron-arrow {
      transform: translateX(2px);
      color: var(--primary);
    }

    .profile-drawer-footer {
      padding: 20px 24px;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      background: #f8fafc;
    }

    @media (max-width: 480px) {
      .profile-drawer {
        width: 100vw;
        right: -100vw;
      }
    }

    /* --------------------------------------------------
       GRAVADOR DE VÍDEO NATIVO (CÂMERA DO DISPOSITIVO)
       -------------------------------------------------- */
    .video-recorder {
      border: 2px dashed rgba(124, 58, 237, 0.2);
      border-radius: 16px;
      padding: 20px;
      text-align: center;
      background: rgba(124, 58, 237, 0.02);
      transition: var(--transition);
      margin-top: 6px;
    }
    .video-recorder.recording {
      border-color: #ef4444;
      background: rgba(239, 68, 68, 0.03);
    }
    .video-recorder.confirmed {
      border-color: var(--success);
      background: rgba(16, 185, 129, 0.03);
    }
    .video-recorder-preview {
      width: 100%;
      max-height: 280px;
      border-radius: 12px;
      background: #000;
      object-fit: cover;
      display: block;
      margin: 0 auto;
    }
    .rec-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border: none;
      border-radius: 12px;
      font-family: var(--font-inter);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }
    .rec-btn-record {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
    }
    .rec-btn-record:hover {
      transform: scale(1.03);
      box-shadow: 0 4px 20px var(--primary-glow);
    }
    .rec-btn-stop {
      background: linear-gradient(135deg, #ef4444, #dc2626);
      color: #fff;
      animation: pulse-rec 1.5s ease-in-out infinite;
    }
    .rec-btn-retake {
      background: rgba(0,0,0,0.05);
      color: var(--text-main);
      border: 1px solid rgba(0,0,0,0.1);
    }
    .rec-btn-retake:hover {
      background: rgba(0,0,0,0.08);
    }
    .rec-btn-confirm {
      background: linear-gradient(135deg, var(--success), #059669);
      color: #fff;
    }
    .rec-btn-confirm:hover {
      transform: scale(1.03);
      box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
    }
    @keyframes pulse-rec {
      0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
      50% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
    }
    .rec-timer-bar {
      width: 100%;
      height: 6px;
      background: rgba(0,0,0,0.06);
      border-radius: 3px;
      margin-top: 12px;
      overflow: hidden;
    }
    .rec-timer-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--success), var(--warning), #ef4444);
      border-radius: 3px;
      transition: width 1s linear;
    }
    .rec-timer-text {
      font-family: var(--font-outfit);
      font-size: 32px;
      font-weight: 800;
      color: #ef4444;
      margin: 6px 0 10px;
    }
    .rec-indicator {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 700;
      color: #ef4444;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .rec-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ef4444;
      animation: blink-dot 1s ease-in-out infinite;
    }
    @keyframes blink-dot {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.15; }
    }
    .video-recorder-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 14px 0;
      color: var(--text-muted);
      font-size: 11px;
      font-weight: 500;
    }
    .video-recorder-divider::before,
    .video-recorder-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(0,0,0,0.08);
    }
    .rec-confirmed-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      background: rgba(16, 185, 129, 0.08);
      color: var(--success);
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      margin-top: 10px;
    }

    /* --------------------------------------------------
       MAPA INTERATIVO LEAFLET (GEOLOCALIZAÇÃO UNIVERSAL)
       -------------------------------------------------- */
    .leaflet-map-container {
      width: 100%;
      height: 320px;
      border-radius: 12px;
      border: 1px solid rgba(0,0,0,0.06);
      overflow: hidden;
      z-index: 1;
    }
    .map-controls {
      display: flex;
      gap: 8px;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 8px;
    }
    .map-btn-geo {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 11px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }
    .map-btn-geo:hover {
      transform: scale(1.03);
    }
    .map-radius-control {
      display: flex;
      align-items: center;
      gap: 6px;
      flex: 1;
      min-width: 140px;
    }
    .map-radius-control input[type="range"] {
      flex: 1;
      accent-color: var(--primary);
      height: 4px;
    }
    .map-radius-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--primary);
      white-space: nowrap;
    }

    /* Estilos de Filtros Premium (Inspirado no design enviado) */
    .filter-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 16px;
      margin-bottom: 16px;
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.03);
    }
    .filter-title {
      font-family: var(--font-outfit);
      font-size: 13px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .pill-group {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }
    .pill-btn {
      padding: 6px 12px;
      border-radius: 20px;
      border: 1px solid rgba(124, 58, 237, 0.12);
      background: #fff;
      color: var(--text-main);
      font-size: 11px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .pill-btn:hover {
      background: rgba(124, 58, 237, 0.05);
      border-color: var(--primary);
    }
    .pill-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }
    .toggle-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px;
      border-radius: 12px;
      border: 1px solid rgba(124, 58, 237, 0.08);
      background: rgba(124, 58, 237, 0.01);
      margin-bottom: 8px;
      cursor: pointer;
      transition: var(--transition);
    }
    .toggle-card:hover {
      border-color: var(--primary);
    }
    .toggle-card.active {
      background: rgba(124, 58, 237, 0.04);
      border-color: var(--primary);
    }
    .toggle-card-check {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 2px solid rgba(124, 58, 237, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      font-size: 10px;
    }
    .toggle-card.active .toggle-card-check {
      background: var(--success);
      border-color: var(--success);
      color: #fff;
    }
    .dual-box-group {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }
    .dual-box {
      border: 1px solid rgba(124, 58, 237, 0.1);
      border-radius: 12px;
      padding: 12px;
      background: #fff;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      gap: 4px;
      position: relative;
    }
    .dual-box:hover {
      border-color: var(--primary);
    }
    .dual-box.active {
      border-color: var(--primary);
      background: rgba(124, 58, 237, 0.02);
      box-shadow: 0 0 10px rgba(124, 58, 237, 0.05);
    }
    .dual-box-check {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 1.5px solid rgba(124, 58, 237, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8px;
    }
    .dual-box.active .dual-box-check {
      background: var(--success);
      border-color: var(--success);
      color: #fff;
    }

    /* Sistema Premium de Notificações Temporárias (Toast) */
    .toast-container {
      position: fixed;
      top: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(-20px);
      z-index: 10000;
      pointer-events: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .toast {
      pointer-events: auto;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05), inset 0 0 0 1px #fff;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: 12px;
      padding: 12px 24px;
      color: var(--text-main);
      font-family: var(--font-inter);
      font-size: 13.5px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 0;
      transform: scale(0.9);
      animation: toastIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
      border-left: 4px solid var(--success);
    }
    .toast.hide {
      animation: toastOut 0.25s ease-in forwards;
    }
    @keyframes toastIn { to { opacity: 1; transform: scale(1); } }
    @keyframes toastOut { to { opacity: 0; transform: scale(0.9) translateY(-20px); } }

    /* ==================================================
       KANBAN, CALENDÁRIO, TIMELINE E COMPONENTES DE FILTRO
       ================================================== */
    .kanban-board {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding: 10px 0;
      margin-top: 16px;
      align-items: start;
    }
    .kanban-column {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      min-width: 250px;
      max-width: 300px;
      width: 250px;
      flex-shrink: 0;
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: var(--transition);
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    }
    .kanban-column-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--primary-glow);
      font-weight: 700;
      font-size: 11px;
      font-family: var(--font-outfit);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .kanban-column-badge {
      background: var(--primary);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 9999px;
    }
    .kanban-cards-container {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-height: 250px;
    }
    .kanban-card {
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 8px;
      padding: 12px;
      cursor: grab;
      transition: var(--transition);
      box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }
    .kanban-card:active { cursor: grabbing; }
    .kanban-card:hover {
      box-shadow: 0 6px 12px rgba(124, 58, 237, 0.08);
      border-color: rgba(124, 58, 237, 0.3);
      transform: translateY(-2px);
    }
    .kanban-card-title {
      font-family: var(--font-outfit);
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 4px;
    }
    .kanban-card-meta {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }
    .kanban-card-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(0,0,0,0.04);
      padding-top: 8px;
      margin-top: 8px;
    }
    .kanban-card-btn {
      background: none;
      border: none;
      color: var(--primary);
      cursor: pointer;
      font-size: 11px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .kanban-card-btn:hover { color: var(--primary-hover); }
    .calendar-container {
      margin-top: 24px;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    }
    .calendar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }
    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 8px;
      text-align: center;
    }
    .calendar-day-name {
      font-weight: 600;
      font-size: 11.5px;
      color: var(--text-muted);
      padding: 8px 0;
      text-transform: uppercase;
    }
    .calendar-day {
      aspect-ratio: 1.2;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 6px;
      border-radius: 8px;
      border: 1px solid rgba(0,0,0,0.03);
      background: #fff;
      cursor: pointer;
      font-size: 12px;
      font-weight: 500;
      transition: var(--transition);
      position: relative;
    }
    .calendar-day:hover {
      background: var(--primary-glow);
    }
    .calendar-day.empty {
      background: transparent;
      border: none;
      cursor: default;
      pointer-events: none;
    }
    .calendar-day.today {
      border: 2px solid var(--primary);
      font-weight: bold;
    }
    .calendar-day.has-event {
      background: rgba(219, 39, 119, 0.05);
      border-color: var(--secondary);
    }
    .calendar-event-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--secondary);
      margin: 0 auto;
    }
    .timeline-feed {
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      padding-left: 16px;
      border-left: 2px solid var(--primary-glow);
    }
    .timeline-item {
      position: relative;
      background: #fff;
      border: 1px solid rgba(0,0,0,0.05);
      padding: 10px 12px;
      border-radius: 8px;
      font-size: 12px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.01);
    }
    .timeline-dot {
      position: absolute;
      left: -23px;
      top: 13px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--primary);
      border: 2px solid #fff;
    }
    .timeline-dot.green { background: var(--success); }
    .timeline-dot.orange { background: var(--warning); }
    .timeline-dot.pink { background: var(--secondary); }
    .analytics-panel {
      margin-top: 24px;
      padding: 20px;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
    }
    .filter-bar {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }
    .filter-select {
      padding: 6px 10px;
      border-radius: 8px;
      border: 1px solid rgba(0,0,0,0.08);
      background: #fff;
      font-size: 11.5px;
      color: var(--text-main);
      outline: none;
      flex: 1;
      min-width: 120px;
    }
    .filter-select::placeholder {
      color: var(--text-muted);
    }

    /* ==================================================
       NOVOS ESTILOS: LAYOUT 3 COLUNAS E DETALHES DE BUSCA (ROCKETJOBS)
       ================================================== */
    .search-layout-3col {
      display: grid;
      grid-template-columns: 280px 1fr 350px;
      gap: 24px;
      align-items: start;
      width: 100%;
      margin-top: 16px;
    }
    
    .search-col-filters {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    
    .search-col-listing {
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-height: 500px;
    }
    
    .search-col-map {
      position: sticky;
      top: 90px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    /* Top Search and Category Bar Styles */
    .top-search-group {
      display: grid;
      grid-template-columns: 1fr 1.2fr auto;
      gap: 12px;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      padding: 14px 20px;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
      margin-bottom: 16px;
    }
    .top-search-input-wrapper {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 12px;
      padding: 10px 14px;
    }
    .top-search-input-wrapper i {
      color: var(--primary);
      flex-shrink: 0;
    }
    .top-search-input {
      border: none;
      outline: none;
      width: 100%;
      font-size: 13.5px;
      color: var(--text-main);
      background: transparent;
    }
    
    /* Horizontal Category Shortcuts */
    .category-shortcuts-bar {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 2px 0 12px 0;
      margin-bottom: 16px;
      scrollbar-width: none; /* Firefox */
    }
    .category-shortcuts-bar::-webkit-scrollbar {
      display: none; /* Chrome */
    }
    .category-shortcut-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 30px;
      font-family: var(--font-outfit);
      font-weight: 600;
      font-size: 12.5px;
      color: var(--text-muted);
      cursor: pointer;
      white-space: nowrap;
      transition: var(--transition);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
      user-select: none;
    }
    .category-shortcut-pill:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-1px);
    }
    .category-shortcut-pill.active {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: #fff;
      border-color: var(--primary);
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
    }
    
    /* Listing Cards Styles */
    .results-subheader {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 8px;
      padding: 0 4px;
    }
    
    .listing-card-premium {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 16px;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(0,0,0,0.02);
      position: relative;
    }
    .listing-card-premium:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(124, 58, 237, 0.08);
      border-color: rgba(124, 58, 237, 0.2);
    }
    .listing-card-logo-container {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      font-weight: 800;
      flex-shrink: 0;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .listing-card-logo-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .listing-card-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
    }
    .listing-card-title {
      font-family: var(--font-outfit);
      font-size: 15.5px;
      font-weight: 700;
      color: var(--text-main);
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
    }
    .listing-card-meta {
      font-size: 12.5px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .listing-card-pills-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 4px;
    }
    .listing-card-pill {
      font-size: 10px;
      font-weight: 600;
      background: rgba(124, 58, 237, 0.04);
      border: 1px solid rgba(124, 58, 237, 0.08);
      padding: 3px 8px;
      border-radius: 6px;
      color: var(--primary);
    }
    .listing-card-right {
      text-align: right;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 6px;
      flex-shrink: 0;
    }
    .listing-card-salary {
      font-family: var(--font-outfit);
      font-size: 15.5px;
      font-weight: 700;
      color: var(--success);
    }
    
    /* Detailed Modal Styles (Vertical / Smartphone aspect) */
    .detail-modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(15, 23, 42, 0.4);
      backdrop-filter: blur(8px);
      z-index: 3000;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.2s ease-out;
      padding: 20px;
    }
    
    .detail-modal-card-vertical {
      width: 100%;
      max-width: 440px;
      background: #ffffff;
      border: 1px solid rgba(124, 58, 237, 0.15);
      border-radius: 28px;
      box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
      display: flex;
      flex-direction: column;
      max-height: 85vh;
      overflow: hidden;
      position: relative;
      animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    @keyframes modalSlideUp {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    
    .detail-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: var(--transition);
      font-size: 18px;
      line-height: 1;
    }
    .detail-modal-close:hover {
      background: rgba(0, 0, 0, 0.65);
      transform: scale(1.05);
    }
    
    .detail-modal-video-header {
      width: 100%;
      aspect-ratio: 9/16;
      max-height: 360px;
      background: #000;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .detail-modal-video-header video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      cursor: pointer;
    }
    .detail-modal-like-bar {
      padding: 16px 20px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      background: #fff;
      display: flex;
      justify-content: center;
      gap: 12px;
    }
    .detail-modal-like-btn {
      width: 100%;
      padding: 12px 24px;
      border: none;
      border-radius: 12px;
      font-family: var(--font-outfit);
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: var(--transition);
    }
    .detail-modal-info-scroll {
      flex: 1;
      overflow-y: auto;
      padding: 20px 24px 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    
    /* Layout de visualização em lote de curtidos com Reels no favoritos */
    .liked-pane-layout-3col {
      display: grid;
      grid-template-columns: 300px 1fr 320px;
      gap: 20px;
      align-items: start;
    }

    @media (max-width: 1200px) {
      .liked-pane-layout-3col {
        grid-template-columns: 300px 1fr;
        gap: 16px;
      }
      .liked-pane-layout-3col > div:first-child {
        /* Garante que o container flex de curtidos/funil utilize a largura total da coluna de 300px */
        width: 100%;
      }
      .liked-pane-layout-3col > div:nth-child(3) {
        grid-column: span 2;
        margin-top: 16px;
        max-width: 320px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 900px) {
      .liked-pane-layout-3col {
        grid-template-columns: 1fr;
      }
      .liked-pane-layout-3col > div:nth-child(3) {
        grid-column: span 1;
      }
    }
    .liked-pane-layout-2col {
      display: grid;
      grid-template-columns: 1.2fr 320px;
      gap: 20px;
      align-items: start;
    }
    
    /* Efeito de Confetes Premium (Explosão) */
    .confetti-particle {
      position: fixed;
      z-index: 9999;
      pointer-events: none;
      border-radius: 3px;
      width: 10px;
      height: 10px;
      animation: confettiExplode 2.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
    }
    
    @keyframes confettiExplode {
      0% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1.2);
        opacity: 1;
      }
      15% {
        transform: translate3d(var(--x-explode), var(--y-explode), 0) rotate(var(--rot-explode)) scale(1);
        opacity: 1;
      }
      100% {
        transform: translate3d(var(--x-explode), 105vh, 0) rotate(720deg) scale(0.2);
        opacity: 0;
      }
    }

    /* Ajustes para evitar estouro e invisibilidade dos quadros laterais */
    .liked-pane-layout-3col .glass-card {
      padding: 12px !important;
    }

    .profile-item {
      min-width: 0;
    }

    .profile-info {
      min-width: 0;
    }

    .profile-name {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .profile-sub {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .liked-pane-layout-3col .funnel-container {
      gap: 6px !important;
      width: 100% !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    .liked-pane-layout-3col .funnel-column {
      padding: 6px !important;
      min-height: 100px !important;
      min-width: 0 !important;
      flex: 1;
    }

    .liked-pane-layout-3col .funnel-column-header {
      font-size: 8px !important;
      padding: 4px 6px !important;
      margin-bottom: 8px !important;
      gap: 4px;
    }

    .liked-pane-layout-3col .funnel-column-header span:first-child {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      min-width: 0;
      flex: 1;
    }

    .liked-pane-layout-3col .funnel-column-badge {
      width: 14px !important;
      height: 14px !important;
      font-size: 8px !important;
      flex-shrink: 0;
    }

    .liked-pane-layout-3col .funnel-card {
      padding: 8px !important;
      gap: 4px !important;
    }

    .liked-pane-layout-3col .funnel-card-avatar {
      width: 24px !important;
      height: 24px !important;
      font-size: 9px !important;
    }

    .liked-pane-layout-3col .funnel-card-name {
      font-size: 11px !important;
    }

    .liked-pane-layout-3col .funnel-card-email {
      font-size: 9px !important;
    }

    .liked-pane-layout-3col .funnel-card-footer {
      padding-top: 4px !important;
      margin-top: 0 !important;
    }

    .liked-pane-layout-3col .funnel-card-icons {
      font-size: 9px !important;
      gap: 4px !important;
    }

    .liked-pane-layout-3col .funnel-card-icons i {
      width: 8px !important;
      height: 8px !important;
    }

    /* --------------------------------------------------
       OTIMIZAÇÕES RESPONSIVAS MOBILE (MAX-WIDTH: 768PX)
       -------------------------------------------------- */
    @media (max-width: 768px) {
      .app-layout {
        flex-direction: column !important;
      }

      /* Conversão do Sidebar em Bottom Nav Bar */
      .sidebar {
        width: 100% !important;
        height: calc(65px + env(safe-area-inset-bottom)) !important;
        position: fixed !important;
        bottom: 0 !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        border-right: none !important;
        border-top: 1px solid rgba(124, 58, 237, 0.08) !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: center !important;
        padding: 0 16px env(safe-area-inset-bottom) 16px !important;
        z-index: 1000 !important;
        backdrop-filter: blur(20px) !important;
        transition: none !important;
      }

      .sidebar:hover {
        width: 100% !important;
        padding: 0 16px !important;
      }

      .sidebar .brand-container {
        display: none !important;
      }

      .sidebar-menu {
        flex-direction: row !important;
        justify-content: space-around !important;
        width: 100% !important;
        margin-top: 0 !important;
        gap: 0 !important;
      }

      .sidebar-item {
        padding: 12px 16px !important;
        justify-content: center !important;
        align-items: center !important;
        width: auto !important;
        min-height: 44px !important;
        gap: 0 !important;
      }

      .sidebar:hover .sidebar-item {
        padding: 12px 16px !important;
        gap: 0 !important;
      }

      .sidebar-item span {
        display: none !important;
      }

      .sidebar-item i {
        width: 24px !important;
        height: 24px !important;
      }

      /* Ocultar o botão "Sair" na barra inferior mobile (disponível no Profile Drawer) */
      .sidebar-item[onclick="logout()"],
      .sidebar-menu > button:last-child {
        display: none !important;
      }

      /* Ajuste da Área de Conteúdo */
      .content-area {
        margin-left: 0 !important;
        padding-bottom: calc(85px + env(safe-area-inset-bottom)) !important; /* Margem de segurança para a bottom bar + safe area */
      }

      .topbar {
        padding: 12px 16px !important;
      }

      .container {
        padding: 0 12px !important;
        margin: 16px auto !important;
        width: 100% !important;
      }

      /* Adaptação de Grids do Aplicativo para Mobile */
      .search-layout-3col {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
      }

      .search-col-map {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
      }

      .leaflet-map-container {
        height: 280px !important; /* Altura reduzida para mapas no celular */
      }

      .top-search-group {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 12px 16px !important;
      }

      .top-search-group button {
        width: 100% !important;
      }

      .rec-kpi-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
      }

      /* Layout de Matches e Kanban */
      .liked-pane-layout-3col {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
      }

      .liked-pane-layout-3col > div:nth-child(3) {
        grid-column: span 1 !important;
        max-width: 100% !important;
      }

      /* Forçar Kanban em coluna única para mobile */
      .liked-pane-layout-3col .funnel-container,
      .funnel-container {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
      }

      .funnel-column {
        min-height: auto !important;
      }

      /* Reduzir tamanho de cards na autenticação */
      .auth-card {
        padding: 24px 16px !important;
        border-radius: 20px !important;
        margin: 10px !important;
      }

      .auth-title {
        font-size: 24px !important;
      }

      /* Wizard em etapas no mobile (empilhar sidebar de etapas) */
      .wizard-layout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
      }

      .wizard-sidebar-sec {
        flex-direction: row !important;
        overflow-x: auto !important;
        padding-bottom: 8px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.06) !important;
        width: 100% !important;
        gap: 12px !important;
      }

      .wizard-step-btn {
        flex-shrink: 0 !important;
        width: auto !important;
        padding: 6px 12px !important;
      }

      .wizard-step-label {
        display: none !important; /* Ocultar labels de passos no mobile para caber tudo */
      }

      .wizard-advice-card {
        display: none !important; /* Ocultar card de dicas lateral no celular */
      }

      /* Prevenção de Zoom Automático nos Formulários no Mobile */
      .helper-input, 
      .chat-input, 
      select, 
      textarea,
      input[type="text"],
      input[type="email"],
      input[type="tel"],
      input[type="number"],
      input[type="password"] {
        font-size: 16px !important;
      }

      /* Dynamic Viewport Height para Drawers no Mobile */
      .profile-drawer,
      .profile-drawer-backdrop {
        height: 100dvh !important;
      }

      /* Ampliação de Áreas de Toque (Hitboxes) no Mobile */
      .action-btn {
        min-height: 44px !important;
      }
    }

    /* ==================================================
       TELEPROMPTER GUIADO (ESTILOS PREMIUM)
       ================================================== */
    .teleprompter-script-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 8px 12px;
      border-radius: 10px;
      font-family: var(--font-outfit);
      font-weight: 600;
      font-size: 11.5px;
      cursor: pointer;
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: #fff;
      color: var(--text-muted);
      transition: var(--transition);
      user-select: none;
    }
    .teleprompter-script-btn:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-1px);
    }
    .teleprompter-script-btn.active {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: #fff;
      border-color: var(--primary);
      box-shadow: 0 4px 10px rgba(124, 58, 237, 0.15);
    }
    
    .teleprompter-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 50px; /* Acima da barra de controles inferiores */
      z-index: 10;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      background: rgba(15, 23, 42, 0.7);
      backdrop-filter: blur(1px);
      padding: 14px;
      text-align: center;
      pointer-events: none;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }
    
    .teleprompter-header-bar {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      padding-bottom: 6px;
    }
    
    .teleprompter-badge-step {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: #fff;
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 8px;
      font-weight: 700;
      text-transform: uppercase;
      font-family: var(--font-inter);
    }
    
    .teleprompter-step-title {
      font-family: var(--font-outfit);
      font-size: 10px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.85);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .teleprompter-text-container {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px 4px;
      width: 100%;
    }
    
    .teleprompter-text-active {
      font-family: var(--font-outfit);
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      line-height: 1.4;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.85);
      margin: 0;
    }
    
    .teleprompter-helper-sub {
      width: 100%;
      border-top: 1px dashed rgba(255, 255, 255, 0.12);
      padding-top: 6px;
      font-size: 9.5px;
      color: rgba(255, 255, 255, 0.65);
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3px;
    }

    /* Modal de Vídeo Modelo */
    .model-video-modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(15, 23, 42, 0.45);
      backdrop-filter: blur(6px);
      z-index: 20000 !important;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.2s ease-out;
      padding: 16px;
    }
    
    .model-video-card {
      width: 100%;
      max-width: 320px;
      background: #ffffff;
      border: 1px solid rgba(124, 58, 237, 0.15);
      border-radius: 20px;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      position: relative;
      animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .model-video-body {
      width: 100%;
      aspect-ratio: 9/16;
      max-height: 440px;
      background: #000;
      position: relative;
    }
    
    .model-video-body video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .model-video-footer {
      padding: 12px;
      background: #fff;
      text-align: center;
      border-top: 1px solid rgba(0,0,0,0.05);
    }

    /* --------------------------------------------------
       ACCORDION DE TIRAS VERTICAIS 3D (FASE 59)
       Mecânica de sanfona com flex-grow para expansão/recolhimento
       inspirada no carrosselobjetivo.mp4
       -------------------------------------------------- */

    .accordion-carousel {
      display: flex;
      gap: 10px;
      height: 540px;
      width: 100%;
      position: relative;
    }

    /* ---- Cada Tira (Strip) ---- */
    .accordion-strip {
      flex: 1;
      min-width: 0;
      position: relative;
      border-radius: 1.25rem;
      overflow: hidden;
      cursor: pointer;
      transition: flex 0.65s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* Tira Ativa: expande */
    .accordion-strip.active {
      flex: 7;
      cursor: default;
    }

    /* Gradientes vibrantes por strip */
    .accordion-strip[data-index="0"] { background: linear-gradient(160deg, #059669 0%, #34d399 100%); }
    .accordion-strip[data-index="1"] { background: linear-gradient(160deg, #7c3aed 0%, #a78bfa 100%); }
    .accordion-strip[data-index="2"] { background: linear-gradient(160deg, #e11d48 0%, #fb7185 100%); }
    .accordion-strip[data-index="3"] { background: linear-gradient(160deg, #d97706 0%, #fbbf24 100%); }
    .accordion-strip[data-index="4"] { background: linear-gradient(160deg, #0284c7 0%, #38bdf8 100%); }
    .accordion-strip[data-index="5"] { background: linear-gradient(160deg, #4f46e5 0%, #818cf8 100%); }

    /* Efeito hover sutil nas tiras recolhidas */
    .accordion-strip:not(.active):hover {
      flex: 1.6;
    }
    .accordion-strip:not(.active):hover .strip-collapsed-face {
      background: rgba(255, 255, 255, 0.08);
    }

    /* ---- Face Recolhida (Vertical) ---- */
    .strip-collapsed-face {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      padding: 2rem 0;
      z-index: 5;
      transition: opacity 0.35s ease;
    }

    .accordion-strip.active .strip-collapsed-face {
      opacity: 0;
      pointer-events: none;
    }

    .strip-number-vertical {
      font-family: var(--font-mono, 'JetBrains Mono', monospace);
      font-size: 2.2rem;
      font-weight: 900;
      color: #ffffff;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .strip-label-vertical {
      writing-mode: vertical-lr;
      transform: rotate(180deg);
      font-family: var(--font-sora, 'Sora', sans-serif);
      font-size: 0.95rem;
      font-weight: 800;
      color: #ffffff;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      white-space: nowrap;
    }

    /* ---- Conteúdo Expandido ---- */
    .strip-expanded-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 2.5rem 3rem;
      gap: 2rem;
      opacity: 0;
      pointer-events: none;
      transform: translateX(-15px);
      transition: opacity 0.45s ease 0.2s, transform 0.45s ease 0.2s;
      z-index: 10;
    }

    .accordion-strip.active .strip-expanded-content {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(0);
    }

    /* ---- Lado de Texto ---- */
    .strip-text-side {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 50%;
      position: relative;
      z-index: 10;
    }

    .strip-watermark {
      font-family: var(--font-mono, 'JetBrains Mono', monospace);
      font-size: 7rem;
      font-weight: 900;
      line-height: 0.85;
      letter-spacing: -0.05em;
      color: rgba(255, 255, 255, 0.1);
      position: absolute;
      top: -1rem;
      left: -0.5rem;
      user-select: none;
      pointer-events: none;
    }

    .strip-badge {
      display: inline-block;
      font-family: var(--font-mono, 'JetBrains Mono', monospace);
      font-size: 0.65rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.95);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.25);
      padding: 0.35rem 1rem;
      border-radius: 100px;
      margin-bottom: 1rem;
      width: fit-content;
      backdrop-filter: blur(4px);
    }

    .strip-title {
      font-family: var(--font-sora, 'Sora', sans-serif);
      font-size: 1.75rem;
      font-weight: 800;
      color: #ffffff;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 0.75rem;
    }

    .strip-description {
      font-family: var(--font-sora, 'Sora', sans-serif);
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.6;
      margin-bottom: 1.5rem;
      max-width: 400px;
    }

    /* CTA Row */
    .strip-cta-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .strip-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.35);
      color: #ffffff;
      font-family: var(--font-sora, 'Sora', sans-serif);
      font-weight: 700;
      font-size: 0.8rem;
      padding: 0.65rem 1.5rem;
      border-radius: 0.75rem;
      text-decoration: none;
      backdrop-filter: blur(6px);
      transition: all 0.25s ease;
    }

    .strip-cta-btn:hover {
      background: rgba(255, 255, 255, 0.35);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .strip-soundwave-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.85);
      font-family: var(--font-mono, 'JetBrains Mono', monospace);
      font-weight: 700;
      font-size: 0.65rem;
      padding: 0.5rem 1rem;
      border-radius: 0.75rem;
      backdrop-filter: blur(4px);
      letter-spacing: 0.04em;
    }

    /* ---- Lado de Mídia (Imagem 3D Pop-out) ---- */
    .strip-media-side {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 15;
      overflow: visible;
    }

    .strip-3d-asset {
      max-height: 440px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.3));
      animation: float3D 6s ease-in-out infinite;
      transform-origin: center bottom;
      position: relative;
      z-index: 20;
    }

    /* Levitação 3D suave */
    @keyframes float3D {
      0%, 100% {
        transform: translateY(0px) rotate(0deg);
      }
      50% {
        transform: translateY(-14px) rotate(1.5deg);
      }
    }

    /* Mini Equalizador de Som Animado */
    .soundwave-widget {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      height: 18px;
    }

    .soundwave-bar {
      width: 3px;
      height: 100%;
      border-radius: 2px;
      background-color: currentColor;
      animation: soundWave 1.2s ease-in-out infinite alternate;
    }

    .soundwave-bar:nth-child(1) { animation-delay: 0.1s; }
    .soundwave-bar:nth-child(2) { animation-delay: 0.3s; }
    .soundwave-bar:nth-child(3) { animation-delay: 0.5s; }
    .soundwave-bar:nth-child(4) { animation-delay: 0.2s; }

    @keyframes soundWave {
      0% { height: 20%; }
      100% { height: 100%; }
    }

    /* ---- Responsividade Mobile (<= 768px) ---- */
    @media (max-width: 768px) {
      .accordion-carousel {
        flex-direction: column;
        height: auto;
        gap: 8px;
      }

      .accordion-strip {
        flex: none !important;
        height: 56px;
        border-radius: 1rem;
        transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
      }

      .accordion-strip.active {
        height: 420px;
      }

      .accordion-strip:not(.active):hover {
        flex: none !important;
        height: 64px;
      }

      .strip-collapsed-face {
        flex-direction: row;
        gap: 1rem;
        padding: 0 1.25rem;
        justify-content: flex-start;
      }

      .strip-number-vertical {
        font-size: 1.25rem;
      }

      .strip-label-vertical {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 0.75rem;
      }

      .strip-expanded-content {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
      }

      .strip-text-side {
        max-width: 100%;
      }

      .strip-title {
        font-size: 1.25rem;
      }

      .strip-description {
        font-size: 0.78rem;
        margin-bottom: 1rem;
      }

      .strip-3d-asset {
        max-height: 160px;
      }

      .strip-watermark {
        font-size: 4rem;
        top: -0.5rem;
      }
    }

