/* ----- Configurações Universais ----- */

:root {

    /* PALETAS DE CORES */
    --colorful-1: #F2EBD5;
    --colorful-2: #D99E30;
    --colorful-3: #D9923B;
    --colorful-4: #593C18;
    --colorful-5: #260B01;

    --deep-1: #BF7A26;
    --deep-2: #593C18;
    --deep-3: #401D09;
    --deep-4: #260B01;
    --deep-5: #F2F2F2;

    --dark-1: #593C18;
    --dark-2: #0D0600;
    --dark-3: #260B01;
    --dark-4: #73625C;
    --dark-5: #F2F2F2;

    --crimson-1: #D31C2E;
    --crimson-2: #960B08;
    --crimson-3: #670D0D;
    --crimson-4: #520100;
    --crimson-5: #FDF7EB;
}

html {
    scroll-behavior: smooth;
    scroll-snap-stop: normal;
}

body {
    width: 100%;
}

#app {
    margin: 0;
    padding: 0;
    width: 100%;
}

@font-face {
    font-family: Merryweather;
    src: url(./notion-law-Merriweather-Regular.ttf);
}

@font-face {
    font-family: Montserrat;
    src: url(./notion-law-Montserrat-VariableFont_wght.ttf);
}

h1,
h2,
h3 {
    font-family: Merryweather, sans-serif;
    text-align: center;
}

p {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
}

.bg-white {
    background-color: var(--crimson-5);
}

.bg-bright {
    background-color: var(--colorful-3);
}

.bg-dark {
    background-color: var(--deep-4);
    color: var(--crimson-5);
}

/* ----- Configurações Responsivas ----- */

@media only Screen and (max-width: 800px) {

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    .two-collumn-a {
        display: flex;
        flex-flow: column nowrap;
    }

    .two-collumn-b {
        display: flex;
        flex-flow: column;
    }

    .text-only {
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        padding-inline: 16px;
        font-family: Montserrat, sans-serif;
        font-size: 16px;
        text-align: left;
    }

    .title-strip {
        padding-block: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-inline: 16px;
    }

    button {
        padding: 20px;
        font-family: Merryweather;
        text-align: center;
        border-radius: 15px;
        font-weight: bold;
        font-size: 20px;
    }

    button:hover {
        cursor: pointer;
        background-color: var(--colorful-4);
        color: var(--colorful-3);
    }

    section {
        padding-block: 32px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    ul li p {
        text-align: left;
    }

    #hero {
        background: var(--deep-3);
        background-image: url(./notion-law-herobg.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: local;
        background-size: cover;

        align-items: center;
        justify-content: center;
        padding: 64px 16px 64px 16px;
    }

    #hero .hero-content {
        width: 100%;
        height: 100;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        padding: 16px;
        /* background-color: var(--dark-1); */
        border-radius: 15px;
        backdrop-filter: blur(5px);
    }

    #hero .hero-title {
        display: flex;
        flex-flow: row;
    }

    #hero .hero-title img {
        width: 100px;
        margin: 8px;
    }

    #hero .hero-title h1 {
        font-family: Merryweather, sans-serif;
        color: var(--crimson-5);
        font-size: 48px;
        text-align: left;
    }

    #hero .hero-title h2 {
        font-family: Montserrat, sans-serif;
        color: var(--crimson-5);
        margin-top: -32px;
        text-align: left;
    }

    #hero .hero-text h3 {
        font-family: Montserrat, sans-serif;
        color: var(--crimson-5);
        text-align: center;
    }

    .flickity-prev-next-button {
        /* top: 50%; */
        /* transform: translateY(-50%); */
    }

    #screenshots {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;

        padding-inline: 8px;
        padding-bottom: 64px;
    }

    .gallery {
        width: 100%;

        img {
            width: 100%;
            /* height: 500px; */
            margin: 8px;
            border-radius: 10px;
        }

    }

    #arg1 {
        padding-inline: 10%;

    }

    #arg1 .texto-1 {
        width: 100%;
    }

    .img-student {
        /* overflow: hidden; */
        width: 100%;
        margin: 24px;
        display: flex;
        align-items: center;
        justify-content: center;


        img {
            position: relative;
            /* left: -50%; */
            border-radius: 15px;
        }
    }

    /* ----- Timelines ----- */

    .timeline {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        text-align: center;

        .content {
            padding: 16px;
            margin-block: 8px;
            text-align: left;
            background-color: var(--colorful-1);
            color: var(--dark-2);
            border-radius: 15px;

            h1,
            h2 {
                text-align: left;
            }

        }
    }

}

@media only Screen and (min-width: 801px) {

    .flickity-prev-next-button {
        top: 50%;
        transform: translateY(-50%);
    }

    .two-collumn-a {
        display: flex;
        flex-flow: row nowrap;
    }

    .two-collumn-b {
        display: flex;
        flex-flow: row-reverse;
    }

    .text-only {
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        padding-inline: 30%;
        font-family: Montserrat, sans-serif;
        font-size: 16px;
        text-align: center;
    }

    .title-strip {
        padding-block: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-inline: 15%;
    }

    button {
        padding: 20px;
        font-family: Merryweather;
        text-align: center;
        border-radius: 15px;
        font-weight: bold;
        font-size: 24px;
    }

    button:hover {
        cursor: pointer;
        background-color: var(--colorful-4);
        color: var(--colorful-3);
    }

    section {
        padding-block: 32px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    ul li p {
        text-align: left;
    }

    #hero {
        background: var(--deep-3);
        background-image: url(./notion-law-herobg.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: local;
        background-size: cover;

        align-items: center;
        justify-content: center;
        padding: 64px 16px 64px 16px;
    }

    #hero .hero-content {
        width: 100%;
        height: 100;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        padding: 16px;
        /* background-color: var(--dark-1); */
        border-radius: 15px;
        backdrop-filter: blur(5px);
    }

    #hero .hero-title {
        display: flex;
        flex-flow: row;
    }

    #hero .hero-title img {
        width: 150px;
        margin: 8px;
    }

    #hero .hero-title h1 {
        font-family: Merryweather, sans-serif;
        color: var(--crimson-5);
        font-size: 64px;
    }

    #hero .hero-title h2 {
        font-family: Montserrat, sans-serif;
        color: var(--crimson-5);
        margin-top: -32px;
        text-align: left;
    }

    #hero .hero-text h3 {
        font-family: Montserrat, sans-serif;
        color: var(--crimson-5);
        text-align: center;
    }

    #screenshots {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;

        padding-inline: 20%;
        padding-bottom: 64px;
    }

    .gallery {
        width: 100%;

        img {
            height: 500px;
            margin: 8px;
            border-radius: 10px;
        }

    }

    #arg1 {
        padding-inline: 10%;

    }

    #arg1 .texto-1 {
        width: 100%;
    }

    .img-student {
        overflow: hidden;
        width: 100%;
        margin: 24px;



        img {
            position: relative;
            left: -50%;
            border-radius: 15px;
        }
    }

    /* ----- Timelines ----- */

    .timeline {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        text-align: center;

        .content {
            padding: 20px;
            margin-block: 8px;
            text-align: left;
            background-color: var(--colorful-1);
            color: var(--dark-2);
            border-radius: 15px;

            h1,
            h2 {
                text-align: left;
            }

        }
    }
}



/* ------Header/Footer---------------------- */

header {
    /* width: 100vw; */
    background-color: var(--colorful-5);
    padding-inline: 10%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-around;
}

header .header-logo {
    display: flex;
    flex-flow: row nowrap;

    img {
        width: 50px;
        margin: 8px;
    }
}

header nav {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-evenly;
}

header nav a {
    font-family: Merryweather, sans-serif;
    text-decoration: none;
    color: var(--crimson-5);
    font-size: 16px;
    padding-inline: 16px;
}

.header-logo h1 {
    font-family: Merryweather, sans-serif;
    color: var(--crimson-5);
    font-size: 24px;
}

.header-logo h2 {
    font-family: Montserrat, sans-serif;
    color: var(--crimson-5);
    font-size: 16px;
    margin-top: -16px;
    text-align: left;
}

footer {
    background-color: var(--deep-3);
    padding: 8px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    img {
        width: 100px;
        padding: 50px;
    }
}