/* ─── TOKENS ─────────────────────────────────── */
:root {
  --linen:   #F7E9DE;
  --poppy:   #F1AEAD;
  --snap:    #D88393;
  --lilac:   #D4ACE0;
  --cosmos:  #D089AE;
  --sand:    #CABDA5;
  --ink:     #2E1F2A;
  --ink-mid: #5A3F50;
  --ink-light:#8A6878;
  --white:   #FDFAF7;
  --radius:  1rem;

  /* Light mode */
  --bg:        #F0E6DA;
  --bg-card:   #FDFAF7;
  --bg-alt:    #EAD9CC;
  --text:      #2E1F2A;
  --text-mid:  #5A3F50;
  --text-light:#8A6878;
  --border:    rgba(202,189,165,.35);
  --nav-bg:    rgba(240,230,218,.92);
  --hero-grain:rgba(240,230,218,.6);
}

[data-theme="dark"] {
  --bg:        #1A1118;
  --bg-card:   #241A21;
  --bg-alt:    #1F1620;
  --text:      #F7E9DE;
  --text-mid:  #C9A8B8;
  --text-light:#8A6878;
  --border:    rgba(208,137,174,.15);
  --nav-bg:    rgba(26,17,24,.92);
  --hero-grain:rgba(26,17,24,.5);
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', sans-serif;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
}

/* ─── NAV ────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 2rem; height: 62px;
  transition: background .4s ease;
}
.nav-logo {
  display: flex; align-items: baseline; gap: .06em;
  text-decoration: none;
}
.nav-s {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 1.15rem; color: var(--cosmos);
}
.nav-ushi {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-style: italic; font-size: 1.15rem; color: var(--text);
}
.nav-stack {
  display: flex; flex-direction: column; margin-left: .4em;
  gap: .02em; justify-content: center;
}
.nav-stack span {
  font-family: 'Figtree', sans-serif; font-weight: 500;
  font-size: .5rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-light);
  line-height: 1.3;
}
.nav-right {
  display: flex; align-items: center; gap: .5rem;
}
.nav-links {
  display: flex; gap: .1rem;
  list-style: none;
}
.nav-links a {
  font-size: .75rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-light);
  text-decoration: none; padding: .4rem .7rem;
  border-radius: 2rem;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--cosmos); }

/* Theme toggle */
.theme-btn {
  width: 38px; height: 22px; border-radius: 11px;
  background: var(--ink); border: none; cursor: pointer;
  position: relative; flex-shrink: 0;
  transition: background .3s ease;
}
[data-theme="dark"] .theme-btn { background: var(--cosmos); }
.theme-btn::after {
  content: '';
  position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--linen);
  transition: transform .3s ease;
}
[data-theme="dark"] .theme-btn::after { transform: translateX(16px); }

.nav-cta {
  font-family: 'Figtree', sans-serif; font-size: .72rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  background: var(--cosmos); color: var(--white);
  border: none; border-radius: 2rem;
  padding: .5rem 1.1rem; cursor: pointer;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--snap); transform: translateY(-1px); }

/* ─── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 8rem 2rem 4rem;
  max-width: 1100px; margin: 0 auto;
  position: relative;
}

/* Decorative blob */
.hero::before {
  content: '';
  position: fixed; top: -20vh; right: -15vw;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,137,174,.18) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: fixed; bottom: 10vh; left: -10vw;
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,172,224,.12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(2%, 3%) scale(1.05); }
}

.hero-content {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  gap: 3rem; width: 100%;
}
.hero-left {
  flex: 1; min-width: 0; max-width: 580px;
}

.hero-eyebrow {
  font-size: .68rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cosmos);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .7rem;
  animation: fadeUp .6s ease both .1s;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 1.5px; background: var(--cosmos);
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700; line-height: 1.02;
  color: var(--text); margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both .2s;
}
.hero-title em {
  font-style: italic; font-weight: 300;
  color: var(--cosmos); display: block;
}

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--text-mid); line-height: 1.7;
  max-width: 520px; margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp .6s ease both .3s;
}

.hero-actions {
  display: flex; gap: .8rem; flex-wrap: wrap;
  animation: fadeUp .6s ease both .4s;
}
.btn-primary {
  background: var(--cosmos); color: var(--white);
  font-family: 'Figtree', sans-serif; font-size: .8rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .85rem 1.8rem; border-radius: 2rem;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .25s ease; display: inline-block;
}
.btn-primary:hover { background: var(--snap); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(208,137,174,.35); }
.btn-outline {
  background: transparent; color: var(--text);
  font-family: 'Figtree', sans-serif; font-size: .8rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .85rem 1.8rem; border-radius: 2rem;
  border: 1.5px solid var(--border); cursor: pointer;
  text-decoration: none; transition: all .25s ease; display: inline-block;
}
.btn-outline:hover { border-color: var(--cosmos); color: var(--cosmos); }

/* Stats row */
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 4rem; flex-wrap: wrap;
  animation: fadeUp .6s ease both .5s;
}
.stat-item {}
.stat-num {
  font-family: 'Fraunces', serif; font-size: 2.2rem;
  font-weight: 700; color: var(--cosmos); line-height: 1;
}
.stat-label {
  font-size: .72rem; color: var(--text-light);
  font-weight: 400; margin-top: .2rem;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-light); animation: fadeUp .6s ease both .8s;
}
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, var(--cosmos), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ─── SECTIONS SHARED ────────────────────────── */
section {
  padding: 6rem 2rem;
}
.section-inner {
  max-width: 1100px; margin: 0 auto;
}
.section-eyebrow {
  font-size: .65rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cosmos);
  margin-bottom: .6rem;
  display: flex; align-items: center; gap: .6rem;
}
.section-eyebrow::before {
  content: ''; width: 20px; height: 1.5px; background: var(--cosmos);
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.1;
  color: var(--text); margin-bottom: .8rem;
}
.section-title em { font-style: italic; font-weight: 300; color: var(--cosmos); }
.section-desc {
  font-size: 1rem; color: var(--text-mid); line-height: 1.7;
  max-width: 500px; font-weight: 300;
}

/* ─── SERVICIOS ──────────────────────────────── */
#servicios { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem; margin-top: 3rem;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(46,31,42,.12);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity .25s ease;
}
.service-card:hover::before { opacity: 1; }
.sc-1::before { background: linear-gradient(to right, var(--cosmos), var(--snap)); }
.sc-2::before { background: linear-gradient(to right, var(--lilac), var(--cosmos)); }
.sc-3::before { background: linear-gradient(to right, var(--snap), var(--poppy)); }
.sc-4::before { background: linear-gradient(to right, var(--cosmos), var(--lilac)); }

.service-icon {
  width: 44px; height: 44px; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; font-size: 1.3rem;
}
.si-1 { background: rgba(208,137,174,.15); }
.si-2 { background: rgba(212,172,224,.15); }
.si-3 { background: rgba(216,131,147,.15); }
.si-4 { background: rgba(241,174,173,.15); }

.service-name {
  font-family: 'Fraunces', serif; font-size: 1.2rem;
  font-weight: 600; color: var(--text); margin-bottom: .5rem;
}
.service-desc {
  font-size: .85rem; color: var(--text-mid);
  line-height: 1.65; font-weight: 300; margin-bottom: 1.2rem;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: .35rem;
}
.tag {
  font-size: .62rem; font-weight: 500; letter-spacing: .06em;
  padding: .2rem .65rem; border-radius: 2rem;
  border: 1px solid var(--border); color: var(--text-light);
}

/* ─── PROYECTOS ──────────────────────────────── */
#proyectos { background: var(--bg); }
.projects-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 3rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.proj-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.proj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(46,31,42,.15);
}
.proj-card.wide { grid-column: span 7; }
.proj-card.narrow { grid-column: span 5; }
.proj-card.full { grid-column: span 12; }
.proj-card.half { grid-column: span 6; }

.proj-thumb {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.proj-thumb.wide-thumb { height: 240px; }
.proj-logo-placeholder {
  font-family: 'Fraunces', serif;
  font-size: 3rem; font-weight: 700;
  color: rgba(255,255,255,.25);
}
.proj-info { padding: 1.4rem; }
.proj-category {
  font-size: .6rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cosmos); margin-bottom: .4rem;
}
.proj-name {
  font-family: 'Fraunces', serif; font-size: 1.15rem;
  font-weight: 600; color: var(--text); margin-bottom: .4rem;
}
.proj-desc {
  font-size: .8rem; color: var(--text-mid);
  line-height: 1.6; font-weight: 300; margin-bottom: .9rem;
}
.proj-tech {
  display: flex; flex-wrap: wrap; gap: .3rem;
}
.proj-tag {
  font-size: .6rem; font-weight: 500;
  padding: .18rem .6rem; border-radius: 2rem;
  background: var(--bg-alt); color: var(--text-light);
}

/* Project thumb gradients */
.pt-1 { background: linear-gradient(135deg, #1A0A2E, #4A1A5E); }
.pt-2 { background: linear-gradient(135deg, #0D1B2A, #1B4F72); }
.pt-3 { background: linear-gradient(135deg, #1A2E1A, #2E5E2E); }
.pt-4 { background: linear-gradient(135deg, #2E1A0A, #5E3A1A); }
.pt-5 { background: linear-gradient(135deg, #2E1F2A, #D089AE); }

/* ─── SOBRE MÍ ───────────────────────────────── */
#sobre-mi { background: var(--bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  margin-top: 3rem;
}
.about-avatar-wrap {
  display: flex; justify-content: center;
}
.about-avatar {
  width: 260px; height: 260px; border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(46,31,42,.2);
}
.about-avatar svg { width: 200px; height: 200px; }
/* Rotating ring */
.about-ring {
  position: absolute; inset: -16px;
  border-radius: 50%;
  border: 1.5px dashed rgba(208,137,174,.4);
  animation: ringRotate 20s linear infinite;
}
@keyframes ringRotate { to { transform: rotate(360deg); } }
.ring-dot {
  position: absolute; top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cosmos);
}

.about-text {}
.about-name {
  font-family: 'Fraunces', serif; font-size: 2rem;
  font-weight: 600; color: var(--text); margin-bottom: .3rem;
}
.about-role {
  font-size: .75rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cosmos); margin-bottom: 1.2rem;
}
.about-bio {
  font-size: .95rem; color: var(--text-mid); line-height: 1.8;
  font-weight: 300; margin-bottom: 1.5rem;
}
.about-skills {
  display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem;
}
.skill-chip {
  font-size: .72rem; font-weight: 500;
  padding: .35rem .9rem; border-radius: 2rem;
  border: 1.5px solid var(--border); color: var(--text-mid);
  transition: all .2s ease;
}
.skill-chip:hover { border-color: var(--cosmos); color: var(--cosmos); }

/* ─── CONTACTO ───────────────────────────────── */
#contacto { background: var(--ink); overflow: hidden; position: relative; }
[data-theme="dark"] #contacto { background: #120B10; }
#contacto::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(208,137,174,.08) 0%, transparent 60%);
  pointer-events: none;
}
.contact-inner {
  max-width: 700px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.contact-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; line-height: 1.15;
  color: var(--linen); margin-bottom: .5rem;
}
.contact-title em { font-style: italic; color: var(--cosmos); }
.contact-sub {
  font-size: 1rem; color: var(--ink-light);
  line-height: 1.7; font-weight: 300;
  margin-bottom: 2.5rem; max-width: 420px; margin-left: auto; margin-right: auto;
}
.contact-email {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Fraunces', serif; font-size: 1.3rem;
  font-weight: 300; font-style: italic;
  color: var(--cosmos); text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color .2s ease;
}
.contact-email:hover { color: var(--poppy); }
.contact-actions {
  display: flex; justify-content: center; gap: .8rem; flex-wrap: wrap;
}
.btn-cosmos {
  background: var(--cosmos); color: var(--white);
  font-family: 'Figtree', sans-serif; font-size: .78rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .9rem 2rem; border-radius: 2rem; border: none;
  cursor: pointer; text-decoration: none; transition: all .25s ease;
  display: inline-block;
}
.btn-cosmos:hover { background: var(--snap); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--linen);
  font-family: 'Figtree', sans-serif; font-size: .78rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .9rem 2rem; border-radius: 2rem;
  border: 1.5px solid rgba(247,233,222,.2); cursor: pointer;
  text-decoration: none; transition: all .25s ease; display: inline-block;
}
.btn-ghost:hover { border-color: var(--cosmos); color: var(--cosmos); }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--ink); border-top: 1px solid rgba(208,137,174,.1);
  padding: 2rem;
}
[data-theme="dark"] footer { background: #120B10; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-size: .72rem; color: var(--ink-light);
}
.footer-links {
  display: flex; gap: 1rem;
}
.footer-links a {
  font-size: .7rem; color: var(--ink-light);
  text-decoration: none; transition: color .2s ease;
}
.footer-links a:hover { color: var(--cosmos); }

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .hero { padding: 7rem 1.2rem 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-avatar { width: 180px; height: 180px; }
  .proj-card.wide, .proj-card.narrow,
  .proj-card.half { grid-column: span 12; }
  section { padding: 4rem 1.2rem; }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; }
  .proj-card.wide, .proj-card.narrow,
  .proj-card.half, .proj-card.full { grid-column: span 1; }
}

/* ─── CARRUSEL ─── */
.carousel { position: relative; overflow: hidden; width: 100%; height: 100%; }
.cs-track { display: flex; height: 100%; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.cs-slide { flex-shrink: 0; width: 100%; height: 100%; background-size: cover; background-position: center top; }
.cs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(46,31,42,.6); color: #F7E9DE;
  border: none; border-radius: 50%; width: 34px; height: 34px;
  font-size: 1.4rem; line-height: 1; cursor: pointer; opacity: 0;
  transition: opacity .2s ease; z-index: 10;
  display: flex; align-items: center; justify-content: center; padding: 0;
}
.carousel:hover .cs-arrow { opacity: 1; }
.cs-prev { left: 8px; }
.cs-next { right: 8px; }
.cs-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 10; }
.cs-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(247,233,222,.45); border: none; cursor: pointer; padding: 0; transition: all .2s ease; }
.cs-dot.active { background: #D089AE; transform: scale(1.35); }
/* ─── HERO CARDS ─── */
.hero-cards {
  position: relative;
  width: 320px; height: 260px;
  flex-shrink: 0;
}
.hc {
  position: absolute;
  background: var(--bg-card);
  border-radius: 1rem;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(46,31,42,.1);
  display: flex; align-items: center; gap: .7rem;
  min-width: 150px;
  transition: transform .3s ease;
}
.hc:hover { transform: translateY(-4px) !important; }
.hc-icon {
  width: 36px; height: 36px; border-radius: .6rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.hc-name {
  font-size: .78rem; font-weight: 600;
  color: var(--text); line-height: 1.2;
}
.hc-desc {
  font-size: .68rem; color: var(--text-light);
  margin-top: .1rem;
}
.hc1 { top: 0; left: 0; animation: hcFloat1 3.8s ease-in-out infinite; }
.hc2 { top: 55px; left: 120px; animation: hcFloat2 3.8s ease-in-out infinite .6s; }
.hc3 { top: 130px; left: 0; animation: hcFloat3 3.8s ease-in-out infinite 1.2s; }
.hc4 { top: 185px; left: 110px; animation: hcFloat4 3.8s ease-in-out infinite 1.8s; }
@keyframes hcFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes hcFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes hcFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes hcFloat4 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

@media (max-width: 768px) {
  .hero-cards { display: none; }
  .hero-content { flex-direction: column !important; }
}

/* ─── SIN CARGO ─── */
.hero-sincargo {
  font-size: .88rem; font-weight: 500;
  color: var(--cosmos); letter-spacing: .04em;
  margin-top: .9rem;
  animation: fadeUp .6s ease both .5s;
}

/* ─── EXPERIENCIA EN SOBRE MÍ ─── */
.about-exp {
  display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 1.2rem;
  padding: 1rem 1.2rem;
  background: var(--bg-alt);
  border-radius: .75rem;
  border-left: 3px solid var(--cosmos);
}
.exp-item {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 1rem; flex-wrap: wrap;
}
.exp-role {
  font-size: .82rem; font-weight: 600; color: var(--text);
}
.exp-period {
  font-size: .72rem; color: var(--text-light); white-space: nowrap;
}
