/* ================================================================
   We Comply — CSS Principal
   Tech-first, mobile-first, Bootstrap 5 base
   Paleta: --wc-purple #802FF1 | --wc-blue #006AB3 | dark sections
   ================================================================ */

/* ── Tokens de design ─────────────────────────────────────────── */
:root {
  --wc-purple:        #802FF1;
  --wc-purple-dark:   #6620C8;
  --wc-purple-light:  #A560F5;
  --wc-blue:          #006AB3;
  --wc-blue-dark:     #00508A;
  --wc-dark:          #0D0D1A;
  --wc-dark-2:        #13131F;
  --wc-dark-3:        #1A1A2E;
  --wc-dark-4:        #1E1E35;
  --wc-surface:       #242438;
  --wc-text:          #F0F0F5;
  --wc-text-muted:    #A0A0B8;
  --wc-border:        rgba(255,255,255,0.08);
  --wc-white:         #FFFFFF;
  --wc-light-bg:      #F7F8FC;
  --wc-light-border:  #E4E6EF;
  --wc-green:         #198754;
  --wc-gradient:      linear-gradient(135deg, #802FF1 0%, #006AB3 100%);
  --wc-gradient-soft: linear-gradient(135deg, rgba(128,47,241,0.12) 0%, rgba(0,106,179,0.08) 100%);

  --wc-radius:    12px;
  --wc-radius-lg: 20px;
  --wc-shadow:    0 4px 24px rgba(0,0,0,0.12);
  --wc-shadow-lg: 0 8px 48px rgba(0,0,0,0.18);

  --wc-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset e base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family:    var(--wc-font);
  font-size:      16px;
  line-height:    1.6;
  color:          #1A1A2E;
  background:     var(--wc-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; }

/* ── Cookie Consent ───────────────────────────────────────────── */
#wc-cookie-banner {
  display:        none;
  position:       fixed;
  bottom:         0;
  left:           0;
  right:          0;
  z-index:        9999;
  background:     var(--wc-dark-2);
  border-top:     1px solid var(--wc-border);
  padding:        16px 24px;
  font-size:      14px;
  color:          var(--wc-text-muted);
  flex-direction: column;
  gap:            0;
}

#wc-cookie-main {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             16px;
  flex-wrap:       wrap;
}

#wc-cookie-main p { margin: 0; flex: 1; min-width: 200px; line-height: 1.5; }
#wc-cookie-main a { color: var(--wc-purple-light); text-decoration: underline; }

.wc-cookie-actions {
  display:     flex;
  align-items: center;
  gap:         10px;
  flex-wrap:   wrap;
  flex-shrink: 0;
}

/* Botões — paridade visual obrigatória (Guia ANPD) */
.wc-cookie-btn {
  border:        none;
  border-radius: 8px;
  cursor:        pointer;
  font-size:     13px;
  font-weight:   600;
  padding:       9px 18px;
  min-height:    40px;
  min-width:     80px;
  white-space:   nowrap;
  touch-action:  manipulation;
  transition:    background 0.2s, color 0.2s, border-color 0.2s;
  line-height:   1;
}

.wc-cookie-btn--primary {
  background: var(--wc-purple);
  color:      #fff;
}
.wc-cookie-btn--primary:hover { background: var(--wc-purple-dark); }

.wc-cookie-btn--secondary {
  background:   transparent;
  color:        var(--wc-text-muted);
  border:       1px solid rgba(255,255,255,0.25);
}
.wc-cookie-btn--secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color:        #fff;
}

.wc-cookie-btn--link {
  background: transparent;
  color:      var(--wc-purple-light);
  padding:    9px 8px;
  min-width:  auto;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wc-cookie-btn--link:hover { color: #fff; }

/* Painel de preferências */
#wc-cookie-panel {
  border-top:  1px solid var(--wc-border);
  margin-top:  14px;
  padding-top: 14px;
}

.wc-cookie-panel-title {
  font-size:   13px;
  font-weight: 700;
  color:       var(--wc-white);
  margin:      0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wc-cookie-category {
  background:    rgba(255,255,255,0.03);
  border:        1px solid var(--wc-border);
  border-radius: 8px;
  padding:       12px 14px;
  margin-bottom: 8px;
}

.wc-cookie-category-header {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  margin-bottom:   6px;
}

.wc-cookie-category-name {
  font-size:   13px;
  font-weight: 600;
  color:       var(--wc-white);
}

.wc-cookie-badge {
  font-size:   11px;
  font-weight: 600;
  color:       rgba(255,255,255,0.4);
  background:  rgba(255,255,255,0.06);
  padding:     2px 8px;
  border-radius: 20px;
}

.wc-cookie-category-desc {
  font-size:   12px;
  color:       rgba(255,255,255,0.5);
  margin:      0;
  line-height: 1.5;
}

.wc-cookie-panel-actions {
  display:         flex;
  justify-content: flex-end;
  gap:             10px;
  margin-top:      12px;
}

/* Toggle switch */
.wc-cookie-toggle {
  position:   relative;
  display:    inline-block;
  width:      40px;
  height:     22px;
  flex-shrink: 0;
  cursor:     pointer;
}

.wc-cookie-toggle input { opacity: 0; width: 0; height: 0; }

.wc-cookie-toggle-slider {
  position:          absolute;
  inset:             0;
  background:        rgba(255,255,255,0.15);
  border-radius:     22px;
  transition:        background 0.2s;
}

.wc-cookie-toggle-slider::before {
  content:           '';
  position:          absolute;
  width:             16px;
  height:            16px;
  left:              3px;
  bottom:            3px;
  background:        #fff;
  border-radius:     50%;
  transition:        transform 0.2s;
}

.wc-cookie-toggle input:checked + .wc-cookie-toggle-slider { background: var(--wc-purple); }
.wc-cookie-toggle input:checked + .wc-cookie-toggle-slider::before { transform: translateX(18px); }

@media (max-width: 600px) {
  #wc-cookie-main { flex-direction: column; align-items: flex-start; }
  .wc-cookie-actions { width: 100%; }
  .wc-cookie-btn { flex: 1; text-align: center; }
  .wc-cookie-btn--link { flex: none; }
}

/* ── Navbar ───────────────────────────────────────────────────── */
.wc-navbar {
  background:     rgba(13,13,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom:  1px solid var(--wc-border);
  padding:        14px 0;
  transition:     background 0.3s ease, box-shadow 0.3s ease;
}

.wc-navbar-scrolled {
  background: rgba(13,13,26,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.wc-navbar .navbar-brand img {
  height:    38px;
  width:     auto;
  max-width: 160px;
}

.wc-navbar .nav-link {
  color:         var(--wc-text-muted);
  font-size:     15px;
  font-weight:   500;
  padding:       8px 12px;
  border-radius: 8px;
  transition:    color 0.2s, background 0.2s;
}

.wc-navbar .nav-link:hover,
.wc-navbar .nav-link:focus {
  color:      var(--wc-white);
  background: rgba(255,255,255,0.06);
}

.wc-navbar .navbar-toggler {
  border-color: rgba(255,255,255,0.3);
  padding:      6px 10px;
}

.wc-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240,240,245,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.wc-btn-outline-nav {
  color:         var(--wc-text-muted);
  border:        1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding:       8px 16px;
  font-size:     14px;
  font-weight:   500;
  transition:    all 0.2s;
  min-height:    44px;
}

.wc-btn-outline-nav:hover {
  color:       var(--wc-white);
  border-color: rgba(255,255,255,0.5);
  background:  rgba(255,255,255,0.06);
}

.wc-btn-primary-nav {
  background:    var(--wc-purple);
  color:         #fff;
  border-radius: 8px;
  padding:       8px 18px;
  font-size:     14px;
  font-weight:   600;
  transition:    background 0.2s, transform 0.15s;
  min-height:    44px;
  touch-action:  manipulation;
}

.wc-btn-primary-nav:hover {
  background: var(--wc-purple-dark);
  color:      #fff;
  transform:  translateY(-1px);
}

/* Mobile navbar */
@media (max-width: 991.98px) {
  .wc-navbar .navbar-collapse {
    background:    rgba(13,13,26,0.98);
    margin-top:    12px;
    border-radius: var(--wc-radius);
    padding:       16px;
    border:        1px solid var(--wc-border);
  }
  .wc-btn-outline-nav,
  .wc-btn-primary-nav {
    width: 100%;
    text-align: center;
    margin-top: 4px;
  }
}

/* ── Botões globais ───────────────────────────────────────────── */
.wc-btn-primary {
  background:    var(--wc-gradient);
  color:         #fff;
  border:        none;
  border-radius: var(--wc-radius);
  font-weight:   600;
  letter-spacing: 0.01em;
  transition:    opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  touch-action:  manipulation;
}

.wc-btn-primary:hover {
  color:      #fff;
  opacity:    0.9;
  transform:  translateY(-2px);
  box-shadow: 0 6px 20px rgba(128,47,241,0.35);
}

.wc-btn-outline {
  background:    transparent;
  color:         var(--wc-white);
  border:        2px solid rgba(255,255,255,0.35);
  border-radius: var(--wc-radius);
  font-weight:   600;
  transition:    border-color 0.2s, background 0.2s;
  touch-action:  manipulation;
}

.wc-btn-outline:hover {
  color:         var(--wc-white);
  border-color:  rgba(255,255,255,0.7);
  background:    rgba(255,255,255,0.06);
}

.wc-btn-white {
  background:    var(--wc-white);
  color:         var(--wc-purple);
  border:        none;
  border-radius: var(--wc-radius);
  font-weight:   700;
  transition:    opacity 0.2s, transform 0.15s;
  touch-action:  manipulation;
}

.wc-btn-white:hover {
  color:      var(--wc-purple-dark);
  opacity:    0.93;
  transform:  translateY(-2px);
}

.wc-btn-outline-light {
  background:    transparent;
  color:         rgba(255,255,255,0.85);
  border:        2px solid rgba(255,255,255,0.35);
  border-radius: var(--wc-radius);
  font-weight:   600;
  transition:    all 0.2s;
  touch-action:  manipulation;
}

.wc-btn-outline-light:hover {
  color:         #fff;
  border-color:  rgba(255,255,255,0.7);
}

.wc-btn-lg {
  padding:   14px 28px;
  font-size: 16px;
  min-height: 52px;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.wc-hero {
  position:   relative;
  min-height: 100svh;
  display:    flex;
  align-items: center;
  overflow:   hidden;
  padding:    120px 0 80px;
}

.wc-hero-bg {
  position:   absolute;
  inset:      0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(128,47,241,0.3) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0,106,179,0.2) 0%, transparent 60%),
              var(--wc-dark);
  z-index:    0;
}

/* Grid pattern overlay */
.wc-hero-bg::after {
  content:    '';
  position:   absolute;
  inset:      0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index:    1;
}

.wc-hero .container { position: relative; z-index: 2; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.wc-breadcrumb .breadcrumb-item a { color: var(--wc-blue); text-decoration: none; }
.wc-breadcrumb .breadcrumb-item a:hover { text-decoration: underline; }
.wc-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.65); }
.wc-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

.wc-badge-pill {
  display:       inline-flex;
  align-items:   center;
  gap:           8px;
  background:    rgba(128,47,241,0.18);
  border:        1px solid rgba(128,47,241,0.35);
  color:         var(--wc-purple-light);
  padding:       6px 16px;
  border-radius: 100px;
  font-size:     14px;
  font-weight:   500;
}

.wc-badge-dot {
  width:         8px;
  height:        8px;
  border-radius: 50%;
  background:    var(--wc-purple-light);
  animation:     pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.wc-hero-title {
  font-size:   clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color:       var(--wc-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.wc-gradient-text {
  background: var(--wc-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wc-hero-subtitle {
  font-size:   clamp(1rem, 2.5vw, 1.2rem);
  color:       var(--wc-text-muted);
  max-width:   640px;
  margin:      0 auto;
  line-height: 1.7;
}

.wc-hero-scroll {
  position:  absolute;
  bottom:    28px;
  left:      50%;
  transform: translateX(-50%);
  color:     rgba(255,255,255,0.25);
  animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Trust Bar ────────────────────────────────────────────────── */
.wc-trust-bar {
  background: var(--wc-dark-2);
  border-top:    1px solid var(--wc-border);
  border-bottom: 1px solid var(--wc-border);
  padding: 32px 0;
}

.wc-trust-item {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
  padding:        16px 8px;
  border-right:   1px solid var(--wc-border);
}

.wc-trust-item:last-child { border-right: none; }

@media (max-width: 767.98px) {
  .wc-trust-item { border-right: none; border-bottom: 1px solid var(--wc-border); }
  .wc-trust-item:last-child { border-bottom: none; }
}

.wc-trust-number {
  font-size:   2rem;
  font-weight: 800;
  background:  var(--wc-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.wc-trust-label {
  font-size:   12px;
  color:       var(--wc-text-muted);
  margin-top:  4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Sections base ────────────────────────────────────────────── */
.wc-section { padding: 96px 0; }

@media (max-width: 767.98px) { .wc-section { padding: 64px 0; } }

.wc-section-light   { background: var(--wc-light-bg); }
.wc-section-dark    { background: var(--wc-dark-3); }
.wc-section-gradient {
  background: linear-gradient(135deg, #802FF1 0%, #004E8C 100%);
}

.wc-section-title {
  font-size:      clamp(1.75rem, 4vw, 2.5rem);
  font-weight:    800;
  color:          var(--wc-dark);
  line-height:    1.2;
  letter-spacing: -0.02em;
}

.wc-section-subtitle {
  font-size:  1.05rem;
  color:      #6B6B8A;
  margin-top: 12px;
  line-height: 1.7;
}

.wc-title-light { color: var(--wc-white); }

.wc-text-light {
  color:      rgba(255,255,255,0.75);
  font-size:  1rem;
  line-height: 1.75;
}

.wc-tag {
  display:       inline-block;
  background:    var(--wc-gradient-soft);
  color:         var(--wc-purple);
  border:        1px solid rgba(128,47,241,0.2);
  padding:       4px 14px;
  border-radius: 100px;
  font-size:     13px;
  font-weight:   600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wc-tag-light {
  background: rgba(255,255,255,0.15);
  color:      rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.3);
}

/* ── Problema ─────────────────────────────────────────────────── */
.wc-problem-card {
  background:    var(--wc-white);
  border:        1px solid var(--wc-light-border);
  border-radius: var(--wc-radius-lg);
  padding:       28px 24px;
  height:        100%;
  transition:    transform 0.2s, box-shadow 0.2s;
}

.wc-problem-card:hover {
  transform:  translateY(-4px);
  box-shadow: var(--wc-shadow);
}

.wc-problem-icon {
  width:         48px;
  height:        48px;
  border-radius: 12px;
  background:    var(--wc-gradient-soft);
  color:         var(--wc-purple);
  display:       flex;
  align-items:   center;
  justify-content: center;
  margin-bottom: 16px;
}

.wc-problem-text {
  font-size:   1.05rem;
  color:       #2A2A45;
  line-height: 1.6;
  font-style:  italic;
  margin:      0;
}

.wc-highlight-text {
  font-size:   1.1rem;
  color:       #2A2A45;
  line-height: 1.7;
}

/* ── Sobre ────────────────────────────────────────────────────── */
.wc-about-img {
  border-radius: var(--wc-radius-lg);
  width:         100%;
  height:        auto;
  object-fit:    cover;
  box-shadow:    var(--wc-shadow-lg);
}

.wc-about-stat {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            6px;
  color:          rgba(255,255,255,0.7);
  font-size:      13px;
  font-weight:    500;
}

.wc-about-stat svg { color: var(--wc-purple-light); }

/* ── Plataforma ───────────────────────────────────────────────── */
.wc-platform-card {
  background:    var(--wc-white);
  border:        1px solid var(--wc-light-border);
  border-radius: var(--wc-radius);
  padding:       20px;
  height:        100%;
  transition:    border-color 0.2s, box-shadow 0.2s;
}

.wc-platform-card:hover {
  border-color: rgba(128,47,241,0.3);
  box-shadow:   0 4px 16px rgba(128,47,241,0.08);
}

.wc-platform-icon {
  width:         44px;
  height:        44px;
  border-radius: 10px;
  background:    var(--wc-gradient-soft);
  color:         var(--wc-purple);
  display:       flex;
  align-items:   center;
  justify-content: center;
  margin-bottom: 12px;
}

.wc-platform-card-title {
  font-size:   15px;
  font-weight: 700;
  color:       var(--wc-dark);
  margin-bottom: 6px;
}

.wc-platform-card-text {
  font-size:  13px;
  color:      #6B6B8A;
  margin:     0;
  line-height: 1.5;
}

/* Mockup do painel */
.wc-platform-mockup {
  background:    var(--wc-dark-2);
  border:        1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  overflow:      hidden;
  box-shadow:    var(--wc-shadow-lg), 0 0 0 1px rgba(128,47,241,0.2);
}

.wc-mockup-header {
  background:     var(--wc-dark-3);
  padding:        12px 16px;
  display:        flex;
  align-items:    center;
  gap:            12px;
  border-bottom:  1px solid var(--wc-border);
}

.wc-mockup-dots { display: flex; gap: 6px; }
.wc-mockup-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.wc-mockup-dots span:first-child { background: #ff5f57; }
.wc-mockup-dots span:nth-child(2) { background: #ffc02d; }
.wc-mockup-dots span:nth-child(3) { background: #28c840; }

.wc-mockup-url {
  font-size:   12px;
  color:       var(--wc-text-muted);
  font-family: monospace;
}

.wc-mockup-body { display: flex; height: 320px; }

.wc-mockup-sidebar {
  width:         64px;
  background:    var(--wc-dark-4);
  border-right:  1px solid var(--wc-border);
  padding:       16px 8px;
  display:       flex;
  flex-direction: column;
  gap:           8px;
}

.wc-mockup-nav-item {
  height:        36px;
  border-radius: 8px;
  background:    rgba(255,255,255,0.06);
}

.wc-mockup-nav-item.active {
  background: rgba(128,47,241,0.35);
}

.wc-mockup-content { flex: 1; padding: 16px; overflow: hidden; }

.wc-mockup-stat-card {
  height:        56px;
  border-radius: 8px;
  background:    rgba(255,255,255,0.06);
}

.wc-mockup-stat-purple { background: rgba(128,47,241,0.25); }

.wc-mockup-chart {
  height:        100px;
  border-radius: 8px;
  background:    linear-gradient(180deg, rgba(128,47,241,0.2) 0%, transparent 100%);
  border:        1px solid rgba(128,47,241,0.2);
}

.wc-mockup-row {
  height:        12px;
  border-radius: 6px;
  background:    rgba(255,255,255,0.07);
}

.wc-mockup-row.short { width: 65%; }

/* ── Canal Ético ──────────────────────────────────────────────── */
.wc-feature-list {
  list-style: none;
  padding:    0;
  margin:     0;
  display:    flex;
  flex-direction: column;
  gap:        12px;
}

.wc-feature-list li {
  display:     flex;
  align-items: flex-start;
  gap:         10px;
  color:       rgba(255,255,255,0.85);
  font-size:   15px;
  line-height: 1.5;
}

.wc-feature-list li svg {
  color:      rgba(255,255,255,0.9);
  flex-shrink: 0;
  margin-top:  2px;
}

/* Steps */
.wc-canal-steps { display: flex; flex-direction: column; gap: 0; }

.wc-step {
  display:        flex;
  align-items:    flex-start;
  gap:            20px;
  padding-bottom: 28px;
  position:       relative;
}

.wc-step:not(:last-child)::before {
  content:    '';
  position:   absolute;
  left:       19px;
  top:        44px;
  bottom:     0;
  width:      2px;
  background: rgba(255,255,255,0.15);
}

.wc-step-number {
  width:         40px;
  height:        40px;
  border-radius: 50%;
  background:    rgba(255,255,255,0.15);
  color:         #fff;
  font-weight:   700;
  font-size:     16px;
  display:       flex;
  align-items:   center;
  justify-content: center;
  flex-shrink:   0;
  border:        2px solid rgba(255,255,255,0.3);
}

.wc-step-title {
  font-size:     16px;
  font-weight:   700;
  color:         #fff;
  margin-bottom: 6px;
}

.wc-step-text {
  font-size:  14px;
  color:      rgba(255,255,255,0.7);
  margin:     0;
  line-height: 1.6;
}

/* ── Ajustes de visibilidade para seções claras ───────────────── */
.wc-section-light .wc-step-number {
  background:   rgba(128, 47, 241, 0.1);
  color:        var(--wc-purple);
  border-color: rgba(128, 47, 241, 0.3);
}

.wc-section-light .wc-step:not(:last-child)::before {
  background:   rgba(128, 47, 241, 0.2);
}

.wc-section-light .wc-step-title {
  color:        var(--wc-dark);
}

.wc-section-light .wc-step-text {
  color:        #6B6B8A;
}

/* ── Serviços ─────────────────────────────────────────────────── */
.wc-service-tabs { gap: 4px; }

.wc-tab-btn {
  background:    var(--wc-white);
  border:        1px solid var(--wc-light-border);
  color:         #6B6B8A;
  padding:       10px 24px;
  border-radius: 100px;
  font-size:     15px;
  font-weight:   600;
  cursor:        pointer;
  transition:    all 0.2s;
  min-height:    44px;
  touch-action:  manipulation;
}

.wc-tab-btn:hover {
  color:       var(--wc-purple);
  border-color: rgba(128,47,241,0.3);
}

.wc-tab-btn.active {
  background:   var(--wc-gradient);
  color:        #fff;
  border-color: transparent;
  box-shadow:   0 4px 14px rgba(128,47,241,0.3);
}

.wc-service-card {
  background:    var(--wc-white);
  border:        1px solid var(--wc-light-border);
  border-radius: var(--wc-radius-lg);
  padding:       28px 24px;
  height:        100%;
  display:       flex;
  flex-direction: column;
  transition:    transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.wc-service-card:hover {
  transform:    translateY(-4px);
  box-shadow:   var(--wc-shadow);
  border-color: rgba(128,47,241,0.2);
}

.wc-service-card-featured {
  border-color: rgba(128,47,241,0.3);
  background:   linear-gradient(135deg, rgba(128,47,241,0.04) 0%, rgba(0,106,179,0.02) 100%);
}

.wc-service-icon {
  width:         52px;
  height:        52px;
  border-radius: 14px;
  background:    var(--wc-gradient-soft);
  color:         var(--wc-purple);
  display:       flex;
  align-items:   center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink:   0;
}

.wc-service-title {
  font-size:     17px;
  font-weight:   700;
  color:         var(--wc-dark);
  margin-bottom: 10px;
  line-height:   1.3;
}

.wc-service-text {
  font-size:   14px;
  color:       #6B6B8A;
  line-height: 1.65;
  flex:        1;
  margin:      0 0 20px;
}

.wc-service-cta {
  display:     inline-flex;
  align-items: center;
  gap:         6px;
  color:       var(--wc-purple);
  font-weight: 600;
  font-size:   14px;
  margin-top:  auto;
  transition:  gap 0.2s;
  min-height:  44px;
  padding:     0;
}

.wc-service-cta:hover { gap: 10px; color: var(--wc-purple-dark); }

/* ── Diferenciais ─────────────────────────────────────────────── */
.wc-diff-card {
  background:    var(--wc-surface);
  border:        1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding:       28px 24px;
  height:        100%;
  transition:    transform 0.2s, border-color 0.2s;
}

.wc-diff-card:hover {
  transform:    translateY(-4px);
  border-color: rgba(128,47,241,0.3);
}

.wc-diff-icon {
  width:         56px;
  height:        56px;
  border-radius: 14px;
  background:    rgba(0,106,179,0.2);
  color:         #5DB5FF;
  display:       flex;
  align-items:   center;
  justify-content: center;
  margin-bottom: 16px;
}

.wc-diff-icon-purple {
  background: rgba(128,47,241,0.2);
  color:      var(--wc-purple-light);
}

.wc-diff-title {
  font-size:     17px;
  font-weight:   700;
  color:         var(--wc-white);
  margin-bottom: 10px;
}

.wc-diff-text {
  font-size:   14px;
  color:       var(--wc-text-muted);
  line-height: 1.65;
  margin:      0;
}

/* ── Certificações ────────────────────────────────────────────── */
.wc-cert-badge {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            8px;
  padding:        16px;
  background:     var(--wc-white);
  border:         1px solid var(--wc-light-border);
  border-radius:  var(--wc-radius);
  transition:     border-color 0.2s, box-shadow 0.2s;
  min-width:      110px;
}

.wc-cert-badge:hover {
  border-color: rgba(128,47,241,0.3);
  box-shadow:   0 4px 14px rgba(128,47,241,0.08);
}

.wc-cert-badge-highlight {
  border-color: rgba(128,47,241,0.3);
  background:   rgba(128,47,241,0.04);
}

.wc-cert-badge span {
  font-size:   12px;
  font-weight: 600;
  color:       #6B6B8A;
  text-align:  center;
}

.wc-cert-extra {
  color:     #6B6B8A;
  font-size: 14px;
  margin:    0;
}

/* ── FAQ ──────────────────────────────────────────────────────── */
.wc-accordion-item {
  background:     var(--wc-surface);
  border:         1px solid var(--wc-border);
  border-radius:  var(--wc-radius) !important;
  margin-bottom:  8px;
  overflow:       hidden;
}

.wc-accordion-btn {
  background:    var(--wc-surface);
  color:         var(--wc-white);
  font-weight:   600;
  font-size:     15px;
  padding:       18px 20px;
  border:        none;
  box-shadow:    none;
}

.wc-accordion-btn:not(.collapsed) {
  background:  var(--wc-dark-4);
  color:       var(--wc-white);
  box-shadow:  none;
}

.wc-accordion-btn::after {
  filter: invert(1) brightness(2);
}

.wc-accordion-body {
  background:  var(--wc-dark-4);
  color:       var(--wc-text-muted);
  font-size:   15px;
  line-height: 1.7;
  padding:     4px 20px 20px;
}

.wc-faq-link {
  color:           var(--wc-purple-light);
  text-decoration: underline;
}

/* ── CTA Final ────────────────────────────────────────────────── */
.wc-cta-section {
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(128,47,241,0.2) 0%, transparent 70%),
              var(--wc-dark-2);
  padding:    100px 0;
  border-top: 1px solid var(--wc-border);
}

.wc-cta-title {
  font-size:   clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color:       var(--wc-white);
  line-height: 1.2;
}

.wc-cta-subtitle {
  color:     var(--wc-text-muted);
  font-size: 1.1rem;
  margin-top: 12px;
}

/* ── Footer Contato ───────────────────────────────────────────── */
.wc-footer-contact {
  background: var(--wc-dark-3);
  padding:    80px 0;
  border-top: 1px solid var(--wc-border);
}

.wc-footer-title {
  font-size:   1.5rem;
  font-weight: 800;
  color:       var(--wc-white);
  margin-bottom: 6px;
}

.wc-footer-subtitle {
  color:       var(--wc-text-muted);
  font-size:   15px;
  margin-bottom: 0;
}

/* Formulário */
.wc-form-label {
  display:     block;
  color:       var(--wc-text-muted);
  font-size:   13px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wc-form-label span { color: var(--wc-purple-light); }

.wc-form-input {
  background:    rgba(255,255,255,0.06);
  border:        1px solid var(--wc-border);
  color:         var(--wc-white);
  border-radius: var(--wc-radius);
  padding:       12px 16px;
  font-size:     16px;
  min-height:    48px;
  transition:    border-color 0.2s, background 0.2s;
  width:         100%;
}

.wc-form-input::placeholder { color: rgba(160,160,184,0.5); }

.wc-form-input option {
  background: #1e1333;
  color:      #ffffff;
}

.wc-form-input:focus {
  background:  rgba(128,47,241,0.08);
  border-color: var(--wc-purple);
  color:        var(--wc-white);
  outline:      none;
  box-shadow:   0 0 0 3px rgba(128,47,241,0.15);
}

.wc-form-textarea { resize: vertical; min-height: 120px; }

.wc-char-count {
  font-size:  12px;
  color:      var(--wc-text-muted);
  margin-top: 4px;
  text-align: right;
}

.wc-form-check {
  display:     flex;
  align-items: flex-start;
  gap:         10px;
  color:       var(--wc-text-muted);
  font-size:   14px;
  line-height: 1.5;
}

.wc-checkbox {
  width:         18px;
  height:        18px;
  min-width:     18px;
  margin-top:    2px;
  accent-color:  var(--wc-purple);
  cursor:        pointer;
}

.wc-form-check a {
  color:           var(--wc-purple-light);
  text-decoration: underline;
}

/* Honeypot — visualmente oculto, bots preenchem, humanos não veem */
.wc-honeypot {
  position:   absolute;
  left:       -9999px;
  width:      1px;
  height:     1px;
  overflow:   hidden;
  opacity:    0;
  pointer-events: none;
}

.wc-form-server-msg {
  background:    rgba(139,92,246,0.15);
  border:        1px solid rgba(139,92,246,0.4);
  border-radius: 8px;
  color:         #c4b5fd;
  font-size:     0.9rem;
  padding:       0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.wc-form-input.is-invalid {
  border-color: #ef4444;
  background:   rgba(239,68,68,0.06);
}
.wc-form-input.is-invalid:focus { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.15); }
.wc-field-error {
  font-size:  0.78rem;
  color:      #f87171;
  margin-top: 0.3rem;
  display:    none;
}

/* Contato info */
.wc-contact-list { display: flex; flex-direction: column; gap: 14px; }

.wc-contact-item {
  display:     flex;
  align-items: center;
  gap:         12px;
  color:       var(--wc-text-muted);
  font-size:   15px;
}

.wc-contact-item svg    { color: var(--wc-purple-light); flex-shrink: 0; }
.wc-contact-item a      { color: var(--wc-text-muted); transition: color 0.2s; }
.wc-contact-item a:hover { color: var(--wc-white); }

/* Social */
.wc-social-links { display: flex; gap: 10px; flex-wrap: wrap; }

.wc-social-btn {
  width:         44px;
  height:        44px;
  border-radius: 10px;
  background:    rgba(255,255,255,0.07);
  color:         var(--wc-text-muted);
  display:       flex;
  align-items:   center;
  justify-content: center;
  border:        1px solid var(--wc-border);
  transition:    all 0.2s;
  touch-action:  manipulation;
}

.wc-social-btn:hover {
  background:   var(--wc-purple);
  color:        #fff;
  border-color: transparent;
}

/* Legal links */
.wc-legal-links {
  display:   flex;
  flex-wrap: wrap;
  gap:       16px;
  margin-top: 0;
}

.wc-legal-links a {
  color:     var(--wc-text-muted);
  font-size: 13px;
  transition: color 0.2s;
}

.wc-legal-links a:hover { color: var(--wc-white); }

/* ── Sub Footer ───────────────────────────────────────────────── */
.wc-subfooter {
  background:  var(--wc-dark);
  padding:     20px 0;
  border-top:  1px solid var(--wc-border);
}

.wc-subfooter .container {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  flex-wrap:       wrap;
  gap:             8px;
}

.wc-subfooter p {
  margin:    0;
  color:     rgba(160,160,184,0.5);
  font-size: 13px;
}

.wc-subfooter a {
  color:      rgba(160,160,184,0.5);
  transition: color 0.2s;
}

.wc-subfooter a:hover { color: var(--wc-text-muted); }

/* ── reCAPTCHA badge — oculto; disclosure exibido inline no footer ── */
.grecaptcha-badge { visibility: hidden !important; }

/* ── WhatsApp FAB ─────────────────────────────────────────────── */
.wc-whatsapp-fab {
  position:        fixed;
  bottom:          24px;
  right:           24px;
  height:          56px;
  min-width:       56px;
  border-radius:   28px;
  background:      #25D366;
  color:           #fff;
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             10px;
  padding:         0 16px 0 14px;
  z-index:         10001;
  box-shadow:      0 4px 16px rgba(37,211,102,0.4);
  transition:      min-width 0.3s ease, padding 0.3s ease, box-shadow 0.2s, bottom 0.3s ease;
  touch-action:    manipulation;
  overflow:        hidden;
  white-space:     nowrap;
  text-decoration: none;
}

.wc-whatsapp-fab-label {
  font-size:   14px;
  font-weight: 600;
  max-width:   0;
  opacity:     0;
  overflow:    hidden;
  transition:  max-width 0.3s ease, opacity 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .wc-whatsapp-fab:hover .wc-whatsapp-fab-label {
    max-width: 140px;
    opacity:   1;
  }
  .wc-whatsapp-fab:hover {
    box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  }
}

/* ── Acessibilidade ───────────────────────────────────────────── */
:focus-visible {
  outline:        2px solid var(--wc-purple);
  outline-offset: 3px;
  border-radius:  4px;
}

.sr-only {
  position:   absolute;
  width:      1px;
  height:     1px;
  padding:    0;
  margin:     -1px;
  overflow:   hidden;
  clip:       rect(0,0,0,0);
  white-space: nowrap;
  border:     0;
}

/* ── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:   0.01ms !important;
    transition-duration:  0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Responsive tweaks ────────────────────────────────────────── */
@media (max-width: 575.98px) {
  .wc-hero    { padding: 100px 0 60px; }
  .wc-btn-lg  { padding: 12px 20px; font-size: 16px; }
  .wc-trust-number { font-size: 1.6rem; }
}

@media (max-width: 767.98px) {
  .wc-subfooter .container { justify-content: center; text-align: center; }
  .wc-mockup-body { height: 200px; }
}

@media (min-width: 992px) {
  .wc-hero { min-height: 100svh; }
}

/* ================================================================
   EXTENSÃO v2 — Mega Menu, Portfolio, NR-1, Sectors Hub
   ================================================================ */

/* ── Design tokens adicionais ─────────────────────────────────── */
:root {
  --wc-amber:        #F59E0B;
  --wc-amber-light:  #FCD34D;
  --wc-amber-bg:     rgba(245,158,11,0.08);
  --wc-amber-border: rgba(245,158,11,0.25);
}

/* ── Mega Menu ────────────────────────────────────────────────── */
.wc-has-mega { position: static; }

.wc-mega-btn {
  background:   none;
  border:       none;
  cursor:       pointer;
  color:        var(--wc-text-muted);
  font-size:    15px;
  font-weight:  500;
  padding:      8px 12px;
  border-radius: 8px;
  display:      inline-flex;
  align-items:  center;
  gap:          5px;
  transition:   color 0.2s, background 0.2s;
  min-height:   44px;
  touch-action: manipulation;
  white-space:  nowrap;
  font-family:  var(--wc-font);
}

.wc-mega-btn:hover,
.wc-mega-btn:focus { color: var(--wc-white); background: rgba(255,255,255,0.06); outline: none; }

.wc-mega-chevron {
  transition:  transform 0.2s ease;
  flex-shrink: 0;
  opacity:     0.6;
}

.wc-has-mega.is-open .wc-mega-chevron { transform: rotate(180deg); opacity: 1; }

.wc-megamenu {
  position:      absolute;
  top:           calc(100% + 10px);
  left:          50%;
  transform:     translateX(-50%) translateY(-8px);
  background:    var(--wc-dark-3);
  border:        1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding:       1.25rem;
  box-shadow:    0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03);
  opacity:       0;
  visibility:    hidden;
  transition:    opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index:       1050;
  min-width:     440px;
  pointer-events: none;
}

.wc-has-mega.is-open .wc-megamenu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* hover controlado via JS (mouseenter/mouseleave no <li>) — sem regra CSS hover aqui */

.wc-megamenu-wide { min-width: 520px; }

.wc-megamenu-label {
  font-size:   0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color:       var(--wc-text-muted);
  padding:     0 0.5rem;
  margin-bottom: 0.35rem;
  opacity:     0.7;
}

.wc-megamenu-item {
  display:        flex;
  align-items:    center;
  gap:            0.875rem;
  padding:        0.65rem 0.75rem;
  border-radius:  10px;
  color:          var(--wc-text);
  text-decoration: none;
  transition:     background 0.15s, color 0.15s;
  min-height:     52px;
}

.wc-megamenu-item:hover { background: rgba(255,255,255,0.07); color: var(--wc-white); }
.wc-megamenu-item:focus-visible { outline: 2px solid var(--wc-purple); outline-offset: 2px; }

.wc-megamenu-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background:    rgba(128,47,241,0.15);
  display:       flex; align-items: center; justify-content: center;
  color:         var(--wc-purple-light);
  flex-shrink:   0;
}

.wc-megamenu-icon-blue   { background: rgba(0,106,179,0.15);  color: #60a5fa; }
.wc-megamenu-icon-green  { background: rgba(25,135,84,0.15);  color: #6ee7b7; }
.wc-megamenu-icon-amber  { background: rgba(245,158,11,0.15); color: #fcd34d; }

.wc-megamenu-title { font-size: 0.87rem; font-weight: 600; color: var(--wc-white); line-height: 1.3; }
.wc-megamenu-desc  { font-size: 0.74rem; color: var(--wc-text-muted); line-height: 1.4; margin-top: 1px; }

.wc-megamenu-access {
  margin-left:    auto;
  font-size:      0.67rem;
  font-weight:    600;
  color:          var(--wc-purple-light);
  background:     rgba(128,47,241,0.12);
  border:         1px solid rgba(128,47,241,0.22);
  border-radius:  6px;
  padding:        3px 8px;
  white-space:    nowrap;
  flex-shrink:    0;
  text-decoration: none;
  transition:     background 0.15s;
}

.wc-megamenu-access:hover { background: rgba(128,47,241,0.25); color: var(--wc-purple-light); }

.wc-megamenu-divider { height: 1px; background: var(--wc-border); margin: 0.6rem 0; }

.wc-megamenu-sectors-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   0.2rem;
}

.wc-megamenu-sector-link {
  display:        flex;
  align-items:    center;
  gap:            0.5rem;
  padding:        0.5rem 0.75rem;
  border-radius:  8px;
  font-size:      0.82rem;
  font-weight:    500;
  color:          var(--wc-text-muted);
  text-decoration: none;
  transition:     background 0.15s, color 0.15s;
  min-height:     44px;
}

.wc-megamenu-sector-link:hover { background: rgba(255,255,255,0.05); color: var(--wc-white); }

.wc-megamenu-sector-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background:  var(--wc-purple);
  flex-shrink: 0;
  opacity:     0.6;
}

@media (max-width: 991.98px) {
  .wc-has-mega { position: relative; }

  .wc-megamenu {
    position:   static;
    transform:  none !important;
    opacity:    1;
    visibility: visible;
    background: rgba(255,255,255,0.03);
    border:     1px solid var(--wc-border);
    box-shadow: none;
    padding:    0.75rem;
    margin-top: 0.35rem;
    display:    none;
    min-width:  unset;
    width:      100%;
    transition: none;
    pointer-events: auto;
  }

  .wc-megamenu-wide { min-width: unset; }
  .wc-megamenu-sectors-grid { grid-template-columns: 1fr; }
  .wc-has-mega.is-open .wc-megamenu { display: block; }
}

/* ── Hero pills ───────────────────────────────────────────────── */
.wc-hero-pills {
  display:         flex;
  flex-wrap:       wrap;
  gap:             0.45rem;
  justify-content: center;
  margin-top:      1.75rem;
}

.wc-hero-pill {
  display:        inline-flex;
  align-items:    center;
  gap:            0.3rem;
  background:     rgba(255,255,255,0.06);
  border:         1px solid rgba(255,255,255,0.1);
  border-radius:  50px;
  padding:        5px 14px;
  font-size:      0.77rem;
  font-weight:    500;
  color:          rgba(255,255,255,0.62);
  text-decoration: none;
  transition:     background 0.2s, border-color 0.2s, color 0.2s;
  min-height:     34px;
  touch-action:   manipulation;
}

.wc-hero-pill:hover {
  background:   rgba(128,47,241,0.15);
  border-color: rgba(128,47,241,0.4);
  color:        var(--wc-white);
}

/* ── Portfolio row labels ─────────────────────────────────────── */
.wc-portfolio-row-label {
  font-size:      0.67rem;
  font-weight:    700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color:          #9ca3af;
  display:        flex;
  align-items:    center;
  gap:            0.75rem;
  margin-bottom:  1.25rem;
}

.wc-portfolio-row-label::after {
  content:    '';
  flex:       1;
  height:     1px;
  background: var(--wc-light-border);
}

/* ── SaaS product cards ───────────────────────────────────────── */
.wc-saas-card {
  background:     var(--wc-dark-2);
  border:         1px solid rgba(128,47,241,0.2);
  border-radius:  var(--wc-radius-lg);
  padding:        2rem;
  position:       relative;
  overflow:       hidden;
  height:         100%;
  display:        flex;
  flex-direction: column;
  transition:     border-color 0.2s, box-shadow 0.2s;
}

.wc-saas-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--wc-gradient);
}

.wc-saas-card:hover { border-color: rgba(128,47,241,0.5); box-shadow: 0 12px 48px rgba(128,47,241,0.15); }

.wc-saas-card-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.25rem;
}

.wc-saas-card-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(128,47,241,0.15);
  border:     1px solid rgba(128,47,241,0.25);
  display:    flex; align-items: center; justify-content: center;
  color:      var(--wc-purple-light);
  flex-shrink: 0;
}

.wc-saas-badge {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--wc-purple-light);
  background: rgba(128,47,241,0.12); border: 1px solid rgba(128,47,241,0.25);
  border-radius: 6px; padding: 3px 10px;
}

.wc-saas-card-title  { font-size: 1.3rem; font-weight: 800; color: var(--wc-white); margin-bottom: 0.45rem; line-height: 1.2; }
.wc-saas-card-desc   { font-size: 0.86rem; color: rgba(255,255,255,0.57); line-height: 1.65; margin-bottom: 1.25rem; }

.wc-saas-features {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-bottom: 1.5rem; flex: 1;
}

.wc-saas-feature {
  font-size: 0.69rem; font-weight: 500; color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 3px 8px;
}

.wc-saas-card-footer { display: flex; gap: 0.65rem; align-items: center; flex-wrap: wrap; margin-top: auto; }

.wc-saas-cta-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--wc-purple); color: #fff;
  font-size: 0.83rem; font-weight: 600;
  padding: 9px 18px; border-radius: 8px; text-decoration: none;
  transition: background 0.2s, transform 0.15s; min-height: 44px; touch-action: manipulation;
}

.wc-saas-cta-primary:hover { background: var(--wc-purple-dark); color: #fff; transform: translateY(-1px); }

.wc-saas-cta-secondary {
  font-size: 0.79rem; font-weight: 500; color: var(--wc-text-muted); text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 9px 10px; min-height: 44px; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.wc-saas-cta-secondary:hover { color: var(--wc-white); background: rgba(255,255,255,0.05); }

/* ── Service cards (portfolio grid) ──────────────────────────── */
.wc-svc-card {
  background: var(--wc-white); border: 1px solid var(--wc-light-border);
  border-radius: var(--wc-radius); padding: 1.5rem;
  height: 100%; display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.wc-svc-card:hover {
  border-color: rgba(128,47,241,0.3);
  box-shadow:   0 6px 28px rgba(128,47,241,0.07);
  transform:    translateY(-2px);
}

.wc-svc-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(128,47,241,0.08); color: var(--wc-purple);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}

.wc-svc-card-title { font-size: 0.97rem; font-weight: 700; color: #0f172a; margin-bottom: 0.4rem; line-height: 1.3; }
.wc-svc-card-desc  { font-size: 0.82rem; color: #64748b; line-height: 1.6; margin: 0; flex: 1; }

.wc-svc-card-cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.79rem; font-weight: 600; color: var(--wc-purple);
  margin-top: 1rem; text-decoration: none; min-height: 32px;
  transition: gap 0.18s, color 0.15s;
}

.wc-svc-card-cta:hover { color: var(--wc-purple-dark); gap: 9px; }

/* Training card — full width */
.wc-training-card {
  background: linear-gradient(135deg, var(--wc-dark-2) 0%, var(--wc-dark-4) 100%);
  border: 1px solid rgba(0,106,179,0.25); border-radius: var(--wc-radius-lg);
  padding: 2rem 2.5rem; position: relative; overflow: hidden;
}

.wc-training-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--wc-blue) 0%, var(--wc-purple) 100%);
}

.wc-training-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: #60a5fa; background: rgba(0,106,179,0.15); border: 1px solid rgba(0,106,179,0.25);
  border-radius: 6px; padding: 3px 10px; margin-bottom: 0.75rem;
}

.wc-training-title { font-size: 1.15rem; font-weight: 800; color: var(--wc-white); margin-bottom: 0.5rem; line-height: 1.3; }
.wc-training-desc  { font-size: 0.84rem; color: rgba(255,255,255,0.58); line-height: 1.6; margin: 0; }

.wc-training-themes { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }

.wc-training-theme {
  font-size: 0.71rem; font-weight: 500; color: rgba(255,255,255,0.53);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 3px 9px;
}

/* ── NR-1 2025 Urgência ───────────────────────────────────────── */
.wc-nr1-section {
  background:    var(--wc-dark-2);
  border-top:    1px solid rgba(245,158,11,0.1);
  border-bottom: 1px solid rgba(245,158,11,0.1);
  padding:       72px 0;
  position:      relative;
  overflow:      hidden;
}

.wc-nr1-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(245,158,11,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.wc-nr1-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--wc-amber-bg); border: 1px solid var(--wc-amber-border);
  border-radius: 50px; padding: 5px 14px;
  font-size: 0.69rem; font-weight: 700; color: var(--wc-amber-light);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem;
}

.wc-nr1-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--wc-amber); animation: pulse-amber 2s infinite; flex-shrink: 0;
}

@keyframes pulse-amber {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.4); }
}

.wc-nr1-title    { font-size: 1.8rem; font-weight: 800; color: var(--wc-white); line-height: 1.2; margin-bottom: 0.75rem; }
.wc-nr1-subtitle { font-size: 0.92rem; color: rgba(255,255,255,0.57); line-height: 1.65; max-width: 480px; }

.wc-nr1-products { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0; }

.wc-nr1-product {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.03); border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius); text-decoration: none; flex: 1; min-width: 155px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.wc-nr1-product:hover { background: rgba(128,47,241,0.08); border-color: rgba(128,47,241,0.3); transform: translateY(-2px); }

.wc-nr1-product-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(128,47,241,0.15); color: var(--wc-purple-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.65rem;
}

.wc-nr1-product-name { font-size: 0.84rem; font-weight: 700; color: var(--wc-white); line-height: 1.3; }
.wc-nr1-product-role { font-size: 0.69rem; color: var(--wc-text-muted); margin-top: 0.25rem; line-height: 1.4; }

.wc-nr1-connector {
  width: 28px; height: 2px; align-self: center; flex-shrink: 0; margin: 0 -1px;
  background: linear-gradient(90deg, var(--wc-border), rgba(128,47,241,0.4), var(--wc-border));
}

@media (max-width: 575px) {
  .wc-nr1-products  { flex-direction: column; }
  .wc-nr1-connector { width: 2px; height: 20px; margin: -1px auto; }
  .wc-nr1-product   { flex: none; }
}

/* ── Sectors Hub ──────────────────────────────────────────────── */
.wc-sector-hub-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius); padding: 1.5rem; text-decoration: none;
  display: flex; flex-direction: column;
  transition: background 0.2s, border-color 0.2s, transform 0.2s; height: 100%;
}

.wc-sector-hub-card:hover {
  background: rgba(128,47,241,0.08); border-color: rgba(128,47,241,0.3); transform: translateY(-2px);
}

.wc-sector-hub-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(128,47,241,0.15); color: var(--wc-purple-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.875rem;
}

.wc-sector-hub-name { font-size: 0.94rem; font-weight: 700; color: var(--wc-white); margin-bottom: 0.3rem; }
.wc-sector-hub-sub  { font-size: 0.77rem; color: var(--wc-text-muted); line-height: 1.5; margin: 0; flex: 1; }

.wc-sector-hub-arrow {
  font-size: 0.74rem; color: var(--wc-purple-light); font-weight: 600;
  margin-top: 0.875rem; opacity: 0; transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}

.wc-sector-hub-card:hover .wc-sector-hub-arrow { opacity: 1; transform: translateX(0); }
