/* =========================================
   ESTUPENDA VIBRA — style.css
   ========================================= */

:root {
  --violet-deep:   #2D0B5E;
  --violet-mid:    #5B1FA1;
  --violet-bright: #8B47D4;
  --violet-light:  #C49CE8;
  --violet-pale:   #EAD9FF;
  --lilac:         #BBA3E0;
  --gold:          #D4A853;
  --gold-light:    #F0D08A;
  --cream:         #FAF6F0;
  --dark:          #0D0618;
  --dark-mid:      #1A0B33;
  --white:         #FFFFFF;
  --text-body:     #3D2060;
  --text-light:    rgba(255,255,255,0.75);
  --text-muted:    rgba(255,255,255,0.45);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Josefin Sans', sans-serif;
  --font-accent:  'Playfair Display', Georgia, serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-xl: 64px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* CANVAS STARS */
#starsCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--violet-mid), var(--violet-bright));
  color: var(--white);
  box-shadow: 0 8px 32px rgba(139,71,212,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(139,71,212,0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--lilac);
  border: 1px solid rgba(187,163,224,0.4);
}
.btn-ghost:hover {
  background: rgba(187,163,224,0.1);
  border-color: var(--lilac);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--white);
  color: var(--violet-deep);
  font-weight: 700;
}
.btn-light:hover {
  background: var(--violet-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(13,6,24,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(187,163,224,0.1);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--violet-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: rgba(139,71,212,0.25);
  border: 1px solid rgba(139,71,212,0.5);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-xl);
  color: var(--violet-light) !important;
}
.nav-cta:hover {
  background: var(--violet-bright) !important;
  color: var(--white) !important;
  border-color: transparent !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--violet-light);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,6,24,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--violet-light);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--white); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,31,161,0.5) 0%, transparent 70%);
  top: -10%; left: -15%;
  animation: floatOrb 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,71,212,0.35) 0%, transparent 70%);
  bottom: 5%; right: -10%;
  animation: floatOrb 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,168,83,0.2) 0%, transparent 70%);
  top: 40%; right: 20%;
  animation: floatOrb 12s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.1s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.75rem;
  animation: fadeUp 1s ease 0.3s both;
}
.hero-title em {
  font-style: italic;
  color: var(--violet-light);
  background: linear-gradient(135deg, var(--violet-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.7s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s ease 1.2s both;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--violet-bright), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   MARQUEE
   ========================================= */
.marquee-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(187,163,224,0.15);
  border-bottom: 1px solid rgba(187,163,224,0.15);
  background: rgba(45,11,94,0.3);
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lilac);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================
   SECTIONS
   ========================================= */
.section {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
}
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--violet-light);
}
.section-title.centered { text-align: center; }
.section-header { text-align: center; margin-bottom: 4rem; }

/* =========================================
   SOBRE MÍ
   ========================================= */
.sobre-mi { background: linear-gradient(180deg, transparent 0%, rgba(45,11,94,0.15) 100%); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.sobre-image-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.sobre-image-frame {
  position: relative;
  width: 340px;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sobre-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--dark-mid), var(--violet-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}
.symbol-circle {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(187,163,224,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,71,212,0.1);
  animation: pulse 4s ease-in-out infinite;
}
.inner-symbol {
  font-size: 3rem;
  opacity: 0.6;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,71,212,0.2); }
  50%       { box-shadow: 0 0 0 20px rgba(139,71,212,0); }
}
.frame-border-anim {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(187,163,224,0.25);
  pointer-events: none;
}
.sobre-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sobre-text {}
.sobre-p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}
.sobre-p strong { color: var(--violet-light); font-weight: 600; }
.sobre-valores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.valor-pill {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(187,163,224,0.3);
  color: var(--lilac);
  background: rgba(91,31,161,0.1);
}

/* =========================================
   SERVICIOS
   ========================================= */
.servicios { background: rgba(13,6,24,0.5); }
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.servicio-card {
  display: block;
  text-decoration: none;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(187,163,224,0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.servicio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,71,212,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.servicio-card:hover {
  border-color: rgba(187,163,224,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.servicio-card:hover::before { opacity: 1; }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.servicio-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.servicio-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.card-link {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-light);
  transition: color 0.3s;
}
.card-link:hover { color: var(--gold-light); }
.highlight-card {
  background: linear-gradient(145deg, rgba(91,31,161,0.2), rgba(45,11,94,0.3));
  border-color: rgba(139,71,212,0.4);
}
.highlight-card h3 { color: var(--gold-light); }

.landing-card {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(212,168,83,0.08), rgba(91,31,161,0.15));
  border: 1px solid rgba(212,168,83,0.35);
  position: relative;
}
.landing-card h3 { color: var(--gold-light); }
.landing-card:hover { border-color: rgba(212,168,83,0.65); }

.ebook-card {
  background: linear-gradient(135deg, rgba(187,163,224,0.08), rgba(45,11,94,0.2));
  border: 1px solid rgba(187,163,224,0.3);
  position: relative;
}
.ebook-card h3 { color: var(--violet-light); }
.ebook-card:hover { border-color: var(--violet-light); }

.card-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,168,83,0.4);
  border-radius: var(--radius-xl);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}
.ebook-badge {
  color: var(--lilac);
  border-color: rgba(187,163,224,0.4);
}

/* =========================================
   QUOTE
   ========================================= */
.quote-section {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem;
  overflow: hidden;
}
.quote-bg-orb {
  position: absolute;
  width: 500px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,31,161,0.2) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.big-quote em {
  font-style: italic;
  color: var(--violet-light);
}
.big-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* =========================================
   PODCAST
   ========================================= */
.podcast-section { background: linear-gradient(180deg, rgba(45,11,94,0.1), transparent); }
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.podcast-btn {
  margin-top: 1rem;
}
.podcast-visual {
  display: flex;
  justify-content: center;
}
.podcast-art {
  position: relative;
  width: 280px; height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.podcast-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(187,163,224,0.2);
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 { width: 100%; height: 100%; animation-delay: 0s; }
.ring-2 { width: 75%; height: 75%; animation-delay: 0.4s; border-color: rgba(187,163,224,0.3); }
.ring-3 { width: 50%; height: 50%; animation-delay: 0.8s; border-color: rgba(187,163,224,0.5); }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.04); opacity: 1; }
}
.podcast-center {
  position: relative;
  z-index: 2;
  text-align: center;
  background: linear-gradient(145deg, var(--dark-mid), var(--violet-deep));
  width: 35%; height: 35%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: 1px solid rgba(139,71,212,0.4);
}
.podcast-icon { font-size: 1.5rem; }
.podcast-center p {
  font-family: var(--font-display);
  font-size: 0.62rem;
  line-height: 1.3;
  color: var(--violet-light);
  text-align: center;
}

/* =========================================
   ESPÍRITU VALIENTE
   ========================================= */
.espiritu-valiente {
  background: linear-gradient(180deg, rgba(45,11,94,0.3) 0%, rgba(13,6,24,0.8) 100%);
  border-top: 1px solid rgba(187,163,224,0.1);
  border-bottom: 1px solid rgba(187,163,224,0.1);
  overflow: hidden;
}
.ev-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.ev-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(91,31,161,0.25) 0%, transparent 70%);
  top: -20%; left: -20%;
}
.ev-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,83,0.1) 0%, transparent 70%);
  bottom: 0; right: -10%;
}
.ev-header { text-align: center; margin-bottom: 3rem; }
.ev-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.ev-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--violet-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ev-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* COUNTDOWN */
.countdown-wrapper {
  text-align: center;
  margin: 3rem 0;
}
.countdown-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.count-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(187,163,224,0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  min-width: 90px;
}
.count-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.count-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}
.count-sep {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--violet-bright);
  margin-bottom: 1.2rem;
  opacity: 0.6;
}

/* EV CONTENT */
.ev-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 3rem 0;
}
.ev-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.ev-info p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}

.ev-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(139,71,212,0.4);
  line-height: 1;
  min-width: 40px;
}
.pillar-text h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 0.35rem;
}
.pillar-text p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* WAITLIST */
.ev-cta {
  text-align: center;
  margin-top: 3rem;
}
.ev-cta-text {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.waitlist-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.waitlist-input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(187,163,224,0.3);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  min-width: 260px;
  outline: none;
  transition: border-color 0.3s;
}
.waitlist-input::placeholder { color: var(--text-muted); }
.waitlist-input:focus { border-color: var(--violet-bright); }
.waitlist-success {
  display: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  margin-top: 1rem;
}
.waitlist-success.visible { display: block; }

/* =========================================
   TESTIMONIOS
   ========================================= */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonio-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(187,163,224,0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}
.testimonio-card:hover {
  border-color: rgba(187,163,224,0.25);
  transform: translateY(-4px);
}
.t-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-mid), var(--violet-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.t-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
}
.t-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  position: relative;
  z-index: 2;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(187,163,224,0.1);
  overflow: hidden;
}
.footer-orb {
  position: absolute;
  width: 600px; height: 300px;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(45,11,94,0.4) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--violet-light);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}
.footer-email {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--violet-light) !important;
}
.footer-links h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(187,163,224,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-quote {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(187,163,224,0.35) !important;
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-mid), var(--violet-bright));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(91,31,161,0.55);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 36px rgba(139,71,212,0.65);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: rgba(13,6,24,0.92);
  border: 1px solid rgba(187,163,224,0.2);
  color: var(--lilac);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-xl);
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

@media (max-width: 768px) {
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }
  .wa-tooltip { display: none; }
}
@media (max-width: 1024px) {
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-image-wrap { order: -1; }
}

@media (max-width: 768px) {
  .landing-card { grid-column: span 1; }
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .servicios-grid { grid-template-columns: 1fr; }
  .podcast-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ev-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .countdown { gap: 0.25rem; }
  .count-block { padding: 1rem; min-width: 70px; }

  .hero-title { font-size: 3rem; }
  .ev-title { font-size: 4rem; }
}

@media (max-width: 480px) {
  .waitlist-form { flex-direction: column; align-items: center; }
  .waitlist-input { min-width: auto; width: 100%; max-width: 300px; }
  .sobre-image-frame { width: 280px; height: 320px; }
}

/* =========================================
   FOTO SOBRE MÍ
   ========================================= */
.sobre-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sobre-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
}
.sobre-photo-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    160deg,
    rgba(13, 6, 24, 0.35) 0%,
    rgba(45, 11, 94, 0.25) 50%,
    rgba(13, 6, 24, 0.40) 100%
  );
  pointer-events: none;
}
