/*========Fonte Text========*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*===================*/

/*========Body========*/
* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*===================*/

/*========Body========*/
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    padding-top: 58px;
}

/*===================*/

/*========Nav========*/
@media (min-width: 461px) {
    #navMv {
        display: none;
    }

    #navPc {
        padding: 0px;
        margin: 0px;
        width: 100%;
        height: 58px;
        background-color: #260041;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }

    nav h2 {
        color: white;
        font-size: 2.5rem;
        font-weight: bold;
    }

    .hrefs {
        width: 30rem;
        /* margin-top: 1.5em; <-- REMOVIDO PARA CENTRALIZAR VERTICALMENTE */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    .hrefs p {
        color: #FFF;
        font-family: "Montserrat", sans-serif;
        font-size: 1rem;
        font-weight: 300;
    }

    .watts {
        width: 8em;
        height: 1em;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-around;
    }

    .svgNav {
        display: flex;
        align-items: center;
    }

    .svgNav svg{
        width: 21px;
        height: 21px;
    }

    .querConversar {
        width: 6em;
        height: 0.8em;
        background-color: white;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .TextNav {
        color: black;
        font-family: "Montserrat", sans-serif;
        font-size: 0.6rem;
        font-style: normal;
        font-weight: 600;
        line-height: 1;
    }
}

@media (max-width: 460px) {
    #navPc {
        display: none;
    }

    #navMv {
        width: 100%;
        max-width: 100vw;
        height: 58px;
        background-color: #260041;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    #navMv h2 { font-size: 2.2rem; }

    .menu-container {
        margin: 0px;
        padding: 0px;
        position: relative;
        display: inline-block;
    }

    .menu-btn {
        margin: 0px;
        padding: 0px;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: white;
    }

    .menu-dropdown {
        display: none;
        position: absolute;
        background-color: #12001f;
        min-width: 150px;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1;
        border-radius: 13px;
    }

    .menu-dropdown a {
        color: white;
        font-size: 20px;
        font-family: "Montserrat", sans-serif;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .menu-dropdown a:hover {
        background-color: #390061;
        border-radius: 10px;
    }

    .show {
        display: block;
    }

    .watts {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        width: auto;
        height: auto;
    }
    .svgNav svg {
        width: 21px;
        height: 21px;
    }
    .querConversar {
        background-color: transparent;
        width: auto;
        height: auto;
    }
    .TextNav {
        color: white;
        font-size: 0.6rem;
        font-weight: 500;
        line-height: 1;
    }
}

/*===================*/

/*========a========*/
a {
    text-decoration: none;
}