@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Space+Grotesk:wght@400;500;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: rgba(253, 253, 253, 1);
}
header {
    align-items: center;
}
.logo-header{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin-left: 75%;
}
.logo-header img{
    height: 25px;
    width: 100%;
}
.nav-bar {
    display: flex;
    align-items: center;
    padding: 1rem 1rem;
}
.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-left: 3%;
}
.nav-list ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}
.nav-item {
    margin: 0 20px;
}
.nav-link {
    color: #09142D;
    font-family: 'Montserrat';
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}
.dropbtn {
    padding: 12px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    background-color: #FDFDFD;
    border-radius: 5px;
}
.dropdown {
    position: relative;
    display: inline-block;
    border-radius: 5px;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FDFDFD;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    color: #09142D;
    border-radius: 5px;
}
.dropdown-content a {
    color: #09142D;
    font-weight: 500;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: #f1f1f1;
}
.show {
    display: block;
}
.mobile-menu-icon {
    display: none;
}
.mobile-menu {
    display: none;
}
section{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 80vh;
}
.textos{
    display: flex;
    flex-direction: column;
    width: 40%;
    max-height: auto;
    margin-top: 3%;
    margin-left: 5%;
}
.textos h1{
    color: #00033D;
    font-family: "Space Grotesk";
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.textos p{
    color: #09142D;
    font-family: "Space Grotesk";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 3%;
}
.payment-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}
.title-pix{
    font-family: 'Space Grotesk';
    font-weight: 600;
    color: #00033D;
}
.desc-pix-1,
.p-ou,
.chave-pix,
.valor-1{
    font-family: 'Space Grotesk';
    font-weight: 400;
    margin-top: 3%;
    color: #09142D;
}
.valor-1 span{
    font-family: 'Space Grotesk';
    font-weight: 600;
}
.payment-container img{
    margin-top: 3%;
    height: 200px;
}
.pix-key {
    font-family: 'Space Grotesk';
    font-weight: 600;
}