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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9fafb;
  color: #1e293b;
  line-height: 1.6;
}

/* Container Central */
.container {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

/* Card Principal */
.card {
  max-width: 680px;
  width: 100%;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

/* Foto */
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px;
  border: 3px solid #0ea5e9;
}

/* Cabeçalhos */
h1 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 5px;
  color: #0f172a;
}

.subtitle {
  text-align: center;
  color: #64748b;
  font-size: 16px;
  margin-bottom: 10px;
}

.location {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Links */
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.links a {
  background-color: #0ea5e9;
  color: white;
  padding: 10px 18px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.links a:hover {
  background-color: #0284c7;
}

/* Seções */
section {
  margin-bottom: 30px;
}

section h2 {
  color: #0ea5e9;
  font-size: 20px;
  margin-bottom: 10px;
  border-left: 4px solid #0ea5e9;
  padding-left: 10px;
}

section p, section ul {
  color: #334155;
  font-size: 15px;
}

/* Listas */
.skills ul,
.projects ul {
  list-style: none;
  padding-left: 0;
}

.skills li,
.projects li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.skills li::before,
.projects li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
}

/* Responsivo */
@media (max-width: 600px) {
  .card {
    padding: 20px;
  }

  .links {
    flex-direction: column;
    align-items: center;
  }

  .links a {
    width: 100%;
    text-align: center;
  }
}

