/* ═══════════════════════════════════════════════
   TATIS STUDIO – STYLES VIP
   ═══════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --purple:      #6A0DAD;
  --purple-mid:  #8B26D4;
  --purple-light:#B06DE8;
  --purple-pale: #f3eafc;
  --gold:        #D4AF37;
  --gold-light:  #EDD060;
  --gold-pale:   #fdf8e7;
  --white:       #FFFFFF;
  --off:         #faf9fb;
  --dark:        #0d0915;
  --dark2:       #1a1026;
  --text:        #2c1f3e;
  --muted:       #7a6990;

  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 8px 32px rgba(106,13,173,.13);
  --shadow-gold: 0 4px 24px rgba(212,175,55,.25);
  --glow-purple: 0 0 40px rgba(106,13,173,.25);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;
  --ease:        cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── UTILIDADES ─── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════════
   LOADER
════════════════════════════════════════════════ */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: linear-gradient(145deg, #fff 0%, var(--purple-pale) 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  animation: loaderPop .6s var(--ease) both;
}
@keyframes loaderPop {
  from { opacity:0; transform:scale(.85) }
  to   { opacity:1; transform:scale(1) }
}

.loader-logo {
  height: 100px; width: auto; max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(106,13,173,.35));
  animation: shimmer 1.4s ease-in-out infinite;
}
@keyframes shimmer {
  0%,100% { filter: drop-shadow(0 0 10px rgba(212,175,55,.3)); }
  50%      { filter: drop-shadow(0 0 30px rgba(212,175,55,.8)); }
}

.loader-name  { font-family: var(--font-serif); font-style: italic; font-size: 2.8rem; color: var(--purple); }
.loader-name-sub { font-family: var(--font-sans); font-weight: 200; font-size: 1.1rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-top: -12px; }

.loader-dots  { display: flex; gap: 8px; }
.loader-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: dot 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: .2s; }
.loader-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dot {
  0%,80%,100% { transform:scale(.6); opacity:.4; }
  40%         { transform:scale(1.2); opacity:1; }
}

/* ═══════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .4s, box-shadow .4s;
}
.header.scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 2px 20px rgba(106,13,173,.1);
}

.header-wrap {
  max-width: 1300px; margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}

.header-gold-bar {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--purple-light), var(--gold), transparent);
}

/* Logo */
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 68px; width: auto; max-width: 200px; object-fit: contain; }
.logo-fallback {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.8rem; color: var(--purple); font-weight: 600;
}

/* Nav */
.main-nav {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto;
}
.n-link {
  font-size: .88rem; font-weight: 300; letter-spacing: .05em;
  color: var(--text); padding: 8px 14px; border-radius: 50px;
  transition: all .25s;
  white-space: nowrap;
}
.n-link:hover { color: var(--purple); background: var(--purple-pale); }
.n-cta {
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white) !important;
  font-weight: 400;
  box-shadow: 0 4px 16px rgba(106,13,173,.3);
}
.n-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--dark) !important;
  box-shadow: var(--shadow-gold);
}

.header-right { display: flex; align-items: center; gap: 16px; margin-left: 8px; }

.h-socials { display: flex; gap: 10px; }
.h-soc {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all .25s;
}
.h-soc:hover { color: var(--purple); background: var(--purple-pale); }

/* Hamburger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border-radius: 8px;
}
.burger span {
  width: 22px; height: 2px; background: var(--text); border-radius: 2px;
  transition: all .3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ═══════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  position: relative; height: 100dvh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-vid {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .9;
}
.hero-img-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,9,21,.72) 0%, rgba(106,13,173,.55) 60%, rgba(13,9,21,.8) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  animation: heroIn 1.2s var(--ease) .3s both;
}
@keyframes heroIn {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-sans); font-weight: 300;
  letter-spacing: .35em; text-transform: uppercase;
  font-size: .8rem; color: var(--gold);
  margin-bottom: 20px;
  animation: heroIn 1s var(--ease) .5s both;
}
.hero-h1 {
  font-family: var(--font-serif); font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,.3), 0 0 80px rgba(212,175,55,.2);
  margin-bottom: 24px;
  animation: heroIn 1s var(--ease) .7s both;
  letter-spacing: -.02em;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }

.hero-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.4rem); font-weight: 300;
  color: rgba(255,255,255,.9); letter-spacing: .02em;
  margin-bottom: 44px; line-height: 1.6;
  animation: heroIn 1s var(--ease) .9s both;
  max-width: 680px; margin-left: auto; margin-right: auto;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: heroIn 1s var(--ease) 1.1s both;
}

.btn-gold-hero {
  display: inline-block; padding: 18px 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark); font-weight: 600; letter-spacing: .04em;
  border-radius: 50px; font-size: 1.05rem;
  box-shadow: 0 8px 32px rgba(212,175,55,.5), 0 0 0 1px rgba(212,175,55,.3);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}

.btn-gold-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: translate(-50%, -50%);
  transition: width .6s, height .6s;
}

.btn-gold-hero:hover::before {
  width: 300px;
  height: 300px;
}

.btn-gold-hero:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212,175,55,.7), 0 0 0 2px rgba(212,175,55,.5);
}

.btn-outline-hero {
  display: inline-block; padding: 18px 40px;
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white); border-radius: 50px;
  font-size: 1.05rem; font-weight: 400; letter-spacing: .04em;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.08);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}

.btn-outline-hero:hover {
  background: rgba(255,255,255,.18);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,.3);
}

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; opacity: .6;
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(-8px); } }

.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid var(--gold);
  border-radius: 12px; margin: 0 auto;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px; background: var(--gold);
  border-radius: 2px; animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0%,100%{opacity:0;transform:translateY(0)} 30%{opacity:1} 100%{opacity:0;transform:translateY(14px)} }

/* ═══════════════════════════════════════════════
   SECTIONS – BASE
════════════════════════════════════════════════ */
.sec {
  padding: 100px 0;
  background: var(--white);
}
.sec-dark {
  background: var(--dark);
  color: var(--white);
}
.sec-purple {
  background: linear-gradient(135deg, var(--purple) 0%, var(--dark) 100%);
  color: var(--white);
}

.sec-badge {
  display: inline-block;
  font-size: .7rem; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--purple);
  border: 1.5px solid rgba(106,13,173,.25);
  padding: 7px 20px; border-radius: 50px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(106,13,173,.06), rgba(212,175,55,.04));
  position: relative;
  box-shadow: 0 4px 16px rgba(106,13,173,.08);
}

.sec-badge::before {
  content: '✦';
  position: absolute;
  left: -24px;
  color: var(--gold);
  font-size: .9rem;
  opacity: .6;
}

.sec-badge.gold {
  color: var(--gold); border-color: rgba(212,175,55,.4);
  background: linear-gradient(135deg, rgba(212,175,55,.1), rgba(106,13,173,.05));
  box-shadow: 0 4px 16px rgba(212,175,55,.12);
}

.sec-title {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300; line-height: 1.15;
  color: var(--text); margin-bottom: 16px;
  letter-spacing: -.01em;
  position: relative;
  padding-bottom: 20px;
}

.sec-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple-light));
  border-radius: 2px;
}

.sec-title.light { color: var(--white); }
.sec-title em { font-style: italic; color: var(--purple); font-weight: 400; }
.sec-title.light em { color: var(--gold-light); }

.sec-sub {
  font-size: 1.08rem; font-weight: 300; color: var(--muted);
  margin-bottom: 64px; line-height: 1.6;
  max-width: 640px;
}
.sec-sub.light { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════
   TARJETAS SERVICIOS – DISEÑO EXCLUSIVO
════════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 36px;
  padding: 0 4px;
}

.s-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(106,13,173,.08);
  border: 1px solid rgba(212,175,55,.12);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative;
}

.s-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--purple-light));
  opacity: 0;
  transition: opacity .4s;
}

.s-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 56px rgba(106,13,173,.16), 0 0 0 1px rgba(212,175,55,.3);
}

.s-card:hover::before {
  opacity: 1;
}

.s-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(106,13,173,.05), rgba(212,175,55,.05));
}

.s-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1), filter .4s;
  filter: brightness(1.02) contrast(1.05);
}

.s-card:hover .s-card-img img {
  transform: scale(1.12);
  filter: brightness(1.05) contrast(1.08);
}

.s-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(106,13,173,.4) 0%, rgba(106,13,173,.15) 35%, transparent 60%);
  opacity: 1;
  transition: opacity .4s;
}

.s-card:hover .s-card-glow {
  background: linear-gradient(to top, rgba(212,175,55,.35) 0%, rgba(106,13,173,.2) 40%, transparent 70%);
}

.s-card-body {
  padding: 32px 28px 28px;
  position: relative;
}

.s-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--purple);
  border: 1.5px solid rgba(106,13,173,.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(106,13,173,.06), rgba(212,175,55,.04));
  transition: all .3s;
}

.s-badge.premium {
  color: var(--gold);
  border-color: rgba(212,175,55,.4);
  background: linear-gradient(135deg, rgba(212,175,55,.1), rgba(106,13,173,.05));
  box-shadow: 0 0 12px rgba(212,175,55,.15);
}

.s-card:hover .s-badge {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(106,13,173,.2);
}

.s-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.s-card-body p {
  font-size: .94rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 300;
}

.s-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(106,13,173,.06);
}

.s-duration {
  font-size: .86rem;
  color: var(--muted);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

.s-cta {
  font-size: .88rem;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: .02em;
  position: relative;
  padding-right: 20px;
  transition: all .3s;
}

.s-cta::after {
  content: '→';
  position: absolute;
  right: 0;
  transition: transform .3s;
}

.s-card:hover .s-cta {
  color: var(--gold);
  letter-spacing: .06em;
}

.s-card:hover .s-cta::after {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════
   PESTAÑAS GRID
════════════════════════════════════════════════ */
.lash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.l-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}
.l-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(212,175,55,.15);
  border-color: var(--gold);
}

.l-img-wrap { position: relative; height: 180px; overflow: hidden; }
.l-img-wrap img { width:100%; height:100%; object-fit:cover; transition: transform .5s; }
.l-card:hover .l-img-wrap img { transform: scale(1.08); }
.l-img-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,9,21,.6), transparent);
}

.l-body { padding: 20px; }
.l-icon { font-size: 1.6rem; margin-bottom: 8px; display: block; }
.l-body h3 {
  font-family: var(--font-serif); font-size: 1.25rem;
  color: var(--gold-light); font-weight: 400; margin-bottom: 8px;
}
.l-body p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 16px; }
.l-btn {
  display: inline-block; padding: 8px 22px;
  border: 1px solid var(--gold); color: var(--gold);
  border-radius: 50px; font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .25s;
}
.l-btn:hover {
  background: var(--gold); color: var(--dark);
}

/* ═══════════════════════════════════════════════
   GALERÍA
════════════════════════════════════════════════ */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 24px;
  max-width: 1300px; margin: 0 auto;
}

.g-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.g-item:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212,175,55,.3);
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.g-item:hover img { transform: scale(1.08); }

.g-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(106,13,173,.85), transparent 55%);
  display: flex; align-items: flex-end;
  padding: 16px;
  opacity: 0; transition: opacity .3s;
}
.g-item:hover .g-ov { opacity: 1; }
.g-ov span {
  color: var(--white); font-size: .85rem; font-weight: 400;
  letter-spacing: .04em;
}

/* Lightbox */
.lbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.94);
  display: none; align-items: center; justify-content: center;
}
.lbox.open { display: flex; }

.lbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lbox-inner img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: var(--radius);
  border: 1px solid rgba(212,175,55,.3);
}
#lboxCap {
  text-align: center; margin-top: 12px;
  color: var(--gold); font-size: .9rem; letter-spacing: .08em;
}

.lbox-close, .lbox-prev, .lbox-next {
  position: absolute;
  color: var(--white); background: rgba(255,255,255,.1);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; transition: background .2s;
  backdrop-filter: blur(6px);
}
.lbox-close:hover, .lbox-prev:hover, .lbox-next:hover {
  background: var(--gold); color: var(--dark);
}
.lbox-close { top: -20px; right: -20px; }
.lbox-prev  { left: -60px; top: 50%; transform: translateY(-50%); }
.lbox-next  { right: -60px; top: 50%; transform: translateY(-50%); }

/* ═══════════════════════════════════════════════
   TESTIMONIOS
════════════════════════════════════════════════ */
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.t-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s, border-color .3s;
}
.t-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.4);
}

.t-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.t-card > p {
  font-size: .92rem; color: rgba(255,255,255,.75);
  font-style: italic; line-height: 1.75; margin-bottom: 20px;
  font-family: var(--font-serif);
}

.t-who { display: flex; align-items: center; gap: 12px; }
.t-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 600; font-size: 1.1rem;
}
.t-who b { display:block; color: var(--white); font-size: .92rem; }
.t-who small { display:block; color: var(--gold); font-size: .78rem; letter-spacing: .06em; }

/* ═══════════════════════════════════════════════
   AGENDAR
════════════════════════════════════════════════ */
.book-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: start;
}

/* WhatsApp block */
.book-wa { position: relative; }
.wa-card {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border: 1px solid rgba(212,175,55,.25);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative; overflow: hidden;
  text-align: center;
}
.wa-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,.12), transparent 60%);
  pointer-events: none;
}

.wa-pulse {
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,.15), transparent 70%);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.3);opacity:1} }

.wa-big-icon {
  width: 64px; height: 64px; fill: #25D366;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 16px rgba(37,211,102,.5));
}

.wa-card h3 {
  font-family: var(--font-serif); font-size: 1.8rem;
  color: var(--white); margin-bottom: 6px;
}
.wa-card > p { color: var(--gold); font-size: 1.1rem; margin-bottom: 20px; }

.wa-msg {
  background: rgba(255,255,255,.05); border-radius: var(--radius-sm);
  padding: 14px 18px; margin-bottom: 28px !important;
  font-size: .85rem !important; color: rgba(255,255,255,.6) !important;
  text-align: left;
}
.wa-msg em { color: var(--gold-light); font-style: italic; }

.btn-wa-big {
  display: inline-block; padding: 16px 40px;
  background: #25D366; color: var(--white);
  border-radius: 50px; font-weight: 500; font-size: 1rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: all .3s;
}
.btn-wa-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,.5);
  background: #20ba5a;
}

/* Formulario */
.book-form {
  background: var(--off);
  border: 1px solid rgba(106,13,173,.1);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.book-form h3 {
  font-family: var(--font-serif); font-size: 1.6rem;
  color: var(--purple); margin-bottom: 28px; text-align: center;
}

.fg { display: flex; flex-direction: column; gap: 6px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg label {
  font-size: .78rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted);
}
.fg input, .fg select, .fg textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(106,13,173,.15);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-sans); font-size: .95rem;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(106,13,173,.1);
}
.fg textarea { resize: vertical; }

form { display: flex; flex-direction: column; gap: 18px; }

.btn-submit-form {
  padding: 16px;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white); border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 500; letter-spacing: .05em;
  box-shadow: 0 6px 24px rgba(106,13,173,.3);
  transition: all .3s;
}
.btn-submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(106,13,173,.4);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
}

.form-hint {
  text-align: center; font-size: .8rem; color: var(--muted);
}

/* ═══════════════════════════════════════════════
   UBICACIÓN
════════════════════════════════════════════════ */
.loc-layout {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 40px; align-items: start;
}

.loc-info { display: flex; flex-direction: column; gap: 20px; }

.loc-row {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: border-color .25s;
}
.loc-row:hover { border-color: rgba(212,175,55,.4); }

.loc-ico { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.loc-row h4 {
  color: var(--gold-light); font-family: var(--font-serif);
  font-size: 1rem; font-weight: 400; margin-bottom: 4px;
}
.loc-row p { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.6; }

.loc-btn {
  display: inline-block; margin-top: 10px; padding: 7px 18px;
  border: 1px solid var(--gold); color: var(--gold);
  border-radius: 50px; font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; transition: all .25s;
}
.loc-btn:hover { background: var(--gold); color: var(--dark); }

.loc-btn-wa {
  display: inline-block; margin-top: 10px; padding: 7px 18px;
  background: #25D366; color: var(--white);
  border-radius: 50px; font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; transition: all .25s;
}
.loc-btn-wa:hover { background: #20ba5a; }

.loc-map { border-radius: var(--radius); overflow: hidden; }
.loc-map iframe {
  display: block; width: 100%; height: 440px;
  border: none; border-radius: var(--radius);
  border: 1px solid rgba(212,175,55,.15);
}

/* ═══════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 64px 0 32px;
}
.footer-gold-top {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--purple-light), var(--gold), transparent);
  margin-bottom: 0;
}

.footer-cols {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}

.fc-brand .footer-logo {
  height: 54px; width: auto; max-width: 160px;
  object-fit: contain; margin-bottom: 16px;
}
.footer-logo-fb {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.6rem; color: var(--white); display: block; margin-bottom: 12px;
}
.fc-brand > p { color: rgba(255,255,255,.5); font-size: .9rem; max-width: 280px; line-height: 1.7; margin-bottom: 20px; }

.f-socials { display: flex; gap: 10px; }
.f-soc {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .25s;
}
.f-soc:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,.1); }

.fc-nav h5, .fc-info h5 {
  color: var(--gold); font-size: .75rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 20px;
}
.fc-nav { display: flex; flex-direction: column; gap: 4px; }
.fc-nav a {
  color: rgba(255,255,255,.55); font-size: .9rem;
  padding: 5px 0; transition: color .2s;
}
.fc-nav a:hover { color: var(--gold); }

.fc-info p { color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .8rem; }

/* ═══════════════════════════════════════════════
   BOTÓN FLOTANTE WHATSAPP
════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all .3s;
  animation: waPop .6s var(--ease) 2s both;
}
@keyframes waPop { from{transform:scale(0)} to{transform:scale(1)} }
.wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}
.wa-float svg { fill: var(--white); }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .fc-brand { grid-column: 1/-1; }
  .book-layout { grid-template-columns: 1fr; }
  .loc-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    padding: 24px; gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
  }
  .main-nav.open .n-link { padding: 14px 18px; font-size: 1rem; border-radius: var(--radius-sm); }
  .burger { display: flex; }
  .gal-grid { grid-template-columns: repeat(2,1fr); }
  .lash-grid { grid-template-columns: repeat(2,1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .lbox-prev { left: -10px; }
  .lbox-next { right: -10px; }
}

@media (max-width: 600px) {
  .sec { padding: 72px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2,1fr); padding: 0 12px; gap: 8px; }
  .lash-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .book-form { padding: 24px 20px; }
  .wa-card { padding: 28px 20px; }
  .h-socials { display: none; }
}

/* ═══════════════════════════════════════════════
   TOAST NOTIFICACIÓN
════════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 100px; right: 28px; z-index: 9998;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white); padding: 14px 24px; border-radius: var(--radius-sm);
  font-size: .9rem;
  box-shadow: 0 8px 28px rgba(106,13,173,.4);
  transform: translateX(120%);
  transition: transform .4s var(--ease);
  max-width: 300px;
}
.toast.show { transform: translateX(0); }

/* ═══════════════════════════════════════════════
   CARRUSEL DE TESTIMONIOS
════════════════════════════════════════════════ */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 40px 72px;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 0;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.carousel-track .t-card {
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  box-sizing: border-box;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.car-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,.5);
  color: var(--gold);
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .25s;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
}
.car-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.car-dots {
  display: flex; gap: 8px; align-items: center;
}
.car-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(212,175,55,.3);
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.car-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════
   SECCIÓN FUNDADORA
════════════════════════════════════════════════ */
.founder-sec {
  background: linear-gradient(160deg, var(--off) 0%, var(--white) 60%);
  position: relative;
  overflow: hidden;
}
.founder-sec::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(106,13,173,.06), transparent 70%);
  pointer-events: none;
}

.founder-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}

/* Imagen */
.founder-img-side { position: relative; }

.founder-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.founder-img-frame::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, transparent 60%, rgba(106,13,173,.15));
  pointer-events: none;
}

.founder-photo {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .6s var(--ease);
  filter: grayscale(10%);
}
.founder-img-frame:hover .founder-photo {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.founder-deco-line {
  position: absolute; top: 24px; left: -16px; bottom: 24px;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  border-radius: 2px;
}
.founder-deco-dot {
  position: absolute; bottom: -12px; right: -12px;
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid rgba(212,175,55,.35);
  background: rgba(212,175,55,.06);
}

/* Contenido */
.founder-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300; line-height: 1.2;
  color: var(--text);
  margin: 16px 0 0;
}
.founder-title em { font-style: italic; color: var(--purple); }

.founder-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple-light));
  border-radius: 1px;
  margin: 24px 0;
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-style: italic;
  color: var(--purple); line-height: 1.6;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  margin-bottom: 24px;
}

.founder-bio {
  font-size: .97rem; color: var(--muted);
  line-height: 1.85; margin-bottom: 36px;
}

/* Stats */
.founder-stats {
  display: flex; gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(106,13,173,.1);
  border-bottom: 1px solid rgba(106,13,173,.1);
  margin-bottom: 36px;
}
.f-stat { text-align: center; }
.f-stat-num {
  display: block;
  font-family: var(--font-serif); font-size: 2.2rem;
  color: var(--purple); font-weight: 600; line-height: 1;
  margin-bottom: 6px;
}
.f-stat-label {
  font-size: .75rem; color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase;
}

/* CTA */
.founder-cta-text {
  font-size: 1rem; color: var(--text);
  margin-bottom: 16px; font-weight: 400;
}
.btn-founder-wa {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 38px;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white);
  border-radius: 50px;
  font-size: 1rem; font-weight: 500; letter-spacing: .04em;
  box-shadow: 0 8px 28px rgba(106,13,173,.3);
  transition: all .3s;
}
.btn-founder-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(106,13,173,.45);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
}
.btn-founder-wa svg { fill: currentColor; }

.founder-hours {
  margin-top: 12px;
  font-size: .82rem; color: var(--muted);
  letter-spacing: .04em;
}

@media (max-width: 1000px) {
  .founder-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-photo { height: 420px; }
  .founder-stats { gap: 20px; }
}
@media (max-width: 600px) {
  .founder-stats { flex-wrap: wrap; gap: 16px; }
  .f-stat { min-width: calc(50% - 8px); }
}

/* ═══════════════════════════════════════════════
   UBICACIÓN SIMPLIFICADA
════════════════════════════════════════════════ */
.loc-simple-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.loc-schedule h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.schedule-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.sch-row {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius-sm);
}
.sch-day {
  font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
}
.sch-time {
  font-family: var(--font-serif); font-size: 1.3rem;
  color: var(--white); font-weight: 300;
}

.loc-address {
  font-size: .88rem; color: rgba(255,255,255,.45);
  line-height: 1.6;
}

.loc-map iframe {
  display: block; width: 100%; height: 420px;
  border: none; border-radius: var(--radius);
  border: 1px solid rgba(212,175,55,.15);
}

@media (max-width: 900px) {
  .loc-simple-layout { grid-template-columns: 1fr; }
  .loc-map iframe { height: 320px; }
}

/* Ocultar l-icon en pestañas (por si quedó alguno) */
.l-icon { display: none; }

/* ═══════════════════════════════════════════════
   POR QUÉ ELEGIRNOS
════════════════════════════════════════════════ */
.why-choose {
  background: linear-gradient(160deg, var(--off) 0%, var(--white) 100%);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(106,13,173,.08);
  box-shadow: var(--shadow);
  transition: all .35s var(--ease);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(106,13,173,.15);
  border-color: rgba(212,175,55,.3);
}

.why-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(106,13,173,.08), rgba(212,175,55,.08));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  transition: all .35s;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white);
  transform: scale(1.08);
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem; font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.why-card p {
  font-size: .92rem; color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Header CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: .88rem;
  transition: all .3s var(--ease);
  box-shadow: 0 4px 16px rgba(106,13,173,.3);
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106,13,173,.4);
  background: linear-gradient(135deg, #25D366, #20BA5A);
}

.btn-cta svg {
  fill: currentColor;
  flex-shrink: 0;
}

/* Footer logo text */
.footer-logo-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
  font-weight: 400;
}

/* Responsive para header */
@media (max-width: 900px) {
  .btn-cta {
    padding: 10px 18px;
    font-size: .85rem;
  }
  .btn-cta svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
}

@media (max-width: 600px) {
  .header-wrap {
    padding: 0 16px;
  }
  .logo-img {
    height: 50px;
  }
  .h-socials {
    display: none;
  }
  .btn-cta {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   DETALLES PREMIUM ADICIONALES
════════════════════════════════════════════════ */

/* Secciones con espaciado elegante */
.sec {
  padding: 110px 0;
  position: relative;
}

/* Hero video optimizado con loop garantizado */
.hero-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  /* Forzar loop continuo */
  -webkit-loop: infinite;
}

/* Overlay del hero más sofisticado */
.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,9,21,.75) 0%,
    rgba(106,13,173,.6) 45%,
    rgba(212,175,55,.25) 70%,
    rgba(13,9,21,.8) 100%
  );
  mix-blend-mode: multiply;
}

/* Mejora de la galería */
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 16px rgba(106,13,173,.08);
}

.g-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(212,175,55,.25), 0 0 0 1px var(--gold);
  transform: translateY(-6px);
}

/* Mejora del carrusel de testimonios */
.t-card {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(212,175,55,.2);
  border-radius: 20px;
  padding: 36px;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

.t-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(212,175,55,.2);
  border-color: rgba(212,175,55,.5);
  background: rgba(255,255,255,.12);
}

/* Mejora del botón flotante WhatsApp */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #20BA5A);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  animation: waPop .6s var(--ease) 2s both, waPulse 2.5s ease-in-out 3s infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,0); }
}

.wa-float:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 12px 40px rgba(37,211,102,.6);
}

/* Mejora de Why Choose cards */
.why-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 18px;
  border: 1.5px solid rgba(106,13,173,.1);
  box-shadow: 0 6px 24px rgba(106,13,173,.08);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(106,13,173,.18);
  border-color: rgba(212,175,55,.35);
}

/* Loader más sofisticado */
.loader-logo {
  height: 120px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(212,175,55,.4));
  animation: shimmer 1.6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    filter: drop-shadow(0 0 12px rgba(212,175,55,.3)) brightness(1);
  }
  50% {
    filter: drop-shadow(0 0 36px rgba(212,175,55,.9)) brightness(1.15);
  }
}

/* Responsive mejorado */
@media (max-width: 768px) {
  .sec {
    padding: 80px 0;
  }
  
  .sec-title::after {
    width: 60px;
    height: 2px;
  }
  
  .cards-grid {
    gap: 24px;
  }
  
  .s-card-img {
    height: 220px;
  }
}

/* ═══════════════════════════════════════════════
   MEJORAS MÓVIL – ANIMACIONES Y RESPONSIVE
════════════════════════════════════════════════ */

/* Logo más grande en móvil */
@media (max-width: 600px) {
  .logo-img {
    height: 58px !important;
    max-width: 180px;
  }
  
  .header-wrap {
    height: 68px;
  }
  
  .loader-logo {
    height: 100px;
    max-width: 200px;
  }
}

/* Animaciones scroll móvil más dramáticas */
@media (max-width: 768px) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity .8s cubic-bezier(.4,0,.2,1), 
                transform .8s cubic-bezier(.4,0,.2,1);
  }
  
  [data-reveal].visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  /* Delay escalonado para elementos */
  .s-card:nth-child(1) { transition-delay: 0s; }
  .s-card:nth-child(2) { transition-delay: .1s; }
  .s-card:nth-child(3) { transition-delay: .2s; }
  .s-card:nth-child(4) { transition-delay: .1s; }
  .s-card:nth-child(5) { transition-delay: .2s; }
  .s-card:nth-child(6) { transition-delay: .3s; }
  .s-card:nth-child(7) { transition-delay: .4s; }
  
  .l-card:nth-child(1) { transition-delay: 0s; }
  .l-card:nth-child(2) { transition-delay: .15s; }
  .l-card:nth-child(3) { transition-delay: .3s; }
  .l-card:nth-child(4) { transition-delay: .15s; }
  .l-card:nth-child(5) { transition-delay: .3s; }
  
  .why-card:nth-child(1) { transition-delay: 0s; }
  .why-card:nth-child(2) { transition-delay: .1s; }
  .why-card:nth-child(3) { transition-delay: .2s; }
  .why-card:nth-child(4) { transition-delay: .3s; }
  
  .g-item:nth-child(odd) { transition-delay: 0s; }
  .g-item:nth-child(even) { transition-delay: .15s; }
}

/* Imágenes centradas en móvil */
@media (max-width: 768px) {
  .s-card-img img,
  .l-img-wrap img,
  .g-item img,
  .founder-photo {
    object-position: center center;
    object-fit: cover;
  }
  
  /* Asegurar que las imágenes no se deformen */
  .s-card-img {
    height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .l-img-wrap {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  /* Hero video/imagen centrada */
  .hero-vid,
  .hero-img-fallback {
    object-position: center center;
  }
  
  /* Galería en móvil - mantener centrado */
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 12px;
  }
  
  .g-item {
    aspect-ratio: 1;
    height: auto;
  }
  
  .g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

/* Carrusel móvil - sin padding lateral que corte */
@media (max-width: 600px) {
  .carousel-wrap {
    padding: 0 20px 72px;
    max-width: 100%;
  }
  
  .t-card {
    padding: 28px 24px;
  }
}

/* Founder section responsive mejorado */
@media (max-width: 1000px) {
  .founder-photo {
    height: 420px;
    object-position: center 20%;
  }
}

@media (max-width: 600px) {
  .founder-photo {
    height: 380px;
    object-position: center 15%;
  }
}

/* Hero responsive - texto mejor espaciado */
@media (max-width: 600px) {
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
    margin-bottom: 20px;
  }
  
  .hero-tagline {
    font-size: clamp(0.95rem, 3.5vw, 1.15rem);
    margin-bottom: 36px;
    line-height: 1.5;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
  }
  
  .btn-gold-hero,
  .btn-outline-hero {
    width: 100%;
    max-width: 320px;
    padding: 16px 36px;
    font-size: 1rem;
  }
}