* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primaria: #4f46e5;
    --secundaria: #7c3aed;
    --escuro: #0f172a;
    --maisEscuro: #0a0f1c;
    --claro: #e2e8f0;
    --vidro: rgba(255, 255, 255, 0.1);
    --azul: #004d7a;
    --asdasd: #a09123;
}



body {
    background-color: var(--escuro);
    color: var(--claro)
}

.navegacao {
    position: fixed;
    top: 0;
    background: rgba(13, 20, 37, 0.9);
    width: 100%;
    z-index: 100;
    padding: 1.5rem;
}

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

.menu-link {
    text-decoration: none;
    color: var(--claro);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.menu-link::after {
    content: '';
    height: 2px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: linear-gradient(90deg, var(--primaria), var(--secundaria));
    transition: width 0.5s ease;
}

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

.cabecalho {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.foto-perfil {
    width: 200px;
    height: 200px;
    box-shadow: 0 0 20px rgba(79,70,229, 0.3);
    border-radius: 50%;
    border: 4px solid var(--azul);
    
}

.nome-perfil {
    font-size: 3rem;
    color: var(--primaria);
    font-weight: bold;
    margin: 10px;
}

.texto-perfil {
    font-size: 1.3rem;
    color: var(--claro)
}

.sobre {
    padding: 4rem 2rem;
}

.sobre-titulo {
    font-size: 2.5rem;
    color: var(--claro);
    text-align: center;
    margin-bottom: 20px;
}

.sobre-box {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    border: 1px solid var(--vidro); 
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.sobre-texto {
    text-align: center;
    font-size: 1rem;
}

.projetos {
    padding: 4rem 2rem;
}

.projetos-título {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.projeto-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--vidro);
    overflow: hidden;
}

.projeto-card:hover {
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
    transform: translate(-10px) scale(1.3);
    transition: all 0.5s ease;
    cursor: pointer;
}

.projetos-imagens {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

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

.nome-projeto {
    margin-bottom: 5px;
}

.descricao-projeto {
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.25rem;
}

.contatos {
    padding: 4rem 2rem;
}

.contatos-titulo {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.div-contato {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border: 1px solid var(--vidro);
    border-radius: 16px;
}

.subtitulo-contato {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--claro)
}

.paragrafo-contato {
    text-align: center;
    margin-bottom: 1.5rem;
}

.redes-sociais {
    max-width: 100%;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.redes-sociais a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    color: var(--claro);
    font-size: 18px;
}

.redes {
    text-decoration: none;

}

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

.form-label {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--claro);
    resize: none;
}

.form-botao {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    color: var(--claro)
}

.rodape {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    background: rgba(13, 20, 37, 0.9);
    width: 100%;
    z-index: 100;
    padding: 1.5rem;
}

