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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #1a1a1a;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Header */
header {
  background: #2c2c2c;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header .logo h1 {
  font-size: 1.8rem;
  color: #00d4ff;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  display: flex;
  list-style: none;
}

.menu li a {
  color: #e0e0e0;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #00d4ff;
}

.burger {
  display: none;
  cursor: pointer;
  color: #e0e0e0;
  font-size: 1.5rem;
}

/* Main */
main {
  margin-top: 80px;
}

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

/* Sobre Mim */
.about-me {
  background: #252525;
}

.about-me .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #00d4ff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.about-content h2 {
  color: #00d4ff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-content p {
  font-weight: 300;
}

/* Projeto de Destaque */
.featured-project {
  background: #1f1f1f;
}

.featured-project h2 {
  color: #00d4ff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.project-card {
  background: #2c2c2c;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.project-card h3 {
  color: #e0e0e0;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.project-card p {
  font-weight: 300;
  margin-bottom: 1rem;
}

.project-link {
  display: inline-block;
  background: #00d4ff;
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 400;
  transition: background 0.3s ease;
}

.project-link:hover {
  background: #00aaff;
}

.project-link img {
  max-width: 100%;
  border-radius: 5px;
  margin-top: 0.5rem;
}

#verMais {
  background: none;
  border: 2px solid #00d4ff;
  color: #00d4ff;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

#verMais:hover {
  background: #00d4ff;
  color: #1a1a1a;
}

.full-project {
  display: none;
  margin-top: 1rem;
  font-weight: 300;
}

.full-project h4 {
  color: #00d4ff;
  margin-top: 1rem;
}

/* Projetos */
.projects {
  background: #252525;
}

.projects h2 {
  color: #00d4ff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.filter-buttons {
  margin-bottom: 1.5rem;
}

.filter-buttons button {
  background: #2c2c2c;
  border: 1px solid #00d4ff;
  color: #e0e0e0;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.filter-buttons button:hover,
.filter-buttons button.active {
  background: #00d4ff;
  color: #1a1a1a;
}

#projetos-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  list-style: none;
}

#projetos-list li {
  background: #2c2c2c;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

#projetos-list li:hover {
  transform: translateY(-5px);
}

#projetos-list h3 {
  color: #e0e0e0;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

#projetos-list p {
  font-weight: 300;
}

#projetos-list img {
  max-width: 100%;
  border-radius: 5px;
  margin-top: 0.5rem;
}

/* Footer */
footer {
  background: #1f1f1f;
  padding: 2rem;
  text-align: center;
}

.social a {
  color: #00d4ff;
  font-size: 1.5rem;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.social a:hover {
  color: #00aaff;
}

footer p {
  margin-top: 1rem;
  font-weight: 300;
}

/* Responsividade */
@media (max-width: 768px) {
  .nav-menu {
    position: relative;
  }

  .menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background: #2c2c2c;
    flex-direction: column;
    padding-top: 80px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
  }

  .menu.active {
    display: flex;
  }

  .menu li a {
    padding: 1rem;
    display: block;
  }

  .burger {
    display: block;
  }

  .about-me .container {
    flex-direction: column;
    text-align: center;
  }
}