@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-image: url("images/imagem_de_fundo.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'Poppins';
    color: #fff;
}

nav {
    display: flex;
    justify-content: flex-end;
    padding: 0 20px;
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 60px;
}

nav li:first-child {
    margin-right: auto;
}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
}

nav a:hover {
    color: #dcdcdc;
}

.icon {
    fill: #fff;
}

.logotipo {
    font-weight: bold;
    font-size: 1.6rem;
}

.sidebar {
    position: fixed;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1px);
    font-weight: bold;
    display: flex;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 998;
    display: none;
}

.content {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 30px;

    color: #fff;
    font-weight: bold;
    text-align: center;
}

.content h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.content p {
    max-width: 600px;
    padding: 0 20px;
    line-height: 1.0;
}

.menuButton {
    display: none;
}

.closeButton {
    display: none;
}

body.menu-open {
    overflow: hidden;
}


@media (max-width: 800px) {
    .menuButton {
        display: flex;
    }

    .hideMobile {
        display: none;
    }

    .closeButton {
        display: none;
    }

    .overlay {
        cursor: pointer;
    }

    .sidebar {
        top: 0;
        right: 0;
        height: 100vh;
        width: 170px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar a {
        font-size: 13 vc34efpx;
    }
}

@media (min-width: 801px) {
    .content p {
        font-size: 1.2em;
    }

    .menuButton {
        display: flex;
    }

    .hideMobile {
        display: none;
    }

    .closeButton {
        display: none !important;
    }

    .overlay {
        cursor: pointer;
    }

    .sidebar {
        top: -100%;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 60px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);

        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 48px;
        padding: 10px 20px;

        transition: top 0.4s ease;
    }

    .sidebar.active {
        top: 0;
    }

    .sidebar a {
        transition: transform 0.2s ease, color 0.2s ease;
        transform-origin: center;

        font-size: 0.8em;
        padding: 8px 12px;
    }

    .sidebar a:hover {
        transform: scale(1.00) translateY(-2px);
    }

    .sidebar li {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 800px) and (orientation: landscape) {
    .sidebar {
        top: -100%;
        left: 0;
        right: auto;

        width: 100%;
        height: auto;
        min-height: 60px;

        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;

        gap: 20px;
        padding: 10px;

        transform: none;
        transition: top 0.4s ease;
    }

    .sidebar.active {
        top: 0;
    }

    .sidebar a {
        font-size: 11px;
        padding: 8px 10px;
    }
}