@import url('fonts.css');
@import url("reset.css");


:root {
    font-size: 62.5%;
    /* Hack REM, para que 1.6rem = 16px */
    --brand-primary: #283618;
    --brand-secondary: #FEFAE0;
}

/* Dark mode variables */
body[data-theme='dark'] {
    --brand-primary: #FEFAE0;
    --brand-secondary: #283618;
}


body {
    font-family: Suisse Intl;
    font-size: 1.6rem;
    color: var(--brand-secondary);
    background-color: var(--brand-primary);
    transition: all 0.4s ease;
}


/* Estilo padrão para desktop */
h1 {
    font-size: 8.8rem;
    line-height: 8.8rem;
    color: var(--brand-secondary);
    transition: all 0.4s ease;
}

h2 {
    font-size: 2.4rem;
    line-height: 2.8rem;
    margin-bottom: 16px;
    color: var(--brand-secondary);
    transition: all 0.4s ease;
}

h3 {
    font-size: 2.4rem;
    line-height: 2.8rem;
    color: var(--brand-secondary);
    transition: all 0.4s ease;
}

h4 {
    font-size: 1.2rem;
    line-height: 1.6rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    color: var(--brand-secondary);
}

small {
    font-size: 1.6rem;
    line-height: 2.4rem;
    transition: all 0.4s ease;
    color: var(--brand-secondary);
}

p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    transition: all 0.4s ease;
    color: var(--brand-secondary);
}

ol {
    list-style-type: lower-alpha;
}

li {
    margin: 24px 120px 0px 120px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--brand-secondary);
    cursor: pointer;
}

/* li:hover {
    background-color: var(--brand-secondary);
    cursor: pointer;
} */

.logo {
    width: fit-content;
    display: flex;
    flex-direction: row;
    transition: all 0.4s ease;  
    float: left;  
}

.symbol {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.text-logo {
    padding: 2px 0px 2px 0px;
    width: 210px;
}

.dark-mode {
    width: fit-content;
    margin-left: auto;
    margin-right: 0px;
    transition: all 0.4s ease;
    float: right;
}


header {
    width: 100%;
    padding: 44px 120px 44px 120px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: row;
    gap: auto;
    transition: all 0.4s ease;
    
}

.hero {
    width: 90%;
    padding: 120px 120px 0px 120px;
    transition: all 0.4s ease;
}

.section {
    border-bottom: 2px solid var(--brand-secondary);
    margin: 80px 120px 0px 120px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.tag {
    width: fit-content;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    line-height: 1.4rem;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 2px solid var(--brand-secondary);
    border-radius: 999px;
    color: var(--brand-secondary);
    transition: all 0.4s ease;
}

.dark-mode-button {
    width: 160px;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    line-height: 1.4rem;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 2px solid var(--brand-secondary);
    border-radius: 999px;
    color: var(--brand-secondary);
    background-color: var(--brand-primary);
    transition: all 0.4s ease;
}

footer {
    width: 100%;
    padding: 120px 120px 64px 120px;
    transition: all 0.4s ease;
}

.container {
    display: flex;
    flex-direction: row;
    gap: 102px;
    transition: all 0.4s ease;
}

.content {
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.4s ease;
}



/* ---------- */

/* Media query para dispositivos móveis */
@media (max-width: 768px) {

    h1 {
        font-size: 4.8rem;
        line-height: 5.6rem;
    }

    header {
        width: 100%;
        padding: 80px 30px 0px 30px;
    }

    .hero {
        width: 100%;
        padding: 80px 30px 0px 30px;
    }

    .section {
        margin: 80px 30px 0px 30px;
    }

    li {
        margin: 24px 30px 0px 30px;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--brand-secondary);
        cursor: pointer;
    }

    .container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .content {
        width: 100%;
    }
    
    footer {
    width: 100%;
    padding: 120px 30px 64px 30px;
    transition: all 0.4s ease;
}
}