/* === Configurações Globais === */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 20px;
    background-color: rgb(30, 30, 35);
    color: white;
    overflow-y: scroll;
}

/* === Header e Navegação === */
header {
    display: flex;
    flex-direction: column; 
    align-items: center; 
}

.nav-bar {
    display: flex;
    justify-content: center;
    gap: calc(10px + 20vw);
    flex-wrap: wrap;
}

.nav-bar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    min-width: 100px;
    max-width: 140px;
    display: inline-block;
    text-align: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-bar a:hover {
    filter: brightness(70%);
    transform: scale(1.5);
}

/* === Conteúdo Principal === */
.main-index {
    margin-top: 125px;
    text-align: center;
    width: calc(100vw - 396px);
}

.container {
    display: flex;
    align-items: center; 
    gap: 40px;

}

.profile-photo-container {
    margin-top: 150px; 
}

.profile-photo {
    width: 300px;
    border-radius: 25%;
}

/* === Redes Sociais === */
.social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-links a img {
    transition: filter 0.2s ease, transform 0.2s ease;
}

.social-links a:hover img {
    filter: brightness(70%);
    transform: scale(1.5);
}

/* === Sobre mim === */
.main-sobre {
    margin-top: 75px;
}

.sobre-section {
    margin-bottom: 20px;
    text-align: left;
}

/* === Projetos === */
.main-projetos {
    margin-top: 75px;
}

.box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.box.left {
    flex-direction: row;
}

.box.right {
    flex-direction: row-reverse;
}

.main-projetos a {
    color: white;
}

/* === Curiosidades === */
.main-curiosidades {
    margin-top: 75px;
}

li {
    list-style-type: none; 
}

/* === Imagens === */
.pinkman-img {
    width: 300px;
    height: auto;
}

.resumeai-img {
    width: 525px;
    height: auto;
}

.metralha-img {
    width: 300px;
    height: auto;
    border-radius: 15px;
}

.sport-img {
    width: 150px;
    height: auto;
}

.cc-img {
    width: 425px;
    height: auto;
}

.cliff-img {
    width: 250px;
    height: auto;
    border-radius: 15px;
}

/* === Responsividade === */
@media screen and (max-width: 768px) {
    [data-pagination] {
        width: 100%;
        flex-direction: column;
    }

    .nav-bar {
        flex-direction: column;
        gap: 20px;
    }

    .container {
        flex-direction: column;
        gap: 20px;
    }

    .profile-photo-container {
        margin-top: 50px;
    }

    .main-index {
        margin-top: 25px;
        width: auto;
    }

    .main-projetos ul {
        padding: 0;
        text-align: center;
    }
    
    .main-curiosidades ul {
        padding: 0;
        text-align: center;
    }

    .resumeai-img {
        width: 300px;
        height: auto;
    }

    .box {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center;
    }
}