* {
     font-family: "Montserrat", sans-serif;
     margin: 0;
     padding: 0;
     box-sizing: border-box;
    

}

header {
    margin: 44px 0 144px 76px;

}
.link-header {
    
   font-size: 24px;
   font-weight: 600;
   line-height: 29px;
   color: #989D9C;
   cursor: pointer;
   margin-right: 23px;
}

.button-log-in {
    background-color: #665AE1;
    color: #FFFFFF; 
    border-radius: 50px;
    border:none;
    width: 130px;
    height: 41px;
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    
    }
    .button-log-in:hover {
  background-color: #572994; /* tom mais escuro */
}

/* Quando clica */
   .button-log-in:active {
     background-color: #16037e; /* tom ainda mais forte */
}


.logo-image {
   width: 568px;
   height: 500px;
   margin-left: 125px;
   display: inline-block;
  
}

section {
    display: inline-block;
    margin-left: 86px;
    
}

h1 {
    color: #515151;
    font-size: 100px;
    font-weight: 900;
    line-height: 122px;
}

h2 {
    color: #515151;
    font-size: 58px;
    font-weight: 500;
    line-height: 71px;
}

p {
  
    color: #848484;
    font-size: 24px;
    font-weight: 400;
    line-height: 29px;
    width: 500px;
    margin-top: 32px;
    margin-bottom: 65px;
}

.button-header {
                
               border-radius: 30px;
               background: #ADFF00;
               width: 239px;
               height: 64px;
               line-height: 34px;
               font-weight: 700;
               font-size: 28px;
               color: #000;
               border:none;
               filter: drop-shadow(0px 4px 4px rgba( 0, 0, 0, 0.25));
               cursor: pointer;
        }
.button-header:hover {
  background-color: #08f32f; /* tom mais escuro ao passar o cursor*/
}

             /* Quando clica */
.button-header:active {
  background-color: #78f782; /* tom ainda mais forte */
}


/* ===== MOBILE (até 900px) ===== */
@media (max-width: 900px) {
    body {
        background-color: #e5e5e5;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 0;
    }

    header {
        display: none;
    }

    main {
        flex-direction: column;
        background-color: #fff;
        border-radius: 12px;
        padding: 40px 20px;
        width: 90%;
        max-width: 360px;
        box-shadow: none;
        display: flex;
        align-items: center;
        text-align: center;
    }

    .logo-image {
        width: 220px;
        height: auto;
        margin: 0 0 20px 0;
    }

    section {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 300px;
    }

    h1 {
        font-size: 28px;
        font-weight: 800;
        line-height: 36px;
        color: #333;
    }

    h2 {
        font-size: 16px;
        color: #777;
        margin-bottom: 20px;
    }

    /* esta comentado pois caso tivesse que por esse paragrafo versao  mobile era assim 
    pra fazer
    p {
        font-size: 14px;
        line-height: 22px;
        color: #777;
        margin: 16px 0 24px;
        max-width: 300px;
    } */
     p {
        display: none;
     }

    .button-header {
        background: #ADFF00;
        color: #000;
        font-weight: 800;
        font-size: 18px;
        width: 160px;
        height: 48px;
        border-radius: 30px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    }
}
