.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Instagram */
.btn-instagram {
  background: linear-gradient(135deg,
      #f58529,
      #feda77,
      #dd2a7b,
      #8134af,
      #515bd4);
  color: #fff;
}

/* TikTok */
.btn-tiktok {
  background: #000;
  color: #fff;
  box-shadow:
    -3px 0 #25F4EE,
    3px 0 #FE2C55;
}

/* Hazte Ver */
.btn-haztever {
  background: linear-gradient(135deg,
      #007BFF 0%,
      #4F46FF 50%,
      #8B3DFF 100%);

  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(79, 70, 255, .35);
}

.btn-haztever:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(79, 70, 255, .45);
}

/* Estilo base */
.social-links a {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  transition: .3s;
}

.social-links a:hover {
  transform: translateY(-3px);
  opacity: .92;
}

:root {
  --bg: #fffafd;
  --bg-soft: #fbf3ff;
  --text: #2e2237;
  --muted: #75677e;
  --lilac: #b682ff;
  --lilac-dark: #7f45d8;
  --rose: #f6bdd9;
  --cream: #fff7ed;
  --line: rgba(126, 69, 216, .16);
  --shadow: 0 24px 70px rgba(91, 51, 129, .14);
  --radius: 30px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: radial-gradient(circle at 15% 10%, #f7e8ff 0 22%, transparent 38%), radial-gradient(circle at 85% 20%, #fff1f7 0 18%, transparent 34%), var(--bg);
  color: var(--text);
  overflow-x: hidden
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  z-index: 3
}

.container {
  width: min(1120px, 92%);
  margin: auto
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 253, .72);
  border-bottom: 1px solid var(--line)
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 800
}

.brand span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--lilac), var(--rose));
  color: white;
  box-shadow: 0 12px 30px rgba(182, 130, 255, .3)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px
}

.nav-links a:hover {
  color: var(--lilac-dark)
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(91, 51, 129, .08);
  color: var(--text) !important
}

.menu-btn {
  display: none;
  border: 0;
  background: white;
  border-radius: 14px;
  padding: 10px 13px;
  font-size: 22px;
  color: var(--text)
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 50px;
  padding: 70px 0
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--lilac-dark);
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 16px
}

.hero h1,
.section h2 {
  font-family: 'Marcellus', serif;
  line-height: 1.02;
  letter-spacing: -.04em
}

.hero h1 {
  font-size: clamp(54px, 8vw, 106px);
  margin: 0
}

.hero-phrase {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.14;
  margin: 18px 0;
  color: #4a335e;
  font-family: 'Marcellus', serif
}

.hero-text,
.about-text p,
.split-title p,
.career-card p,
.contact-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  max-width: 720px;
  margin: 16px auto 0
}


.contact-card {
  text-align: center;
  padding: 58px;
  background: radial-gradient(circle at 20% 0, #fff2fb, transparent 35%), white
}




.hero-actions,
.socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px
}

.btn,
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  transition: .25s
}

.primary {
  background: linear-gradient(135deg, var(--lilac-dark), var(--lilac));
  color: white;
  box-shadow: 0 18px 40px rgba(126, 69, 216, .27)
}

.ghost,
.socials a {
  background: white;
  color: var(--text);
  border: 1px solid var(--line)
}

.btn:hover,
.socials a:hover {
  transform: translateY(-3px)
}

.mini-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 35px
}

.mini-stats span {
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--muted);
  font-size: 13px
}

.mini-stats b {
  display: block;
  color: var(--text)
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center
}

.photo-card {
  width: min(430px, 88vw);
  height: 570px;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  padding: 14px
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  filter: saturate(1.02)
}

.photo-label {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 24px;
  padding: 18px
}

.photo-label span {
  color: var(--lilac-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em
}

.photo-label strong {
  display: block;
  font-family: 'Marcellus', serif;
  font-size: 28px
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  z-index: -1
}

.orb-one {
  width: 230px;
  height: 230px;
  background: #ead8ff;
  top: 30px;
  right: 20px
}

.orb-two {
  width: 180px;
  height: 180px;
  background: #ffe1ee;
  bottom: 40px;
  left: 20px
}

.floating-note {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 850;
  color: var(--lilac-dark);
  box-shadow: 0 18px 40px rgba(91, 51, 129, .11)
}

.note-one {
  top: 100px;
  left: 5px
}

.note-two {
  bottom: 135px;
  right: 0
}

.section {
  padding: 95px 0
}

.soft {
  background: linear-gradient(180deg, rgba(251, 243, 255, .72), rgba(255, 250, 253, .2));
  border-block: 1px solid var(--line)
}

.two-cols {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px
}

.section h2 {
  font-size: clamp(36px, 5vw, 62px);
  margin: 0
}

.center-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 45px
}

.essence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.essence-card,
.event-card,
.career-card,
.contact-card {
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(91, 51, 129, .08)
}

.essence-card {
  padding: 28px
}

.essence-card span {
  color: var(--lilac-dark);
  font-weight: 900
}

.essence-card h3,
.event-card h3,
.career-list h3 {
  margin: 14px 0 10px;
  font-size: 21px
}

.essence-card p,
.event-card p,
.career-list p {
  color: var(--muted);
  line-height: 1.75
}

.timeline-section {
  background: linear-gradient(180deg, #fff, #fbf3ff)
}

.split-title {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 34px
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.event-card {
  padding: 24px
}

.event-card span {
  display: block;
  color: var(--lilac-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900
}

.event-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, #fff, #fff4fb)
}

.event-img {
  min-height: 250px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ead8ff, #fff1f7);
  overflow: hidden
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.event-gallery {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #ead8ff, #fff1f7);
  display: grid;
  gap: 6px;
  margin-bottom: 18px
}

.event-gallery.two {
  grid-template-columns: 1fr 1fr;
  height: 235px
}

.event-card.featured .event-gallery {
  height: 310px;
  margin-bottom: 0
}

.event-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .35s ease
}

.event-card:hover .event-gallery img {
  transform: scale(1.035)
}

.event-card.with-photo {
  padding: 16px 16px 24px
}

.event-card.with-photo span,
.event-card.with-photo h3,
.event-card.with-photo p {
  margin-left: 8px;
  margin-right: 8px
}

.event-card a {
  font-weight: 900;
  color: var(--lilac-dark)
}

.career-card {
  padding: 40px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px
}

.career-list {
  display: grid;
  gap: 16px
}

.career-list div {
  padding: 20px;
  border-radius: 24px;
  background: rgba(251, 243, 255, .6);
  border: 1px solid var(--line)
}

.career-list span {
  color: var(--lilac-dark);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase
}

.skills-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px
}

.skills-row span {
  padding: 12px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-weight: 850;
  color: #5a4269
}

.quote-section {
  background: linear-gradient(135deg, #8c55dc, #c49bff);
  color: white;
  text-align: center
}

.quote-section p {
  font-family: 'Marcellus', serif;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.15;
  max-width: 980px;
  margin: auto
}



.footer {
  padding: 30px 0;
  color: var(--muted);
  border-top: 1px solid var(--line)
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal.active {
  opacity: 1;
  transform: translateY(0)
}

.delay-1 {
  transition-delay: .12s
}

.delay-2 {
  transition-delay: .2s
}

.delay-3 {
  transition-delay: .28s
}

@media(max-width:900px) {
  .menu-btn {
    display: block
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow)
  }

  .nav-links.open {
    display: flex
  }

  .hero,
  .two-cols,
  .split-title,
  .career-card {
    grid-template-columns: 1fr
  }

  .hero {
    padding-top: 45px
  }

  .hero-visual {
    min-height: 560px
  }

  .essence-grid,
  .event-grid {
    grid-template-columns: 1fr 1fr
  }

  .event-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr
  }

  .career-card {
    padding: 28px
  }
}

@media(max-width:640px) {
  .event-gallery.two {
    height: 210px
  }

  .event-card.featured .event-gallery {
    height: 230px
  }

  .hero h1 {
    font-size: 52px
  }

  .hero-phrase {
    font-size: 28px
  }

  .hero-text,
  .about-text p {
    font-size: 15.5px
  }

  .section {
    padding: 72px 0
  }

  .essence-grid,
  .event-grid {
    grid-template-columns: 1fr
  }

  .event-card.featured {
    grid-column: span 1
  }

  .photo-card {
    height: 500px
  }

  .floating-note {
    display: none
  }

  .contact-card {
    padding: 34px 22px
  }

  .footer-inner {
    display: block
  }

  .nav {
    height: 70px
  }

  .nav-links {
    top: 70px
  }
}