 /* Reset básico */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    background: #000000;
    color: #fff;
    line-height: 1.6;
  }

  /* ====== Loader ====== */
  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 9999;
    overflow: hidden;
  }
  /* A barra de progresso que se expande de cima para baixo */
  #loader-bar {
    background: #1a1c1d;
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: height 0.2s ease-out;
  }
  /* Exibe a porcentagem no centro da tela */
  #loader-percentage {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    color: #fff;
  }


  @media (max-width: 768px) {
    nav ul {
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      background: #333;
      flex-direction: column;
      overflow: hidden;
      max-height: 0;
    }
    nav ul li {
      margin: 10px 0;
      text-align: center;
    }
    .menu-toggle {
      display: flex;
    }
    nav ul.show {
      max-height: 300px;
    }
  }

  /* ====== Seção Hero ====== */
  .hero {
    padding: 40px 20px;
    background: #111010;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
  }
  .hero img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid rgb(35, 115, 219);
  }
  .hero-text {
    text-align: center;
    padding: 0 20px;
  }
  .hero-text h1 {
    font-size: 3em;
    margin-bottom: 20px;
  }
.hero-text h1 #nome{
    color: white;
}

  .hero-text p {
    font-size: 1.2em;
    line-height: 1.5;
  }

/* icones de rede social */

  .social-icons {
    text-align: center;
    justify-content: center;
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #ffffff;
    font-size: 2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #3498db; /* Cor ao passar o mouse */
    transform: translateY(-5px); /* Efeito de levantar */
}
  @media (min-width: 768px) {
    .hero-content {
      flex-direction: row;
      align-items: center;
      text-align: left;
    }
    .hero img {
      margin-bottom: 0;
      margin-right: 40px;
    }
    .hero-text {
      padding: 0;
    }

    
  }