/* ── RESET & VARIABLES ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #F5F3EE;
  --ink: #111010;
  --muted: #7A776F;
  --accent: #D4601A;
  --accent-light: #F2E8DF;
  --accent-hover: #b84e12;
  --card: #ECEAE4;
  --border: #D8D5CE;
  --white: #FDFCFA;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(245, 243, 238, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}

nav.scrolled {
  padding: 14px 60px;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── SECTION BASE ── */
section {
  padding: 100px 60px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.section-intro {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin-top: 12px;
  line-height: 1.7;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid #E8C9B0;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}

.hero-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
  animation: fadeUp 0.7s 0.1s ease both;
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  margin-top: 22px;
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 440px;
  line-height: 1.75;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  animation: fadeUp 0.7s 0.3s ease both;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.25s ease both;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-card:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero-card-text strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.hero-card-text span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── SOBRE ── */
#sobre {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 52px;
}

.sobre-text p {
  font-size: 1.03rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

.sobre-text p + p {
  margin-top: 16px;
}

.sobre-text strong {
  color: var(--ink);
  font-weight: 500;
}

.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.stat-number span {
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* ── CASES ── */
#cases {
  background: var(--bg);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.09);
}

.case-card:hover::before {
  transform: scaleX(1);
}

.case-card.featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 44px;
}

.case-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.award-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--accent-light);
  color: var(--accent);
}

.tag.neutral {
  background: var(--card);
  color: var(--muted);
}

.case-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
}

.case-card.featured .case-title {
  font-size: 1.55rem;
}

.case-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.68;
}

.case-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.case-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.case-metric strong {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.case-metric span {
  font-size: 0.73rem;
  color: var(--muted);
}

.case-arrow {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.case-card:hover .case-arrow {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.case-thumb {
  width: 200px;
  height: 160px;
  border-radius: 14px;
  background: var(--accent-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

/* ── EXPERIÊNCIA ── */
#experiencia {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.timeline {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 32px 1fr;
  gap: 0 24px;
  padding-bottom: 52px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-date {
  text-align: right;
  padding-top: 4px;
}

.timeline-date .period {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.timeline-date .company {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent);
  margin-top: 5px;
}

.timeline-line {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  border: 2.5px solid var(--bg);
  outline: 2px solid var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}

.timeline-connector {
  flex: 1;
  width: 1.5px;
  background: var(--border);
  margin-top: 10px;
}

.timeline-item:last-child .timeline-connector {
  display: none;
}

.timeline-content {
  padding-top: 2px;
}

.timeline-role {
  font-family: 'Syne', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.timeline-type {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--accent-light);
  color: var(--accent);
  margin-left: 10px;
  vertical-align: middle;
}

.timeline-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 10px;
}

.timeline-highlights {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.highlight-item::before {
  content: '→';
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── HABILIDADES ── */
#habilidades {
  background: var(--ink);
  color: var(--white);
}

#habilidades .section-label {
  color: var(--accent);
}

#habilidades h2 {
  color: var(--white);
}

#habilidades .section-intro {
  color: rgba(255, 255, 255, 0.45);
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}

.skills-group {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
}

.skills-group.full-width {
  grid-column: span 2;
}

.skills-group-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.skills-group-title .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.skill-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.skill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skill-name {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.skill-level {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.32);
}

.skill-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-tag {
  font-size: 0.8rem;
  padding: 7px 14px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s, color 0.2s;
}

.tool-tag:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

/* ── CERTIFICADOS ── */
#certificados {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.cert-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.cert-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.cert-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.cert-issuer {
  font-size: 0.84rem;
  color: var(--muted);
}

.cert-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.cert-year {
  font-size: 0.78rem;
  color: var(--muted);
}

.cert-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── CONTATO ── */
#contato {
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}

#contato h2 {
  max-width: 500px;
  margin: 0 auto;
}

#contato .section-intro {
  margin: 12px auto 0;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 34px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.contact-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  text-decoration: none;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, transform 0.15s, background 0.2s;
}

.social-link:hover {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  padding: 28px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
}

footer span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger reveals inside grids */
.cases-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.cases-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.sobre-stats .stat-box:nth-child(2) { transition-delay: 0.08s; }
.sobre-stats .stat-box:nth-child(3) { transition-delay: 0.16s; }
.sobre-stats .stat-box:nth-child(4) { transition-delay: 0.24s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 18px 32px; }
  nav.scrolled { padding: 12px 32px; }
  section { padding: 80px 32px; }
  #hero { padding: 110px 32px 70px; }
  footer { padding: 24px 32px; }
}

@media (max-width: 820px) {
  /* Nav mobile */
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(245, 243, 238, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
  }

  .nav-links.open { display: flex; }

  .nav-links li a {
    display: block;
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .nav-links a::after { display: none; }

  /* Hero */
  #hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-right { display: none; }
  .hero-bg-shape { display: none; }

  /* Sections */
  section { padding: 72px 24px; }

  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-stats { grid-template-columns: 1fr 1fr; }

  .cases-grid { grid-template-columns: 1fr; }
  .case-card.featured { flex-direction: column; grid-column: span 1; }
  .case-thumb { width: 100%; height: 120px; }

  .timeline-item { grid-template-columns: 1fr; gap: 10px; }
  .timeline-date { text-align: left; }
  .timeline-line { display: none; }

  .skills-grid { grid-template-columns: 1fr; }
  .skills-group.full-width { grid-column: span 1; }

  .certs-grid { grid-template-columns: 1fr; }

  footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .sobre-stats { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}

.case-repo-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border: 1.5px solid var(--border);
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.case-repo-link:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ── HERO PHOTO / CARDS TRANSITION ── */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.hero-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
  margin-top: 80px;
}

.hero-photo-wrap.hide {
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  position: absolute;
  top: 0; left: 0; right: 0;
}

.hero-photo {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  border: 3px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.hero-photo-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

.hero-cards.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Indicador de progresso */
.hero-progress {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}

.hero-progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s, transform 0.3s;
}

.hero-progress-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}
/* ── LUCIDE ICONS ── */
.case-thumb i,
.cert-icon i {
  width: 36px;
  height: 36px;
  stroke: var(--accent);
  stroke-width: 1.5;
}

.award-badge i {
  width: 13px;
  height: 13px;
  stroke: #ffffff;
  stroke-width: 2;
  vertical-align: middle;
  margin-right: 3px;
}
.stat-number i {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  stroke-width: 1.8;
  vertical-align: middle;
  margin-left: 2px;
}

.case-metric strong i {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
  stroke-width: 1.8;
  vertical-align: middle;
}
.cert-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.2s, opacity 0.2s;
}

.cert-link:hover {
  gap: 9px;
  opacity: 0.8;
}

.cert-link i {
  width: 13px;
  height: 13px;
  stroke: var(--accent);
  stroke-width: 2;
}