*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* height: 100%; */
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: hidden;
    
}

/*Header da Pagina*/

.inicio{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url("../../imagens/lab.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header{
    max-width: 1150px;
    width: 10 0%;
    height: 90px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 40px;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, .20);
    margin-top: 20px;
    transition: all .35s ease;
    position: relative;
    z-index: 1000;
}

.header.fixo{
    position: fixed;
    top: 10px;
    left: 60%;
    transform: translateY(-50%);
    width: fit-content;
    height: 58px;
    padding: 0 35px;
    background: rgba(15, 15, 15, .85);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
    z-index: 9999;
}

header.fixo .logoEscritorio{
    opacity: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
    transition: all .35s ease;
    transform: scale(8);
}

.header.fixo .menu{
    width: 100%;
    justify-content: center;
}

.logoEscritorio{
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo{
    height: 65px;
}

.logo-texto{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.linha{
    width: 210px;
    height: 1px;
    background-color: #C79A5D;
    margin: 7px 0;
}

.menu a{
    color: #FFFFFF;
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s;
}

.ativo{
    color: #C79A5D;
}

.logo-texto h2{
    font-size: 24px;
    font-weight: 500;
}

.logo-texto p{
    font-size: 10px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu a:hover{
    color: #C79A5D;
}




/*Main da Pagina*/
.hero{
    width: 100%;
}


.conteudo{
    max-width: 820px;
    padding:65px 5%;
    
}

.principal h1{
    font-family: Georgia, serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 400;
    line-height: 1.10;
}

.principal span{
    color: #C79A5D;
}

.principal p{
    margin-top: 40px;
    line-height: 1.5;
    color: #DADADA;
    max-width: 480px;
    font-size: clamp(18px, 2vw, 23px);
}

.botao{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    background: white;
    color: black;
    text-decoration: none;
    padding:18px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: .3s;
}

.botao:hover{
    transform: translateY(-2px);
}

.botao img{
    width: 35px;
}

.beneficios{
    display: flex;
    gap: 70px;
    margin-top: 65px;
}

.item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.item img{
    width: 78px;
}

.item span{
    font-size: 17px;
    line-height: 1.6;
    color: #D0D0D0;
}

.menu{
    display: flex;
    align-items: center;
    gap: 56px;
}

.menu-mobile{
    display: none;
}