/* ═══════════════════════════════
   INDEX.CSS — HIMANABI
   Versión consolidada y limpia
═══════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  /* Escala oscura */
  --gold: #C8922A;
  --gold-lt: #E8B84B;
  --gold-pale: #F5E8CF;
  --bg-dark: #2A1505;
  --bg-darker: #3D2008;
  --bg-mid: #5C3610;
  --bg-card: #3D2008;
  /* Escala clara */
  --cream: #FDF8F0;
  --cream-2: #F9F0E1;
  --ink: #1A0D03;
  --text-body: #4A2E10;
  --text-main: #F5E8CF; /* Este es el color original que tenían los títulos (gold-pale) */
  /* Fuentes */
  --font-display: Arial, Calibri, sans-serif;
  --font-body: Arial, Calibri, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-body);
  overflow-x: hidden;
}

/* ═══════════════════════════════
   CURSOR
═══════════════════════════════ */
.cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s; opacity: .6;
}
body.ch .cursor { width: 20px; height: 20px; background: var(--gold-lt); }
body.ch .cursor-ring { width: 52px; height: 52px; opacity: .3; }

/* ═══════════════════════════════
   PAGE INTRO OVERLAY
═══════════════════════════════ */
.page-intro {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.page-intro-text {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,4rem);
  color: var(--gold); letter-spacing: 12px;
  font-weight: 300; opacity: 0;
  animation: pi-in .6s .3s forwards;
}
@keyframes pi-in { from { opacity:0; transform:scale(.9) } to { opacity:1; transform:scale(1) } }
.page-intro.done { animation: pi-out .8s 1.2s forwards; }
@keyframes pi-out { 0% { opacity:1 } 100% { opacity:0; transform:scale(1.05) } }

/* ═══════════════════════════════
   IDX-HERO (Sección principal)
═══════════════════════════════ */
.idx-hero {
  position: relative;
  background: var(--bg-dark);
  display: flex; align-items: stretch;
  overflow: hidden; padding: 40px 0;
}
.idx-hero-split {
  display: grid; grid-template-columns: 58% 42%;
  width: 100%; max-width: 1400px; margin: 0 auto;
}

/* Columna izquierda */
.idx-hero-content {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 20px 64px 20px 72px;
}
.idx-hero-h1 {
  font-family: Arial, Calibri, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -1px; margin-bottom: 20px;
}
.idx-hero-h1 .idx-line {
  display: block; color: var(--text-main);
  animation: idx-slide-up 0.8s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}
.idx-hero-h1 .idx-line:nth-child(1) { animation-delay: 0.2s; }
.idx-hero-h1 .idx-line:nth-child(2) { animation-delay: 0.4s; }
.idx-line-gold {
  color: #e6b34e !important;
  font-size: 0.55em !important;
  letter-spacing: 2px !important;
  margin-top: 5px; display: block;
}
@keyframes idx-slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.idx-hero-tagline {
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  font-weight: 400; letter-spacing: 5px;
  color: rgba(245,232,207,.55);
  line-height: 1.8; margin-bottom: 28px;
  animation: idx-fade-in 1s 0.6s both;
}
@keyframes idx-fade-in { from { opacity:0 } to { opacity:1 } }

.idx-hero-divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin-bottom: 36px;
  animation: idx-expand-line 0.8s 0.8s both;
}
@keyframes idx-expand-line { from { width:0 } to { width:60px } }

.idx-hero-stats {
  display: flex; flex-direction: row;
  align-items: flex-start; gap: 40px;
  margin-bottom: 44px;
  animation: idx-fade-in 1s 1s both;
}
.idx-hero-stat-item { display: flex; flex-direction: column; gap: 4px; }
.idx-hero-stat-num {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900; color: var(--gold-lt);
  line-height: 1; letter-spacing: -1px;
}
.idx-hero-stat-lbl {
  font-size: 1.1rem; font-weight: 400;
  color: var(--text-main); letter-spacing: 0.5px;
}
.idx-hero-buttons {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; animation: idx-fade-in 1s 1.2s both;
}
.idx-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.idx-btn svg { width:16px; height:16px; stroke:currentColor; stroke-width:2; fill:none; transition:transform .3s }
.idx-btn:hover svg { transform: translateX(5px); }
.idx-btn-gold { background: var(--gold); color: var(--bg-dark); }
.idx-btn-gold:hover {
  background: var(--gold-lt); transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200,146,42,.4);
}
.idx-btn-ghost { background: transparent; color: rgba(245,232,207,.7); padding: 16px 8px; }
.idx-btn-ghost:hover { color: var(--gold-lt); }

/* Columna derecha: Logo búho */
.idx-hero-visual {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px; overflow: hidden;
}
.idx-owl-glow-ring {
  position: absolute; width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,.25) 0%, transparent 65%);
  animation: idx-glow-breathe 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes idx-glow-breathe {
  0%, 100% { transform: scale(1); opacity: .7; }
  50%      { transform: scale(1.15); opacity: 1; }
}
.idx-owl-hero-img {
  position: relative; z-index: 2;
  width: clamp(220px, 22vw, 320px); height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(200,146,42,.5));
  animation: idx-owl-float 5s ease-in-out infinite;
}
@keyframes idx-owl-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.idx-hero-footer-text {
  position: absolute; bottom: 50px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem; letter-spacing: 6px;
  color: rgba(245,232,207,.35); text-transform: uppercase;
  white-space: nowrap; animation: idx-fade-in 1s 1.5s both;
}

/* ═══════════════════════════════
   TICKER
═══════════════════════════════ */
.ticker-section {
  background: var(--gold); padding: 16px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex; width: max-content;
  animation: tgo 24s linear infinite;
}
.ticker-item {
  font-size: .68rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--bg-dark);
  font-weight: 600; padding: 0 40px;
  display: flex; align-items: center; gap: 24px;
  white-space: nowrap;
}
.ticker-item::after { content: '◆'; font-size: .4rem; opacity: .5; }
@keyframes tgo { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ═══════════════════════════════
   SECTION BASE
═══════════════════════════════ */
.section { padding: 72px 0; }
.section-inner { max-width: 1240px; margin: 0 auto; padding: 0 60px; }
.eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: .6rem; letter-spacing: 6px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.eyebrow::after { content: ''; width: 48px; height: 1px; background: var(--gold); }

/* ═══════════════════════════════
   ABOUT (fondo claro)
═══════════════════════════════ */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-h2 {
  font-family: Arial, Calibri, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; line-height: 1.1;
  color: var(--bg-dark); margin-bottom: 36px;
}
.about-h2 em { font-style: normal; color: var(--gold); }
.about-body {
  font-size: .97rem; line-height: 2.0;
  color: var(--text-body); font-weight: 300;
  margin-bottom: 36px;
}
.about-body strong { color: var(--bg-dark); font-weight: 500; }
.about-card {
  background: var(--bg-darker); padding: 64px 52px;
  position: relative; overflow: hidden;
  transition: transform .4s;
}
.about-card::before {
  content: '"'; position: absolute; top: -20px; left: 40px;
  font-family: var(--font-display); font-size: 14rem;
  font-weight: 700; color: rgba(200,146,42,.08);
  line-height: 1; pointer-events: none; user-select: none;
}
.about-card-corner { position: absolute; width: 32px; height: 32px; transition: width .3s, height .3s; }
.about-card-corner.tl { top: 12px; left: 12px; border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.about-card-corner.br { bottom: 12px; right: 12px; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.about-card:hover .about-card-corner { width: 48px; height: 48px; }
.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.8; color: var(--gold-pale);
  font-weight: 300; position: relative; z-index: 1;
  margin-bottom: 28px;
}
.about-author { font-size: .62rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ═══════════════════════════════
   SERVICES (fondo oscuro)
═══════════════════════════════ */

.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 48px;
}

.services { background: var(--bg-dark); }

.services-header .eyebrow { color: rgba(232,184,74,.7); }
.services-header .eyebrow::after { background: rgba(232,184,74,.4); }
.services-h2 {
  text-align: center;
  font-family: Arial, Calibri, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; color: var(--gold-pale); line-height: 1.1;
}
.services-h2 em { font-style: normal; color: var(--gold-lt); }
.services-sub { font-size: .9rem;  color: rgba(245,232,207,.45);  }


.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-card {
  background: rgba(200,146,42,.03); border: 1px solid rgba(200,146,42,.15);
  border-radius: 8px; padding: 18px 16px;
  position: relative; overflow: hidden;
  transition: all .3s; cursor: default;
  display: flex; gap: 12px; align-items: flex-start;
}
.svc-card:hover {
  background: rgba(200,146,42,.08); border-color: rgba(200,146,42,.4);
  transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.svc-icon-wrap {
  flex-shrink: 0; width: 36px; height: 36px;
  border: 1px solid rgba(200,146,42,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, transform .4s;
  font-size: 0.9rem; color: var(--gold);
  background: rgba(200,146,42,.05);
}
.svc-card:hover .svc-icon-wrap { border-color: var(--gold); transform: scale(1.05); background: rgba(200,146,42,.15); }
.svc-content { display: flex; flex-direction: column; }
.svc-title {
  font-family: var(--font-body); font-size: 1.05rem;
  font-weight: 600; color: var(--text-main);
  margin-bottom: 6px; line-height: 1.3;
  transition: color .3s;
}
.svc-card:hover .svc-title { color: var(--gold-lt); }
.svc-body { font-size: 0.85rem; line-height: 1.6; color: rgba(245,232,207,.75); font-weight: 300; }
.services-cta-row { margin-top: 24px; text-align: center; }

/* ═══════════════════════════════
   BUTTONS (globales)
═══════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 40px; background: var(--gold);
  color: var(--bg-dark); font-weight: 600;
  font-size: .75rem; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  position: relative; overflow: hidden; transition: all .3s;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-lt);
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform .3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  font-size: .72rem; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(245,232,207,.5);
  text-decoration: none; display: flex;
  align-items: center; gap: 8px; transition: color .3s;
}
.btn-ghost:hover { color: var(--gold-lt); }

/* ═══════════════════════════════
   PROCESS (fondo claro)
═══════════════════════════════ */
.process { background: var(--cream-2); }
.process-h2 {
  text-align: center;
  font-family: Arial, Calibri, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; color: var(--bg-dark);
  
}
.process-h2 em { font-style: normal; color: var(--gold); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; gap: 0;
}
.process-steps::before {
  content: ''; position: absolute; top: 36px;
  left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; padding: 0 32px; text-align: center; }
.process-step:first-child { padding-left: 0; }
.process-step:last-child { padding-right: 0; }
.process-dot {
  width: 72px; height: 72px;
  border: 1px solid var(--gold); border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 600; color: var(--gold);
  transition: background .3s, transform .3s, color .3s;
}
.process-step:hover .process-dot {
  background: var(--gold); color: var(--bg-dark); transform: scale(1.1);
}
.process-step-title {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 400; color: var(--bg-dark); margin-bottom: 10px;
}
.process-step-body {
  font-size: .82rem; line-height: 1.8;
  color: var(--text-body); font-weight: 300; opacity: .75;
}

/* ═══════════════════════════════
   STATS (fondo oscuro)
═══════════════════════════════ */
.stats {
  background: var(--bg-darker); padding: 60px 0;
  position: relative; overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,146,42,.08), transparent);
  pointer-events: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; max-width: 900px; margin: 0 auto;
}
.stat-item {
  text-align: center; padding: 36px 32px;
  border-right: 1px solid rgba(200,146,42,.1);
  position: relative; z-index: 1; transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(200,146,42,.04); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300; color: var(--gold-lt);
  line-height: 1; display: block; margin-bottom: 12px;
  transition: text-shadow .3s;
}
.stat-item:hover .stat-num { text-shadow: 0 0 30px rgba(232,184,74,.4); }
.stat-label { font-size: .6rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(245,232,207,.3); }
.stat-plus { font-family: var(--font-body); font-size: 2rem; color: var(--gold); vertical-align: super; line-height: 0; }

/* ═══════════════════════════════
   TESTIMONIAL CAROUSEL (fondo claro)
═══════════════════════════════ */
.testimonial { background: var(--cream); padding: 72px 0; overflow: hidden; }
.testimonial-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.testimonial-marquee { position: relative; padding: 20px 0; }
.testimonial-track {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none;
  padding: 0 20px;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  width: 100%; flex-shrink: 0; scroll-snap-align: center;
  background: transparent; border: none;
  padding: 20px 30px; transition: transform 0.3s;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; position: relative;
}
.testimonial-card:hover { transform: translateY(-5px); }
.testimonial-mark-sm {
  font-family: var(--font-display); font-size: 5rem;
  color: var(--gold-pale); line-height: 0.8;
  margin-bottom: 16px; display: inline-block;
}
.testimonial-text {
  font-size: 1.1rem; line-height: 1.8;
  color: var(--text-body); flex-grow: 1;
  margin-bottom: 32px; position: relative; z-index: 1;
  max-width: 850px;
}
.testimonial-text strong { color: var(--gold); font-weight: 600; }
.testimonial-author-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; width: 100%;
}
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(200,146,42,.1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: var(--gold);
  font-size: 1.2rem; flex-shrink: 0;
}
.testimonial-info { display: flex; flex-direction: column; }
.testimonial-name { font-weight: 600; color: var(--bg-dark); font-size: 0.95rem; }
.testimonial-role { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }

/* ═══════════════════════════════
   CTA (fondo oscuro)
═══════════════════════════════ */
.cta-section {
  background: var(--bg-dark); padding: 90px 0;
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 600px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,146,42,.4), transparent);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(-25deg);
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute;
  width: 400px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,146,42,.25), transparent);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(25deg);
  pointer-events: none;
}
.cta-eyebrow { justify-content: center; margin-bottom: 28px; }
.cta-eyebrow::after { display: none; }
.cta-h2 {
  font-family: Arial, Calibri, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; color: var(--gold-pale);
  line-height: 1.05; margin-bottom: 28px; letter-spacing: -1px;
}
.cta-h2 em { font-style: normal; color: var(--gold-lt); }
.cta-body {
  font-size: 1rem; line-height: 2;
  color: rgba(245,232,207,.5); max-width: 520px;
  margin: 0 auto 56px;
}
.cta-body strong { color: var(--gold-pale); font-weight: 500; }
.cta-buttons {
  display: flex; justify-content: center; gap: 20px;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 40px;
  border: 1px solid rgba(200,146,42,.4);
  color: var(--gold-pale); font-size: .75rem;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; transition: all .3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-lt); transform: translateY(-3px); }
.btn-outline svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform .3s; }
.btn-outline:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .1s }
.rd2 { transition-delay: .22s }
.rd3 { transition-delay: .34s }
.rd4 { transition-delay: .46s }
.rd5 { transition-delay: .58s }
.rd6 { transition-delay: .70s }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 960px) {
  .section-inner { padding: 0 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-header { grid-template-columns: 1fr; gap: 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .process-step { padding: 0; text-align: left; display: flex; align-items: flex-start; gap: 24px; }
  .process-dot { flex-shrink: 0; margin: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-container { padding: 0 28px; }
  .testimonial-card { width: 320px; }
}

@media (max-width: 900px) {
  .idx-hero-split { grid-template-columns: 1fr; min-height: auto; }
  .idx-hero-content { padding: 50px 28px 40px; text-align: center; align-items: center; }
  .idx-hero-divider { margin-left: auto; margin-right: auto; }
  .idx-hero-stats { justify-content: center; width: 100%; }
  .idx-hero-stat-item { align-items: center; }
  .idx-hero-buttons { justify-content: center; }
  .idx-hero-visual { padding: 40px 20px 60px; min-height: 400px; }
  .idx-owl-glow-ring { width: 280px; height: 280px; }
  .idx-hero-footer-text { font-size: 0.55rem; letter-spacing: 4px; bottom: 30px; }
}

@media (max-width: 500px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(200,146,42,.08); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .testimonial-card { width: 100%; }
  .idx-hero-tagline { font-size: 0.75rem; letter-spacing: 3px; }
  .idx-hero-stats { flex-direction: column; gap: 24px; align-items: center; }
  .idx-hero-buttons { flex-direction: column; width: 100%; }
  .idx-btn { width: 100%; justify-content: center; }

  /* Carrusel horizontal suave y limpio para móvil */
  .testimonial { padding: 40px 0; background: var(--cream); }
  .testimonial-track {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 20px 20px;
  }
  .testimonial-card {
    width: 85vw !important; /* Permite ver el borde del siguiente comentario */
    flex-shrink: 0;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    box-shadow: none;
    padding: 28px 20px;
    border: none;
  }
  .testimonial-mark-sm {
    font-size: 3rem;
    color: var(--gold-lt);
    opacity: 0.3;
    margin-bottom: 5px;
  }
  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-body);
  }
}