body {
    background: #ffffff;
    color: #3d4449;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 2;
  }

  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #272833;
    font-weight: 900;
    line-height: 1.2;
  }

  .navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 2px solid #f0f0f0;
    z-index: 1000;
    padding: 20px 0;
  }
  
  .containerTopo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .navbar h2 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .navbar a {
    text-decoration: none;
    color: #717981;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
  }
  
  .navbar a:hover {
    color: #38bdf8;
    border-bottom: 2px solid #38bdf8;
  }

  .topo {
    padding: 180px 0 100px;
    border-bottom: 2px solid #f0f0f0;
    background: #fafafa;
  }
  
  .containerHero {
    display: flex; 
    align-items: center; 
    justify-content: space-around; 
    gap: 40px; 
  }
  
  .textoHero {
    max-width: 650px;
  }
  
  .subtitulo {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #38bdf8;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .textoHero h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: -1px;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .botaoProjeto {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid #272833;
    color: #272833;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: 0.3s;
  }
  
  .botaoProjeto:hover {
    background: #272833;
    color: #fff;
  }
  
  .fotoMinha img {
    width: 320px;
    border: 15px solid #fff;
    box-shadow: 20px 20px 0px #f0f0f0; 
  }

  .secao {
    padding: 100px 0;
  }
  
  .tituloSecao {
    font-size: 2.2rem;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
  }
  
  .tituloSecao::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #38bdf8;
  }

  .projetoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
  }

  .projetoCard {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #efefef;
  }
  
  .containerCard {
    margin-bottom: 25px;
  }
  
  .containerImg {
    overflow: hidden;
    margin-bottom: 25px;
    
  }
  
  .projetoCard img {
    width: 40dvh;
    height: 20dvh;
    display: block;
    filter: grayscale(10%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .projetoCard:hover img {
    transform: scale(1.05);
    filter: grayscale(20%);
  }
  
  .projetoCard h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .projetoCard p {
    font-size: 0.95rem;
    color: #7f888f;
    margin-bottom: 0;
  }
  
  .saibaMais {
    align-self: flex-start;
    padding: 10px 20px;
    border: 1px solid #3d4449;
    color: #3d4449;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    transition: 0.3s;
    margin-top: 20px;
  }
  
  .saibaMais:hover {
    background: #3d4449;
    color: #fff;
  }

  .bg-light {
    background: #fafafa;
  }

  .skillsGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .skill {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
  }
  
  .sobreGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: left;
  }
  
  .sobreItem h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: 1px solid #efefef;
    padding-bottom: 10px;
  }

  footer {
    text-align: center;
    padding: 80px 0 40px;
    border-top: 1px solid #efefef;
    background: #ffffff;
  }
  
  .socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .socialIcon {
    width: 28px;
    height: 28px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s ease;
  }
  
  .socialIcon:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-3px);
  }
  
  .copyright {
    font-size: 0.7rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  
  @media (max-width: 900px) {
    .containerHero {
      flex-direction: column-reverse;
      text-align: center;
    }
    
    .textoHero h1 {
      font-size: 2.8rem;
    }
    
    .containerImg img {
      width: 250px;
      box-shadow: 10px 10px 0px #f0f0f0;
    }
  }
  
  @media (max-width: 600px) {
    .navbar ul {
      display: none;
    }
    
    .secao {
      padding: 60px 0;
    }
  }