:root {
    --main-color: #d3ad7f;
    --black: #13131a;
    --bg: #010103;
    --border: 0.1rem solid rgba(255, 255, 255, 0.3);

    font-size: 10px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: 0.2s linear;
}

/* BODY */
body {
    background-color: var(--bg);
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: var(--border);
    z-index: 1000;
}

.header section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 2rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.header img {
    height: 6rem;
}

/* NAVBAR */
.navbar a {
    margin: 0 1rem;
    font-size: 1.6rem;
    color: #fff;
}

.navbar a:hover {
    color: var(--main-color);
    border-bottom: 0.1rem solid var(--main-color);
    padding-bottom: 0.5rem;
}

/* ENDEREÇO */

.title {
    text-align: center;
    font-size: 4rem;
    color: var(--main-color);
    text-transform: uppercase;
    margin-bottom: 2rem;
    margin-top: 9rem;
}

.title span {
    color: #fff;
    text-transform: uppercase;
}

.address {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
}


.footer {
    background: var(--black);
    padding: 2rem;
}

.footer .share {
    padding: 1rem 0;
    text-align: center;
}

.footer .share img {
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    margin: 0.3rem;
    color: #fff;
    border-radius: 50%;
    background: var(--black);
}

.footer .share img:hover {
    background: var(--main-color);
}