/* ==========================================
   ROLAGEM SUAVE (FAZ OS BOTÕES DE NAVEGAÇÃO DESLIZAREM)
   ========================================== */
html {
  scroll-behavior: smooth;
}

/* ==========================================
   ESTILO GLOBAL E FUNDO XADREZ ROSA
   ========================================== */
body {
  background-color: #fce4ec;
  background-image: 
    linear-gradient(90deg, rgba(255, 128, 171, 0.25) 50%, transparent 50%),
    linear-gradient(rgba(255, 128, 171, 0.25) 50%, transparent 50%);
  background-size: 24px 24px;
  font-family: 'Trebuchet MS', 'Comic Sans MS', sans-serif;
  color: #880e4f;
  margin: 0;
  padding: 15px 5px;
}

.site-container {
  max-width: 980px;
  margin: 0 auto;
  background-color: #fff0f5;
  border: 3px solid #ff80ab;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 0 12px rgba(255, 64, 129, 0.2);
}

.header-banner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid #ff80ab;
  display: block;
}

/* ==========================================
   GRID DE 3 COLUNAS
   ========================================== */
.layout-grid {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 10px;
  margin-top: 12px;
}

/* ==========================================
   ESTILO DA JANELA RETRÔ
   ========================================== */
.janela {
  background: #ffffff;
  border: 2px solid #ff80ab;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  scroll-margin-top: 15px; /* Evita colar no topo ao clicar no botão */
}

.janela-topo {
  background: linear-gradient(to right, #ff80ab, #ff4081);
  color: #ffffff;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.botoes {
  background-color: #ffffff;
  color: #ff4081;
  border-radius: 3px;
  padding: 0 4px;
  font-size: 9px;
  font-weight: bold;
}

.janela-corpo {
  padding: 8px;
  font-size: 11px;
  line-height: 1.4;
}

.centro {
  text-align: center;
}

/* ==========================================
   ELEMENTOS DE TEXTO E TITULOS
   ========================================== */
.caixa-destaque-titulo {
  background-color: #ff80ab;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 4px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 12px;
}

.conteudo-flex {
  display: flex;
  gap: 8px;
  align-items: center;
}

.texto-principal {
  flex: 1;
}

.mascote img, .chibi-avatar img {
  border-radius: 8px;
  border: 1px solid #ff80ab;
}

.selo-neocities {
  text-align: center;
  margin-top: 8px;
}

.selo-neocities span {
  background-color: #ffe4e1;
  border: 1px solid #ff80ab;
  color: #c2185b;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 9px;
}

/* ==========================================
   MENUS E BOTOES DE LINKS
   ========================================== */
.lista-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-links li {
  margin-bottom: 3px;
  border-bottom: 1px dashed #ff80ab;
  padding-bottom: 2px;
}

.lista-links a {
  color: #c2185b;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.lista-links a:hover {
  font-weight: bold;
  padding-left: 4px;
}

.status-header {
  color: #c2185b;
  margin: 0 0 4px 0;
  font-size: 10px;
}

.img-button {
  margin: 2px;
  border: 1px solid #ff80ab;
  border-radius: 4px;
}

/* ==========================================
   VÍDEO VERTICAL (REELS/TIKTOK)
   ========================================== */
.video-vertical-container {
  position: relative;
  padding-bottom: 140%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #ff80ab;
  max-width: 200px;
  margin: 6px auto;
}

.video-vertical-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ==========================================
   BADGES E TAGS
   ========================================== */
.pixels-grid {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 6px;
}

.badge-box {
  background-color: #ffe4e1;
  border: 1px solid #ff80ab;
  color: #c2185b;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 9px;
}

.tag-fofa {
  background-color: #ff80ab;
  color: white;
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 9px;
}

/* RESPONSIVO PARA CELULARES */
@media (max-width: 768px) {
  .layout-grid {
    grid-template-columns: 1fr;
  }
}