* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 /* e */
html {
    scroll-behavior: smooth;
}

:root {

    --primaria: #4f46ef;
    --secundaria: #7c3aed;
    --terciario: rgb(238, 5, 149, 0.656);
    --escuro: #0f1527;
    --maisEscuro: #050916;
    --claro: #e2e8f0;
    --vidro: #rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--escuro);
    color: var(--claro);
     user-select: none;
    }
 
 






.navegacao {
    position: fixed;
    top: 0;
    background: rgba(15, 23, 42, 0.8);
    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: linear-gradient(90deg, var(--secundaria), var(--terciario));
    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 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--vidro);
    box-shadow: 0 0 20px rgba(226, 7, 120, 0.819);
    animation: flutuar 4s ease-in-out infinite;
    
    
}

  .foto-perfil img{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }




h1 {
    font-size: 3.5rem;
    color: var(--terciario);
    font-weight: bold;
    margin: 20px;


}

.cabecalho-subtitulo {
    font-size: 1.5rem;
    color: var(--claro);
    text-align: center;
}

.sobre {
    padding: 6rem 2rem;


}

.foto-mini
{
    width: 50px;
}

.sobre-titulo {
    display: flex;
    justify-content: center;
    font-size: 3rem;
    color: var(--terciario);
    text-align: center;
    margin-bottom: 20px;
}

 

.sobre-caixa{
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    border: 1px solid var(--vidro);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);

}

.sobre-texto {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;

}



 

.projetos
{
    
    padding:6rem 2rem;
    color: var(--terciario);
}
 




.projetos-caixa
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;  
}

.projetos-card:hover
{
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--vidro);
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    
}
.projetos-titulo
{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;

     
}

.projetos-card:hover
{
    box-shadow: 0 10px 20px rgba(238, 5, 149, 0.656);
    transform: translateY(-10PX) scale(1.03);
}


.projetos-imagem {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.caixa-textos-projeto
{
    padding: 1.5rem;
}

.texto-projetos
{
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.25rem;
}

.info-projetos
{
    margin-bottom: 5px;
}


.contatos
{
    padding: 6rem 2rem;
}

.foto-mini-02
{
    width: 50px;
}

.contatos-titulo
{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.formulario-contato
{
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(5px);
    padding: 2rem;
    

    

}

.campo-form
{
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);

    border-radius: 8px;

    color: var(--claro);
    border: 1px solid var(--vidro);
    outline: none;

}
.campo-form:focus
{

 border-color: var(--terciario);
 box-shadow: none;
}
.grupo-form
{
    margin-bottom: 1.5rem;
}


.botao-form
{
    color: var(--claro);
    background: linear-gradient(45deg, var(--secundaria), var(--terciario));
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: all 0.7 ease;

}


.botao-form
{
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}


 


/*
.particulas
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    background:
    radial-gradient(circle at 10% 20%, var(--secundaria) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, var(--terciario) 0%, transparent 20%),
    var(--maisEscuro);

}


}*/


.particulas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background:
        radial-gradient(circle at 10% 20%, var(--secundaria) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, var(--terciario) 0%, transparent 20%),
        var(--maisEscuro);
}

@keyframes flutuar 
{
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}


.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-conteudo {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
}

.fechar {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.modal-botoes {
  position: absolute;
  top: 20px;
  right: 90px;
  display: flex;
  gap: 10px;
}

.modal-botoes button {
  background: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

 