/******************************************************************
Theme Name: ArteDigital
Theme URI: https://www.artedigital.rio/
Author: Gabriel Cosant
Author URI: https://www.gabrielcosant.com/
Version: 4.0
******************************************************************/

:root {
    --principal: #15AE8A;
    --text: #7B7B7B;
    --sub-title: #494949;
    --text-family: "Inter", sans-serif, Arial;
    --gpd-sm: 640px;
    --gpd-md: 768px;
    --gpd-lg: 1024px;
    --gpd-xl: 1280px;
    --gpd-2xl: 1536px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html,
body,
figure,
fieldset,
legend,
textarea,
pre,
iframe {
    outline: none;
    margin: 0;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s
}

ul {
    list-style: none;
}

button,
input,
select {
    margin: 0;
}

img,
video {
    max-width: 100%;
    height: auto;
}

iframe {
    border: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/* END RESET */



/* GRID */
.container {
    max-width: 95rem;
    padding: 0 15px;
}

.ml-auto,
.mx-auto {
    margin-left: auto;
}

.mr-auto,
.mx-auto {
    margin-right: auto;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

@media(max-width: 1024px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }
}

/* END GRID */



/* LINKS */
a {
    color: var(--text);
}

a,
a:visited,
a:focus {
    outline: none;
    text-decoration: none
}

a:hover,
a:focus,
a:visited:hover,
a:visited:focus {
    text-decoration: underline
}

a:link,
a:visited:link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, .3)
}

/* END LINKS */


/* GENERAL */
html,
body {
    font-family: var(--text-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    font-display: optional;
    scroll-behavior: smooth;

    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0;
}

.space {
    padding-top: 80px
}

/* END GENERAL */



/* HEADER */
header {
    width: 100%;
    height: auto;
    color: var(--text);
    padding: 20px 50px;
    position: relative;
    z-index: 9999;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    -webkit-transition: ease all 0.7s;
    -moz-transition: ease all 0.7s;
    -ms-transition: ease all 0.7s;
    -o-transition: ease all 0.7s;
    transition: ease all 0.7s;
}

@media(max-width: 1024px) {
    header {
        padding: 20px 20px;
        justify-content: center
    }
}

header.fixed {
    background: rgba(var(--gpd-main-bg-rgb), 0.9);
    border-bottom: 1px solid var(--gpd-neutral-800);
}

header .logo {
    display: flex;
    align-items: center
}

header .logo a {
    background-image: url('library/images/logo.svg');
    background-repeat: no-repeat;
    width: 110px;
    height: 80px;
    background-position: 0 center;
    background-size: auto;
    text-indent: -9999px;
    display: block
}

header .top-menu {
    width: 100%;
}

@media(max-width: 1024px) {
    header .top-menu {
        display: none;
    }
}

header .search-form {
    width: 40%;
    padding-right: 20px;
    position: relative;
}

/* END HEADER */



/* NAV */
nav.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0 0 30px;
}

nav.navbar ul.navbar-nav {
    display: flex;
    align-items: center;
}

nav.navbar ul.navbar-nav li.menu-item {
    display: inline-block;
    margin: 0 1.1rem;
    position: relative;
}

nav.navbar ul.navbar-nav li.menu-item:last-child {
    margin: 0;
}

nav.navbar ul.navbar-nav li.menu-item ul.sub-menu {
    display: none;
    width: max-content;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
}

@media(max-width: 1024px) {
    nav.navbar ul.navbar-nav li.menu-item {
        text-align: center;
    }

    nav.navbar ul.navbar-nav li.menu-item ul.sub-menu {
        display: block;
        position: unset;
        box-shadow: none;
    }
}

nav.navbar ul.navbar-nav li.menu-item ul.sub-menu li.menu-item {
    display: block;
    text-align: left;
    margin: 0;
    margin-bottom: 10px;
}

nav.navbar ul.navbar-nav li.menu-item ul.sub-menu li.menu-item:last-child {
    margin-bottom: 0;
}

@media(max-width: 1024px) {
    nav.navbar ul.navbar-nav li.menu-item ul.sub-menu li.menu-item {
        text-align: center;
    }
}

nav.navbar ul.navbar-nav li.menu-item a {
    font-family: var(--text-family);
    font-size: 17px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text);
    padding: 0;
    border-bottom: 1px solid transparent;
}

@media(max-width: 1024px) {
    nav.navbar ul.navbar-nav li.menu-item ul.sub-menu li.menu-item a {
        font-size: 15px;
    }
}


nav.navbar ul.navbar-nav li.menu-item a:hover,
nav.navbar ul.navbar-nav li.menu-item a:focus {
    color: var(--principal);
    text-decoration: none;
    border-color: var(--principal);
    -webkit-transition: ease all 0.7s;
    -moz-transition: ease all 0.7s;
    -ms-transition: ease all 0.7s;
    -o-transition: ease all 0.7s;
    transition: ease all 0.7s;
}

nav.navbar ul.navbar-nav li.menu-item:hover ul.sub-menu,
nav.navbar ul.navbar-nav li.menu-item:focus ul.sub-menu {
    display: block;
}

nav.navbar ul.navbar-nav li.menu-item.current-menu-item a {
    color: var(--principal);
    font-weight: 600;
}

nav.navbar ul.navbar-nav li.menu-item.btn a,
a.btn {
    background: var(--principal);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    color: #fff;
    text-transform: uppercase;
    padding: 15px 20px;
    border-radius: 8px;
    display: inline-block;
    -webkit-transition: ease all 0.7s;
    -moz-transition: ease all 0.7s;
    -ms-transition: ease all 0.7s;
    -o-transition: ease all 0.7s;
    transition: ease all 0.7s;
    text-decoration: none;
}

nav.navbar ul.navbar-nav li.menu-item.btn a {
    font-size: 14px;
    margin-left: 10px;
}

nav.navbar ul.navbar-nav li.menu-item.btn a:hover,
nav.navbar ul.navbar-nav li.menu-item.btn a:focus,
a.btn:hover,
a.btn:hover:focus,
section.entry-content .form-contato .nf-form-content input[type=submit]:hover,
section.entry-content .form-contato .nf-form-content input[type=submit]:focus {
    background: #1BC79E;
    -webkit-transition: ease all 0.7s;
    -moz-transition: ease all 0.7s;
    -ms-transition: ease all 0.7s;
    -o-transition: ease all 0.7s;
    transition: ease all 0.7s;
}

/* END NAV */



/* SEARCH FORM */
.search-form i.gpd-search {
    position: absolute;
    z-index: 999;
    top: 10px;
    left: 5px;
    color: var(--text)
}

.search-form form input {
    width: 100%;
    background-color: transparent;
    border-color: transparent;
    border-bottom: 1px solid var(--gpd-neutral-800);
    padding-left: 30px;
    font-family: var(--text-family);
    font-size: 15px;
    font-weight: 700;
    line-height: 1em;
    color: var(--text);
    text-transform: uppercase;
    margin: 0;
    outline: 0;
    height: 36px;
    min-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.search-form form input::placeholder {
    font-family: var(--text-family);
    font-size: 15px;
    font-weight: 700;
    line-height: 1em;
    color: var(--text);
    text-transform: uppercase
}

.search-form .screen-reader-text,
.search-form button#searchsubmit {
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal !important;
    border: 0;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* END SEARCH FORM */



/* MOBILE MENU */
.mobile-menu {
    background: rgba(var(--gpd-main-bg-rgb), 0.9);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    height: auto;
    color: var(--sub-title);
    border-top: 1px solid var(--gpd-neutral-800);
    left: 0;
    bottom: 0;
    padding: 10px 15px;
    z-index: 99999999;
    display: none;
}

@media (max-width: 1024px) {
    .mobile-menu {
        display: block;
    }
}

.mobile-menu ul {
    display: flex;
    justify-content: space-around;
}

.mobile-menu ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: var(--text-family);
    font-size: 11px;
    font-weight: 700;
    line-height: 1em;
    color: var(--text);
    text-transform: uppercase;
}

.mobile-menu ul li a i {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

/* END MOBILE MENU */



/* BUTTON */
/* END BUTTON */



/* TITLES */
h1,
h2,
h3,
h4,
h5,
h6 {
    text-rendering: optimizelegibility;
    font-family: inherit;
    color: inherit;
    text-decoration: none;
    font-size: 100%;
    font-weight: normal;
    margin: 0;
    padding: 0
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    text-decoration: none
}

h2.subtitle {
    font-family: var(--text-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4em;
    color: var(--sub-title);
    margin-bottom: 35px;
    text-transform: uppercase
}

/* END TITLES */



/* PAGINATION */
.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0 20px 0
}

@media(max-width: 1024px) {
    .pagination {
        padding: 40px 20px 20px 20px
    }
}

@media(max-width: 1024px) {
    .pagination ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center
    }
}

.pagination ul li {
    display: inline-block;
    overflow: hidden;
    margin-right: 11px;
    margin-bottom: 11px;
    border-radius: 5px
}

.pagination ul li span,
.pagination ul li a {
    display: block;
    font-family: var(--gpd-pagination-family);
    font-size: var(--gpd-pagination-size);
    font-weight: var(--gpd-pagination-weight);
    line-height: inherit;
    color: #c1c1c1;
    padding: 18px 25px;
    border-radius: 5px;
    border: 1px solid #454545;
    text-decoration: none;
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -ms-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
    transition: ease all 0.4s
}

.pagination ul li a:hover,
.pagination ul li span.current {
    background: var(--gpd-main-blue);
    border-color: var(--gpd-main-blue);
    color: var(--sub-title);
    -webkit-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    -ms-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
    transition: ease all 0.4s
}

/* END PAGINATION */



/* FOOTER */
footer {
    background: linear-gradient(#15AE8A, #107E65);
    width: 100%;
    height: auto;
    color: #fff;
    padding: 50px 50px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    background-image: url('library/images/watermark-footer.svg');
    background-repeat: no-repeat;
    width: 262px;
    height: 230px;
    left: 0;
    bottom: 0;
}

footer .flex {
    align-items: center;
}

footer h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

footer p {
    font-family: var(--text-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3em;
    color: #fff;
}

footer p.horario {
    margin-top: 5px;
}

footer a {
    color: #fff;
}

footer .infos-contato p {
    font-size: 16px;
    display: flex;
    margin-bottom: 5px;
}

footer .infos-contato p img {
    margin-right: 5px;
}

footer .infos-contato p img,
footer .infos-contato .socials a img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

footer .logo-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .logo-footer img {
    position: relative;
    max-height: 115px;
}

footer .logo-footer,
footer .endereco {
    margin-right: 80px;
}

footer .infos-contato .socials {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

footer .infos-contato .socials a {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

footer .infos-contato .socials a:last-child {
    margin-right: 0;
}

footer .infos-contato .socials p {
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 0;
}

footer .endereco .socials {
    display: none;
}

@media(max-width: 1024px) {
    footer {
        padding: 40px 0;
    }

    footer .container {
        position: relative;
        z-index: 999;
    }

    footer .logo-footer,
    footer .endereco {
        margin-right: 0;
    }

    footer .flex {
        display: grid;
        grid-template-areas: 'item1 item2'
            'item1 item3';
    }

    footer .logo-footer {
        grid-area: item1;
        width: 110px;
        margin-right: 15px;
    }

    footer .endereco {
        grid-area: item3;
    }

    footer .infos-contato {
        grid-area: item2;
        margin-bottom: 15px;
    }

    footer h3,
    footer .infos-contato .socials {
        display: none;
    }

    footer p,
    footer .infos-contato p {
        font-size: 15px;
    }

    footer .infos-contato p img,
    footer .infos-contato .socials a img {
        width: 20px;
        height: 20px;
    }

    footer .endereco p {
        line-height: 1.5em;
    }

    footer .endereco .socials {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-top: 20px;
    }

    footer .endereco .socials a {
        display: inline-block;
        width: 25px;
        height: 25px;
        margin-right: 10px;
    }

    footer .endereco .socials a img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }

    footer .endereco .socials a:last-child {
        margin-right: 0;
    }
}

@media(max-width: 490px) {
    footer .logo-footer {
        position: relative;
        top: -45px;
    }

    footer::before {
        height: 215px;
    }

    footer p,
    footer .infos-contato p {
        font-size: 12px;
    }

    footer .infos-contato p img,
    footer .infos-contato .socials a img {
        width: 15px;
        height: 15px;
    }
}

/*@media(max-width: 390px) {*/
@media(max-width: 405px) {
    footer .logo-footer {
        margin-right: 0;
    }

    footer p,
    footer .infos-contato p {
        font-size: 11px;
    }

    footer .infos-contato p img,
    footer .infos-contato .socials a img {
        width: 11px;
        height: 11px;
    }
}

@media(max-width: 360px) {
    footer .logo-footer img {
        max-height: 75px;
    }

    footer p,
    footer .infos-contato p {
        font-size: 9px;
    }

    footer .infos-contato p img,
    footer .infos-contato .socials a img {
        width: 9px;
        height: 9px;
    }
}

/* END FOOTER */



.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 70px);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 120px);
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-next:after {
    content: none;
}





/* BURGUER MENU */
.burger_menu {
    display: none;
}

@media(max-width: 1024px) {
    .burger_menu {
        display: flex;
    }
}

.burger_menu {
    border-radius: 0px 0px 0px 15px;
    width: 70px;
    height: 60px;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
}

.burger_menu .burger_icon {
    display: inline-block;
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    -ms-transform: translateX(0) translateY(0);
    -o-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    width: 25px;
    height: 2.5px;
    border-radius: 10px;
    background-color: var(--principal);
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.burger_menu .burger_icon:before,
.burger_menu .burger_icon:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--principal);
    border-radius: 10px;
    right: 0;
    -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
    -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
    transition: transform .3s, top .3s, background-color 0s;
}

.burger_menu .burger_icon::before {
    top: -8px;
}

.burger_menu .burger_icon::after {
    top: 8px;
}

header.menu_open .burger_menu .burger_icon {
    background-color: rgba(255, 255, 255, 0);
}

header.menu_open .burger_menu .burger_icon::before {
    top: 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

header.menu_open .burger_menu .burger_icon::after {
    top: 0;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
}

/* END BURGUER MENU */



/* MENU MOBILE */
@media(max-width: 1024px) {
    header {
        position: relative;
    }

    header .top-menu {
        position: absolute;
        left: 0;
        background: #fff;
        top: 115px;
        z-index: 999;
    }

    nav.navbar ul.navbar-nav {
        flex-direction: column;
    }

    nav.navbar {
        justify-content: center;
        padding: 30px 0;
    }

    nav.navbar ul.navbar-nav li.menu-item {
        margin: 10px 0.5rem;
    }

    nav.navbar ul.navbar-nav li.menu-item:last-child {
        margin-top: 13px;
    }
}

/* END MENU MOBILE */


.btn-whatsapp {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9;
}