body {
    background: radial-gradient(circle, #431198, #171049, #1d225e, #020c0d, #0b0520);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    font-family: "Outfit", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: aliceblue;
}
header {
    text-align: center;
}

.foto{
     width: 270px;
     height: 270px;
     border-radius: 15rem;
     border: solid 4px rgb(255, 255, 255);
     margin-top: 30px;
}
.efeitoapagar {
    font-family: "Bitcount Prop Single Ink", sans-serif;
    margin-left: 2rem;
}
.sobre {
    font-size: 40px;
    margin-top: 50px;
    margin-left: 2rem;
}
.sobremim{
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.6;
    max-width: 380px;
    text-align: left;
    margin-left: 2rem;
    margin-right: 2rem;
}


.skills{
    max-width: 380px; 
    width: 100%; 
    text-align: left; 
}

.projects-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; 
    margin-bottom: 4rem;
}

.project {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    position: relative; 
    overflow: hidden; /* efeito não saia do card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    
}

.project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(41, 195, 209, 0.274) 0%, transparent 50%); /*Cor do efeito*/
    opacity: 0; /* Começa invisível */
    z-index: -1; /* Coloca o efeito atrás do conteúdo */
    transition: opacity 0.3s ease;
}

.project:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(26, 136, 172, 0.3), 0 0 30px rgba(85, 39, 159, 0.664); 
    background-color: rgba(255, 255, 255, 0.15); 
    filter: brightness(1.2);
}

.project:hover::before {
    opacity: 1; 
}

.icon{
    width: 40px;
    height: 40px;
    margin-top: 10px;
}
.icon:hover{
    transform: scale(1.2);
    transform: traslateY(80px);
    filter: brightness(1.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    animation: both 0.3s ease-in-out;
}
.pasta{
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
#fundo-estrelas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 115vh;
  z-index: -1;
  pointer-events: none;
  background: transparent;

}
#project-name-changer{
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    text-align: center;
    margin-left: 2rem;
    
}

#name-changer,
#project-name-changer,
#skill-mode { 
    min-height: 1em;
    display: inline-block; 
    margin-left: 2rem;
}
.curriculo {
    width: 150px;
    margin-top: 20px;
    border-radius: 1rem;
}
.curriculo-nome{
    margin-left: 2rem;
}
.curriculo:hover{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.curriculo-icon{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.curriculo-text{
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    vertical-align: middle;
    color: white;
    text-decoration: none;
}

.curriculo_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: white;
    border-radius: 17px;
    background-color: rgba(250, 250, 250, 0.942);
    text-decoration: none;
    width: 150px;
    margin-top: 10px;
    width: 150px;
    margin-top: 10px;
    margin-bottom: 120px;
}
#skill-mode {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    
}

.download-button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #431198;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
}
.ltda {
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    margin-top: 50px;
    font-weight: 10;
    text-align: center;
    padding: 2rem;

}
#contact {
    font-size: 16px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center; 
    align-items: center; 
    margin-left: auto;
    margin-right: auto;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

#cllr-not {
    display: none;
}
.nav-links {
    display: none;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(70px); /* Aumenta a distância de onde o elemento aparece */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Aumenta a duração da transição */
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
