/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo da página */
body {
    font-family: 'Fira Code', monospace;
    line-height: 1.6;
    background-color: #f8f9fa; /* Branco suave */
    color: #333;
    font-size: 1rem;
}

/* Cabeçalho */
header {
    background-color: #DB4437; /* Vermelho */
    color: white;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    font-size: 2rem;
}

/* Navegação */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffcc00; /* Amarelo */
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #ff6f00; /* Laranja */
}

/* Seção "Sobre Mim" */
.about {
    text-align: center;
    padding: 120px 20px;
    background-color: #ffffff;
    margin-bottom: 20px;
}

.about h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1d4e89; /* Azul */
    font-weight: bold;
    margin-top: 20px;
}

.profile-pic {
    max-width: 350px;
    border-radius: 50%;
    margin-top: 20px;
}

/* Bloco de texto narrativo */
.text-block {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffcc00; /* Amarelo */
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.narrative-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

/* Contato */
#contact {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

#contact h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #964b00; /* Marrom */
}

/* "Parceiro de TI para Trabalhos e Projetos" */
.partner-text {
    color: #1d4e89; /* Azul */
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 20px;
}

/* Botões de redes sociais */
.centered {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.2rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
}

/* Estilos para GitHub */
.github {
    background-color: #24292f;
}

.github:hover {
    background-color: #1a1f27;
}

/* Estilos para LinkedIn */
.linkedin {
    background-color: #0077b5;
}

.linkedin:hover {
    background-color: #005582;
}

/* Estilos para Gmail */
.gmail {
    background-color: #DB4437;
}

.gmail:hover {
    opacity: 0.8;
}

/* Rodapé */
footer {
    text-align: center;
    background-color: #964b00; /* Marrom */
    color: white;
    padding: 12px;
}

footer p {
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    .about, .text-block, #contact {
        padding: 30px 10px;
    }

    .profile-pic {
        max-width: 250px;
    }

    .narrative-text {
        font-size: 1rem;
    }

    .social-btn {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    .profile-pic {
        max-width: 200px;
    }

    .narrative-text, #contact p {
        font-size: 1rem;
    }
}
