* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

p {
    font-family: "Fira Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #d4af37;
}

.cabecalho-fixo {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 60px);
    max-width: 1450px;

    padding: 18px 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(10, 10, 10, 0.72);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 22px;

    z-index: 1000;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);

    transition: 0.35s ease;
}

.area-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.imagem-logo {
    height: 58px;
    width: auto;

    object-fit: contain;

    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.18));
}

.texto-logo {
    font-family: "Orbitron", sans-serif;

    font-size: 1.1rem;
    font-weight: 700;

    color: #fff;

    letter-spacing: 1px;
}

.imagem-logo:hover {
    transform: scale(1.05);
}


.menu-navegacao {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-navegacao a {
    position: relative;

    padding: 12px 18px;

    border-radius: 12px;

    font-family: "Lexend", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;

    color: #f1f1f1;

    transition: 0.3s ease;
}

.menu-navegacao a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.08);
}

.menu-navegacao a::after {
    content: '';

    position: absolute;

    left: 50%;
    bottom: 6px;

    transform: translateX(-50%);

    width: 0%;
    height: 2px;

    border-radius: 20px;

    background: #d4af37;

    transition: 0.3s ease;
}

.menu-navegacao a:hover::after {
    width: 60%;
}

.secao-inicial {
    position: relative;
    width: 100%;
    height: 100vh;



    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.overlay-inicio {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top right,
            rgba(212, 175, 55, 0.18),
            transparent 30%),

        radial-gradient(circle at bottom left,
            rgba(255, 255, 255, 0.06),
            transparent 25%);
}

.conteudo-inicial {
    position: relative;
    z-index: 2;

    max-width: 900px;
    padding: 20px;
    text-align: center;

    animation: surgir 1.2s ease;
}

.badge-dev {
    display: inline-block;

    padding: 10px 22px;
    margin-bottom: 25px;

    border-radius: 40px;

    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);

    color: #d4af37;

    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;

    font-family: "Lexend", sans-serif;

    backdrop-filter: blur(10px);
}

.conteudo-inicial h1 {
    font-family: "Orbitron", sans-serif;
    font-size: 5rem;
    line-height: 1.1;

    margin-bottom: 20px;

    color: #fff;
}

.conteudo-inicial h1 span {
    color: #d4af37;
}

.conteudo-inicial p {
    max-width: 760px;

    margin: 0 auto 35px;

    font-size: 1.2rem;
    line-height: 1.8;

    color: #d6d6d6;
}

.botoes-inicio {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

#botao-projetos {
    padding: 15px 40px;

    border: none;
    border-radius: 14px;

    background: linear-gradient(135deg, #d4af37, #f3d26a);

    color: #000;

    font-size: 1rem;
    font-weight: 700;

    cursor: pointer;

    transition: 0.35s ease;
}

#botao-projetos:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.35);
}

.botao-contato {
    padding: 15px 40px;

    border-radius: 14px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(10px);

    color: #fff;

    font-weight: 600;

    transition: 0.35s ease;
}

.botao-contato:hover {
    transform: translateY(-4px);

    border-color: rgba(212, 175, 55, 0.5);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);

    color: #d4af37;
}

@keyframes surgir {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .conteudo-inicial h1 {
        font-size: 3rem;
    }

    .conteudo-inicial p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .botoes-inicio {
        flex-direction: column;
    }

    #botao-projetos,
    .botao-contato {
        width: 100%;
        max-width: 320px;
    }
}

.secao-conteudo {
    padding: 100px 20px;
    max-width: 1150px;
    margin: 0 auto;
}

.secao-conteudo h2 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Source Code Pro', monospace;
    margin-bottom: 50px;
    color: #fff;
}

.secao-conteudo h2::after {
    content: '';
    display: block;
    width: 130px;
    height: 3px;
    background: #d4af37;
    margin: 12px auto 0;
}

.secao-conteudo p {
    text-align: center;
    font-size: 1.1rem;
    color: #ddd;
    max-width: 850px;
    margin: 0 auto;
}

.grade-habilidades {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    justify-items: center;
}

.item-habilidade {
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    width: 100%;
    max-width: 160px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.item-habilidade img {
    width: 60px;
    margin-bottom: 12px;
}

.item-habilidade span {
    display: block;
    font-weight: bold;
    color: #fff;
}

.item-habilidade:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.conteudo-perfil {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.foto-perfil {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid #f6f5f2;
    object-fit: cover;
}

.texto-perfil {
    max-width: 650px;
    font-size: 1.15rem;
    text-align: center;
    color: #ddd;
}

.grade-projetos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.card-projeto {
    background: linear-gradient(180deg, #0c0c0c, #050505);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
}

.card-projeto::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.12),
            transparent,
            rgba(255, 255, 255, 0.03));
    opacity: 0;
    transition: 0.4s;
}

.card-projeto:hover::before {
    opacity: 1;
}

.card-projeto:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(212, 175, 55, 0.18);
}

.imagem-projeto {
    overflow: hidden;
    height: 220px;
}

.imagem-projeto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.card-projeto:hover .imagem-projeto img {
    transform: scale(1.08);
}

.conteudo-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-projeto {
    min-height: 560px;
}

.tag-projeto {
    width: fit-content;
    padding: 7px 14px;
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-projeto h3 {
    font-size: 1.6rem;
    color: #fff;
    font-family: "Orbitron", sans-serif;
}

.card-projeto p {
    text-align: left;
    color: #cfcfcf;
    line-height: 1.7;
    font-size: 0.98rem;
}

.tecnologias-projeto {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tecnologias-projeto span {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    font-size: 0.85rem;
    color: #f1f1f1;
}

.botao-projeto {
    margin-top: auto;
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #d4af37, #f1d67a);
    color: #000;
    font-weight: 700;
    text-align: center;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.botao-projeto:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    color: #000;
}

.grade-contatos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
    margin-top: 40px;
}

.card-contato {
    height: 140px;
    background: linear-gradient(180deg, #0a0a0a, #050505);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;

    transition: 0.35s ease;
}

.card-contato:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(212, 175, 55, 0.18);
}

.card-contato i {
    font-size: 2rem;
    color: #d4af37;
}

.card-contato span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    font-family: "Lexend", sans-serif;
}

.rodape {
    padding: 25px;
    text-align: center;
    border-top: 1px solid #eae9e3;
    color: #ffffff;
    font-size: 0.9rem;
}

.animacao-entrada {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animacao-entrada.visivel {
    opacity: 1;
    transform: translateY(0);
}

html {
    scrollbar-width: none;
}

body {
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}



@media (max-width: 900px) {

    .cabecalho-fixo {
        width: calc(100% - 20px);
        padding: 14px 18px;
        border-radius: 18px;
    }

    .texto-logo {
        display: none;
    }

    .imagem-logo {
        height: 45px;
    }

    .menu-navegacao {
        gap: 2px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .menu-navegacao a {
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    .conteudo-inicial {
        padding: 20px;
    }

    .conteudo-inicial h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .conteudo-inicial p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .botoes-inicio {
        flex-direction: column;
        width: 100%;
    }

    #botao-projetos,
    .botao-contato {
        width: 100%;
        max-width: 320px;
    }

    .secao-conteudo {
        padding: 80px 18px;
    }

    .secao-conteudo h2 {
        font-size: 2rem;
    }

    .grade-projetos {
        grid-template-columns: 1fr;
    }

    .card-projeto {
        min-height: auto;
    }

    .grade-contatos {
        grid-template-columns: repeat(2, 1fr);
    }
}