.perfilrnt {
   
    color: #333;
}

/* Título */
.perfilrnt h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #006699;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 0 2rem;
}

.perfilrnt h1::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #006699;
    display: block;
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Bloco da imagem + texto */

/* Imagem */
.perfilrnt-imagem {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

/* Texto */
.perfilrnt p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    margin: 0;
}

/* Responsivo */
@media (min-width: 768px) {
    .perfilrnt h1 {
        font-size: 3.5rem;
        padding: 0;
    }

    .perfilrnt p {
        font-size: 1.25rem;
    }
}
