/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #111;
    color: #f0f0f0;
  }
  /* Seção Hero */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, purple, blue);
  }
  .hero img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f0f0f0;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  /* Seção de Projetos */
  .projects {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
  .project {
    background-color: #222;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .project:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.7);
  }
  .project img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .project h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .project p {
    font-size: 1.2rem;
  }

  /* Footer */
  footer {
    background-color: #222;
    color: #555;
    text-align: center;
    padding: 15px 20px;
    font-size: 0.9rem;
  }
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
  }
  .social-links a {
    color: #555;
    text-decoration: none;
    margin: 0 10px;
    transition: scale 100ms ease;
    height: 24px;
    width: 24px;
  }
  .social-links a:hover {
    text-decoration: underline;
    color: #888;
  }
  .social-links a img {
    transition: scale 100ms ease;
  }
  .social-links a:hover img {
    scale: 1.3;
  }

  /* Ajustes responsivos */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }
    .hero p {
      font-size: 1.2rem;
    }
    .project h2 {
      font-size: 1.8rem;
    }
    .project p {
      font-size: 1rem;
    }
  }