.sectionfaq {
    color: #cacbd2;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 54vh;
}

.containerfaq {
    display: flex;
    gap: 3rem;
    width: 100%;
    max-width: 1400px;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  /* FAQ a la izquierda */
  .faq {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    border-radius: 12px;
    overflow: hidden; 
    background: #12121a;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .accordion {
    background-color: transparent;
    color: #cacbd2;
    font-weight: bold;
    cursor: pointer;
    padding: 18px 22px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: background-color 0.3s ease;
    width: 100%;
    display: block;
  }

  .accordion:hover {
    background-color: #15151f;
  }

  .accordion.active {
    background-color: #15151f;
  }

  .info-panel {
    background-color: #15151f;
    max-height: 0;
    color: #cacbd2;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 18px;
    font-size: 14px;
    line-height: 1.5;
  }

  .info-panel a {
    margin: 12px 0;
  }

  /* Info a la derecha */
  .info {
    flex: 2;
    padding: 40px;
    border-radius: 12px;
    justify-content: center;
  }

  .info h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #cacbd2;
  }

  .info-text {
    color: #cacbd2;
    font-size: 16px;
    line-height: 1.6;
  }

  .btn {
    display: inline-block;
    padding: 12px 18px;
    margin-right: 12px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
  }
  

  .btn.primary {
    background: linear-gradient(90deg, #5764EF, #5764EF);
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(87, 100, 239, 0.3);
  }

  .btn.primary:hover {
    opacity: 0.9;
  }

  .btn.secondary {
    background: #e5e7eb;
    color: #23283c;
  }

  .btn.secondary:hover {
    background: #d1d5db;
  }


  @media (max-width: 1368px) {
    .sectionfaq {
        margin-left: 60px;
        margin-right: 60px;
    }
    .containerfaq {
        flex-direction: column;
        gap: 2rem;
    }
  }