:root {
  --background: #f8f9fa;
  --card-bg: #ffffff;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --accent-green: #12472d;
  --accent-green-light-bg: #d4e9dd;
  --border-color: #dee2e6;
}
body {
  background-color: #ffffff;
  color: var(--text-secondary);
  font-family: "Inter", sans-serif;
}
.text-primary {
  color: var(--text-primary);
}
.text-accent {
  color: var(--accent-green);
}
.tech-tag {
  background-color: var(--accent-green-light-bg);
  color: var(--accent-green);
  transition: all 0.2s ease-in-out;
}
.tech-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.nav-indicator.active {
  width: 4rem;
  background-color: var(--accent-green);
}
.nav-text.active {
  color: var(--text-primary);
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f1f5f9;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.5s ease-out, visibility 1.5s ease-out;
}
#loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}
.spinner {
  border: 8px solid #e5e7eb;
  border-top: 8px solid var(--accent-green);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 3s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.tech-icon {
  color: var(--text-secondary);
  transition: color 0.3s ease, transform 0.3s ease;
}

.tech-icon:hover {
  transform: scale(1.15);
}

.tech-icon:hover .devicon-java-plain {
  color: #f89820;
}

.tech-icon:hover .devicon-spring-plain {
  color: #6db33f;
}

.tech-icon:hover .devicon-hibernate-plain {
  color: #59666c; /* cor oficial do Hibernate */
}


.tech-icon:hover .devicon-hibernate-plain {
  color: #59666c;
}

.tech-icon:hover .devicon-postgresql-plain {
  color: #4169e1;
}

.tech-icon:hover .devicon-mysql-plain {
  color: #4479a1;
}

.tech-icon:hover .devicon-git-plain {
  color: #f05033;
}

.tech-icon:hover .devicon-docker-plain {
  color: #2496ed;
}

.tech-icon:hover .devicon-git-plain {
  color: #f05033;
}

.tech-icon:hover .devicon-apachekafka-original {
  color: #231f20;
}

.tech-icon:hover .devicon-html5-plain {
  color: #e34f26;
}

.tech-icon:hover .devicon-css3-plain {
  color: #1572b6;
}

.tech-icon:hover .devicon-javascript-plain {
  color: #f7df1e;
}

.tech-icon:hover .devicon-react-original {
  color: #61dafb;
}

.tech-icon:hover svg {
  stroke: var(--accent-green);
}
