/* ============================================
   shop.css — Extensión de estilos AmbArt Candles
   Complementa styles.css sin modificarlo
   ============================================ */

/* ── Fuentes (si no están cargadas) ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ============================================
   Navegación fija
   ============================================ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(192,100,120,0.10);
  box-shadow: 0 2px 20px rgba(192,100,120,0.07);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-brand svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0 auto;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--rose); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-wa {
  flex-shrink: 0;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  background: #25D366 !important;
  color: white !important;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(37,211,102,0.30);
}

.nav-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text);
  margin-left: auto;
}

.nav-burger svg { display: block; }

/* Menú móvil */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid rgba(192,100,120,0.10);
  padding: 16px 24px 20px;
  gap: 4px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--text-soft);
  padding: 10px 0;
  border-bottom: 1px solid rgba(192,100,120,0.08);
  display: block;
}

.nav-mobile a:last-child { border-bottom: none; }

/* Espacio para la nav fija */
.nav-offset { padding-top: 68px; }

/* ============================================
   Hero — Split (imagen + texto)
   ============================================ */

.hero-split {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  background: var(--pink-pale);
  overflow: hidden;
  position: relative;
}

.hero-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(253,232,238,0.76) 0%, rgba(253,232,238,0.46) 34%, rgba(253,232,238,0.12) 58%, transparent 82%),
    linear-gradient(180deg, transparent 0%, rgba(253,232,238,0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-split-content {
  width: min(680px, 100%);
  padding: 78px 48px 78px 60px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--pink-soft);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero-split h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-split h1 em {
  font-style: italic;
  color: var(--rose-dark);
}

.hero-split p {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-split-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-split-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

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

.hero-split-img::before { content: none; }

/* ============================================
   Trust Bar
   ============================================ */

.trust-bar-full {
  background: white;
  border-top: 1px solid rgba(192,100,120,0.08);
  border-bottom: 1px solid rgba(192,100,120,0.08);
  padding: 22px 24px;
}

.trust-bar-full .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item-full {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-item-full strong {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: block;
  letter-spacing: 0.02em;
}

.trust-item-full span {
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.4;
}

/* ============================================
   Page Hero (páginas internas)
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #F8D4DC 0%, var(--pink-pale) 100%);
  padding: 80px 24px 64px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
}

.page-hero h1 em { font-style: italic; color: var(--rose-dark); }

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto;
}

.payment-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 24px;
  background: rgba(255,255,255,0.72);
  border-top: 1px solid rgba(192,100,120,0.10);
  border-bottom: 1px solid rgba(192,100,120,0.10);
  text-align: center;
}

.payment-strip strong {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2E1F0E;
}

.payment-strip span {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ============================================
   Secciones generales
   ============================================ */

.sec {
  padding: 90px 24px;
}

.sec-white { background: white; }
.sec-pink  { background: var(--pink-pale); }
.sec-rose  { background: linear-gradient(180deg, var(--pink-pale) 0%, #F8D4DC 100%); }

.sec-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.sec-head .eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 12px;
}

.sec-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 14px;
}

.sec-head h2 em { font-style: italic; color: var(--rose); }

.sec-head p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0;
}

.ornament::before,
.ornament::after {
  content: '';
  height: 1px;
  width: 44px;
  background: linear-gradient(90deg, transparent, var(--rose-light), transparent);
}

.ornament span { color: var(--rose-light); font-size: 1rem; }

/* ============================================
   Product Cards + Slider
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(192,100,120,0.10);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Slider */
.slider-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--pink-pale);
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.slider-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.90);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
  color: var(--rose-dark);
}

.slider-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.08);
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.slider-dot.active {
  background: white;
  transform: scale(1.3);
}

/* Badge de envío */
.shipping-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 2;
}

.badge-fast {
  background: #d4edda;
  color: #1a7a35;
}

.badge-order {
  background: var(--gold-pale);
  color: #7a5a1a;
}

/* Card body */
.card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.card-desc {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
  flex-grow: 1;
}

.card-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}

.price-sale {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
}

.price-regular {
  font-size: 0.95rem;
  color: var(--text-mute);
  text-decoration: line-through;
}

.card-buy {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  background: transparent;
  color: #2E1F0E;
  border: 1.5px solid #2E1F0E;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: none;
  margin-top: 8px;
}

.card-buy:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.42);
  box-shadow: 0 8px 18px rgba(46,31,14,0.12);
}

.card-secure {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-mute);
  margin-top: 4px;
}

/* ============================================
   Preview cards (index — cursos)
   ============================================ */

.course-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto 44px;
}

.course-preview-card {
  background: rgba(255,255,255,0.34);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid rgba(192,100,120,0.18);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.course-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(46,31,14,0.08);
}

.course-preview-card.featured {
  border-color: var(--rose);
  background: rgba(255,255,255,0.48);
}

.cp-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}

.cp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--text);
}

.cp-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
}

.cp-price sup {
  font-size: 1rem;
  font-weight: 400;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

/* ============================================
   Cursos — tarjetas completas
   ============================================ */

.courses-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.course-full-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(192,100,120,0.12);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s, box-shadow 0.35s;
}

.course-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.course-full-card.featured {
  border: 2px solid var(--rose);
  background: linear-gradient(180deg,#fff5f7,#fde8ee);
  transform: scale(1.02);
}

.course-full-card.featured:hover {
  transform: translateY(-6px) scale(1.02);
}

.course-badge {
  position: absolute;
  top: -14px; right: 24px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(192,100,120,0.40);
}

.cf-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 8px;
}

.cf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
}

.cf-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--pink-soft);
}

.cf-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
}

.cf-price-old {
  font-size: 1.2rem;
  color: var(--text-mute);
  text-decoration: line-through;
}

.cf-currency {
  font-size: 0.85rem;
  color: var(--text-soft);
  letter-spacing: 0.12em;
}

.cf-features {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.cf-features li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 14.5px;
  color: var(--text-soft);
  border-bottom: 1px dashed rgba(192,100,120,0.12);
  line-height: 1.5;
}

.cf-features li:last-child { border-bottom: none; }

.cf-features li::before {
  content: '✦';
  position: absolute;
  left: 4px;
  color: var(--rose-light);
  font-size: 11px;
  top: 9px;
}

.cf-features li.tech-item { font-size: 14.5px; color: var(--text); font-weight: 400; }

.cf-btn {
  width: 100%;
  text-align: center;
  padding: 16px;
  background: transparent;
  color: #2E1F0E;
  border: 1.5px solid #2E1F0E;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: none;
  display: block;
}

.cf-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.42);
  box-shadow: 0 8px 18px rgba(46,31,14,0.12);
}

.courses-note {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--text-soft);
}

/* ============================================
   Calendario (booking)
   ============================================ */

.booking-sec { background: var(--pink-pale); }

.cal-wrap {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(192,100,120,0.12);
  position: relative;
}

.cal-wrap iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  border-radius: var(--radius-md);
  display: block;
  pointer-events: none;
  user-select: none;
}

.cal-lock {
  position: absolute;
  inset: 14px;
  border-radius: var(--radius-md);
  z-index: 2;
  cursor: not-allowed;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
}

.cal-lock-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--pink-soft);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  box-shadow: var(--shadow-md);
}

.cal-lock-pill svg { color: var(--rose); }

.booking-cta {
  text-align: center;
  margin: 0 auto;
  max-width: 520px;
  padding: 36px;
  border: 1px solid rgba(192,100,120,0.18);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.36);
}

.booking-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-mute);
  font-style: italic;
}

/* ============================================
   Testimonios / Reviews
   ============================================ */

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: white;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonio-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonio-item img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonios-cursos-sec {
  background: linear-gradient(180deg, var(--pink-pale) 0%, #fff7fa 100%);
}

.creaciones-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 88px;
}

.creacion-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(46,31,14,0.10);
  background: white;
  border: 1px solid rgba(192,100,120,0.10);
}

.creacion-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.testimonios-head {
  margin-bottom: 54px;
}

.testimonios-cursos-grid {
  max-width: 1040px;
  gap: 24px;
  align-items: start;
}

.testimonios-cursos-grid .testimonio-item {
  background: white;
  border: 1px solid rgba(192,100,120,0.10);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 28px rgba(46,31,14,0.08);
}

.testimonios-cursos-grid .testimonio-item img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: top center;
  background: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.review-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: white;
  border: 1px solid rgba(192,100,120,0.10);
  padding: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
}

/* ============================================
   About (sobre mí)
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid var(--rose-light);
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0.4;
  transform: translate(14px, 14px);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 14px;
}

.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 22px;
}

.about-title em { font-style: italic; color: var(--rose); }

.about-text {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--rose);
  margin: 20px 0 28px;
}

.stats-bar {
  display: flex;
  gap: 36px;
  padding: 20px 0;
  border-top: 1px solid var(--pink-soft);
  border-bottom: 1px solid var(--pink-soft);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.stat-item strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--rose);
  font-weight: 500;
  display: block;
  line-height: 1;
}

.stat-item span {
  font-size: 12px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: linear-gradient(180deg, #FFF7FA 0%, #FDE8EE 100%);
  color: #2E1F0E;
  padding: 56px 24px 36px;
  border-top: 1px solid rgba(192,100,120,0.12);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 40px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: #2E1F0E;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-shipping {
  font-size: 12.5px;
  color: rgba(46,31,14,0.62);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
}

.footer-nav-links a {
  font-size: 13.5px;
  color: rgba(46,31,14,0.72);
  transition: color 0.2s;
  letter-spacing: 0.03em;
}

.footer-nav-links a:hover { color: var(--rose-dark); }

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-socials a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(46,31,14,0.72);
  transition: color 0.2s;
}

.footer-socials a:hover { color: var(--rose-dark); }

.footer-copy {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(192,100,120,0.14);
  font-size: 12px;
  color: rgba(46,31,14,0.45);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ============================================
   WhatsApp flotante
   ============================================ */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-tooltip {
  background: white;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--text);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.50);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: wa-pulse 2.5s infinite;
  flex-shrink: 0;
}

.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37,211,102,0.60);
}

.wa-btn svg { width: 30px; height: 30px; fill: white; }

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 6px 20px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0); }
}

/* ============================================
   Confirmation page
   ============================================ */

.confirm-wrap {
  min-height: 100vh;
  background: linear-gradient(180deg, #F8D4DC 0%, var(--pink-pale) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
}

.confirm-check {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-lg);
  animation: pop-in 0.6s cubic-bezier(.2,1.4,.4,1) both;
  position: relative;
}

.confirm-check::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--rose-light);
  border-radius: 50%;
  opacity: 0.4;
  animation: ring-out 2.2s ease-out infinite;
}

.confirm-check svg { color: var(--rose); }

@keyframes pop-in {
  0% { opacity:0; transform:scale(0.5); }
  100% { opacity:1; transform:scale(1); }
}

@keyframes ring-out {
  0%   { transform:scale(1); opacity:0.4; }
  100% { transform:scale(1.4); opacity:0; }
}

/* ============================================
   CORRECCIONES — Color texto oscuro (sin rosado)
   Todas las instancias de --rose / --rose-dark
   en texto se reemplazan por #2E1F0E
   ============================================ */

/* Eyebrow labels */
.eyebrow,
.sec-head .eyebrow,
.page-hero .eyebrow,
.about-eyebrow { color: #2E1F0E !important; }

/* Titles with italic em */
.hero-split h1 em,
.sec-head h2 em,
.about-title em,
.page-hero h1 em,
.page-hero em { color: #2E1F0E !important; }

/* Hero badge */
.hero-badge { color: #2E1F0E !important; }

/* Nav active state */
.nav-links a:hover,
.nav-links a.active { color: #2E1F0E !important; }

/* Ghost CTA in hero (inline overrides need !important) */
.hero-split-ctas a[href="cursos.html"] { color: #2E1F0E !important; border-color: #2E1F0E !important; }

/* Sale prices */
.price-sale { color: #2E1F0E !important; }

/* Course card labels and prices */
.cp-label,
.cf-label { color: #2E1F0E !important; }

.cf-price,
.cp-price { color: #2E1F0E !important; }

/* About section */
.about-signature { color: #2E1F0E !important; }
.stat-item strong { color: #2E1F0E !important; }

/* ============================================
   CALENDARIO — Blur / Frosted-glass overlay
   ============================================ */

.cal-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-lg);
}

.cal-wrap iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: none;
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.cal-blur-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-align: center;
  padding: 32px 24px;
  z-index: 10;
}

.cal-blur-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: #2E1F0E;
  line-height: 1.3;
  max-width: 460px;
}

.cal-blur-sub {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  max-width: 380px;
}

.cal-blur-overlay .cf-btn {
  display: inline-block;
  max-width: 280px;
  width: 100%;
}

/* ============================================
   ¿PARA QUIÉN ES ESTE CURSO? — Sección
   ============================================ */

.para-quien-sec {
  background: white;
}

.para-quien-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.para-quien-card {
  background: var(--pink-pale, #FFF0F3);
  border: 1px solid rgba(192,100,120,0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.para-quien-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(192,100,120,0.12);
}

.pq-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.pq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #2E1F0E;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pq-desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .para-quien-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .para-quien-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-sec {
  background: var(--pink-pale, #FFF0F3);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid rgba(192,100,120,0.12);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2E1F0E;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}

.faq-question:hover { background: rgba(192,100,120,0.04); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(192,100,120,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
  color: #2E1F0E;
  font-size: 18px;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(192,100,120,0.18);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
}

.confirm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 18px;
}

.confirm-text {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 12px;
  line-height: 1.7;
}

.confirm-eta {
  font-size: 0.95rem;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 36px;
}

.confirm-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.confirm-site-main {
  min-height: calc(100vh - 68px);
  padding: 82px 24px 96px;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(244,167,181,0.32), transparent 68%),
    linear-gradient(180deg, var(--pink-pale) 0%, #fff7fa 100%);
}

.confirm-site-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 52px 42px;
  text-align: center;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(192,100,120,0.14);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(46,31,14,0.10);
}

.confirm-site-kicker {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #2E1F0E;
  font-weight: 500;
  margin-bottom: 14px;
}

.confirm-site-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 18px;
}

.confirm-site-card h1 em {
  color: #2E1F0E;
  font-style: italic;
}

.confirm-site-card .confirm-text {
  margin-bottom: 12px;
}

.confirm-site-card .confirm-eta {
  color: #2E1F0E;
  margin-bottom: 34px;
}

.confirm-site-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.confirm-site-actions .cf-btn {
  width: auto;
  min-width: 220px;
  padding-left: 28px;
  padding-right: 28px;
}

.confirm-next-steps {
  max-width: 560px;
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(192,100,120,0.12);
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ============================================
   Reveal animation
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero-split { min-height: calc(100vh - 68px); }
  .hero-split::before {
    display: block;
    background: linear-gradient(180deg, rgba(253,232,238,0.30) 0%, rgba(253,232,238,0.60) 100%);
    z-index: 1;
  }
  .hero-split-img { 
    position: absolute; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    min-height: 0; 
  }
  .hero-split-img img { 
    object-position: 20% center; 
    object-fit: cover;
  }
  .hero-split-content { 
    padding: 48px 32px; 
    text-align: center;
    width: 100%;
    z-index: 2;
    text-shadow: 0 4px 24px rgba(255,255,255,0.8);
  }
  .hero-split-ctas {
    justify-content: center;
  }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-socials { align-items: flex-start; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-wa { display: none; }
  .nav-burger { display: flex; }
  .trust-bar-full .container { grid-template-columns: 1fr 1fr; gap: 18px; }
  .course-preview-grid { grid-template-columns: 1fr; max-width: 440px; }
  .courses-full-grid { grid-template-columns: 1fr; }
  .course-full-card.featured { transform: none; }
  .testimonios-grid { grid-template-columns: 1fr 1fr; }
  .creaciones-grid { grid-template-columns: 1fr; max-width: 520px; margin-bottom: 64px; }
  .creacion-card img,
  .testimonios-cursos-grid .testimonio-item img { height: auto; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; }
  .hero-split-content { padding: 10px 24px 0; }
  .sec { padding: 64px 20px; }
  .stats-bar { gap: 24px; }
}

@media (max-width: 540px) {
  .trust-bar-full .container { grid-template-columns: 1fr; gap: 16px; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-split-ctas { flex-direction: column; }
  .hero-split-ctas a { text-align: center; }
  .wa-float { bottom: 16px; right: 16px; }
  .wa-tooltip { display: none; }
}
