/* Objetivo */
.objetivo-text {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

/* Habilidades */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  margin-top: 0.2rem;
}

.skill-item {
  font-size: 13px;
  color: var(--muted);
}

.skill-item strong {
  color: var(--text);
  font-weight: 500;
}

/* Projeto */
.project-card {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 0.85rem 1rem;
  border-radius: 0 6px 6px 0;
}

.project-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}

.project-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0.9rem;
  border: 1.5px solid var(--accent);
  border-radius: 20px;
  background: var(--accent);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.project-icon-link:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 22px rgba(37,99,235,0.45);
}

.project-icon-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.project-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* Experiência */
.exp-item {
  margin-bottom: 1.2rem;
}

.exp-item:last-child { margin-bottom: 0; }

.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.1rem;
}

.exp-company {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.exp-period {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  white-space: nowrap;
}

.exp-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.exp-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.exp-bullets li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}

.exp-bullets li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
}

/* Formação */
.edu-item {
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.edu-degree {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.edu-status {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* Cursos */
.courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 2rem;
}

.course-item {
  font-size: 13px;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.course-item::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
}

.course-name { flex: 1; }

.course-year {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.8;
}