@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

body {
    padding-top: 95px; /* Espaço suficiente para o header fixo */
    padding-bottom: 50px; /* Espaço suficiente para o footer fixo */
    background-color: #111111;  
}
/* Estilos para o nav fixo no topo */
nav {
    background-color: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    height: 85px;
    position: fixed; /* Fixa o nav no topo */
    top: 0;
    left: 0;
    width: 100%; /* Garante que o nav ocupe toda a largura da tela */
    z-index: 1000; /* Garante que o nav fique sobre o conteúdo */
}

/* Mantém os estilos atuais para o logo, botões de navegação e redes sociais */
/* Logo estilos */
#logo {
    margin-left: 50px;
}
#logo img {
    height: 75px;
}
#logo img:hover {
    transform: scale(1.1);
    opacity: 80%;
    transition: 0.6s ease;
}
/* Botões de Navegação */
#botoes-navegacao {
    display: flex;
    gap: 30px;
}
#botoes-navegacao a {
    font-size: 20px;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.6s ease;
    border-bottom: 3px solid transparent;
}
#botoes-navegacao a:hover, #botoes-navegacao a.active{
    color: #b74b4b;
    border-bottom: 3px solid #b74b4b;
}

/* Redes sociaisa*/
#social-media {
    display: flex;
    gap: 10px;
    margin-right: 50px;
}
#social-media img {
    width: 50px;
    height: 50px;
}
#social-media img:hover {
    transform: scale(1.3);
    opacity: 60%;
    transition: 0.9s ease;
}
/* Estilos para o main */
main span {
    color: #b74b4b;
}
section#home{
    min-height: 100vh;
    padding: 60px 6% 50px;
}

.home-content h1, .home-content span{
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3;
}

.home-content h3{
    margin-bottom: 15px;
    font-weight: 700;
}

.home-content p{
    font-size: 20px;
}

.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background-color: transparent;
    border: 3px solid #b74b4b;
    font-size: 32px;
    border-radius: 50%;
    margin: 46px 25px 46px 0;
    transition: 0.3s ease;
    color: #b74b4b;
}

.social-icons a:hover{
    color: black;
    transform: scale(1.3) translateY(-5px);
    background-color: #b74b4b;
    box-shadow: 0  0 25px #b74b4b;
}
.btn{
    display: inline-block;
    padding: 10px 35px;
    background-color: rgba(0, 0, 0, 0.527);
    border-radius: 64px;
    font-size: 20px;
    color: #b74b4b;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid #b74b4b;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn:hover{
    transform: scale3d(1.03);
    background-color: #b74b4b;
    color: black;
    box-shadow: 0 0 25px #b74b4b;
}
.typing-text{
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
}

.typing-text span{
    position: relative;
    font-size: 50px;
   
}

.typing-text span::before{
    content: "Software Developer";
    color: #b74b4b;
    animation: words 20s infinite, inicial;
}

.typing-text span::after{
    content: "";
    position: absolute;
    height: 100%;
    right: -8;
    animation: cursor 0.6s infinite;
}

@keyframes cursor{
    to{
        border-left: 3px solid #b74b4b;
    }
}

@keyframes words{
    0%, 20%{
        content: "Web Developer";
    }
    21%, 40%{
        content: "Developer";
    }
    41%, 60%{
        content: "Graphic Design";
    }
    61%, 80%{
        content: "IT Technician";
    }
    81%, 100%{
        content: "Systems Analyst";
    }
}

/* Estilos para o footer fixo na base */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111111;
    z-index: 1000;
    padding: 10px 0;
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    height: 40px; /* Define uma altura fixa para o footer */
    text-align: center;
}

footer a {
    margin-left: 15px;
    padding: 10px 20px;
    border-radius: 10px;
    
}
footer a:hover {
    font-size: 17px;
    background-color: rgba(255, 255, 255, 0.062);
    color: #b74b4b;
    transition: 0.6s ease;
}

span.oculto{
    display: none;
}
/*Página 02 */

main #projects-home {
    margin-bottom: 50px;
}
main #projects-home h1 {
    margin: 50px 0px 0px 30px;
}
main #projects-home h2 {
    margin: 20px 0px 0px 30px;
}
main #projects-home li, #projects-home p {
    margin: 20px 0px 0px 80px;
}
main #projects-home a { 
    border-bottom: 1px solid blue;
}
