 @import  url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700&display=swap');

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

body {
  font-family: 'Space Grotesk', sans-serif !important;
  background-color: #0a0a0a;
  color: #fff;
  cursor: none;
  overflow-x: hidden;
  position: relative;
}

::selection {
  background: #23544d;
  color: #fff;
}

::-moz-selection {
  background: #23544d;
  color: #fff;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/fundinho.webp') no-repeat center center;
  background-size: cover;
  z-index: -10;
  transform: translateZ(0) scale(1.02);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  filter: brightness(1);
}

body.modal-ativo::before {
  opacity: 0;
  transition: opacity 0.1s;
}

#vibe-rosa-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100lvw;
  height: 100lvh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 2s ease;
  background-image: url('img/woohoorosudo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

#custom-cursor {
  position: fixed;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid #3ec6b8;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  box-shadow: 0 0 15px rgba(62, 198, 184, 0.8), inset 0 0 10px rgba(62, 198, 184, 0.4);
  overflow: hidden;
}

.expandir-cursor {
  animation: expandirSuave 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes expandirSuave {
  0%   { transform: translate(-50%, -50%) scale(0.1); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

#minha-topbar {
  display: none;
  opacity: 0;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(62, 198, 184, 0.6));
}

.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: auto;
}

.hero.fade-out {
  opacity: 0;
  pointer-events: none;
}

.hero-titulo {
  max-width: 500px;
  width: 90%;
  height: auto;
  margin-bottom: 2px;
  margin-top: 40px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: mask-size, opacity, -webkit-mask-size;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 50%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 50%, transparent);
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  animation: revelarDoMeio 1.6s cubic-bezier(0.25, 1, 0.5, 1) 0s both;
}

.hero p {
  color: #aecdd4;
  font-size: 0.85rem;
  margin-bottom: 14px;
  margin-top: -3px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: mask-size, opacity, -webkit-mask-size;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 50%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 50%, transparent);
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  animation: revelarDoMeio 1.6s cubic-bezier(0.25, 1, 0.5, 1) 0.2s both;
}

@keyframes revelarDoMeio {
  0% {
    opacity: 0;
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-mask-size: 250% 100%;
    mask-size: 250% 100%;
  }
}

#device-info .config-box .pet-interativo {
  width: 100% !important;
  max-width: 450px !important;
  height: auto !important;
  margin-top: 15px;
  border-radius: 8px;
  border: 1px solid rgba(62, 198, 184, 0.4);
  box-shadow: 0 0 15px rgba(62, 198, 184, 0.5);
  cursor: pointer;
  transition: transform 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 2s ease;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 768px) {
  #device-info .config-box { padding: 20px; }
  #wrapper-principal, body::before { background-attachment: scroll; }
}

@media (min-width: 1024px) {
  .divisor {
    width: 100%;
    max-width: 1200px;
    height: 180px;
    margin: 60px auto;
    background-size: contain;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1300px;
    margin: 0 auto;
    gap: 30px;
    padding: 40px;
  }
  .card { min-height: 250px; }
  .topbar { padding-top: 40px; padding-bottom: 10px; }
  .logo img { height: 100px; }
  #wrapper-principal { background-attachment: fixed; }
}

#device-info .config-box {
  max-width: 600px;
  margin: 40px auto 20px auto;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(62, 198, 184, 0.3);
  color: #fff;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.8);
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#device-info .config-box h3 { width: 100%; text-align: center; color: #3ec6b8; }
#device-info .config-box p  { width: 100%; text-align: right; margin: 4px 0; }

#device-info {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 0 20px;
}

#pet-clicavel {
  display: block;
  margin: 20px auto 0 auto;
  max-width: 450px;
  height: auto;
}

.primary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(62, 198, 184, 0.3);
  padding: 14px 40px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.2s ease;
  position: relative;
  z-index: 10;
  letter-spacing: 1px;
}

.primary:hover  { background: rgba(62, 198, 184, 0.1); border-color: #3ec6b8; box-shadow: 0 0 20px rgba(62, 198, 184, 0.3); }
.primary:active { transform: scale(0.90); }

.divisor {
  width: 100%;
  height: 100px;
  background: url('img/divisor-icon.webp') no-repeat center;
  background-size: contain;
  margin: 40px 0;
  filter: drop-shadow(0 0 8px rgba(62, 198, 184, 0.5));
  opacity: 0;
  transition: opacity 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.grid {
  display: none;
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card {
  position: relative;
  isolation: isolate;
  padding: 26px;
  border-radius: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent !important;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.card-content {
  position: relative;
  z-index: 10;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.card-glass {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 1;
}

.card h3, .card p, .card-icon { position: relative; z-index: 18; }
.card p, .card h3 { mix-blend-mode: normal !important; }

.card h3 {
  color: #ffffff !important;
  font-size: 1.2rem;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  text-align: center;
  position: relative;
  z-index: 10;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.card-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 15px auto;
  display: block;
  opacity: .95;
  filter: drop-shadow(0 0 4px rgba(62, 198, 184, .35));
}

.card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(62, 198, 184, .22), transparent 72%);
  pointer-events: none;
}

.card .card-icon[src*="mimi.gif"],
.card .card-icon[src*="conteiner-wow.webp"] { width: 40px !important; height: 40px !important; }

.card:hover { transform: translateY(-5px); }
.card:hover .card-glass {
  box-shadow: inset 0 0 20px rgba(62, 198, 184, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.8);
  transition: 0.3s;
}
.card:active { transform: scale(0.94); }

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.card-glow {
  position: absolute;
  inset: 0;
  border-radius: 35px;
  padding: 2px;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card-glow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background: conic-gradient(
        from var(--angle),
        transparent 65%,
        rgba(255, 255, 255, 0.15) 75%,
        rgba(255, 255, 255, 0.95) 88%,
        #ffffff 95%,
        transparent 100%
    );
  animation: girar 6s linear infinite;
  animation: girar 6s linear infinite;
  animation-play-state: var(--anim-play-state, running);
  opacity: 0.9;
  will-change: --angle;
}

@keyframes girar {
  from { --angle: 0deg; }
  to   { --angle: 360deg; }
}

.grid .card .card-glow { opacity: 1; }
.grid .card:nth-child(1) .card-glow::before { animation-duration: 6s; }
.grid .card:nth-child(2) .card-glow::before { animation-duration: 10s; animation-delay: -2s; }
.grid .card:nth-child(3) .card-glow::before { animation-duration: 4s;  animation-delay: -4s; }
.grid .card:nth-child(4) .card-glow::before { animation-duration: 15s; animation-delay: -1s; }
.grid .card:nth-child(5) .card-glow::before { animation-duration: 8s;  animation-delay: -6s; }
.grid .card:nth-child(6) .card-glow::before { animation-delay: -3s; }

.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.modal-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/blurzinho.webp') center center / cover no-repeat;
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
  contain: strict;
}

.modal-overlay.ativo {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  background: #000;
  width: 90%;
  max-width: 500px;
  max-height: 85vh;
  border: 1px solid rgba(62, 198, 184, 0.4);
  border-radius: 25px;
  padding: 25px;
  overflow-y: auto;
  overflow-x: hidden;
  color: #fff;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  margin: 20px 0;
  isolation: isolate;
  contain: paint;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease;
  contain: paint;
  -webkit-contain: paint;
}

.modal-overlay.fechando .modal-content {
  opacity: 0;
  transform: scale(0.98);
}

.modal-content h2 { color: #3ec6b8; margin-bottom: 15px; }
.modal-content h3 { color: #fff; font-size: 1rem; margin: 7px 0 7px 0; }

.codigo-valor {
  display: inline-block;
  margin-top: 8px;
}

.modal-dica {
  background: rgba(62, 198, 184, 0.1);
  padding: 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  border: 1px solid rgba(62, 198, 184, 0.3);
  color: #3ec6b8;
  margin-bottom: 15px;
}

.modal-obs    { font-size: 0.85rem; color: #888; }

.modal-alerta {
  background: rgba(255, 193, 7, 0.1);
  padding: 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  border: 1px solid #ffc107;
  color: #ffc107;
  margin: 15px 0;
}

.modal-erro {
  background: rgba(255, 82, 82, 0.1);
  padding: 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  border: 1px solid #ff5252;
  color: #ff5252;
  margin-top: 15px;
}

.modal-codigo-compartilhamento { text-align: center; margin: 15px 0; font-size: 0.9rem; }
.destaque-ciano-italico { color: #3ec6b8; font-style: italic; }

.modal-subtitulo { color: #3ec6b8; font-weight: bold; margin-top: 15px; }
.modal-texto     { font-size: 0.9rem; margin: 10px 0; }
.modal-texto span { color: #3ec6b8; }
.modal-legenda   { text-align: center; margin-top: 15px; font-weight: bold; }
.modal-lista     { margin: 10px 20px; font-size: 0.9rem; color: #ccc; }
.modal-divisor { width: 100%; height: 15px; }

.modal-img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(62, 198, 184, 0.3);
  margin-top: 15px;
}

.modal-content .config-box span { color: #3ec6b8; }

.modal-divider {
display: flex;
justify-content: center;
margin: 29px 0;
}

.modal-divider img {
width: 291px;
height: auto;
-webkit-user-drag: none;
user-select: none;
pointer-events: none;
}

.btn-fechar {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #3ec6b8;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2100;
}

.btn-download {
  display: block;
  background: #3ec6b8;
  color: #000;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  margin: 20px 0;
  transition: 0.2s;
}

.btn-download:hover   { opacity: 0.9; }
.btn-download:active  { transform: scale(0.97); }
.btn-wicked {
  background: linear-gradient(135deg, #9d5fd6, #6a2fa8);
  color: #fff;
  box-shadow: 0 0 14px rgba(157, 95, 214, 0.45);
}

.btn-wicked:hover {
  box-shadow: 0 0 20px rgba(157, 95, 214, 0.65);
}

.modal-aviso {
  margin-top: 12px;
  line-height: 1.5;
}

.modal-aviso .destaque {
  color: #3ec6b8;
  font-weight: bold;
}

.modal-aviso .destaque-italico {
  color: #3ec6b8;
  font-weight: bold;
  font-style: italic;
}

.modal-aviso .negrito-italico {
  font-weight: bold;
  font-style: italic;
}

.modal-aviso b {
  font-weight: bold;
}

.proibido {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.efeito-entrada {
  animation: entradaSimples 0.4s ease-out forwards;
}

@keyframes entradaSimples {
  0%   { opacity: 0; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}

.poeira-cosmica {
  width: 2px;
  height: 2px;
  background-color: #3ec6b8;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
}

@keyframes brilharSuave {
  0%   { transform: translate(0, 0) scale(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translate(var(--x), var(--y)) scale(1.5); opacity: 0; }
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

video {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

@keyframes sumirCortina {
  0%   { opacity: 1; }
  30%  { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

.blur-in main {
  animation: entradaSuave 1.2s ease-out forwards;
}

@keyframes entradaSuave {
  0%   { opacity: 0; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}

.footer-acido {
  margin-top: 50px;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-acido p { margin: 5px 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
.sub-footer      { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.4; }

.back-to-top {
  position: fixed;
  bottom: 20px; left: 20px;
  width: 55px; height: 55px;
  background: rgba(10, 10, 10, 0.6); 
  border-radius: 50%;
  border: none;
  color: #3ec6b8;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.5s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(62, 198, 184, 0.1);
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: -2px; 
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(
      from var(--angle),
      transparent 65%,
      rgba(255, 255, 255, 0.15) 75%,
      rgba(255, 255, 255, 0.95) 88%,
      #ffffff 95%,
      transparent 100%
  );
  -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation-name: girar;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: var(--anim-play-state, running);
  will-change: --angle;
}

.back-to-top.show   { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.back-to-top:active { transform: scale(0.9); box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }

.share-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: inherit;
  font-weight: bold;
  font-size: 0.85rem;
  padding: 10px 20px;
  border: 1px solid rgba(62, 198, 184, 0.3);
  border-radius: 20px;
  background: rgba(10, 10, 10, 0.8);
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.share-link:active {
  transform: scale(0.92);
  border-color: #3ec6b8;
  background: rgba(62, 198, 184, 0.1);
  box-shadow: 0 0 25px rgba(62, 198, 184, 0.8), inset 0 0 10px rgba(62, 198, 184, 0.4);
  transition: all 0s;
}

body.modal-aberto { overflow: hidden; touch-action: none; }

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 20px;
  border: 1px solid rgba(62, 198, 184, 0.5);
  font-weight: bold;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(0, 0, 0, 1);
}

.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

.espacinho {
  margin-top: 16px;
}

* .knd, .knd, i .knd, i > .knd {
  color: #3ec6b8 !important;
}

img[src*="nhaw.webp"] {
  display: block;
  margin: 20px auto 0 auto;
  max-width: 450px;
  transition: filter 2s ease, transform 0.2s ease !important;
}

.woohoo-shake {
  animation: suavePulso 0.8s infinite !important;
  filter: drop-shadow(0 0 12px rgba(255, 0, 222, 0.35));
}

.heart-particle {
  position: fixed;
  bottom: -10vh;
  background-image: url('img/coracoes-pixel.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10000;
  pointer-events: none;
  user-select: none;
  opacity: 0.9;
  image-rendering: pixelated;
  animation: subirLivremente var(--duracao, 13s) linear forwards;
}

@keyframes subirLivremente {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.8; }
  100% { transform: translateY(var(--subir-total)) translateX(var(--random-x)) rotate(15deg); opacity: 0; }
}

.pop-bubble-original {
  position: fixed;
  width: 3px; height: 3px;
  background: #ff69b4;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  box-shadow: 0 0 4px #ff69b4;
  animation: particulaExplosao 0.6s ease-out forwards;
}

@keyframes particulaExplosao {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

.pet-interativo {
  width: 100%;
  margin-top: 15px;
  border-radius: 8px;
  border: 1px solid rgba(62, 198, 184, 0.4);
  box-shadow: 0 0 15px rgba(62, 198, 184, 0.5);
  cursor: pointer;
  transition: transform 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 2s ease;
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes suavePulso {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}

.pop-bubble-fumaca {
  position: fixed;
  width: 8px; height: 8px;
  background: #ffd1eb;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  filter: blur(3px);
  box-shadow: 0 0 10px #ff69b4;
  animation: efeitoFumacaParticles 0.8s ease-out forwards;
}

@keyframes efeitoFumacaParticles {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(1.2); opacity: 0; }
}

@keyframes shake-tela {
  0%   { transform: translate(1px, 1px) rotate(0deg); }
  10%  { transform: translate(-1px, -2px) rotate(-1deg); }
  20%  { transform: translate(-3px, 0px) rotate(1deg); }
  30%  { transform: translate(3px, 2px) rotate(0deg); }
  40%  { transform: translate(1px, -1px) rotate(1deg); }
  50%  { transform: translate(-1px, 2px) rotate(-1deg); }
  60%  { transform: translate(-3px, 1px) rotate(0deg); }
  70%  { transform: translate(3px, 1px) rotate(-1deg); }
  80%  { transform: translate(-1px, -1px) rotate(1deg); }
  90%  { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

#wrapper-principal {
  min-height: 100vh;
  width: 100%;
  background: url('img/fundinho.webp') no-repeat center center;
  background-size: cover;
}

#wrapper-principal.tremidinha-ativa {
  animation: shake-tela 0.3s 1;
}

#loader-transicao {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #0a0a0a;
  z-index: 3000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#loader-transicao p {
  color: #3ec6b8;
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 15px;
  letter-spacing: 2px;
}

.pulse-loader {
  width: 110px;
  height: auto;
  position: relative;
  animation: pulsoCarregamento 0.8s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 10px rgba(62, 198, 184, 0.5));
}

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

.gato-nono {
  position: absolute;
  width: 80px;
  max-width: 80px;
  height: auto;
  top: -26px; left: 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 999;
}

.gato-nono.visivel  { opacity: 1; }
.gato-nono.escondido { opacity: 0; }

#device-info .config-box { overflow: visible !important; }

.step-video {
  width: 100%;
  max-width: 100% !important;
  border-radius: 12px;
  border: 1px solid rgba(62, 198, 184, 0.4);
  margin: 10px 0;
  display: block;
}

.video-btn-custom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
}

.video-btn-custom.visivel { opacity: 1; }

.video-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  transition: opacity 0.17s ease;
}

.step-video::-webkit-media-controls-play-button,
.step-video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button { display: none !important; }

.video-barra {
  position: absolute;
  bottom: 18px;
  left: 10px; right: 10px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-barra.visivel { opacity: 1; }

.video-barra-preenchida {
  height: 100%;
  background: #3ec6b8;
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.video-tempo-tooltip {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 6px;
  pointer-events: none;
  display: none;
  z-index: 100;
  white-space: nowrap;
}

.video-faixinha-speed {
  position: absolute;
  bottom: 12px; left: 0;
  width: 100%; height: 45px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(200,200,200,0.05) 30%, rgba(0,0,0,0.7) 100%);
  display: none;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 5px 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 9;
}

.video-faixinha-speed.visivel { display: flex; opacity: 1; }

.video-faixinha-speed span {
  color: rgba(200, 200, 200, 0.6);
  font-size: 0.65rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
  user-select: none;
}

.video-seek-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 11;
  white-space: nowrap;
}

.video-seek-indicator.lado-esquerda { left: 16px; }
.video-seek-indicator.lado-direita { right: 16px; }
.video-seek-indicator.visivel { opacity: 1; }

.video-tempo-corner {
  position: absolute;
  bottom: 26px;
  right: 10px;
  background: transparent;
  color: #3ec6b8;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0;
  border-radius: 0;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
}

.video-tempo-corner.visivel { opacity: 1; }

.video-aviso18 {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(160deg, rgba(74, 27, 112, 0.93), rgba(35, 12, 58, 0.96));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.video-aviso18.visivel { opacity: 1; pointer-events: auto; }

.video-aviso18 p {
  color: #e8d5ff;
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 320px;
  margin: 0;
}

.video-aviso18 p strong {
  color: #d19cff;
}

.video-aviso18 button {
  background: #9d5fd6;
  color: #fff;
  border: none;
  padding: 8px 26px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(157, 95, 214, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.video-aviso18 button:active {
  transform: scale(0.95);
}

#erros-bugs {
  margin: 40px 20px;
}
.erros-bugs-inner {
  max-width: 600px;
  margin: 0 auto;
}
.erros-titulo {
  text-align: center;
  color: #3ec6b8;
  margin-bottom: 10px;
}
.erros-subtitulo {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 25px;
}
.acordeao-item {
  margin-bottom: 12px;
}
.acordeao-trigger {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(62,198,184,0.3);
  border-radius: 50px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: 0.2s;
  color: #fff;
  font-size: 1rem;
}
.acordeao-trigger:hover {
  background: rgba(62,198,184,0.1);
  border-color: #3ec6b8;
}
.acordeao-emoji {
  font-size: 1.5rem;
}
.acordeao-pergunta {
  flex: 1;
  text-align: left;
}
.acordeao-seta {
  transition: transform 0.2s;
}
.acordeao-item.aberto .acordeao-seta {
  transform: rotate(180deg);
}
.acordeao-corpo {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  margin-top: 5px;
  padding: 0 15px;
}
.acordeao-item.aberto .acordeao-corpo {
  padding: 15px;
}
.erros-contato-wrap {
  margin-top: 30px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 20px;
}
.erros-contato-titulo {
  color: #3ec6b8;
  margin-bottom: 10px;
}
.erros-contato-desc {
  font-size: 0.85rem;
  margin-bottom: 15px;
}
.erros-btn-contato {
  margin: 0 auto;
  max-width: 250px;
}
.erros-btn-tiktok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.tiktok-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  margin-top: 1px;
}
.erros-card-simples {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(62,198,184,0.3);
  border-radius: 60px;
  padding: 12px 20px;
  margin: 20px auto;
  max-width: 500px;
}
.erros-card-emoji {
  font-size: 1.8rem;
}
.erros-card-texto {
  flex: 1;
  margin: 0 15px;
  font-size: 0.85rem;
}
.erros-card-link {
  color: #3ec6b8;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
} 

.yuppi {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
} 
