*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --amarelocastelo: #E5C72F;
    --visitascastelo: #A895A7;
    --vermelhocastelo: #ED522F;
    --verdecastelo: #1f7a60;
    --azulcastelo: #015072;
    --pretocastelo: #040404;
    --onhover: #5a5a5a;
}

body,
html {
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    min-height: 100%;
}

/* Titulo Página Padrão */

.titulo-pagina {
    text-align: left;
    font-size: 5vw;
    color: #ffffff;
    font-family: 'lucida_grande_black', sans-serif;
    line-height: 95%;
    position: absolute;
    margin-top: -27%;
    white-space: nowrap;
}

/* Titulo Página Padrão */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    /* cor do fundo  - branco */
    z-index: 999999;
    /* ficar sempre no top dos layers  */
}

#carregador {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    /* centers the loading animation horizontally one the screen */
    top: 50%;
    /* centers the loading animation vertically one the screen */
    background-image: url(../images/loader.gif);
    /* path to your loading animation */
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
    /* is width and height divided by two */
}

.homebanner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100vh;
    z-index: -1;
    top: 0;
    display: flex;
}

.homebanner .innerhome {
    display: flex;
    flex-direction: column;
    width: 33.3%;
    justify-content: end;
    -webkit-justify-content: flex-end;
}

.homebanner .innermobile {
    display: none;
}

.innerhome .menu {
    color: #FFFFFF;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 70px;
    transition: background-color 0.5s ease-out;
    overflow: hidden;
}

.innerhome .menu h1 {
    font-size: 4.3vw;
    white-space: nowrap;
    margin: 15px;
    font-family: 'lucida_grande_light', sans-serif;
    font-weight: bold;
    letter-spacing: 2.4px;
}

.innerhome .menu p {
    font-size: 16px;
    margin: 0 15px;
}

.innerhome .menu .linkme {
    display: flex;
    align-items: center;
    margin: 0 15px 25px;
    overflow: hidden;
    padding-left: 0;
    transition: padding-left 0.5s ease-out;
}

.innerhome .menu img {
    filter: invert(93%) sepia(100%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
}

.innerhome .menu a {
    font-family: 'lucida_grande_light', sans-serif;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.innerhome .menu span {
    font-size: 18px;
    font-weight: 600;
    margin: 0 15px;
}

.innerhome .menu:hover,
.innerhome .menu:hover a,
.innerhome .menu:hover img {
    color: #000000;
    filter: unset;
    text-decoration: none;
}

.linkme:hover {
    padding-left: 50px !important;
}

.hvr-sweep-to-top {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-sweep-to-top:before {
    content: url('../images/over_menu.svg');
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: #2098D1;*/
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-sweep-to-top:hover,
.hvr-sweep-to-top:focus,
.hvr-sweep-to-top:active {
    color: white;
}

.hvr-sweep-to-top:hover:before,
.hvr-sweep-to-top:focus:before,
.hvr-sweep-to-top:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.hvr-sweep-to-topper {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-sweep-to-topper:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 280px;
    left: 0;
    right: 0;
    bottom: -25px;
    background: #ED522F;
    opacity: 0.6;
    -webkit-transform: scaleY(0);
    transform: skewY(-8deg) scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-sweep-to-topper:hover,
.hvr-sweep-to-top:focus,
.hvr-sweep-to-top:active {
    color: white;
}

.hvr-sweep-to-topper:hover:before,
.hvr-sweep-to-top:focus:before,
.hvr-sweep-to-top:active:before {
    -webkit-transform: skewY(-8deg) scaleY(1);
    transform: skewY(-8deg) scaleY(1);
}

/* Sweep To Right */
.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -40px;
    right: 30%;
    bottom: 0;
    -webkit-transform: skewX(10deg) scaleX(0);
    transform: skewX(10deg) scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: white;
}

.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
    -webkit-transform: skewX(10deg) scaleX(1);
    transform: skewX(10deg) scaleX(1);
}







.divmenu {
    display: table;
    width: 100%;
    position: absolute;
}


.castelo01 {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 0 10px;
    border-width: 0 2px 2px 2px;
    border-style: solid;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.titulopaginas {
    margin: 10px auto;
    line-height: 40px;
    flex: 1;
    font-family: 'lucida_grande_black', sans-serif;
    font-size: 42px;
}

.subtitulopaginas {
    margin: 30px auto 15px;
    line-height: 40px;
    flex: 1;
    font-family: 'lucida_grande_light', sans-serif;
    font-size: 36px;
}

.container__diagonal {
    left: 0px;
    position: absolute;
    bottom: -50px;
    height: 300px;
    width: 60%;
    transform: skewY(-5deg);
    z-index: -1;
}

.titulotriangulo {
    font-size: 6vw;
    font-family: 'lucida_grande_black', sans-serif;
    line-height: 250px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    width: 60%;
    height: 250px;
}

.leiatambem_web {
    display: flex;
    background-color: transparent;
    flex-direction: column;
    margin: 30px auto;
    max-width: 80%;
    font-family: 'lucida_grande_black', sans-serif;
}

.leiatambem_mobile {
    display: none;
}

.leitura {
    font-family: 'lucida_grande_light', sans-serif;
    font-weight: bold;
    width: 100%;
    font-size: 22px;
    line-height: 26px;
    color: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto;
}

.leitura a {
    color: #ffffff;
    text-decoration: none;
    margin: 0px 30px 30px 0;
    min-width: 250px;
    max-width: 290px;
    height: 80px;
}

.leitura a:hover {
    color: var(--amarelocastelo);
    text-decoration: none;
}

.divme {
    display: none;
}

.divmeweb {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.div2 {
    margin-top: 6%;
}

.rodapeweb {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #3c3c3c;
    color: #ffffff;
    position: absolute;
    top: 100%;
}

.rodape {
    display: none;
}

.rodapelink {
    color: #ffffff;
    text-decoration: none;
    padding: 7px 15px;
    font-family: 'lucida_granderegular', sans-serif;
}

.setalinksvg {
    width: 30px;
    height: auto;
    filter: invert(88%) sepia(89%) saturate(3%) hue-rotate(268deg) brightness(111%) contrast(97%);
    /*filter: invert(79%) sepia(85%) saturate(446%) hue-rotate(348deg) brightness(94%) contrast(90%);*/
}

.rodapelink:hover {
    color: var(--amarelocastelo);
}

.parsley-required {
    list-style: none;
    color: var(--amarelocastelo);
}

.parsley-type {
    list-style: none;
    color: var(--amarelocastelo);
}

@media only screen and (max-width: 768px) {
    .divmenu {
        position: relative;
    }

    .homebanner {
        flex-direction: column;
        background-image: none !important;
        height: unset;
    }

    .homebanner .innerhome {
        display: none;
    }

    .homebanner .innermobile {
        display: flex;
        width: 100%;
        height: 280px;
        align-items: end;
        -webkit-align-items: flex-end;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .divmeweb {
        display: none;
    }

    .divme {
        width: 100%;
        height: auto;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        display: flex;
        align-items: end;
    }

    .titulopaginas {
        width: 90%;
        font-size: 22px;
        line-height: 110%;
    }

    .innermobile h1 {
        font-size: 38px;
        margin: 10px 15px 0;
        color: #ffffff;
        line-height: 40px;
        font-family: 'lucida_grande_light', sans-serif;
        font-weight: bold;
    }

    .innermobile p {
        font-size: 15px;
        margin: 0 15px;
        color: #ffffff;
    }

    .innermobile button {
        padding: 10px 12px;
        background-color: var(--amarelocastelo);
        font-weight: 600;
        cursor: pointer;
        border: none;
        margin: 0;
        outline: none;
    }

    .container__diagonal {
        height: 140px;
        width: 100%;
    }

    .titulotriangulo {
        font-size: 8vw;
        line-height: 90%;
        text-align: left;
        margin: 0 35px;
        height: 40px;
    }

    .leiatambem_web {
        display: none;
    }

    .leiatambem_mobile {
        display: block;
        padding: 15px 0;
        margin-top: 30px;
    }

    .rodapeweb {
        display: none;
    }

    .rodape {
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: #3c3c3c;
        color: #ffffff;
        position: absolute;
        top: 900px;
    }

    .rodapelink {
        padding: 0 15px 10px;
    }
}

@media only screen and (max-width: 450px) {

    .innermobile h1 {
        font-size: 30px;
    }
}


/* Css Changes */

.site .imgl-theme-light .imgl-tooltips .imgl-tooltip-form{
    width: 300px;
}
#wpbody-content .entry-content .wp-block-gallery .wp-block-image a:after{
    content: '';
    position: absolute;
    width: 100%; height:100%;
    top:0; left:0;
    background:rgba(0,0,0,0.6);
    opacity: 0.5;
    transition: all 1s;
    -webkit-transition: all 1s;
}
#wpbody-content .entry-content .wp-block-gallery .wp-block-image:hover a:after{
    opacity: 0;
}

#wpbody-content .entry-content .galeria-personagens .wp-block-gallery .wp-block-image a:after{
    content: '';
    position: absolute;
    width: 100%; height:100%;
    top:0; left:0;
    background:rgba(0,0,0,0.6);
    opacity: 0.5;
    transition: all 1s;
    -webkit-transition: all 1s;
}
#wpbody-content .entry-content .galeria-personagens .wp-block-gallery .wp-block-image:hover a:after{
    opacity: 0;
}
