/* Título da seção */
.title-second {
    font-family: "Marcellus SC", serif;
    margin: 20px 0 40px;
    font-size: 40px;
    text-align: center;
    color: #2B4739;
    opacity: 0.5;
    text-shadow: none;
    padding: 0;
}

/* Seção "Sobre" */
.sobre-nos {
    padding: 30px 60px 80px;
}

#text-sobre {
    max-width: 1000px;
    margin: 40px auto 20px;
    padding: 0 20px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;
    font-family: "Marcellus SC", serif;
    font-size: 17px;
    font-weight: 300;
    color: #2b4739;
}

#text-sobre .paragraph-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#text-sobre .p {
    margin: 0;
}

/* Subtexto extra */
p.-second {
    font-family: "Roboto", sans-serif;
    text-align: center;
    font-size: 18px;
}

/* Mapa / Localização */

article.map {
    padding: 40px 20px;
    background: linear-gradient(to right, #f9f9f9, #eef1ec);
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    margin: 60px auto;
    max-width: 1100px;
}

article.map iframe {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    height: 500px;
    border: none;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

article.map iframe:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}