*{
    padding: 0;
    margin: 0;
    font-family: monospace;
}

body{
    margin: 0;
    background-color: #000814;
}
  
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

.logo img {
  height: 80px;
  width: auto;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu li a {
  color: white;
  text-decoration: none;
  padding: 10px;
}

.menu li a:hover {
  background-color: #575757;
  border-radius: 5px;
}

.introdução{
    height: 600px; 
    display: flex;
    justify-content: center;  
    align-items: center;      
}
  
.conteudo{
    display: flex;
    align-items: center;
    gap: 30px;
}
  
.conteudo img{
    width: 400px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 15px #198DF9;
    animation: brilhoPulse 2s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conteudo img:hover{
    transform: scale(1.05); 
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@keyframes brilhoPulse{
    0%, 100% {
      box-shadow: 0 0 5px #198DF9, 0 0 15px #198DF9;
    }
    50% {
      box-shadow: 0 0 12.5px #198DF9, 0 0 25px #198DF9;
    }
}
  
.informações p{
    color: white;
    font-size: 30px;
    margin: 0;
    line-height: 1.4;
}

.informações button{
    background: linear-gradient(45deg, #003566, #006ACC);
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 33px;
    margin-top: 10px;
    color: white;
    box-shadow: 0px 0px 5px #198DF9;
    cursor: pointer;
}

.informações button:hover{
    background: linear-gradient(45deg, #006ACC, #003566);
}

.título {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    flex-direction: column;
}

.título h1 {
    text-align: center;
    color: white;
    font-size: 40px;
}

.título p{
    text-align: center;
    color: white;
    font-size: 25px;
    margin-top: 20px;
    padding: 10px;
}

.projetos{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
    padding: 60px;
}

.projeto-n {
    width: 350px;
    height: 400px;
    padding: 10px;
    background: linear-gradient(0deg, #003566, #006ACC);
    box-shadow: 0px 0px 2px #198DF9;
    border-radius: 10px;
    font-family: Arial, Helvetica, sans-serif;
    /* Adicionamos width e height na transição para ser suave */
    transition: width 0.1s ease-in-out, height 0.1s ease-in-out;;
}

.projeto-n:hover {
    width: 355px; 
    height: 405px;
    box-shadow: 0px 0px 10px #198DF9; 
}

.projeto-n img{
    width: 97%;
    position:relative;
    left: 50%;
    transform: translateX(-50%);
    top: 5px;
    border-radius: 10px;
}

.projeto-n h4{
    font-size: 20PX;
    color: white;
    text-align: center;
    margin-top: 10px;
}

.projeto-n p{
    color: white;
    text-align: center;
    margin-top: 20px;
}

.projeto-n a{
    display: block;
    font-size: 17px;
    margin: 15px auto 0; 
    width: fit-content; 
    border-radius: 10px;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s;
}

.projeto-n a:hover {
    color: #b0b0b0;
}

.habilidades{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    height: auto;
}

.habs{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
}

.hab-text{
    display: flex;
    flex-direction: column;
    margin-left: 50px;
}

.hab-text h4{
    text-align: left;
    font-size: 35px;
    color: white;
}

.hab-text p{
    color: #b0b0b0;
    font-size: 15px;
    text-align: left;
    margin-top: 15px;
}

.hab-text a{
    width: 120px;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    color: #fff;
    background-color: transparent;
    text-decoration: none;
    border-radius: 8px;
    z-index: 0;
    border: 2px solid transparent;
    margin-top: 15px;
}
  
.hab-text a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(45deg, #fff, #5e5e5e, #6e6e6e, #7f7f7f, #f5f5f5 );
    background-size: 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRun 5s linear infinite;
    z-index: -1;
}
  
@keyframes borderRun {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

.hab-cards{
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 25px; 
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hab-card{
    width: 220px;
    height: 220px;
    background: linear-gradient(0deg, #003566, #006ACC);
    border-radius:25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hab-card:hover{
    transform: scale(1.05); 
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hab-card h3{
    margin-top: 10px;
    color: white;
}

.hab-card p{
    margin-top: 10px;
    padding: 5px;
    color: white;
    font-size: 15px;
}

.about{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 25px; 
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 150px;
    text-align: center;
}

.about-t{
    margin-top: 30px;
}

.about-t h1{
    font-size: 60px;
    color: white;
    text-align: center;
}

.about-p p{
    font-size: 20px;
    color: white;
    text-align: left;
}

footer{
    width: 100%;
    height: auto;
    background-color: #054580;
}

.footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding: 60px;
    justify-items: center;
}

.logo-f img{
    width: 180px;
    height: auto;
}

.certificates{
    text-align: center;
}

.certificates h3{
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.certificates a{
    color: white;
    text-decoration: none;
}

.networks{
    text-align: center;
}

.networks h3{
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.networks i{
    margin: 0 10px;
    color: white;
    transition: 0.3s;
}
      
.networks i:hover{
    color: #003566;
}
 
.support a{
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #054580;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);

    z-index: 999;
}
  
.support a:hover{
    background-color: #032d52;
    transform: translateY(-5px);
}

.reveal{
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}
  
.reveal.active{
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 900px) {
    .conteudo{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .conteudo img{
        width: 300px;
    }

    .informações p{
        font-size: 20px;
    }

    .informações button{
        width: 120px;
        height: 35px;
    }

    .projetos{
        gap: 30px;
    }

    .projeto-n{
        width: 220px;
        height: 305px;
    }

    .projeto-n h4{
        font-size: 12px;
    }

    .projeto-n p{
        font-size: 10px;
    }

    .projeto-n a{
        width: 70px;
        padding: 4px 12px;
        font-size: 10px;
    }
}

@media screen and (max-width: 430px) {
    header{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 15px;
    }
    
    .logo{
        margin-bottom: 15px;
    }
    
    .menu{
        align-items: center;
        gap: 10px;
    }

    .informações p{
        padding: 5px;
    }

    .habs{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        margin: 0 auto;
    }

    .hab-text{
        margin: 0;
        align-items: center;
    }

    .hab-text h4,
    .hab-text p{
        text-align: center;
        font-size: 18px;
    }

    .hab-cards{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hab-card{
        width: 100%;
        max-width: 110px;
        height: 110px;
        padding: 20px 10px;
    }

    .hab-card h3{
        font-size: 10px;
    }

    .hab-card p{
        font-size: 8px;
    }

    .about{
        display: flex;
        flex-direction: column;
    }

    .about-t h1{
        font-size: 30px;
        text-align: center;
    }

    .about-p p{
        text-align: center;
        font-size: 18px;
        padding: 8px;
    }

    .logo-f img{
        width: 80px;
    }

    .footer{
        padding: 15px 30px;
    }

    .certificates h3{
        font-size: 10px;
    }

    .certificates a{
        font-size: 10px;
    }

    .networks h3{
        font-size: 10px;
    }

    .networks i{
        font-size: 15px;
    }
}