/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.8rem;
  color: #1f2937;
  font-weight: 700;
}

header p {
  font-size: 1.2rem;
  color: #4b5563;
  margin-top: 5px;
}

section {
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

h2 {
  font-size: 1.8rem;
  color: #111827;
  margin-bottom: 15px;
  border-left: 5px solid #3b82f6;
  padding-left: 10px;
}

h3 {
  font-size: 1.2rem;
  color: #2563eb;
  margin-bottom: 5px;
}

p {
  margin-bottom: 10px;
}

ul {
  list-style: none;
  margin-left: 15px;
  margin-bottom: 15px;
}

ul li {
  margin-bottom: 5px;
  padding-left: 12px;
  position: relative;
}

ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.job-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e40af;
}

.job-tech {
  font-style: italic;
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 12px;
}

.education-item {
  margin-bottom: 15px;
}

/* Redes Sociais - design moderno com ícones Unicode */
.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgb(0 0 0 / 0.05);
}

.social-links a:hover {
  border-color: #3b82f6;
  background-color: #eff6ff;
  color: #1e40af;
  box-shadow: 0 4px 12px rgb(59 130 246 / 0.25);
}

.social-links a .icon {
  font-size: 1.6rem;
  line-height: 1;
}

/* Ícones Unicode e cores específicas */
.linkedin .icon { color: #0a66c2; }
.github .icon { color: #171515; }
.email .icon { color: #d14836; }
.twitter .icon { color: #1da1f2; }

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  header h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .job-header {
    flex-direction: column;
    gap: 4px;
  }

  .social-links {
    justify-content: center;
    gap: 15px;
  }
}
