      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        background: #fff;
        min-height: 100vh;
        padding: 0px;
      }

      .container {
        max-width: 100%;
        margin: 0 auto;
        background: white;
        border-radius: 0px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        overflow: hidden;
      }

      header {
        background: #fff;
        color: #06183a;
        padding: 20px;
        text-align: center;
      }

      header h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }

      header p {
        font-size: 1.1rem;
        opacity: 0.9;
      }

      .content {
        padding: 40px;
      }

      .aviso {
        padding: 10px;
      }

      .section {
        margin-bottom: 40px;
      }

      .section h1 {
        color: #1e3c72;
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 3px solid #667eea;
        display: flex;
        align-items: center;
      }

      .section h1::before {
        content: "📋";
        margin-right: 10px;
        font-size: 1.5rem;
      }

      .links-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
        margin-top: 20px;
      }

      .link-item {
        /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
        background: linear-gradient(235deg, #85c2ef 0%, #bce0fc 100%);
        border-radius: 8px;
        padding: 15px 20px;
        transition: all 0.3s ease;
        border-left: 4px solid #1e3c72;
      }

      .link-item:hover {
        transform: translateX(10px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        border-left-color: #1e3c72;
      }

      .link-item a {
        color: #1e3c72;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .link-item a::after {
        /* content: "→"; */
        font-size: 1.2rem;
        transition: transform 0.3s ease;
      }

      .link-item:hover a::after {
        transform: translateX(5px);
      }

      footer {
        background: #1e3c72;
        color: white;
        text-align: center;
        padding: 20px;
        font-size: 0.9rem;
      }

      @media (max-width: 768px) {
        header h1 {
          font-size: 1.8rem;
        }

        .content {
          padding: 20px;
        }

        .aviso {
          padding: 10px;
        }

        .section h1 {
          font-size: 1.4rem;
        }

        .links-grid {
          grid-template-columns: 1fr;
        }
      }

      /* Ícones personalizados para cada seção */
      .section:nth-child(1) h1::before {
        content: "🔍";
      }
      .section:nth-child(2) h1::before {
        content: "💰";
      }
      .section:nth-child(3) h1::before {
        content: "💵";
      }
      .section:nth-child(4) h1::before {
        content: "📊";
      }
      .section:nth-child(5) h1::before {
        content: "📰";
      }
      .section:nth-child(6) h1::before {
        content: "👥";
      }
      .section:nth-child(7) h1::before {
        content: "🛒";
      }
      .section:nth-child(8) h1::before {
        content: "🦠";
      }