/* style.css */

/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fdfdfd;
  }
  
  /* Cabeçalho e Navegação */
  header {
    background: #f4f4f4;
    padding: 1rem 2rem;
    border-bottom: 1px solid #ccc;
  }
  
  .navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  /* Hamburger Menu – exibe em telas menores */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 10000;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background: #333;
    margin-bottom: 4px;
    border-radius: 3px;
  }
  
  /* Nav Links */
  .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
  }
  
  .nav-links li {
    margin: 0 1rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #007bff;
  }
  
  /* Seções Gerais */
  section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  h1,
  h2,
  h3 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 2rem;
    position: relative;
  }
  
  h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #007bff;
    margin: 0.5rem auto;
  }
  
  .section-description {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
  }
  
  /* Seção Hero */
  .hero {
    background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3)), /* Overlay */
    url("img/teste.jpg") no-repeat center center fixed;
    background-size: cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
  }
  
  .hero::after {
    /* Overlay para melhor contraste */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  /* Botões CTA – estilo base com gradiente e borda para destaque */
  .cta-button {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .cta-button:hover {
    transform: scale(1.05);
  }
  
  /* Botão Download CV – override para melhor contraste */
  .download-cv .cta-button {
    background: linear-gradient(135deg, #28a745, #218838);
    border-color: #28a745;
  }
  
  /* Seção Portfólio */
  .projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .project-card {
    background: #f9f9f9;
    padding: 1.5rem;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
  }
  
  .project-card h3 {
    margin-bottom: 0.75rem;
  }
  
  .project-card p {
    margin-bottom: 1rem;
  }
  
  .project-card a {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
  }
  
  /* Seção Currículo */
  .curriculo-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  
  .curriculo-content > div {
    width: 100%;
    max-width: 800px;
  }
  
  .curriculo-content h3 {
    margin-bottom: 0.75rem;
    text-align: center;
  }
  
  .curriculo-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #555;
  }
  
  /* Centraliza o botão de Download do Currículo */
  .download-cv {
    text-align: center;
    margin-top: 1.5rem;
  }
  
  /* Seção Contato */
  .contact-info {
    text-align: center;
    line-height: 1.8;
  }
  
  .contact-info a {
    color: #007bff;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  /* Rodapé */
  footer {
    background: #f4f4f4;
    text-align: center;
    padding: 1rem 2rem;
    border-top: 1px solid #ccc;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-links {
      flex-direction: column;
      width: 100%;
      display: none;
      text-align: center;
      background: #f4f4f4;
      position: absolute;
      top: 60px;
      left: 0;
      padding: 1rem 0;
      z-index: 9999;
    }
  
    .nav-links li {
      margin: 0.75rem 0;
    }
  
    .hero {
      height: 50vh;
    }
  }
  
