:root {
  --primary-color: #034d42;
  --secondary-color: #02362e;
  --accent-color: #28a745;
  --accent-yellow: #f4c430;
  --bg-light: #fafafa;
  --bg-dark: #505d3c;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --border-light: #e5e5e5;
  --font-base: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-base);
  color: var(--text-dark);
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.corMenu {
  background-color: var(--secondary-color) !important;
}

/* Hero Section - Minimalist */
.hero-section {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  background-color: #505d3c;
  position: relative;
}

.hero-section h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-section .lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* CTA Button - Minimal */
.btn-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #fff;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.btn-cta:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-yellow);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4rem;
}

.feature-card {
  background: white;
  padding: 3rem 2rem;
  height: 100%;
  border: none;
  transition: all 0.3s ease;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
  border-color: transparent;
}

.feature-card svg {
  margin-bottom: 2rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.feature-card:hover svg {
  opacity: 1;
  filter: drop-shadow(0 2px 4px rgba(244, 196, 48, 0.3));
}

.feature-card h5 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

/* Flip Cards - Interactive 3D Effect */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 280px;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.flip-card:hover .flip-card-front,
.flip-card:hover .flip-card-back {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.flip-card-front {
  z-index: 2;
}

.flip-card-back {
  transform: rotateY(180deg);
  z-index: 1;
}

.flip-card-front svg {
  margin-bottom: 1rem;
  opacity: 0.9;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.flip-card-front h5,
.flip-card-back h5 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #fff;
}

.flip-card-front p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.flip-hint {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
  padding-top: 0.5rem;
  opacity: 0.6;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.marketing-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
  width: 100%;
}

.marketing-list li {
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
  line-height: 1.4;
}

.marketing-cta {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Mobile Adjustments for Flip Cards */
@media (max-width: 768px) {
  .flip-card {
    height: 300px;
  }
  
  .flip-card-front h5,
  .flip-card-back h5 {
    font-size: 1.2rem;
  }
  
  .marketing-list li {
    font-size: 0.85rem;
  }
}

/* Family Sharing Section */
.family-sharing-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.family-sharing-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 196, 48, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.feature-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #f4d858 100%);
  color: #1a1a1a;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(244, 196, 48, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.family-sharing-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.family-sharing-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.family-benefits {
  margin-bottom: 2.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1.25rem;
  box-shadow: 0 4px 12px rgba(3, 77, 66, 0.2);
}

.benefit-text h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.benefit-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.family-cta-box {
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(3, 77, 66, 0.25);
}

.family-cta-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

.family-cta-text strong {
  font-weight: 600;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Visual Cards */
.family-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.visual-card {
  background: white;
  border-radius: 20px;
  padding: 1.75rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  animation: slideIn 0.8s ease-out;
}

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

.visual-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.visual-card-1 {
  margin-bottom: 1.5rem;
  margin-left: -2rem;
  animation-delay: 0.2s;
}

.visual-card-2 {
  margin-bottom: 1.5rem;
  margin-right: -2rem;
  animation-delay: 0.4s;
}

.visual-card-total {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 2.5rem 2rem;
  animation-delay: 0.6s;
}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-1 {
  background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  color: white;
}

.user-2 {
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
  color: white;
}

.total-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.visual-card-total .card-label {
  color: rgba(255, 255, 255, 0.9);
}

.card-value {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.card-value-total {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.connection-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 60%;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(3, 77, 66, 0.2) 20%, 
    rgba(3, 77, 66, 0.2) 80%, 
    transparent 100%
  );
  z-index: 1;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
  .family-visual {
    min-height: auto;
    margin-top: 3rem;
  }
  
  .visual-card-1,
  .visual-card-2 {
    margin-left: 0;
    margin-right: 0;
  }
  
  .connection-line {
    display: none;
  }
}

/* Blog/Articles Section */
.articles-section {
  padding: 8rem 0;
  background-color: #fff;
}

.articles-section .section-title {
  color: var(--text-dark) !important;
}

.articles-section .section-subtitle {
  color: var(--text-light) !important;
}

.blog-card {
  background: white;
  overflow: hidden;
  height: 100%;
  border: none;
  transition: all 0.3s ease;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.blog-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.03);
}

.blog-card-content {
  padding: 2rem;
}

.blog-card h5 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

/* Featured Article - Larger */
.blog-card-featured {
  grid-column: span 2;
}

.blog-card-featured img {
  height: 400px;
}

.blog-card-featured h5 {
  font-size: 1.75rem;
}

/* Final CTA Section */
.final-cta-section {
  padding: 10rem 0;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #f4d858 100%);
  text-align: center;
}

.final-cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.final-cta-section p {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Utilities */
.text-primary-custom { 
  color: var(--primary-color) !important; 
}

.bg-light-custom { 
  background-color: var(--bg-light); 
}

/* Spacing */
.py-8 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    padding: 6rem 1.5rem 4rem;
  }
  
  .features-section,
  .articles-section {
    padding: 5rem 0;
  }
  
  .final-cta-section {
    padding: 6rem 0;
  }
  
  .blog-card-featured {
    grid-column: span 1;
  }
  
  .blog-card-featured img {
    height: 280px;
  }
}


/* ========================================
   TRILHA DO CONHECIMENTO SECTION
   ======================================== */

.knowledge-trail-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.knowledge-trail-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(40, 167, 69, 0.03) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

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

.section-title-dark {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.section-title-dark::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-yellow) 100%);
  border-radius: 2px;
}

.section-subtitle-dark {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 4rem;
}

/* Knowledge Cards */
.knowledge-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.knowledge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(244, 196, 48, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.knowledge-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(40, 167, 69, 0.2);
  border-color: var(--accent-color);
}

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

/* Card Image Container */
.knowledge-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.knowledge-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(0.95);
}

.knowledge-card:hover .knowledge-card-image img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.05);
}

/* Card Overlay */
.knowledge-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}

.knowledge-card:hover .knowledge-card-overlay {
  opacity: 1;
}

/* Knowledge Badge */
.knowledge-badge {
  background: linear-gradient(135deg, var(--accent-color) 0%, #20c997 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: float 3s ease-in-out infinite;
}

.knowledge-card:hover .knowledge-badge {
  transform: translateY(0);
  opacity: 1;
  animation: none;
}

@keyframes float {
  0%, 100% { transform: translateY(-10px); }
  50% { transform: translateY(-15px); }
}

/* Card Content */
.knowledge-card-content {
  padding: 1.75rem;
  position: relative;
  z-index: 2;
}

.knowledge-card-content h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color 0.3s ease;
  min-height: 3rem;
  display: flex;
  align-items: center;
}

.knowledge-card:hover .knowledge-card-content h5 {
  color: var(--accent-color);
}

.knowledge-card-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  min-height: 3rem;
}

/* Card Footer */
.knowledge-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.knowledge-card:hover .read-more {
  gap: 0.75rem;
  transform: translateX(4px);
}

.knowledge-card:hover .read-more::after {
  width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .knowledge-trail-section {
    padding: 5rem 0;
  }
  
  .knowledge-card-image {
    height: 180px;
  }
  
  .knowledge-card-content h5 {
    font-size: 1.1rem;
    min-height: auto;
  }
  
  .knowledge-card-content p {
    font-size: 0.9rem;
    min-height: auto;
  }
}

/* Stagger Animation on Load */
.knowledge-card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.col-lg-4:nth-child(1) .knowledge-card { animation-delay: 0.1s; }
.col-lg-4:nth-child(2) .knowledge-card { animation-delay: 0.2s; }
.col-lg-4:nth-child(3) .knowledge-card { animation-delay: 0.3s; }
.col-lg-4:nth-child(4) .knowledge-card { animation-delay: 0.4s; }
.col-lg-4:nth-child(5) .knowledge-card { animation-delay: 0.5s; }
.col-lg-4:nth-child(6) .knowledge-card { animation-delay: 0.6s; }
.col-lg-4:nth-child(7) .knowledge-card { animation-delay: 0.7s; }
.col-lg-4:nth-child(8) .knowledge-card { animation-delay: 0.8s; }
.col-lg-4:nth-child(9) .knowledge-card { animation-delay: 0.9s; }

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


/* --- Dashboard Specifics --- */

.stats-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.stats-border-danger::before { background-color: #dc3545; }
.stats-border-success::before { background-color: #198754; }
.stats-border-warning::before { background-color: #ffc107; }
.stats-border-info::before { background-color: #0dcaf0; }
.stats-border-primary::before { background-color: var(--primary-color); }
.stats-border-secondary::before { background-color: #6c757d; }

.stats-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    font-weight: 600;
}

.stats-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

.nav-pills-custom .nav-link {
    color: #495057;
    background-color: #fff;
    border: 1px solid #e9ecef;
    margin-right: 0.5rem;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-pills-custom .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(3, 77, 66, 0.2);
}


/* --- Compact Filters --- */
.form-control-compact, .form-select-compact {
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    line-height: 1.2;
    border-radius: 4px;
    height: 28px;
}
