/* Estilos para a tabela de preços */
  .pricing-table {
    margin-top: 25px;
    margin-bottom: 50px;
  }
  
  .wow-outer {
    overflow: visible !important;
  }

  .pricing-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 10px;
    height: 100%;
    transition: transform 0.3s ease;
    margin: 40px 40px;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
  }
  
  .pricing-card-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 25px;
  }
  
  .pricing-card.popular {
    border: 2px solid #007bff;
    position: relative;
  }
  
  .pricing-card.popular::before {
    content: "Mais Popular";
    position: absolute;
    top: -12px;
    right: 30px;
    background: #007bff;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
  }
  
  .price {
    font-size: 40px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
  }
  
  .price-period {
    color: #7f8c8d;
    font-size: 16px;
  }
  
  .pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
  }
  
  .pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
  }
  
  .pricing-features li:last-child {
    border-bottom: none;
  }
  
  .pricing-features li::before {
    content: "✓";
    margin-right: 10px;
    color: #2ecc71;
    font-weight: bold;
  }
  
  .pricing-features li.unavailable::before {
    content: "✕";
    color: #e74c3c;
  }
  
  .pricing-features li.unavailable {
    color: #95a5a6;
  }
  
  .pricing-card-footer {
    text-align: center;
    margin-top: auto;
    padding-top: 10px;
  }
  
  /* Estilos para as perguntas frequentes */
  .accordion-custom .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .accordion-custom .card-header {
    background-color: #ffffff;
    border-bottom: none;
    padding: 0;
  }
  
  .accordion-custom .btn-link {
    display: block;
    width: 100%;
    text-align: left;
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
    padding: 20px;
    position: relative;
  }
  
  .accordion-custom .btn-link:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    transition: all 0.3s;
  }
  
  .accordion-custom .btn-link[aria-expanded="true"]:after {
    content: "-";
  }
  
  .accordion-custom .card-body {
    padding: 0 20px 20px 20px;
    color: #7f8c8d;
  }