/* ═══════════════════════════════════════════════════
   ELDERLY PAGE — Premium Sobrio v3
   300+ lines of premium page-specific CSS
   ═══════════════════════════════════════════════════ */

/* ── HERO ── */
.elderly-hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #f0e6ff 0%, #e8e0ff 25%, #faf5fd 50%, var(--white) 100%);
  padding: calc(var(--section-pad-y) + 3rem) var(--section-pad-x) var(--section-pad-y);
}
.elderly-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(153,51,255,0.18) 0%, transparent 55%);
  border-radius: 50%;
  animation: floatOrb 9s ease-in-out infinite;
}
.elderly-hero::after {
  content: '';
  position: absolute;
  bottom: -250px; left: -100px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(184,230,92,0.12) 0%, transparent 55%);
  border-radius: 50%;
  animation: floatOrb 11s ease-in-out infinite reverse;
}
.elderly-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.elderly-hero-content {
  max-width: 560px;
}
.elderly-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(153,51,255,0.12);
  border: 1px solid rgba(153,51,255,0.3);
  color: var(--blue-deep);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
}
.elderly-hero h1 {
  font-size: var(--text-5xl);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.045em;
  color: var(--blue-deep);
  margin-bottom: 1.5rem;
}
.elderly-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink) 0%, #d070e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.elderly-hero-sub {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.elderly-hero-sub strong {
  color: var(--blue-deep);
  font-weight: 700;
}
.elderly-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.elderly-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.elderly-hero-visual img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-premium);
  animation: fadeUp 0.8s var(--ease-premium) 0.15s both;
}
.elderly-hero-visual::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, rgba(153,51,255,0.25), rgba(184,230,92,0.2));
  z-index: -1;
  filter: blur(20px);
}
.elderly-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(47,58,77,0.08);
}
.elderly-hero-stat {
  text-align: left;
}
.elderly-hero-stat-val {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--blue-deep);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.elderly-hero-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .elderly-hero { min-height: auto; padding-top: 5rem; }
  .elderly-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .elderly-hero-content { max-width: 100%; margin: 0 auto; }
  .elderly-hero-buttons { justify-content: center; }
  .elderly-hero-visual { order: -1; margin-bottom: 1rem; }
  .elderly-hero-visual img { max-width: 360px; }
  .elderly-hero-stats { justify-content: center; }
  .elderly-hero-stat { text-align: center; }
}

/* ── PAIN POINTS ── */
.pain-section {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: linear-gradient(180deg, var(--white) 0%, #f8f6fc 100%);
  position: relative;
}
.pain-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-separator);
}
.pain-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.pain-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  border: var(--border-subtle);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all 0.4s var(--ease-premium);
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--mint) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-premium);
}
.pain-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium-hover);
  border-color: rgba(153,51,255,0.35);
}
.pain-card:hover::before {
  transform: scaleX(1);
}
.pain-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-mint-pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.25rem;
  transition: transform 0.4s var(--ease-bounce);
}
.pain-card:hover .pain-icon {
  transform: scale(1.1) rotate(-5deg);
}
.pain-card h3 {
  font-size: var(--text-md);
  font-weight: 800;
  color: var(--blue-deep);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.pain-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .pain-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ── FEATURES ── */
.elderly-features {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--gradient-blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.elderly-features::before {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,230,92,0.15) 0%, transparent 55%);
  border-radius: 50%;
  animation: floatOrb 9s ease-in-out infinite;
}
.elderly-features::after {
  content: '';
  position: absolute;
  bottom: -250px; left: -180px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(153,51,255,0.1) 0%, transparent 55%);
  border-radius: 50%;
  animation: floatOrb 12s ease-in-out infinite reverse;
}
.elderly-features .section-header h2 { color: var(--white); }
.elderly-features .section-header h2 em { color: var(--mint); }
.elderly-features .section-header p { color: rgba(255,255,255,0.75); }
.elderly-features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) {
  .elderly-features .features-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
@media (max-width: 500px) {
  .elderly-features .features-grid { grid-template-columns: 1fr; }
}
.elderly-features .card--glass {
  background: rgba(255,255,255,0.95);
  color: var(--text-dark);
}
.elderly-features .card--feature h3 { color: var(--blue-deep); }
.elderly-features .card--feature p { color: var(--text-muted); }

/* ── HOW IT WORKS ── */
.how-section {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: linear-gradient(180deg, var(--white) 0%, #f8f9fc 100%);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-separator);
}
.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.how-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  isolation: isolate;
  overflow: visible;
}
/* Glow respirando (breathing) detras del reloj */
.how-visual::before {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(153,51,255,0.45) 0%,
    rgba(184,230,92,0.22) 25%,
    rgba(243,164,255,0.15) 45%,
    transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
  animation: howWatchBreathe 4s ease-in-out infinite;
}
.how-visual::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.55) 0%, transparent 50%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
/* PPT slide 27: dejar SOLO el reloj y ponerlo más grande, sacar los celulares */
.how-watch {
  position: relative;
  z-index: 1;
  width: 460px;
  max-width: 92%;
  height: auto;
  filter:
    drop-shadow(0 32px 64px rgba(47,58,77,0.42))
    drop-shadow(0 0 38px rgba(153,51,255,0.38));
  transition: transform 0.5s var(--ease-premium);
  animation: howWatchFloat 5s ease-in-out infinite;
}
.how-visual:hover .how-watch {
  transform: scale(1.04);
}
.how-phones { display: none; }
@keyframes howWatchBreathe {
  0%, 100% { transform: scale(0.92); opacity: 0.75; }
  50% { transform: scale(1.10); opacity: 1; }
}
@keyframes howWatchFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .how-visual::before, .how-watch { animation: none; }
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.how-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-premium);
}
.how-step:hover {
  background: rgba(47,58,77,0.03);
  transform: translateX(4px);
}
.how-step-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--gradient-blue);
  color: var(--mint);
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(47,58,77,0.25);
  transition: transform 0.3s var(--ease-bounce);
}
.how-step:hover .how-step-num {
  transform: scale(1.08);
}
.how-step-text h3 {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.how-step-text p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .how-inner { grid-template-columns: 1fr; }
  .how-visual { min-height: 380px; order: -1; }
  .how-watch { width: 320px; }
  .how-phones { width: 220px; right: -20px; }
}

/* ── PRICING (PPT slide 31: layout exacto a Plan Joven) ── */
.pricing {
  padding: 6rem var(--section-pad-x) 5rem;
  background: var(--gradient-blue);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,230,92,0.12) 0%, transparent 55%);
  border-radius: 50%;
  animation: floatOrb 9s ease-in-out infinite;
}
.pricing::after {
  content: '';
  position: absolute;
  bottom: -180px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(153,51,255,0.08) 0%, transparent 55%);
  border-radius: 50%;
  animation: floatOrb 11s ease-in-out infinite reverse;
}
.pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pricing-pill {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(184,230,92,0.16);
  color: var(--mint);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.pricing-header h2 {
  font-size: var(--text-4xl);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.pricing-header p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-md);
  max-width: 540px;
  margin: 0 auto;
}
.pricing-grid {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  justify-items: center;
}
.pricing-card {
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  padding: 2rem 1.8rem 1.8rem;
  background: rgba(255,255,255,0.97);
  color: var(--text-dark);
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 12px 24px rgba(0,0,0,0.08), 0 24px 48px rgba(0,0,0,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(255,255,255,0.2);
}
@media (min-width: 901px) {
  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06), 0 20px 40px rgba(0,0,0,0.12), 0 32px 64px rgba(0,0,0,0.12);
  }
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.45rem 1.2rem;
  background: linear-gradient(135deg, var(--pink) 0%, #e879f9 100%);
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(243,164,255,0.4);
  white-space: nowrap;
}
.pricing-card h3 {
  position: relative;
  display: block;
  text-align: center;
  margin: 0 0 1.5rem 0;
  padding: 0 0 0.85rem 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-deep);
  background: transparent;
  border: none;
  border-radius: 0;
  height: auto;
}
.pricing-card h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--mint, #B8E65C) 0%, #7de8b0 100%);
}
.pricing-card--mio h3,
.pricing-card--comodato h3 {
  background: transparent;
  border: none;
  color: var(--blue-deep);
}
.pricing-body {
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.04) 100%);
  border-radius: 16px;
  padding: 1.5rem;
  flex: 1;
  border: 1px solid rgba(0,0,0,0.04);
}
.pricing-lead {
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.pricing-lead strong { color: var(--blue-deep); font-weight: 800; }
.pricing-price {
  text-align: center;
  padding: 1.1rem 1rem 1.15rem;
  margin: 1.25rem 0 1.25rem;
  background: linear-gradient(135deg, rgba(166,241,202,0.30) 0%, rgba(166,241,202,0.14) 100%);
  border-radius: 14px;
  border: 1px solid rgba(166,241,202,0.45);
}
.pricing-price-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  margin-bottom: 0.45rem;
}
.pricing-price-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing-price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.3rem;
}
.pricing-shipping { margin-top: 0.25rem; padding-bottom: 0.5rem; }
.pricing-shipping strong { color: var(--mint, #B8E65C); font-weight: 800; }
/* Features list */
.pricing-features {
  list-style: none;
  padding: 1.1rem 0 0;
  margin: 1.1rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.pricing-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.45;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.45em;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--pink, #9933FF);
  border-bottom: 2px solid var(--pink, #9933FF);
  transform: rotate(45deg);
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin: 0.6rem 0;
  padding: 0.3rem 0;
}
.pricing-label { font-weight: 600; color: var(--text-muted); font-size: 0.9rem; }
.pricing-value { font-weight: 800; color: var(--blue-deep); font-size: 0.95rem; }
.pricing-sub { color: var(--text-muted); font-weight: 600; font-size: 0.85rem; }
.pricing-sub strong { color: var(--blue-deep); }
.pricing-dashes { align-items: center; min-height: 1.8em; }
.dash { height: 1px; border-radius: 0.5px; }
.dash--gray { width: 100px; background: #b8c4d0; }
.dash--blue { width: 55px; background: var(--blue-deep); }
.pricing-sep {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
  margin: 1.2rem 0;
}
.pricing-cta {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  height: 54px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  box-sizing: border-box;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
}
.pricing-card--mio .pricing-cta {
  background: linear-gradient(135deg, var(--mint-btn) 0%, #7de8b0 100%);
  border: 2px solid var(--blue-deep);
  color: var(--blue-deep);
}
.pricing-card--mio .pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(166, 241, 202, 0.5);
}
.pricing-card--comodato .pricing-cta {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #1a2db8 100%);
  border: 2px solid var(--blue-deep);
  color: #fff;
}
.pricing-card--comodato .pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10, 29, 158, 0.4);
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 450px; }
}
@media (max-width: 500px) {
  .elderly-hero { min-height: auto; }
  .elderly-hero-visual img { max-width: 100%; }
  .elderly-hero-stats { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
  .pain-grid { margin-left: auto; margin-right: auto; }
  .pricing-card-name { font-size: var(--text-lg); }
  .pricing-badge { white-space: nowrap; }
  .pricing-grid { max-width: 100%; }
  .how-visual { min-height: 300px; }
  .how-watch { width: 240px; }
  .how-phones { width: 180px; right: -10px; }
}

/* ── FAQ ── */
.faq-section {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: linear-gradient(180deg, var(--white) 0%, #f8f6fc 100%);
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-separator);
}
.faq-list {
  max-width: var(--max-width-xs);
  margin: 0 auto;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: calc(var(--section-pad-y) * 1.3) var(--section-pad-x);
  background: var(--gradient-blue);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 450px;
  background: radial-gradient(ellipse, rgba(184,230,92,0.14) 0%, transparent 55%);
  border-radius: 50%;
}
.final-cta::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(153,51,255,0.08) 0%, transparent 55%);
  border-radius: 50%;
}
.final-cta-inner {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-size: var(--text-4xl);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}
.final-cta p {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.final-cta .btn--primary {
  font-size: var(--text-md);
  padding: 1.1rem 2.75rem;
}

/* ── WATCH MAYORES (PPT slide 27-30: face uniforme + bullets violetas) ── */
.watch-mayores-section {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: linear-gradient(180deg, #faf5fd 0%, #f0e6ff 50%, #faf5fd 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.watch-mayores-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(153,51,255,0.14) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.watch-mayores-section::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(184,230,92,0.16) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.watch-mayores-section .section-header { position: relative; z-index: 1; }

/* Stage protagonico con presencia (cliente: 'mas power') */
.watch-mayores-stage {
  position: relative;
  z-index: 1;
  margin: 3rem auto 0;
  max-width: 600px;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
/* Disco de fondo dramatico (gradient conico animado) */
.watch-mayores-stage::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(153,51,255,0.55) 0deg,
    rgba(184,230,92,0.42) 90deg,
    rgba(243,164,255,0.50) 180deg,
    rgba(125,232,176,0.40) 270deg,
    rgba(153,51,255,0.55) 360deg
  );
  filter: blur(60px);
  opacity: 0.85;
  z-index: -2;
  animation: watchConicSpin 14s linear infinite;
}
/* Halo brillante radial (3 capas) */
.watch-mayores-glow {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.6) 0%, transparent 18%),
    radial-gradient(ellipse at 50% 50%, rgba(153,51,255,0.55) 0%, rgba(153,51,255,0.25) 22%, transparent 50%),
    radial-gradient(ellipse at 35% 25%, rgba(184,230,92,0.45) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 75%, rgba(243,164,255,0.40) 0%, transparent 45%);
  filter: blur(40px);
  z-index: -1;
  animation: watchGlowPulseEld 5s ease-in-out infinite;
}
/* Anillos concentricos sutiles (deco premium) */
.watch-mayores-stage::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 2px dashed rgba(153,51,255,0.25);
  z-index: -1;
  animation: watchRingSpin 30s linear infinite;
  pointer-events: none;
}
.watch-mayores-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  height: auto;
  filter:
    drop-shadow(0 36px 72px rgba(47,58,77,0.50))
    drop-shadow(0 0 48px rgba(153,51,255,0.45))
    drop-shadow(0 0 24px rgba(184,230,92,0.30));
  animation: watchFloatEld 5s ease-in-out infinite;
}
@keyframes watchGlowPulseEld {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.10); }
}
@keyframes watchFloatEld {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}
@keyframes watchConicSpin {
  to { transform: rotate(360deg); }
}
@keyframes watchRingSpin {
  to { transform: rotate(-360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .watch-mayores-glow,
  .watch-mayores-img,
  .watch-mayores-stage::after,
  .watch-mayores-stage::before { animation: none; }
}

.watch-mayores-features {
  position: relative;
  z-index: 1;
  margin: 2.5rem auto 0;
  max-width: 560px;
  text-align: left;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(153,51,255,0.10);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
}
.watch-mayores-features .list-violet li {
  font-size: var(--text-md);
  color: var(--blue-deep);
  font-weight: 500;
}

@media (max-width: 600px) {
  .watch-mayores-stage { max-width: 320px; min-height: 340px; }
  .watch-mayores-stage::before { width: 280px; height: 280px; }
  .watch-mayores-img { max-width: 280px; }
  .watch-mayores-features { padding: 1.25rem 1.5rem; margin-top: 2rem; }
  .watch-mayores-features .list-violet li { font-size: 0.95rem; }
}

/* PLATFORM MAYORES (PPT slide 30: nueva seccion debajo del watch) */
.platform-mayores {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--white);
  position: relative;
}
.platform-mayores::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: var(--gradient-separator, linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent));
}
.platform-mayores-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.platform-mayores-content h2 {
  font-size: var(--text-4xl);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--blue-deep);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.platform-mayores-content h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink) 0%, #d070e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.platform-mayores-content p {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.platform-mayores-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 24px 48px rgba(47,58,77,0.18));
}
@media (max-width: 900px) {
  .platform-mayores-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .platform-mayores-visual { order: -1; max-width: 540px; margin: 0 auto; }
}
