@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Freckle+Face&family=Oswald:wght@200..700&family=TASA+Orbiter:wght@400..800&family=Tektur:wght@400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Tektur", sans-serif;
    color: var(--quarta-cor);
}

/* Essa propriedade é usada para controlar o comportamento de rolagem em elementos de rolagem.
Quando definida como 'smooth', a rolagem ocorre de forma suave, com uma transição gradual,
em vez de um deslocamento abrupto. Isso cria uma experiência de rolagem mais suave e agradável
   para os usuários. */

html {
    scroll-behavior: smooth;
}

:root {
    --primeira-cor: #000DFF;
    --segunda-cor: #000000;
    --terceira-cor: #000561;
    --quarta-cor: #ffffffd6;
    --quinta-cor: #0a1081;
    --sexta-cor: #3942e7;
    --sentima-cor: #0408baa5;
    --oitava-cor: #360388;
}



body {

    background-image: url(../img/ChatGPT\ Image\ 21\ de\ abr.\ de\ 2026\,\ 19_50_53.png);
    background-repeat: no-repeat;
    background-size: 100% 101%;
    background-position: center;

}

/*////////////////////////////////menu de navegação////////////////////////////////////// */
.navegacao {
    position: fixed;
    background-color: rgba(15, 23, 42, 0.8);
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 1.5rem;
}

.menu {
    display: flex;
    gap: 3rem;
    justify-content: center;
    list-style: none;
}

.menu-link {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

/* efeito de sublinhado animado para os links do menu */
.menu-link::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--oitava-cor);
    left: 0;
    bottom: 0;
    transition: 0.4s ease-in-out;
}

.menu-link:hover::before {
    width: 100%;
}

/* //////////////////////////////////inicio////////////////////////////////////// */

.comeco {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.foto-do-perfil {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--oitava-cor);
    box-shadow: 0 0 10px var(--quinta-cor);
    animation: flutuar 3s ease-in-out infinite;
}

h1 {
    font-size: 3.0rem;
    color: white;
    font-weight: bold;
    margin: 10px;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.sub-descrição {
    font-size: 1.5rem;
    font-family: "Bebas Neue", sans-serif;
    color: white;
    font-weight: bold;
    margin: 10px;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.descricao {
    max-width: 600px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--quarta-cor);
    line-height: 1.5rem;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

/* //////////////////////////////////sobre mim////////////////////////////////////// */

.sobre {
    padding: 6rem 2rem;
}

.sobre-titulo {
    font-size: 3rem;
    color: white;
    font-weight: bold;
    text-align: center;
    margin: 10px;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

/* margin auto para centralizar a caixa de texto, max-width para limitar a largura e padding para espaçamento interno */
.sobre-caixa {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border-radius: 16px;
    border: 1px solid;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.457);
}

.sobre-texto {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}


/* //////////////////////////////////serviços////////////////////////////////////// */

.servicos {
    padding: 6rem 2rem;
}

.servicos-titulo {
    text-align: center;
    font-size: 2.7rem;
    color: white;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.servicos-caixa {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border-radius: 16px;
    border: 4px solid var(--oitava-cor);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.671);
}

.servicos-texto {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

ul,
li {
    list-style: none;
}





/* //////////////////////////////////projetos////////////////////////////////////// */

.projetos {
    padding: 6rem 2rem;
}

.projetos-titulo {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.projetos-caixa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.projetos-card {
    border-radius: 16px;
    border: 1px solid var(--segunda-cor);
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.536);
    padding: 1rem;
    overflow: hidden;
    cursor: pointer;
}


.projeto-card-imagem {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
}


.projeto-card-titulo {
    font-size: 1.5rem;
    margin: 1rem 0;
    text-align: center;
    color: white;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.projetos-card:hover {
    box-shadow: 0 0 20px var(--oitava-cor);
    transform: translateY(-10px) scale(1.03);
    transition: 0.8s ease;
}

.projeto-card-descricao {
    color: var(--quarta-cor);
    line-height: 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.projeto-caixa-texto {
    padding: 1.5rem;
}


.projeto-card-botao {
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 2px solid var(--segunda-cor);
    background-color: rgba(12, 9, 201, 0.775);
    color: white;
    text-decoration: none;
    cursor: pointer;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.projeto-card-botao:hover {
    background-color: var(--terceira-cor);
    border-color: var(--segunda-cor);
    transition: 0.5s ease;
}

/* //////////////////////////////////contato////////////////////////////////////// */

.contato {
    padding: 6rem 2rem;
}

.contatos-titulo {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.formulario-contato {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--segunda-cor);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.457);
}

.formulario-grupo {
    margin-bottom: 1.5rem;
}

.formulario-texto {
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid var(--segunda-cor);
    background-color: rgba(74, 5, 194, 0.775);
    color: white;
    font-size: 1rem;
    resize: vertical;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
    outline: none;
}

.formulario-texto:focus {
    border-color: var(--segunda-cor);
    background-color: rgba(74, 5, 194, 0.775);
    transition: 0.3s ease;
}

input::placeholder {
    color: white
}

textarea::placeholder {
    color: white
}

.formulario-botao {
    display: block;
    margin: 0 auto;
    padding: 0.75rem;
    border-radius: 5px;
    border: 2px solid var(--segunda-cor);
    background-color: rgba(74, 5, 194, 0.775);
    color: white;
    cursor: pointer;
    font-size: 1rem;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
    text-align: center;
    width: 100%;
}

.formulario-botao:hover {
    background-color: var(--terceira-cor);
    border-color: var(--segunda-cor);
    transition: 0.5s ease;
}

/*////////////////////////rede social//////////////////////////////*/


.meio-de-contato {
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.meio-de-contato-titulo {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.img-contato {
    width: 100px;
    height: 100px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s ease;

}


.contatos-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.rede {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}


.texto-rede-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--quarta-cor);
    font-size: 1rem;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
    text-decoration: none;
}

.texto-rede-social:hover {
    color: var(--oitava-cor);
    transition: 0.3s ease;
}


/* //////////////////////////////////rodape////////////////////////////////////// */

rodape {
    padding: 1rem;
    text-align: center;
}

.rodape-texto {
    color: white;
    font-size: 1.5rem;
    text-shadow: -2px -2px 0 black,
        2px -2px 0 black,
        -2px 2px 0 black,
        2px 2px 0 black;
}

.particulas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background: radial-gradient(circle, rgba(42, 14, 227, 1) 0%, rgba(11, 11, 143, 1) 18%, rgba(10, 27, 102, 1) 57%, rgba(7, 2, 38, 1) 100%);


}

@keyframes flutuar {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}