@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
    --bs-font-sans-serif: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";

    --cor-1: #f79900;
    --cor-2: #096635;
    --cor-3: #004e74;
    --cor-4: #ffdba6;
    --cor-5: #003416;
    --cor-6: #a71815;
    --cor-7: #004b24;
}

body,
html {
    background-color: var(--cor-5);
    overflow-x: hidden;
    position: relative;
}
body.scroll,
html.scroll {
    overflow-y: hidden;
}

#home {
    content: "";
    display: block;
    height: 120px;
}

.titulo-secao {
    font-family: "Neulis";
    font-size: 31px;
    text-align: center;
}
.titulo-secao.cor-6 {
    color: var(--cor-6);
}
.titulo-secao.cor-1 {
    color: var(--cor-1);
}

.efeito-rasgado {
    position: relative;
}
.efeito-rasgado2 {
    position: relative;
    background-color: var(--cor-4);
}

.texto {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.texto.white {
    color: white;
}

#layer-1 {
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: calc(100% - 120px);
    min-width: 1920px;
    width: 100%;
}
#layer-1 .imagem {
    position: absolute;
}
#layer-1 .forma-2 {
    top: 40px;
    left: 220px;
}
#layer-1 .forma-3 {
    top: 40px;
    right: 0;
}
#layer-1 .forma-4 {
    top: 340px;
    right: 240px;
}
#layer-1 .forma-5 {
    top: 340px;
}

#layer-2 {
    z-index: 2;
    position: relative;
}

#menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--cor-5);
    z-index: 10;
}
#menu ul {
    margin: 0;
    justify-content: space-between;
}
#menu li {
    height: 67px;
    line-height: 67px;
}
#menu a {
    color: white;
    opacity: 0.5;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}
#menu a:hover,
#menu a.active {
    color: var(--cor-4);
    opacity: 1;
}

#logo {
    margin-bottom: 20px;
}
h1 {
    color: transparent;
    font-size: 0;
}

#logo .data {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
}
#logo .data {
    text-align: center;
}
#logo .data strong {
    color: var(--cor-1);
    font-size: 30px;
    line-height: 36px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}
#logo .data span {
    color: white;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
}

#banner {
    height: 260px;
    position: relative;
    z-index: 0;
}
#banner img {
    filter: drop-shadow(-100px 15px 30px rgba(0, 0, 0, 0.3));
}

.pratos-participantes {
    background-color: var(--cor-4);
    position: relative;
    padding-top: 60px;
}

.pratos-participantes .titulo-secao {
    margin-bottom: 60px;
}
.prato {
    text-align: center;
    margin-bottom: 50px;
}
.prato .imagem {
    width: 246px;
    height: 246px;
    overflow: hidden;
    margin: 0 auto 20px auto;
    box-shadow: 0px 40px 40px -10px rgba(0, 0, 0, 0.2);
}
.prato .foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.prato .moldura {
    top: 0;
    left: 0;
    z-index: 2;
}
.prato .nome {
    font-size: 15px;
    font-weight: 700;
    color: var(--cor-7);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.prato .descricao {
    font-size: 12px;
    line-height: 16px;
    color: var(--cor-7);
    margin-bottom: 12px;
    min-height: 64px;
}
.prato .restaurante span {
    display: inline-block;
    padding: 0px 7px;
    height: 20px;
    line-height: 20px;
    font-size: 11px;
    font-weight: 300;
    text-transform: uppercase;
    color: white;
    border-radius: 10px;
    background-color: var(--cor-1);
}

.restaurantes {
    background-color: var(--cor-1);
    padding-top: 50px;
}
.restaurantes .titulo-secao {
    margin-bottom: 60px;
}

.restaurante {
    margin-bottom: 25px;
    text-align: center;
}
.restaurante .logo {
    margin: 0 auto 20px auto;
    width: 245px;
    height: 185px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.restaurante .logo img {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0px 33px 15px rgba(0, 0, 0, 0.2));
}
.restaurante .nome {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--cor-7);
    min-height: 40px;
}
.restaurante .endereco {
    font-size: 12px;
    line-height: 18px;
    color: var(--cor-7);
    min-height: 55px;
}

.sobre-o-festival {
    padding-top: 80px;
    padding-bottom: 220px;
    background-color: var(--cor-3);
    position: relative;
    overflow: hidden;
}
.sobre-o-festival .nome-festival {
    color: white;
    font-size: 58px;
    font-family: "Neulis";
    text-transform: uppercase;
}
.sobre-o-festival h4 {
    color: white;
    font-size: 22px;
    font-family: "Neulis";
    text-transform: uppercase;
}
.sobre-o-festival h5 {
    color: var(--cor-1);
    font-size: 45px;
    font-family: "Neulis";
    text-transform: uppercase;
}
.descricao-festival {
    margin-bottom: 100px;
}

.faixa-objeto-1,
.faixa-objeto-2,
.faixa-objeto-3,
.faixa-objeto-4 {
    position: relative;
}
.objeto.objeto-1 {
    position: absolute;
    right: -30px;
    top: -100px;
    z-index: 0;
}
.objeto.objeto-2 {
    position: absolute;
    left: -250px;
    z-index: 0;
}
.objeto.objeto-3 {
    position: absolute;
    right: -200px;
    z-index: 0;
}
.objeto.objeto-4 {
    position: absolute;
    top: -79px;
    right: 0;
    z-index: 0;
}

#realizacao {
    position: relative;
}

#realizacao img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0px 30px 30px rgba(0, 0, 0, 0.1));
}

footer {
    padding-top: 130px;
    padding-bottom: 60px;
    background-color: var(--cor-1);
}
footer h6 {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 30px;
}
footer li {
    min-height: 30px;
    line-height: 20px;
}
footer a {
    text-decoration: none;
}
footer address.texto.white {
    line-height: 20px;
}
footer .link-instagram {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
footer .link-instagram a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    height: 50px;
    text-transform: uppercase;
    font-weight: 700;
}
footer .link-instagram i {
    font-size: 42px;
}
#creditos {
    font-size: 10px;
    text-transform: uppercase;
    color: white;
    text-align: center;
    height: 28px;
    line-height: 28px;
}

/*-xl*/
@media (max-width: 1399.98px) {
}

/*-lg*/
@media (max-width: 1199.98px) {
}

/*-md*/
@media (max-width: 991.98px) {
    .sobre-o-festival .titulo-secao {
        margin-bottom: 50px;
    }
    .sobre-o-festival .nome-festival {
        text-align: center;
        margin-bottom: 50px;
    }
    .descricao-festival {
        margin-bottom: 50px;
    }
    #realizacao img {
        max-width: 100%;
    }

    .faixa-objeto-1,
    .faixa-objeto-2,
    .faixa-objeto-3,
    .faixa-objeto-4 {
        position: relative;
        text-align: center;
    }
    .objeto {
        padding: 20px 0;
    }
    .objeto.objeto-1 {
        position: static;
        right: auto;
        top: auto;
    }
    .objeto.objeto-2 {
        position: static;
        left: auto;
    }
    .objeto.objeto-3 {
        position: static;
        right: auto;
    }
    .objeto.objeto-4 {
        position: static;
        top: auto;
        right: auto;
    }
    .objeto img {
        max-width: 200px;
        max-height: 150px;
    }

    #logo .data {
        position: static;
        text-align: center;
        padding: 20px 0;
    }
    #logo .data br {
        display: none;
    }
}

/*-sm*/
@media (max-width: 767.98px) {
    #bt-menu {
        position: fixed;
        z-index: 8;
        right: 20px;
        top: 20px;
        background: var(--cor-6);
        width: 30px;
        height: 30px;
        overflow: hidden;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4);
    }
    #bt-menu i {
        color: white;
        font-size: 20px;
    }
    #bt-menu .bi-x {
        display: none;
    }
    #bt-menu.active .bi-x {
        display: inline;
    }
    #bt-menu.active .bi-list {
        display: none;
    }
    #menu {
        margin-bottom: 0;
        position: fixed;
        z-index: 5;
        background: var(--cor-7);
        width: 100%;
        height: 100%;
        top: 0;
        left: -101vw;
        transition: 0.3s;
    }
    #menu ul {
        margin: 0;
        justify-content: center;
        flex-direction: column;
        padding-left: 20%;
        height: 100vh;
    }

    #menu.active {
        left: 0;
    }

    #logo {
        margin-bottom: 20px;
        position: relative;
        z-index: 6;
        padding-top: 40px;
    }
    #logo h1 img {
        max-width: 95%;
    }
    #banner img {
        max-width: 95%;
    }

    .sobre-o-festival .nome-festival {
        font-size: 38px;
    }
    .sobre-o-festival .titulo-secao {
        margin-bottom: 0px;
    }
    .sobre-o-festival h5 {
        font-size: 38px;
    }

    .sobre-o-festival {
        padding: 40px 0 90px 0;
    }

    .descricao-festival {
        margin-bottom: 30px;
    }
}

/*-xs*/
@media (max-width: 575.98px) {
    #layer-1 {
        display: none;
    }
    #home {
        height: 180px;
    }
    .titulo-secao {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    #banner {
        height: 100px;
    }
    #banner img {
        filter: drop-shadow(10px 15px 30px rgba(0, 0, 0, 0.3));
    }

    #logo {
        margin-bottom: 0;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 6;
        padding: 20px 0 10px 0;
        width: 100%;
        background-color: var(--cor-5);
        box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
    }
    #logo .data {
        padding: 0;
    }
    #logo .data strong {
        font-size: 14px;
        line-height: 16px;
        display: inline;
        margin: 0;
    }
    #logo .data span {
        font-size: 12px;
        line-height: 14px;
        display: inline;
    }
    #logo h1 img {
        height: 100px;
    }

    footer .link-instagram {
        justify-content: flex-start;
    }
}

#foto-banner-01 {
    animation: rotate360 250s linear infinite;
}

.estrela img {
    animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
