/* Partners Section */
.partners {
    padding: 64px 0;
    background: #f0f0f0;
  }
  
  .partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    justify-content: center; /* Centraliza os cards */
  }
  
  .partner-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(26, 26, 26, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    flex: 1 1 calc(25% - 32px); /* Até 4 colunas, considerando gap */
    max-width: calc(25% - 32px); /* Limita a largura para 4 colunas */
    min-width: 250px; /* Garante espaço mínimo para cada card */
  }
  
  .partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(26, 26, 26, 0.2);
    border-color: #FFD700;
  }
  
  .partner-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .partner-card h3 {
    color: #1A1A1A;
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
  }
  
  .partner-description {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 1rem;
    text-align: center;
  }
  
  .partner-services {
    font-size: 0.9rem;
    color: #4A3C1F;
    margin-bottom: 16px;
    font-weight: 500;
    text-align: center;
  }
  
  .discount {
    background: #FFD700;
    color: #1A1A1A;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: inline-block;
    text-align: center;
    width: 100%;
  }
  
  .whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 1rem;
  }
  
  .whatsapp-btn:hover {
    background: #22BF5B;
    transform: scale(1.05);
  }
  
  .whatsapp-btn i {
    font-size: 1.2rem;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .partners-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .partner-card {
      flex: 1 1 100%;
      max-width: 100%;
      min-width: 0;
    }
  }