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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  padding: 0 2rem;
}

/* Header e Navegação */
header {
  background: #333;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo a {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
}

header ul {
  list-style: none;
  display: flex;
}

header ul li {
  margin-left: 20px;
}

header a {
  color: #fff;
  text-decoration: none;
}

/* Seções */
section {
  padding: 4rem 2rem;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Hero Section */
#hero {
  background: #556270;
  color: #fff;
  padding: 6rem 2rem;
}

#hero h1 {
  font-size: 3rem;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: #4ECDC4;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Sobre */
#about {
  background: #fff;
}

#about p {
  max-width: 800px;
  margin: auto;
}

/* Experiência */
.experience-content {
  display: flex;
  gap: 2rem;
  text-align: left;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.job-description, .skills {
  flex: 1;
}

.skills ul {
  list-style: none;
}

.skills li {
  background: #e2e2e2;
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
}

/* Contato */
#contact {
  background: #fff;
}

.contact-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #556270;
  font-weight: bold;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}