/* =========================
   CONTEÚDO INICIAL
========================= */

.conteudo {
    padding: 50px 8%;
}

/* HERO */

.hero-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.hero-texto {
    flex: 1;
    min-width: 300px;
}

.hero-texto h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #990011;
}

.hero-texto h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.hero-texto p {
    font-size: 18px;
    line-height: 1.8;
}

.hero-imagem {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-imagem img {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


/* BLOCOS */

.info-bloco {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.info-imagem img {
    width: 350px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
}

.info-texto {
    flex: 1;
    min-width: 300px;
}

.info-texto h2 {
    color: #990011;
    margin-bottom: 20px;
    font-size: 36px;
}

.info-texto p {
    line-height: 1.8;
    margin-bottom: 15px;
}


/* TEXTO DESTAQUE */

.texto-destaque {
    text-align: center;
    margin-bottom: 100px;
    padding: 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

.texto-destaque h2 {
    color: #990011;
    font-size: 38px;
    margin-bottom: 20px;
}

.texto-destaque p {
    font-size: 20px;
    line-height: 1.8;
}


/* MURAL */

.memorias h2 {
    text-align: center;
    color: #990011;
    font-size: 40px;
    margin-bottom: 50px;
}

.mural {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.mural-item {
    background-color: white;
    border-radius: 18px;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

.mural-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}


/* CITAÇÕES */

.quote {
    padding: 25px;
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    text-align: center;
    color: #990011;
    font-family: Georgia, serif;
    background-color: #fff8f8;
}


/* MOBILE */

@media (max-width: 768px) {

    .hero-texto h1 {
        font-size: 38px;
        text-align: center;
    }

    .hero-texto h4,
    .hero-texto p,
    .info-texto,
    .texto-destaque {
        text-align: center;
    }

    .info-imagem img,
    .hero-imagem img {
        max-width: 100%;
    }

    .texto-destaque h2 {
        font-size: 30px;
    }

    .memorias h2 {
        font-size: 32px;
    }

}