@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

body {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

.bg-gradient-tech {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px border rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: #818cf8;
}

.neon-text {
  text-shadow: 0 0 10px rgba(129, 140, 248, 0.6);
}

.group:hover img {
    transform: scale(1.05);
}

[data-aos="fade-left"] .absolute {
    transition: all 0.5s ease-out;
}


.btn-whatsapp {
  background: #25d366;
  transition: transform 0.2s;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  background: #20ba5a;
}


.input-custom {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid transparent;
  color: #0f172a;
  transition: all 0.3s ease;
}

.input-custom::placeholder {
  color: #94a3b8;
}

.input-custom:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.3);
  background-color: #ffffff;
}

#contato {
  background-color: #020617; /* Slate 950 - um preto levemente azulado */
}

#contato button[type="submit"] {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

#contato button[type="submit"]:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}



.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

/* Hover */
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20ba5a;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #111;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  opacity: 0;
  white-space: nowrap;
  transition: 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}


@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}