* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face{
    font-family: design;
    src: url(../Fonte/DESIGNER.otf);
}
.logotipo{
    display: inline-block;
    margin-top:1%;
    margin-left: 4%;
}

.logotipo img{
  
    height:55px;
    transition: all 0.5s ease;
    
}
.nav-menu.fixed img{
    height: 35px;
}
.logotipo img:hover{
   transform: scale(1.07);
}


.nav-menu {
    display: flex;
    justify-content: space-around;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    
}


.nav-menu.fixed {
    background-color: #525252b7;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding-bottom: 10px;
    height: 60px;
}


nav ul li {
    display: inline-block;
    margin-top: 45px;
    margin-left: 15px;
    
    position: relative; }


nav ul {
    margin-left: 290px;
}


nav a {
    font-family: Llight, system-ui;
    text-decoration: none;
    color: rgb(65, 65, 65);
    font-size: 20px;
    font-weight: 400;
    transition: all 0.6s ease, transform 0.3s ease; 
    display: inline-block;
}


nav ul li a::after {
    content: " ";
    width: 0%;
    height: 3px;
    background-color: #a3ce2c;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.4s ease; 
}


nav ul li a:hover::after {
    width: 100%;
}


nav a:hover {
 
    transform: scale(1.1);
}


.nav-menu.fixed nav a {
   
    color: rgb(255, 255, 255);
}
.nav-menu.fixed ul li {
    margin-top: 23px;
}

    
    .botao {
        margin-top: 30px;
        margin-right: 25px;
    }
    
    .btn {
        text-decoration: none;
        padding: 15px;
        font-size: 17   px;
        color: rgba(46, 45, 45, 0.952);
        font-family: arial; 
        border-radius: 1px;
        transition: all 0.3s ease-out;
        display: inline-block;
        box-shadow: 4px 4px 10px #424242;
    }
    .nav-menu.fixed .btn {
        margin-top: -12px;
        padding: 10px;
        background-color: #a3ce2ccc;  
        color: rgb(245, 245, 245);  
        box-shadow: 1px 1px 5px #a3ce2ccc;
       
    }
    
    .btn:hover {
        transform: scale(1.06);
        background-color: transparent;
        border-radius: 2px;
     
         
    }/*************************/

body {
    background: linear-gradient(135deg, #5a747d,#93a6ab, #93979e,#627b81) no-repeat; 
    /* #93a6ab     #bcbfc4    #bbc0c8 #78959d*/
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    width: 50%;
    max-width: 800px;
    height: 500px;
    max-height:auto ;
    margin: 0 auto;
    padding: 20px 20px;
    background: rgba(255, 255, 255, 0.027); 
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(80px); 
    -webkit-backdrop-filter: blur(10px);    
    transition: all 0.3s ease;
    margin-top: 55px;
}

.container:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

h2 {
    color: #a3ce2c;
    font-size: 42px;
    margin-bottom: 20px;
    font-family: design;
}

form {
    width: 100%;
    height: 0px;
   transform: scaleY(0.7);
   scale: 0.95;
  
    
}

form input,
form select,
form textarea {
    width: 80%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: transparent; 
    border: 1px solid #0a2b17;
    border-radius: 7px;
    font-size: 20px;
    font-family: system-ui;
    transition: all 0.3s ease;
    color: white;
}

form input:focus,
form select:focus,
form textarea:focus{
    border-color: #0a2b17d2;
    box-shadow: 0 0 20px #0a2b17;
    outline: none;
}

form select {
    max-width: 50%;
    margin: 0 auto;
}
#selecionar{
    margin-bottom: 15px;
    width:30%;
    transform: translateX(-83%);
    color: white;
    background-color: transparent;

}
form select option{
    background-color: #5a747dd0; 
    color: #fff; 
}


form select:focus{
    border-color: #a0afb3; 
}

textarea{
   
    height: 120px;
    resize: none;
}

form input[type="file"]{
    border: none;
    color: transparent;
    background-color: transparent;
    padding: 10px;
    
    font-size: 16px;
}

form input[type="file"]:focus{
    border: none;
    color: white;
    box-shadow: none;

}

#submit{
    width: 65%;
    border: none;
    background-color: #a3ce2cf3; /*#0a2b17*/
    color: white;
    padding: 20px 30px;
    font-size: 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#submit:hover {
    background-color: #b5df43c7; /*#0a2b1796*/
    transform: translateY(-3px);
}

#submit:active {
    transform: translateY(2px);
}

form input[type="submit"]:active{
    transform: scale(1.05);
}


form input,
form select,
form textarea{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus{
    transform: translateY(-5px);
    box-shadow: 0px 0px 5px rgba(160, 175, 179, 0.6);
}
form input::placeholder,
form textarea::placeholder{
    color: #ffffff;  
    font-family: system-ui;
    font-size: 20px;  
    letter-spacing: 0.4px;
}


