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

html{
    scroll-behavior: smooth;
}

:root{
--primaria:#CB807D;
--secundaria:#F0B5B3;
--escuro:#FE64A3;
--maisEscuro:#000000;
--claro:#2E1A19;
--vidro:#FFFFFF40;
--borda-vidro: #FFFFFF66;
}

body{
    background-color: var(--primaria);
    color: var(--claro);
}
.navegacao{
   position: fixed;
   top: 0;
   background: rgba(245, 238, 230, 0.8);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   border-bottom: 1px solid var(--borda-vidro);
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
   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-inline: 0.5rem 0;

}

.menu-link::after{
    content: '';
    height: 2px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--claro), var(--claro));
    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: 350px;
    height: 350px;
    box-shadow: 0 0 20px rgba(74, 70, 67, 0.3);
    border-radius: 50%;
    border: 4px solid var(--vidro);
    animation: flutuar 5s ease-in-out infinite;
}
h1{
    font-size: 3.5rem;
    color: var(--claro);
    font-weight: bold;
    margin: 20px;
}

.cabecalho-sub-titulo{
    font-size: 1.5rem;
    color: var(--claro);
}

.sobre{
    padding: 6rem 2rem;


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

}
.sobre-caixa{
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    border: 1px solid var(--vidro);
    backdrop-filter: blur(10px);
    background: var(--vidro);

}
.sobre-paragrafo{
    text-align: center;
    font-size: 1.2rem;


}
.trabalhos{
    padding: 6rem 2rem;

}
.trabalhos-caixa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.trabalhos-unha{
    background: var(--vidro);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--vidro);
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;

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

}
.trabalhos-unha:hover{
    box-shadow: 0 10px 20px var(--escuro);
    transform: translateY(-10px) scale(1.03);

}
.trabalhos-imagem{
    height: 200px;
    width: 100%;
    object-fit: cover;

}
.info-alongamentos{
    margin-bottom: 8px;

}
.caixa-textos-trabalhos{
    padding: 1.5rem;
}
.paragrafo-alongamento{
    color: var(--claro);
    line-height: 1.25rem;
    margin-bottom: 8px;

}
.contatos{
    padding: 6rem 2rem;

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

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


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

}
.campo-form {
    width: 100%;
    padding: 1rem;
    background: var(--vidro);
    border-radius: 8px;
    color: var(--claro);
    border: 1px solid var(--vidro);
    outline: none;
    

    font-family: inherit;
    font-size: 1rem; 
    display: block;      
}
.campo-form:focus{
    border-color: var(--secundaria);
    box-shadow: var(--borda-vidro);
}
.botao-form{
    color: var(--claro);
    background: var(--escuro);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: all 0.5 ease;
}
..botao-form:hover{
    transform: translateY(-4px);
    box-shadow: 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 (--primaria) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, var (var(--secundaria)) 0%, transparent 20%),
    var(--maisEscuro);
}
@keyframes flutuar{
    0%, 100% {
        transform: translateY(0);
    }
    50%{
        transform: translateY(-20px);
    }

}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}


.modal-conteudo {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    margin-top: 50px;
    border-radius: 10px;
}


.fechar {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
/* Estilo das setas */
.seta {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    user-select: none;
    z-index: 1001;
}

.anterior { left: 10px; }
.proximo { right: 10px; }

.seta:hover { background-color: rgba(255, 255, 255, 0.2); border-radius: 5px; }

/* Zoom da Imagem */
.modal-conteudo {
    transition: transform 0.3s ease; /* Efeito suave de zoom */
    cursor: zoom-in; /* Mostra a lupa de mais */
}

/* Quando estiver com zoom */
.zoom-active {
    transform: scale(2); /* Aumenta 2x */
    cursor: zoom-out;
}
