


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  
  background: linear-gradient(135deg, #0d0f25, #16213e, #350045);
  background-attachment: fixed;
  background-size: cover;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}


.container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}


.titulo {
  font-size: 2.4rem;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.6);
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}


.grid-ferramentas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  z-index: 3;
}


.tool-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  color: #fff;
  padding: 1.8rem;
  transition: all 0.35s ease;
  position: relative;
}


.tool-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 255, 0.45);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.45);
}


.tool-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 80%);
  pointer-events: none;
}


.tool-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: #e6faff;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.4);
}


.tool-card p {
  font-size: 1rem;
  color: #d1d1d1;
}


.em-breve {
  opacity: 0.5;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: not-allowed;
}


@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  .titulo {
    font-size: 1.8rem;
  }

  .tool-card {
    font-size: 0.95rem;
    padding: 1.2rem;
  }
}




.tool-card.destaque {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.15);
  box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.06),
    0 0 20px rgba(0, 0, 0, 0.3);
  transition: all 0.35s ease;
}


.tool-card.destaque:hover {
  border-color: rgba(0, 255, 255, 0.35);
  box-shadow: inset 0 0 25px rgba(0, 255, 255, 0.15),
    0 0 30px rgba(0, 200, 255, 0.4);
  transform: translateY(-5px);
}


.tool-card .promocao {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #aeefff;
  line-height: 1.4;
}


.marca {
  background: linear-gradient(90deg, #00eaff, #9b4dff);
  background-clip: text;
  
  -webkit-background-clip: text;
  
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.4);
}


.tool-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.04),
    0 8px 25px rgba(0, 0, 0, 0.45);
  transition: all 0.35s ease;
}


.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.04) 100%);
  opacity: 0.7;
  pointer-events: none;
}


.tool-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    inset 0 0 15px rgba(255, 255, 255, 0.06),
    0 10px 30px rgba(0, 0, 0, 0.5);
}


.tool-card h3,
.tool-card p {
  color: #eaf6ff;
  
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
}




.titulo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: -1.2rem;
  margin-bottom: 2.5rem;
}


.titulo {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1.5px;
  background: linear-gradient(90deg, #00eaff, #9b4dff, #00eaff);
  background-size: 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: neonFluxo 6s linear infinite, brilhoTitulo 6s ease-in-out infinite;
  text-shadow:
    0 0 15px rgba(0, 255, 255, 0.5),
    0 0 35px rgba(155, 77, 255, 0.35);
}


.emoji {
  font-size: 2.8rem;
  color: #00eaff;
  text-shadow:
    0 0 6px rgba(0, 255, 255, 0.9),
    0 0 14px rgba(0, 255, 255, 0.7),
    0 0 30px rgba(155, 77, 255, 0.6);
  filter: brightness(1.25) saturate(1.3);
  animation: respirarEmoji 3s ease-in-out infinite;
  position: relative;
  z-index: 20;

  
  top: -30px;                 
  transform: translateY(-3px); 
}


.emoji::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: skewX(-25deg);
  animation: reflexoDiamante 5s ease-in-out infinite;
  opacity: 0.6;
  filter: blur(2px);
  mix-blend-mode: screen;
}


@keyframes respirarEmoji {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1.1);
  }
  50% {
    transform: scale(1.2);
    filter: brightness(1.5);
  }
}


@keyframes reflexoDiamante {
  0%   { transform: translateX(-120%) skewX(-25deg); }
  50%  { transform: translateX(0%) skewX(-25deg); }
  100% { transform: translateX(120%) skewX(-25deg); }
}


@keyframes brilhoTitulo {
  0%, 100% {
    text-shadow:
      0 0 12px rgba(0, 255, 255, 0.6),
      0 0 32px rgba(155, 77, 255, 0.3);
  }
  50% {
    text-shadow:
      0 0 20px rgba(0, 255, 255, 0.9),
      0 0 50px rgba(155, 77, 255, 0.6);
  }
}


@keyframes neonFluxo {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


@media (max-width: 768px) {
  .titulo-wrapper {
    flex-direction: column;
    gap: 8px;
  }
  .titulo { font-size: 2.1rem; }
  .emoji { font-size: 2.2rem; }
}
