/* style.css - Estilos do Portfólio Futurista */

/* Estilos Globais */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #1e1e1d, #e3dd2f);
  color: #00ffcc;
  overflow-x: hidden;
  position: relative;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

header {
  background: rgba(0, 255, 204, 0.05);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #00ffcc33;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo h2 {
  margin: 0;
  color: #00ffcc;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: #00ffcc;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

nav a {
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #00ffee;
  text-shadow: 0 0 5px #00ffee;
}

section {
  padding: 80px 20px;
  position: relative;
  z-index: 5;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1, h2, h3 {
  text-shadow: 0 0 10px #00ffccaa;
}



.visit-button {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background-color: #00f2ff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.visit-button:hover {
  background-color: #00bcd4;
}








.social-buttons {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-button img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 0 10px #00ffcc;
  background: #0a0a0a;
  transition: transform 0.3s;
}

.social-button img:hover {
  transform: scale(1.1);
}

.project, .skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.project-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project img {
  width: 250px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #00ffcc55;
  box-shadow: 0 0 20px #00ffcc33;
  transition: 0.3s;
  cursor: pointer;
}

.project img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #00ffee99;
}


#contato {
  position: relative;
  background: linear-gradient(135deg, #1e1e1d, #e3dd2f);
  padding: 60px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

#particles-contato {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contato-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ebe9e1;
  position: relative;
  z-index: 1;
}

.contato-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-in-out;
}

.contato-item {
  background: rgba(28, 28, 28, 0.9);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s;
}

.contato-item i {
  color: #f5f4f1;
  font-size: 1.4rem;
}

.contato-item a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}

.contato-item:hover {
  transform: scale(1.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#skills {
  text-align: center;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.15);
  border-top: 1px solid #00ffcc33;
  border-bottom: 1px solid #00ffcc33;
}

#skills h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00ffcc;
  text-shadow: 0 0 10px #00ffcc99;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.skill-card {
  width: 150px;
  height: 170px;
  background: linear-gradient(135deg, #1e1e1d, #e3dd2f);
  border: 1px solid #00ffcc33;
  border-radius: 20px;
  padding: 20px 10px;
  box-shadow: 0 0 15px #00ffcc22;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.skill-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}

.skill-card span {
  font-size: 1.1rem;
  font-weight: bold;
  color: #00ffcc;
  text-shadow: 0 0 5px #00ffcc99;
}

.skill-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #00ffee88;
}

footer {
  padding: 20px;
  text-align: center;
  background: linear-gradient(135deg, #1e1e1d, #e3dd2f);
  border-top: 1px solid #11121233;
  font-size: 14px;
  margin-top: 40px;
  z-index: 5;
  position: relative;
}

.folha-caderno {
  background: #fff;
  color: #333;
  margin: 20px auto 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 60px;
  width: 500px;
  max-width: 80%;
  text-align: center;
  box-shadow: 0 0 10px #00ffcc55;
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    display: none;
    width: 100%;
    background: linear-gradient(135deg, #1e1e1d, #e3dd2f);
    padding: 20px;
    border-radius: 10px;
  }
  .menu-toggle {
    display: block;
  }
  nav.active ul {
    display: block;
  }
}

#formacao {
  position: relative;
  background-color: #111;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

#particles-formacao {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.formacao-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
 color: #FFD700;
  z-index: 1;
  position: relative;
}

.formation-entry {
  background-color: rgba(28, 28, 28, 0.95);
  border-left: 4px solid #FFD700;
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
  border-radius: 10px;
  text-align: left;
  z-index: 1;
  position: relative;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
  animation: fadeInUp 1s ease forwards;
}

.formation-entry h3 {
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 5px;
}

.formation-entry h3 i {
  margin-right: 8px;
}

.formation-entry h4 {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 5px;
}

.formation-entry p {
  font-size: 0.95rem;
  color: #aaa;
}

.pdf-link {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 25px;
  color: #111;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
  z-index: 1;
  position: relative;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
