@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html, body {
    min-height: 100%;
}

body {
    -webkit-font-smoothing: antialiased !important;
    font-family: 'Inter',sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #333333;
    background: #ffffff url(img/fundo.jpg) center top no-repeat;
}

body, input, textarea, button {
    font-family: 'Inter',sans-serif;
    line-height: 150%;
}

a {color: #333333;}

.bx-pager{display:none}
.bx-wrapper{margin:0 !important;}
.bx-wrapper img{display:inline}
.bx-wrapper .bx-viewport{box-shadow:none; background:none; border:0px; left:0}
.bxslider{margin:0; padding:0}

header {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

header ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

header ul li {
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

header ul li:before {
    content: " | ";
    color: #ffffff;
}
header ul li:nth-child(1):before {
    content: none;
}
header ul li:hover {
    color: #d3d0d0;
}

.bt {
    display: flex;
    justify-content: center;
    background: #333333;
    padding: 15px 20px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 50px;
    line-height: 100%;
    text-align: center;
    max-width: 200px;
    gap: 5px;
    font-size: 14px;
}

.bt-verde {
    background-color: #0fb325;
}

.bt:hover {
    transition: .2s;
    background-image: linear-gradient(to bottom right, #333333 , #504f4f);
}

.bt-verde:hover {
    transition: .2s;
    background-image: linear-gradient(to bottom right, #0fb325 , #4ee963);
}

section#banner {
    width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

section#banner .col1 {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

section#banner .col1 h1 {
    font-size: 50px;
    line-height: 55px;
    font-weight: 200;
    color: #ffffff;
    text-shadow: 2px 2px 4px #000000;
}

section#banner .col1 p {
    font-size: 20px;
}

section#banner .col2 {
    width: 10%;
    height: 480px;
    /*background: url('img/banner.png') left center no-repeat;*/
}

section#frase {
    width: 100%;
    background-color: #ffffff;
    padding-top: 50px;
}

section#frase > div {
    width: 1250px;
    margin: 0 auto;
    font-size: 28px;
    line-height: 150%;
    text-align: center;
}

section#representacoes {
    width: 1250px;
    margin: 50px auto;
    display: flex;
    gap: 50px;
    flex-direction: column;
    background-color: #ffffff;
}

section#representacoes .texto span {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

section#representacoes .texto span i {
    font-size: 30px;
}

section#representacoes .texto span i:hover {
    color: #504f4f;
}

section#representacoes ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

section#representacoes ul li a {
    width: 150px;
}

section#representacoes ul li img {
    filter: grayscale(0%);
    cursor: pointer;
}

section#representacoes ul li img:hover {
    filter: grayscale(100%);
}

section#representacoes .texto {
    display: none;
}

section#representacoes .fotos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 40px;
    gap: 20px;
}

section#representacoes .fotos img {
    max-width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

section#representacoes .fotos img:hover {
    opacity: 0.8;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
}

.imagem-ampliada {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    display: none;
}

.imagem-ampliada img {
    border-radius: 10px;
    max-width: 100%;
    max-height: 100%;
}

.imagem-ampliada button {
    background-color: #ffffff;
    border: 0;
    padding: 10px;
    position: absolute;
    bottom: 12px;
    right: 4px;
    border-radius: 10px;
    cursor: pointer;
}

.imagem-ampliada button.fechar {
    top: 5px;
    bottom: auto;
    padding: 5px 10px;
}
.imagem-ampliada button.anterior {
    right: 40px;
}

section#sobre {
    width: 1250px;
    margin: 50px auto;
    padding: 50px;
    background-color: #f4f6fa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

section#sobre h1 {
    font-size: 40px;
    font-weight: normal;
}

section#mvv {
    width: 1250px;
    margin: 50px auto;
    display: flex;
    gap: 30px;
}

section#mvv .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    flex: 1;
}

section#mvv i {
    font-size: 50px;
}

section#contato {
    background: url('img/fundo-contato.jpg') center center no-repeat;
    background-size: 100%;
    padding: 50px 0;
}

section#contato > div {
    width: 800px;
    margin: 50px auto;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #ffffff;
    border-radius: 10px;
}

section#contato > div .col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

section#contato > div .col2 p {
    font-weight: 400;
}

section#contato > div span {
    display: flex;
    gap: 10px;
    font-size: 30px;
}

footer {
    width: 1250px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



@media (max-width:770px){
    header, section, footer {
        width: calc(100% - 40px) !important;
        margin: 0 20px;
    }
    section#banner .col1 {
        width:100%;
    }
    section#banner .col2 {
        width: 0;
    }
    section#frase {
        width: 100% !important;
        margin: 0 auto;
    }
    section#frase > div {
        width: calc(100% - 40px) !important;
        margin: 0 20px;
    }
    section#representacoes .fotos {
        grid-template-columns: 1fr 1fr;
    }
    section#mvv {
        flex-direction: column;
    }
    section#contato {
        width: 100% !important;
        margin: 0;
        background-size: auto;
    }
    section#contato > div {
        width: 90%;
        flex-direction: column;
        text-align: center;
    }
    section#contato > div .col {
        align-items: center;
    }
    section#contato > div span {
        justify-content: center;
    }
    footer {
        margin: 15px;
    }
}

@media (min-width:0px) and (max-width:479px){
    section#banner {
        gap: 30px;
    }
    section#banner .col1 {
        width: 100%;
    }
    section#banner .col1 h1 {
        font-size: 37px;
    }
    section#frase > div {
        font-size: 20px;
    }
    section#sobre {
        padding: 25px;
    }
    section#representacoes {
        gap: 30px;
    }
    section#representacoes .fotos {
        grid-template-columns: 1fr;
    }
    section#contato {
        padding: 1px 0;
    }
    footer {
        flex-direction: column;
        text-align: center;
        font-size: 14px;
        gap: 10px;
    }
}


