/* ═══════════════════════════════════════════════
   PatriciaSpanish · Landing — Playful Edition
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;1,9..144,400;1,9..144,700&display=swap');

:root {
  --pop-pink: #E8345A;
  --pop-pink-dark: #C42847;
  --pop-pink-glow: rgba(232,52,90,0.15);
  --sunny: #FFB627;
  --sunny-light: #FFF0C8;
  --sunny-dark: #E09800;
  --mint: #2EC4B6;
  --mint-light: #D4F5F0;
  --mint-dark: #1A9E92;
  --grape: #7B2D8B;
  --grape-light: #F0E0F5;
  --ink: #1A1A2E;
  --ink-soft: #4A4A5A;
  --cloud: #FAFBFF;
  --white: #FFFFFF;
  --border-fun: rgba(26,26,46,0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Sora', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cloud);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:
    linear-gradient(
      135deg,
      rgba(26,26,46,0.85) 0%,
      rgba(123,45,139,0.7) 25%,
      rgba(91,141,239,0.6) 50%,
      rgba(232,52,90,0.5) 75%,
      rgba(26,26,46,0.85) 100%
    );
  background-size: 300% 300%;
  animation: nebulaNav 12s ease infinite;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}

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

nav.scrolled {
  padding: 0.6rem 2rem;
  box-shadow: none;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pop-pink);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-logo span { color: var(--mint); }

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover { color: var(--pop-pink); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sunny);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--pop-pink) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  transition: all 0.3s !important;
  transform: rotate(-1deg);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--pop-pink-dark) !important;
  transform: rotate(0deg) scale(1.05) !important;
}

.lang-toggle {
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  border: 2px solid var(--sunny);
  border-radius: 8px;
  cursor: pointer;
  background: var(--sunny-light);
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.lang-toggle:hover {
  background: var(--sunny);
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: all 0.3s;
}

/* ── HERO ─────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, var(--pop-pink-glow) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(46,196,182,0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,182,39,0.06) 0%, transparent 60%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }

@keyframes popIn {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-light);
  padding: 0.4rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transform: rotate(-2deg);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-title em {
  font-style: italic;
  color: var(--pop-pink);
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 12px;
  background: var(--sunny);
  opacity: 0.35;
  border-radius: 4px;
  z-index: -1;
  transform: rotate(-1deg);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── BUTTONS ──────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pop-pink);
  color: var(--white);
  padding: 0.95rem 2rem;
  border-radius: 90px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-body);
  box-shadow: 0 4px 15px rgba(232,52,90,0.2);
  transform: rotate(-0.5deg);
}

.btn-primary:hover {
  background: var(--pop-pink-dark);
  transform: rotate(0deg) translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(232,52,90,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.95rem 2rem;
  border-radius: 90px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-body);
}

.btn-secondary:hover {
  background: var(--sunny-light);
  border-color: var(--sunny-dark);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ── HERO PHOTO ───────────────────── */
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

.hero-photo-frame {
  position: relative;
  width: 370px;
  height: 370px;
  border-radius: 30px;
  overflow: hidden;
  transform: rotate(3deg);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 20px 50px rgba(26,26,46,0.12),
    8px 8px 0 var(--sunny),
    16px 16px 0 var(--mint);
}

.hero-photo-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  padding: 0.75rem 1.2rem;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(26,26,46,0.1);
  font-size: 0.82rem;
  font-weight: 600;
  border: 2px solid var(--border-fun);
  animation: bounce 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 5%;
  right: -12%;
  background: var(--sunny-light);
  border-color: var(--sunny);
  transform: rotate(4deg);
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 12%;
  left: -10%;
  background: var(--mint-light);
  border-color: var(--mint);
  transform: rotate(-3deg);
  animation-delay: 1.2s;
}

.hero-float-card .emoji { font-size: 1.2rem; margin-right: 0.3rem; }

@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(var(--r, 3deg)); }
  50% { transform: translateY(-8px) rotate(var(--r, 3deg)); }
}

.hero-float-card.card-1 { --r: 4deg; }
.hero-float-card.card-2 { --r: -3deg; }

/* ── TRUST BAR ─────────────────────── */
.trust-bar {
  text-align: center;
  padding: 2.5rem 2rem 3.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-stat { text-align: center; }

.trust-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pop-pink);
}

.trust-stat .label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.2rem;
  font-weight: 500;
}

/* ── SECTIONS SHARED ───────────────── */
section { padding: 5rem 2rem; }

.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-light);
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

.section-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── ABOUT ─────────────────────────── */
.about {
  background: var(--white);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.about-inner { max-width: 900px; margin: 0 auto; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-card {
  background: var(--cloud);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid var(--border-fun);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
}

.about-card:nth-child(1)::before { background: var(--pop-pink); }
.about-card:nth-child(2)::before { background: var(--sunny); }
.about-card:nth-child(3)::before { background: var(--mint); }
.about-card:nth-child(4)::before { background: var(--grape); }

.about-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 12px 30px rgba(26,26,46,0.08);
  border-color: transparent;
}

.about-card-icon { font-size: 2rem; margin-bottom: 1rem; }

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.about-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── SERVICES / PRICING ────────────── */
.services { background: var(--cloud); }
.services-inner { max-width: 1100px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 2px solid var(--border-fun);
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.price-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 16px 40px rgba(26,26,46,0.08);
}

.price-card.featured {
  border: 3px solid var(--pop-pink);
  background: linear-gradient(180deg, var(--white) 0%, rgba(232,52,90,0.03) 100%);
  transform: scale(1.03);
}

.price-card.featured:hover { transform: scale(1.05) translateY(-6px); }

.price-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--pop-pink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(232,52,90,0.25);
}

.price-card-level {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 0.4rem;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--mint-dark);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.price-card .price-per {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.price-card ul { list-style: none; text-align: left; margin-bottom: 2rem; }

.price-card ul li {
  font-size: 0.86rem;
  color: var(--ink-soft);
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(26,26,46,0.08);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.price-card ul li::before {
  content: '✓';
  color: var(--mint);
  font-weight: 800;
  font-size: 0.9rem;
}

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

/* ── VIDEOS ────────────────────────── */
.videos { background: var(--white); }
.videos-inner { max-width: 1000px; margin: 0 auto; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.video-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--cloud);
  border: 2px solid var(--border-fun);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-card:hover {
  transform: translateY(-5px) rotate(-0.5deg);
  box-shadow: 0 12px 30px rgba(26,26,46,0.08);
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--grape-light) 0%, var(--mint-light) 50%, var(--sunny-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-btn {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--pop-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(232,52,90,0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: rotate(-3deg);
}

.video-placeholder:hover .play-btn { transform: rotate(0deg) scale(1.15); }

.play-btn svg { width: 24px; height: 24px; fill: var(--white); margin-left: 3px; }

.video-card-info { padding: 1.2rem 1.5rem; }

.video-card-info .tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grape);
  background: var(--grape-light);
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  margin-bottom: 0.4rem;
}

.video-card-info h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }

.video-card-info p { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.3rem; line-height: 1.5; }


/* ── CALENDAR ──────────────────────── */
.calendar-section {
  background: #0D0D1A;
  position: relative;
  overflow: visible;
  padding: 6rem 2rem;
}

.calendar-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, var(--cloud) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.calendar-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, white 50%, transparent 100%),
    radial-gradient(2px 2px at 25% 45%, rgba(255,255,255,0.9) 50%, transparent 100%),
    radial-gradient(1px 1px at 40% 15%, white 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 65%, rgba(255,255,255,0.7) 50%, transparent 100%),
    radial-gradient(2px 2px at 70% 30%, white 50%, transparent 100%),
    radial-gradient(1px 1px at 85% 55%, rgba(255,255,255,0.8) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 15% 75%, rgba(255,255,255,0.6) 50%, transparent 100%),
    radial-gradient(1px 1px at 60% 85%, white 50%, transparent 100%),
    radial-gradient(2px 2px at 90% 10%, rgba(255,255,255,0.7) 50%, transparent 100%),
    radial-gradient(1px 1px at 35% 90%, rgba(255,255,255,0.5) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 75% 75%, white 50%, transparent 100%),
    radial-gradient(1px 1px at 5% 50%, rgba(255,255,255,0.8) 50%, transparent 100%),
    radial-gradient(2px 2px at 48% 35%, rgba(255,255,255,0.9) 50%, transparent 100%),
    radial-gradient(1px 1px at 82% 80%, white 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 20% 60%, rgba(255,255,255,0.6) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  animation: starsTwinkle 3s ease-in-out infinite alternate;
}

@keyframes starsTwinkle {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.calendar-nebula {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(123,45,139,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(91,141,239,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(232,52,90,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 20%, rgba(46,196,182,0.15) 0%, transparent 40%);
  background-size: 200% 200%;
  animation: nebulaShift 20s ease infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes nebulaShift {
  0% { background-position: 0% 50%; }
  33% { background-position: 100% 30%; }
  66% { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}

.calendar-section .section-label { color: var(--sunny); background: rgba(255,182,39,0.15); }
.calendar-section .section-title { color: var(--cloud); }
.calendar-section .section-subtitle { color: rgba(250,251,255,0.6); }
.calendar-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }


/* ── CALENDAR FRAME ────────────────── */
#calendly-container {
  min-height: 750px;
  position: relative;
  padding: 0;
  border-radius: 24px;
  overflow: visible;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

#calendly-container .calendly-inline-widget,
#calendly-container iframe {
  position: relative;
  z-index: 1;
  min-width: 320px;
  width: 100%;
  height: 750px !important;
  border: none;
  border-radius: 24px;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  pointer-events: none;
  z-index: 2;
  animation: bubbleFloat linear infinite;
}

.bubble:nth-child(1) { width: 40px; height: 40px; left: -20px; bottom: 20%; animation-duration: 7s; animation-delay: 0s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(232,52,90,0.3) 60%, transparent); }
.bubble:nth-child(2) { width: 25px; height: 25px; left: 5%; bottom: 40%; animation-duration: 9s; animation-delay: 1s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(46,196,182,0.3) 60%, transparent); }
.bubble:nth-child(3) { width: 55px; height: 55px; right: -25px; bottom: 30%; animation-duration: 8s; animation-delay: 0.5s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(123,45,139,0.3) 60%, transparent); }
.bubble:nth-child(4) { width: 20px; height: 20px; right: 8%; bottom: 60%; animation-duration: 10s; animation-delay: 2s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(255,182,39,0.3) 60%, transparent); }
.bubble:nth-child(5) { width: 35px; height: 35px; left: -15px; bottom: 70%; animation-duration: 7.5s; animation-delay: 3s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(91,141,239,0.3) 60%, transparent); }
.bubble:nth-child(6) { width: 30px; height: 30px; right: -12px; bottom: 50%; animation-duration: 8.5s; animation-delay: 1.5s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(232,52,90,0.3) 60%, transparent); }
.bubble:nth-child(7) { width: 18px; height: 18px; left: 10%; bottom: 15%; animation-duration: 11s; animation-delay: 4s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(46,196,182,0.3) 60%, transparent); }
.bubble:nth-child(8) { width: 45px; height: 45px; right: 5%; bottom: 80%; animation-duration: 9.5s; animation-delay: 0.8s; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(255,182,39,0.3) 60%, transparent); }

@keyframes bubbleFloat {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.7; }
  50% { transform: translateY(-120px) scale(1.1); opacity: 0.5; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-250px) scale(0.8); opacity: 0; }
}


/* ── CONTACT ───────────────────────── */
.contact {
  background: var(--ink);
  color: var(--cloud);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0; right: 0;
  height: 80px;
  background: var(--ink);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.contact .section-label { color: var(--sunny); background: rgba(255,182,39,0.15); }
.contact .section-title { color: var(--cloud); }
.contact .section-subtitle { color: rgba(250,251,255,0.55); }

.contact-inner { max-width: 600px; margin: 0 auto; }

.contact-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: rgba(250,251,255,0.65);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(250,251,255,0.06);
  border: 2px solid rgba(250,251,255,0.12);
  border-radius: 14px;
  color: var(--cloud);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s;
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(250,251,255,0.25); }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--pop-pink);
  box-shadow: 0 0 0 4px rgba(232,52,90,0.15);
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-field select option { background: var(--ink); color: var(--cloud); }

.contact-form .btn-primary {
  align-self: flex-start;
  margin-top: 0.5rem;
  background: var(--sunny);
  color: var(--ink);
  box-shadow: 0 4px 15px rgba(255,182,39,0.3);
}

.contact-form .btn-primary:hover {
  background: var(--sunny-dark);
  box-shadow: 0 8px 25px rgba(255,182,39,0.4);
}

/* ── FOOTER ────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(250,251,255,0.06);
  padding: 2rem;
  text-align: center;
}

footer p { font-size: 0.78rem; color: rgba(250,251,255,0.3); }
footer a { color: var(--pop-pink); text-decoration: none; }

/* ── BILINGUAL TOGGLE ──────────────── */
[data-lang="es"] { display: none; }
body.lang-es [data-lang="en"] { display: none; }
body.lang-es [data-lang="es"] { display: initial; }
body.lang-es [data-lang-block="en"] { display: none; }
body.lang-es [data-lang-block="es"] { display: block; }
[data-lang-block="es"] { display: none; }
body.lang-es [data-lang-block="en"] { display: none; }
body.lang-es [data-lang-block="es"] { display: block; }

body.lang-es [data-lang-block="es"].flex-li { display: flex; }
[data-lang-block="en"].flex-li { display: flex; }
[data-lang-block="es"].flex-li { display: none; }
body.lang-es [data-lang-block="en"].flex-li { display: none; }
body.lang-es [data-lang-block="es"].flex-li { display: flex; }

/* ── MOBILE ────────────────────────── */
@media (max-width: 768px) {

  .nav-links { display: none; }
  .hamburger { display: flex; }
  html, body { overflow-x: hidden; width: 100%; }
  #calendly-container { padding: 0; border: none; box-shadow: none; border-radius: 16px; overflow: hidden; }
  .calendar-inner { padding: 0; max-width: 100%; overflow: hidden; }
  .hero-photo-frame { box-shadow: 0 15px 40px rgba(26,26,46,0.12); }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(26,26,46,0.95);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
  }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-photo-frame { width: 280px; height: 280px; }
  .hero-float-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: scale(1); }
  .video-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-stats { gap: 2rem; }
}

#unicorn-runner {
  position: fixed;
  top: -120px;
  left: -120px;
  z-index: 10000;
  width: 100px;
  height: 100px;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(123,45,139,0.2));
}

#unicorn-runner.run {
  animation: unicornDiagonal 4.5s cubic-bezier(0.2, 0, 0.3, 1) forwards;
}

#unicorn-runner svg {
  width: 100%;
  height: 100%;
  animation: unicornBob 0.25s ease-in-out infinite alternate;
  transform-origin: center bottom;
}

@keyframes unicornBob {
  from { transform: translateY(0) rotate(-8deg) scaleX(-1); }
  to { transform: translateY(-18px) rotate(4deg) scaleX(-1); }
}

@keyframes unicornDiagonal {
  0%   { top: -120px; left: -120px; opacity: 1; }
  12%  { top: 10vh;  left: 12vw;  }
  20%  { top: 25vh;  left: 22vw;  }
  30%  { top: 15vh;  left: 35vw;  }
  42%  { top: 35vh;  left: 48vw;  }
  52%  { top: 22vh;  left: 58vw;  }
  64%  { top: 42vh;  left: 68vw;  }
  75%  { top: 55vh;  left: 76vw;  }
  85%  { top: 65vh;  left: 84vw;  }
  95%  { top: calc(100vh - 140px); left: calc(100vw - 110px); }
  100% { top: calc(100vh - 110px); left: calc(100vw - 100px); opacity: 1; }
}

#sparkle-trail {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.trail-sparkle {
  position: absolute;
  border-radius: 50%;
  animation: trailFade 1s ease-out forwards;
  pointer-events: none;
}

.trail-star {
  position: absolute;
  pointer-events: none;
  animation: starSpin 0.9s ease-out forwards;
}

@keyframes trailFade {
  from { transform: scale(1); opacity: 0.9; }
  to { transform: scale(0) translateY(-30px); opacity: 0; }
}

@keyframes starSpin {
  from { transform: scale(1) rotate(0deg); opacity: 0.8; }
  to { transform: scale(0) rotate(180deg) translateY(-25px); opacity: 0; }
}

/* ═══ CHISPITAS 🦄 · Unicorn Chatbot v3 · PatriciaSpanish ═══ */
/* ── SETTLED BUTTON ────────────────── */
#unicorn-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}

#unicorn-wrap.visible {
  opacity: 1;
  pointer-events: auto;
}

#unicorn-hint {
  position: relative;
  background: #1A1A2E;
  color: #FAFBFF;
  padding: 8px 14px;
  border-radius: 14px 14px 4px 14px;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  max-width: 210px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(26,26,46,0.15);
  animation: hintPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes hintPop {
  from { opacity: 0; transform: scale(0.7) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

#unicorn-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFB627 0%, #E8345A 40%, #7B2D8B 100%);
  box-shadow: 0 6px 25px rgba(232,52,90,0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  animation: settledBounce 3s ease-in-out infinite;
  padding: 0;
  overflow: visible;
}

#unicorn-btn:hover {
  transform: scale(1.15) rotate(-5deg) !important;
  box-shadow: 0 12px 35px rgba(232,52,90,0.4);
}

@keyframes settledBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.btn-sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
}

.btn-sparkle:nth-child(2) { top: -5px; right: 8px; background: #FFB627; animation: sparkleFloat 2.5s ease-in-out infinite; }
.btn-sparkle:nth-child(3) { bottom: 0; left: -4px; background: #2EC4B6; animation: sparkleFloat 2.5s ease-in-out infinite 0.8s; }
.btn-sparkle:nth-child(4) { top: 10px; left: -7px; background: #7B2D8B; animation: sparkleFloat 2.5s ease-in-out infinite 1.5s; }
.btn-sparkle:nth-child(5) { top: -3px; left: 15px; background: #E8345A; animation: sparkleFloat 2.5s ease-in-out infinite 0.4s; width: 6px; height: 6px; }
.btn-sparkle:nth-child(6) { bottom: -4px; right: 12px; background: #FFB627; animation: sparkleFloat 2.5s ease-in-out infinite 1.1s; width: 5px; height: 5px; }

@keyframes sparkleFloat {
  0%, 100% { transform: scale(0); opacity: 0; }
  20% { transform: scale(1.2); opacity: 1; }
  40% { transform: scale(0.8); opacity: 0.8; }
  60% { transform: scale(0); opacity: 0; }
}

/* ── CHAT WINDOW ───────────────────── */
#unicorn-chat {
  display: none;
  position: fixed;
  bottom: 105px;
  right: 24px;
  width: 360px;
  max-height: 500px;
  background: #FAFBFF;
  border-radius: 24px;
  box-shadow: 0 16px 50px rgba(26,26,46,0.18);
  z-index: 9999;
  overflow: hidden;
  font-family: 'Sora', system-ui, sans-serif;
  animation: chatOpen 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(26,26,46,0.08);
  flex-direction: column;
}

#unicorn-chat.open { display: flex; }

@keyframes chatOpen {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-header {
  background: linear-gradient(135deg, #FFB627 0%, #E8345A 50%, #7B2D8B 100%);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.chat-header-emoji { font-size: 1.5rem; }
.chat-header-text { flex: 1; }
.chat-header-name { font-weight: 700; font-size: 0.9rem; }
.chat-header-status { font-size: 0.7rem; opacity: 0.85; }

.chat-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.chat-close:hover { background: rgba(255,255,255,0.35); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 320px;
  min-height: 200px;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.82rem;
  line-height: 1.55;
  animation: msgPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes msgPop {
  from { opacity: 0; transform: scale(0.9) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-msg.bot { background: #F0E0F5; color: #1A1A2E; align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: #E8345A; color: white; align-self: flex-end; border-bottom-right-radius: 4px; }

.chat-msg.typing {
  background: #F0E0F5;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 4px;
  padding: 12px 18px;
}

.typing-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #7B2D8B;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.chat-input-wrap {
  padding: 10px 14px;
  border-top: 1px solid rgba(26,26,46,0.06);
  display: flex;
  gap: 8px;
}

.chat-input {
  flex: 1;
  border: 2px solid rgba(26,26,46,0.1);
  border-radius: 100px;
  padding: 9px 16px;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 0.82rem;
  outline: none;
  color: #1A1A2E;
  transition: border-color 0.3s;
}

.chat-input::placeholder { color: rgba(26,26,46,0.3); }
.chat-input:focus { border-color: #E8345A; }

.chat-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: #E8345A;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.chat-send:hover { background: #C42847; transform: scale(1.08); }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 480px) {
  #unicorn-chat { right: 8px; left: 8px; bottom: 100px; width: auto; }
  #unicorn-runner { width: 70px; height: 70px; }
  #unicorn-wrap { bottom: 16px; right: 16px; }
  #unicorn-btn { width: 60px; height: 60px; }
}

/* ── NAV SPARKLES ──────────────────── */
.nav-links a::before {
  content: '✦';
  font-size: 0.5rem;
  margin-right: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  vertical-align: middle;
}

.nav-links a:nth-child(1)::before { color: var(--pop-pink); }
.nav-links a:nth-child(2)::before { color: var(--sunny); }
.nav-links a:nth-child(3)::before { color: var(--mint); }
.nav-links a:nth-child(4)::before { color: var(--grape); }

.nav-links a:hover::before { opacity: 1; }

.nav-logo {
  position: relative;
}

.nav-logo::after {
  content: '✨';
  font-size: 0.7rem;
  position: absolute;
  top: -6px;
  right: -16px;
  animation: logoSparkle 2s ease-in-out infinite;
}

@keyframes logoSparkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(15deg); }
}

