/* --- sobre.css: Estilos Específicos da Página Sobre --- */

.about-content p {
    line-height: 1.7; margin-bottom: 1.5rem;
}
.about-image-float {
    float: left; width: 40%; max-width: 300px;
    margin-right: 1.5rem; margin-bottom: 1rem;
    border-radius: 8px; border: 1px solid var(--primary-color);
}
.clearfix::after { content: ""; display: table; clear: both; }

/* Carrossel da Linhagem Papal */
.pope-carousel-container {
    max-width: 800px;
    margin: 3rem auto;
    border: 2px solid var(--dark-purple);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    background-color: #000;
}

/* Ajuste das imagens do carrossel para não estourarem */
.carousel-pope-img {
    width: 100%;
    height: 600px; /* Altura fixa para manter padrão */
    object-fit: cover; /* Cobre a área sem distorcer (corta excesso) */
    object-position: top center; /* Foca no rosto/topo */
}

/* Legendas do Carrossel */
.carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 10px;
    bottom: 20px;
}
.carousel-caption h5 {
    font-family: 'Metal Mania', cursive;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Controles do Carrossel */
.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: drop-shadow(0 0 5px var(--primary-color));
}

@media (max-width: 768px) {
    .about-image-float { float: none; display: block; width: 100%; margin: 0 auto 1.5rem auto; }
    .carousel-pope-img { height: 400px; /* Menor no celular */ }
}