<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.meio2 {
    background: url('/pic/fundo_meio2_1980.png') no-repeat center center;
    background-size: cover;
    padding: 40px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.meio2 .corner {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meio2 .middle {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
}

.meio2 .middle .left {
    flex: 1;
    text-align: center;
    color: white;
}

.meio2 .middle .left .title {
    color: white;
    text-shadow: 2px 2px 4px #000000;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.meio2 .middle .left .title .highlight {
    color: yellow;
}

.meio2 .middle .left .rectangle {
    background-color: #001f54;
    padding: 20px;
    border-radius: 15px;
    margin: 10px 0;
    font-size: 20px;
    font-weight: bold;
    color: yellow;
    text-shadow: 1px 1px 2px #000000;
}

.meio2 .middle .left .rectangle p {
    margin: 10px 0 0 0;
    font-size: 16px;
    font-weight: normal;
    color: white;
}

.meio2 .middle .right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meio2 .middle .right img {
    max-width: 100%;
    height: auto;
}

/* Media Query para resoluÃ§Ã£o maior que 1240px */
@media (min-width: 1240px) {
    .meio2 .middle {
        width: 80%;
    }

    .meio2 .middle .left .title {
        font-size: 72px;
    }

    .meio2 .middle .left .rectangle {
        font-size: 40px;
    }

    .meio2 .middle .left .rectangle p {
        font-size: 32px;
    }
}

/* Media Query para resoluÃ§Ã£o menor que 1240px */
@media (max-width: 1239px) {
    .meio2 {
        padding: 20px;
    }

    .meio2 .middle {
        flex-direction: column;
        width: 100%;
    }

    .meio2 .middle .left {
        width: 100%;
    }

    .meio2 .middle .right {
        width: 100%;
        margin-top: 20px;
    }

    .meio2 .middle .right img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 500px) {
    .meio2 {
        align-items: center;
        justify-content: center;
        background: url('/pic/meio2_fundo_3000.png') no-repeat center center;
        background-size: cover;
        height: auto;
    }

}

</pre></body></html>