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

/* Aplica Space Grotesk globalmente */
*, *::before, *::after {
  font-family: 'Space Grotesk', sans-serif;
}

html, body {
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(to bottom, #0b0b14 0%, #070513 60%, #070513 100%);
  color: #e2e8f0;
}
.glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.purple-button {
  background-color: #7a2ff3;
  transition: all 0.25s ease-in-out;
}
.purple-button:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.green-label {
  color: #54EB7D;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-link {
  color: #ffffff;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}
.nav-link:visited {
  color: #ffffff;
}
.nav-link:hover {
  color: #84848ecd;
}
.nav-button {
  transition: all 0.25s ease-in-out;
}
.nav-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
h1, h2, h3, h4, h5, h6 {
  color: #d6d6d6;
  font-weight: 700;
  letter-spacing: -0.5px;
}
/* === Tema escuro refinado Inorush === */

input,
textarea,
select {
  background-color: #1a1a23 !important; /* fundo quase preto */
  color: #e5e7eb !important; /* texto claro */
  border: 1px solid #2a2a36 !important;
  border-radius: 8px;
  transition: all 0.25s ease-in-out;
  font-weight: 500;
  font-size: 0.95rem;
}

input::placeholder,
textarea::placeholder {
  color: #777a85 !important; /* placeholder suave */
  opacity: 1;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background-color: #20202a !important;
  border-color: #4710a0!important; /* ainda mantém o roxo leve no foco */
  box-shadow: 0 0 0 1px rgba(122, 47, 243, 0.3);
  color: #f5f5f5 !important;
}

/* Autofill (evita branco no Safari/Chrome) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #1a1a23 inset !important;
  -webkit-text-fill-color: #e5e7eb !important;
  caret-color: #54EB7D !important;
  transition: background-color 9999s ease-in-out 0s;
}

/* Labels e textos */
label {
  color: #9ca3af !important;
  font-weight: 500;
}

/* Dropdowns */
select {
  appearance: none;
  background-color: #15151f !important;
  color: #e5e7eb !important;
  padding-right: 1.5rem;
}

/* Borda mais sutil no hover */
input:hover,
textarea:hover,
select:hover {
  border-color: #3a3a46 !important;
}

/* Remove o fundo branco de inputs desabilitados */
input:disabled,
textarea:disabled,
select:disabled {
  background-color: #16161d !important;
  color: #777a85 !important;
  border-color: #2a2a36 !important;
}

/* Botão mantém o roxo principal */
button.purple-button {
  background-color: #7a2ff3;
  color: #fff !important;
  font-weight: 600;
  transition: all 0.25s ease-in-out;
}
button.purple-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.dashed-card {
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  background-color: transparent;
  transition: all 0.25s ease;
}
.dashed-card:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background-color: rgba(255, 255, 255, 0.015);
  transform: translateY(-2px);
}

.purple-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.purple-underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height:5px;
  background-color: #7a2ff3;
  border-radius: 1px;
  z-index: 1;
}

/* Mobile Menu */
.menu-item {
  color: #d6d6d6;
}
.menu-item:hover {
  background-color: #1c1c28;
  color: rgb(145, 109, 222);
}
.menu-item:hover svg {
  stroke: #d6d6d6;
}

.menu-item svg {
  transition: stroke 0.2s ease;
}

  .service-card {
    position: relative;
    overflow: hidden;
    background: #06061380;
    border: 1px solid #1c1c25;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  }

.services-contact-card {
  position: relative;
  overflow: hidden;
  background: #06061380;
  border: 1px solid #1c1c25;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.services-contact-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #2e2e2e;
  border-radius: 0 0 20px 20px;
  pointer-events: none;
}
/* brilho sutil na borda inferior arredondada */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #2e2e2e; /* cinza uniforme e suave */
  border-radius: 0 0 20px 20px;
  pointer-events: none;
}

.ino-mascot-card {
  position: absolute;
  top: -50px;     
  right: -8px;   /* afasta um pouco da borda */
  width: 90px;
  height: auto;
  image-rendering: pixelated;
  pointer-events: none;
}

.service-card {
  overflow: visible !important;
}
