body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 1. Banner */
.banner-topo {
    height: 340px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .banner-topo {
        height: 180px;
    }
}


/* 2. Sobre */
.sobre {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .sobre {
        padding: 40px 16px;
    }

    .titulo p {
        text-align: justify;
        text-justify: inter-word;
        line-height: 1.6;
        font-size: 15px;
    }
}

.titulo {
    font-weight: 800;
    font-size: 14.0pt;
    color: rgba(6, 37, 57, 1);
}

.sobre .titulo {
    text-align: center;
    margin-bottom: 20px;
}

.sobre p {
    text-align: justify;
    margin: 0 auto;
}


/* Expocine */
.expocine {
    position: relative;
    color: #fff;
}

.expocine::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.expocine .container {
    position: relative;
    z-index: 2;
}

.expocine .logo {
    flex: 0 0 35%;
}

.expocine .texto {
    flex: 0 0 65%;
}

.expocine .flex {
    gap: 20px;
}

/* Expocine mobile */
@media (max-width: 768px) {

    .expocine .container.flex {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }

    .expocine .col.logo img {
        max-width: 180px;
        height: auto;
    }

    .expocine .col.texto {
        max-width: 100%;
    }

    .expocine .col.texto p {
        text-align: justify;
        font-size: 14px;
        line-height: 1.6;
    }

    .expocine .titulo-site {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .expocine .btn-wrapper {
        margin-top: 15px;
        text-align: center;
    }

    .expocine .btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}



/* Blocos padrão */
.bloco {
    color: #fff;
    background-size: cover;
    background-position: center;
    padding: 40px 0;
}

.titulo-site {
    font-size: 34.0pt;
    font-weight: 800;
    font-style: normal;
    font-variant: normal;
    line-height: 1.38;
    text-align: left;
    text-indent: 0.0pt;
}


/* Sites */
.sites .logo {
    flex: 0 0 35%;
}

.sites .texto {
    flex: 0 0 65%;
}

.sites .flex {
    gap: 20px;
}

/* Sites Mobile */
@media (max-width: 768px) {

    .sites .container.flex {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }

    .sites .col.logo img {
        max-width: 180px;
        height: auto;
    }

    .sites .col.texto {
        max-width: 100%;
    }

    .sites .col.texto p {
        text-align: justify;
        font-size: 14px;
        line-height: 1.6;
    }

    .sites .titulo-site {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .sites .btn-wrapper {
        margin-top: 15px;
        text-align: center;
    }

    .sites .btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}

.flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.col {
    flex: 1;
}

.logo img {
    max-width: 100%;
}

.texto h2 {
    margin-bottom: 15px;
}

.texto p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-wrapper {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    width: auto;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}


/* 6. Contato */

.titulo-contato {
    font-size: 22.0pt;
    font-weight: 800;
    font-style: normal;
    font-variant: normal;
    line-height: 1.38;
    text-align: left;
    text-indent: 0.0pt;
    padding: 20px 0;
}

.texto-contato {
    font-size: 16.0pt;
    font-style: normal;
    font-variant: normal;
    line-height: 1.38;
    text-align: left;
    text-indent: 0.0pt;
}

.texto-contato a {
    color: #000;
}

.texto-contato a:hover {
    color: #000;
}

.contato .mapa iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* Contato Mobile */

@media (max-width: 768px) {

    .contato .container.flex {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .contato .col.texto {
        text-align: center;
    }

    .contato .titulo-contato {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .contato .texto-contato {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .contato .texto-contato a {
        word-break: break-word;
    }

    .contato .col.mapa iframe {
        width: 100%;
        height: 250px;
        border-radius: 8px;
    }
}


/* 7. Rodapé */
.rodape {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.rodape img {
    max-width: 150px;
    margin-bottom: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
    .flex {
        flex-direction: column;
        text-align: center;
    }
}