@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat";
}

html{
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: 5px;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background-color: orange;
    border-radius: 5rem;
}

.background{
    height: 100vh;
    background-image: url(/img/fundo-header.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formulario h2{
    color: white;
    font-size: 52px;
}

div .qr a{
    text-decoration: none;
}

section .qrcode{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 300px;
    width: 100%;
    flex-wrap: wrap;
} 

div .qr h3{
    color: white;
    display: flex;
    text-align: center;
    justify-content: space-around;
    align-items: center;
}

.qr p{
    color: white;
    font-weight: 300;
    display: flex;
    text-align: center;
}

body{
    background-color: #0a1e2e;
}

.container{
    max-width: 1280px;
    margin: auto;
}

.flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header{
    width: 100%;
    padding: 60px 4%;
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.5s;
}

header.rolagem{
    background-color: #0a1e2e;
    padding: 20px 4%;
}

.logo img{
    width: 50px;
}

header ul{
    list-style: none;
    display: flex;
    gap: 3rem;
}

header ul li{
    display: inline block;
}

header ul li a{
    text-decoration: none;
    color: white;
    transition: 0.3s;
    font-weight: 300;
}

ul li a:hover{
    text-transform: capitalize;
    color: orange;
    border-bottom: solid 1px;
    font-weight: 700;
}

.C-icon ion-icon{
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    transition: 0.3s;
}

.C-icon ion-icon:hover{
    color: orange;
    border-bottom: solid 1px;
}

footer{
    background-color: #050e16;
}

.logo-footer img{
    width: 75px;
}

footer{
    padding: 60px 4%;
    box-shadow: 0 0 40px 10px #050e16;
}

footer .line-footer{
    padding: 20px 0;
}

.borda{
    border-top: 2px solid orange;
    display: flex;
    justify-content: space-between;
}

footer .line-footer p ion-icon{
    color: var(--terciary);
    font-size: 22px;
    color: white;
    margin: 0px 10px;
    align-items: center;
}

footer .line-footer p a{
    color: var(--terciary);
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.line-footer p:hover, .line-footer p a:hover, .line-footer ion-icon:hover {
    text-decoration: dotted;
    color: #F17316;
    transform:scale(1.1);
    transition: 1s;
    margin: 0px 20px;
}
.line-footer p{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
footer .line-footer p a{
    color: white;
}
  
form{
    background: #0a1e2e;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 10px;
    padding: 20px;
    width: 850px;
    align-items: center;
    border-radius: 20px;
}
  
input, textarea, button{
    background-color: #f7f7f7;
    border: none;
    border-radius: 5px;
    color: #777;
    font-size: 18px;
    outline: none;
    padding: 15px;
    width: 100%;
}
  
button{
    color: #777;
    cursor: pointer;
    font-weight: bold;
}

