body {
    background-color: #0c0c0c;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#particles-js canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: auto;
}

.container, header, nav, .intro, .texto, .foto {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

header {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    padding: 10px 20px;
    text-align: center;
}

header .logo {
    font-weight: bold;
    margin-bottom: 10px;
}

header nav {
    display: flex;
    gap: 10px;
}

header nav a {
    color: white;
    text-decoration: none;
}

.container {
    margin-top: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    max-width: 100%;
}

.intro .texto {
    max-width: 100%;
}

.intro .ola {
    color: #02D35F;
    font-size: 2.2em;
    margin-bottom: 10px;
}

.intro h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.foto {
    max-width: 80%;
    margin-top: 20px;
}

.foto img {
    max-width: 100%;
    height: auto;
    z-index: 1;
    bottom: 0px;
}

.mnt{
    padding-top: 20px;
    font-size: 10px;
    color: #5a5a5a;
}

.faixa-right{
    margin-top: 30px;
    display: flex;
    position: absolute;
    width: 40%;
    height: 10px;
    background-color: #02D35F;
    right: 0px;
}

.faixa-left{ 
    display: flex;
    position: relative;
    width: 100%;
    height: 10px;
    margin-top: -115px;
    background-color: #02D35F;
}

/* ============================== */
/* Ajustes para Telas Maiores */
/* ============================== */

@media (min-width: 768px) {
    header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    header .logo {
        margin-bottom: 0;
    }

    header nav {
        flex-direction: row;
        gap: 20px;
    }

    .container {
        padding: 80px;
        flex-direction: row;
    }

    .intro {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        max-width: 1200px;
    }

    .intro .texto {
        max-width: 60%;
    }

    .foto {
        max-width: 40%;
        margin-top: 0;
    }

    .intro h1 {
        font-size: 38px;
    }

    .faixa-left{
        margin: -50px;
        width: 600px;
        height: 10px;
        background-color: #02D35F;
        right: 0px;
    }

    .faixa-right{
        margin-top: 50px;
        display: flex;
        position: absolute;
        width: 600px;
        height: 10px;
        background-color: #02D35F;
        right: 0px;
    }

    .mnt{
        display: none;
    }
}
