.pg-body {
    margin: 0;
    min-height: 100vh;
    background: #0a0e17;
    color: #f1f5f9;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.pg-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
}

.pg-logo img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 155px;
    object-fit: contain;
}

.pg-card {
    width: min(100%, 400px);
    box-sizing: border-box;
    padding: 1.75rem 1.35rem;
    border-radius: 1rem;
    background: #111827;
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.pg-card__titulo {
    margin: 0 0 0.65rem;
    font-family: 'Clash Display', 'Inter', system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f8fafc;
}

.pg-card__texto {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #94a3b8;
}

.pg-card--termos {
    width: min(100%, 720px);
    text-align: left;
}

.pg-termos-texto {
    max-height: 65vh;
    overflow-y: auto;
    white-space: normal;
    word-break: break-word;
}

.pg-acoes {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.pg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0.8rem 1rem;
    border-radius: 0.65rem;
    border: 1px solid transparent;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.pg-btn--pri {
    background: linear-gradient(90deg, var(--fdx-blue), var(--fdx-blue-bright));
    color: #fff;
    box-shadow: 0 0 18px color-mix(in srgb, var(--fdx-blue) 30%, transparent);
}

.pg-btn--pri:hover {
    transform: translateY(-1px);
}

.pg-btn--sec {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.22);
    color: #94a3b8;
}

.pg-btn--sec:hover {
    background: rgba(148, 163, 184, 0.08);
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .pg-card {
        padding: 1.35rem 1rem;
    }

    .pg-card__titulo {
        font-size: 1.05rem;
    }

    .pg-card__texto {
        font-size: 0.86rem;
    }
}
