    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: Arial, sans-serif;
        background: #f8fafc;
        color: #1f2937;
        line-height: 1.7;
    }

    .topo {
        background: linear-gradient(135deg, #082460, #0d47a1);
        color: white;
        padding: 25px 20px;
        text-align: center;
    }

    .topo h1 {
  font-size: 2rem;
  margin-top: 10px;
  margin-bottom: 8px;
}

.topo p {
  font-size: 1rem;
  margin-bottom: 5px;
}

    .container {
        max-width: 1000px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .card {
        background: white;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    }

    h2 {
        color: #082460;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    p {
        margin-bottom: 15px;
    }

    ul {
        padding-left: 20px;
        margin-bottom: 15px;
    }

    li {
        margin-bottom: 8px;
    }

    .voltar {
        display: inline-block;
        margin-top: 30px;
        padding: 12px 20px;
        background: #082460;
        color: white;
        text-decoration: none;
        border-radius: 10px;
        font-weight: bold;
        transition: .3s;
    }

    .voltar:hover {
        background: #0d47a1;
    }

    .footer {
        text-align: center;
        padding: 20px;
        color: #64748b;
        margin-top: 40px;
    }

    .logo-topo {
        margin-bottom: 20px;
    }

    .logo-topo img {
        width: 120px;
        height: auto;
        background: white;
        padding: 6px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    }

 