/* Estilos para a tabela de preços */
.pricing-table {
    overflow-x: auto;
    margin-top: 30px;
  }
  
  .table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .dark-mode .table {
    background-color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .table th,
  .table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
  }
  
  .dark-mode .table th,
  .dark-mode .table td {
    border-color: #444;
  }
  
  .table th {
    background-color: #f5f5f5;
    font-weight: 600;
  }
  
  .dark-mode .table th {
    background-color: #444;
    color: #fff;
  }
  
  .table th:first-child,
  .table td:first-child {
    text-align: left;
    font-weight: 500;
  }
  
  .table tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  .dark-mode .table tr:nth-child(even) {
    background-color: #3a3a3a;
  }
  
  .price-row td {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
  }
  
  .dark-mode .price-row td {
    border-bottom-color: #444;
  }
  
  .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1db954;
    margin-bottom: 10px;
  }
  
  .price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: #666;
  }
  
  .dark-mode .price span {
    color: #aaa;
  }
  
  .btn-block {
    display: block;
    width: 100%;
  }
  
  .text-success {
    color: #1db954;
  }
  
  /* Estilos gerais */
  .py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .mb-50 {
    margin-bottom: 50px;
  }
  
  .section-header {
    text-align: center;
  }
  
  .text-gradient {
    background: linear-gradient(135deg, #1db954, #13683a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  
  .dark-mode .text-gradient {
    background: linear-gradient(135deg, #1db954, #13683a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  
  /* Responsividade para tabelas em dispositivos móveis */
  @media (max-width: 768px) {
    .pricing-table {
      margin-left: -15px;
      margin-right: -15px;
      width: calc(100% + 30px);
    }
    
    .table th,
    .table td {
      padding: 10px 5px;
      font-size: 0.85rem;
    }
    
    .price {
      font-size: 1.25rem;
    }
    
    .btn-block {
      padding: 8px 5px;
      font-size: 0.85rem;
    }
    
    .table td:first-child {
      position: sticky;
      left: 0;
      background-color: #f5f5f5;
      z-index: 1;
    }
    
    .dark-mode .table td:first-child {
      background-color: #333;
    }
    
    .table tr:nth-child(even) td:first-child {
      background-color: #f0f0f0;
    }
    
    .dark-mode .table tr:nth-child(even) td:first-child {
      background-color: #2a2a2a;
    }
    
    .py-80 {
      padding-top: 50px;
      padding-bottom: 50px;
    }
  }