    /* Additional CSS for Inicio tab functionality */
    .tab-content-1, .tab-content-2 {
      transition: opacity 0.3s ease-in-out;
    }
    
    .tab-button-1:hover, .tab-button-2:hover {
      transform: translateY(-1px);
    }
    
    /* Ensure proper canvas sizing and responsiveness */
    canvas {
      max-width: 100% !important;
      height: auto !important;
      display: block;
    }
    
    /* Chart containers responsiveness */
    .chart-container {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    /* Specific chart heights for different screen sizes - increased for better visualization */
    .chart-height {
      height: 520px;
    }
    
    @media (min-width: 2560px) {
      .chart-height {
        height: 680px;
      }
    }
    
    @media (min-width: 1920px) {
      .chart-height {
        height: 600px;
      }
    }
    
    @media (max-width: 1536px) {
      .chart-height {
        height: 480px;
      }
    }
    
    @media (max-width: 1280px) {
      .chart-height {
        height: 420px;
      }
    }
    
    @media (max-width: 1024px) {
      .chart-height {
        height: 360px;
      }
    }
    
    @media (max-width: 768px) {
      .chart-height {
        height: 320px;
      }
    }
    
    @media (max-width: 640px) {
      .chart-height {
        height: 280px;
      }
    }
    
    /* Tab buttons responsive adjustments */
    .tab-buttons-container {
      flex-wrap: wrap;
      gap: 0.25rem;
    }
    
    @media (max-width: 640px) {
      .tab-buttons-container button {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
      }
    }
    
    /* Card hover effects e visual profissional */
    .stat-card {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: #fff;
      border-radius: 0.75rem;
      border: 1px solid #e5e7eb;
      box-shadow: 0 1px 4px 0 rgba(16,185,129,0.06);
      padding: 1rem 1.2rem;
      min-height: 70px;
      position: relative;
      transition: box-shadow 0.15s, transform 0.15s;
    }
    .stat-card:hover {
      box-shadow: 0 4px 16px 0 rgba(16,185,129,0.10);
      transform: translateY(-2px);
    }
    .stat-icon {
      flex-shrink: 0;
      width: 2.2rem;
      height: 2.2rem;
      border-radius: 50%;
      background: #137338;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.3rem;
    }
    .stat-info {
      display: flex;
      flex-direction: column;
      gap: 0.05rem;
      width: 100%;
    }
    .stat-label {
      font-size: 0.95rem;
      font-weight: 600;
      color: #047857;
      margin-bottom: 0.05rem;
    }
    .stat-value {
      font-size: 2.5rem;
      font-weight: 800;
      color: #137338;
      line-height: 1;
      font-family: 'Kanit', 'Poppins', 'Roboto', sans-serif;
      letter-spacing: -0.025em;
      text-shadow: 0 2px 4px rgba(19,115,56,0.1);
    }
    .stat-card:nth-child(2) .stat-icon { background: #137338; }
    .stat-card:nth-child(2) .stat-value { color: #137338; }
    .stat-card:nth-child(3) .stat-icon { background: #137338; }
    .stat-card:nth-child(3) .stat-value { color: #137338; }
    .stat-card:nth-child(4) .stat-icon { background: #137338; }
    .stat-card:nth-child(4) .stat-value { color: #137338; }
    /* Remover color do .stat-value do seletor composto para não sobrescrever o texto */
    @media (max-width: 1024px) {
      .stat-card { padding: 0.7rem 0.8rem; }
      .stat-value { font-size: 2rem; }
      .stat-label { font-size: 0.8rem; }
      .stat-icon { width: 1.5rem; height: 1.5rem; font-size: 1rem; }
    }
    @media (max-width: 768px) {
      .stat-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        padding: 0.7rem;
      }
      .stat-value {
        font-size: 1.5rem;
      }
      .stat-label {
        font-size: 0.7rem;
      }
      .stat-icon {
        width: 1.2rem;
        height: 1.2rem;
        font-size: 0.8rem;
      }
    }

    #map-mini {
      /* min-height: 520px; */
      min-width: 100%;
      height: 100%;
      width: 100%;
      border-radius: 0.75rem;
      border: 1px solid #e5e7eb;
      box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06);
      /* background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%); */
      /* overflow: hidden; */
      position: relative;
    }
    
    /* Ajustes específicos para o container do mapa */
    .map-container {
      /* height: 520px; */
      width: 100%;
      border-radius: 0.75rem;
      overflow: hidden;
      position: relative;
      /* background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%); */
      border: 1px solid #e5e7eb;
    }
    
    /* Loading animation styles */
    .map-loading {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      z-index: 10;
    }
    
    .map-loading-spinner {
      width: 40px;
      height: 40px;
      border: 3px solid #e5e7eb;
      border-top: 3px solid #137338;
      border-radius: 50%;
      animation: mapSpin 1s linear infinite;
      margin: 0 auto 12px;
    }
    
    .map-loading-text {
      color: #6b7280;
      font-size: 0.875rem;
      font-weight: 500;
      margin: 0;
      font-family: 'Roboto', sans-serif;
    }
    
    @keyframes mapSpin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    /* Map placeholder pattern - mais sutil */
    .map-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 
        radial-gradient(circle at 20% 30%, rgba(100,116,139,0.04) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(100,116,139,0.03) 1px, transparent 1px);
      background-size: 30px 30px, 50px 50px;
      background-position: 0 0, 25px 25px;
      opacity: 0.5;
      pointer-events: none;
    }
    
    /* Responsive adjustments para o mapa */
    @media (min-width: 2560px) {
      #map-mini, .map-container {
        height: 680px;
        min-height: 680px;
      }
    }
    
    @media (min-width: 1920px) {
      #map-mini, .map-container {
        height: 600px;
        min-height: 600px;
      }
    }
    
    @media (max-width: 1536px) {
      #map-mini, .map-container {
        height: 480px;
        min-height: 480px;
      }
    }
    
    @media (max-width: 1280px) {
      #map-mini, .map-container {
        height: 420px;
        min-height: 420px;
      }
    }
    
    @media (max-width: 1024px) {
      #map-mini, .map-container {
        height: 360px;
        min-height: 360px;
      }
    }
    
    @media (max-width: 768px) {
      #map-mini, .map-container {
        height: 320px;
        min-height: 320px;
      }
    }
    
    @media (max-width: 640px) {
      #map-mini, .map-container {
        height: 280px;
        min-height: 280px;
      }
    }
    
    @media (max-width: 480px) {
      #map-mini, .map-container {
        height: 260px;
        min-height: 260px;
      }
    }
    
    /* Additional spacing for larger screens */
    @media (min-width: 1536px) {
      .container {
        max-width: 1500px;
      }
    }
    
    @media (min-width: 1920px) {
      .container {
        max-width: 1800px;
      }
    }
    
    @media (min-width: 2560px) {
      .container {
        max-width: 2200px;
      }
    }
    
    /* Enhanced padding for larger chart cards */
    @media (min-width: 1920px) {
      .chart-card-large {
        padding: 1.5rem 2rem;
      }
    }
    
    @media (min-width: 2560px) {
      .chart-card-large {
        padding: 2rem 2.5rem;
      }
    }