#secaoQuemSomos {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    background: var(--corCinza);
    box-sizing: border-box;
    animation: animarFundoQuemSomos 6s ease-in-out infinite;
}


/* ANIMAÇÃO DO FUNDO  */

@keyframes animarFundoQuemSomos {
    0% {
        background-color: var(--corCinza);
    }
    50% {
        background-color: color-mix( in srgb, var(--azulEscuro) 20%, transparent);
    }
    100% {
        background-color: var(--corCinza);
    }
}

.conteudoQuemSomos {
    width: min(100%, 100%);
    min-height: 500px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    box-sizing: border-box;
}

.textoQuemSomos {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 0 0 80px;
    max-width: 700px;
    z-index: 5;
}

.textoQuemSomos h1 {
    font-size: 35pt;
    color: var(--azulEscuro);
    margin: 0 0 2px 0;
}

.linhaTitulo {
    width: 120px;
    height: 7px;
    margin-left: 35px;
    margin-bottom: 30px;
    background: var(--laranjaForte);
}

.textoQuemSomos p {
    font-size: 14pt;
    line-height: 1.5;
    color: var(--azulEscuro);
    margin: 0;
}

.imagemQuemSomos {
    flex: 1 1 0;
    width: auto;
    height: 500px;
    min-width: 0;
    position: relative;
    overflow: hidden;
    /* clip-path: polygon( 37% 0%, 100% 0%, 100% 100%, 0% 100%); */
    border-radius: 8px;
}

.imagemQuemSomos img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sobreposicaoImagem {
    position: absolute;
    inset: 0;
    /* background: linear-gradient( to top, rgba(18, 43, 92, .88), rgba(18, 43, 92, .18)); */
}

.SessãoInformações {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
}

.SessãoInformações h2 {
    font-size: 47pt;
    color: var(--azulEscuro);
    margin-bottom: 60px;
    font-weight: 700;
}

.ListaContactos {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.CartãoContacto {
    width: 430px;
    background: var(--corBranca);
    border-radius: 15px;
    padding: 10px 10px 8px;
    position: relative;
    box-shadow: 0 0px 18px rgba(0, 0, 0, 0.192);
    transition: .35s;
    cursor: pointer;
    border: 3px solid transparent;
}

.CartãoContacto:hover {
    transform: translateY(-6px);
    border-color: var(--azulClaro);
}

.ÍconeContacto {
    position: absolute;
    left: 50%;
    top: -60px;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    transition: .55s;
    background: var(--corBranca);
    border: 2px solid var(--azulEscuro);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ÍconeContacto:hover {
    position: absolute;
    left: 50%;
    top: -60px;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--azulClaro);
    border: 2px solid var(--azulEscuro);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ÍconeContacto img {
    width: 65px;
    height: 65px;
}

.CartãoContacto h3 {
    color: var(--azulEscuro);
    font-size: 22pt;
    margin: 35px 0 auto;
}

.CartãoContacto p {
    color: var(--azulEscuro);
    font-size: 18pt;
    font-weight: 500;
}

.SessãoContactos {
    width: 100%;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
}

.CaixaMensagem {
    width: 100%;
    max-width: 1350px;
    background: linear-gradient(175deg, var(--azulClaro), var(--azulEscuro), var(--azulEscuro));
    border-radius: 18px;
    padding: 25px 48px;
    color: var(--corBranca);
    box-shadow: 0 10px 60px rgba(0, 0, 0, .18);
}

.CabeçalhoMensagem h2 {
    font-size: 47pt;
    font-weight: 700;
    line-height: 0.8;
}

.LinhaTitulo {
    width: 50%;
    height: 1px;
    background: var(--corBranca);
    margin: 18px 0;
}

.CabeçalhoMensagem p {
    width: 70%;
    font-size: 14pt;
    margin-bottom: 15px;
}

.LinhaCampos {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.GrupoCampo {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.GrupoCampo label {
    font-size: 20px;
    margin-bottom: 0;
    margin-left: 4px;
}

.GrupoCampo input,
.GrupoCampo textarea {
    width: 100%;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 8px;
    background: transparent;
    color: var(--corBranca);
    font-size: 12pt;
    outline: none;
    transition: .3s;
}

.GrupoCampo input::placeholder,
.GrupoCampo textarea::placeholder {
    color: rgba(255, 255, 255, .65);
    font-size: 10pt;
}

.GrupoCampo input:focus,
.GrupoCampo textarea:focus {
    border-color: var(--azulClaro);
    box-shadow: 0 0 8px rgba(79, 195, 255, .5);
}

.LinhaAssunto {
    width: 40%;
    margin-bottom: 15px;
}

.GrupoAssunto {
    width: 100%;
}

.LinhaMensagem {
    margin-bottom: 20px;
}

.GrupoCampo textarea {
    resize: none;
    min-height: 80px;
    max-height: 100px;
}

.BotãoEnviar {
    background: var(--azulClaro);
    color: var(--corBranca);
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12pt;
    cursor: pointer;
    transition: .3s;
}

.BotãoEnviar:hover {
    background: #0e9ae8;
    transform: translateY(-2px);
}

.SessãoSede {
    width: 100%;
    padding: 30px 20px;
    background: var(--corBranca);
}

.ConteúdoSede {
    width: 100%;
    margin: auto;
    text-align: center;
}

.ConteúdoSede h2 {
    font-size: 47pt;
    color: var(--azulEscuro);
    font-weight: 700;
    margin-bottom: 15px;
}

.ConteúdoSede p {
    max-width: 1160px;
    margin: auto;
    color: var(--azulEscuro);
    font-size: 18pt;
    line-height: 1.6;
    margin-bottom: 35px;
}

.CaixaMapa {
    width: 100%;
    height: 510px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.CaixaMapa iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media(max-width:900px) {
    #secaoQuemSomos {
        width: 100%;
        padding: 35px 0 0 0;
        overflow: hidden;
        box-sizing: border-box;
    }
    .conteudoQuemSomos {
        width: 100%;
        min-height: auto;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
    }
    .textoQuemSomos {
        width: 100%;
        max-width: none;
        flex: none;
        padding: 0 25px 20px 25px;
        box-sizing: border-box;
        z-index: 5;
    }
    .textoQuemSomos h1 {
        font-size: 38pt;
        line-height: 1.15;
        margin: 0 0 12px 0;
        color: var(--azulEscuro);
    }
    .linhaTitulo {
        width: 75px;
        height: 12px;
        margin: 0 0 18px 5px;
        background: var(--laranjaForte);
        border-radius: 0;
    }
    .textoQuemSomos p {
        width: 100%;
        font-size: 22pt;
        line-height: 1.42;
        margin: 0;
        color: var(--azulEscuro);
        text-align: left;
    }
    .imagemQuemSomos {
        position: relative;
        width: 100%;
        height: 465px;
        flex: none;
        margin: 0;
        overflow: hidden;
        border-radius: 0;
        clip-path: polygon( 0 100%, 1% 0, 100% 1%, 100% 100%, 0 100%);
    }
    .imagemQuemSomos img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        left: -20%;
        object-position: right;
    }
    .sobreposicaoImagem {
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(18, 43, 92, 0) 40%, rgba(18, 43, 92, .35) 65%, rgba(18, 43, 92, .88) 100%);
    }
    .GrupoCampo input,
    .GrupoCampo textarea {
        padding: 12px;
        font-size: 15pt;
    }
    .GrupoCampo input::placeholder,
    .GrupoCampo textarea::placeholder {
        color: rgba(255, 255, 255, .65);
        font-size: 14pt;
    }
    .LinhaCampos {
        flex-direction: column;
    }
    .LinhaAssunto {
        width: 100%;
    }
    .CabeçalhoMensagem p {
        width: 100%;
    }
    .CabeçalhoMensagem h2 {
        font-size: 36pt;
    }
    .ListaContactos {
        flex-direction: column;
        align-items: center;
    }
    .SessãoInformações h2 {
        font-size: 40px;
    }
    .CartãoContacto {
        width: 100%;
        margin: 45px 0;
        padding: 40px 0 20px 0;
    }
    .CartãoContacto:nth-child(3) {
        width: 100%;
        margin-bottom: 0;
    }
    .ÍconeContacto {
        position: absolute;
        left: 50%;
        top: -80px;
        transform: translateX(-50%);
        width: 140px;
        height: 140px;
        border: 2px solid var(--azulEscuro);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .ÍconeContacto:hover {
        position: absolute;
        left: 50%;
        top: -80px;
        transform: translateX(-50%);
        width: 140px;
        height: 140px;
        border: 2px solid var(--azulEscuro);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .ÍconeContacto img {
        width: 82px;
        height: 82px;
    }
    .CartãoContacto h3 {
        color: var(--azulEscuro);
        font-size: 28pt;
        margin: 35px 0 auto;
    }
    .CartãoContacto p {
        color: var(--azulEscuro);
        font-size: 20pt;
        font-weight: 500;
    }
    .CaixaMensagem {
        padding: 35px;
    }
    .CabeçalhoMensagem h2 {
        font-size: 32pt;
    }
    .CabeçalhoMensagem p {
        font-size: 26px;
    }
    .GrupoCampo label {
        font-size: 32px;
    }
    .BotãoEnviar {
        padding: 6px 15px;
        font-size: 18pt;
    }
    .BotãoEnviar:hover {
        background: #0e9ae8;
        transform: translateY(-2px);
    }
    .ConteúdoSede h2 {
        font-size: 45pt;
        color: var(--azulEscuro);
        font-weight: 700;
        margin-bottom: 8px;
    }
    .ConteúdoSede p {
        font-size: 18pt;
    }
}

@media(max-width:700px) {
    #secaoQuemSomos {
        width: 100%;
        padding: 35px 0 0 0;
        overflow: hidden;
        box-sizing: border-box;
    }
    .conteudoQuemSomos {
        width: 100%;
        min-height: auto;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
    }
    .textoQuemSomos {
        width: 100%;
        max-width: none;
        flex: none;
        padding: 0 25px 20px 25px;
        box-sizing: border-box;
        z-index: 5;
    }
    .textoQuemSomos h1 {
        font-size: 32px;
        line-height: 1.15;
        margin: 0 0 12px 0;
        color: var(--azulEscuro);
    }
    .linhaTitulo {
        width: 75px;
        height: 12px;
        margin: 0 0 18px 5px;
        background: var(--laranjaForte);
        border-radius: 0;
    }
    .textoQuemSomos p {
        width: 100%;
        font-size: 13pt;
        line-height: 1.42;
        margin: 0;
        color: var(--azulEscuro);
        text-align: left;
    }
    .imagemQuemSomos {
        position: relative;
        width: 100%;
        height: 465px;
        flex: none;
        margin: 0;
        overflow: hidden;
        border-radius: 0;
        clip-path: polygon( 0 20%, 88% 0, 100% 8%, 100% 100%, 0 100%);
    }
    .imagemQuemSomos img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: right;
    }
    .sobreposicaoImagem {
        position: absolute;
        inset: 0;
        background: none;
    }
    .GrupoCampo input,
    .GrupoCampo textarea {
        padding: 7px;
        font-size: 12pt;
    }
    .GrupoCampo input::placeholder,
    .GrupoCampo textarea::placeholder {
        color: rgba(255, 255, 255, .65);
        font-size: 10pt;
    }
    .CaixaMensagem {
        padding: 25px;
    }
    .CabeçalhoMensagem h2 {
        font-size: 22pt;
    }
    .CabeçalhoMensagem p {
        font-size: 16px;
    }
    .GrupoCampo label {
        font-size: 18px;
    }
    .SessãoInformações h2 {
        font-size: 22pt;
    }
    .CartãoContacto {
        width: 100%;
        margin: 35px 0;
        padding: 10px 0 20px 0;
    }
    .CartãoContacto:nth-child(3) {
        width: 100%;
        margin-bottom: 0;
    }
    .ÍconeContacto {
        position: absolute;
        left: 50%;
        top: -55px;
        transform: translateX(-50%);
        width: 90px;
        height: 90px;
        border: 2px solid var(--azulEscuro);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .ÍconeContacto:hover {
        position: absolute;
        left: 50%;
        top: -55px;
        transform: translateX(-50%);
        width: 90px;
        height: 90px;
        border: 2px solid var(--azulEscuro);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .ÍconeContacto img {
        width: 55px;
        height: 55px;
    }
    .CartãoContacto h3 {
        color: var(--azulEscuro);
        font-size: 18pt;
        margin: 35px 0 auto;
    }
    .CartãoContacto p {
        color: var(--azulEscuro);
        font-size: 15pt;
        font-weight: 500;
    }
    .ConteúdoSede h2 {
        font-size: 22pt;
        color: var(--azulEscuro);
        font-weight: 600;
        margin-bottom: 0;
    }
    .ConteúdoSede p {
        font-size: 14pt;
    }
    .BotãoEnviar {
        background: var(--azulClaro);
        color: var(--corBranca);
        border: none;
        padding: 6px 10px;
        border-radius: 8px;
        font-size: 12pt;
        cursor: pointer;
        transition: .3s;
    }
    .BotãoEnviar:hover {
        background: #0e9ae8;
        transform: translateY(-2px);
    }
}

@media (max-width: 390px) {
    #secaoQuemSomos {
        padding-top: 30px;
    }
    .textoQuemSomos {
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 15px;
    }
    .textoQuemSomos h1 {
        font-size: 31px;
    }
    .textoQuemSomos p {
        font-size: 15.5px;
        line-height: 1.4;
    }
    .linhaTitulo {
        width: 72px;
        height: 6px;
        margin-left: 5px;
        margin-bottom: 17px;
    }
    .imagemQuemSomos {
        height: 465px;
        clip-path: polygon( 0 17%, 88% 0, 100% 9%, 100% 100%, 0 100%);
    }
}