@import url('https://fonts.cdnfonts.com/css/futura-std-4');

body {
    font-family: 'Futura Std', sans-serif;
    margin: 0;
    padding: 0;
    color-scheme: light;
    background: #fff;
    color: #000;
}

.institucional {
    padding: 80px;
    min-height: 80dvh;
    position: relative;
    background-color: transparent;
    align-content: center;
}

.institucional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/banner-fale-conosco.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    opacity: 0.2;
    z-index: -1;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
}

.qr-code-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    justify-content: center;
}

.qr-code-caption {
    margin-top: 10px;
    font-size: 26px;
    color: #002060;
    text-align: center;
    font-weight: bold;
}


.qr-code-section img {
    max-height: 375px;
}

.institucional-info {
    max-width: 50%;
    text-align: left;
    color: #002060;
}

.institucional-info h2 {
    font-size: 28px;
    font-weight: bold;
    color: #002060;
    margin-bottom: 15px;
}

.institucional-info p {
    font-size: 18px;
    line-height: 1.6;
    color: #002060;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .institucional {
        padding: 20px;
    }

    .qr-code-section {
        margin-bottom: 20px;
        width: 80%;
    }

    .qr-code-section img {
        max-height: 300px;
    }

    .institucional-info {
        max-width: 100%;
    }
}

@media (max-width: 410px) {
    .qr-code-section img {
        max-height: 250px;
    }
}