* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: system-ui, sans-serif;
    background: #13151a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 20px;
  }
  
  main {
    margin: auto;
    max-width: 800px;
    width: 100%;
    background: #1a1b1e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .profile-header {
    position: relative;
    width: 100%;
    color: white;
  }
  
  .background-image {
    height: 240px; /* Aumentado para cobrir metade da foto */
    background-image: url('./src/background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .background-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75px; /* Metade da altura da foto de perfil */
    background: linear-gradient(to bottom, transparent, #1a1b1e);
  }
  
  .profile-info {
    text-align: center;
    padding: 20px;
    margin-top: -135px;
    position: relative;
  }
  
  .profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
  }
  
  .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  h1 {
    margin: 15px 0 5px;
    font-size: 24px;
  }
  
  .verified {
    display: inline-block;
    margin-left: 5px;
  }
  
  .profile-info p {
    margin: 0;
    color: #94a3b8;
  }
  
  .highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  
  .highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    width: 80px;
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 8px;
    border: 2px solid #4b5563;
    transition: transform 0.2s;
  }
  
  .highlight-item:hover .highlight-icon {
    transform: scale(1.05);
    border-color: #6b7280;
  }
  
  .highlight-item span {
    font-size: 12px;
    text-align: center;
    color: #94a3b8;
  }
  
  .button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
  }
  
  .button {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: transform 0.2s;
  }
  
  .button:hover {
    transform: translateY(-2px);
  }
  
  .blue { background: #3b82f6; }
  .orange { background: #f97316; }
  .purple { background: #8b5cf6; }
  .yellow { background: #eab308; }
  
  .social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
  }
  
  .social-icon {
    color: #94a3b8;
    transition: color 0.2s, transform 0.2s;
  }
  
  .social-icon:hover {
    color: white;
    transform: translateY(-2px);
  }
  
  .action-buttons {
    display: flex;
    gap: 10px;
    padding: 20px;
  }
  
  button {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
  }
  
  .follow {
    background: #1f2937;
    color: white;
  }
  
  .contact {
    background: #374151;
    color: #94a3b8;
  }
  
  @media (max-width: 480px) {
    body {
      padding: 10px;
    }
  
    .background-image {
      height: 200px; /* Altura reduzida para telas menores */
    }
  
    .highlights {
      gap: 15px;
      padding: 15px;
    }
  
    .highlight-item {
      width: 70px;
    }
  
    .highlight-icon {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }
  
    .action-buttons {
      gap: 8px;
      padding: 15px;
    }
  
    .social-links {
      gap: 12px;
      margin: 15px 0;
    }
  
    button {
      padding: 10px;
      font-size: 14px;
    }
  }
  