@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body{
    font-family: 'Chakra Petch', sans-serif; 
    color:#f71568;
    background-color: black;
    
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#f71568;
    padding: 10px 20px;

}


p{
    display: block;

}

a{
    text-decoration: none;
}

.navbar-links {
    list-style: none;
    display: flex;
    
}

.navbar-links li{
    margin:0 15px
}

.navbar-links li a {
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
    color:#fff;
}
.navbar-links li a:hover {
    color:black;
}


.icons-menu{
    display: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

@media(max-width:768px){
    .navbar-links{
    position: absolute;
    right: 0;
    top: 43px;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    background-color:#f71568;
    width: 100%;
    transition: max-heigth 0.3s ease;

    }

    .navbar-links.show{
        max-height: 300px;
    }

    .navbar-links li {
        margin: 15px;
        text-align: center;

    }

    .icons-menu{
        display: block;
    }
}

/*********** Seção Sobre Mim *************/

.início{
    text-align: center;
    margin-top: 195px;
    margin-bottom: 275px;
}

.sabrina__foto{
    width: 11%;
    height: 11%;
    border: #f71568;
    border-radius: 50%;
}


.botao-curriculo{
    background: linear-gradient(90deg, #f71568, #a855f7);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    margin-top: 20px;
    box-shadow: 0 0 10px #f71568;
}

.sobre{
    text-align: center;
    font-size: 1.1rem;
   
    
}

.sobre p{
    text-align: center;
    margin-left: 10px;
    margin-top: 50px;
}

@media (max-width:600px){
    .sobre p{
    font-size: 1rem;
    margin: 20px;
    text-align: justify;
    border: 2px solid #f71568;
    padding: 15px;
    border-radius: 10px;
}

}

    
@media (max-width: 600px) {
    .botao-curriculo {
        width: 50%;
        font-size: 1.1rem;
        padding: 8px;
    }
}

@media (max-width: 600px) {
    .sabrina__foto {
        width: 30%;
        height: auto;
    }
}

/*********** Seção Projetos *************/

.projetos{
    margin-top: 250px;
    text-align: center;
}

.projetos__links{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    width: 100%;
    max-width: 600px;
    margin: auto; 
    justify-content: center;
    gap:10%;
    
}

@media (max-width: 600px) { 
.projetos__links {
    display: flex; 
    flex-direction: column;
    align-items: center; 
    gap: 30px; 
    width: 100%; 
    }

.projetos__links2 {
    width: 85%; 
    max-width: 300px; 
    text-align: center; 
    }
}
.projetos__links2{
    box-shadow: 0 4px 10px rgba(185, 40, 125, 0.904);
    border: 2px solid rgba(190, 54, 161, 0.74);
    width: 200px; 
    height: 150px; 
    color:#f71568;

}

p4{
    display: flex;
    justify-content: end;
}


/*********** Seção Contatos *************/


.contato{
    margin-top: 180px;
    margin-bottom: 20px;
    text-align: center;
    
}


.link-contato {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin: 5px;
}


/* GitHub */
.github {
  background-color: #333;
}
.github:hover {
  background-color: #000;
  transform: translateY(-3px);
}

/* LinkedIn */
.linkedin {
  background-color: #0A66C2;
}
.linkedin:hover {
  background-color: #004182;
  transform: translateY(-3px);
}

/* Email */

.email {
  background-color: #D93025; 
  
}

.email:hover {
  background-color: #A52714; 
  transform: translateY(-3px); 
 
}


@media (max-width: 600px) {
  .link-contato {
    width: 50%;
    text-align: center;
    padding: 10px;
    font-size: 1.1rem;
  }
} 


/*********** Seção Tecnologias *************/

.techs {
    margin-top: 250px;
    text-align: center;
}

.techs__icons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.techs__icons i {
    font-size: 3rem;
    
}

/* Cores individuais */
.fa-html5 { color: #E34F26; }
.fa-css3-alt { color: #1572B6; }
.fa-js-square { color: #F7DF1E; }
.fa-react { color: #61DAFB; }
.fa-python { color: #3776AB; }
.fa-django { color: #092E20; }
.fa-java { color: #ED8B00; }
.fa-spring { color: #6DB33F; }
.fa-code { color: #F34F29; }
.fa-code-branch { color: #6e5494; }


@media (max-width: 600px) {
    .techs__icons i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
}

/*********** Seção Footer *************/


.final-pagina {
  background-color: #f71568;
  text-align: center;
  padding: 12px;
}

.final-pagina p {
  color: white;
  font-size: 1rem;
  margin: 0;
}

@media (max-width:600px) {
  .final-pagina {
    padding: 8px;
    font-size: 1.1rem;
  }
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.content {
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 20px;
}
