/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .header .header-image {
    display: block;
    margin: 1.5rem auto 0;
    width: 250px; /* Ajuste conforme necessário */
    height: auto; /* Ajuste conforme necessário */
    border-radius: 5%; /* Deixa a imagem redonda */
    border: 1px solid #fff; /* Borda branca para destaque */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Adiciona sombra */
    margin-bottom: 10px;
    margin-top: -10px;
  }

  body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
  }
  
  .container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* Cabeçalho */
  .header {
    background: #1d1d1d;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
  }
  
  .header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .header p {
    font-size: 1.2rem;
    font-style: italic;
    color: #ccc;
  }
  
  /* Seção Apresentação */
  .about {
    padding: 3rem 0;
    text-align: center;
    background-color: #fff;
  }
  
  .about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1d1d1d;
  }
  
  .about p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
  }
  
  .buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .buttons .btn {
    display: inline-block;
    text-decoration: none;
    background: #1d1d1d;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .buttons .btn:hover {
    background: #333;
  }
  
  /* Seção Habilidades */
  .skills {
    padding: 3rem 0;
    background-color: #fff;
  }
  
  .skills h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1d1d1d;
  }
  
  .skills ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  .skills li {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #555;
  }
  
  /* Seção Projetos */
  .projects {
    padding: 3rem 0;
    background-color: #f4f4f4;
  }
  
  .projects h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1d1d1d;
  }
  
  .projects ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .projects li {
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .projects li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }
  
  .projects img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
  }
  
  .projects div {
    text-align: center;
  }
  
  .projects p {
    font-size: 0.9rem;
    color: #555;
    margin: 0.5rem 0 1rem;
  }
  
  .projects a.btn {
    display: inline-block;
    text-decoration: none;
    background: #1d1d1d;
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .projects a.btn:hover {
    background: #333;
  }
  
  /* Seção Experiência */
  .experience {
    padding: 3rem 0;
    background-color: #fff;
  }
  
  .experience h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1d1d1d;
  }
  
  .experience ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .experience li {
    margin: 1rem 0;
    font-size: 1rem;
    color: #555;
  }
  
  .experience strong {
    color: #1d1d1d;
  }
  
  /* Seção Contato */
  .contact {
    padding: 3rem 0;
    text-align: center;
    background-color: #fff;
  }
  
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1d1d1d;
  }
  
  .contact p {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
  
  .contact a {
    text-decoration: none;
    color: #1d1d1d;
    border-bottom: 1px solid #1d1d1d;
    transition: color 0.3s ease;
  }
  
  .contact a:hover {
    color: #555;
  }
  
  /* Rodapé */
  footer {
    background: #1d1d1d;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
  }
  
  footer p {
    font-size: 0.9rem;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .header h1 {
      font-size: 2rem;
    }
  
    .about h2,
    .skills h2,
    .projects h2,
    .experience h2,
    .contact h2 {
      font-size: 1.5rem;
    }
  
    .buttons {
      flex-direction: column;
    }
  
    .buttons .btn {
      margin-bottom: 0.5rem;
    }
  }
  
.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Garante alinhamento vertical */
  width: 100px%;             /* Faz ocupar toda a largura da tela */
  height: 100px;           /* Opcional: ocupa altura total da tela */
  color: #000000;
  z-index: 1;
  text-align: center;
}

.btn-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000000;
  border-radius: 10px;
  color: #000000;
  font-size: 20px;
  padding: 10px 10px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  backdrop-filter: blur(20px);
  margin-top: 20px; /* Espaço entre texto e botão */
}

.btn-cta:hover {
  background-color: #000000;
  color: #ffffff;
}
