@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #252523;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 6rem;
}

.site-header {
    background-color: #151515;
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: solid 1px #252523;
}

.container-header {
    width: 90%;
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 10rem;
    margin-top: 1rem;
}

.menu .btn-entrar {
    background-color: #c39550;
    color: #151515;
    padding: 0.6rem 1.6rem;
    border-radius: 0.4rem;
    font-weight: 600;
}

.menu a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin-left: 2rem;
    transition: color 0.25s ease;
    margin-left: 3rem;
}

.menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 0%;
    height: 0.12rem;
    background-color: #c39550;
    transition: width 0.25s ease;
}

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

.menu a:hover::after {
    width: 100%;
}
.menu .btn-entrar {
    background-color: #c39550;
    color: #151515;
    padding: 0.6rem 1.4rem;
    border-radius: 0.35rem;
    font-weight: 600;
    transition: background-color 0.25s ease;
}

.menu .btn-entrar::after {
    display: none;
}

.menu .btn-entrar:hover {
    background-color: #d8ad69;
    color: #151515;
}

@media (max-width: 48rem) {
    .menu a {
        margin-left: 0.4rem;
        font-size: 0.7rem;
    }

    .logo img {
        width: 6rem;
    }
}
