html {
  overflow-x: hidden;
  background-image: url(../images/idea-bg.png);
  background-repeat: repeat;
}

body {
  font-family: "Work Sans", sans-serif;
  line-height: 1.5;
  font-size: 18px;
  background: #060802;
  color: #ffefaa;
}

a {
  transition: .3s all ease;
  color: #ffffff;
}

a:hover {
  text-decoration: none;
  color: #ffdf44;
}

h1, h2, h3, h4, h5 {
  line-height: 1.5;
  font-weight: normal;
  color: #ffefaa;
}
.probootstrap-aside {
  height: 100vh;
  width: 250px;
  position: fixed;
  top: 0;
  float: left;
  min-height: 600px;
  transition: .3s all ease;
  background: #060802;
  z-index: 10;
  font-size: 32px;
  line-height: 1;
  border-right: 3px solid #ffdf44;
}

@media screen and (max-width: 768px) {
  .probootstrap-aside {
    transform: translateX(-250px);
    padding-top: 20px;
  }
}

.probootstrap-aside.active {
  transform: translateX(0px);
}

.probootstrap-aside .probootstrap-site-logo {
  padding: 20px 20px 10px 20px;
  position: relative;
}

.probootstrap-aside .probootstrap-site-logo img {
  max-width: 180px;
  display: block;
  margin: 0 auto;
}

.probootstrap-aside .probootstrap-nav {
  padding-left: 36px;
  margin-top: 16px;
}

.probootstrap-aside .probootstrap-nav ul {
  padding: 0;
  margin: 0;
}

.probootstrap-aside .probootstrap-nav ul li {
  padding: 0;
  margin: 10px 0;
  display: block;
  list-style: none;
  float: left;
  width: 100%;
}

.probootstrap-aside .probootstrap-nav ul li a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.55rem;
  color: #ffefaa;
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  float: left;
  position: relative;
}

.probootstrap-aside .probootstrap-nav ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  left: 0;
  height: 3px;
  background: #ffdf44;
  transition: .3s width ease-out;
}

.probootstrap-aside .probootstrap-nav ul li a:hover:after {
  width: 100%;
}

.probootstrap-aside .probootstrap-nav ul li.active a:after {
  width: 100%;
  background: #ffffff;
}

.probootstrap-aside .probootstrap-overflow {
  height: 500px;
}

.probootstrap-aside .probootstrap-aside-footer {
  font-size: 14px;
  padding-left: 30px;
  position: absolute;
  bottom: 10px;
}

.probootstrap-aside-social li {
  display: inline-block;
}

.probootstrap-aside-social a {
  display: inline-block;
  color: #999977;
  font-size: 20px;
}

.probootstrap-aside-social a:hover {
  color: #ffdf44;
}

.probootstrap-main {
  width: calc(100% - 250px);
  float: right;
  padding: 20px;
  position: relative;
}

.probootstrap-main:before {
  background: rgba(0,0,0,0.5);
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 6;
  visibility: hidden;
  opacity: 0;
  transition: .6s all ease;
}

.probootstrap-main.mobile-open:before {
  visibility: visible;
  opacity: 1;
}

.probootstrap-main .probootstrap-bar {
  position: fixed;
  top: 0;
  padding: 8px 0;
  z-index: 5;
  background: #060802;
  border-bottom: 4px groove #ffdf44;
  width: calc(100% - 250px);
  transform: translateY(-100%);
}

@media screen and (max-width: 768px) {
  .probootstrap-main .probootstrap-bar {
    width: 100%;
    left: 0;
    right: 0;
    transform: translateY(0%);
  }
}

.probootstrap-main .probootstrap-bar .topbar-bulb {
  position: absolute;
  left: 15px;
  font-size: 28px;
  color: #ffdf44;
  top: 55%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  transition: color 300ms ease;
}

.probootstrap-main .probootstrap-bar .topbar-bulb:hover {
  color: #ffffff;
}

.probootstrap-main .probootstrap-bar .probootstrap-main-site-logo {
  margin: 0 auto;
  width: 100px;
  text-align: center;
  position: relative;
}

.probootstrap-main .probootstrap-bar .probootstrap-main-site-logo a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 28px;
  text-decoration: none;
  color: #ffdf44;
  text-transform: lowercase;
  letter-spacing: .05em;
}

@media screen and (max-width: 768px) {
  .probootstrap-main {
    width: 100%;
    padding: 48px 12px;
  }
}

/* ── CART-GRID — tamanho fixo, cartuchos centralizados ─────────────────
   Cartucho fixo em 340px. justify-content: center garante que nunca
   estica nem corta. Breakpoints conservadores para evitar cortes.

   ≥ 1700px → 4 cartuchos
   1100–1699px → 3 cartuchos
   640–1099px  → 2 cartuchos
   < 640px     → 1 cartucho
   ─────────────────────────────────────────────────────────────────────── */

.cart-grid {
  display: grid;
  grid-template-columns: repeat(4, 340px);
  gap: 36px 24px;
  justify-content: center;
  align-items: start;
}

@media screen and (max-width: 1699px) {
  .cart-grid { grid-template-columns: repeat(3, 340px); }
}

@media screen and (max-width: 1099px) {
  .cart-grid { grid-template-columns: repeat(2, 340px); }
}

@media screen and (max-width: 639px) {
  .cart-grid { grid-template-columns: 340px; }
}

/* ── CARTUCHO — 340px fixo ───────────────────────────────────────────── */

.cartridge {
  display: block;
  width: 340px;
  position: relative;
  text-decoration: none;
  background: #6e540e;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow:
    inset  0    3px  0   rgba(200, 160, 50, 0.55),
    inset  0   -4px  0   rgba(0,   0,   0,  0.55),
    inset  2px  0    0   rgba(170, 130, 35, 0.30),
    inset -2px  0    0   rgba(0,   0,   0,  0.35),
    4px 10px 22px        rgba(0,   0,   0,  0.65);
  transition: box-shadow 0.25s ease;
  will-change: transform;
}

.cartridge:hover {
  box-shadow:
    inset  0    3px  0   rgba(200, 160, 50, 0.55),
    inset  0   -4px  0   rgba(0,   0,   0,  0.55),
    inset  2px  0    0   rgba(170, 130, 35, 0.30),
    inset -2px  0    0   rgba(0,   0,   0,  0.35),
    8px 18px 32px        rgba(0,   0,   0,  0.75),
    0   0    20px        rgba(255, 200, 50, 0.12);
}

.cartridge::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 230, 130, 0.18) 0%,
    rgba(240, 190,  60, 0.07) 45%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cartridge:hover::before { opacity: 1; }

.cartridge.cart-leaving::before {
  opacity: 0 !important;
  transition: none !important;
}

/* ── rótulo — padding simétrico, centralização real ─────────────────── */
.cart-label {
  position: relative;
  margin: 8px 8px 6px;
  padding: 10px;          /* simétrico — flexbox centra sem distorção */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #100e05;
  border-radius: 3px;
}

/* "ideabob" — colado no canto, 2px de folga, não participa do layout */
.cart-label::after {
  content: 'ideabob';
  position: absolute;
  bottom: 2px;
  right: 2px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.10em;
  color: #ffdf44;
  opacity: 0.55;
}

.cart-title {
  display: block;
  width: 100%;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: #ffefaa;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

/* ── sulcos — gradiente horizontal preto/dourado/preto sobre padrão vertical */
.cart-ridges {
  height: 18px;
  background:
    /* camada 1 (topo): faixa preta nas 2 extremidades, transparente no meio */
    linear-gradient(to right,
      #100e05 2px, transparent 2px,
      transparent calc(100% - 2px), #100e05 calc(100% - 2px)
    ),
    /* camada 2 (base): padrão de sulcos vertical */
    repeating-linear-gradient(to bottom,
      #8a6c14 0px,
      #6b510e 2px,
      #5a420a 3px,   /* mais claro que #3a2c06 */
      #5a420a 4px,
      #2a1d0a 4px,   /* mais claro que #050300 */
      #2a1d0a 6px
    );
  border-top: 1px solid #2e2204;
  border-bottom: 1px solid #2e2204;
}

/* ── screenshot — 6px de margem acima, cantos arredondados 4px ──────── */
.cartridge img {
  display: block;
  width: calc(100% - 16px);
  margin: 6px 8px 10px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
}

::-webkit-scrollbar { width: 14px; background-color: #060802; }
::-webkit-scrollbar-track {
  border-radius: 3px;
  background-color: #060802;
}
::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #ffdf44;
}

.nav-icon { font-size: 22px; color: #ffdf44; }
.social-icon { font-size: 28px; }

.probootstrap-aside-social {
  align-items: center;
}

.probootstrap-aside-social li {
  display: inline-flex;
  align-items: center;
}

.aside-copyright {
  font-size: 12px;
  line-height: 1.4;
  color: #888;
  margin-top: 6px;
  margin-bottom: 0;
}

.page-content { padding-top: 32px; }

.page-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3d3820;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-title-icon {
  font-size: 2.2rem;
  color: #ffdf44;
  flex-shrink: 0;
}

.page-subtitle {
  color: #ffefaa;
  font-size: 1.05rem;
  margin-bottom: 32px;
}

strong.highlight { color: #ffdf44; font-weight: 600; }



.declarations-block {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 20px 24px;
  border: 1px solid #2a2818;
  background: rgba(255,223,68,0.025);
  border-radius: 4px;
}

.declarations-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: #ffefaa;
}

.declarations-icon { color: #ffdf44; margin-right: 8px; }

.declarations-list {
  padding-left: 0;
  list-style: none;
}

.declarations-list li {
  font-size: 0.9rem;
  color: #b8a87a;
  padding: 6px 0;
  margin-bottom: 10px;
  line-height: 1.6;
}

.declarations-list li:last-child { margin-bottom: 0; }

.declarations-list li a { color: #ffefaa; }

.links-section { margin-top: 56px; }
.links-section:first-child { margin-top: 24px; }

.links-category {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  border-bottom: 1px solid #3d3820;
  margin-bottom: 20px;
}

.links-category-icon { font-size: 20px; color: #ffdf44; margin-right: 8px; vertical-align: middle; }
.links-list { padding: 0; }

.link-item {
  margin-bottom: 18px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.link-item:hover {
  border-color: #ffdf44;
  background: rgba(255,223,68,0.05);
}

.link-item a { display: flex; align-items: flex-start; color: inherit; }
.link-thumb { border: 2px outset #ffdf44; flex-shrink: 0; }

.link-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffefaa;
  margin-bottom: 4px;
}

.link-star  { font-size: 13px; color: #ffdf44; margin-right: 4px; }
.link-heart { font-size: 13px; color: #ff8888; margin-left: 4px; }

.link-desc {
  font-size: 0.95rem;
  color: #c8b87a;
  line-height: 1.55;
  margin-bottom: 0;
}

.br-flag { vertical-align: middle; margin-left: 4px; height: 14px; }
