body {
    background-color: #0d1117;
    color: #c9d1d9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  a {
    color: #ff79c6;
    text-decoration: none;
  }
  
  a:hover {
    color: #bd93f9;
  }
  
  .site-header,
  .site-footer {
    background-color: #161b22;
    padding: 1.5rem 0;
    border-bottom: 1px solid #30363d;
    text-align: center;
  }
  
  .site-footer {
    border-top: 1px solid #30363d;
    margin-top: 2rem;
    font-size: 0.9em;
  }
  
  .wrapper {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
  }
  
  .page-content {
    padding: 2rem 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
  }
  
  .site-title {
    margin: 0;
    font-size: 2rem;
  }
  
  .site-description {
    margin: 0.5rem 0 1rem 0;
    color: #c9d1d9;
  }
  
  .site-nav {
    margin: 1rem 0;
  }
  
  .site-nav a {
    margin: 0 0.75rem;
    font-weight: 500;
  }
  
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .post-card {
    background-color: #161b22;
    border: 1px solid #30363d;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
  }
  
  .post-card:hover {
    transform: translateY(-5px);
  }
  
  .post-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: #ffffff;
  }
  
  .post-card .post-date {
    font-size: 0.9rem;
    color: #8b949e;
    margin-bottom: 0.5rem;
  }
  
  .post-card .excerpt {
    font-size: 1rem;
    color: #c9d1d9;
  }
  
  .read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #ff79c6;
    font-weight: bold;
    text-decoration: none;
  }
  
  .read-more:hover {
    color: #bd93f9;
  }
  
  .sobre-mim {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  
  .sobre-texto {
    flex: 1 1 400px;
    max-width: 600px;
  }
  
  .sobre-texto h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
  }
  
  .sobre-texto .destaque {
    color: #ff4081;
    display: inline-block;
    margin-top: 0.2rem;
  }
  
  .sobre-texto p {
    font-size: 1.1rem;
    color: #c9d1d9;
    margin-bottom: 1.5rem;
  }
  
  .botoes-redes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-rede {
    border: 1px dashed #ff4081;
    color: #ffffff;
    background: transparent;
    padding: 0.7rem 1rem;
    width: fit-content;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .btn-rede:hover {
    background-color: #ff4081;
    color: #0d1117;
  }
  
  .sobre-img img {
    max-width: 300px;
    border-radius: 12px;
    border: 2px dashed #ff4081;
    padding: 0.5rem;
    background-color: #0d1117;
  }
  
  @media (max-width: 768px) {
    .sobre-mim {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .sobre-texto, .sobre-img {
      max-width: 100%;
    }
  
    .btn-rede {
      justify-content: center;
    }
  }
  