/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; width: 100%;}

/* ---------- Base ---------- */
body {
  font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #0f172a; /* fundo escuro */
  color: #e2e8f0;      /* texto claro */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 40px 20px;
}

section {
  max-width: 1080px;
  margin: 0 auto 40px auto;
  background: #1e293b;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

/*  -------------- body  --------------  */
/* ---------- Cabeçalho ---------- */
header {
  text-align: center;
  margin-bottom: 32px;
}
header h1 {
  font-size: 2.3rem;
  color: #60a5fa; /* azul claro */
  margin-bottom: 12px;
}
header p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Títulos das Seções ---------- */
section h2 {
  font-size: 1.4rem;
  color: #38bdf8; /* ciano */
  margin-bottom: 12px;
  border-bottom: 1px solid #334155;
  padding-bottom: 6px;
}

/* ---------- Estatísticas ---------- */
.stats-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.stats-container img {
  height: 200px;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.6);
  object-fit: contain;
  transition: transform .2s ease;
}
.stats-container img:hover {
  transform: translateY(-6px);
}

/* ---------- Contato ---------- */
#contato ul {
  list-style: none;
  padding: 0;
}
#contato li {
  margin-bottom: 10px;
  font-size: 1rem;
}
#contato a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}
#contato a:hover {
  text-decoration: underline;
}

/* ---------- Resumo ---------- */
#resumo p {
  margin-bottom: 14px;
  text-align: justify;
  color: #cbd5e1;
}

/* ---------- Competências ---------- */
#competencias ul {
  list-style: disc;
  padding-left: 20px;
}
#competencias li {
  margin-bottom: 10px;
  color: #cbd5e1;
}

/* ---------- Experiência ---------- */
#experiencia article {
  margin-bottom: 28px;
}
#experiencia h3 {
  font-size: 1.1rem;
  color: #facc15; /* amarelo destaque */
  margin-bottom: 8px;
}
#experiencia span {
  font-size: 0.9rem;
  color: #94a3b8;
}
#experiencia ul {
  list-style: disc;
  padding-left: 20px;
}
#experiencia li {
  margin-bottom: 8px;
  color: #cbd5e1;
}

/* ---------- Certificações ---------- */
#certificacoes ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#certificacoes li {
  background: #334155;
  border-left: 4px solid #38bdf8; /* ciano para destaque */
  padding: 8px 12px;
  border-radius: 6px;
  color: #cbd5e1;
  transition: transform .2s ease, background .2s ease;
}

#certificacoes li:hover {
  transform: translateY(-3px);
  background: #475569;
}

.cert-title {
  font-weight: 600;
  color: #60a5fa;
}

.cert-platform {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-left: 6px;
}

.cert-validity {
  font-size: 0.85rem;
  color: #facc15; /* amarelo */
  margin-left: 6px;
}
#certificacoes ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#certificacoes li {
  background: #334155;
  border-left: 4px solid #38bdf8; /* ciano para destaque */
  padding: 8px 12px;
  border-radius: 6px;
  color: #cbd5e1;
  transition: transform .2s ease, background .2s ease;
}

#certificacoes li:hover {
  transform: translateY(-3px);
  background: #475569;
}

.cert-title {
  font-weight: 600;
  color: #60a5fa;
}

.cert-platform {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-left: 6px;
}

.cert-validity {
  font-size: 0.85rem;
  color: #facc15; /* amarelo */
  margin-left: 6px;
}


/* ---------- Responsivo ---------- */
@media (max-width: 640px) {
  body { padding: 18px 12px; }
  section { padding: 20px; border-radius: 8px; }
  header h1 { font-size: 1.8rem; }
  header p { font-size: 1rem; }
  .stats-container img { height: 150px; }
}

