/* Start custom CSS */#wp-painel-idear {
    margin: 0;
    padding: 40px;
    background: linear-gradient(135deg, #51afac 0%, #cf942c 100%);
    font-family:
      Segoe UI,
      Arial,
      sans-serif;
  }
  .painel-box {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  .painel-titulo {
    margin-block-start: 0%;
    font-size: 40px;
    text-align: center;
    color: #14483d;
  }
  .categoria {
    margin-top: 0px;
  }
  .categoria:first-of-type {
    margin-top: 0;
  }
  .categoria h3 {
    color: #14483d;
    border-bottom: 2px solid #51afac;
    padding-bottom: 8px;
  }
  .links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
  }
  .btn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    background: #14483d;
    color: #fff;
    padding: 18px;
    border-radius: 8px;
    font-weight: 600;
  }
  .btn-link:hover {
    background: #1c6152;
  }

  .accordion {
    margin: 10px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d8d8d8;
  }
  .acc-btn {
    width: 100%;
    background: #14483d;
    color: #fff;
    border: 0;
    padding: 18px 22px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .arrow {
    width: 12px;
    height: 12px;

    border-top: 3px solid white;
    border-right: 3px solid white;

    transform: rotate(45deg);

    transition: 0.3s;
  }
  .acc-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
  }
  .acc-content > .links-grid {
    overflow: hidden;
    padding: 0;
  }
  .accordion.open .acc-content {
    grid-template-rows: 1fr;
  }
  .accordion.open .acc-content > .links-grid {
    padding: 20px;
  }
  .accordion.open .arrow {
    transform: rotate(135deg);
  }/* End custom CSS */