    body {
      background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
      font-family: "Segoe UI", Roboto, sans-serif;
      color: #212529;
      overflow-x: hidden;
    }

    header {
      background: #007BFF;
      color: white;
      padding: 40px 20px;
      border-radius: 0 0 20px 20px;
      text-align: center;
      position: relative;
    }

    header img {
      max-height: 90px;
    }

    .form-container {
      background: #ffffff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 6px 24px rgba(0,0,0,0.1);
      max-width: 1100px;
      margin: 30px auto;
    }

    .trust-signals {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 25px 0;
      flex-wrap: wrap;
    }

    .trust-signals i {
      color: #28A745;
      font-size: 2rem;
      margin-right: 10px;
    }

    .form-label {
      font-weight: 600;
      color: #007BFF;
    }

    .btn-success {
      background-color: #FF6200;
      border: none;
      padding: 15px 40px;
      font-size: 1.25rem;
      font-weight: 700;
      transition: transform 0.2s, background-color 0.2s;
      border-radius: 10px;
    }

    .btn-success:hover {
      background-color: #e05500;
      transform: scale(1.05);
    }

    .testimonial {
      background: #28A745;
      color: white;
      border-radius: 12px;
      padding: 30px;
      margin-bottom: 30px;
      border-left: 6px solid #1c7430;
    }

    .testimonial p {
      font-style: italic;
      color: #e9ecef;
      margin-bottom: 15px;
    }

    .testimonial .author {
      font-weight: 600;
      color: #fff;
    }

    .features-list li {
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      font-size: 1.15rem;
    }

    .features-list i {
      color: #28A745;
      margin-right: 15px;
      font-size: 1.5rem;
    }
.planos-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2rem;
  border-radius: 16px;
}

.planos-header {
  text-align: center;
  margin-bottom: 3rem;
}

.planos-header h5 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2b3035;
  margin-bottom: 1rem;
}

.plano-card {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.plano-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.plano-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b3035;
  margin-bottom: 1rem;
}

.plano-card .price-tag {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  padding: 1rem;
  border-radius: 12px;
  margin: 1rem 0;
}

.plano-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: #28a745;
  margin: 0;
}

.plano-card .savings-badge {
  background: #fef2e6;
  color: #fd7e14;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.5rem;
}

.payment-methods {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.select-btn {
  border-radius: 10px;
  padding: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
}

.select-btn:hover {
  transform: scale(1.02);
}



.selected-plan {
  border: 2px solid #28a745;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
}

@media (max-width: 768px) {
  .planos-section {
    padding: 1rem;
  }
  
  .plano-card {
    margin-bottom: 1.5rem;
  }
}
.plano-card {
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      cursor: pointer;
      min-width: 280px;
      max-width: 320px;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .plano-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .plano-card .card-body {
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 90%;
    }

    .plano-card.border-primary {
      box-shadow: 0 0 0 5px rgba(0, 123, 255, 0.3);
    }

    .badge-recomendado {
      position: absolute;
      top: 100px;
      left: 60%;
      transform: translateX(-50%);
      background-color: #FFC107;
      color: #212529;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 0.5rem 1.2rem;
      border-radius: 15px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.2);
      z-index: 2;
    }

    .select-btn {
      padding: 12px 20px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
    }

    .select-btn.active {
      background-color: #007BFF;
      color: white;
    }

    .input-group-text {
      background-color: #f8f9fa;
      border-radius: 0.375rem 0 0 0.375rem;
    }

    .input-group-text i.bi-check-circle-fill {
      color: #28A745;
      display: none;
    }

    .input-group-text i.bi-x-circle-fill {
      color: #DC3545;
      display: none;
    }

    .is-valid ~ .input-group-text i.bi-check-circle-fill {
      display: inline-block;
    }

    .is-invalid ~ .input-group-text i.bi-x-circle-fill {
      display: inline-block;
    }

    footer {
      margin-top: 60px;
      padding: 30px 0;
      border-top: 1px solid #dee2e6;
      text-align: center;
      font-size: 0.95rem;
      color: #6c757d;
    }

    footer a {
      color: #007BFF;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    #planos-container {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 25px;
      margin: 0 auto;
      max-width: 1100px;
    }

   

    .planos-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 2.5rem;
    }

    .alert-urgency {
      background-color: #DC3545;
      color: white;
      text-align: center;
      margin: 0 auto;
      max-width: 700px;
      border-radius: 12px;
      padding: 20px;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .section-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 30px;
    }

    .progress-bar-container {
      margin-bottom: 25px;
    }

    .sticky-cta {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: none;
    }

    @media (max-width: 991px) {
      #planos-container {
        flex-direction: column;
        align-items: center;
      }

      #planos-container .plano-card {
        width: 100%;
        max-width: 360px;
      }

      .form-container {
        padding: 25px;
      }

      .sticky-cta {
        display: block;
      }
    }

    @media (max-width: 576px) {
      .form-container {
        padding: 20px;
      }

      .plano-card {
        min-width: 100%;
      }

      header {
        padding: 25px 15px;
      }

      .btn-success {
        padding: 12px 30px;
        font-size: 1.1rem;
      }
    }
    .hover-card {
  transition: transform 0.2s, box-shadow 0.2s;
}
.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(0,0,0,0.1);
}
