.planes-hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 100px 0 60px;
    text-align: center;
  }
  
  .planes-hero h1 {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 1.5rem;
  }
  
  .planes-hero p {
    font-size: 1.1rem;
    color: #37474f;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
  }
  
  .banner {
    background-color: #e8f5e9;
    padding: 12px 0;
    text-align: center;
    color: #1a3c1a;
    font-size: 14px;
    border-bottom: 1px solid #c8e6c9;
  }
  
  .banner p {
    margin: 0;
  }
  
  .planes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
  }
  
  .planes-title {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-size: 2rem;
  }
  
  .planes-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
  }
  
  .plan-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 300px;
  }
  
  .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .plan-header {
    padding: 20px;
    text-align: center;
  }
  
  .basic-header {
    background: #2ECC71;
    color: #fff;
  }
  
  .standard-header {
    background: #f39c12;
    color: #fff;
  }
  
  .premium-header {
    background: #3498db;
    color: #fff;
  }
  
  .plan-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0 5px;
  }
  
  .plan-period {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
    margin-bottom: 5px;
  }
  
  .plan-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
  }
  
  .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    flex-grow: 1;
  }
  
  .plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
  }
  
  .plan-features li:last-child {
    border-bottom: none;
  }
  
  .plan-features i {
    color: #2ECC71;
    margin-right: 10px;
    font-size: 14px;
  }
  
  .plan-features i.fa-times {
    color: #e74c3c;
  }
  
  .plan-button {
    text-align: center;
    margin-top: auto;
  }
  
  .plan-button .cta-button {
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px;
  }
  
  .plan-popular {
    position: relative;
    transform: scale(1.05);
    z-index: 1;
    border: 2px solid #f39c12;
  }
  
  .plan-popular:hover {
    transform: translateY(-5px) scale(1.05);
  }
  
  .plan-popular::before {
    content: "Más Popular";
    position: absolute;
    top: 10px;
    right: -35px;
    background: #f39c12;
    color: #fff;
    padding: 5px 40px;
    font-size: 0.7rem;
    transform: rotate(45deg);
    z-index: 2;
  }
  
  .comparativa-container {
    max-width: 900px;
    margin: 0 auto 80px;
  }
  
  .comparativa-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #333;
  }
  
  .comparativa-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .comparativa-table th,
  .comparativa-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
  }
  
  .comparativa-table th {
    background: #f9f9f9;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
  }
  
  .comparativa-table th:first-child {
    text-align: left;
    width: 40%;
  }
  
  .comparativa-table td:first-child {
    text-align: left;
    font-weight: 500;
  }
  
  .comparativa-table td i.fa-check {
    color: #2ECC71;
  }
  
  .comparativa-table td i.fa-times {
    color: #e74c3c;
  }
  
  .table-price {
    font-weight: 700;
    color: #333;
  }
  
  .faq-section {
    background: #f9f9f9;
    padding: 60px 20px;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
  }
  
  .faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
  }
  
  .faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
  }
  
  .faq-question i {
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
  }
  
  @media (max-width: 992px) {
    .planes-grid {
      flex-direction: column;
      align-items: center;
    }
    
    .plan-card {
      width: 100%;
      max-width: 350px;
    }
    
    .plan-popular {
      transform: scale(1);
      order: -1;
      margin-bottom: 30px;
    }
    
    .plan-popular:hover {
      transform: translateY(-5px) scale(1);
    }
  }
  
  @media (max-width: 768px) {
    .planes-grid {
      flex-direction: column;
    }
    
    .plan-card {
      width: 100%;
      max-width: 320px;
    }
    
    .planes-hero h1 {
      font-size: 2rem;
    }
    
    .comparativa-table {
      font-size: 0.8rem;
    }
    
    .comparativa-table th,
    .comparativa-table td {
      padding: 10px 5px;
    }
    
    .comparativa-table th:first-child,
    .comparativa-table td:first-child {
      padding-left: 10px;
    }
  }