/* ═══════════════════════════════════════════════════════════
   NAY PEROZZI — Premium Digital Website
   Archetype: Mouse-Reactive Dark Lavender
   v20260602
═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #050505;
  --bg-2:       #0d0d0f;
  --bg-3:       #141416;
  --bg-card:    #0f0f12;
  --white:      #ffffff;
  --off-white:  #f0ecff;
  --lavender:   #C7A6FF;
  --lavender-b: #B889FF;
  --lavender-s: #E8DDFD;
  --lavender-d: rgba(199,166,255,0.12);
  --lavender-g: rgba(199,166,255,0.06);
  --gray:       #8A8A8A;
  --gray-d:     #3a3a3f;
  --line:       rgba(199,166,255,0.12);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-circ: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--lavender);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-circ), width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(199,166,255,0.5);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 24px; height: 24px; }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 60px; height: 60px; border-color: var(--lavender); }

/* ── Splash ── */
#splash {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.splash-logo {
  width: 160px;
  opacity: 0;
  animation: splashFade 0.8s 0.3s var(--ease-out) forwards;
}

.splash-logo img { width: 100%; mix-blend-mode: screen; }

.splash-bar {
  width: 160px;
  height: 1px;
  background: var(--gray-d);
  position: relative;
  overflow: hidden;
}

.splash-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--lavender);
  animation: splashBar 1.4s 0.5s var(--ease-out) forwards;
}

@keyframes splashFade { to { opacity: 1; } }
@keyframes splashBar { to { left: 100%; } }

#splash.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-in);
}

/* ── Navigation ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s var(--ease-circ), box-shadow 0.4s;
  padding: 0 24px;
}

#nav.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

.nav-logo { flex-shrink: 0; height: 44px; display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; object-fit: contain; mix-blend-mode: screen; }
.nav-logo .logo-dark { display: none; }

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(240,236,255,0.7);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--lavender);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  flex-shrink: 0;
  background: var(--lavender);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}

.btn-nav:hover { background: var(--lavender-b); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--off-white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(20px);
  padding: 16px 0 24px;
  border-top: 1px solid var(--line);
}

.nav-mobile a {
  padding: 14px 24px;
  font-size: 1rem;
  color: rgba(240,236,255,0.75);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, background 0.2s;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--white); background: var(--lavender-g); }

.btn-mobile {
  margin: 16px 24px 0;
  background: var(--lavender) !important;
  color: var(--bg) !important;
  font-weight: 600;
  border-radius: 100px;
  text-align: center;
  padding: 14px 24px !important;
  border-bottom: none !important;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lavender);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 30px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.25s var(--ease-out), box-shadow 0.25s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--lavender-b);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,137,255,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 13px 30px;
  border-radius: 100px;
  border: 1px solid rgba(199,166,255,0.4);
  transition: border-color 0.2s, color 0.2s, transform 0.25s var(--ease-out);
  letter-spacing: 0.01em;
}

.btn-outline:hover {
  border-color: var(--lavender);
  color: var(--lavender);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gray);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  padding: 13px 30px;
  border-radius: 100px;
  border: 1px solid var(--gray-d);
  transition: border-color 0.2s, color 0.2s, transform 0.25s var(--ease-out);
}

.btn-ghost:hover { border-color: var(--gray); color: var(--off-white); transform: translateY(-2px); }
.btn-lg { font-size: 1rem; padding: 16px 36px; }

/* ── Typography helpers ── */
.section-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--lavender); font-weight: 700; }

.section-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 64px;
}

.accent-word { color: var(--lavender); }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Reveal from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Reveal scale */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-line {
  display: block;
  overflow: hidden;
}

/* Safety net — always show after 6 seconds */
.reveal[data-split] { opacity: 1; transform: none; }

/* ── Floating animation for decorative elements ── */
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes floatYslow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(3deg); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(199,166,255,0.15); }
  50%       { box-shadow: 0 0 60px rgba(199,166,255,0.35); }
}

/* Glow on MIA card */
.card-mia { animation: glowPulse 4s ease-in-out infinite; }

/* ── Ambient animated gradient on stats section ── */
.stats-section {
  background: linear-gradient(135deg, var(--bg-2) 0%, #0a0a14 50%, var(--bg-2) 100%);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Animated border on section kicker ── */
.section-kicker {
  position: relative;
  display: inline-block;
}

/* ── Shimmer on lavender accent words ── */
.accent-word {
  background: linear-gradient(90deg, #C7A6FF 0%, #ffffff 40%, #B889FF 60%, #C7A6FF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
  from { background-position: 200% center; }
  to   { background-position: -200% center; }
}

/* ── Animated glow line under nav ── */
#nav.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lavender), transparent);
  background-size: 200% 100%;
  animation: navLine 3s linear infinite;
}

@keyframes navLine {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}

/* ── Floating orb behind philosophy ── */
.philosophy-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,255,0.08) 0%, transparent 65%);
  animation: floatYslow 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* ── Pulse on btn-primary ── */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: btnShimmer 2.5s linear infinite;
}

@keyframes btnShimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}

/* ── Typing cursor on hero kicker ── */
.hero-kicker::after {
  content: '|';
  color: var(--lavender);
  animation: blink 1s step-end infinite;
  margin-left: 2px;
  font-weight: 300;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Animated dot in stat numbers ── */
.stat-big {
  position: relative;
}

/* ── Card hover glow border ── */
.recurso-card::before, .evento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(199,166,255,0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.recurso-card:hover::before, .evento-card:hover::before { opacity: 1; }

/* ── CTA title shimmer ── */
.cta-title .accent-word {
  animation: shimmerText 2.5s linear infinite;
}

/* ── Scroll indicator enhanced ── */
.hero-scroll {
  animation: none;
}

.scroll-line {
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { height: 20px; opacity: 0.3; }
  50%  { height: 50px; opacity: 1; }
  100% { height: 20px; opacity: 0.3; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.42;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0.5) 0%,
    rgba(5,5,5,0.3) 40%,
    rgba(5,5,5,0.7) 80%,
    rgba(5,5,5,1) 100%
  );
}

/* Mouse-reactive blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.8s var(--ease-out);
}

.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,137,255,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}

.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(199,166,255,0.12) 0%, transparent 70%);
  bottom: 100px; left: -50px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 28px;
}

.hero-title .accent-word {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-b) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(240,236,255,0.65);
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  overflow: hidden;
  max-width: 680px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.stat-item + .stat-item { border-left: 1px solid var(--line); }

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lavender);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-sep { display: none; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s infinite;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--lavender), transparent);
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Marquee ── */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  background: var(--bg-2);
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.marquee-track .dot { color: var(--lavender); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Stats Section ── */
.stats-section {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--lavender));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 60px;
}

.stat-block {
  background: var(--bg-card);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.4s, transform 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.stat-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lavender), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.stat-block:hover { background: rgba(199,166,255,0.06); transform: translateY(-4px); }
.stat-block:hover::after { transform: scaleX(1); }

.stat-big {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--lavender);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ── About Section ── */
.about-section {
  padding: 140px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about-img-wrap:hover img { transform: scale(1.03); }

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(5,5,5,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--lavender);
  letter-spacing: 0.04em;
}

.badge-icon { font-size: 1rem; }

.about-accent-line {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px; height: 180px;
  border: 1px solid rgba(199,166,255,0.15);
  border-radius: 50%;
  pointer-events: none;
}

.about-content { padding-top: 20px; }

.about-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(240,236,255,0.75);
  margin-bottom: 20px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.about-tags span {
  background: var(--lavender-d);
  border: 1px solid rgba(199,166,255,0.2);
  color: var(--lavender);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ── Philosophy Section ── */
.philosophy-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.philosophy-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.philosophy-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.philosophy-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    rgba(5,5,5,0.7) 40%,
    rgba(5,5,5,0.7) 60%,
    var(--bg) 100%
  );
}

.philosophy-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.philosophy-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 48px;
}

.philosophy-words {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  border-left: 2px solid rgba(199,166,255,0.3);
  padding-left: 24px;
}

.philosophy-words span {
  font-size: 1.125rem;
  color: rgba(240,236,255,0.6);
  font-style: italic;
}

.philosophy-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(240,236,255,0.75);
  margin-bottom: 48px;
  max-width: 600px;
}

.philosophy-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.pillar {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 18px;
  transition: border-color 0.2s, color 0.2s;
}

.pillar:hover { border-color: var(--lavender); color: var(--lavender); }

.philosophy-close {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
}

/* ── Academias Section ── */
.academias-section {
  padding: 140px 0;
  background: var(--bg-2);
}

.academias-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

.academia-card {
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: border-color 0.4s, transform 0.5s var(--ease-out), box-shadow 0.4s;
}

.academia-card:hover {
  border-color: rgba(199,166,255,0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(199,166,255,0.06);
}

.card-mia {
  border-color: rgba(199,166,255,0.25);
  background: linear-gradient(135deg, rgba(199,166,255,0.06) 0%, var(--bg-card) 60%);
}

.card-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.card-badge-featured {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--lavender);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.card-logo {
  height: 60px;
  display: flex;
  align-items: center;
}

.card-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  max-width: 160px;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card-body p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 24px;
}

.card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(240,236,255,0.75);
}

.feat-check {
  color: var(--lavender);
  font-weight: 600;
  font-size: 1rem;
}

.card-btn { width: 100%; justify-content: center; }

/* Orientation block */
.orientation-block {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  background: var(--bg-card);
  text-align: center;
}

.orientation-block h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.orientation-block > p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 40px;
}

.orientation-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.ori-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s;
}

.ori-card:hover { border-color: rgba(199,166,255,0.3); }
.ori-card-accent { border-color: rgba(199,166,255,0.2); background: rgba(199,166,255,0.04); }

.ori-if {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 16px;
}

.ori-if strong { color: var(--off-white); font-weight: 600; }

.ori-answer {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lavender);
}

/* ── Eventos Section ── */
.eventos-section {
  padding: 140px 0 0;
  overflow: hidden;
}

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.evento-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
  position: relative;
}

.evento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199,166,255,0.3);
}

.evento-visual {
  aspect-ratio: 16/7;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}

.evento-visual-1 {
  background: linear-gradient(135deg, #0d0914 0%, #1a0d2e 50%, #0d0914 100%);
}
.evento-visual-2 {
  background: linear-gradient(135deg, #06091a 0%, #0d1a3a 50%, #06091a 100%);
}
.evento-visual-3 {
  background: linear-gradient(135deg, #0d0914 0%, #1a1040 50%, #0d0914 100%);
}

.evento-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(199,166,255,0.12) 0%, transparent 60%);
}

.evento-visual-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(199,166,255,0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}

.evento-visual-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  border: 1px solid rgba(199,166,255,0.25);
  padding: 4px 10px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.evento-info {
  padding: 28px 28px 32px;
  flex: 1;
}

.evento-role {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 10px;
}

.evento-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.evento-info p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray);
}

/* Photo strip */
.photo-strip {
  overflow: hidden;
  height: 240px;
  border-top: 1px solid var(--line);
  margin-top: 0;
}

.strip-track {
  display: flex;
  gap: 0;
  height: 100%;
  animation: stripScroll 20s linear infinite;
}

.strip-track img {
  height: 100%;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s;
  border-right: 1px solid var(--line);
}

.strip-track img:hover { opacity: 1; }
@keyframes stripScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Recursos Section ── */
.recursos-section {
  padding: 140px 0;
  background: var(--bg-2);
}

.recursos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.recurso-card {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}

.recurso-card:hover {
  border-color: rgba(199,166,255,0.35);
  transform: translateY(-4px);
}

.recurso-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(199,166,255,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lavender-g);
  margin-bottom: 8px;
}

.recurso-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.recurso-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray);
  flex: 1;
}

/* ── Testimonios Section ── */
.testimonios-section {
  padding: 140px 0;
  overflow: hidden;
}

.testimonios-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s var(--ease-out);
}

.testimonio-card {
  min-width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.testimonio-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-3);
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  border-top: 1px solid var(--line);
}

.carousel-prev, .carousel-next {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line) !important;
  color: var(--off-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: none !important;
}

.carousel-prev:hover, .carousel-next:hover {
  border-color: var(--lavender) !important;
  color: var(--lavender);
  background: var(--lavender-g);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-d);
  transition: background 0.3s, width 0.3s;
  cursor: none;
}

.carousel-dot.active { background: var(--lavender); width: 20px; border-radius: 3px; }

/* ── CTA Section ── */
.cta-section {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-blob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,255,0.1) 0%, transparent 65%);
  pointer-events: none;
  animation: blobPulse 6s ease-in-out infinite;
}

@keyframes blobPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, -50%) scale(1.1); }
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-title em { font-style: italic; }

.cta-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 48px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
  background: var(--bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo img { height: 32px; width: auto; object-fit: contain; mix-blend-mode: screen; opacity: 0.7; transition: opacity 0.2s; }
.footer-logo:hover img { opacity: 1; }

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--off-white); }

.footer-academias {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-academias img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s;
}

.footer-academias img:hover { opacity: 1; filter: none; }

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.8125rem;
  color: rgba(138,138,138,0.5);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .academias-grid { grid-template-columns: 1fr; }
  .card-mia { order: -1; }
  .eventos-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: none; }
  #nav.mobile-open .nav-mobile { display: flex; }
  #nav.mobile-open .nav-burger span:nth-child(1) { transform: rotate(45deg) translate(4px, 4.5px); }
  #nav.mobile-open .nav-burger span:nth-child(2) { opacity: 0; }
  #nav.mobile-open .nav-burger span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4.5px); }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }

  .hero-stats {
    flex-direction: column;
    max-width: 100%;
  }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--line); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block { padding: 32px 24px; }

  .eventos-grid { grid-template-columns: 1fr; }

  .recursos-grid { grid-template-columns: 1fr; }

  .orientation-cards { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { flex-wrap: wrap; }

  .philosophy-title { font-size: clamp(2rem, 8vw, 3.2rem); }

  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn-lg { width: 100%; justify-content: center; }
  .card-features { grid-template-columns: 1fr; }
  .orientation-block { padding: 36px 24px; }
}
