/*GENERAL STYLE*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    scroll-behavior: smooth;

}

body {
    font-size: 16px;
    line-height: 1.5;
    color: #01377d;
    margin: 0;
    padding: 0;
    background-color: #032c61;
}

section,
footer {
    padding: 54px 0;
}

/*GENERAL STYLE END*/

/*HEADER*/

/*HEADER*/

h1 {
    font-size: 3rem;
    color: #fff;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
}

p {
    color: #ffffff;
    font-size: 1rem;
}

.page-container {
    max-width: 1650px;
    height: inherit;
    margin: 0 auto; 
    display: flex;
    flex-direction: column;
}


.btn {
    background-color: #01377d;
    color: #fff;
    padding: 15px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover {
    background-color: #032c61;
    color: #ffffff;
    transform: scale(1.025);
}

header {
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: fit-content;
}

#navbar {
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    animation: 1s fadeInBottom ease-in;
    z-index: 999;
    position: fixed;
    width: 100%;
    max-width: 1650px;
}

nav a {
    display: flex;
    flex-direction: column;
    color: #01377d;
    font-weight: 600;
}

nav a i {
    font-weight: 600;
    font-style: normal;
    margin-right: 4px;
}

nav img {
    width: 243px;
    height: 67px;
    margin: 20px;
}

nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav ul a {
    color: #01377d;
    text-transform: uppercase;
    font-size: 14px;
    display: flex;
}

nav ul a i {
    font-weight: 600;
    font-style: normal;
}

nav .nav-text::after {
    content: "";
    background-color: #01377d;
    height: 3px;
    width: 0%;
    display: block;
    margin: 0 auto;
    transition: 0.3s;
}

nav .nav-text:hover::after {
    width: 100%;
}

/*MENU MOBILE*/
.btn-abrir-menu {
    display: none;
}

.btn-abrir-menu i {
    color: #01377d;
    font-size: 40px;
}

.menu-mobile {
    background-color: #01377d;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 0%;
    overflow: hidden;
    transition: .5s;
    overflow-x: hidden;
}

.menu-mobile.abrir-menu {
    width: 50%;
}

.menu-mobile.abrir-menu~.overlay-menu {
    display: block;
}


.menu-mobile .btn-fechar {
    padding: 20px 5%;
}

.menu-mobile .btn-fechar i {
    color: #fff;
    font-size: 30px;

}

.menu-mobile nav {
    justify-content: center;
    background-color: #01377d;
}

.menu-mobile nav ul {
    text-align: right;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.menu-mobile nav ul li a {
    width: 100%;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    padding: 20px 8%;
    display: block;
}

.menu-mobile nav ul li a button {
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.menu-mobile nav ul li:hover {
    background-color: #7ed348;
    color: black;
}

.overlay-menu {
    background-color: rgba(0, 0, 0, 0.699);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}

/*MENU MOBILE END*/

/*HEADER END ----*/

/*TOPO SITE*/
.topo-site {
    display: flex;
    justify-content: center;
    margin: auto;
    animation: 1s fadeInTop ease-in;
    padding: 157px 0 50px 0;
}

.topo-site .btn {
    border-radius: 30px;
    margin: 10px;
    animation: animate-outline 1s ease-out infinite;
}

@keyframes animate-outline {
    from {
        outline: 0px solid #294C9C;
    }

    to {
        outline: 10px solid #3265ad2f;
    }

}

.topo-site .img-wrapper {
    width: 50%;
    height: 50%;
    max-height: 700px;
    max-width: 700px;
    display: flex;
    justify-content: center;
}

.topo-site .img-wrapper img {
    width: 100%;
    border-radius: 10px 0 0 10px;
}

.topo-site .topo-text {
    width: 50%;
    background-color: #01377d;
    border-radius: 0 10px 10px 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 30px;
    font-weight: 100;
    align-items: center;
}

.topo-site .topo-text img {
    width: 10%;
}

.topo-site .topo-text h1 {
    font-size: 40px;
    font-weight: 600;
    color: #7ed348;
    margin-bottom: 10px;
}

.topo-site .topo-text p {
    font-size: 16px;
    text-align: start;
    font-weight: 300;
}

.topo-site .topo-text p span{
    color: #7ed348;
    font-weight: 600;
    font-size: 1.5rem;
}

/*TOPO SITE END-----*/

/*BOTÃO WHATSAPP-----*/

.whatsapp-button {
    position: fixed;
    bottom: 60px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #7ed348;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    z-index: 9999;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.whatsapp-button button {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    cursor: pointer;
    transform: none;
}

.whatsapp-button i {
    color: #003811;
    font-size: 34px;
}
/*BOTÃO WHATSAPP END---*/

/*RESPONSIVIDADE*/

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

    /*HEADER*/
    header {
        overflow-x: hidden;
    }

    header nav a {
        padding: 8px;
        margin: 0 auto;
        width: 48%;
    }

    header nav a img{
        width: 84%;
        height: 100%;
        margin: 0;
    }

    header .nav-text {
        display: none;
    }

    header #btn-cliente-nav {
        display: none;
    }

    .btn-abrir-menu {
        display: block;
    }

    .topo-site {
        padding: 157px 0 50px 0;
        flex-direction: column;
        overflow-x: hidden;
        align-items: center;
        margin: 0 2rem;
    }

    .topo-site .img-wrapper {
        width: 100%;
    }

    .topo-site .img-wrapper img {
        width: 100%;
        max-width: 694px;
        border-radius: 10px 10px 0 0;
    }

    .topo-site .topo-text {
        width: 100%;
        border-radius: 0 0 10px 10px;
    }

    .topo-site .topo-text h1 {
        font-size: 35px;
    }

    .topo-site .topo-text p {
        font-size: 18px;
        padding: 0;
    }

    .topo-site .cards-container {
        flex-direction: column;
    }

    nav ul {
        align-items: normal;
    }

    /*HEADER END*/
}

/*RESPONSIVIDADE END*/