.sm-hero-photo {
  width: 220px;
  height: 220px;
  border-radius: 100%;
  background: var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  text-align: center;
  flex-shrink: 0;
  object-fit: cover;
}

.sm-hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 72px 40px 56px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 760px) {
  .sm-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 24px;
  }

  .sm-hero-photo {
    margin: 0 auto;
  }
}

.sm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--secondary-container);
  color: var(--secondary);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sm-hero-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1.15;
}

.sm-hero-lead {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 26px;
  max-width: 600px;
}

.sm-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .sm-hero-actions {
    justify-content: center;
  }
}

/* Numbered sections */

.sm-section {
  padding: 72px 100px;
}

.sm-section--surface {
  background: var(--surface);
}

@media (max-width: 760px) {
  .sm-section {
    padding: 48px 24px;
  }
}

.sm-section-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
}

@media (max-width: 760px) {
  .sm-section-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.sm-section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sm-section-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--primary);
}

.sm-section-title--spaced {
  margin-bottom: 32px;
}

.sm-section-title--flush {
  margin: 0;
}

.sm-quote {
  border-left: 3px solid var(--primary);
  padding: 2px 0 2px 24px;
  margin: 0 0 24px;
}

.sm-quote p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}

.sm-body-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  max-width: 700px;
  margin: 0;
}

/* Timeline */

.sm-timeline {
  position: relative;
  padding-left: 28px;
}

.sm-timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--border);
}

.sm-timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.sm-timeline-item:last-child {
  padding-bottom: 0;
}

.sm-timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background: var(--primary);
  border: 3px solid var(--bg);
}

.sm-section--surface .sm-timeline-dot {
  border-color: var(--surface);
}

.sm-timeline-header {
  margin-bottom: 4px;
}

.sm-timeline-empresa {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
}

.sm-timeline-role {
  font-size: 17px;
  font-weight: 700;
}

.sm-timeline-period {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: 10px;
}

.sm-timeline-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  max-width: 720px;
}

.sm-timeline-text + .sm-timeline-text {
  margin-top: 10px;
}

/* Certifications */

.sm-certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 760px) {
  .sm-certs-grid {
    grid-template-columns: 1fr;
  }
}

.sm-cert-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}

.sm-cert-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sm-cert-icon--primary {
  background: var(--primary-container);
  color: var(--primary);
}

.sm-cert-icon--secondary {
  background: var(--secondary-container);
  color: var(--secondary);
}

.sm-cert-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.35;
}

.sm-cert-meta {
  font-size: 12.5px;
  color: var(--text-secondary);
}

/* Skills */

.sm-skills {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sm-skill-category {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.sm-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sm-skill-tag {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
}

/* CTA */

.sm-cta-wrap {
  padding: 16px 100px 96px;
}

@media (max-width: 760px) {
  .sm-cta-wrap {
    padding: 16px 24px 64px;
  }
}

.sm-cta {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px;
  text-align: center;
}

.sm-cta h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--primary);
}

.sm-cta p {
  font-size: 15.5px;
  color: var(--text-secondary);
  margin: 0 0 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
