@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web&display=swap');


:root{
    --vermelho: #8A0C22;
    --cinza: #444444;
    --branco: #fff;
    font-size: 18px;
}

strong{
    font-weight: bold;
}

html{
    overflow-x: hidden !important;
}

body{
    font-family: 'Titillium Web', sans-serif;
    line-height: 1.25;
    overflow-x: hidden !important;
}

.custom-logo-link{
    padding-left: 1rem;
    width: 80%;
}

.custom-logo-link > img{
    width: 100%;
    height: auto;
}

#btn-menu{
    background: url("img/menu.png") center center no-repeat;
    width: 40px;
    height: 91px;
    border: none;
    z-index: 3;
    cursor: pointer;
}

#menu-container{
    display: none;
}

#menu-container .container{
    width: 100%;
}

#menu-container.mostra{
    display: flex;
    flex-flow: column;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 3;
}


footer{
    border-bottom: 10px solid var(--vermelho);
}

header{
    height: 91px;
    background-color: var(--vermelho);
}

.header-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#menu-container{
    background-color: rgba(68, 68, 68, .9);
}

#menu-container ul > li{
    background-color: rgba(138, 12, 34, .9);
    /* font-size: 20px; */
}

#menu-container ul > li a{
    color: var(--branco);
    text-decoration: none;
    display: flex;
    flex-flow: row;
    align-items: center;
}

#menu-container ul > li.cinza{
    background-color: transparent;
}

.botoes{
    display: flex;
    gap: 1rem;
    margin-left: 20px;
}


#menu-home {
    background-color: var(--cinza);
    display: none;
}

#menu-home ul{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

#menu-home ul > li.vermelho{
    background-color: var(--vermelho);
}

#menu-home ul > li > a{
    color: var(--branco);
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

#banner{
    height: calc(100vh - 97px);
    background: #eaeaef;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#banner img{
    height: 100%;
    width: auto;
}

#banner h1{
    font-size: 28px;
}

#banner a{
    font-size: 25px;
    color: var(--cinza);
    text-decoration: none;
}

.desktop{
    display: none;
}

.mobile{
    position: absolute;
    right: 0;
}

#banner > div{
    width: 25%;
    width: 75%;
    z-index: 2;
    position: absolute;
    left: 1rem;
    top: 7rem;
}

.wp-block-pullquote {
    padding: 1em 0 !important;
    margin: 0 !important;
}

.container{
    width: 70%;
    margin: 0 auto;
}

.wp-post-image{
    width: 100%;
    height: auto;
    position: relative;
    left: 10%;
    margin-top: 3rem;
}
/* 
.wp-block-group__inner-container{
    padding-bottom: 1rem;
} */

h1,h2{
    font-size: 35px;
    color: var(--vermelho);
    position: relative;
}

h1::before,
h2::before{
    content: '';
    height: 200%;
    position: absolute;
    background-color: #8A0C22;
    border-left: 5px solid;
    bottom: 0;
    left: -10px;
}

#banner h1::before{
    border-left: none;
}

article{
    color: #444444;
}

.wp-block-pullquote blockquote > p{
    color: var(--vermelho);
    font-size: 25px;
    text-align: left;
}

.wp-block-buttons{
    margin: 1rem 0;
}

.wp-block-button__link{
    background-color: transparent !important;
    border: 2px solid var(--vermelho);
    color: var(--vermelho) !important;
    border-radius: 15px !important;
}

article ul > li{
    font-size: 25px;
    color: var(--vermelho);
    margin-bottom: .5rem;
}

article ul > li::before{
    content: url("img/check.png");
}

.wp-block-column{
    display: flex;
    flex-flow: column;
    gap: 1rem;
}

form{
    display: flex;
    flex-flow: column;
    gap: 1rem;
    width: 100%;
}

form > label{
    display: flex;
    flex-flow: column;
    font-size: 15px;
    color: var(--cinza);
    text-transform: uppercase;
}

form > label > input,
form > label > textarea{
    resize: none;
    border: none;
    border-bottom: 1px solid var(--cinza);
    font-family: 'Titillium Web', sans-serif;
}

form > button,
.aviso{
    background-color: var(--vermelho);
    border: none;
    border-radius: 15px;
    color: var(--branco);
    align-self: center;
    padding: 1rem 2rem;
    font-family: 'Titillium Web', sans-serif;
}

#contato{
    margin: 3rem 0;
}

#contato h1,
#contato h2{
    align-self: flex-start;
}

#contato > .container{
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

#contato > .container > div:first-of-type{
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1rem;
}

.midias{
    display: flex;
    gap: 1rem;
}

@media screen and (min-width:993px) {
    
    .custom-logo-link{
        width: unset;
    }

    #banner{
        height: calc(100vh - 229px);
    }

    #banner h1{
        font-size: 35px;
    }

    .desktop{
        display: block;
    }

    .mobile{
        display: none;
    }

    #menu-home {
        background-color: var(--cinza);
        display: block;
    }

    #banner > div{
        width: 25%;
        position: unset;
    }

    #banner > div > a > br{ 
        display: none;
    }

    .container{
        width: 60%;
        margin: 0 auto;
    }

    .wp-post-image{
        width: 80%;
        margin-bottom: 3rem;
    }

    #contato > .container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    #menu-container ul{
        display: grid;
        grid-template-columns: repeat(6, 1fr);
    }

    #menu-container ul > li {
        background-color: rgba(138, 12, 34, .9);
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 1rem 0;
    }

    #menu-container ul > li a {
        color: var(--branco);
        text-decoration: none;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #menu-container .container{
        width: 60%;
    }
    
}