/* ════════════════════════════════════════════════════════
   ADELAPRELATO FOTOGRAFÍA — styles.css  (v2)
   ════════════════════════════════════════════════════════ */


/* ─── Variables globales ─── */
:root {
  color-scheme: light;
  --bg:           #f5f3ee;
  --surface:      rgba(255, 255, 255, 0.94);
  --surface-soft: #f8f4ea;
  --text:         #25221d;
  --muted:        #5c564d;
  --accent:       #7a9e7d;
  --accent-dark:  #4e7454;
  --accent-soft:  #cab69d;
  --warm:         #f7f3e9;
  --border:       rgba(108, 100, 88, 0.16);
  --shadow:       0 32px 90px rgba(37, 33, 28, 0.12);
  --shadow-soft:  0 18px 48px rgba(42, 38, 33, 0.09);
  --radius-card:  20px;
  --radius-section: 52px;

  --shop-bg:        #f8f6f0;
  --shop-green:     #7a9e7d;
  --shop-green-dark:#5e8862;
  --shop-green-soft:#a8c9aa;
  --shop-beige:     #cab69d;
  --shop-beige-soft:#e8dcc9;
  --shop-cream:     #f2ede3;
  --shop-text:      #2a2620;
  --shop-muted:     #7a7268;
  --shop-card-bg:   rgba(255, 255, 255, 0.75);
  --shop-card-border: rgba(180, 170, 155, 0.35);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  min-height: 100vh;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: #fbf8f1;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
img, picture, video, canvas { max-width: 100%; }
.page-shell { overflow-x: hidden; }



/* ══════════════════════════════════════════════════════
   TOPBAR — simplificado, fixed, dark
══════════════════════════════════════════════════════ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 60px);
  background: transparent;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.38s ease, transform 0.38s ease, background 0.45s ease, backdrop-filter 0.45s ease, padding 0.35s ease;
}
.topbar.is-scrolled {
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
}

/* Brand */
.topbar__brand { display: flex; align-items: center; flex-shrink: 0; }
.topbar__logo {
  height: 58px; width: auto; object-fit: contain;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0,0,0,0.55));
  opacity: 0.94;
  transition: opacity 0.22s ease;
}
.topbar__logo:hover { opacity: 0.82; }

/* Nav */
.topbar__nav {
  display: flex; align-items: center; gap: 4px;
  flex-wrap: nowrap;
}
.topbar__link {
  color: rgba(255,255,255,0.72); text-decoration: none;
  font-family: "DM Sans", sans-serif; font-size: 0.76rem;
  font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 4px;
  transition: color 0.22s ease, background 0.22s ease;
  white-space: nowrap;
}
.topbar__link:hover,
.topbar__link.is-active { color: #fff; }
.topbar.is-scrolled .topbar__link { color: rgba(42,38,32,0.62); }
.topbar.is-scrolled .topbar__link:hover,
.topbar.is-scrolled .topbar__link.is-active { color: #4e7454; }
.topbar__link.is-active { position: relative; }
.topbar__link.is-active::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 2px;
  height: 1px; background: rgba(255,255,255,0.74);
  box-shadow: 0 0 12px rgba(255,255,255,0.38);
  transform-origin: center;
  animation: topbarLineIn 0.52s cubic-bezier(0.34, 1.56, 0.64, 1) both,
             topbarLineGlow 1.8s ease-in-out infinite 0.52s;
}
.topbar.is-scrolled .topbar__link.is-active::after {
  background: rgba(78,116,84,0.72);
  box-shadow: 0 0 12px rgba(122,158,125,0.28);
}

/* CTA link (Contacts) */
.topbar__link--cta {
  margin-left: 8px;
  padding: 8px 20px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.32);
  color: #fff !important;
  transition: background 0.26s ease, border-color 0.26s ease;
}
.topbar__link--cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
}
.topbar__link--cta::after { display: none !important; }
.topbar.is-scrolled .topbar__link--cta { color: rgba(42,38,32,0.62) !important; }
.topbar.is-scrolled .topbar__link--cta:hover { color: #4e7454 !important; }

/* Separator dots */
.topbar__sep {
  color: rgba(255,255,255,0.36); font-size: 0.95rem;
  line-height: 1;
  user-select: none; pointer-events: none;
  flex-shrink: 0;
}
.topbar.is-scrolled .topbar__sep { color: rgba(122,158,125,0.42); }

/* Hamburger (mobile) */
.topbar__hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 6px;
  background: transparent; border: none; cursor: pointer;
  flex-shrink: 0;
}
.topbar__hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: rgba(255,255,255,0.82); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.topbar__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.topbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.topbar__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ══════════════════════════════════════════════════════
   SECCIÓN 1 — HERO (slideshow de fondo)
══════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  height: 100vh;        /* Full-screen en desktop */
  min-height: 560px;
  overflow: hidden;
}

/* Diapositivas de fondo */
.hero-bg-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.hero-bg-slide.is-active { opacity: 1; }

/* Overlay oscuro suave — resalta el logo y topbar */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.04) 30%, rgba(0,0,0,0.06) 70%, rgba(0,0,0,0.36) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.08) 0%, transparent 50%);
}

/* Watermark branding — esquina inferior izquierda */
/* Indicadores de slide — esquina inferior derecha */
.hero-indicators {
  position: absolute; z-index: 3;
  bottom: clamp(30px, 4vh, 54px);
  right: clamp(24px, 4vw, 56px);
  display: flex; align-items: center; gap: 10px;
  animation: fadeInUp 1.2s ease 0.6s both;
}
.hero-ind {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.38); border: none;
  cursor: pointer; padding: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.hero-ind.is-active {
  width: 28px; border-radius: 3px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 14px rgba(255,255,255,0.3);
}
.hero-ind:hover:not(.is-active) { background: rgba(255,255,255,0.6); }


/* ══════════════════════════════════════════════════════
   FLECHA DE SECCIÓN (bottom center de cada sección)
══════════════════════════════════════════════════════ */
.section-arrow {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  animation: arrowBounce 2.6s ease-in-out infinite;
  transition: background 0.26s ease, box-shadow 0.26s ease;
}
.section-arrow svg { width: 20px; height: 20px; display: block; }

/* Variante clara — sobre fondos oscuros (hero, video) */
.section-arrow--light {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.32) !important;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.section-arrow--light:hover {
  background: rgba(255,255,255,0.25);
  box-shadow: 0 0 24px rgba(255,255,255,0.18);
  animation-play-state: paused;
}

/* Variante oscura — sobre fondos claros (shop, cursos) */
.section-arrow--dark {
  background: rgba(42,38,32,0.07);
  border: 1px solid rgba(42,38,32,0.14) !important;
  color: rgba(42,38,32,0.52);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.section-arrow--dark:hover {
  background: rgba(122,158,125,0.14);
  border-color: rgba(122,158,125,0.34) !important;
  color: #4e7454;
  box-shadow: 0 0 20px rgba(122,158,125,0.15);
  animation-play-state: paused;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Shared btn styles */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 14px 27px; border-radius: 999px;
  text-decoration: none; font-family: "DM Sans", sans-serif;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); border: 1px solid transparent;
  cursor: pointer; position: relative; overflow: hidden; isolation: isolate;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(255,255,255,0.18); transform: translateX(-100%);
  transition: transform 0.28s ease;
}
.btn:hover::before { transform: translateX(0); }
.btn-primary { background: linear-gradient(135deg, #7a9e7d, #5e8862); color: #fff; box-shadow: 0 12px 32px rgba(122,158,125,0.32); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(122,158,125,0.42); }
.btn-secondary { background: linear-gradient(135deg, rgba(247,243,233,0.95), rgba(237,231,219,0.9)); color: #3d3b34; border-color: rgba(122,158,125,0.22); box-shadow: 0 10px 26px rgba(44,36,28,0.1); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-secondary:hover { background: linear-gradient(135deg, #fbf8ef, #eee7db); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(122,158,125,0.16); }
.btn-outline { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.32); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.58); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.22); }


/* ══════════════════════════════════════════════════════
   SECCIÓN 2 — SHOP
══════════════════════════════════════════════════════ */
.shop-section {
  position: relative;
  background: #f9f9f7;
  padding: 80px 0 100px;        /* sin padding horizontal — hero full bleed */
  overflow: hidden; isolation: isolate;
}

.shop-bg-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.sbo { position: absolute; border-radius: 50%; filter: blur(90px); animation: sbOrb linear infinite alternate; }
.sbo--1 { width: 600px; height: 600px; top: -120px; left: -80px; background: radial-gradient(circle, rgba(122,158,125,0.08) 0%, transparent 70%); animation-duration: 18s; animation-delay: 0s; }
.sbo--2 { width: 500px; height: 500px; bottom: -60px; right: -80px; background: radial-gradient(circle, rgba(202,182,157,0.07) 0%, transparent 70%); animation-duration: 22s; animation-delay: 6s; }
.sbo--3 { width: 400px; height: 400px; top: 40%; left: 40%; background: radial-gradient(circle, rgba(168,209,171,0.06) 0%, transparent 70%); animation-duration: 26s; animation-delay: 10s; }
@keyframes sbOrb {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 40px) scale(1.15); }
}
.shop-grid-texture {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(122,158,125,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(122,158,125,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 10%, rgba(0,0,0,0.3) 90%, transparent 100%);
}

/* ── Wrappers with max-width for header, cats and products ── */
.shop-top-wrapper,
.shop-bottom-wrapper {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}
.shop-top-wrapper {
  padding-bottom: 40px; /* breathing room before hero */
}

.shop-header { margin-bottom: 28px; }


.shop-main-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--shop-text);
  white-space: nowrap;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.shop-main-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--shop-green), transparent);
  border-radius: 2px;
}

.shop-cats-wrap { overflow-x: auto; overflow-y: visible; scrollbar-width: none; -ms-overflow-style: none; margin-bottom: 0; padding-bottom: 12px; }
.shop-cats-wrap::-webkit-scrollbar { display: none; }
.shop-cats { display: flex; gap: 8px; width: max-content; min-width: 100%; padding: 4px 2px; }
.shop-cat {
  display: flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: 999px;
  background: rgba(255,255,255,0.75); border: 1px solid rgba(180,170,155,0.25); color: rgba(42,38,32,0.52);
  cursor: pointer; white-space: nowrap; font-family: "DM Sans", sans-serif; font-size: 0.86rem; font-weight: 600;
  transition: all 0.28s cubic-bezier(0.34,1.4,0.64,1);
}
.shop-cat__icon { width: 18px; height: 18px; flex-shrink: 0; display: flex; align-items: center; }
.shop-cat__icon svg { width: 18px; height: 18px; }
.shop-cat:hover:not(.is-active) {
  background: rgba(255,255,255,0.95); border-color: rgba(122,158,125,0.35);
  color: rgba(42,38,32,0.85); transform: scale(1.04); box-shadow: 0 4px 14px rgba(122,158,125,0.12);
}
/* Verde suave — sin degradado marcado */
.shop-cat.is-active {
  background: #93bd97; border-color: transparent; color: #fff;
  box-shadow: 0 4px 16px rgba(122,158,125,0.22);
}

/* ── Featured Hero — Full Bleed ── */
.shop-hero {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px); align-items: center;
  min-height: 480px;
  padding: clamp(28px, 3.6vw, 46px) clamp(36px, 7vw, 96px);
  border-radius: 0;
  border-top: 2px solid rgba(122,158,125,0.28);
  border-bottom: 2px solid rgba(122,158,125,0.28);
  overflow: hidden; margin-bottom: 52px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f8f3 50%, #f3eee5 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.88),
    inset 0 -1px 0 rgba(122,158,125,0.12),
    0 14px 48px rgba(37,33,28,0.09),
    0 -8px 34px rgba(122,158,125,0.08);
}
/* Background overlay — now transparent, controlled by CSS only */
.shop-hero__bg { position: absolute; inset: 0; z-index: 0; background: transparent !important; }
.shop-hero__noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 200px 200px; opacity: 0.5;
}
.shop-arrow {
  position: absolute; top: 50%; z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.8); border: 1px solid rgba(180,170,155,0.3);
  color: rgba(42,38,32,0.5); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.26s cubic-bezier(0.34,1.4,0.64,1);
  backdrop-filter: blur(12px); transform: translateY(-50%);
}
.shop-arrow svg { width: 18px; height: 18px; }
.shop-arrow--l { left: 20px; }
.shop-arrow--r { right: 20px; }
.shop-arrow:hover { background: rgba(122,158,125,0.16); border-color: rgba(122,158,125,0.4); color: #4e7454; transform: translateY(-50%) scale(1.1); }
/* Hidden arrows when single slide */
.shop-arrow.is-hidden { display: none; }

/* Visual Side — PNG transparente sin recuadro */
.shop-hero__visual { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.shop-hero__img-frame {
  position: relative;
  width: min(100%, 310px);
  height: 400px;
  /* Sin recuadro: sin border-radius, sin box-shadow, sin overflow hidden */
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transition: transform 0.5s cubic-bezier(0.34,1.4,0.64,1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-hero__img-frame img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain; display: block;
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 24px 48px rgba(37,33,28,0.14));
}
.shop-float-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.9); border: 1px solid rgba(180,170,155,0.25);
  backdrop-filter: blur(12px); color: rgba(42,38,32,0.58);
  font-family: "DM Sans", sans-serif; font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(37,33,28,0.07);
}
.shop-float-badge__dot { width: 5px; height: 5px; border-radius: 50%; background: #93bd97; animation: pulse 2.2s ease-in-out infinite; flex-shrink: 0; }

.shop-hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.shop-hero__eyebrow {
  display: block; font-family: "DM Sans", sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: #6ea373; margin-bottom: 14px;
  transition: color 0.4s ease;
}
.shop-hero__title {
  font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(2rem, 3.2vw, 3.45rem);
  font-weight: 900; line-height: 0.95; letter-spacing: -0.04em; color: var(--shop-text);
  margin-bottom: 16px;
}
.shop-hero__body { font-family: "DM Sans", sans-serif; font-size: clamp(0.88rem, 1vw, 0.96rem); color: rgba(42,38,32,0.56); line-height: 1.62; margin-bottom: 24px; max-width: 480px; }
.shop-hero__cta {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 999px;
  background: #1c1914; color: #fff; text-decoration: none;
  font-family: "DM Sans", sans-serif; font-weight: 700; font-size: 0.92rem;
  box-shadow: 0 10px 30px rgba(28,25,20,0.18);
  letter-spacing: 0.01em; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, background 0.22s ease;
  margin-bottom: 28px; position: relative; overflow: hidden;
}
.shop-hero__cta:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(28,25,20,0.26); background: #2c2820; }
.shop-hero__cta svg { width: 16px; height: 16px; transition: transform 0.24s ease; }
.shop-hero__cta:hover svg { transform: translateX(4px); }


.shop-hero__cta:hover svg { transform: translateX(4px); }

.shop-dots { display: flex; gap: 8px; align-items: center; }
.shop-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(42,38,32,0.2); border: none; padding: 0; cursor: pointer; transition: all 0.3s cubic-bezier(0.34,1.4,0.64,1); }
.shop-dot.is-active { width: 22px; border-radius: 4px; background: var(--shop-green); box-shadow: 0 0 12px rgba(122,158,125,0.4); }

.shop-products-wrap { position: relative; z-index: 1; }
.shop-products-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.shop-products-count { font-family: "DM Sans", sans-serif; font-size: 0.88rem; color: rgba(42,38,32,0.45); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.shop-products-count::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--shop-green); flex-shrink: 0; }
.shop-products-count span { font-weight: 800; color: rgba(42,38,32,0.7); }
.shop-products-filter-label { font-family: "DM Sans", sans-serif; font-size: 0.78rem; color: rgba(42,38,32,0.35); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.shop-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.sp-card {
  position: relative; background: var(--shop-card-bg); border: 1px solid var(--shop-card-border);
  border-radius: 20px; overflow: hidden; cursor: pointer;
  transition: transform 0.32s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.32s ease, border-color 0.28s ease;
  display: flex; flex-direction: column;
}
.sp-card:hover { transform: translateY(-8px) scale(1.01); border-color: rgba(122,158,125,0.35); box-shadow: 0 20px 50px rgba(37,33,28,0.08), 0 0 0 1px rgba(122,158,125,0.12), 0 0 30px rgba(122,158,125,0.08); }
.sp-card.is-hidden { display: none; }
.sp-card.is-featured { border-color: rgba(122,158,125,0.45); box-shadow: 0 0 0 1px rgba(122,158,125,0.2), 0 16px 40px rgba(37,33,28,0.1); }
.sp-card__img-wrap { position: relative; aspect-ratio: 3/3.6; overflow: hidden; background: rgba(242,238,227,0.5); }
.sp-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease; filter: saturate(1.02); }
.sp-card:hover .sp-card__img-wrap img { transform: scale(1.07); filter: saturate(1.08); }
.sp-card__badge { position: absolute; top: 10px; left: 10px; padding: 4px 10px; border-radius: 999px; font-family: "DM Sans", sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: rgba(255,255,255,0.88); color: rgba(42,38,32,0.82); border: 1px solid rgba(180,170,155,0.2); backdrop-filter: blur(10px); z-index: 2; }
.sp-card__badge--hot { background: linear-gradient(135deg, rgba(122,158,125,0.92), rgba(88,130,94,0.92)); color: #fff; border-color: rgba(100,148,104,0.35); }
.sp-card__badge--new { background: linear-gradient(135deg, rgba(122,158,125,0.92), rgba(88,130,94,0.92)); color: #fff; border-color: rgba(100,148,104,0.35); }
.sp-card__badge--ai  { background: linear-gradient(135deg, rgba(122,158,125,0.92), rgba(88,130,94,0.92)); color: #fff; border-color: rgba(100,148,104,0.35); }
.sp-card__wish { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.75); backdrop-filter: blur(10px); border: 1px solid rgba(180,170,155,0.2); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; color: rgba(42,38,32,0.3); transition: all 0.24s cubic-bezier(0.34,1.56,0.64,1); }
.sp-card__wish svg { width: 13px; height: 13px; }
.sp-card__wish:hover { transform: scale(1.18); color: #c45d5d; background: rgba(196,93,93,0.1); border-color: rgba(196,93,93,0.25); }
.sp-card__wish.is-liked { color: #c45d5d; }
.sp-card__wish.is-liked svg { fill: #c45d5d; }
.sp-card__body { padding: 12px 12px 14px; flex: 1; display: flex; flex-direction: column; }
.sp-card__name { font-family: "Plus Jakarta Sans", sans-serif; font-size: 0.9rem; font-weight: 800; color: var(--shop-text); letter-spacing: -0.02em; line-height: 1.28; margin-bottom: 5px; }
.sp-card__desc { font-size: 0.76rem; color: rgba(42,38,32,0.45); line-height: 1.6; flex: 1; }
.sp-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 10px; border-top: 1px solid rgba(180,170,155,0.2); }
.sp-card__price { display: flex; flex-direction: column; gap: 1px; }
.sp-card__orig { font-size: 0.68rem; color: rgba(42,38,32,0.35); text-decoration: line-through; }
.sp-card__current { font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.1rem; font-weight: 900; color: #5e8862; letter-spacing: -0.02em; line-height: 1.2; }
.sp-card__current sup { font-size: 0.58rem; font-weight: 700; vertical-align: super; }
.sp-card__buy { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #7a9e7d, #5e8862); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; flex-shrink: 0; box-shadow: 0 4px 14px rgba(122,158,125,0.3); transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s ease; }
.sp-card__buy svg { width: 13px; height: 13px; }
.sp-card__buy:hover { transform: scale(1.16) rotate(-8deg); box-shadow: 0 8px 22px rgba(122,158,125,0.45); }

.shop-hero--transitioning .shop-hero__eyebrow,
.shop-hero--transitioning .shop-hero__title,
.shop-hero--transitioning .shop-hero__body,
.shop-hero--transitioning .shop-hero__cta,
.shop-hero--transitioning .shop-float-badge,
.shop-hero--transitioning .shop-hero__img-frame img { opacity: 0; transform: translateY(10px); transition: opacity 0.25s ease, transform 0.25s ease; }
.shop-hero__eyebrow, .shop-hero__title, .shop-hero__body, .shop-hero__cta, .shop-float-badge, .shop-hero__img-frame img { transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s; }


/* ══════════════════════════════════════════════════════
   SECCIÓN 3 — VIDEO / CAPACITACIONES
══════════════════════════════════════════════════════ */
.video-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
}
.video-section__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("Images/FondoHero4.jpg");
  background-size: cover; background-position: 58% center; background-repeat: no-repeat;
  transform: scale(1.04); transition: transform 12s ease-in-out;
}
.video-section__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(9,7,5,0.88) 0%, rgba(9,7,5,0.6) 33%, rgba(9,7,5,0.2) 58%, rgba(9,7,5,0.04) 100%),
    radial-gradient(ellipse at 16% 55%, rgba(78,116,84,0.26), transparent 48%),
    linear-gradient(0deg, rgba(8,6,5,0.24), transparent 34%, rgba(8,6,5,0.2));
  pointer-events: none;
}
.video-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.vp { position: absolute; border-radius: 50%; background: rgba(122,158,125,0.35); animation: vpFloat linear infinite; }
.vp--1  { width: 5px; height: 5px; left: 12%; bottom: -8px; animation-duration: 14s; animation-delay: 0s; }
.vp--2  { width: 3px; height: 3px; left: 28%; bottom: -8px; animation-duration: 18s; animation-delay: 3s; background: rgba(202,182,157,0.4); }
.vp--3  { width: 6px; height: 6px; left: 18%; bottom: -8px; animation-duration: 22s; animation-delay: 6s; }
.vp--4  { width: 4px; height: 4px; left: 8%;  bottom: -8px; animation-duration: 16s; animation-delay: 9s; background: rgba(255,255,255,0.25); }
.vp--5  { width: 4px; height: 4px; left: 44%; bottom: -8px; animation-duration: 19s; animation-delay: 1.5s; background: rgba(255,244,223,0.32); }
.vp--6  { width: 6px; height: 6px; left: 58%; bottom: -8px; animation-duration: 24s; animation-delay: 5s; background: rgba(168,209,171,0.3); }
.vp--7  { width: 3px; height: 3px; left: 72%; bottom: -8px; animation-duration: 17s; animation-delay: 2.6s; background: rgba(255,255,255,0.28); }
.vp--8  { width: 5px; height: 5px; left: 84%; bottom: -8px; animation-duration: 21s; animation-delay: 7.5s; background: rgba(202,182,157,0.36); }
.vp--9  { width: 3px; height: 3px; left: 94%; bottom: -8px; animation-duration: 15s; animation-delay: 4.2s; background: rgba(122,158,125,0.34); }
.vp--10 { width: 7px; height: 7px; left: 66%; bottom: -8px; animation-duration: 28s; animation-delay: 10s; background: rgba(255,255,255,0.2); }
@keyframes vpFloat {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}
.video-section__inner {
  position: relative; z-index: 3; width: 100%; max-width: none; min-height: 100vh; margin: 0 auto; padding: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.video-section__left {
  position: absolute; top: 50%; left: clamp(86px, 8.7vw, 128px);
  width: clamp(430px, 35vw, 520px); max-width: 520px;
  min-height: clamp(430px, 58vh, 510px);
  padding: clamp(34px, 3vw, 44px) clamp(34px, 3vw, 48px);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0;
  transform: translateY(-42%);
  background: linear-gradient(110deg, rgba(8,10,8,0.58), rgba(8,10,8,0.22)),
    radial-gradient(circle at 12% 15%, rgba(122,158,125,0.2), transparent 42%);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 56px;
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.video-badge { display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px; border-radius: 999px; background: rgba(122,158,125,0.18); color: #a8d1ab; font-family: "DM Sans", sans-serif; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid rgba(122,158,125,0.3); backdrop-filter: blur(12px); margin-bottom: 22px; animation: fadeInUp 0.9s ease 0.1s both; }
.video-badge__dot { width: 6px; height: 6px; border-radius: 50%; background: #7a9e7d; animation: pulse 2.4s ease-in-out infinite; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(122,158,125,0.22); }
.video-title { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(2.55rem, 3.25vw, 3.45rem); font-weight: 800; line-height: 1.06; letter-spacing: -0.02em; color: #ffffff; text-shadow: 0 4px 32px rgba(0,0,0,0.5); margin-bottom: 22px; animation: fadeInUp 0.95s ease 0.2s both; }
.video-title .title-break { display: block; }
.video-subtitle { font-family: "DM Sans", sans-serif; font-size: clamp(0.72rem, 0.92vw, 0.92rem); font-weight: 400; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 30px; animation: fadeInUp 0.95s ease 0.3s both; position: relative; padding-left: 18px; }
.video-subtitle::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.video-actions { display: flex; flex-wrap: nowrap; align-items: center; gap: 14px; animation: fadeInUp 0.95s ease 0.42s both; }
.video-actions .btn { width: auto; min-width: 138px; white-space: nowrap; }
.video-line { position: absolute; left: 50%; bottom: 28%; display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0.4; flex-shrink: 0; }
.video-line__track { width: 1px; height: 100px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.8), transparent); animation: lineGlow 3.4s ease-in-out infinite; }
.video-line__label { font-family: "DM Sans", sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); writing-mode: vertical-rl; }
.video-feature {
  display: flex; position: absolute; top: 50%; right: clamp(86px, 8vw, 132px);
  width: clamp(230px, 18vw, 280px); padding: 24px; flex-direction: column; justify-content: center; gap: 14px;
  border: 1px solid rgba(255,255,255,0.24); border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06)),
    radial-gradient(circle at 78% 0%, rgba(122,158,125,0.22), transparent 48%),
    linear-gradient(180deg, rgba(25,22,18,0.26), rgba(25,22,18,0.48));
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 28px 90px rgba(0,0,0,0.28);
  color: #fff; transform: translateY(-20%); animation: videoFeatureFloat 7s ease-in-out infinite;
}
.video-feature__eyebrow { width: fit-content; padding: 6px 10px; background: rgba(122,158,125,0.26); border: 1px solid rgba(168,209,171,0.32); color: #c6e0c7; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px; }
.video-feature__metric { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.14); }
.video-feature__metric strong { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(1.1rem, 1.4vw, 1.45rem); font-weight: 900; line-height: 1.08; color: #fff; }
.video-feature__metric span { color: rgba(255,255,255,0.72); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; line-height: 1.3; text-align: right; text-transform: uppercase; }


/* ══════════════════════════════════════════════════════
   SECCIÓN 4 — CURSOS DESTACADOS
══════════════════════════════════════════════════════ */
.courses-section {
  position: relative; width: 100%;
  padding: 80px clamp(20px, 5vw, 80px) 100px;
  background: linear-gradient(180deg, #fbfaf6 0%, #eee8dc 52%, #f7f4ef 100%);
  overflow: hidden; isolation: isolate;
}
.courses-section::before, .courses-section::after { content: ""; position: absolute; inset: -20%; z-index: 0; pointer-events: none; }
.courses-section::before { background: linear-gradient(120deg, transparent 10%, rgba(255,255,255,0.58) 26%, transparent 45%), linear-gradient(70deg, transparent 14%, rgba(122,158,125,0.2) 40%, transparent 64%), linear-gradient(145deg, transparent 34%, rgba(202,182,157,0.24) 56%, transparent 74%); animation: premiumGlowShift 12s ease-in-out infinite alternate; opacity: 0; }
.courses-section::after { opacity: 0.05; background-image: linear-gradient(rgba(78,116,84,0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(78,116,84,0.16) 1px, transparent 1px), linear-gradient(rgba(202,182,157,0.16) 2px, transparent 2px), linear-gradient(90deg, rgba(202,182,157,0.14) 2px, transparent 2px); background-size: 56px 56px, 56px 56px, 224px 224px, 224px 224px; mask-image: linear-gradient(180deg, transparent, #000 8%, #000 88%, transparent); animation: premiumGridDrift 18s linear infinite; }
.courses-bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.cb-orb { position: absolute; width: 130%; height: 210px; left: -15%; border-radius: 0; filter: blur(28px); opacity: 0.05; mix-blend-mode: multiply; }
.cb-orb--1 { top: 9%; transform: rotate(-10deg); background: linear-gradient(90deg, transparent, rgba(122,158,125,0.28), rgba(255,255,255,0.62), transparent); animation: premiumRibbonOne 14s ease-in-out infinite; }
.cb-orb--2 { bottom: 14%; transform: rotate(8deg); background: linear-gradient(90deg, transparent, rgba(91,66,95,0.2), rgba(202,182,157,0.34), transparent); animation: premiumRibbonTwo 16s ease-in-out infinite; }
.courses-header { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto 80px; }
.courses-label { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 999px; background: rgba(122,158,125,0.12); border: 1px solid rgba(122,158,125,0.2); color: var(--accent-dark); font-family: "DM Sans", sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.courses-label__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: pulse 2.2s ease-in-out infinite; flex-shrink: 0; }
.courses-title { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; color: #1c1914; margin-bottom: 16px; }
.courses-subtitle { font-family: "DM Sans", sans-serif; font-size: 1.02rem; color: #6a6258; line-height: 1.75; max-width: 520px; margin: 0 auto; }
.course-row { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; max-width: 1100px; margin: 0 auto; padding: 60px 0; }
.course-row--reverse .course-row__image-col { order: 2; }
.course-row--reverse .course-row__content-col { order: 1; }
.course-row__image-col { position: relative; }
.course-row__image-wrap { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 40px 100px rgba(37,33,28,0.16), 0 8px 24px rgba(37,33,28,0.08); }
.course-row__image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); filter: saturate(1.06); }
.course-row:hover .course-row__image-wrap img { transform: scale(1.05); }
.course-row__img-tag { position: absolute; bottom: 18px; left: 18px; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); color: var(--accent-dark); font-family: "DM Sans", sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.7); box-shadow: 0 4px 14px rgba(0,0,0,0.1); z-index: 3; }
.course-row__content-col { display: flex; flex-direction: column; gap: 0; }
.course-tag { display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 999px; font-family: "DM Sans", sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; width: fit-content; }
.course-tag--mentoria { background: rgba(122,158,125,0.14); color: #3d6b42; border: 1px solid rgba(122,158,125,0.22); }
.course-tag--taller { background: rgba(202,182,157,0.2); color: #7a6248; border: 1px solid rgba(202,182,157,0.3); }
.course-tag--fineart { background: rgba(180,160,190,0.15); color: #6b4d7a; border: 1px solid rgba(180,160,190,0.25); }
.course-name { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(1.28rem, 1.8vw, 1.72rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.18; color: #1c1914; margin-bottom: 14px; }
.course-desc { font-family: "DM Sans", sans-serif; font-size: 1rem; color: #6a6258; line-height: 1.75; margin-bottom: 22px; }
.course-resources { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.course-resources li { display: flex; align-items: flex-start; gap: 10px; font-family: "DM Sans", sans-serif; font-size: 0.9rem; color: #4e4840; line-height: 1.55; font-weight: 500; }
.course-resources li svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.course-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.course-meta__pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 999px; background: rgba(245,242,236,0.9); border: 1px solid rgba(200,190,176,0.5); font-family: "DM Sans", sans-serif; font-size: 0.8rem; font-weight: 600; color: #5c5248; }
.course-meta__pill svg { width: 14px; height: 14px; color: #80756a; flex-shrink: 0; }
.course-meta__pill--online { background: rgba(122,158,125,0.1); border-color: rgba(122,158,125,0.22); color: #3d6040; }
.course-meta__pill--online svg { color: var(--accent); }
.course-cta { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 999px; background: #1c1914; color: #fff; font-family: "DM Sans", sans-serif; font-weight: 700; font-size: 0.92rem; border: none; cursor: pointer; box-shadow: 0 10px 28px rgba(28,25,20,0.2); width: fit-content; transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s ease, background 0.22s ease; letter-spacing: 0.01em; }
.course-cta svg { width: 16px; height: 16px; transition: transform 0.26s ease; }
.course-cta:hover { transform: translateY(-3px); background: var(--accent-dark); box-shadow: 0 18px 44px rgba(78,116,84,0.28); }
.course-cta:hover svg { transform: translateX(3px); }
.course-divider { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(180,170,155,0.35), transparent); }
.course-row[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.course-row[data-aos].aos-visible { opacity: 1; transform: translateY(0); }
.course-row[data-aos]:nth-child(1) { transition-delay: 0s; }
.course-row[data-aos]:nth-child(3) { transition-delay: 0.1s; }
.course-row[data-aos]:nth-child(5) { transition-delay: 0.15s; }


/* ══════════════════════════════════════════════════════
   PRODUCT DETAIL OVERLAY
══════════════════════════════════════════════════════ */
/* Education course cards */
@media (min-width: 861px) {
  .edu-page .courses-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    padding-inline: clamp(28px, 5vw, 74px);
  }

  .edu-page .courses-header {
    max-width: 760px;
    margin-bottom: 42px;
  }

  .edu-page .course-row,
  .edu-page .course-row--reverse {
    display: grid;
    grid-template-columns: minmax(190px, 0.9fr) minmax(0, 1.25fr);
    min-height: 100%;
    background: #fff;
    border: 1px solid rgba(180,170,155,0.18);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(37,33,28,0.08);
  }

  .edu-page .course-row__image-col {
    min-height: 100%;
  }

  .edu-page .course-row__image-wrap {
    height: 100%;
    min-height: 360px;
    aspect-ratio: auto;
    border-radius: 22px 0 0 22px;
  }

  .edu-page .course-row__content-col {
    padding: clamp(24px, 3vw, 34px);
  }

  .edu-page .course-name {
    font-size: clamp(1.34rem, 1.9vw, 1.8rem);
    margin-bottom: 12px;
  }

  .edu-page .course-desc {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .edu-page .course-resources {
    gap: 8px;
    margin-bottom: 22px;
  }

  .edu-page .course-cta {
    width: 100%;
    justify-content: center;
    border-radius: 14px;
    text-decoration: none;
  }
}

@media (min-width: 861px) and (max-width: 1220px) {
  .edu-page .courses-section {
    grid-template-columns: 1fr;
  }

  .edu-page .course-row,
  .edu-page .course-row--reverse {
    grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .edu-page .course-row,
  .edu-page .course-row--reverse {
    background: #fff;
    border: 1px solid rgba(180,170,155,0.18);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(37,33,28,0.08);
    padding: 0;
    gap: 0;
  }

  .edu-page .course-row__image-wrap {
    border-radius: 22px 22px 0 0;
    box-shadow: none;
  }

  .edu-page .course-row__content-col {
    padding: 24px 20px 26px;
  }

  .edu-page .course-cta {
    width: 100%;
    justify-content: center;
    border-radius: 14px;
    text-decoration: none;
  }
}

.edu-page .courses-section {
  min-height: auto;
  padding-bottom: 70px !important;
  background: linear-gradient(180deg, #fbfaf6 0%, #eee8dc 52%, #f7f4ef 100%) !important;
}

.edu-page .courses-header,
.edu-page .course-row,
.edu-page .course-divider {
  position: relative;
  z-index: 5;
}

.edu-page .courses-bg {
  z-index: 0;
}

.edu-page .course-row[data-aos],
.edu-page .course-row[data-aos].aos-visible {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 860px) {
  .edu-page .course-row__image-wrap img[src="Images/curso1.jpg"] {
    object-position: center 18%;
  }

  .edu-page .courses-section {
    padding-bottom: 46px !important;
  }
}

.product-detail {
  position: fixed; inset: 0; z-index: 300;
  background: #f9f9f7;
  overflow-y: auto; opacity: 0; pointer-events: none;
  transform: translateY(40px);
  transition: opacity 0.38s cubic-bezier(0.22,1,0.36,1), transform 0.38s cubic-bezier(0.22,1,0.36,1);
}
.product-detail.is-open { opacity: 1; pointer-events: all; transform: translateY(0); }
.product-detail::-webkit-scrollbar { width: 6px; }
.product-detail::-webkit-scrollbar-track { background: transparent; }
.product-detail::-webkit-scrollbar-thumb { background: rgba(122,158,125,0.3); border-radius: 99px; }

.pd-topbar { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; padding: 16px clamp(20px, 5vw, 60px); background: rgba(249,249,247,0.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid rgba(180,170,155,0.18); }
.pd-topbar__brand { display: flex; align-items: center; gap: 12px; }
.pd-topbar__logo {
  width: auto;
  height: 44px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  filter: brightness(0);
}
.pd-topbar__name { font-family: "Plus Jakarta Sans", sans-serif; font-size: 0.88rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.pd-topbar__back { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 999px; background: rgba(255,255,255,0.7); border: 1px solid rgba(180,170,155,0.3); color: var(--muted); font-family: "DM Sans", sans-serif; font-weight: 600; font-size: 0.86rem; cursor: pointer; backdrop-filter: blur(10px); transition: all 0.24s cubic-bezier(0.34,1.56,0.64,1); }
.pd-topbar__back svg { width: 16px; height: 16px; }
.pd-topbar__back:hover { background: rgba(122,158,125,0.12); border-color: rgba(122,158,125,0.35); color: var(--accent-dark); transform: translateX(-3px); }

.pd-body { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); max-width: 1160px; margin: 0 auto; padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 60px) 60px; align-items: start; }
.pd-gallery { position: sticky; top: 80px; }
.pd-gallery__frame { width: 100%; aspect-ratio: 3/3.8; border-radius: 28px; overflow: hidden; box-shadow: 0 40px 100px rgba(37,33,28,0.14), 0 0 0 1px rgba(180,170,155,0.18); margin-bottom: 14px; }
.pd-gallery__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-gallery__badge-row { display: flex; align-items: center; justify-content: space-between; }
.pd-gallery__badge { padding: 5px 14px; border-radius: 999px; font-family: "DM Sans", sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: rgba(122,158,125,0.14); color: #3d6b42; border: 1px solid rgba(122,158,125,0.24); }
.pd-gallery__secure { display: flex; align-items: center; gap: 6px; font-family: "DM Sans", sans-serif; font-size: 0.72rem; font-weight: 600; color: rgba(42,38,32,0.38); }
.pd-gallery__secure svg { width: 13px; height: 13px; }

.pd-info { display: flex; flex-direction: column; gap: 0; }
.pd-vendor { font-family: "DM Sans", sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(42,38,32,0.38); margin-bottom: 10px; }
.pd-title { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(1.8rem, 3vw, 2.9rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.04; color: var(--shop-text); margin-bottom: 14px; }
.pd-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.pd-stars { color: #e6a817; font-size: 1rem; letter-spacing: 1px; }
.pd-review-count { font-family: "DM Sans", sans-serif; font-size: 0.8rem; color: rgba(42,38,32,0.45); font-weight: 600; }
.pd-price-wrap { padding: 18px 20px; border-radius: 16px; background: rgba(255,255,255,0.6); border: 1px solid rgba(180,170,155,0.22); margin-bottom: 18px; }
.pd-price-main { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.pd-price-current { font-family: "Plus Jakarta Sans", sans-serif; font-size: 2rem; font-weight: 900; color: #5e8862; letter-spacing: -0.04em; }
.pd-price-orig { font-family: "DM Sans", sans-serif; font-size: 1rem; color: rgba(42,38,32,0.35); text-decoration: line-through; font-weight: 500; }
.pd-price-save { display: inline-block; font-family: "DM Sans", sans-serif; font-size: 0.75rem; font-weight: 700; color: #3d6b42; background: rgba(122,158,125,0.12); padding: 3px 10px; border-radius: 999px; }
.pd-short-desc { font-family: "DM Sans", sans-serif; font-size: 0.96rem; color: rgba(42,38,32,0.62); line-height: 1.75; margin-bottom: 22px; }
.pd-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.pd-qty-label { font-family: "DM Sans", sans-serif; font-size: 0.88rem; font-weight: 600; color: rgba(42,38,32,0.55); }
.pd-qty { display: flex; align-items: center; gap: 0; border: 1px solid rgba(180,170,155,0.35); border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.6); }
.pd-qty__btn { width: 40px; height: 40px; border: none; background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; color: rgba(42,38,32,0.6); transition: background 0.18s ease, color 0.18s ease; }
.pd-qty__btn:hover { background: rgba(122,158,125,0.12); color: #3d6b42; }
.pd-qty__num { min-width: 40px; text-align: center; font-family: "Plus Jakarta Sans", sans-serif; font-size: 0.92rem; font-weight: 800; color: var(--shop-text); }
.pd-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.pd-btn-cart { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 16px 28px; border-radius: 14px; background: rgba(255,255,255,0.8); border: 1.5px solid rgba(180,170,155,0.35); color: var(--shop-text); font-family: "DM Sans", sans-serif; font-weight: 700; font-size: 0.96rem; cursor: pointer; transition: all 0.26s cubic-bezier(0.34,1.4,0.64,1); }
.pd-btn-cart svg { width: 18px; height: 18px; }
.pd-btn-cart:hover { background: rgba(255,255,255,1); border-color: rgba(122,158,125,0.4); color: #3d6b42; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,33,28,0.08); }
.pd-btn-hotmart { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 16px 28px; border-radius: 14px; background: linear-gradient(135deg, #e03333, #c02020); color: #fff; text-decoration: none; font-family: "DM Sans", sans-serif; font-weight: 800; font-size: 1rem; cursor: pointer; box-shadow: 0 12px 36px rgba(196,32,32,0.35), inset 0 1px 0 rgba(255,255,255,0.15); transition: all 0.28s cubic-bezier(0.34,1.56,0.64,1); letter-spacing: 0.01em; }
.pd-btn-hotmart svg { width: 16px; height: 16px; transition: transform 0.24s ease; }
.pd-btn-hotmart:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(196,32,32,0.44); }
.pd-btn-hotmart:hover svg { transform: translateX(4px); }
.pd-trust { display: flex; flex-wrap: wrap; gap: 10px; padding: 14px 16px; border-radius: 12px; background: rgba(122,158,125,0.07); border: 1px solid rgba(122,158,125,0.15); margin-bottom: 18px; }
.pd-trust span { display: flex; align-items: center; gap: 6px; font-family: "DM Sans", sans-serif; font-size: 0.76rem; font-weight: 600; color: #3d6b42; }
.pd-trust svg { width: 13px; height: 13px; flex-shrink: 0; }
.pd-share { display: flex; align-items: center; gap: 12px; }
.pd-share__label { font-family: "DM Sans", sans-serif; font-size: 0.8rem; font-weight: 600; color: rgba(42,38,32,0.4); }
.pd-share__btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.7); border: 1px solid rgba(180,170,155,0.3); display: flex; align-items: center; justify-content: center; color: rgba(42,38,32,0.5); transition: all 0.22s cubic-bezier(0.34,1.56,0.64,1); }
.pd-share__btn svg { width: 15px; height: 15px; }
.pd-share__btn:hover { transform: scale(1.14); color: var(--accent-dark); background: rgba(122,158,125,0.1); border-color: rgba(122,158,125,0.3); }

.pd-long-section { background: rgba(255,255,255,0.5); border-top: 1px solid rgba(180,170,155,0.2); border-bottom: 1px solid rgba(180,170,155,0.2); padding: 64px clamp(20px, 5vw, 60px); }
.pd-long-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.pd-section-title { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(1.2rem, 1.8vw, 1.6rem); font-weight: 800; letter-spacing: -0.025em; color: #1c1914; margin-bottom: 20px; }
.pd-long-desc { font-family: "DM Sans", sans-serif; font-size: 0.96rem; color: #5a5448; line-height: 1.82; }
.pd-long-desc p { margin-bottom: 14px; }
.pd-features-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pd-features-list li { display: flex; align-items: flex-start; gap: 12px; font-family: "DM Sans", sans-serif; font-size: 0.92rem; color: #4e4840; line-height: 1.6; font-weight: 500; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,0.7); border: 1px solid rgba(180,170,155,0.2); }
.pd-features-list li::before { content: ""; display: block; flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%237a9e7d' stroke-width='1.4'/%3E%3Cpolyline points='5,8 7.5,10.5 11,6' stroke='%237a9e7d' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.pd-related-section { padding: 64px clamp(20px, 5vw, 60px) 80px; }
.pd-related-inner { max-width: 1160px; margin: 0 auto; }
.pd-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 0; }
.pd-related-card { position: relative; background: var(--shop-card-bg); border: 1px solid var(--shop-card-border); border-radius: 20px; overflow: hidden; cursor: pointer; transition: transform 0.32s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.32s ease, border-color 0.28s ease; display: flex; flex-direction: column; }
.pd-related-card:hover { transform: translateY(-6px) scale(1.01); border-color: rgba(122,158,125,0.35); box-shadow: 0 16px 44px rgba(37,33,28,0.1), 0 0 0 1px rgba(122,158,125,0.12); }
.pd-related-card__img { aspect-ratio: 3/2.8; overflow: hidden; }
.pd-related-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.pd-related-card:hover .pd-related-card__img img { transform: scale(1.06); }
.pd-related-card__body { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; }
.pd-related-card__name { font-family: "Plus Jakarta Sans", sans-serif; font-size: 0.92rem; font-weight: 800; color: var(--shop-text); letter-spacing: -0.02em; margin-bottom: 5px; }
.pd-related-card__desc { font-family: "DM Sans", sans-serif; font-size: 0.76rem; color: rgba(42,38,32,0.45); line-height: 1.6; flex: 1; margin-bottom: 12px; }
.pd-related-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid rgba(180,170,155,0.2); }
.pd-related-card__price { font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.05rem; font-weight: 900; color: #5e8862; }
.pd-related-card__btn { padding: 7px 14px; border-radius: 999px; background: linear-gradient(135deg, #7a9e7d, #5e8862); color: #fff; border: none; cursor: pointer; font-family: "DM Sans", sans-serif; font-size: 0.74rem; font-weight: 700; transition: transform 0.22s ease, box-shadow 0.22s ease; }
.pd-related-card__btn:hover { transform: scale(1.06); box-shadow: 0 6px 18px rgba(122,158,125,0.35); }

.cart-toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: #1c1914; color: #fff; padding: 13px 24px; border-radius: 999px; font-family: "DM Sans", sans-serif; font-size: 0.88rem; font-weight: 600; box-shadow: 0 16px 48px rgba(0,0,0,0.24); z-index: 999; opacity: 0; transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1); white-space: nowrap; }
.cart-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }


/* ══════════════════════════════════════════════════════
   SECCIÓN 5 — FAQ + CARRUSEL
══════════════════════════════════════════════════════ */
.faq-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 100px clamp(20px, 5vw, 80px);
  background: linear-gradient(135deg, rgba(255,255,255,0.88) 0%, rgba(247,243,233,0.96) 44%, rgba(238,232,219,0.92) 100%);
  overflow: hidden; isolation: isolate;
}
.faq-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.faq-grid-texture { position: absolute; inset: 0; background-image: linear-gradient(rgba(122,158,125,0.065) 1px, transparent 1px), linear-gradient(90deg, rgba(122,158,125,0.055) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%); opacity: 0.7; }
.faq-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 90px); align-items: center; width: 100%; }
.faq-left { display: flex; flex-direction: column; }
.faq-sup-label { display: inline-flex; align-items: center; gap: 9px; font-family: "DM Sans", sans-serif; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(78,116,84,0.85); margin-bottom: 18px; }
.faq-sup-dot { width: 6px; height: 6px; border-radius: 50%; background: #7a9e7d; animation: pulse 2.4s ease-in-out infinite; flex-shrink: 0; }
.faq-title { font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(2.2rem, 3.8vw, 4rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.02; color: #28251f; margin-bottom: 44px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(78,72,62,0.14); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid rgba(78,72,62,0.14); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; background: transparent; border: none; cursor: pointer; font-family: "DM Sans", sans-serif; font-size: 0.98rem; font-weight: 600; color: rgba(45,42,36,0.82); text-align: left; transition: color 0.22s ease; }
.faq-q:hover { color: #1c1914; }
.faq-item.is-open .faq-q { color: #4e7454; }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(78,72,62,0.18); color: rgba(45,42,36,0.42); transition: transform 0.36s cubic-bezier(0.34,1.56,0.64,1), border-color 0.22s ease, color 0.22s ease; }
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.is-open .faq-icon { transform: rotate(-180deg); border-color: rgba(122,158,125,0.5); color: #4e7454; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-a p { padding: 0 0 20px; font-family: "DM Sans", sans-serif; font-size: 0.91rem; color: rgba(45,42,36,0.62); line-height: 1.78; }
.faq-carousel-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.faq-carousel { position: relative; width: 100%; border-radius: 28px; overflow: hidden; aspect-ratio: 3/4; box-shadow: 0 30px 80px rgba(78,72,62,0.18), 0 0 0 1px rgba(78,72,62,0.08); }
.faq-carousel__track { display: flex; width: 100%; height: 100%; transition: transform 0.72s cubic-bezier(0.77, 0, 0.175, 1); }
.faq-carousel__slide { min-width: 100%; height: 100%; position: relative; overflow: hidden; }
.faq-carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 6s ease; }
.faq-carousel__slide.is-active img { transform: scale(1.06); }
.faq-carousel__dots { display: flex; gap: 8px; align-items: center; justify-content: center; }
.faq-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(78,72,62,0.22); border: none; cursor: pointer; transition: background 0.28s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1), width 0.28s ease; }
.faq-dot.is-active { background: #7a9e7d; width: 24px; border-radius: 4px; transform: none; }


/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */

/* Topbar mobile */
@media (max-width: 900px) {
  .topbar { padding: 14px clamp(16px, 4vw, 28px); }
  .topbar.is-scrolled {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .topbar.is-menu-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .topbar:has(.topbar__nav.is-open) {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .topbar__sep { display: none; }
  .topbar__hamburger { display: flex; }
  .topbar.is-scrolled .topbar__hamburger span { background: rgba(78,116,84,0.86); }
  .topbar .topbar__hamburger.is-open span { background: rgba(255,255,255,0.86); }
  .topbar__nav {
    display: none; /* hidden until toggled */
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    min-height: 100dvh;
    background:
      radial-gradient(circle at 20% 12%, rgba(122,158,125,0.24), transparent 32%),
      linear-gradient(180deg, rgba(0,0,0,0.98) 0%, rgba(8,10,8,0.96) 56%, rgba(0,0,0,0.92) 100%);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: flex-start;
    gap: 4px; z-index: 199; padding: 98px 24px 34px;
    overflow-y: auto;
    box-shadow: none;
  }
  .topbar__nav.is-open { display: flex; }
  .topbar__nav::before {
    content: "";
    width: min(210px, 64vw);
    height: 58px;
    margin-bottom: 20px;
    background: url("Images/Logo.png") center / contain no-repeat;
    filter: brightness(0) invert(1) drop-shadow(0 2px 14px rgba(0,0,0,0.45));
    opacity: 0.96;
    flex-shrink: 0;
  }
  .topbar__nav::after {
    content: "";
    display: none;
  }
  .topbar__link {
    font-size: clamp(0.92rem, 4vw, 1.08rem); letter-spacing: 0.1em; padding: 12px 24px;
    color: rgba(255,255,255,0.75); display: block; text-align: center; width: 100%; max-width: 280px;
  }
  .topbar.is-scrolled .topbar__nav .topbar__link { color: rgba(255,255,255,0.75); }
  .topbar.is-scrolled .topbar__nav .topbar__link:hover,
  .topbar.is-scrolled .topbar__nav .topbar__link.is-active { color: #fff; }
  .topbar__link:hover { color: #fff; background: rgba(255,255,255,0.06); border-radius: 12px; }
  .topbar__link.is-active::after { display: none; }
  .topbar__link--cta { margin-left: 0; margin-top: 10px; border-color: rgba(255,255,255,0.3); max-width: 220px; text-align: center; }
  .topbar.is-scrolled .topbar__nav .topbar__link--cta,
  .topbar.is-scrolled .topbar__nav .topbar__link--cta:hover { color: #fff !important; }
}

/* Hero mobile — NO full screen */
@media (max-width: 900px) {
  .topbar {
    padding: 18px clamp(18px, 5vw, 34px);
  }

  .topbar__brand,
  .topbar__hamburger {
    position: relative;
    z-index: 205;
  }

  .topbar.is-menu-open .topbar__brand,
  .topbar:has(.topbar__nav.is-open) .topbar__brand {
    opacity: 0;
    pointer-events: none;
  }

  .topbar__nav {
    background: linear-gradient(180deg, #111 0%, #101010 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 112px 34px 34px;
  }

  .topbar__nav::before {
    display: none;
  }

  .topbar__nav::after {
    content: "";
    display: none;
  }

  /* Animación de entrada para cada link del menú móvil */
  .topbar__nav.is-open .topbar__link {
    animation: mobileNavLinkIn 0.38s cubic-bezier(0.34, 1.3, 0.64, 1) both;
  }
  .topbar__nav.is-open .topbar__link:nth-child(1)  { animation-delay: 0.05s; }
  .topbar__nav.is-open .topbar__link:nth-child(3)  { animation-delay: 0.10s; }
  .topbar__nav.is-open .topbar__link:nth-child(5)  { animation-delay: 0.15s; }
  .topbar__nav.is-open .topbar__link:nth-child(7)  { animation-delay: 0.20s; }
  .topbar__nav.is-open .topbar__link:nth-child(9)  { animation-delay: 0.25s; }
  .topbar__nav.is-open .topbar__link:nth-child(11) { animation-delay: 0.30s; }

  @keyframes mobileNavLinkIn {
    from { opacity: 0; transform: translateX(-18px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .topbar__link,
  .topbar.is-scrolled .topbar__nav .topbar__link {
    width: auto;
    max-width: none;
    padding: 9px 0;
    color: rgba(255,255,255,0.72);
    font-size: clamp(1.45rem, 7vw, 2.2rem);
    letter-spacing: 0.04em;
    text-align: left;
    border-radius: 0;
  }

  .topbar__link:hover {
    background: transparent;
  }

  .topbar__link.is-active::after {
    display: block;
    left: 0;
    right: auto;
    bottom: 7px;
    width: 82px;
    background: rgba(255,255,255,0.82);
  }

  .topbar__link--cta {
    margin-left: 0;
    margin-top: 8px;
    padding: 9px 0;
    border-color: transparent;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 62vh;
    height: 62svh;
    min-height: 380px;
  }
  .hero-indicators { bottom: 16px; right: 16px; }
}

@media (max-width: 1100px) {
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-hero { min-height: 420px; }
  .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .shop-hero { grid-template-columns: 1fr; gap: 32px; min-height: auto; padding: 40px 32px; }
  .shop-hero__visual { justify-content: center; }
  .shop-hero__img-frame { max-width: 260px; height: 300px; }
  .shop-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .shop-hero__body { max-width: 100%; }
  .video-line, .video-feature { display: none; }
  .video-section__bg { background-position: 64% center; }
  .video-section { min-height: 100svh; }
  .video-section__inner { padding: 0 clamp(22px, 5vw, 40px); }
  .video-section__overlay { background: rgba(10,8,6,0.72); }
  .video-section__left { position: relative; top: auto; left: auto; width: min(100%, 430px); min-height: auto; padding: 0; background: transparent; border: 0; backdrop-filter: none; -webkit-backdrop-filter: none; transform: translate(0, -24px); border-radius: 0; }
  .video-actions { flex-wrap: wrap; }
  .course-row { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .course-row--reverse .course-row__image-col { order: unset; }
  .course-row--reverse .course-row__content-col { order: unset; }
  .course-row__image-wrap { aspect-ratio: 16/9; }
  .courses-section { padding: 60px clamp(20px, 4vw, 40px) 80px; }
  .courses-header { margin-bottom: 50px; }
  .pd-body { grid-template-columns: 1fr; }
  .pd-gallery { position: static; }
  .pd-long-inner { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 50px; }
  .faq-carousel { aspect-ratio: 4/3; max-width: 560px; margin: 0 auto; }
  .faq-carousel-wrap { width: 100%; }
}

@media (max-width: 720px) {
  .shop-section { padding: 48px 0 64px; }
  .shop-top-wrapper, .shop-bottom-wrapper { padding-left: 20px; padding-right: 20px; }
  .shop-hero { padding: 28px 20px 36px; }
  .shop-hero__title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .shop-arrow--l { left: 8px; }
  .shop-arrow--r { right: 8px; }
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .video-section__inner { padding: 0 clamp(22px, 5vw, 40px); }
  .video-section__left { transform: translate(0, 0); }
  .video-actions { flex-direction: column; width: 100%; max-width: 340px; }
  .courses-section { padding: 50px 20px 70px; }
  .course-name { font-size: 1.3rem; }
  .pd-topbar { flex-direction: column; gap: 12px; align-items: flex-start; }
  .pd-related-grid { grid-template-columns: 1fr; }
  .pd-actions { gap: 10px; }
  .faq-section { padding: 70px 20px; }
  .faq-title { font-size: clamp(2rem, 10vw, 2.8rem); }
  .faq-carousel { aspect-ratio: 3/4; max-width: 100%; }
}

@media (max-width: 480px) {
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .course-row { padding: 32px 0; }
  .pd-topbar__name { display: none; }
}

@media (max-width: 900px) {
  .topbar__nav,
  .shop-hero,
  .shop-hero__content,
  .shop-hero__visual,
  .sp-card,
  .sp-card__body,
  .sp-card__price,
  .video-section__inner,
  .video-section__left,
  .course-row,
  .course-row__content-col,
  .pd-body,
  .pd-info,
  .pd-long-inner,
  .pd-features-list li,
  .faq-inner,
  .faq-left {
    min-width: 0;
  }

  .btn,
  .shop-hero__cta,
  .course-cta,
  .pd-btn-cart,
  .pd-btn-hotmart {
    max-width: 100%;
  }

  .shop-main-title,
  .shop-hero__eyebrow,
  .shop-hero__title,
  .shop-hero__body,
  .sp-card__name,
  .sp-card__desc,
  .video-title,
  .video-subtitle,
  .course-name,
  .course-desc,
  .course-resources li,
  .pd-title,
  .pd-short-desc,
  .pd-long-desc,
  .pd-features-list li,
  .faq-title,
  .faq-q,
  .faq-a p {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .shop-products-header,
  .pd-price-main,
  .pd-gallery__badge-row,
  .pd-share {
    min-width: 0;
  }
}

@media (max-width: 430px) {
  .shop-products-header,
  .pd-price-main,
  .pd-gallery__badge-row {
    flex-wrap: wrap;
  }

  .shop-products-count,
  .shop-products-filter-label,
  .pd-gallery__badge,
  .pd-gallery__secure {
    min-width: 0;
  }
}


/* ══════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════ */
@keyframes fadeInUp        { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse           { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.5); opacity: 1; } }
@keyframes topbarLineIn    { from { opacity: 0; transform: scaleX(0); } to { opacity: 1; transform: scaleX(1); } }
@keyframes topbarLineGlow  { 0%, 100% { opacity: 0.68; } 50% { opacity: 1; } }
@keyframes lineGlow        { 0%, 100% { opacity: 0.55; transform: translateY(0); } 50% { opacity: 1; transform: translateY(12px); } }
@keyframes videoFeatureFloat { 0%, 100% { transform: translateY(-20%); } 50% { transform: translateY(calc(-20% - 14px)); } }
@keyframes premiumGlowShift  { from { transform: translate3d(-3%, -2%, 0) rotate(0deg); opacity: 0.75; } to { transform: translate3d(3%, 2%, 0) rotate(3deg); opacity: 1; } }
@keyframes premiumGridDrift  { from { background-position: 0 0, 0 0; } to { background-position: 68px 68px, 68px 68px; } }
@keyframes premiumRibbonOne  { 0%, 100% { transform: translateX(-8%) rotate(-10deg); } 50% { transform: translateX(8%) rotate(-7deg); } }
@keyframes premiumRibbonTwo  { 0%, 100% { transform: translateX(7%) rotate(8deg); } 50% { transform: translateX(-7%) rotate(5deg); } }
