* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.6;
}

.page {
    max-width: 1180px;
    margin: clamp(16px, 4vw, 40px) auto;
    background: var(--paper);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(20px, 4.5vw, 48px);
}

/* Cabeçalho */
.page-header h1 {
    color: var(--green);
    font-size: clamp(1.867rem, 1.307rem + 2.987vw, 2.667rem);
    margin: 0 0 10px 0;
    font-weight: 800;
}

/* Seções */
.section {
    margin-top: 22px;
}

.page--accessibility .section {
    margin-top: 14px;
    padding-block: 0;
}

.page--accessibility .section + .section {
    margin-top: 20px;
}

.section h2 {
    color: var(--green);
    font-weight: 800;
    font-size: clamp(1.467rem, 1.093rem + 1.991vw, 2rem);
    margin: 8px 0 8px;
}

.section .lead {
    font-family: var(--font-sans);
    font-size: 0.8667rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Lista com bullets discretos */
.bullet-list {
    margin: 10px 0 0 0;
    padding-left: 1.2rem;
}

.bullet-list li {
    margin: 10px 0;
}

/* Foto com cantos arredondados e legenda */
.photo {
    margin: 28px 0 6px;
    text-align: center;
}

.photo img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.photo figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: .9rem;
}

/* Impressão (remove sombras/margens de fundo) */
@media print {
    body {
        background: #fff;
    }

    .page {
        box-shadow: none;
        margin: 0;
        padding: 28px;
    }

    a[href]:after {
        content: "";
    }

    /* limpa URLs automáticas em impressão */
}
