: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;
}

/* SOBRE */

.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;
}


.about .row {
    display: flex;
    align-items: center;
    background: var(--black);
    flex-wrap: wrap;
    gap: 2rem;
}

.about .row .content h3 {
    padding-top: 2rem;
}

.about .row .content p {
    padding: 1rem 0;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #fff;
}

.about .row .content h3 {
    font-size: 2.5rem;
    color: #fff;
}

/*TEXTO*/

.about .row .image {
    flex: 1 1 45rem;
}

.about .row .image img {
    width: 100%;
    border-radius: 0.5rem;
}

.about .row .content {
    flex: 1 1 45rem;
    padding: 2rem;
}

/* BOTÃO */
.btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: var(--main-color);
    color: #fff;
    font-size: 1.6rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.btn:hover {
    background: #b89366;
}