body {
  display: flex;
  color: white;
  background-color: #060606;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.sidebar {
  width: 300px;
  background: linear-gradient(135deg, #1f1f1f, #2c2c2c, #3a3a3a);;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  margin: 5px;
  min-height: 100vh;
}

.sidebar h4 {
    font-size: small;
    font-weight: 500;
    margin:0;
}
.sidebar img {
  border: 2px solid #454545;
  max-width: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.sidebar h2 {
    margin: 0%;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 22px;
}

.sidebar p {
  font-size: 14px;
  color: #aaa;
}


.menu {
  width: 100%;
}

.menu ul {
  list-style: none;
  padding: 0;
}

.menu li {
  border-radius: 4px;
  background-color: #454545;
  margin: 10px 0;
  transition: transform 0.3s, background 0.3s;
}

.menu li:hover {
  transform: scale(1.04);
  background: #1d1d1d;
}

.menu a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  padding: 12px;
  display: block;
}

hr { 
    border: 1px solid rgb(85, 85, 85); 
    width: 99%; 
    background: #ccc;
 } 
 
.icong { 
    display: inline-flex;
} 

.icong img { 
    border: 0px ; 
    width: 35px; 
    max-width: 5vh; 
    object-fit: cover; 
    border-radius: 1px; 
    padding: 0%;
} 

.iconc {
     margin: 3px; 
     transition: transform 0.3s ease;
    }

.iconc:hover {
  transform: scale(1.09);
}

.iconh { 
    display: inline-flex
} 

.iconh img { 
    border: 0px;
    margin: auto; 
    width: 40px; 
    max-width: 5vh; 
    object-fit: cover; 
    border-radius: 2px; 
    padding: 0%;
} 

.icond {
     margin: 3px; 
     transition: transform 0.3s ease;
    }

.icond:hover {
  transform: scale(1.09);
}

.conteudo {
    margin: 5px;
  flex: 1;
  background: radial-gradient(
  circle at top left,
  #3a3a3a,
  #1e1e1e 70%
);
  display: flex;
  flex-direction: column;
}

.conteudo h1{
  padding: 20px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  background-color: #111111;
  margin: 0;
}

.galeria {
  flex-direction: column;
  flex: 1;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  align-items: start;
}

.card {
  background: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  margin: 0;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 10px;
}

.card-content p {
font-weight: lighter;
font-size: small;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}


.tags {
  display: flex;
  align-items: center;
  font-weight: lighter;
  font-size: 14px;
}

.tag-icon {
  max-width: 25px;
  max-height: 25px;
  object-fit: contain;
  padding: 3px;
  border-radius: 2px;
  transition: 0.3s ease;
  border: 0px;
}


@media (max-width: 1024px) {
  .galeria {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    align-items: center; /* centraliza horizontalmente */
    
  }

  .sidebar {
    margin-top: 5%;
    min-height: auto;
  }

  .galeria {
    grid-template-columns: 1fr;
    padding: 20px;
  }

    .sobre {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
  }

  .sobre img {
    width: 220px;
    height: 220px;
  }

  .texto {
    text-align: center;
  }

  .sobre h1 {
    text-align: center;
  }
  .lightbox-img {
    max-width: 768px;
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#galeriaLightbox {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-height: 100vh;
  overflow-y: auto;
  padding: 40px;
  align-items: center;
}

.lightbox-img {
  max-width: 90vh;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  margin: 10px;
}

.fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}


.footer {
    background-color: #111111;
    text-align: center;
    padding: 15px;
    margin-top: auto; /* empurra para o final */
    font-size: 14px;
}

.footer a {
    text-decoration: none;
    margin: 0 8px;
}

.footer a:hover {
    text-decoration: underline;
}


.sobre {
  max-width: 1000px;
  margin: auto; 
  display: flex;
  align-self: center;
  gap: 40px;
  background: linear-gradient(180deg, #3a3a3a, #2a2a2a);
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.10);
  padding: 40px;
  transition: transform 0.3s ease;
  border-radius: 3px;
}

.sobre:hover {
  transform: scale(1.02);
}
.sobre h1 {
  padding: 0px;
  text-align: left;
  background-color: transparent;
}
.sobre img {
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.texto {
  text-align: left;
  flex-direction: column;
}

.texto p {
  font-weight: lighter;
}

.lowpoly {
  color: #707070;
  font-weight: 400;
  text-shadow: 0 0 2px rgba(194, 165, 0, 0.4);
}

.vulper {
  color: #ffd700;
  font-weight: 400;
  text-shadow: 0 0 2px rgba(218, 185, 0, 0.4);
}

.nextz {
  color: #ec7200;
  font-weight: 400;
  text-shadow: 0 0 2px rgba(255, 215, 0, 0.4);
  text-decoration: none;
}