:root {
    --cor-primaria: #d88d0e;
    --cor-preto: #000;
    --cor-branco: #fff;
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Marcellus", serif;
    width: 100%;
}

header {
    width: 100%;
    height: 80px;
    background-color: var(--cor-preto);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: fixed;
}

header img {
    width: 75px;
}

main {
    padding: 80px 20px 50px 20px;
    background-image: url("/IMG/luminna-bg-2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.main-title h1, h2, h3 {
    color: var(--cor-primaria);
    padding: 10px;
}

.main-title p {
    color: var(--cor-branco);
}

.main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.text-title {
    color: var(--cor-primaria);
    font-size: 1.3rem;
    margin-bottom: 1.3rem;
}

.main-options {
    text-align: center;
    margin-top: 2rem;
}

.option-local, .option-site {
    background-color: var(--cor-preto);
    padding: 20px;
    border-radius: 7px;
    border: solid 2px var(--cor-primaria);
    margin-bottom: 15px;
}

.btn-destaque {
    background-color: var(--cor-primaria);
    color: var(--cor-preto);
    padding: 7px 10px;
    border-radius: 7px;
    text-decoration: none;
}

@media screen and (min-width: 570px) {
    main {
        height: 100vh;
    }
}

@media screen and (min-width: 768px) {
    .main-options {
        display: flex;
        gap: 1rem;
    }

    main {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        }

    .main-title h2 {
        padding-top: 2rem;
    }

    .main-title {
        width: 80%;
    }
}

@media screen and (min-width: 1024px) {
    .main-title {
        width: 65%
    }

    .main-options {
        width: 80%;
        justify-content: center;
        align-items: center;
    }

    main h3{
        width: 65%;
    }
}