
    /* Estilos Gerais */
    :root {
      --primary: #2f6690;
      --primary-light: #3a7ca5;
      --secondary: #4da167;
      --accent: #f18f01;
      --light: #f8f9fa;
      --dark: #2c3e50;
      --gray: #6c757d;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      line-height: 1.6;
    }
    
    .section-title {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }
    
    .section-subtitle {
      text-align: center;
      color: var(--gray);
      margin-bottom: 3rem;
      font-size: 1.1rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    
    /* Header */
    .collaborators-header {
      display: flex;
      align-items: center;
      padding: 60px 5%;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .header-content {
      flex: 1;
      padding-right: 40px;
    }
    
    .collaborators-header h1 {
      font-size: 2.8rem;
      color: var(--primary);
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    
    .subtitle {
      font-size: 1.2rem;
      color: var(--gray);
      margin-bottom: 2.5rem;
      max-width: 600px;
    }
    
    .header-stats {
      display: flex;
      gap: 20px;
      margin-top: 40px;
    }
    
    .stat-card {
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      text-align: center;
      min-width: 160px;
    }
    
    .stat-card i {
      font-size: 2rem;
      color: var(--primary-light);
      margin-bottom: 10px;
    }
    
    .stat-number {
      display: block;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
      line-height: 1;
    }
    
    .stat-label {
      font-size: 0.9rem;
      color: var(--gray);
      margin-top: 5px;
      display: block;
    }
    
    .header-image {
      flex: 1;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    .header-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    /* Como Funciona */
    .how-it-works {
      padding: 80px 5%;
      background: white;
    }
    
    .steps-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .step {
      text-align: center;
      padding: 30px 20px;
      border-radius: 12px;
      background: var(--light);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .step:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .step-icon {
      width: 70px;
      height: 70px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.8rem;
    }
    
    .step h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    .step p {
      color: var(--gray);
    }
    
    /* Benefícios */
    .benefits-section {
      display: flex;
      padding: 0;
    }
    
    .benefits-content {
      flex: 1;
      padding: 60px 5%;
      background: var(--primary);
      color: white;
    }
    
    .benefits-content h2 {
      font-size: 2rem;
      margin-bottom: 40px;
      text-align: center;
    }
    
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    
    .benefit-card {
      background: rgba(255,255,255,0.1);
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s;
    }
    
    .benefit-card:hover {
      transform: scale(1.05);
    }
    
    .benefit-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    
    .benefit-card h3 {
      padding: 20px 20px 10px;
      font-size: 1.2rem;
    }
    
    .benefit-card p {
      padding: 0 20px 20px;
      opacity: 0.9;
    }
    
    .testimonial-section {
      flex: 1;
      padding: 60px 5%;
      background: var(--light);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .testimonial-card {
      max-width: 500px;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      display: flex;
    }
    
    .testimonial-photo {
      width: 120px;
      height: 100%;
      object-fit: cover;
    }
    
    .testimonial-text {
      padding: 30px;
      flex: 1;
    }
    
    .testimonial-text p {
      font-style: italic;
      margin-bottom: 20px;
      position: relative;
    }
    
    .testimonial-text p::before {
      content: '"';
      font-size: 4rem;
      position: absolute;
      top: -20px;
      left: -15px;
      opacity: 0.1;
      line-height: 1;
    }
    
    .testimonial-author {
      border-top: 1px solid #eee;
      padding-top: 15px;
    }
    
    .testimonial-author strong {
      display: block;
      margin-bottom: 5px;
    }
    
    .testimonial-author span {
      font-size: 0.9rem;
      color: var(--gray);
    }
    
    /* Demográficos */
    .demographics-section {
      padding: 80px 5%;
      background: white;
    }
    
    .chart-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .chart-card {
      background: white;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .chart-header {
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #eee;
    }
    
    .chart-header h3 {
      font-size: 1.2rem;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .chart-header h3 i {
      color: var(--accent);
    }
    
    .chart-header p {
      color: var(--gray);
      font-size: 0.9rem;
      margin-top: 5px;
    }
    
    /* CTA */
    .cta-collaborators {
      padding: 80px 5%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: white;
      text-align: center;
    }
    
    .cta-collaborators h2 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }
    
    .cta-collaborators p {
      font-size: 1.2rem;
      margin-bottom: 2.5rem;
      opacity: 0.9;
    }
    
    .app-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }
    
    .app-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      border-radius: 8px;
      color: white;
      text-decoration: none;
      transition: transform 0.3s;
    }
    
    .app-btn:hover {
      transform: translateY(-3px);
    }
    
    .app-store {
      background: #000;
    }
    
    .google-play {
      background: #0f9d58;
    }
    
    .app-btn i {
      font-size: 1.8rem;
    }
    
    .app-btn span {
      text-align: left;
      line-height: 1.2;
    }
    
    .app-btn strong {
      display: block;
      font-size: 1.1rem;
    }
    
    /* Responsividade */
    @media (max-width: 1024px) {
      .collaborators-header {
        flex-direction: column;
        gap: 40px;
      }
      
      .header-content {
        padding-right: 0;
        text-align: center;
      }
      
      .header-stats {
        justify-content: center;
      }
      
      .benefits-section {
        flex-direction: column;
      }
    }
    
    @media (max-width: 768px) {
      .section-title {
        font-size: 1.8rem;
      }
      
      .collaborators-header h1 {
        font-size: 2.2rem;
      }
      
      .header-stats {
        flex-direction: column;
        align-items: center;
      }
      
      .stat-card {
        width: 100%;
        max-width: 250px;
      }
      
      .testimonial-card {
        flex-direction: column;
      }
      
      .testimonial-photo {
        width: 100%;
        height: 200px;
      }
      
      .app-buttons {
        flex-direction: column;
        align-items: center;
      }

    }

       .chart-card canvas {
    width: 100% !important;
    height: 240px !important; /* 👈 define a altura final */
    max-height: 300px;
    }

.chart-card {
background: white;
border-radius: 12px;
padding: 25px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
height: 320px; /* altura fixa para cada card */
display: flex;
flex-direction: column;
justify-content: space-between;
}

.chart-card canvas {
flex-grow: 1;
min-height: 200px;
max-height: 250px;
width: 100% !important;
}
        .chart-card canvas {
  width: 100% !important;
  height: 240px !important;
  max-height: 240px;
  display: block;
}





/* MAPA do BRasil */

/* Estilos para a seção de cobertura */
.coverage-section {
  background-color: #f8fafc;
  padding: 60px 20px;
  text-align: center;
}

.coverage-header {
  margin-bottom: 40px;
}

.coverage-header h2 {
  font-size: 2.2rem;
  color: #0066cc;
  margin-bottom: 10px;
}

.coverage-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.brazil-map {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-bottom: 40px;
}

.map-base {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 102, 204, 0.1));
}

.coverage-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #0066cc;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

.coverage-point::after {
  content: attr(data-city);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0066cc;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}

.coverage-point:hover::after {
  opacity: 1;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0, 102, 204, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0); }
}

.coverage-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-card {
  background: white;
  border-radius: 10px;
  padding: 25px 30px;
  min-width: 180px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: #555;
}

.cities-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.city-tags span {
  background: #e6f0ff;
  color: #0066cc;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 9px;
}

/* Responsivo */
@media (max-width: 768px) {
  .coverage-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-card {
    width: 100%;
    max-width: 250px;
  }
}