:root {
    --primary: #010e30;
    --gold: #F09D51;

}

/* 
@font-face {
    font-family: "ReinaNeue";
    src: url(/assets/fonts/reinaneue/ReinaNeueCapitals-News.otf) format('opentype');
}

@font-face {
    font-family: "ReinaNeueLight";
    src: url(/assets/fonts/reinaneue/ReinaNeueCapitals-Thin.otf) format('opentype');
} */

@font-face {
    font-family: "ArticulatCF-normal";
    src: url(/assets/fonts/articulat/ArticulatCF-Normal.otf) format('opentype');
}

@font-face {
    font-family: "ArticulatCF-bold";
    src: url(/assets/fonts/articulat/ArticulatCF-Bold.otf) format('opentype');
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 95%;
    }
}

html,
body {
    scroll-behavior: smooth;
    font-family: 'ArticulatCF-normal';
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a:hover {
    text-decoration: none;
}

.name-input {
    display: none;
    visibility: hidden;
}

h2 {
    font-weight: lighter;
    font-size: 2.5rem;
    text-transform: uppercase;
    font-family: "ArticulatCF-bold";
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.5rem;
    }
}

footer h2 .adv,
footer h2 span {
    font-size: .8rem;
    text-transform: lowercase;
    font-family: "ArticulatCF-normal";
}

.navbar-brand .navbar .navbar-brand .global,
footer h2 .global {
    text-transform: none;
}

.navbar .dropdown-toggle {
    padding: 0;
}

@media (max-width: 1280px) {
    footer h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    footer .text-out p {
        font-size: .9rem;
        text-align: center !important;
    }
}

.white-space {
    white-space: nowrap;
}

.cta a {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
    display: inline-block;
    margin-top: 15px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    width: 200px;
}

.cta a i {
    font-size: 1rem;
    position: relative;
    left: 0;
    transition: all .5s;
}

.cta a::after {
    content: "";
    width: 110px;
    height: 3px;
    background-color:
        var(--gold);
    position: absolute;
    bottom: 0;
    left: -1000%;
    transition: all .5s;
}

.cta a:hover::after {
    left: 0;
}

.cta a:hover i {
    left: 10px;
}

/* FOOTER */
footer {
    padding: 20px 0;
}

footer ul.links li a,
footer ul.links li button {
    background-color: transparent;
    border: none;
    padding: 0;
    color: var(--primary);
    text-transform: uppercase;
    font-size: .9rem;
}

footer ul.social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

footer ul.social li a i {
    border: 2px solid var(--primary);
    font-size: 1.5rem;
    margin: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: var(--primary);
    transition: all .3s;
}

footer ul.social li a i:hover {
    background-color: var(--primary);
    color: #fff;
}

footer img {
    width: 250px;
}

footer .developed {
    text-align-last: center;
}

footer .developed a {
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primary);
}

/* WHATSAPP */
a:focus,
a:active {
    outline: none;
}

@keyframes pulse-phone {
    0% {
        box-shadow: 0 0 0 0 rgba(1, 14, 48, .8);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(1, 14, 48, 0);
    }
}

.btn-contato-phone {
    position: fixed;
    right: 40px;
    bottom: 40px;
    color: #fff;
    background-color: #010e30;
    border: 4px solid #fff;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all .5s;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    transition: all .3s;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    animation-name: pulse-phone;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 100;
}

.btn-contato-phone:hover {
    color: #fff;
}

@media (max-width: 576px) {
    .btn-contato-phone {
        right: 40px;
        bottom: 40px;
    }
}


footer img.fair {
    width: 50px;
}

footer .fair-ml {
    margin-left: 100px;
}

footer .group {
    font-size: .7rem;
}

@media(max-width: 576px) {
    footer img.fair {
        width: 40px;
    }
}


/* MENU */
.main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 999;
}

.main-menu.scroll {
    background-color: var(--primary);
}

.main-menu .content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}

.main-menu .content img {
    width: 200px;
}

.main-menu .content .main-menu-links li.lang img {
    width: 30px;
}

.main-menu .content .main-menu-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-left: auto;
}

.main-menu .content .main-menu-links li {
    margin: 10px;
}

.main-menu .content .main-menu-links .menu-link,
.main-menu .content .main-menu-links .menu-link-drop {
    color: #fff;
    text-transform: uppercase;
    background-color: transparent;
    border: none;
    text-shadow: 0 3px 6px #000;
    font-size: .9rem;
}

.main-menu .button {
    display: none;
}

.main-menu .logo-main {
    width: 150px;
}

#mostrar-barra-lateral {
    background-color: transparent;
    color: #fff;
    border: none;
    outline: none;
    font-size: 1.6rem;
}

#barra-lateral {
    position: fixed;
    right: -1000px;
    top: 0;
    z-index: 999;
    background-color: var(--primary);
    color: #fff;
    width: 300px;
    height: 100vh;
    padding: 20px;
    transition: all .3s;
}

#barra-lateral.active {
    right: 0;
}

@media (max-width: 992px) {
    #barra-lateral {
        display: none;
    }
}

#barra-lateral ul li a {
    color: #fff;
    font-size: 1.5rem;
    padding: 10px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    display: inline-block;
}

#fechar-menul-lateral {
    color: #fff;
    font-size: 1.8rem;
    border: none;
    background-color: transparent;
}

.main-menu-links ul li a {
    color: #fff;
}

@media (max-width: 992px) {
    .main-menu .button {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .main-menu .button button {
        color: #fff;
        background: transparent;
        border: none;
        font-size: 2rem;
    }

    .main-menu .content .main-menu-links .menu-link-drop .dropdown-menu {
        z-index: 999;
    }

    .main-menu #close-menu {
        color: #fff;
        background: transparent;
        border: none;
        font-size: 2rem;
    }

    .main-menu {
        overflow: hidden;
    }

    .main-menu .content {
        display: block;
        position: fixed;
        top: 0;
        left: -1000%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary);
        transition: all .3s;
    }

    .main-menu .content.active {
        left: 0;
    }

    .main-menu .content .main-menu-links {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .main-menu .content .main-menu-links li {
        width: 100%;
    }

    .main-menu .logo-main {
        width: 150px;
    }

    .main-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
    }
}


#modalContato form label {
    font-weight: bold;
    color: var(--primary);
}

#modalContato form label span {
    color: #344060;
}

#modalContato form .buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#modalContato h5 {
    font-family: "ArticulatCF-normal";
}

#modalContato form button.send {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    padding: 10px 0;
    text-transform: uppercase;
    font-weight: bold;
    width: 50%;
    display: inline-block;
    margin: 5px;
}

#modalContato form button.cancel {
    margin: 5px;
    padding: 10px 0;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    text-transform: uppercase;
    font-weight: bold;
    width: 50%;
    display: inline-block
}

footer .pub{
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .pub li{
    margin: 0 10px;
}
footer .pub img{
    width: 90px;
}
footer .pub li:nth-child(2) img{
    width: 50px !important;
}
footer ul.social{
    justify-content: center;
}