* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pp-container {
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    padding: 2rem 7rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    width: 100%;
    margin: 2rem 1rem;
}

.pp-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 7rem;
}

.pp-header img {
    opacity: 0.8;
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Conteudo */
.pp-content {
    text-align: justify;
    color: #07263f;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
}

.pp-content > * + * {
    margin-top: 1rem;
}

h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color: #07263f;
}

.pp-section-title {
    font-size: 1.125rem;
    font-weight: 300;
    color: #07263f;
}

p {
    color: #07263f;
    font-weight: 300;
}

.pp-bold {
    font-weight: 600;
}

.pp-italic {
    font-style: italic;
}

ul, ol {
    padding-left: 1.5rem;
    color: #07263f;
    font-weight: 300;
}

ul > li + li,
ol > li + li {
    margin-top: 0.5rem;
}

.pp-list-alpha {
    list-style-type: lower-alpha;
    padding-left: 3rem;
}

.pp-list-none {
    list-style: none;
    padding-left: 1.5rem;
}

.pp-list-none-inner {
    list-style: none;
    padding-left: 1.5rem;
}

.pp-list-none-inner > li + li {
    margin-top: 0.5rem;
}

.pp-sublist {
    margin-top: 0.5rem;
}

a {
    color: #2563eb;
    text-decoration: underline;
}

/* Rodape */
.pp-footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 1.25rem 0;
    position: relative;
}

.pp-footer-line {
    background-color: #fef9c3;
    width: 100%;
    height: 4px;
}

.pp-footer-number {
    position: absolute;
    left: 1.25rem;
    background-color: #ffffff;
    padding: 0 0.5rem;
    color: #475569;
    font-size: 0.875rem;
}

.pp-footer-text {
    color: #475569;
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    white-space: nowrap;
    font-weight: 300;
}

@media (max-width: 768px) {
    .pp-container {
        padding: 2rem 1.5rem;
    }
}
