/* ============================================================
   ALETHEIA ACUARELAS — style.css
   ============================================================ */

/* === VARIABLES === */
:root {
  --olive-dark:    #3D4F22;
  --olive:         #6B7C3E;
  --olive-light:   #8B9E52;
  --gold:          #B89A6A;
  --gold-light:    #D4B886;
  --cream:         #F8F5EE;
  --cream-dark:    #EDE9DF;
  --ink:           #0E0F0A;
  --ink-soft:      #1A1C18;
  --text:          #2C2E28;
  --text-muted:    #6B6B5E;
  --white:         #FFFFFF;

  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'DM Sans', system-ui, sans-serif;

  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:       cubic-bezier(0.4, 0, 1, 1);
  --radius:        16px;
  --radius-lg:     28px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--ink); }
body { font-family: var(--font-sans); color: var(--text); background: var(--cream); overflow-x: clip; cursor: none; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* === LOADER === */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { width: 80px; opacity: 0; animation: loaderFadeIn 0.6s 0.3s var(--ease) forwards; }
.loader-bar {
  width: 200px; height: 1px; background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--olive-light);
  transform: translateX(-100%);
  animation: loaderSlide 1s 0.2s var(--ease) forwards;
}
@keyframes loaderFadeIn { to { opacity: 1; } }
@keyframes loaderSlide  { to { transform: translateX(0); } }

/* === CUSTOM CURSOR === */
.custom-cursor {
  width: 36px; height: 36px; border: 1.5px solid var(--olive);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.custom-cursor.hover { width: 60px; height: 60px; background: rgba(107,124,62,0.15); border-color: var(--olive-light); }
.cursor-dot {
  width: 6px; height: 6px; background: var(--olive);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
}

/* === SPLASH === */
.splash-dot {
  position: fixed; width: 8px; height: 8px; border-radius: 50%;
  pointer-events: none; z-index: 9997;
  transform: translate(-50%, -50%);
  animation: splashOut 0.8s var(--ease) forwards;
}
@keyframes splashOut {
  0%   { transform: translate(-50%,-50%) translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(-50%,-50%) translate(var(--dx),var(--dy)) scale(0); opacity: 0; }
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.1; }
h1 { font-size: clamp(3rem, 7vw, 7rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.1rem; }
em { font-style: italic; color: var(--olive); }
p { line-height: 1.7; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4D5C2D;
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
}
.section-label::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 22px; height: 1px;
  background: #4D5C2D;
  transform: translateY(-50%);
}

/* === REVEAL ANIMATIONS === */
.reveal-item {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-item.revealed { opacity: 1; transform: none; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--olive-dark);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 60px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.btn-primary:hover { background: var(--olive); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(61,79,34,0.3); }
.btn-primary.large { padding: 18px 48px; font-size: 1rem; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 60px;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500; font-size: 0.9rem;
  color: var(--olive-dark);
  border-bottom: 1px solid var(--olive);
  padding-bottom: 2px;
  transition: gap 0.3s;
}
.link-arrow:hover { gap: 12px; }
.link-arrow span { transition: transform 0.3s; }
.link-arrow:hover span { transform: translateX(4px); }

/* === NAVIGATION === */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 48px;
  display: flex; align-items: center;
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  padding: 14px 48px;
  background: rgba(248,245,238,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-container { display: flex; align-items: center; width: 100%; gap: 0; }
.nav-logo {
  width: 44px; height: 44px; object-fit: contain;
  filter: invert(1);
  transition: filter 0.4s;
}
#navbar.scrolled .nav-logo { filter: none; }
.nav-links {
  display: flex; gap: 36px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--olive-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
#navbar.scrolled .nav-links a { color: var(--text-muted); }
#navbar.scrolled .nav-links a:hover { color: var(--olive-dark); }
.nav-cta {
  padding: 10px 24px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 60px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--white);
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--white); color: var(--olive-dark); }
#navbar.scrolled .nav-cta { border-color: var(--olive); color: var(--olive-dark); }
#navbar.scrolled .nav-cta:hover { background: var(--olive-dark); color: var(--white); border-color: var(--olive-dark); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.nav-hamburger span { width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; display: block; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
#navbar.scrolled .nav-hamburger span { background: var(--ink-soft); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px;
  opacity: 0; visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s var(--ease), visibility 0.4s, transform 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--olive-light); }

/* === HERO === */
.hero {
  position: relative;
  height: 100dvh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-video-container {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(1.1);
}
.hero-canvas {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,15,10,0.3) 0%,
    rgba(14,15,10,0.15) 40%,
    rgba(14,15,10,0.7) 100%
  );
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 1000px;
}
.hero-tagline {
  display: block;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  animation: fadeUp 1s 0.3s var(--ease) both;
}
.hero-title {
  color: var(--white);
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 28px;
  animation: fadeUp 1s 0.5s var(--ease) both;
}
.hero-title .italic { font-style: italic; color: var(--olive-light); }
.hero-title-line { line-height: 1.05; }
.hero-title-underline {
  width: 120px; height: 2px;
  background: linear-gradient(to right, transparent, var(--olive-light), transparent);
  margin: 8px auto;
  animation: expandLine 1.2s 1.2s var(--ease) both;
}
@keyframes expandLine { from { width: 0; opacity: 0; } to { width: 120px; opacity: 1; } }
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.75); font-weight: 300;
  max-width: 520px; margin: 0 auto 40px;
  animation: fadeUp 1s 0.7s var(--ease) both;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s 0.9s var(--ease) both;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3;
  animation: fadeUp 1s 1.4s var(--ease) both;
}
.hero-scroll span {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === STATS === */
.stats {
  background: var(--olive-dark);
  padding: 0;
}
.stats-container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1200px; margin: 0 auto;
}
.stat-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-number, .stat-text {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-value-row {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 8px;
}
.stat-value-row .stat-number { display: inline; margin-bottom: 0; }
.stat-plus { font-family: var(--font-serif); font-size: 1.8rem; line-height: 1; align-self: flex-start; padding-top: 0.15em; color: var(--white); }
.stat-item p {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}
.stat-sub {
  display: block; font-size: 0.68rem; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4); margin-top: 4px; text-transform: uppercase;
}

/* === SECTION COMMONS === */
.section-container {
  max-width: 1340px; margin: 0 auto;
  padding: 100px 48px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header p {
  color: var(--text-muted);
  max-width: 500px; margin: 16px auto 0;
  font-size: 1.05rem;
}
.section-header .section-label { padding-left: 0; }
.section-header .section-label::before { display: none; }

/* === FILOSOFIA === */
.filosofia { background: var(--cream); }
.filosofia .section-container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.filosofia-text .section-label { margin-bottom: 20px; }
.filosofia-text h2 { margin-bottom: 28px; line-height: 1.05; }
.filosofia-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; font-size: 1.05rem; }
.filosofia-text .link-arrow { margin-top: 16px; }

.filosofia-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(61,79,34,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(61,79,34,0.12); }
.pillar-icon { font-size: 1.8rem; margin-bottom: 16px; }
.pillar h3 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; margin-bottom: 8px; color: var(--olive-dark); }
.pillar p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* === ALICIA === */
.alicia {
  background: var(--ink-soft);
  position: relative; overflow: hidden;
}
.alicia::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,124,62,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.alicia-container {
  max-width: 1340px; margin: 0 auto;
  padding: 120px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.alicia-quote-side blockquote {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
}
.alicia-quote-side blockquote::before {
  content: '"';
  font-size: 8rem; line-height: 0.5;
  color: var(--olive);
  position: absolute; top: 20px; left: -30px;
  opacity: 0.4;
  font-style: normal;
}
.alicia-quote-side cite { font-size: 0.85rem; color: var(--olive-light); letter-spacing: 0.1em; text-transform: uppercase; }
.alicia-decorative {
  width: 60px; height: 2px; background: var(--olive);
  margin-top: 32px;
  animation: expandLine2 1.5s 0.5s var(--ease) both;
}
@keyframes expandLine2 { from { width: 0; } to { width: 60px; } }

.alicia-text-side .section-label { color: var(--olive-light); margin-bottom: 12px; }
.alicia-text-side .section-label::before { background: var(--olive-light); }
.alicia-text-side h2 { color: var(--white); margin-bottom: 28px; }
.alicia-text-side p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 18px; font-size: 1.02rem; }
.alicia-facts {
  display: flex; gap: 32px; margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact strong { color: var(--white); font-size: 0.95rem; font-weight: 600; }
.fact span { color: rgba(255,255,255,0.45); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* === COLORES === */
.colores { background: var(--cream-dark); }
.colores-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 60px;
  border: 1.5px solid rgba(61,79,34,0.2);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--olive-dark); color: var(--white); border-color: var(--olive-dark);
}

.colores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  margin-bottom: 52px;
}
.color-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.color-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.color-swatch {
  height: 200px; position: relative; overflow: hidden;
}
.color-swatch img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}
.color-card:hover .color-swatch img { transform: scale(1.06); }
.color-swatch-hex {
  width: 100%; height: 100%; position: relative;
  transition: transform 0.5s var(--ease);
}
.color-card:hover .color-swatch-hex { transform: scale(1.05); }
.swatch-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 80%);
  background-size: 200% 200%;
  animation: shimmer 2.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 200%; }
  100% { background-position: -200% -200%; }
}
.color-info { padding: 16px; }
.color-type {
  display: inline-block;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 20px;
  margin-bottom: 6px;
}
.type-edl     { background: rgba(194,33,91,0.1);  color: #C2215B; }
.type-nuevo   { background: rgba(61,79,34,0.12);  color: var(--olive-dark); }
.type-brillante { background: rgba(184,154,106,0.15); color: #8B6A3E; }
.type-iridiscente { background: rgba(107,140,171,0.15); color: #3A6DAE; }
.type-fluor   { background: rgba(247,231,15,0.2); color: #8B7A00; }
.type-natural { background: rgba(156,94,42,0.12); color: #7A4A1E; }
.type-especial { background: rgba(27,58,138,0.1); color: #1B3A8A; }
.type-mate    { background: rgba(0,0,0,0.05); color: var(--text-muted); }
.color-name {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 600; color: var(--ink-soft);
  margin-bottom: 2px; line-height: 1.2;
}
.color-subtitle { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 8px; }
.color-price { font-size: 0.85rem; font-weight: 600; color: var(--olive-dark); }
.colores-aviso {
  font-size: 0.88rem;
  color: var(--ink-light);
  margin-top: 6px;
}
.colores-aviso a {
  color: var(--olive);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.colores-aviso a:hover { opacity: 0.7; }
.colores-cta { text-align: center; }

/* === PALETAS === */
.paletas { background: var(--ink); }
.paletas .section-header h2 { color: var(--white); }
.paletas .section-header .section-label { color: var(--olive-light); }
.paletas .section-header .section-label::before { background: var(--olive-light); }
.paletas-aviso {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}
.paletas-cta {
  text-align: center;
  margin-top: 52px;
}
.paletas-cta p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  font-style: italic;
}

.paletas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.palette-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  display: block; text-decoration: none; color: inherit;
}
.palette-card:hover {
  transform: translateY(-6px);
  border-color: rgba(107,124,62,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
/* Foto de portada */
.palette-photo {
  height: 190px; overflow: hidden; position: relative;
}
.palette-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}
.palette-card:hover .palette-photo img { transform: scale(1.06); }
/* Cuerpo con gradiente de colores reales */
.palette-body {
  padding: 28px;
  position: relative; overflow: hidden;
}
.palette-body-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: var(--pal-grad, transparent);
  opacity: 0.10;
}
.palette-body-shimmer {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg,
    transparent 20%,
    rgba(255,255,255,0.055) 38%,
    rgba(255,255,255,0.13) 50%,
    rgba(255,255,255,0.055) 62%,
    transparent 80%);
  background-size: 220% 220%;
  animation: pal-shimmer 3.5s ease-in-out infinite;
}
.palette-fluor .palette-body-shimmer {
  background: linear-gradient(110deg,
    transparent 10%,
    rgba(247,231,15,0.07) 28%,
    rgba(255,0,110,0.09) 45%,
    rgba(131,56,236,0.09) 62%,
    rgba(6,214,160,0.07) 78%,
    transparent 92%);
  background-size: 220% 220%;
  animation: pal-shimmer 2.2s ease-in-out infinite;
}
@keyframes pal-shimmer {
  0%   { background-position: 200% 200%; }
  100% { background-position: -200% -200%; }
}
.palette-body-inner { position: relative; z-index: 1; }
.palette-tag {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  margin-bottom: 12px;
}
.tag-green  { background: rgba(107,124,62,0.2);  color: var(--olive-light); }
.tag-purple { background: rgba(74,43,154,0.2);   color: #9875CF; }
.tag-gold   { background: rgba(184,154,106,0.2); color: var(--gold-light); }
.tag-pink   { background: rgba(212,33,92,0.2);   color: #E07AA0; }
.palette-name {
  font-family: var(--font-serif);
  font-size: 1.5rem; color: var(--white);
  margin-bottom: 4px; line-height: 1.2;
}
.palette-type { font-size: 0.75rem; color: var(--olive-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; font-weight: 500; }
.palette-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 24px; }
.palette-footer { display: flex; align-items: center; justify-content: space-between; }
.palette-price { font-family: var(--font-serif); font-size: 1.6rem; color: var(--white); font-weight: 300; }
.palette-btn {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--olive-light);
  border: 1px solid rgba(107,124,62,0.4);
  padding: 8px 18px; border-radius: 40px;
  transition: all 0.3s;
}
.palette-card:hover .palette-btn { background: var(--olive); color: var(--white); border-color: var(--olive); }

/* === VIDEO REEL === */
.video-reel {
  position: relative; height: 65vh; min-height: 400px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.reel-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.45; filter: saturate(1.2);
}
.reel-overlay {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
}
.reel-overlay span {
  display: block;
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--olive-light); margin-bottom: 16px;
}
.reel-overlay h2 { text-shadow: 0 2px 30px rgba(0,0,0,0.5); }

/* === TESTIMONIALS === */
.resenas { background: var(--cream); overflow: hidden; }
.resenas-carousel {
  overflow: hidden;
  margin-bottom: 32px;
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.7s var(--ease);
}
.resena-card {
  min-width: 360px; flex: 0 0 360px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 20px;
}
.resena-stars { color: var(--olive); font-size: 1rem; letter-spacing: 2px; }
.resena-text {
  font-family: var(--font-serif);
  font-size: 1.05rem; line-height: 1.7;
  color: var(--ink-soft); flex: 1;
  font-style: italic;
}
.resena-footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.resena-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--olive-dark);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.9rem;
  flex-shrink: 0;
}
.resena-footer strong { display: block; font-size: 0.88rem; color: var(--ink-soft); }
.resena-footer span { font-size: 0.75rem; color: var(--text-muted); }
.resena-product {
  margin-left: auto;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--olive); border: 1px solid var(--olive);
  padding: 3px 10px; border-radius: 20px;
  white-space: nowrap;
}
.carousel-dots { display: flex; gap: 8px; justify-content: center; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.15);
  transition: all 0.3s; cursor: none;
}
.dot.active { background: var(--olive-dark); width: 24px; border-radius: 4px; }

/* === CTA SECTION === */
.cta-section {
  position: relative;
  background: var(--ink-soft);
  padding: 140px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.cta-content {
  position: relative; z-index: 2;
}
.cta-content h2 { color: var(--white); margin-bottom: 20px; font-size: clamp(3rem, 6vw, 6rem); }
.cta-content p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 48px; line-height: 1.7; }

/* === FOOTER === */
footer { background: var(--ink); color: rgba(255,255,255,0.6); }
.footer-container {
  max-width: 1340px; margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { width: 56px; filter: brightness(0.8); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-instagram {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--olive-light);
  border-bottom: 1px solid rgba(107,124,62,0.3);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.3s;
}
.footer-instagram:hover { color: var(--olive); }
.footer-links h4 {
  font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-contact h4 {
  font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.footer-contact p { font-size: 0.88rem; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 48px;
  text-align: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
  max-width: 1340px; margin: 0 auto;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .filosofia .section-container { grid-template-columns: 1fr; gap: 60px; }
  .alicia-container { grid-template-columns: 1fr; gap: 60px; }
  .alicia-quote-side blockquote::before { left: 0; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  #navbar { padding: 20px 24px; }
  #navbar.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .section-container { padding: 70px 24px; }
  .alicia-container { padding: 70px 24px; }
  .filosofia-pillars { grid-template-columns: repeat(2, 1fr); }
  .paletas-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .resena-card { min-width: calc(100vw - 48px); flex: 0 0 calc(100vw - 48px); }
  .stats-container { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 36px; }
  .colores-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .color-swatch { height: 160px; }
  .cta-section { padding: 100px 24px; }
  body { cursor: auto; }
  .custom-cursor, .cursor-dot { display: none; }
  .alicia-facts { flex-direction: column; gap: 16px; }
  .hero-video-container { display: none; }
  .hero-canvas { display: none; }
  .video-reel { background: var(--ink-soft); }
  .alicia-quote-side blockquote::before { display: none; }
  .alicia-quote-side blockquote { padding-top: 0; }
  .palette-photo { height: 150px; }
  .palette-body { padding: 20px; }
  .palette-name { font-size: 1.2rem; }
  .palette-desc { display: none; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .colores-filters { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 0.73rem; }
  .paletas-grid { grid-template-columns: 1fr; }
  .filosofia-pillars { grid-template-columns: 1fr; }
}

/* === MENU OPEN LOCK === */
body.menu-open { overflow: hidden; }
