.reportagem {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px 70px;
}

.reportagem-hero {
    max-width: 980px;
    margin: 60px auto 45px;
    text-align: center;
}

.reportagem-hero h1 {
    margin: 18px 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.reportagem-hero .subtitulo {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #d7d7d7;
    max-width: 850px;
    margin: 0 auto 18px;
}

.reportagem-hero .periodo {
    color: #ffffff;
    font-size: 1rem;
}

.texto-reportagem {
    max-width: 920px;
    margin: 58px auto;
    text-align: center;
}

.texto-reportagem h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 24px;
}

.texto-reportagem p {
    text-align: justify;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #e0e0e0;
    margin-bottom: 18px;
}

.foto-principal {
    display: block;
    width: 100%;
    max-width: 760px;
    max-height: 560px;
    object-fit: contain;
    margin: 38px auto 0;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.bloco-foto-texto {
    display: grid;
    grid-template-columns: minmax(300px, 500px) 1fr;
    gap: 34px;
    align-items: center;
    margin: 75px auto;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.28);
}

.bloco-foto-texto.invertido img {
    order: 2;
}

.bloco-foto-texto.invertido div {
    order: 1;
}

.bloco-foto-texto img {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.18);
}

.bloco-foto-texto h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 18px;
}

.bloco-foto-texto p {
    font-size: 1rem;
    line-height: 1.75;
    color: #dddddd;
    margin-bottom: 14px;
    text-align: justify;
}

.fontes {
    margin-top: 75px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.fontes h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    text-align: left;
    color: #ffffff;
}

.fontes ul {
    max-width: 850px;
    margin: 0 auto 30px;
    padding-left: 25px;
    text-align: left;
}

.fontes li {
    margin-bottom: 18px;
    line-height: 1.8;
}

.fontes a {
    color: #7fc8ff;
    word-break: break-word;
}

.fontes a:hover {
    text-decoration: underline;
}

@media (max-width: 850px) {
    .bloco-foto-texto,
    .bloco-foto-texto.invertido {
        grid-template-columns: 1fr;
    }

    .bloco-foto-texto.invertido img,
    .bloco-foto-texto.invertido div {
        order: initial;
    }

    .texto-reportagem p,
    .bloco-foto-texto p {
        text-align: left;
    }
}