/* ============================================================
   Full Soluções – Design System & Institutional Site
   ============================================================ */

/* — Google Fonts — */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Inter+Tight:wght@600;700;800;900&display=swap');

/* — CSS Custom Properties — */
:root {
  /* Brand */
  --full-dark: #1A1A2E;
  --full-dark-2: #16213E;
  --full-dark-3: #0F3460;
  --full-accent: #E94560;
  --full-accent-hover: #d63d56;
  --full-white: #FFFFFF;
  --full-light: #F8F9FC;
  --full-gray-100: #F1F3F7;
  --full-gray-200: #E2E6EE;
  --full-gray-300: #C5CBD8;
  --full-gray-500: #6B7A99;
  --full-gray-700: #3D4A66;
  --full-gray-900: #1C2438;
  --full-text: #1C2438;
  --full-text-soft: #5A6680;
  --full-text-muted: #8892A6;
  --full-gradient: linear-gradient(135deg, #E94560 0%, #7239EA 50%, #1B84FF 100%);
  --full-gradient-soft: linear-gradient(135deg, rgba(233,69,96,0.08) 0%, rgba(114,57,234,0.08) 50%, rgba(27,132,255,0.08) 100%);

  /* Product Accent Colors */
  --ecommerce-color: #A7D900;
  --recopay-color: #7B1FA2;
  --pixmesh-color: #43D7CF;
  --dotpanel-color: #67E43A;

  /* Typography */
  --font-heading: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container-max: 1200px;

  /* Transitions */
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(28,36,56,0.06);
  --shadow-md: 0 4px 16px rgba(28,36,56,0.08);
  --shadow-lg: 0 8px 32px rgba(28,36,56,0.10);
  --shadow-xl: 0 16px 48px rgba(28,36,56,0.12);
  --shadow-card: 0 2px 12px rgba(28,36,56,0.06), 0 0 0 1px rgba(28,36,56,0.04);
  --shadow-card-hover: 0 8px 30px rgba(28,36,56,0.12), 0 0 0 1px rgba(28,36,56,0.06);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* — Reset & Base — */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--full-text);
  background-color: var(--full-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin-top: 0;
  color: var(--full-gray-900);
}

p { margin-top: 0; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

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

/* — Utility — */
.text-gradient {
  background: var(--full-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--full-accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--full-accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--full-text-soft);
  max-width: 640px;
  line-height: 1.7;
}

/* — Navbar — */
.navbar-full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 16px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar-full.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(28,36,56,0.06);
  padding: 10px 0;
  box-shadow: 0 1px 12px rgba(28,36,56,0.06);
}

.navbar-full .navbar-brand img {
  height: 40px;
  transition: var(--transition-base);
}

.logo-light {
  filter: brightness(0) invert(1);
  transition: filter var(--transition-base);
}

.navbar-full .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 16px !important;
  transition: color var(--transition-base);
  letter-spacing: 0.2px;
}

.navbar-full.scrolled .nav-link {
  color: var(--full-gray-700);
}

.navbar-full .nav-link:hover {
  color: var(--full-white);
}

.navbar-full.scrolled .nav-link:hover {
  color: var(--full-accent);
}

.navbar-full .nav-link.active {
  color: var(--full-white);
}

.navbar-full.scrolled .nav-link.active {
  color: var(--full-accent);
}

.navbar-full .btn-nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--full-white);
  background: var(--full-accent);
  border: none;
  padding: 8px 24px;
  border-radius: 100px;
  transition: all var(--transition-base);
}

.navbar-full .btn-nav-cta:hover {
  background: var(--full-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(233,69,96,0.3);
}

.navbar-full.scrolled .btn-nav-cta,
.navbar-full.scrolled .btn-nav-cta:hover {
  color: var(--full-white) !important;
}

.navbar-toggler {
  border: none !important;
  padding: 4px 8px;
}

.navbar-toggler:focus { box-shadow: none !important; }

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
}

/* Dark toggler for transparent bg */
.navbar-full:not(.scrolled) .navbar-toggler-icon {
  filter: invert(1);
}

/* — Hero — */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--full-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(233,69,96,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(27,132,255,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(114,57,234,0.08) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* Grid pattern */
.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;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--full-white);
  letter-spacing: -1px;
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero-title .accent {
  background: var(--full-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--full-white);
  background: var(--full-accent);
  border: none;
  padding: 14px 36px;
  border-radius: 100px;
  transition: all var(--transition-base);
  cursor: pointer;
}

.hero-cta:hover {
  background: var(--full-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233,69,96,0.35);
  color: var(--full-white);
}

.hero-cta-whatsapp {
  background: #25D366;
  margin-left: 12px;
}

.hero-cta-whatsapp:hover {
  background: #1EBE5A;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  color: var(--full-white);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 32px;
  border-radius: 100px;
  transition: all var(--transition-base);
  cursor: pointer;
  margin-left: 12px;
}

.hero-cta-secondary:hover {
  border-color: rgba(255,255,255,0.35);
  color: var(--full-white);
  background: rgba(255,255,255,0.06);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--full-white);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-orbit {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 1;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.orbit-center img,
.orbit-center-logo {
  height: 72px;
  width: auto;
  filter: none;
  object-fit: contain;
}

.orbit-center-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.orbit-center-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

.orbit-ring-1 {
  width: 260px;
  height: 260px;
  margin: -130px 0 0 -130px;
  animation: orbitSpin 30s linear infinite;
}

.orbit-ring-2 {
  width: 380px;
  height: 380px;
  margin: -190px 0 0 -190px;
  animation: orbitSpin 45s linear infinite reverse;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orbitItemFloat 4s ease-in-out infinite;
  will-change: transform;
}

.orbit-item:hover {
  filter: brightness(1.3);
}

.orbit-item img {
  height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity var(--transition-base);
}

.orbit-item:hover img {
  opacity: 1;
}

@keyframes orbitItemFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

.orbit-item:nth-child(2) { animation-delay: -1s; }
.orbit-item:nth-child(3) { animation-delay: -2s; }
.orbit-item:nth-child(4) { animation-delay: -3s; }

/* — Ecosystem Section — */
.ecosystem-section {
  padding: var(--section-py) 0;
  background: var(--full-light);
}

.ecosystem-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.ecosystem-tab {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--full-gray-500);
  background: var(--full-white);
  border: 1px solid var(--full-gray-200);
  cursor: pointer;
  transition: all var(--transition-base);
}

.ecosystem-tab:hover {
  color: var(--full-gray-700);
  border-color: var(--full-gray-300);
}

.ecosystem-tab.active {
  color: var(--full-white);
  background: var(--full-dark);
  border-color: var(--full-dark);
}

/* — Products / Brands Section — */
.brands-section {
  padding: var(--section-py) 0;
  background: var(--full-white);
}

.brand-card {
  position: relative;
  background: var(--full-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--full-gray-200);
  transition: all var(--transition-slow);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, var(--full-gray-200));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.brand-card:hover {
  border-color: var(--full-gray-300);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.brand-card:hover::before { opacity: 1; }

.brand-card-logo {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 24px;
}

.brand-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--full-gray-100);
  color: var(--full-gray-500);
}

.brand-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--full-gray-900);
}

.brand-card-text {
  font-size: 0.95rem;
  color: var(--full-text-soft);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 24px;
}

.brand-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--full-gray-900);
  transition: all var(--transition-base);
}

.brand-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.brand-card-link:hover {
  color: var(--full-accent);
}

.brand-card-link:hover svg {
  transform: translateX(4px);
}

/* — About Section — */
.about-section {
  padding: var(--section-py) 0;
  background: var(--full-dark);
  color: var(--full-white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(233,69,96,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(27,132,255,0.06) 0%, transparent 60%);
}

.about-section .section-label { color: var(--full-accent); }
.about-section .section-label::before { background: var(--full-accent); }

.about-section .section-title { color: var(--full-white); }

.about-section .section-subtitle { color: rgba(255,255,255,0.6); }

.about-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.about-highlight {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--full-white);
  line-height: 1.5;
  border-left: 3px solid var(--full-accent);
  padding-left: 24px;
  margin: 32px 0;
}

/* About Values */
.value-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.value-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--full-white);
  margin-bottom: 4px;
}

.value-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.6;
}

/* — Numbers Section — */
.numbers-section {
  padding: 60px 0;
  background: var(--full-light);
}

.number-card {
  text-align: center;
  padding: 32px 20px;
}

.number-value {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--full-gray-900);
  line-height: 1;
  margin-bottom: 8px;
}

.number-value .accent { color: var(--full-accent); }

.number-label {
  font-size: 0.9rem;
  color: var(--full-text-soft);
  font-weight: 400;
}

/* — CTA Section — */
.cta-section {
  padding: 80px 0;
  background: var(--full-white);
}

.cta-box {
  background: var(--full-dark);
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 100%, rgba(233,69,96,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 0%, rgba(27,132,255,0.12) 0%, transparent 60%);
}

.cta-box * { position: relative; z-index: 1; }

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--full-white);
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* — Footer — */
.footer {
  background: var(--full-gray-900);
  color: rgba(255,255,255,0.5);
  padding: 64px 0 0;
}

.footer-brand img {
  height: 30px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  max-width: 300px;
  line-height: 1.6;
}

.footer h6 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-base);
}

.footer-links a:hover { color: var(--full-white); }

.footer-social a {
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  transition: color var(--transition-base), transform var(--transition-base);
}

.footer-social a:hover {
  color: var(--full-white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  margin-top: 48px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* — Animations — */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* — Responsive — */
@media (max-width: 991.98px) {
  :root { --section-py: 72px; }

  .hero-title { font-size: 2.5rem; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .hero-visual { margin-top: 48px; }

  .hero-orbit { max-width: 350px; }
  .orbit-center { width: 90px; height: 90px; }
  .orbit-center img { height: 36px; }
  .orbit-ring-1 { width: 200px; height: 200px; margin: -100px 0 0 -100px; }
  .orbit-ring-2 { width: 300px; height: 300px; margin: -150px 0 0 -150px; }
  .orbit-item { width: 52px; height: 52px; border-radius: 12px; }
  .orbit-item img { height: 24px; }

  .cta-box { padding: 48px 28px; }
  .hero-cta-secondary { margin-left: 0; margin-top: 12px; }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.05rem; }
  .hero-stats { gap: 24px; }
  .hero-stat-number { font-size: 1.6rem; }
  .number-value { font-size: 2.4rem; }
  .section-title { font-size: 1.8rem; }
  .ecosystem-tabs { gap: 6px; }
  .ecosystem-tab { padding: 8px 16px; font-size: 0.8rem; }
  .brand-card { padding: 28px 24px; }
  .about-highlight { font-size: 1.15rem; }
}

/* — Page transition — */
[v-cloak] { display: none; }

#app {
  opacity: 0;
  animation: appFadeIn 0.5s ease forwards;
}

@keyframes appFadeIn {
  to { opacity: 1; }
}

/* ============================================================
   SHOWCASE SPOTLIGHT — Solutions Section
   ============================================================ */

.showcase-section {
  padding: var(--section-py) 0;
  background: var(--full-light);
}

.showcase {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 480px;
}

/* — Left Navigation — */
.showcase-nav {
  background: var(--full-white);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--full-gray-100);
  position: relative;
}

.showcase-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px;
  border: none;
  background: transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: left;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.showcase-nav-item:hover {
  background: var(--full-gray-100);
}

.showcase-nav-item.active {
  background: var(--full-gray-100);
}

.showcase-nav-accent {
  width: 4px;
  height: 0;
  border-radius: 4px;
  flex-shrink: 0;
  transition: height var(--transition-base);
  align-self: stretch;
}

.showcase-nav-item.active .showcase-nav-accent {
  height: 100%;
}

.showcase-nav-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.showcase-nav-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--full-gray-500);
  transition: color var(--transition-base);
}

.showcase-nav-item.active .showcase-nav-name {
  color: var(--full-gray-900);
}

.showcase-nav-category {
  font-size: 0.78rem;
  color: var(--full-text-muted);
  font-weight: 400;
}

.showcase-nav-arrow {
  color: var(--full-gray-300);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.showcase-nav-item.active .showcase-nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

.showcase-progress {
  height: 3px;
  background: var(--full-gray-100);
  border-radius: 3px;
  margin: 4px 12px 8px;
  overflow: hidden;
}

.showcase-progress-bar {
  height: 100%;
  border-radius: 3px;
  width: 0;
}

@keyframes progressFill {
  from { width: 0; }
  to { width: 100%; }
}

/* — Right Spotlight Panel — */
.showcase-panel {
  padding: 56px 56px;
  display: flex;
  align-items: center;
  transition: background 0.6s ease;
  position: relative;
  overflow: hidden;
}

.showcase-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-content {
  width: 100%;
}

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

.showcase-logo {
  height: 53px;
  object-fit: contain;
}

.showcase-maturity {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--full-gray-900);
  margin-bottom: 12px;
  line-height: 1.2;
}

.showcase-desc {
  font-size: 1rem;
  color: var(--full-text-soft);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 560px;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.showcase-tag {
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(0,0,0,0.04);
  color: var(--full-gray-700);
  font-weight: 500;
  border: 1px solid rgba(0,0,0,0.06);
}

.showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--full-white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.showcase-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: var(--full-white);
}

.showcase-cta svg {
  transition: transform var(--transition-base);
}

.showcase-cta:hover svg {
  transform: translateX(3px);
}

/* — Vue Transition — */
.showcase-fade-enter-active {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.showcase-fade-leave-active {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.showcase-fade-enter-from {
  opacity: 0;
  transform: translateY(12px);
}
.showcase-fade-leave-to {
  opacity: 0;
  transform: translateY(-8px);
}

/* — Responsive — */
@media (max-width: 991px) {
  .showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .showcase-nav {
    flex-direction: row;
    overflow-x: auto;
    padding: 8px;
    gap: 4px;
    border-right: none;
    border-bottom: 1px solid var(--full-gray-100);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .showcase-nav::-webkit-scrollbar { display: none; }

  .showcase-nav-item {
    flex: 0 0 auto;
    padding: 14px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 140px;
  }

  .showcase-nav-accent {
    height: 3px !important;
    width: 0;
    align-self: auto;
  }

  .showcase-nav-item.active .showcase-nav-accent {
    width: 100%;
    height: 3px !important;
  }

  .showcase-nav-arrow { display: none; }

  .showcase-progress {
    display: none;
  }

  .showcase-panel {
    padding: 32px 24px;
  }

  .showcase-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 575px) {
  .showcase-nav-item {
    min-width: 120px;
    padding: 12px 14px;
  }

  .showcase-panel {
    padding: 24px 20px;
  }

  .showcase-title {
    font-size: 1.3rem;
  }

  .showcase-desc {
    font-size: 0.9rem;
  }
}
