* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1a152b;
  color: #f0f0f0;
}

a {
  color: #ffd166;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header img.profile-banner {
  width: 100%;
  height: auto;
  display: block;
}
.site-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem;
}

.about, .gallery, .store {
  margin-bottom: 3rem;
}

.about h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about p {
  font-size: 1.1rem;
  color: #ccc;
}

.gallery h2, .store h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffe066;
}

/* Galeria de artes */
.gallery-grid {

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.gallery-col {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 5px;

  width:100%;
}

.gallery-item {
  background-color: #2c2c2c;
  border: 1px solid #333;
  border-radius: 1px;
  padding: 0.7rem;
  color: #fff;

  margin-bottom: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 5px;
}


.gallery-item img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #333;
}



.gallery-col--4 { margin-right: 0; }

/* hide two middle */
.gallery-col--2, .gallery-col--3, .gallery-col--4 { display: none; }

@media ( min-width: 768px ) {
  .gallery-col--2 { display: block; } /* show column 2 */
  .site-content {max-width: 90%;}
}

@media ( min-width: 1000px ) {
  .gallery-col--3  { display: block; } /* show column 3 */
  .site-content {max-width: 83%;}
}

@media (min-width:1200px){
  .gallery-col--4 { display: block; } /* show column 4 */
   .site-content {max-width: 75%;}
}
  

/* Test */

  .lb-image {
    max-height: 90vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
  
/* endTest */

/* Loja */
.asset-list {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory; /* Optional: makes scrolling smoother */
}
 

.asset-item {
   /* flex: 0 0 calc(25% - 0.75rem); /* 4 items in one row, minus the gap */
  background-color: #2c2c2c;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  scroll-snap-align: start; /* Optional: aligns items to scroll edges */
}

.asset-list::-webkit-scrollbar {
  display: none;
}
.asset-list {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}


.asset-item img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.asset-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* Rodapé */
.site-footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background-color: #294257;
  color: #aaa;
}

.site-footer a {
  color: #ffd166;
}

.asset-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
}

.asset-price {
  background-color: #444;
  color: white;
  font-size: 0.8rem;
  padding: 2px 6px;
  border-radius: 5px;
  margin-left: 8px;
}

.scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.scroll-btn {
  background-color: #333;
  color: #ffd166;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.scroll-btn:hover {
  background-color: #444;
}

.scroll-left {
  margin-right: 0.5rem;
}

.scroll-right {
  margin-left: 0.5rem;
}

img {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

