/* ============================================================
   AMALOHA LA ROCCA — MAIN STYLESHEET
   Soft UI Evolution · Organic Biophilic · Feminine & Powerful
   ============================================================ */

/* ──────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
────────────────────────────────────────── */
:root {
  /* Colors */
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-pale:     #F5EDD6;
  --cream:         #F5EFE6;
  --cream-dark:    #EDE3D5;
  --dark:          #1A1209;
  --dark-mid:      #2C1F0E;
  --text:          #3D2B1A;
  --text-light:    #7A6251;
  --white:         #FDFAF6;

  /* Accent colors */
  --copper:        #C4622D;
  --sage:          #7A9E7E;
  --lavender:      #9B7DB8;

  /* Spacing */
  --space-xs:      0.5rem;
  --space-sm:      1rem;
  --space-md:      1.5rem;
  --space-lg:      2.5rem;
  --space-xl:      4rem;
  --space-xxl:     6rem;

  /* Typography */
  --font-script:   'Great Vibes', cursive;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', system-ui, sans-serif;

  /* Border radius */
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --radius-full:   9999px;

  /* Shadows */
  --shadow-gold:   0 8px 32px rgba(201, 168, 76, 0.15);
  --shadow-gold-hover: 0 16px 48px rgba(201, 168, 76, 0.25);
  --shadow-soft:   0 4px 24px rgba(61, 43, 26, 0.08);
  --shadow-deep:   0 12px 40px rgba(26, 18, 9, 0.18);

  /* Transitions */
  --ease-spring:   cubic-bezier(0.32, 0.72, 0, 1);
  --transition:    0.3s var(--ease-spring);
  --transition-slow: 0.6s var(--ease-spring);
  --transition-fast: 0.15s var(--ease-spring);

  /* Nav height */
  --nav-h:         76px;
}

/* ──────────────────────────────────────────
   2. RESET & BASE
────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ──────────────────────────────────────────
   3. TYPOGRAPHY
────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text);
}

p { line-height: 1.75; }

/* ──────────────────────────────────────────
   4. UTILITY CLASSES
────────────────────────────────────────── */
.section {
  padding: var(--space-xxl) 0;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.section__eyebrow--light {
  color: var(--gold-light);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.section__title--light {
  color: var(--white);
}

.section__title--script {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--gold-light);
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
}

.section__subtitle--light {
  color: rgba(253, 250, 246, 0.7);
}

/* ──────────────────────────────────────────
   5. BUTTONS
────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.96);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg);
  transition: 0s;
  z-index: 1;
  pointer-events: none;
}

.btn--primary:hover::before {
  left: 150%;
  transition: .7s var(--ease-spring);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--gold);
}

.btn--secondary:hover {
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
  color: var(--gold);
}

.btn--nav {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}

.btn--nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.45);
}

.btn--card {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  margin-top: auto;
}

.btn--card:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--card-copper {
  color: var(--copper);
  border-color: var(--copper);
}

.btn--card-copper:hover {
  background: var(--copper);
  color: var(--white);
}

.btn--card-sage {
  color: var(--sage);
  border-color: var(--sage);
}

.btn--card-sage:hover {
  background: var(--sage);
  color: var(--white);
}

.btn--card-lavender {
  color: var(--lavender);
  border-color: var(--lavender);
}

.btn--card-lavender:hover {
  background: var(--lavender);
  color: var(--white);
}

.btn--recurso {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}

.btn--recurso:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.45);
}

.btn--full {
  width: 100%;
}

/* ──────────────────────────────────────────
   6. FADE-IN ANIMATIONS
────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in--delay {
  transition-delay: 0.18s;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────
   7. SECTION DIVIDER
────────────────────────────────────────── */
.section-divider {
  padding: var(--space-md) 0;
  overflow: hidden;
}

.section-divider svg {
  width: 100%;
  height: 60px;
}

/* ──────────────────────────────────────────
   8. NAVIGATION
────────────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: max-content;
  max-width: 95%;
  height: 64px;
  background: rgba(253, 250, 246, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  box-shadow: 
    0 8px 32px rgba(26, 18, 9, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  transition: transform var(--transition-slow), width var(--transition), background var(--transition-slow), backdrop-filter var(--transition-slow);
}

.nav.nav--scrolled {
  background: rgba(253, 250, 246, 0.9);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 
    0 8px 32px rgba(26, 18, 9, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.nav__container {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding: 0 var(--space-sm) 0 var(--space-md);
  height: 100%;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(201, 168, 76, 0.15));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--gold-deep);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  border-radius: var(--radius-full);
  background: rgba(201, 168, 76, 0.05);
  transition: background var(--transition);
  flex-shrink: 0;
}

.nav__hamburger:hover {
  background: rgba(201, 168, 76, 0.15);
}

.nav__hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition-slow), opacity var(--transition-fast), width var(--transition);
  transform-origin: center;
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ──────────────────────────────────────────
   9. HERO
────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--cream);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: particleFloat linear infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% {
    transform: translateY(-20px) scale(1);
    opacity: 0;
  }
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--font-script);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: var(--space-md);
  letter-spacing: 0.01em;
}

.hero__body {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  max-width: 480px;
  line-height: 1.8;
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Hero Photo Frame */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__photo-frame {
  position: relative;
  width: 420px;
  max-width: 100%;
}

.hero__photo-inner {
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 2px solid rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-gold-hover);
  animation: morphFrame 8s ease-in-out infinite alternate;
}

@keyframes morphFrame {
  0%   { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
  50%  { border-radius: 40% 60% 45% 55% / 55% 45% 55% 45%; }
  100% { border-radius: 55% 45% 60% 40% / 45% 50% 50% 55%; }
}

.hero__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--cream-dark) 0%, var(--gold-pale) 50%, var(--cream-dark) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--space-md);
}

.hero__photo-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.7;
}

.hero__photo-deco {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  animation: rotateDeco 20s linear infinite;
}

.hero__photo-deco::before {
  content: '';
  position: absolute;
  top: 10px;
  right: -30px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
}

@keyframes rotateDeco {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__scroll-hint span {
  display: block;
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%       { transform: scaleY(1); transform-origin: bottom; }
  100%      { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ──────────────────────────────────────────
   10. MANIFESTO STRIP
────────────────────────────────────────── */
.manifesto {
  background-color: var(--dark);
  position: relative;
  text-align: center;
  padding: var(--space-xl) 0;
}

.manifesto__divider-top,
.manifesto__divider-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  overflow: hidden;
  pointer-events: none;
}

.manifesto__divider-top {
  top: -1px;
}

.manifesto__divider-bottom {
  bottom: -1px;
}

.manifesto__divider-top svg,
.manifesto__divider-bottom svg {
  width: 100%;
  height: 100%;
}

.manifesto__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.manifesto__ornament {
  display: flex;
  justify-content: center;
}

.manifesto__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.4;
}

.manifesto__quote em {
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
}

/* ──────────────────────────────────────────
   11. SOBRE AMALOHA
────────────────────────────────────────── */
.sobre {
  background-color: var(--cream);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: center;
}

.sobre__visual {
  display: flex;
  justify-content: center;
}

.sobre__photo-frame {
  position: relative;
  width: 360px;
  max-width: 100%;
}

.sobre__photo-inner {
  border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-gold);
  animation: morphCircle 10s ease-in-out infinite alternate;
}

@keyframes morphCircle {
  0%   { border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%; }
  50%  { border-radius: 45% 55% 55% 45% / 50% 45% 55% 50%; }
  100% { border-radius: 55% 45% 45% 55% / 45% 55% 45% 55%; }
}

.sobre__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--gold-pale) 0%, var(--cream-dark) 60%, var(--gold-pale) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--space-md);
}

.sobre__photo-placeholder span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.7;
}

.sobre__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.sobre__bio p {
  color: var(--text);
  margin-bottom: var(--space-sm);
  font-size: 1.025rem;
  line-height: 1.8;
}

.sobre__certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: var(--space-sm) 0;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.02em;
  transition: all var(--transition);
}

.badge:hover {
  background: rgba(201, 168, 76, 0.18);
  color: var(--gold);
  border-color: var(--gold);
}

.sobre__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.stat-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-card__label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.3;
}

.stat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ──────────────────────────────────────────
   12. FORMACIONES
────────────────────────────────────────── */
.formaciones {
  background-color: var(--cream-dark);
}

.formaciones__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.formaciones__grid > article {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .formaciones__grid > article:nth-child(1) { grid-column: span 6; }
  .formaciones__grid > article:nth-child(2) { grid-column: span 6; }
  .formaciones__grid > article:nth-child(3) { grid-column: span 6; }
  .formaciones__grid > article:nth-child(4) { grid-column: span 6; }
}

/* Program Cards - Double-Bezel Pattern */
.program-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: calc(var(--space-lg) + 0.25rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 12px 40px rgba(26, 18, 9, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 1),
    0 0 0 1px rgba(201, 168, 76, 0.06);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  border: 4px solid var(--cream-dark);
}

.program-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  border-radius: inherit;
  z-index: 10;
}

.program-card > * {
  z-index: 2;
  position: relative;
}

.program-card__bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 250px;
  object-fit: contain;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

@media (max-width: 768px) {
  .program-card__bg-logo {
    width: 70%;
  }
}

.program-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 
    var(--shadow-gold-hover),
    inset 0 0 60px rgba(255, 255, 255, 0.6),
    inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.program-card:hover .program-card__bg-logo {
  opacity: 0.08;
  transform: translate(-50%, -50%) scale(1.05);
}

.program-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.program-card--gold .program-card__accent  { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.program-card--copper .program-card__accent { background: linear-gradient(90deg, var(--copper), #E8935A); }
.program-card--sage .program-card__accent   { background: linear-gradient(90deg, var(--sage), #A8C9AC); }
.program-card--lavender .program-card__accent { background: linear-gradient(90deg, var(--lavender), #C0A8D8); }

.program-card__icon {
  margin-bottom: var(--space-xs);
}

.program-card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: linear-gradient(135deg, var(--lavender), #C0A8D8);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(155, 125, 184, 0.3);
}

.program-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  width: fit-content;
}

.program-card__tag--copper  { color: var(--copper); background: rgba(196, 98, 45, 0.08); }
.program-card__tag--sage    { color: var(--sage); background: rgba(122, 158, 126, 0.1); }
.program-card__tag--lavender { color: var(--lavender); background: rgba(155, 125, 184, 0.1); }

.program-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
}

.program-card__subtitle {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
  font-weight: 300;
  margin-top: -0.25rem;
}

.program-card__desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  flex-grow: 1;
}

.program-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.program-card__list li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 1.1rem;
  position: relative;
}

.program-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

.program-card--copper .program-card__list li::before { background: var(--copper); }
.program-card--sage .program-card__list li::before   { background: var(--sage); }
.program-card--lavender .program-card__list li::before { background: var(--lavender); }

.detail-pill {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(122, 158, 126, 0.3);
  border-radius: var(--radius-full);
  color: var(--sage);
  background: rgba(122, 158, 126, 0.07);
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
}

/* Accordion */
.accordion {
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem var(--space-sm);
  background: rgba(201, 168, 76, 0.05);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  transition: background var(--transition);
}

.accordion__trigger:hover {
  background: rgba(201, 168, 76, 0.1);
}

.accordion__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__content.is-open {
  max-height: 500px;
}

.accordion__inner {
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.stage {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.stage__number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}

.stage strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.stage p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Sesiones Banner */
.sesiones-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.sesiones-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.sesiones-banner__info {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.sesiones-banner__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  line-height: 1;
}

.sesiones-banner__price small {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.8;
}

.sesiones-banner__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.sesiones-banner__desc {
  font-size: 0.9rem;
  color: rgba(253, 250, 246, 0.65);
  max-width: 420px;
}

/* ──────────────────────────────────────────
   13. RECURSOS GRATUITOS
────────────────────────────────────────── */
.recursos {
  position: relative;
  background-color: var(--dark);
  overflow: hidden;
}

.recursos__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(44, 31, 14, 0.8) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.recursos__inner {
  position: relative;
  z-index: 1;
}

.recursos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.recurso-card {
  background: rgba(253, 250, 246, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.recurso-card:hover {
  background: rgba(253, 250, 246, 0.07);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.recurso-card__icon {
  margin-bottom: var(--space-xs);
}

.recurso-card__type {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.recurso-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
}

.recurso-card__desc {
  font-size: 0.9rem;
  color: rgba(253, 250, 246, 0.6);
  line-height: 1.7;
  flex-grow: 1;
}

.recurso-card__desc em {
  color: var(--gold-light);
  font-style: italic;
}

/* Lead Forms */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.lead-form__field {
  position: relative;
}

.lead-form input {
  width: 100%;
  padding: 0.65rem 1rem;
  background: rgba(253, 250, 246, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.875rem;
  transition: border-color var(--transition), background var(--transition);
}

.lead-form input::placeholder {
  color: rgba(253, 250, 246, 0.35);
}

.lead-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(253, 250, 246, 0.09);
}

.lead-form__success {
  font-size: 0.8rem;
  color: var(--gold-light);
  text-align: center;
  min-height: 1.2em;
}

.lead-form__privacy {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: rgba(122, 98, 81, 0.8);
  margin-top: 0.25rem;
}

/* ──────────────────────────────────────────
   14. TESTIMONIOS
────────────────────────────────────────── */
.testimonios {
  background-color: var(--cream);
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.testimonial-card__quote {
  opacity: 0.4;
  margin-bottom: var(--space-sm);
}

.testimonial-card__text {
  max-width: 680px;
  margin: 0 auto var(--space-lg);
}

.testimonial-card__text p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--cream-dark));
  border: 2px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: normal;
  color: var(--text);
  display: block;
}

.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonial-card__program {
  display: inline-block;
  margin-top: var(--space-xs);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  color: var(--text-light);
  transition: all var(--transition);
  background: transparent;
}

.carousel__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.carousel__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.carousel__dot--active,
.carousel__dot:hover {
  background: var(--gold);
  transform: scale(1.3);
}

/* ──────────────────────────────────────────
   14b. VIDEO TESTIMONIOS
────────────────────────────────────────── */
.video-info-banner {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: var(--space-md);
}

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

.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gold-pale);
  transition: border-color 0.3s, transform 0.3s;
}

.video-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.video-card video {
  width: 100%;
  display: block;
  background: linear-gradient(135deg, #C9A84C22, #C4622D22);
}

/* Play button overlay (TASK 13) */
.video-card::after {
  content: '\25B6';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(26,18,9,.65);
  color: var(--gold);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: .8;
  transition: opacity 0.25s var(--ease-spring);
  text-indent: 3px;
}
.video-card:hover::after { opacity: 0; }

.video-grid__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: var(--space-md);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────
   15. INSTAGRAM TEASER
────────────────────────────────────────── */
.instagram {
  background-color: var(--cream-dark);
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.instagram__post {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  display: block;
}

.instagram__placeholder {
  width: 100%;
  height: 100%;
  background: var(--grad);
  transition: transform var(--transition-slow);
}

.instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 9, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram__post:hover .instagram__placeholder {
  transform: scale(1.08);
}

.instagram__post:hover .instagram__overlay {
  opacity: 1;
}

.instagram__cta {
  text-align: center;
}

/* ──────────────────────────────────────────
   16. CONTACTO
────────────────────────────────────────── */
.contacto {
  position: relative;
  background-color: var(--dark);
  overflow: hidden;
}

.contacto__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contacto__texture {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.contacto__inner {
  position: relative;
  z-index: 1;
}

.contacto__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__field label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(253, 250, 246, 0.6);
  text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
  width: 100%;
  padding: 0.875rem 1.1rem;
  background: rgba(253, 250, 246, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.contact-form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6 L8 10 L12 6' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form__field select option {
  background: var(--dark-mid);
  color: var(--white);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(253, 250, 246, 0.3);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(253, 250, 246, 0.08);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__success {
  padding: var(--space-sm);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

.contact-form__success.is-visible {
  display: block;
}

/* Contact Info */
.contact-info {
  padding: var(--space-lg);
  background: rgba(253, 250, 246, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-lg);
  height: 100%;
}

.contact-info__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.contact-info__intro {
  font-size: 0.95rem;
  color: rgba(253, 250, 246, 0.55);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.6);
  margin-bottom: 0.2rem;
}

.contact-info__value {
  font-size: 0.95rem;
  color: rgba(253, 250, 246, 0.8);
  transition: color var(--transition);
}

.contact-info__value:hover {
  color: var(--gold-light);
}

.contact-info__quote {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
}

.contact-info__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(201, 168, 76, 0.7);
  margin-bottom: 0.3rem;
}

.contact-info__quote span {
  font-size: 0.8rem;
  color: rgba(253, 250, 246, 0.35);
  letter-spacing: 0.05em;
}

/* ──────────────────────────────────────────
   17. FOOTER
────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__logo img {
  filter: brightness(0) invert(0.9);
  opacity: 0.85;
  transition: opacity var(--transition);
}

.footer__logo:hover img {
  opacity: 1;
}

.footer__tagline {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--gold);
  opacity: 0.7;
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.footer__nav a {
  font-size: 0.85rem;
  color: rgba(253, 250, 246, 0.55);
  transition: color var(--transition);
  letter-spacing: 0.03em;
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
  align-items: center;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(253, 250, 246, 0.4);
  border: 1px solid rgba(253, 250, 246, 0.1);
  transition: all var(--transition);
}

.footer__social-link:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

.footer__bottom {
  text-align: center;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(253, 250, 246, 0.3);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.footer__links {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.75rem;
  color: rgba(253, 250, 246, 0.25);
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.footer__links a:hover {
  color: var(--gold-light);
}

/* ──────────────────────────────────────────
   18. RESPONSIVE — TABLET (768px)
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sobre__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .sobre__visual {
    order: -1;
  }

  .sobre__photo-frame {
    width: 280px;
  }

  .sobre__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .contacto__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }

  .footer__social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xxl: 4rem;
    --space-xl: 2.5rem;
  }

  /* Nav mobile */
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(245, 239, 230, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    display: block;
    padding: 0.875rem var(--space-lg);
    font-size: 1rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    width: 100%;
  }

  .nav__link::after { display: none; }

  .btn--nav {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
  }

  .hero__content {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__body {
    max-width: 100%;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__photo-frame {
    width: 260px;
  }

  /* Formaciones */
  .formaciones__grid {
    grid-template-columns: 1fr;
  }

  .sesiones-banner {
    padding: var(--space-lg) var(--space-md);
  }

  .sesiones-banner__content {
    flex-direction: column;
    text-align: center;
  }

  .sesiones-banner__info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
  }

  /* Recursos */
  .recursos__grid {
    grid-template-columns: 1fr;
  }

  /* Instagram */
  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer__nav ul {
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  :root {
    --space-xxl: 3rem;
  }

  .hero__title {
    font-size: 2.8rem;
  }

  .sobre__stats {
    grid-template-columns: 1fr;
  }

  .stat-card {
    flex-direction: row;
    text-align: left;
  }

  .instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    gap: var(--space-md);
  }
}

/* ──────────────────────────────────────────
   19. LARGE SCREENS (1200px+)
────────────────────────────────────────── */
@media (min-width: 1200px) {
  .recursos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ──────────────────────────────────────────
   20. ACCESSIBILITY & REDUCED MOTION
────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ──────────────────────────────────────────
   21. COSMOS ORBIT — Hero Visual
────────────────────────────────────────── */

/* Hero background — cálido y natural */
.hero {
  background:
    radial-gradient(ellipse 70% 70% at 75% 50%, rgba(201,168,76,.09) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 90% 10%, rgba(196,98,45,.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(201,168,76,.04) 0%, transparent 60%),
    var(--cream);
}

/* ── Cosmos scene container ── */
.hero__cosmos {
  position: relative;
  width: 520px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  perspective: 800px;
}

/* ── Glow central ── */
.cosmos__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(201,168,76,.18) 0%,
    rgba(201,168,76,.06) 40%,
    transparent 70%
  );
  animation: glow-breathe 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes glow-breathe {
  0%, 100% { transform: translate(-50%,-50%) scale(1);   opacity: .8; }
  50%       { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}

/* ── Anillos orbitales 3D ── */
.cosmos__ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,.35);
  transform-origin: center;
  pointer-events: none;
  z-index: 2;
}

.cosmos__ring--1 {
  width: 380px; height: 380px;
  margin: -190px 0 0 -190px;
  transform: rotateX(72deg) rotateZ(0deg);
  animation: ring-spin-1 18s linear infinite;
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 0 12px rgba(201,168,76,.1), inset 0 0 12px rgba(201,168,76,.05);
}
.cosmos__ring--2 {
  width: 440px; height: 440px;
  margin: -220px 0 0 -220px;
  transform: rotateX(68deg) rotateY(30deg) rotateZ(0deg);
  animation: ring-spin-2 24s linear infinite;
  border-color: rgba(196,98,45,.25);
  border-style: dashed;
}
.cosmos__ring--3 {
  width: 480px; height: 480px;
  margin: -240px 0 0 -240px;
  transform: rotateX(78deg) rotateY(-20deg) rotateZ(0deg);
  animation: ring-spin-3 32s linear infinite reverse;
  border-color: rgba(201,168,76,.15);
}

@keyframes ring-spin-1 {
  to { transform: rotateX(72deg) rotateZ(360deg); }
}
@keyframes ring-spin-2 {
  to { transform: rotateX(68deg) rotateY(30deg) rotateZ(360deg); }
}
@keyframes ring-spin-3 {
  to { transform: rotateX(78deg) rotateY(-20deg) rotateZ(-360deg); }
}

/* ── Partículas flotantes ── */
.cosmos__particles { position: absolute; inset: 0; pointer-events: none; z-index: 3; }

.cp {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(4px * var(--s));
  height: calc(4px * var(--s));
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: cp-float 6s ease-in-out infinite var(--d);
  box-shadow: 0 0 6px rgba(201,168,76,.6);
}
@keyframes cp-float {
  0%, 100% { opacity: 0;   transform: translateY(0)   scale(.8); }
  30%       { opacity: .7; }
  50%       { opacity: .9; transform: translateY(-14px) scale(1); }
  70%       { opacity: .5; }
}

/* Orbit scene container */
.hero__orbit-scene {
  position: relative;
  width: 480px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Circular photo */
.hero__photo-circle {
  position: relative;
  z-index: 5;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,.4);
  box-shadow:
    0 0 0 10px rgba(201,168,76,.06),
    0 0 0 22px rgba(201,168,76,.03),
    0 24px 60px rgba(26,18,9,.18),
    0 0 80px rgba(201,168,76,.12);
}

.hero__photo-circle .hero__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--cream-dark) 0%, var(--gold-pale) 50%, var(--cream-dark) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
}

/* Decorative halos */
.orbit-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.orbit-halo--1 {
  width: 310px; height: 310px;
  border: 1px solid rgba(201,168,76,.2);
  animation: halo-pulse 4s ease-in-out infinite;
}
.orbit-halo--2 {
  width: 360px; height: 360px;
  border: 1px solid rgba(201,168,76,.1);
  animation: halo-pulse 4s ease-in-out infinite .8s;
}
@keyframes halo-pulse {
  0%, 100% { opacity: .6; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;  transform: translate(-50%,-50%) scale(1.03); }
}

/* Butterfly base */
.orbit-butterfly {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 4;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(201,168,76,.55));
  will-change: transform;
}

/* Outer ring: 8 butterflies, clockwise, radius 220px, 16s */
.ob-outer {
  font-size: 1.5rem;
  animation: orbit-cw 16s linear infinite;
  animation-delay: calc(var(--i) * -2s); /* -16s/8 = -2s per step */
}

/* Inner ring: 5 butterflies, counter-clockwise, radius 148px, 10s, smaller */
.ob-inner {
  font-size: 1rem;
  opacity: .75;
  animation: orbit-ccw 10s linear infinite;
  animation-delay: calc(var(--i) * -2s); /* -10s/5 = -2s per step */
}

@keyframes orbit-cw {
  from { transform: translate(-50%,-50%) rotate(0deg)   translateX(220px) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg) translateX(220px) rotate(-360deg); }
}

@keyframes orbit-ccw {
  from { transform: translate(-50%,-50%) rotate(0deg)    translateX(148px) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(-360deg) translateX(148px) rotate(360deg); }
}

/* Responsive orbit */
@media (max-width: 900px) {
  .hero__orbit-scene {
    width: 380px;
    height: 380px;
  }
  .hero__photo-circle {
    width: 220px;
    height: 220px;
  }
  @keyframes orbit-cw {
    from { transform: translate(-50%,-50%) rotate(0deg)   translateX(170px) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg) translateX(170px) rotate(-360deg); }
  }
  @keyframes orbit-ccw {
    from { transform: translate(-50%,-50%) rotate(0deg)    translateX(115px) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(-360deg) translateX(115px) rotate(360deg); }
  }
}

@media (max-width: 640px) {
  .hero__orbit-scene {
    width: 300px;
    height: 300px;
  }
  .hero__photo-circle {
    width: 180px;
    height: 180px;
  }
  .ob-outer { font-size: 1.1rem; }
  .ob-inner { font-size: .8rem; }
}

/* ──────────────────────────────────────────
   22. GLASSMORPHISM NAVBAR
────────────────────────────────────────── */
.nav {
  background: transparent;
  height: auto;
  padding: 16px 24px;
  top: 0;
  left: 0;
  right: 0;
}

.nav__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px 24px;
  height: auto;
  background: rgba(245,239,230,.18);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,.22);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,.3),
    0 4px 24px rgba(26,18,9,.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.nav--scrolled .nav__container {
  background: rgba(245,239,230,.82);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,.4),
    0 8px 32px rgba(26,18,9,.12),
    0 0 0 1px rgba(201,168,76,.15);
}

.nav__logo img {
  height: 52px;
}

.hero {
  padding-top: 0;
}

/* ──────────────────────────────────────────
   23. VIDEO HERO
────────────────────────────────────────── */

/* Hero with video background — overrides cream bg */
.hero--video {
  background: #0E1A0D; /* dark forest fallback while video loads */
  padding-top: 0;
}

/* The <video> element — fills full hero, object-fit cover */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}

/* Placeholder: simulates a natural park / green grass scene
   Used until Amaloha records the real video */
.hero__video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 60%, rgba(62,90,48,.55) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 55% 80%, rgba(44,68,30,.7) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #1A2B10 0%, #0D1A0A 100%);
  /* subtle light bokeh dots */
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 60%, rgba(62,90,48,.55) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 55% 80%, rgba(44,68,30,.7) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #1A2B10 0%, #0D1A0A 100%);
}
/* Soft dappled-light blobs over the placeholder */
.hero__video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 120px at 62% 38%, rgba(201,168,76,.12) 0%, transparent 70%),
    radial-gradient(circle 200px at 72% 55%, rgba(140,200,100,.08) 0%, transparent 70%),
    radial-gradient(circle 80px  at 58% 28%, rgba(201,168,76,.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Left-heavy gradient overlay:
   - Left side: dark → text legibility
   - Right side: mostly transparent → Amaloha visible in video
   - Bottom: slight dark strip for scroll hint visibility */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(10,14,8,.82) 0%,
      rgba(10,14,8,.65) 25%,
      rgba(10,14,8,.38) 50%,
      rgba(10,14,8,.12) 70%,
      rgba(10,14,8,.04) 85%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(10,14,8,.45) 0%,
      transparent 18%
    );
  pointer-events: none;
}

/* ── Butterfly overlay: floats over Amaloha's position ──
   Positioned at ~63% from left, ~50% vertically.
   This is where she'll stand in the video (right column area). */
.hero__butterfly-overlay {
  position: absolute;
  /* right column center: ~65% from left */
  left: 63%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  z-index: 10;
  pointer-events: none;
}

/* Amaloha halo — radial gold glow at center of orbit */
.amaloha-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(201,168,76,.18) 0%,
    rgba(201,168,76,.08) 35%,
    rgba(196,98,45,.04)  55%,
    transparent 72%
  );
  animation: glow-breathe 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
/* Second halo ring */
.amaloha-halo::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.18);
  animation: halo-pulse 6s ease-in-out infinite;
}

/* Spacer for the right column (no visual element — Amaloha is in video) */
.hero__visual-spacer {
  /* invisible — just maintains the 2-col grid layout */
}

/* ── Text color overrides on dark video background ── */
.hero--video .hero__eyebrow {
  color: var(--gold-light);
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}

.hero--video .hero__title {
  color: #F5EDE0;
  text-shadow: 0 2px 24px rgba(0,0,0,.55), 0 0 40px rgba(201,168,76,.18);
}

.hero--video .hero__subtitle {
  color: rgba(245, 237, 224, 0.88);
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}

.hero--video .hero__body {
  color: rgba(240, 228, 210, 0.78);
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

/* Secondary CTA on dark bg */
.btn--video {
  border-color: rgba(245,239,230,.5);
  color: rgba(245,239,230,.9);
}
.btn--video:hover {
  background: rgba(245,239,230,.12);
  border-color: rgba(245,239,230,.8);
  color: #FDFAF6;
}

/* ── Orbit butterfly sizing inside overlay ──
   (re-declares the base butterfly position within the overlay container) */
.hero__butterfly-overlay .orbit-butterfly {
  top: 50%;
  left: 50%;
}

/* ── Responsive adjustments ── */
@media (max-width: 900px) {
  .hero__butterfly-overlay {
    left: 50%;
    top: 42%;
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 640px) {
  /* On mobile, overlay moves to upper portion, smaller orbit */
  .hero__butterfly-overlay {
    left: 50%;
    top: 35%;
    width: 300px;
    height: 300px;
  }
  .amaloha-halo {
    width: 220px;
    height: 220px;
  }
  .amaloha-halo::after {
    width: 300px;
    height: 300px;
  }
  .hero--video .hero__body {
    display: none; /* hide body text on very small screens for focus */
  }
}

/* ───────────────────────────
   FE-17 PRODUCTOS & CHECKOUT
─────────────────────────── */
.giftcard-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 168, 76, 0.1);
}
@media (max-width: 900px) {
  .giftcard-section { grid-template-columns: 1fr; padding: var(--space-md); }
}

.giftcard-preview {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.giftcard-preview img {
  width: 100%;
  aspect-ratio: 1.586;
  object-fit: cover;
  display: block;
}
.giftcard-preview__content {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  color: var(--dark);
  z-index: 2;
}
.gc-brand { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 2px; }
.gc-amount { font-family: var(--font-display); font-size: 3rem; margin-top: auto; }
.gc-to { font-size: 1.1rem; font-weight: 500; margin-bottom: 0.5rem; }
.gc-code { font-size: 0.8rem; letter-spacing: 2px; opacity: 0.6; }

.checkout-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.checkout-modal.is-open { opacity: 1; pointer-events: all; }
.checkout-modal__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(10px);
}
.checkout-modal__content {
  position: relative; z-index: 10;
  background: var(--white); width: 90%; max-width: 500px;
  border-radius: var(--radius-lg); padding: var(--space-lg);
  box-shadow: var(--shadow-deep); max-height: 90vh; overflow-y: auto;
}
.checkout-modal__close {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 2rem; color: var(--text-light); line-height: 1;
}

/* Auth modal inputs — override dark-context lead-form styles */
#authModal .lead-form input,
#authModal .lead-form select {
  color: var(--dark) !important;
  background: var(--cream-dark) !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
}
#authModal .lead-form input::placeholder {
  color: var(--text-light) !important;
  opacity: 1;
}
#authModal .lead-form input:focus {
  border-color: var(--gold) !important;
  background: var(--cream) !important;
  outline: none;
}
#authModal label {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
}
.gc-btn { padding: 0.5rem 1.5rem; border: 1px solid var(--gold); background: transparent; color: var(--text); border-radius:30px; }
.gc-btn.active { background: var(--gold); color: var(--white); box-shadow: var(--shadow-gold); }

/* ──────────────────────────────────────────
   LEGAL & CHECKOUT (FE-64, FE-66)
────────────────────────────────────────── */

.checkout-legal {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-legal__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkout-legal label {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
  cursor: pointer;
}

.checkout-legal input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--gold);
}

.receipt-upload {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 12px;
  border: 1.5px dashed var(--gold-pale);
  text-align: center;
}

.receipt-upload__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.receipt-upload__dropzone {
  position: relative;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.receipt-upload__dropzone:hover {
  background: rgba(201, 168, 76, 0.05);
}

.receipt-upload__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.receipt-upload__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.receipt-upload__preview {
  margin-top: 1rem;
  max-width: 100%;
  border-radius: 8px;
  display: none;
}

/* ── SHOP CATALOG (productos.html) ───────────────────────────────────────── */
.shop-cover {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.shop-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-cover-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.shop-type-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shop-card-title {
  font-family: var(--lux-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--lux-dark);
  margin: 0;
}

.shop-card-desc {
  font-size: 0.82rem;
  opacity: 0.6;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.shop-card-price {
  font-family: var(--lux-font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--lux-dark);
  white-space: nowrap;
}

.shop-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.shop-btn:hover { opacity: 0.85; }

.shop-btn--primary {
  background: var(--lux-dark);
  color: white;
}

.shop-btn--cart {
  background: var(--lux-gold);
  color: var(--lux-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.shop-btn--free {
  background: transparent;
  border: 1px solid var(--lux-border);
  color: var(--lux-dark);
}

.shop-badge-offer {
  background: var(--lux-gold);
  color: var(--lux-dark);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  vertical-align: middle;
  margin-left: 4px;
}

.shop-badge-offer-abs {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--lux-gold);
  color: var(--lux-dark);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem;
  opacity: 0.5;
  font-size: 1rem;
}

/* Free resource cards */
.shop-free-card {
  background: white;
  border-radius: 1.25rem;
  border: 1px solid var(--lux-border);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shop-free-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.shop-free-body {
  flex: 1;
  min-width: 0;
}

.shop-free-badge {
  display: inline-block;
  background: rgba(74, 156, 106, 0.12);
  color: #2d7a4f;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.shop-free-title {
  font-family: var(--lux-font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 2px;
  color: var(--lux-dark);
}

.shop-free-desc {
  font-size: 0.78rem;
  opacity: 0.55;
  margin: 0;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

