html {
    font-size: 62.5%;
}
body {
    display: grid;
    grid-template-areas:
        "header"
        "main"
        "footer";
    grid-template-columns: 1fr;      
    grid-template-rows: auto 1fr auto;
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
     background-color: #7b3fe4;
    /* Imagem de fundo sobre a cor */
    background-image: url('../images/bg-desktop.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

/* HEADER */
.header {
    grid-area: header;
    display: flex;
    align-items: center;
    min-height: 75px;
}

.header img {
    width: 210px;
    height: auto;
    margin: 53px 60px 0;
}
/* MAIN */
.main {
    grid-area: main;
    display: flex;
    flex-direction: row;         
    justify-content: center;     
    align-items: center;         
    gap: 30px;                   
    height: 70vh;
    padding: 0 65px; 
}

.main .figure {
    height: 100%;
}

.main .landing-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 500px;
    gap: 20px;
    color: #fff;
    height: 100%;
    padding: 20px;
}

.main .landing-description h1 {
    font-size: 3.8rem;
    margin-right: 30px;

}

.main .landing-description button {
    background-color: #fff;
    color: #7b3fe4;
    border: none;
    padding: 15px 70px;
    border-radius: 50px;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
    transition: background-color 0.3s ease;
}

.main .landing-description button:hover {
    background-color: hsl(300, 69%, 71%);
    color: #fff;
}

/* FOOTER */
.footer {
    grid-area: footer;
    height: 2vh;
    display: flex;
    justify-content: flex-end;
    margin-right: 375px;
    align-items: center;
}

.footer .social {
    display: flex;
    gap: 40px;
}

.footer .social a {
    color: #fff;
    font-size: 2.4rem;
    transition: color 0.3s ease;
    border: 1px solid;
    border-radius: 50%;
    padding: 5px 13px;
}

.footer .social .fab.fa-facebook-f {
    padding: 5px;
}

.footer .social a:hover {
    color: hsl(300, 69%, 71%);
}
