
    /* Página de Contato - Estilo Específico */
    .contact-page {
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Hero/Header da página */
    .contact-page>header {
      text-align: center;
      padding: 80px 0 40px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      margin-bottom: 60px;
    }

    .contact-page>header h1 {
      font-family: "Dosis", sans-serif;
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 600;
      color: var(--brand-blue);
      margin-bottom: 24px;
      line-height: 1.2;
    }

    .contact-page>header .subtitle {
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: clamp(1.1rem, 1.8vw, 1.25rem);
      color: var(--ink-700);
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto;
    }

    .contact-page>header .subtitle a {
      color: var(--brand-blue);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .contact-page>header .subtitle a:hover {
      color: var(--brand-blue-hero);
      text-decoration: underline;
    }

    /* Seções da página */
    .contact-page>section {
      background: var(--bg-light);
      border-radius: var(--radius);
      padding: 40px;
      margin-bottom: 40px;
      box-shadow: var(--shadow);
      border-left: 4px solid var(--brand-yellow);
    }

    .contact-page>section h2 {
      font-family: "Dosis", sans-serif;
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 600;
      color: var(--brand-blue);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid rgba(50, 58, 204, 0.15);
    }

    .contact-page>section p {
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: 1.1rem;
      color: var(--ink-700);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    /* Listas de contato */
    .contact-page>section ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .contact-page>section li {
      background: white;
      border-radius: var(--radius);
      padding: 24px;
      margin-bottom: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(50, 58, 204, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-page>section li:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .contact-page>section li strong {
      display: block;
      font-family: "Dosis", sans-serif;
      font-size: 1.2rem;
      color: var(--brand-blue);
      margin-bottom: 8px;
    }

    .contact-page>section li br {
      display: none;
    }

    .contact-page>section li a {
      color: var(--brand-blue);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.2s ease;
      display: inline-block;
      margin-top: 8px;
    }

    .contact-page>section li a:hover {
      color: var(--brand-blue-hero);
      text-decoration: underline;
    }

    /* Destaque para links de ação */
    .contact-page>section li a[target="_blank"] {
      background: var(--brand-yellow);
      color: var(--brand-blue-hero);
      padding: 8px 16px;
      border-radius: 999px;
      font-weight: 700;
      margin-top: 12px;
    }

    .contact-page>section li a[target="_blank"]:hover {
      background: #fdfd6b;
      text-decoration: none;
      transform: translateY(-2px);
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .contact-page {
        padding: 0 15px;
      }

      .contact-page>header {
        padding: 60px 0 30px;
        margin-bottom: 40px;
      }

      .contact-page>section {
        padding: 30px 20px;
        margin-bottom: 30px;
      }

      .contact-page>section li {
        padding: 20px;
      }
    }

    @media (max-width: 480px) {
      .contact-page {
        padding: 0 10px;
      }

      .contact-page>header {
        padding: 40px 0 20px;
      }

      .contact-page>section {
        padding: 24px 16px;
      }

      .contact-page>section li strong {
        font-size: 1.1rem;
      }

      .contact-page>section li a[target="_blank"] {
        width: 100%;
        text-align: center;
      }
    }

    /* Ajustes para garantir compatibilidade com o CSS existente */
    .contact-page main {
      padding-bottom: 40px;
    }
 