/* ==========================================================================
   LAVANDERIA ESTÚDIO — STYLESHEET
   (DIVISÃO 50/50 IGUALITÁRIA DA HOME PAGE EM CELULARES / IPHONE)
   ========================================================================== */

/* 1. FONTE OFICIAL GOOGLE SANS FLEX */
@font-face {
  font-family: 'Google Sans Flex';
  src: url('SITE/Font_Google_Sans_Flex/static/GoogleSansFlex_24pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Google Sans Flex';
  src: url('SITE/Font_Google_Sans_Flex/static/GoogleSansFlex_24pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* 2. RESET & REGRAS GERAIS: BORDAS RETAS, SEM SOMBRAS, TIPOGRAFIA REGULAR/MEDIUM CENTRALIZADA */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  font-weight: 400;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #0a0a0c;
  color: #111;
  font-family: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}

/* BACKGROUND TEXTURE PURO */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

/* 3. LAYOUT DIVIDIDO (SPLIT SCREEN) — DESKTOP */
.app-container {
  position: relative;
  display: flex;
  width: 100vw;
  height: 100vh;
  z-index: 2;
}

/* LADO ESQUERDO: MURAL / COLAGEM (MAIS LARGO ~58% NO DESKTOP) */
.split-left {
  width: 58%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  padding: 0 10px 60px 16px;
  scroll-behavior: smooth;
}

/* LADO DIREITO: FEED VERTICAL ALINHADO (~42% NO DESKTOP) */
.split-right {
  width: 42%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  padding: 0 20px 60px 14px;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  scroll-behavior: smooth;
}

/* SCROLLBAR RETO */
.split-left::-webkit-scrollbar,
.split-right::-webkit-scrollbar,
.modal-container::-webkit-scrollbar {
  width: 6px;
}
.split-left::-webkit-scrollbar-track,
.split-right::-webkit-scrollbar-track,
.modal-container::-webkit-scrollbar-track {
  background: transparent;
}
.split-left::-webkit-scrollbar-thumb,
.split-right::-webkit-scrollbar-thumb,
.modal-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
}

/* 4. CABEÇALHOS EM LARGURA TOTAL */
.header-left {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 15;
  opacity: 1;
  transition: opacity 0.15s ease-out;
  pointer-events: none;
  background: transparent;
  padding-top: 6px;
  padding-bottom: 6px;
}

.header-left video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: fill;
  transform: scale(1.08);
  transform-origin: top center;
}

.header-right {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 15;
  opacity: 1;
  transition: opacity 0.15s ease-out;
  pointer-events: none;
  background: transparent;
  padding-top: 6px;
  padding-bottom: 20px;
  margin-bottom: 12px;
}

.header-right img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* 5. MURAL / MOSAICO DO PORTFÓLIO (COLAGEM EQUILIBRADA & SOBREPOSIÇÃO MODERADA) */
.portfolio-mural {
  width: 100%;
  margin-top: -10px;
  padding-bottom: 50px;
  overflow: visible !important;
  transition: column-count 0.25s ease;
}

.portfolio-mural.cols-3 {
  columns: 3 190px;
  column-gap: 8px;
}

.portfolio-mural.cols-4 {
  columns: 4 150px;
  column-gap: 6px;
}

.portfolio-mural.cols-5 {
  columns: 5 120px;
  column-gap: 6px;
}

.mural-item {
  position: relative;
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.2s ease;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin-bottom: -10px;
  padding: 3px;
  break-inside: avoid;
  overflow: visible;
  transform-origin: center center;
  will-change: transform;
}

/* PRIORIDADE DE CAMADA Z-INDEX PARA ARQUIVOS COM CANAL ALFA */
.mural-item.has-alpha {
  z-index: 10 !important;
}

.mural-item img,
.mural-item video {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: transparent !important;
  pointer-events: none;
}

/* ANIMAÇÃO DE FIM DA PÁGINA ESQUERDA (APROXIMADO DO MURAL COM LARGURA TOTAL) */
.end-animation-container {
  margin-top: 36px;
  padding: 10px 0 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  clear: both;
}

.end-anim-card {
  background: transparent;
  padding: 0;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.end-anim-card video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: fill;
  margin-bottom: 12px;
  transform: scale(1.06);
  transform-origin: center;
}

.end-anim-text-box {
  color: #111111;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin-top: 16px;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px dashed rgba(0, 0, 0, 0.3);
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.end-anim-text-box p {
  margin-bottom: 12px;
  color: #111111;
}

.end-anim-callout {
  font-weight: 500 !important;
  margin-top: 14px !important;
  margin-bottom: 0 !important;
  font-size: 15px;
}

.end-anim-email {
  color: #0055ea;
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}

.end-anim-email:hover {
  color: #ff3366;
}


/* 6. LADO DIREITO: FEED VERTICAL COM ESPAÇAMENTO UNIFORME E AMPLIADO */
.feed-right-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 0px;
}

/* CURSOR PERSONALIZADO NO BOX FLUTUANTE ESTILO DVD COM O PNG 01_CURSOR_SMALL.PNG */
.dvd-box-wrapper,
.dvd-box-canvas-container,
.dvd-floating-btn,
.dvd-floating-btn img {
  cursor: url('SITE/cursor/01_cursor_small.png') 4 4, pointer !important;
}

/* CURSOR PERSONALIZADO PS1 NO VISUALIZER COM O PNG 02_CURSOR_AUDIO_VISUALIZER.PNG */
#ps1-visualizer-section,
.ps1-visualizer-wrapper,
.ps1-stage,
.ps1-stage *,
.ps1-btn-wrapper,
.ps1-btn-wrapper img,
.ps1-canvas-box,
#ps1-canvas {
  cursor: url('SITE/cursor/02_cursor_audio_visualizer.png') 4 4, pointer !important;
}

.dvd-box-wrapper {
  width: 100%;
  background: #000;
  border: 1px solid rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.dvd-box-canvas-container {
  position: relative;
  width: 100%;
  height: 320px;
  background-image: url('SITE/flutuantes/FUNDO BOX FLUTUANTES.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* ÍCONES FLUTUANTES NO BOX DVD */
.dvd-floating-btn {
  position: absolute;
  width: 68px;
  height: 68px;
  user-select: none;
  touch-action: none;
  z-index: 5;
  background: transparent !important;
}

.dvd-floating-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  background: transparent !important;
}


/* 7. PÁGINAS SECRETAS — BANNERS CLICÁVEIS SEM CROP */
.secret-pages-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.secret-banner-card {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  cursor: pointer !important;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  display: block;
  z-index: 10;
}

.secret-banner-card video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  pointer-events: none !important;
}

.secret-banner-card:hover {
  transform: scale(1.02);
}

/* PLAYLIST SPOTIFY EMBUTIDA — LARGURA TOTAL E ALTURA DE 500px */
.spotify-embed-container {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background: #000;
}

.spotify-embed-container iframe {
  width: 100%;
  height: 500px !important;
  display: block;
  border: none;
}

.right-footer {
  text-align: center;
  padding: 20px 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 11px;
}


/* ==========================================================================
   8. MODAIS OVERLAY (FUNDO BRANCO 75% TRANSPARENTE + BOTÃO "X")
   ========================================================================== */

.modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(255, 255, 255, 0.94);
  z-index: 10000 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* BOTÃO "X" DE FECHAMENTO GLOBAL */
.modal-close-btn {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.modal-close-btn:hover {
  background: #ff3366;
}

/* BOTÃO DE VOLTAR */
.back-home-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.back-home-btn:hover {
  background: #222;
}

/* CONTAINER DOS MODAIS */
.modal-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: #ffffff;
  color: #111;
  padding: 36px;
  overflow-y: auto;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
}

.modal-title {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  color: #000;
  text-align: center;
}

/* FEED BODY CENTRALIZADO */
.feed-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.feed-item-media {
  width: 100%;
  max-width: 780px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feed-item-media video,
.feed-item-media img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  display: block;
  object-fit: contain;
}

/* SOLUÇÃO EMBEDS REELS DO INSTAGRAM (MAX-WIDTH 360px) */
.instagram-reel-container {
  width: 100% !important;
  max-width: 360px !important;
  margin: 0 auto !important;
  background: transparent !important;
  border: none !important;
  display: flex !important;
  justify-content: center !important;
}

.instagram-iframe {
  width: 100% !important;
  max-width: 360px !important;
  min-width: 280px !important;
  height: 580px !important;
  border: none !important;
  overflow: hidden !important;
  display: block !important;
  margin: 0 auto !important;
  background: #ffffff !important;
}

/* YOUTUBE EMBEDS & BOTÃO DE NAVEGAÇÃO DIRETA FALBACK */
.feed-item-media iframe.youtube-iframe {
  width: 100% !important;
  height: 440px !important;
  border: none !important;
  display: block !important;
}

.youtube-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff0000;
  color: #ffffff !important;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.youtube-play-btn:hover {
  background: #cc0000;
  transform: scale(1.03);
}

/* ESTILOS DE CRÉDITOS EM TEXTO PURO CENTRALIZADO E REVISADO SOBRE FUNDO BRANCO */
.feed-credits-text {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 16px 0 28px 0;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  color: #222222;
  font-family: 'Google Sans Flex', sans-serif;
  font-weight: 400;
}


/* ==========================================================================
   9. PÁGINA SECRETA DE PUBLIS — ÁREA DE TRABALHO (DESKTOP INTEGRAL & MOBILE RESPONSIVO)
   ========================================================================== */

#secret-publis-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.5) !important;
  z-index: 10000 !important;
}

#secret-publis-modal .fullscreen-grid-container,
.publis-desktop-container {
  background-image: url('SITE/bgceu.jpeg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #699fd5 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  overflow-y: auto !important;
  position: relative !important;
}

/* CANVAS DA ÁREA DE TRABALHO (DESKTOP) */
.publis-desktop-canvas {
  position: relative !important;
  width: 100% !important;
  min-width: 1360px !important;
  min-height: 1100px !important;
  padding: 24px !important;
  box-sizing: border-box !important;
}

/* JANELA NATIVA DO WINDOWS XP PARA O VÍDEO CENTRAL NA ÁREA DE TRABALHO (APENAS VISUAL E INFECHÁVEL) */
.xp-video-window-container {
  position: absolute !important;
  top: 140px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 320px !important;
  z-index: 100 !important;
}

.xp-desktop-video-player {
  width: 100% !important;
  background: #ece9d8 !important;
  border: 3px solid #0055ea !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45) !important;
}

.xp-title-bar-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
}

/* BOTÕES DA BARRA DE TÍTULO APENAS VISUAIS (SEM AÇÃO DE FECHAR) */
.xp-title-bar-controls button {
  width: 20px;
  height: 20px;
  background: #d4d0c8;
  border: 1px solid #fff;
  font-size: 11px;
  font-weight: 500;
  cursor: default !important;
  pointer-events: none !important;
  opacity: 0.9;
}

.xp-video-body {
  padding: 4px !important;
  background: #000000 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.xp-video-body video {
  width: 100% !important;
  height: 520px !important;
  object-fit: contain !important;
  display: block !important;
  background: #000000 !important;
}

/* POSICIONAMENTO ORGÂNICO DOS CLUSTERS EM VOLTA DA JANELA CENTRAL (DESKTOP) */
.publi-desktop-cluster {
  position: absolute !important;
  display: flex !important;
  gap: 16px 20px !important;
}

/* CLUSTER DISPOSTO DIRETAMENTE ACIMA DA JANELA DO VÍDEO */
.cluster-top-center {
  top: 24px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  flex-direction: row !important;
  justify-content: center !important;
  max-width: 540px !important;
}

/* CLUSTER DISPOSTO DIRETAMENTE ABAIXO DA JANELA DO VÍDEO */
.cluster-center-sky {
  top: 720px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  flex-direction: row !important;
  justify-content: center !important;
  max-width: 540px !important;
}

.cluster-top-left {
  top: 30px !important;
  left: 30px !important;
  flex-wrap: wrap !important;
  max-width: 380px !important;
}

.cluster-top-right-stack {
  top: 30px !important;
  right: 30px !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 14px !important;
}

.cluster-mid-left-row {
  top: 380px !important;
  left: 30px !important;
  flex-wrap: wrap !important;
  max-width: 380px !important;
}

.cluster-mid-right {
  top: 380px !important;
  right: 30px !important;
  flex-wrap: wrap !important;
  max-width: 380px !important;
}

.cluster-bottom-left {
  top: 720px !important;
  left: 30px !important;
  flex-wrap: wrap !important;
  max-width: 380px !important;
}

.cluster-bottom-right {
  top: 720px !important;
  right: 30px !important;
  flex-wrap: wrap !important;
  max-width: 380px !important;
}

/* ÍCONES DE ARQUIVO DO DESKTOP (EXIBIÇÃO INTEGRAL SEM CROP) */
.publi-desktop-icon {
  position: relative;
  width: 86px;
  height: 114px;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 !important;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), filter 0.15s ease;
  user-select: none;
  transform: rotate(0deg) !important;
  margin: 4px 6px;
  z-index: 10;
}

.publi-desktop-icon:hover {
  transform: scale(1.2) rotate(0deg) !important;
  z-index: 500 !important;
}

.publi-desktop-icon .publi-icon-thumb {
  width: 100%;
  height: 86px;
  background: transparent !important;
  overflow: visible !important;
  position: relative;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.publi-desktop-icon .publi-icon-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  display: block;
}

.publi-desktop-icon .publi-icon-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

.publi-desktop-icon .publi-icon-label {
  font-size: 10px;
  color: #ffffff !important;
  margin-top: 4px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.7) !important;
}

/* ÍCONES DECORATIVOS WINDOWS XP (POINTER-EVENTS NONE & Z-INDEX 1) */
.publi-xp-icon {
  position: relative;
  width: 86px;
  height: 114px;
  background: transparent !important;
  border: none !important;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 !important;
  user-select: none;
  margin: 4px 6px;
  pointer-events: none !important;
  opacity: 0.95;
  z-index: 1;
}

.publi-xp-icon .publi-icon-thumb {
  width: 56px;
  height: 56px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  margin-bottom: 16px;
}

.publi-xp-icon .publi-icon-thumb img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.publi-xp-icon .publi-icon-label {
  font-size: 10px;
  color: #ffffff !important;
  margin-top: 4px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.7) !important;
}


/* MODAL LOJA DE PRODUTOS & DETALHES */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.product-card {
  background: #f8f8fa;
  border: 1px solid #e0e0e6;
  cursor: pointer;
  transition: transform 0.2s ease;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card-info {
  padding: 16px;
}

.product-card-info h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}

.product-card-info p {
  font-size: 12px;
  color: #666;
  margin-bottom: 12px;
}

.product-price-tag {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-detail-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.product-video-wrapper {
  width: 100%;
  max-width: 780px;
  background: #000;
}

.product-video-wrapper video {
  width: 100%;
  display: block;
}

.product-description-box {
  width: 100%;
  max-width: 780px;
  background: #f4f4f6;
  padding: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.kiwify-checkout-container {
  margin-top: 10px;
  width: 100%;
  max-width: 780px;
}

.kiwify-buy-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #00c853;
  color: #000;
  text-decoration: none;
  padding: 18px 32px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease;
  text-align: center;
}

.kiwify-buy-btn small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 4px;
}

.kiwify-buy-btn:hover {
  transform: scale(1.02);
  background: #00e676;
}


/* MODAL SOBRE */
.full-image-modal {
  max-width: 1050px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}

.email-hotspot {
  position: absolute;
  top: 74%;
  left: 20%;
  width: 60%;
  height: 8%;
  cursor: pointer;
  background: rgba(255, 255, 0, 0.0);
}

.email-hotspot:hover {
  background: rgba(255, 255, 0, 0.15);
  border: 1px dashed rgba(0,0,0,0.4);
}


/* MODAL AUTORAL INSTAGRAM */
.autoral-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  width: 100%;
  justify-items: center;
}


/* MODAL FORMULÁRIO WINDOWS XP */
.xp-form-modal-wrapper {
  max-width: 480px;
  padding: 0;
  background: transparent;
  border: none;
}

.xp-window {
  background: #ece9d8;
  border: 2px solid #0055ea;
  font-family: Tahoma, "Segoe UI", sans-serif;
  overflow: hidden;
  text-align: left;
}

.xp-title-bar {
  background: linear-gradient(180deg, #0058ee 0%, #3593ff 4%, #288eff 6%, #0055ea 10%, #0055ea 83%, #0045cc 88%, #0045cc 93%, #001075 100%);
  padding: 6px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
}

.xp-title-bar-controls {
  display: flex;
  gap: 4px;
}

.xp-title-bar-controls button {
  width: 20px;
  height: 20px;
  background: #d4d0c8;
  border: 1px solid #fff;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
}

.xp-window-body {
  padding: 20px;
  color: #000;
}

.xp-field-group {
  margin-bottom: 14px;
}

.xp-field-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 4px;
}

.xp-field-group input,
.xp-field-group textarea {
  width: 100%;
  padding: 6px 8px;
  font-size: 12px;
  border: 2px inset #7f9db9;
  background: #fff;
  font-family: Tahoma, sans-serif;
}

.xp-button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.xp-submit-btn {
  background: #ece9d8;
  border: 2px outset #fff;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}


/* GALERIA PÁGINAS SECRETAS (ARTES & BUMPERS NO ESTILO VAL7K.VISION GRID FULLSCREEN EDGE-TO-EDGE) */
.secret-fullscreen-modal {
  padding: 0 !important;
  background: rgba(0, 0, 0, 0.95) !important;
}

.fullscreen-grid-container {
  max-width: 100vw !important;
  width: 100vw !important;
  max-height: 100vh !important;
  height: 100vh !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #000000 !important;
  border: none !important;
  overflow-y: auto !important;
  border-radius: 0 !important;
}

.artes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0px !important;
  width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
}

.artes-item-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  border: none !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.2s ease;
}

.artes-item-card video,
.artes-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artes-item-card:hover {
  transform: scale(1.05);
  z-index: 20;
}


/* LIGHTBOX CAROUSEL */
.lightbox-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lightbox-content-box {
  max-width: 85vw;
  max-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content-box video,
.lightbox-content-box img {
  max-width: 100%;
  max-height: 80vh;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 32px;
  cursor: pointer;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav-btn.prev-btn { left: 30px; }
.lightbox-nav-btn.next-btn { right: 30px; }

.lightbox-nav-btn:hover {
  background: #ff3366;
}


/* ==========================================================================
   10. RESPONSIVIDADE EXCLUSIVA PARA DISPOSITIVOS MÓVEIS / IPHONE (MAX-WIDTH: 900px)
   ========================================================================== */

@media (max-width: 900px) {
  /* DIVISÃO IGUALITÁRIA 50% / 50% DA HOME PAGE EM CELULARES */
  .app-container {
    flex-direction: column !important;
    height: 100vh !important;
    width: 100vw !important;
    overflow: hidden !important;
  }
  
  .split-left {
    width: 100% !important;
    height: 50vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 0 8px 30px 10px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  }

  .split-right {
    width: 100% !important;
    height: 50vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 0 14px 40px 14px !important;
    border-left: none !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
  }
  
  .modal-container {
    padding: 20px;
  }
  
  .modal-close-btn {
    top: 14px;
    right: 14px;
  }

  /* REGRAS EXCLUSIVAS PARA A PÁGINA SECRETA DE PUBLIS EM CELULARES / IPHONE */
  .publis-desktop-container {
    padding: 0 !important;
  }

  .publis-desktop-canvas {
    position: relative !important;
    width: 100% !important;
    min-width: 100% !important;
    min-height: auto !important;
    padding: 12px 6px 40px 6px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* JANELA CENTRAL DO WINDOWS XP RIGOROSAMENTE CENTRALIZADA NO CENTRO MATEMÁTICO DO CELULAR */
  .xp-video-window-container {
    position: relative !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 285px !important;
    max-width: 88vw !important;
    margin: 12px auto 20px auto !important;
    display: block !important;
    z-index: 100 !important;
  }

  .xp-video-body video {
    width: 100% !important;
    height: 440px !important;
    max-height: 56vh !important;
    object-fit: contain !important;
  }

  /* REORGANIZAÇÃO COMPACTA EM LINHAS HORIZONTAIS (4 COLUNAS POR LINHA NO CELULAR) */
  .publi-desktop-cluster {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 6px 8px !important;
    margin: 6px 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .publi-desktop-icon,
  .publi-xp-icon {
    margin: 2px 3px !important;
    width: 68px !important;
    height: 90px !important;
    flex: 0 0 auto !important;
  }

  .publi-desktop-icon .publi-icon-thumb {
    width: 100% !important;
    height: 68px !important;
  }

  .publi-xp-icon .publi-icon-thumb {
    width: 40px !important;
    height: 40px !important;
    margin-top: 4px !important;
    margin-bottom: 8px !important;
  }

  .publi-xp-icon .publi-icon-thumb img {
    width: 34px !important;
    height: 34px !important;
  }

  .publi-desktop-icon .publi-icon-label,
  .publi-xp-icon .publi-icon-label {
    font-size: 9px !important;
  }
}

/* ==========================================================================
   AUDIO VISUALIZER — WINDOWS XP STYLE & RETRO VJ INTERFACE
   ========================================================================== */

.ps1-visualizer-wrapper {
  width: 100%;
  margin-top: 24px;
  box-sizing: border-box;
  text-align: left;
}

.ps1-xp-window {
  background: #ece9d8;
  border: 2px solid #0058e6;
  border-radius: 4px 4px 0 0;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  font-family: Tahoma, "Segoe UI", Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.ps1-xp-body {
  padding: 12px;
  background: #ece9d8;
}

.ps1-vis-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.ps1-key-hints {
  color: #333344;
  font-size: 11px;
  font-family: Tahoma, sans-serif;
}

.ps1-key-hints strong {
  color: #ffff00;
  font-weight: bold;
}

.ps1-vis-canvas-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border: 2px inset #ffffff;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.ps1-vis-canvas-container canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* OVERLAY CONTAGEM REGRESSIVA 3, 2, 1 */
.ps1-countdown-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  color: #00f0ff;
  font-size: 80px;
  font-weight: bold;
  font-family: Tahoma, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  text-shadow: 0 0 20px #00f0ff;
}

/* INDICADOR 🔴 REC */
.ps1-rec-indicator {
  position: absolute;
  top: 10px;
  right: 12px;
  background: #d32f2f;
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: bold;
  font-family: Tahoma, sans-serif;
  letter-spacing: 1px;
  z-index: 40;
  border: 1px solid #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

/* TOAST FEEDBACK DAS TECLAS VJ */
.ps1-vj-toast {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #0058e6;
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: bold;
  font-family: Tahoma, sans-serif;
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
  z-index: 45;
  border: 1px solid #fff;
}

.ps1-vj-toast.active {
  opacity: 1;
}

/* ==========================================================================
   PS1 AUDIO VISUALIZER — DESIGN COM ASSETS E FUNDO TELA INICIAL
   ========================================================================== */
.ps1-visualizer-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ps1-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 344 / 260;
  border-radius: 4px;
  overflow: hidden;
  user-select: none;
  background: #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.ps1-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  z-index: 1;
}

/* ÁREA DO CANVAS DA TELA (X=8.14%, Y=18.08%, W=84.88%, H=63.85%) */
.ps1-canvas-box {
  position: absolute;
  top: 18.08%;
  left: 8.14%;
  width: 84.88%;
  height: 63.85%;
  background: #000;
  z-index: 2;
  overflow: hidden;
}

#ps1-canvas {
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.ps1-countdown-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: monospace, sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff, 2px 2px 0 #000;
  z-index: 10;
}

.ps1-rec-indicator {
  position: absolute;
  top: 8px;
  right: 10px;
  background: rgba(255, 0, 0, 0.85);
  color: #fff;
  font-family: monospace, sans-serif;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 2px;
  font-weight: bold;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}

/* INFO DA FAIXA NO CANTO INFERIOR ESQUERDO DA JANELA GERAL DO VISUALIZER */
.ps1-info-bar {
  position: absolute;
  bottom: 4px;
  left: 12px;
  max-width: 90%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #00f0ff;
  font-family: 'Google Sans Flex', monospace, sans-serif;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 0 4px rgba(0, 240, 255, 0.6), 1px 1px 2px #000;
  z-index: 25;
  pointer-events: none;
}

/* POSICIONAMENTO ABSOLUTO EXATO DOS BOTÕES EM PORCENTAGEM (344px x 260px) */
.ps1-btn-wrapper {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
}

.ps1-btn-wrapper:hover:not(:disabled):not(.disabled) {
  transform: scale(1.08);
}

.ps1-btn-wrapper:active:not(:disabled):not(.disabled) {
  transform: scale(0.95);
}

.ps1-btn-wrapper.disabled,
.ps1-btn-wrapper:disabled {
  opacity: 0.45;
  filter: grayscale(0.85);
  pointer-events: none;
  cursor: not-allowed !important;
}

.ps1-btn-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

/* BOTÃO CARREGUE ARQUIVO (left: 23px, top: 219px, width: 124px, height: 24px) */
.btn-upload {
  position: absolute;
  left: 6.686%;    /* 23 / 344 */
  top: 84.2307%;   /* 219 / 260 */
  width: 36.0465%; /* 124 / 344 */
  height: 9.2307%; /* 24 / 260 */
  z-index: 12;
}

/* BOTÃO PLAY / PAUSE (left: 146px, top: 219px, width: 23px, height: 24px) - MESMA POSIÇÃO E TAMANHO PERFEITOS */
.btn-play {
  position: absolute;
  left: 42.4418%;  /* 146 / 344 */
  top: 84.2307%;  /* 219 / 260 */
  width: 6.686%;    /* 23 / 344 */
  height: 9.2307%; /* 24 / 260 */
  z-index: 13;
}

.btn-play img,
#ps1-play-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: fill !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* BOTÃO REC / PARAR REC (left: 174px, top: 219px, width: 40px, height: 24px) */
.btn-rec {
  position: absolute;
  left: 50.5814%;  /* 174 / 344 */
  top: 84.2307%;  /* 219 / 260 */
  width: 11.6279%; /* 40 / 344 */
  height: 9.2307%; /* 24 / 260 */
  z-index: 15;
}

/* BOTÃO SALVAR VÍDEO (left: 218px, top: 219px, width: 103px, height: 24px) */
.btn-download {
  position: absolute;
  left: 63.3721%;  /* 218 / 344 */
  top: 84.2307%;  /* 219 / 260 */
  width: 29.9418%; /* 103 / 344 */
  height: 9.2307%; /* 24 / 260 */
  z-index: 17;
}

.ps1-key-hints {
  width: 100%;
  margin-top: 8px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #00f0ff;
  font-family: monospace, sans-serif;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
  border-radius: 4px;
}

/* ==========================================================================
   GARRAFA FLUTUANTE GLOBAL (FULLSCREEN BOUNCING & AXIAL ROTATION)
   ========================================================================== */

.global-floating-bottle {
  position: fixed;
  top: 0;
  left: 0;
  width: 72px;
  height: 145px;
  z-index: 9990;
  cursor: pointer;
  filter: none;
  user-select: none;
  touch-action: manipulation;
  will-change: transform;
  transition: filter 0.15s ease;
}

.global-floating-bottle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.global-floating-bottle:hover {
  filter: brightness(1.15);
}

.global-floating-bottle:active {
  filter: brightness(0.92);
}

/* ==========================================================================
   MINIGAME ADSTRINGENTE CEREBRAL (MODAL & LAYOUT 1440x1080)
   ========================================================================== */

.brain-game-modal-overlay {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
}

.brain-game-modal-overlay.active {
  display: flex;
}

.brain-game-header-nav {
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 10010;
}

.brain-game-container {
  position: relative;
  width: min(94vw, calc(90vh * (1440 / 1080)));
  height: min(90vh, calc(94vw * (1080 / 1440)));
  aspect-ratio: 1440 / 1080;
  max-width: 1440px;
  max-height: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brain-game-stage {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.9), 0 0 1px rgba(255, 255, 255, 0.2);
  user-select: none;
}

.brain-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

/* LETTERING DO NOME: FICA NA FRENTE / ACIMA DO CÉREBRO NO TOPO */
.brain-lettering-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 12;
  pointer-events: none;
}

.brain-instructions-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 12;
  pointer-events: none;
}

/* SETAS DE ROTAÇÃO 3D */
.brain-nav-arrow {
  position: absolute;
  top: 50.5%;
  transform: translateY(-50%);
  width: 6.8%;
  aspect-ratio: 149 / 157;
  z-index: 15;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.15s ease, opacity 0.2s ease;
}

.brain-nav-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brain-nav-arrow.arrow-left {
  left: 5.5%;
}

.brain-nav-arrow.arrow-right {
  right: 5.5%;
}

.brain-nav-arrow:hover {
  transform: translateY(-50%) scale(1.16);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.85));
}

.brain-nav-arrow:active {
  transform: translateY(-50%) scale(0.92);
}

/* CONTAINER DO CANVAS DO CÉREBRO (ESCALA AUMENTADA PARA 75%) */
.brain-canvas-wrapper {
  position: absolute;
  top: 50.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  aspect-ratio: 1 / 1;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  touch-action: none;
}

.brain-canvas-wrapper.brain-custom-cursor {
  cursor: url('SITE/cursor/03_cursor_jogo_cerebro_small.png') 6 6, crosshair !important;
}

#brain-render-canvas {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.75));
}

/* MICROTEXTOS FLUTUANTES */
.brain-floating-feedback-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
  overflow: hidden;
}

.brain-floating-feedback-tag {
  position: absolute;
  background: #ffe600;
  color: #000;
  font-family: 'Google Sans Flex', Tahoma, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: clamp(12px, 1.6vw, 22px);
  letter-spacing: -0.3px;
  padding: 6px 14px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  border-radius: 2px;
  white-space: nowrap;
  pointer-events: none;
  animation: popFeedback 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.brain-floating-feedback-tag.fade-out {
  opacity: 0;
  transform: translateY(-12px) scale(0.92);
}

@keyframes popFeedback {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* CANVAS DE CONFETES */
.brain-confetti-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 25;
  pointer-events: none;
}

/* IMAGEM DE TELA FINAL (FADE IN NA VITÓRIA) */
.brain-final-screen-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.brain-final-screen-img.active {
  opacity: 1;
  pointer-events: auto;
}

/* BOX AMARELO CENTRAL DE VITÓRIA */
.brain-victory-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 86%;
  max-width: 820px;
  background: #ffe600;
  color: #000;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #000;
  border-radius: 4px;
  padding: 24px 30px;
  box-sizing: border-box;
  text-align: center;
  z-index: 35;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brain-victory-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.brain-victory-banner p {
  margin: 0;
  color: #000;
  font-family: 'Google Sans Flex', Tahoma, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: clamp(13px, 1.75vw, 23px);
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.brain-restart-btn {
  display: inline-block;
  background: #000;
  color: #ffe600;
  border: 2px solid #000;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: 'Google Sans Flex', Tahoma, "Segoe UI", sans-serif;
  font-weight: 900;
  font-size: clamp(11px, 1.25vw, 16px);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.brain-restart-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.6);
}

.brain-restart-btn:active {
  transform: translateY(0) scale(0.98);
}

/* BARRA AMARELA INFERIOR DE PONTA A PONTA (ALTURA MENOR, LINHA ÚNICA) */
.brain-game-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8.8%;
  background: #ffe600;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  box-sizing: border-box;
  text-align: center;
  border-top: 2px solid #000;
  overflow: hidden;
}

#brain-game-status-text {
  margin: 0;
  color: #000;
  font-family: 'Google Sans Flex', Tahoma, "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(8px, 1.25vw, 17px);
  line-height: 1.15;
  width: 100%;
  white-space: nowrap;
  letter-spacing: -0.2px;
  display: inline-block;
  transform-origin: center center;
}

@media (max-width: 768px) {
  .global-floating-bottle {
    width: 54px;
    height: 109px;
  }
  .brain-game-bottom-bar {
    height: 10.5%;
    padding: 0 6px;
  }
  .brain-victory-banner {
    width: 92%;
    padding: 14px 16px;
  }
}

