
    /* ===== ESTILOS ESPECÍFICOS PARA A PÁGINA DE BLOG ===== */

    /* Container principal do blog */
    #main-content {
      max-width: var(--max);
      margin: 0 auto;
      padding: 60px 20px 80px;
      background: var(--bg-light);
      min-height: calc(100vh - 70px);
    }

    /* Header do blog */
    #main-content>header {
      text-align: center;
      margin-bottom: 60px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    #main-content>header h1 {
      font-family: "Dosis", sans-serif;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      color: var(--brand-blue);
      margin-bottom: 20px;
      font-weight: 700;
      line-height: 1.1;
    }

    #main-content>header p {
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: clamp(1.125rem, 2vw, 1.25rem);
      color: var(--ink-700);
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto;
    }

    #main-content>header p a {
      color: var(--brand-blue);
      text-decoration: none;
      font-weight: 700;
      position: relative;
      padding-bottom: 2px;
    }

    #main-content>header p a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--brand-yellow);
      transform: scaleX(0);
      transition: transform 0.3s ease;
      transform-origin: bottom right;
    }

    #main-content>header p a:hover {
      color: var(--brand-blue-hero);
      text-decoration: none;
    }

    #main-content>header p a:hover::after {
      transform: scaleX(1);
      transform-origin: bottom left;
    }

    /* Seções do blog */
    #main-content section {
      background: white;
      border-radius: var(--radius);
      padding: 40px;
      margin-bottom: 30px;
      box-shadow: var(--shadow);
      border: 1px solid #EEF0FF;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    #main-content section:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

    #main-content section h2 {
      font-family: "Dosis", sans-serif;
      color: var(--brand-blue);
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 3px solid var(--brand-yellow);
      font-weight: 600;
      position: relative;
    }

    #main-content section h2::before {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--brand-blue);
    }

    #main-content section p {
      font-family: "DM Sans", system-ui, sans-serif;
      color: var(--ink-700);
      font-size: clamp(1rem, 1.8vw, 1.125rem);
      line-height: 1.6;
      margin-bottom: 25px;
    }

    /* Lista de categorias do blog */
    .blog-categories-list {
      list-style: none;
      padding: 0;
      margin: 30px 0 0;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
    }

    .blog-categories-list li {
      margin: 0;
      padding: 0;
    }

    .blog-categories-list a {
      display: block;
      background: var(--bg-light);
      border: 2px solid #EEF0FF;
      border-radius: var(--radius);
      padding: 22px 24px;
      font-family: "Dosis", sans-serif;
      font-weight: 600;
      color: var(--brand-blue);
      font-size: 1.125rem;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .blog-categories-list a::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--brand-yellow);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .blog-categories-list a:hover {
      background: white;
      border-color: var(--brand-blue);
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(50, 58, 204, 0.12);
    }

    .blog-categories-list a:hover::before {
      transform: translateX(0);
    }

    .blog-categories-list a strong {
      font-weight: 700;
    }

    /* Navegação secundária do blog */
    #main-content nav[aria-label="Blog navigation"] {
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    #main-content nav[aria-label="Blog navigation"] ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    #main-content nav[aria-label="Blog navigation"] li {
      margin: 0;
    }

    #main-content nav[aria-label="Blog navigation"] a {
      display: inline-block;
      padding: 14px 28px;
      background: white;
      border: 2px solid var(--brand-blue);
      border-radius: 999px;
      font-family: "Dosis", sans-serif;
      font-weight: 600;
      color: var(--brand-blue);
      text-decoration: none;
      font-size: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(50, 58, 204, 0.08);
    }

    #main-content nav[aria-label="Blog navigation"] a:hover {
      background: var(--brand-blue);
      color: var(--brand-yellow);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(50, 58, 204, 0.2);
    }

    /* Seção "Coming Soon" com estilo especial */
    #blog-coming-soon {
      background: linear-gradient(135deg, rgba(50, 58, 204, 0.05) 0%, rgba(255, 255, 0, 0.05) 100%);
      border: 2px dashed rgba(50, 58, 204, 0.2);
      text-align: center;
    }

    #blog-coming-soon h2 {
      color: var(--brand-blue);
      border-bottom: none;
      padding-bottom: 0;
    }

    #blog-coming-soon h2::before {
      display: none;
    }

    #blog-coming-soon h2::after {
      content: "🔜";
      margin-left: 10px;
      font-size: 0.8em;
    }

    #blog-coming-soon p {
      font-size: clamp(1.125rem, 2vw, 1.25rem);
      color: var(--ink-900);
      max-width: 700px;
      margin: 0 auto 25px;
    }

    /* Responsividade */
    @media (max-width: 1024px) {
      #main-content {
        padding: 40px 20px 60px;
      }

      #main-content>header {
        margin-bottom: 40px;
        padding-bottom: 30px;
      }

      #main-content section {
        padding: 30px;
      }

      .blog-categories-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      #main-content {
        padding: 30px 15px 50px;
      }

      #main-content>header h1 {
        font-size: 2.2rem;
      }

      #main-content section {
        padding: 25px 20px;
      }

      #main-content section h2 {
        font-size: 1.75rem;
      }

      #main-content nav[aria-label="Blog navigation"] ul {
        flex-direction: column;
        align-items: center;
      }

      #main-content nav[aria-label="Blog navigation"] a {
        width: 100%;
        text-align: center;
        max-width: 300px;
      }
    }

    @media (max-width: 480px) {
      #main-content>header h1 {
        font-size: 1.9rem;
      }

      #main-content section {
        padding: 20px 15px;
      }

      #main-content section h2 {
        font-size: 1.5rem;
      }

      .blog-categories-list a {
        padding: 18px 20px;
      }

      #main-content nav[aria-label="Blog navigation"] a {
        padding: 12px 20px;
      }
    }

    /* Animações de entrada */
    #main-content>header,
    #main-content section,
    #main-content nav[aria-label="Blog navigation"] {
      animation: fadeInUp 0.6s ease forwards;
      opacity: 0;
    }

    #main-content>header {
      animation-delay: 0.1s;
    }

    #main-content section:nth-child(2) {
      animation-delay: 0.2s;
    }

    #main-content section:nth-child(3) {
      animation-delay: 0.3s;
    }

    #main-content section:nth-child(4) {
      animation-delay: 0.4s;
    }

    #main-content nav[aria-label="Blog navigation"] {
      animation-delay: 0.5s;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
