
    /* ===== ESTILOS ESPECÍFICOS PARA A PÁGINA DE PARCERIAS ===== */

    main {
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    /* Hero Section */
    main>header {
      text-align: center;
      margin-bottom: 50px;
      padding-bottom: 30px;
      border-bottom: 2px solid var(--bg-light);
    }

    main>header h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      color: var(--brand-blue);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .subtitle {
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      line-height: 1.6;
      color: var(--ink-700);
      max-width: 700px;
      margin: 0 auto;
    }

    .subtitle a {
      color: var(--brand-blue);
      text-decoration: none;
      font-weight: 600;
      border-bottom: 2px solid var(--brand-yellow);
      transition: all 0.2s ease;
    }

    .subtitle a:hover {
      color: var(--brand-blue-hero);
      border-bottom-color: var(--brand-blue);
    }

    /* Sections padrão */
    section {
      margin-bottom: 60px;
      padding: 30px;
      background: var(--bg-light);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    /* Context & Problem sections - estilo mais leve */
    #context,
    #problem {
      background: white;
      border: 1px solid rgba(50, 58, 204, 0.1);
    }

    section p {
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 20px;
      color: var(--ink-700);
    }

    section p:last-child {
      margin-bottom: 0;
    }

    section a {
      color: var(--brand-blue);
      text-decoration: none;
      font-weight: 600;
      border-bottom: 2px solid transparent;
      transition: all 0.2s ease;
    }

    section a:hover {
      color: var(--brand-blue-hero);
      border-bottom-color: var(--brand-yellow);
    }

    /* Títulos das seções */
    section h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      color: var(--brand-blue);
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

    section h2::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 4px;
      background: var(--brand-yellow);
      border-radius: 2px;
    }

    /* Listas */
    section ul,
    section ol {
      margin: 25px 0;
      padding-left: 25px;
    }

    section ul li,
    section ol li {
      margin-bottom: 15px;
      font-size: 1.1rem;
      line-height: 1.6;
      color: var(--ink-700);
      padding-left: 10px;
    }

    section ul li::marker {
      color: var(--brand-blue);
    }

    section ul li:before {
      content: "•";
      color: var(--brand-yellow);
      font-weight: bold;
      display: inline-block;
      width: 1em;
      margin-left: -1em;
    }

    section ol {
      counter-reset: item;
    }

    section ol li {
      counter-increment: item;
    }

    section ol li:before {
      content: counter(item) ". ";
      color: var(--brand-blue);
      font-weight: 600;
      margin-right: 8px;
    }

    /* CTA Section */
    #cta {
      text-align: center;
      background: var(--brand-blue);
      color: white;
      padding: 50px 30px;
    }

    #cta h2 {
      color: var(--brand-yellow);
      margin-bottom: 20px;
    }

    #cta h2::after {
      background: white;
      left: 50%;
      transform: translateX(-50%);
    }

    #cta p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto 30px;
    }

    .button.primary {
      display: inline-block;
      background: var(--brand-yellow);
      color: var(--brand-blue);
      font-family: "Dosis", sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      padding: 16px 32px;
      border-radius: 999px;
      text-decoration: none;
      border: 2px solid var(--brand-yellow);
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .button.primary:hover {
      background: #fdfd6b;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      text-decoration: none;
      border-color: #fdfd6b;
    }

    /* FAQ Section (já existe no CSS externo, apenas ajustes) */
    .feature-faq {
      background: white;
      border: 1px solid rgba(50, 58, 204, 0.1);
    }

    /* Responsividade */
    @media (max-width: 768px) {
      main {
        padding: 20px 15px;
      }

      section {
        padding: 25px 20px;
        margin-bottom: 40px;
      }

      main>header {
        margin-bottom: 40px;
        padding-bottom: 20px;
      }

      .button.primary {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
      }
    }

    @media (max-width: 480px) {
      section {
        padding: 20px 15px;
        margin-bottom: 30px;
      }

      section h2 {
        font-size: 1.4rem;
      }

      section p,
      section ul li,
      section ol li {
        font-size: 1rem;
      }

      #cta {
        padding: 40px 20px;
      }
    }

    /* Animações sutis */
    section {
      animation: fadeInUp 0.6s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


    /* ===== ESTILOS PARA A SEÇÃO DE TIPOS DE PARCERIA ===== */

    #partner-types {
      background: linear-gradient(135deg, rgba(247, 248, 255, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
      border: 1px solid rgba(50, 58, 204, 0.15);
      text-align: center;
    }

    #partner-types h2 {
      text-align: center;
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      color: var(--brand-blue);
      margin-bottom: 40px;
      position: relative;
    }

    #partner-types h2::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--brand-yellow);
      border-radius: 2px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .card {
      background: white;
      border-radius: var(--radius);
      padding: 35px 30px;
      box-shadow: var(--shadow);
      border: 2px solid transparent;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-yellow) 100%);
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      border-color: var(--brand-blue);
    }

    .card h3 {
      font-size: 1.5rem;
      color: var(--brand-blue);
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 2px solid rgba(50, 58, 204, 0.1);
      position: relative;
    }

    .card h3::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--brand-yellow);
    }

    .card p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: var(--ink-700);
      margin-bottom: 25px;
      flex-grow: 1;
    }

    .card a {
      display: inline-block;
      background: var(--brand-blue);
      color: var(--brand-yellow);
      font-family: "Dosis", sans-serif;
      font-weight: 600;
      font-size: 1rem;
      padding: 12px 24px;
      border-radius: 999px;
      text-decoration: none;
      border: 2px solid var(--brand-blue);
      transition: all 0.3s ease;
      align-self: center;
      margin-top: auto;
    }

    .card a:hover {
      background: #2a31b3;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(50, 58, 204, 0.25);
      text-decoration: none;
      border-color: #2a31b3;
    }

    

    /* Responsividade */
    @media (max-width: 768px) {
      .cards {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .card {
        padding: 30px 25px;
      }

      
    }

    @media (max-width: 480px) {
      #partner-types {
        padding: 25px 20px;
      }

      .card {
        padding: 25px 20px;
      }

      .card h3 {
        font-size: 1.3rem;
      }

      .card p {
        font-size: 1rem;
      }

      .card a {
        width: 100%;
        text-align: center;
      }
    }

    /* Animações para os cards */
    .card {
      animation: fadeInUp 0.6s ease-out;
      animation-fill-mode: both;
    }

    .card:nth-child(1) {
      animation-delay: 0.1s;
    }

    .card:nth-child(2) {
      animation-delay: 0.2s;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
