.geist {
   font-family: 'Geist Mono', monospace;
 }

.instrument {
  font-family: 'Instrument Sans', sans-serif;
 }

.jakarta {
   font-family: 'Plus Jakarta Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.tech-section {
  width: 100%;
  border-right: 1px solid #333347;
  border-bottom: 1px solid #333347;
  border-left: 1px solid #333347;
  background: #1A1A24;;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.tech-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  gap: 32px;
}

.tech-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  gap: 40px;

  flex: 1 0 0;

  padding: 40px;

  border-radius: 24px;
  border: 1px solid #333347;

  background: rgba(51, 51, 71, 0.2);

  transition: 0.3s ease;
}

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

  border-color: rgba(87, 187, 255, 0.25);

  box-shadow: 0 0 24px rgba(87, 187, 255, 0.08);
}

  border: 1px solid rgba(120, 119, 198, 0.18);

  border-radius: 28px;

  padding: 36px;

  min-height: 260px;

  position: relative;

  transition: all 0.3s ease;

  overflow: hidden;
}

.tech-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top left,
    rgba(87, 187, 255, 0.12),
    transparent 45%
  );

  pointer-events: none;
}

.tech-card:hover {
  transform: translateY(-6px);

  border-color: rgba(87, 187, 255, 0.35);

  box-shadow: 0 0 30px rgba(87, 187, 255, 0.12);
}

.tech-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;
}

.tech-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tech-card h3 {
  color: #ffffff;

  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;

  margin-bottom: 18px;

  max-width: 420px;
}

.tech-card p {
  color: rgba(255, 255, 255, 0.78);

  font-size: 1.05rem;
  line-height: 1.7;

  max-width: 470px;
}

/* RESPONSIVO */

@media (max-width: 991px) {
  .tech-container {
    flex-direction: column;
  }

  .tech-card {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .tech-section {
    padding: 60px 16px;
  }

  .tech-card {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .tech-card h3 {
    font-size: 1.6rem;
  }

  .tech-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .tech-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
  }
}