/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Estilização geral */
body {
    background-color: #181818;
    color: white;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2% 5%;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
}

.btn {
    padding: 0.5rem 1rem;
    border: 2px solid #016DCA;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: #016DCA;
    color: white;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    text-align: center;
}

#apresentacao {
    margin-top: 2rem;
    position: absolute;
    top: 350px;
    left: 260px;
    text-align: left;
}

.hello {
    color: #016DCA;
    font-size: 1rem;
}

h1 {
    font-size: 3rem;
    margin: 1rem 0;
}

.subtitle {
    font-size: 1.125rem;
    opacity: 0.8;
}

/* Foto de Perfil (círculo) */
.profile-pic {
    width: 45vw;
    height: 45vw;
    background-color: #303030;
    border-radius: 50%;
    margin-top: 2rem;
    position: absolute;
    top: 200px;
    left: 1000px;
    transform: translateX(-50%);
}

/* Ícones sociais */
.socials {
    position: absolute;
    top: 25vh;
    left: 90vw;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.socials a img {
    width: 2.5rem;
    height: 2.5rem;
    filter: invert(1); /* Deixa os ícones brancos */
    transition: filter 0.3s, background-color 0.3s;
}

.socials a img:hover {
    filter: invert(0); /* Deixa os ícones na cor original */
    background-color: #016DCA; /* Muda a cor de fundo dos ícones */
    border-radius: 50%; /* Adiciona bordas arredondadas */
}

/* Media Queries */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-pic {
        width: 60vw;
        height: 60vw;
        top: 40vh;
    }

    .socials {
        top: 20vh;
        left: 80vw;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}
