/* Identidad negro + dorado — single theme (como el logo del salón) */
:root {
  --bg: #0B0B0B;
  --bg-elev: #161513;
  --bg-soft: #100F0E;
  --ink: #F2EDE0;
  --ink-mute: #A89F8E;
  --line: rgba(212,175,55,0.16);
  --brass: #D4AF37;
  --brass-hi: #E8C868;
  --rose: #C4A796;
  --wine: #D4AF37;
  --wine-hi: #E8C868;
  --wa: #25D366;
  --good: #6FBF73;
  --shadow-lg: 0 30px 80px rgba(0,0,0,.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
.serif { font-family: Georgia, "Bodoni MT", "Playfair Display", Didot, serif; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* PROGRESS BAR */
.progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--brass); width: 0%;
  z-index: 200; transition: width .15s linear;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s ease, padding .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: Georgia, serif; font-style: italic; font-size: 22px;
  line-height: 1; letter-spacing: -0.01em;
}
.logo span {
  font-style: normal; font-weight: 400; letter-spacing: 0.28em;
  font-size: 9px; display: block; text-transform: uppercase;
  margin-top: 4px; color: var(--brass);
}
.logo-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.logo-img { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; min-width: 0; line-height: 1.15; }
.logo-name {
  font-family: Georgia, serif; font-style: italic; font-size: 19px;
  letter-spacing: -0.01em; white-space: nowrap;
}
.logo-tag {
  letter-spacing: 0.24em; font-size: 9px; text-transform: uppercase;
  color: var(--brass); font-style: normal; white-space: nowrap;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute);
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 1px; background: var(--brass);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--brass-hi); }
.nav-links a:hover::after { width: 100%; }
.cta-nav {
  padding: 11px 22px; background: var(--brass); color: #0B0B0B;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px; font-weight: 600;
  transition: background .2s, transform .15s;
}
.cta-nav:hover { background: var(--brass-hi); transform: translateY(-1px); }
.burger { display: none; background: none; border: none; color: var(--ink); font-size: 24px; padding: 8px; }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 130px 40px 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("jenny-fotos/ig13.jpg") center/cover no-repeat;
  transform: scale(1.08); will-change: transform;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,.45) 0%, rgba(11,11,11,.6) 45%, rgba(11,11,11,.96) 100%);
}

/* REELS SECTION — cinta continua por CSS (transform, GPU), cero JS por fotograma = sin tirones */
.reels-section { background: var(--bg-soft); overflow: hidden; }
.reels-scroll {
  overflow: hidden;
  padding: 10px 4px 26px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.reels-track {
  display: flex; gap: 20px; width: max-content;
  animation: reelsMarquee 46s linear infinite;
  will-change: transform;
}
.reels-track.paused { animation-play-state: paused; }
@keyframes reelsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reels-track { animation: none; }
}
.reel-card {
  flex-shrink: 0;
  width: 250px; aspect-ratio: 9/16;
  border-radius: 16px; overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: #000;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .3s;
}
.reel-card:hover { transform: translateY(-6px); border-color: var(--brass); }
.reel-card video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.reel-card .reel-tag {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  padding: 8px 12px;
  background: rgba(11,11,11,.72); backdrop-filter: blur(8px);
  border-radius: 8px;
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.reel-card .reel-tag svg { width: 13px; height: 13px; color: var(--brass); flex-shrink: 0; }
.reel-card .mute-hint {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(11,11,11,.7); backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.hero-inner {
  position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; width: 100%;
}
.hero-anim > * { opacity: 0; transform: translateY(20px); animation: heroIn .9s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-anim > *:nth-child(1) { animation-delay: .1s; }
.hero-anim > *:nth-child(2) { animation-delay: .25s; }
.hero-anim > *:nth-child(3) { animation-delay: .4s; }
.hero-anim > *:nth-child(4) { animation-delay: .55s; }
.hero-anim > *:nth-child(5) { animation-delay: .7s; }
.hero-anim > *:nth-child(6) { animation-delay: .85s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.eyebrow {
  font-family: Georgia, serif; font-style: italic;
  color: var(--brass-hi); font-size: 15px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: Georgia, "Bodoni MT", serif; font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 7.5rem); line-height: 0.94;
  letter-spacing: -0.02em; text-wrap: balance;
  color: #FFFFFF; margin-bottom: 10px;
}
.hero h1 em { font-style: italic; color: var(--brass-hi); }
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(242,237,224,.85); margin-bottom: 30px;
}
.hero-tag {
  font-family: Georgia, serif; font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: rgba(242,237,224,.78); max-width: 540px;
  margin-bottom: 32px; line-height: 1.5;
}

/* INSTAGRAM SECTION (phone mock) */
.instagram-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.ig-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 80px; align-items: center;
}
.ig-content h2 { margin-bottom: 20px; }
.ig-content p.section-lead { margin-bottom: 30px; }
.ig-stats {
  display: flex; gap: 30px; margin-bottom: 34px;
  padding: 22px 24px; background: var(--bg-elev);
  border: 1px solid var(--line); border-radius: 3px;
  flex-wrap: wrap;
}
.ig-stat-num { font-family: Georgia, serif; font-size: 1.7rem; color: var(--brass); line-height: 1; }
.ig-stat-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); margin-top: 6px; }
.ig-follow-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  color: #fff;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  border-radius: 3px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 10px 30px rgba(253,29,29,.25);
}
.ig-follow-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(253,29,29,.35); }

.phone-frame {
  width: 340px; height: 700px;
  border-radius: 42px;
  background: #1a1a1a; padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px #2a2a2a;
  position: relative; margin: 0 auto;
}
.phone-frame::before {
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px; background: #000;
  border-radius: 0 0 18px 18px; z-index: 10;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #000; color: #fff;
  border-radius: 30px; overflow: hidden;
  display: flex; flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.phone-status {
  padding: 32px 20px 8px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 600;
}
.ig-header-app {
  padding: 8px 14px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #262626;
}
.ig-logo {
  font-family: 'Snell Roundhand', 'Brush Script MT', cursive;
  font-size: 22px; letter-spacing: -0.5px; font-weight: 700;
}
.ig-header-icons { display: flex; gap: 14px; opacity: .95; }
.ig-header-icons svg { width: 20px; height: 20px; }

.ig-profile-info {
  padding: 14px 16px 10px;
  display: flex; align-items: center; gap: 20px;
}
.ig-avatar-big {
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brass), var(--brass-hi));
  color: #0B0B0B;
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 1.5rem;
  border: 2px solid #000;
  box-shadow: 0 0 0 2px #E1306C, 0 0 0 4px #000, 0 0 0 5px #F77737;
}
.ig-stats-row { display: flex; gap: 16px; flex: 1; }
.ig-stats-row div { text-align: center; }
.ig-stats-row strong { display: block; font-size: 15px; }
.ig-stats-row span { font-size: 11px; color: #a8a8a8; }

.ig-bio { padding: 4px 16px 10px; font-size: 13px; line-height: 1.4; }
.ig-bio strong { display: block; margin-bottom: 4px; font-size: 14px; }
.ig-bio .category { color: #a8a8a8; font-size: 12px; }

.ig-highlights {
  display: flex; gap: 14px; padding: 12px 16px;
  overflow-x: auto; scrollbar-width: none;
  border-bottom: 1px solid #262626;
}
.ig-highlights::-webkit-scrollbar { display: none; }
.ig-hl {
  flex-shrink: 0; text-align: center; font-size: 10px;
  width: 66px;
}
.ig-hl-img {
  width: 60px; height: 60px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 4px;
  border: 2px solid #262626; padding: 2px; background: #000;
}
.ig-hl-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ig-hl div:last-child { color: #fff; font-weight: 500; letter-spacing: .3px; }

.ig-tabs {
  display: flex; justify-content: space-around;
  border-bottom: 2px solid #262626; padding: 8px 0;
}
.ig-tab svg { width: 22px; height: 22px; opacity: .9; }
.ig-tab.active svg { color: #fff; }
.ig-tab { opacity: .5; }
.ig-tab.active { opacity: 1; }

.ig-feed {
  flex: 1; overflow-y: auto;
  padding: 4px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  scrollbar-width: thin;
  scrollbar-color: #333 #000;
}
.ig-feed::-webkit-scrollbar { width: 4px; }
.ig-feed::-webkit-scrollbar-track { background: transparent; }
.ig-feed::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }
.ig-post {
  aspect-ratio: 1; overflow: hidden;
  background: #1a1a1a; position: relative;
}
.ig-post img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ig-post:hover img { transform: scale(1.05); }
.ig-post .badge {
  position: absolute; top: 6px; right: 6px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(6px);
  padding: 2px 6px; border-radius: 3px;
  font-size: 10px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 3px;
}
.ig-post .badge svg { width: 10px; height: 10px; }

.ig-note {
  text-align: center; padding: 16px 12px 20px;
  border-top: 1px solid #262626;
  font-size: 12px; color: #a8a8a8;
}
.ig-note a { color: #E1306C; font-weight: 600; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 40px; padding: 10px 18px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 100px; font-size: 14px; color: #F1E8D8;
}
.hero-rating .stars { color: var(--brass-hi); letter-spacing: 2px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  padding: 18px 32px; background: var(--wine); color: #0B0B0B;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; border-radius: 2px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 8px 30px rgba(212,175,55,.3);
  display: inline-flex; align-items: center; gap: 10px; border: none;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%; pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  animation: shineSweep 3.2s ease-in-out infinite;
}
@keyframes shineSweep {
  0%, 60% { left: -120%; }
  100% { left: 160%; }
}
.btn-primary:hover { background: var(--wine-hi); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,175,55,.4); }
.btn-ghost {
  padding: 18px 32px; background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; border-radius: 2px;
  transition: background .2s, border-color .2s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--brass-hi); }

/* MARQUEE */
.marquee {
  overflow: hidden; padding: 20px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex; gap: 60px;
  animation: scroll 40s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee span {
  font-family: Georgia, serif; font-style: italic;
  font-size: 1.35rem; color: var(--brass);
}
.marquee span::before { content: "✦ "; color: var(--ink-mute); margin-right: 40px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* STATS COUNTER */
.stats {
  padding: 80px 40px; background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: center;
}
.stat-num {
  font-family: Georgia, serif; font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--brass); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  margin-top: 12px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* SECTIONS */
section { padding: 76px 40px; }
.container { max-width: 1180px; margin: 0 auto; }

/* CARRUSEL genérico (fotos) */
.carousel-wrap { position: relative; }
.carousel {
  display: flex; gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 12px; -webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-track { background: rgba(212,175,55,.08); border-radius: 3px; }
.carousel::-webkit-scrollbar-thumb { background: var(--brass); border-radius: 3px; }
.carousel-item {
  flex: 0 0 auto; width: 300px; scroll-snap-align: start;
  border-radius: 4px; overflow: hidden; position: relative;
  border: 1px solid var(--line); background: var(--bg-elev);
}
.carousel-item img { width: 100%; height: 380px; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.carousel-item:hover img { transform: scale(1.06); }
.carousel-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 14px 12px; font-size: 13px; letter-spacing: .04em;
  color: #fff; background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
}
.carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(11,11,11,.7); border: 1px solid var(--brass);
  color: var(--brass); font-size: 20px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5; transition: background .2s, color .2s;
  backdrop-filter: blur(6px);
}
.carousel-nav:hover { background: var(--brass); color: #0B0B0B; }
.carousel-nav.prev { left: -8px; }
.carousel-nav.next { right: -8px; }
@media (max-width: 768px) { .carousel-nav { display: none; } .carousel-item { width: 240px; } .carousel-item img { height: 320px; } }
.eyebrow-block {
  font-family: Georgia, serif; font-style: italic;
  color: var(--brass); font-size: 15px;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow-block::before {
  content: ""; display: inline-block;
  width: 40px; height: 1px; background: var(--brass);
}
.section-title {
  font-family: Georgia, "Bodoni MT", serif; font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05; letter-spacing: -0.02em;
  text-wrap: balance; margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--brass); }
.section-lead {
  font-family: Georgia, serif; font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-mute); max-width: 620px;
  margin-bottom: 60px; line-height: 1.55;
}

/* ESPECIALIDAD */
.especialidad {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.especialidad-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center;
}
.especialidad-visual {
  aspect-ratio: 4/5; border-radius: 3px; overflow: hidden;
  background: var(--bg-elev);
  position: relative; will-change: transform;
}
.espec-carousel { position: absolute; inset: 0; }
.espec-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.02);
}
.espec-slide.active {
  opacity: 1;
  animation: kenburns 6s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.14); }
}
.espec-dots {
  position: absolute; bottom: 16px; left: 0; right: 0; z-index: 3;
  display: flex; gap: 8px; justify-content: center;
}
.espec-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.45); transition: all .3s;
}
.espec-dots span.on { background: var(--brass); width: 20px; border-radius: 4px; }
.especialidad-badge {
  position: absolute; top: 24px; left: 24px; z-index: 3;
  padding: 10px 16px;
  background: rgba(11,11,11,.85); backdrop-filter: blur(8px);
  color: #F1E8D8; font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; border-radius: 2px;
  animation: badgeFloat 3.5s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.especialidad-text ul {
  list-style: none; padding: 0; margin-top: 24px;
  display: grid; gap: 14px;
}
.especialidad-text ul li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.especialidad-text ul li::before {
  content: ""; flex-shrink: 0; width: 8px; height: 8px;
  margin-top: 8px; background: var(--brass);
  transform: rotate(45deg);
}
.especialidad-text ul li strong { display: block; margin-bottom: 3px; color: var(--ink); font-weight: 500; }
.especialidad-text ul li span { color: var(--ink-mute); font-size: 14px; }
.especialidad-text > p { color: var(--ink-mute); font-size: 17px; line-height: 1.7; margin-bottom: 10px; }

/* SERVICIOS */
.services-tabs {
  display: flex; gap: 8px; margin-bottom: 40px;
  flex-wrap: wrap; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.tab-btn {
  padding: 12px 22px; background: transparent;
  border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink-mute); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: all .25s; font-weight: 500;
}
.tab-btn:hover { color: var(--ink); border-color: var(--brass); }
.tab-btn.active { background: var(--brass); color: #0B0B0B; border-color: var(--brass); }
.services-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
.service-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 20px; padding: 24px 16px 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding-left .3s, background .3s;
  border-radius: 4px;
}
.service-row:hover { padding-left: 16px; background: rgba(212,175,55,.06); }
.service-row:hover .price { color: var(--brass-hi); transform: scale(1.06); }
.service-row .price { transition: color .3s, transform .3s; }
.service-row h4 {
  font-family: Georgia, serif; font-weight: 400;
  font-size: 1.15rem; margin-bottom: 4px;
}
.service-row p { color: var(--ink-mute); font-size: 13px; line-height: 1.5; }
.service-row .price {
  font-family: Georgia, serif; font-style: italic;
  color: var(--brass); font-size: 1.1rem; white-space: nowrap;
}
.services-note {
  text-align: center; margin-top: 40px;
  font-family: Georgia, serif; font-style: italic;
  color: var(--ink-mute); font-size: 15px;
}
.services-note a { color: var(--brass); border-bottom: 1px solid var(--brass); padding-bottom: 2px; }

/* EQUIPO */
.equipo { background: var(--bg-soft); }
.equipo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.miembro {
  background: var(--bg-elev); padding: 26px 22px 26px;
  border-radius: 3px; border: 1px solid var(--line);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .5s;
  position: relative; overflow: hidden;
}
.miembro::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,.12), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.miembro:hover { transform: translateY(-6px); border-color: var(--brass); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
.miembro:hover::before { opacity: 1; }
.miembro-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brass), var(--brass-hi));
  color: #0B0B0B;
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 1.6rem;
  margin-bottom: 16px; position: relative;
}
.miembro-name { font-family: Georgia, serif; font-weight: 400; font-size: 1.25rem; margin-bottom: 4px; position: relative; }
.miembro-role { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); margin-bottom: 14px; position: relative; }
.miembro-stats {
  display: flex; align-items: center; gap: 8px;
  padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-mute); position: relative;
}
.miembro-stats .stars { color: var(--brass); letter-spacing: 1px; font-size: 12px; }
.miembro.cta-card {
  background: transparent; border-style: dashed;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.miembro.cta-card:hover { transform: translateY(-6px); }
.miembro.cta-card a {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass-hi); border-bottom: 1px solid var(--brass-hi);
  padding-bottom: 3px;
}
.miembro.cta-card p {
  font-family: Georgia, serif; font-style: italic;
  color: var(--brass); font-size: 1.05rem; margin-bottom: 12px;
}

/* FILOSOFIA */
.filosofia { background: var(--bg); }
.filosofia-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.filosofia-img {
  aspect-ratio: 4/5; border-radius: 3px; overflow: hidden;
  background: var(--bg-elev); position: relative;
}
.filosofia-text p {
  font-size: 17px; line-height: 1.75;
  color: var(--ink); margin-bottom: 22px;
}
.filosofia-text .signature {
  font-family: Georgia, serif; font-style: italic;
  color: var(--brass); font-size: 1.4rem; margin-top: 30px;
}

/* GALERIA */
.gallery-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px; gap: 14px;
}
.gallery-item {
  overflow: hidden; border-radius: 2px;
  position: relative; cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.8,.2,1); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.5));
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.g1 { grid-column: span 5; grid-row: span 2; }
.g2 { grid-column: span 4; }
.g3 { grid-column: span 3; }
.g4 { grid-column: span 4; }
.g5 { grid-column: span 3; }
.g6 { grid-column: span 4; grid-row: span 2; }
.g7 { grid-column: span 4; }
.g8 { grid-column: span 4; }
.gallery-note {
  text-align: center; margin-top: 40px;
  font-size: 14px; color: var(--ink-mute);
}
.gallery-note a { color: var(--brass); border-bottom: 1px solid var(--brass); }

/* RESERVA */
.reserva {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  text-align: center;
}
.reserva .section-title { max-width: 900px; margin-left: auto; margin-right: auto; }
.reserva .section-lead { margin-left: auto; margin-right: auto; text-align: center; }
.treatwell-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border: 1px solid var(--line);
  border-radius: 100px; margin-bottom: 28px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}
.treatwell-badge::before {
  content: ""; width: 8px; height: 8px; background: var(--good);
  border-radius: 50%; box-shadow: 0 0 0 4px rgba(111,191,115,.2);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(111,191,115,.2); }
  50% { box-shadow: 0 0 0 8px rgba(111,191,115,.05); }
}
.reserva-btn {
  padding: 26px 60px; background: var(--wine); color: #0B0B0B;
  font-family: Georgia, serif; font-size: 1.35rem;
  border-radius: 3px;
  display: inline-flex; align-items: center; gap: 14px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 12px 40px rgba(212,175,55,.3);
  letter-spacing: 0.01em;
}
.reserva-btn:hover { background: var(--wine-hi); transform: translateY(-3px); box-shadow: 0 18px 55px rgba(212,175,55,.45); }
.reserva-btn svg { transition: transform .2s; }
.reserva-btn:hover svg { transform: translateX(4px); }
.reserva-note { margin-top: 22px; font-size: 13px; color: var(--ink-mute); letter-spacing: 0.06em; }
.reserva-hours {
  margin-top: 60px; display: grid; grid-template-columns: repeat(2, 1fr);
  max-width: 560px; margin-left: auto; margin-right: auto;
  gap: 12px 40px; padding-top: 40px;
  border-top: 1px solid var(--line); text-align: left;
}
.reserva-hours div { display: flex; justify-content: space-between; font-size: 14px; }
.reserva-hours span:last-child { color: var(--brass); font-family: Georgia, serif; }

/* TESTIMONIOS */
.testis { background: var(--bg-soft); }
.testi-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 60px; gap: 40px; flex-wrap: wrap;
}
.testi-score { text-align: right; }
.testi-score-big {
  font-family: Georgia, serif; font-size: 4rem;
  line-height: 1; color: var(--brass);
}
.testi-score-stars { color: var(--brass); letter-spacing: 3px; font-size: 16px; margin: 6px 0 4px; }
.testi-score-count { font-size: 13px; color: var(--ink-mute); letter-spacing: 0.14em; text-transform: uppercase; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--bg-elev); padding: 40px 34px;
  border-radius: 3px; border: 1px solid var(--line);
  position: relative; transition: transform .4s, border-color .3s;
}
.testi:hover { transform: translateY(-4px); border-color: var(--brass); }
.testi::before {
  content: '"'; position: absolute; top: 10px; left: 20px;
  font-family: Georgia, serif; font-size: 5rem;
  color: var(--brass); opacity: .3; line-height: 1;
}
.testi-stars { color: var(--brass); font-size: 15px; letter-spacing: 3px; margin-bottom: 16px; position: relative; }
.testi p {
  font-family: Georgia, serif; font-style: italic;
  font-size: 1.05rem; line-height: 1.6;
  color: var(--ink); margin-bottom: 26px; position: relative;
}
.testi-author { display: flex; align-items: center; gap: 12px; position: relative; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brass); color: #0B0B0B;
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 1.1rem;
}
.testi-name { font-size: 14px; letter-spacing: 0.06em; }
.testi-source { color: var(--ink-mute); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.testi-more {
  text-align: center; margin-top: 40px;
  font-size: 13px; color: var(--ink-mute); letter-spacing: 0.12em; text-transform: uppercase;
}
.testi-more a { color: var(--brass); border-bottom: 1px solid var(--brass); padding-bottom: 2px; }

/* CONTACTO */
.contacto { padding-bottom: 160px; }
.contacto-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.info-block { margin-bottom: 34px; }
.info-block .label {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 10px;
}
.info-block .value { font-family: Georgia, serif; font-size: 1.3rem; line-height: 1.4; }
.info-block a { border-bottom: 1px solid var(--line); transition: border-color .2s; }
.info-block a:hover { border-color: var(--brass); }
.socials-row {
  display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap;
}
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px; color: var(--ink);
  transition: all .25s;
}
.social-btn:hover { background: var(--brass); color: #0B0B0B; border-color: var(--brass); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; }
.map-frame {
  aspect-ratio: 4/3; border-radius: 3px;
  border: 1px solid var(--line); overflow: hidden;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-stack { display: flex; flex-direction: column; gap: 16px; }
.map-sede { }
.map-sede-label {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 8px;
}
.map-mini {
  height: 200px; border-radius: 3px; border: 1px solid var(--line);
  overflow: hidden;
}
.map-mini iframe { width: 100%; height: 100%; border: 0; }
.map-cta {
  display: block; margin-top: 14px;
  text-align: center;
  padding: 14px; background: var(--bg-elev);
  border: 1px solid var(--line); border-radius: 3px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brass); transition: all .25s;
}
.map-cta:hover { background: var(--brass); color: #0B0B0B; }

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 40px; background: var(--bg-soft);
  text-align: center;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--ink-mute); text-transform: uppercase;
}
footer strong { color: var(--brass); font-weight: 500; }
footer a { color: var(--brass); }

/* STICKY MOBILE CTA */
.sticky-mobile {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  z-index: 90; gap: 10px;
}
.sticky-mobile a {
  flex: 1; padding: 15px 12px; border-radius: 2px;
  text-align: center; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.sm-reserva { background: var(--wine); color: #0B0B0B; }
.sm-wa { background: var(--wa); color: #fff; }

/* SOCIAL FLOAT DESKTOP */
.social-float {
  position: fixed; right: 20px; top: 50%;
  transform: translateY(-50%);
  z-index: 90; display: flex; flex-direction: column; gap: 10px;
}
.social-float a {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-elev); border: 1px solid var(--line);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s; box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.social-float a:hover { background: var(--brass); color: #0B0B0B; transform: scale(1.1); }
.social-float a svg { width: 18px; height: 18px; }

/* THEME TOGGLE */
.theme-toggle {
  position: fixed; bottom: 24px; left: 24px; z-index: 95;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-elev); border: 1px solid var(--line);
  color: var(--ink); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.theme-toggle:hover { transform: translateY(-2px); }

/* CHATBOT */
.chatbot-toggle {
  position: fixed; bottom: 24px; right: 24px; z-index: 96;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brass), var(--brass-hi));
  color: #0B0B0B; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(180,127,82,.4);
  transition: transform .25s;
  animation: bounce 3s ease-in-out infinite;
}
.chatbot-toggle:hover { transform: scale(1.08); }
.chatbot-toggle svg { width: 26px; height: 26px; }
.chatbot-toggle .badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--wine); color: #fff;
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.chatbot-panel {
  position: fixed; bottom: 96px; right: 24px;
  width: 380px; max-height: 560px;
  background: var(--bg-elev);
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 97; overflow: hidden;
  display: none; flex-direction: column;
  transform-origin: bottom right;
  animation: chatIn .3s cubic-bezier(.2,.8,.2,1);
}
.chatbot-panel.open { display: flex; }
@keyframes chatIn { from { opacity: 0; transform: translateY(20px) scale(.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.chatbot-head {
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--brass), var(--brass-hi));
  color: #0B0B0B; display: flex; align-items: center; gap: 14px;
}
.chatbot-head .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: #0B0B0B; color: var(--brass-hi);
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 1.3rem;
  border: 2px solid rgba(255,255,255,.4);
}
.chatbot-head .title { font-weight: 600; font-size: 15px; }
.chatbot-head .status { font-size: 12px; opacity: .85; display: flex; align-items: center; gap: 6px; }
.chatbot-head .status::before { content: ""; width: 8px; height: 8px; background: #2ECC71; border-radius: 50%; }
.chatbot-head .close { margin-left: auto; background: transparent; border: none; color: #0B0B0B; font-size: 22px; opacity: .7; }
.chatbot-body {
  padding: 20px; flex: 1; overflow-y: auto;
  display: flex; flex-direction: column; gap: 12px;
  background: var(--bg);
}
.chat-msg {
  padding: 12px 16px; border-radius: 14px;
  max-width: 85%; font-size: 14.5px; line-height: 1.5;
  animation: msgIn .35s cubic-bezier(.2,.8,.2,1);
}
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.chat-msg.bot {
  background: var(--bg-elev); color: var(--ink);
  border-bottom-left-radius: 4px; align-self: flex-start;
  border: 1px solid var(--line);
}
.chat-msg.user {
  background: var(--brass); color: #0B0B0B;
  border-bottom-right-radius: 4px; align-self: flex-end;
  font-weight: 500;
}
.chat-msg a { color: var(--brass); border-bottom: 1px solid var(--brass); }
.chat-msg.user a { color: #0B0B0B; border-bottom-color: #0B0B0B; }
.chat-msg strong { color: var(--brass); }
.chat-msg.user strong { color: #0B0B0B; }
.chat-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0 20px 12px;
  background: var(--bg);
}
.chip {
  padding: 8px 14px; background: transparent;
  border: 1px solid var(--brass);
  color: var(--brass); font-size: 12.5px;
  border-radius: 100px; transition: all .2s;
}
.chip:hover { background: var(--brass); color: #0B0B0B; }
.chatbot-foot {
  padding: 14px 20px; border-top: 1px solid var(--line);
  background: var(--bg-elev);
}
.chatbot-foot .cta {
  display: flex; gap: 8px;
}
.chatbot-foot .cta a {
  flex: 1; padding: 12px; text-align: center;
  border-radius: 6px; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.chatbot-foot .cta a.book { background: var(--wine); color: #0B0B0B; }
.chatbot-foot .cta a.wa { background: var(--wa); color: #fff; }
.typing { display: inline-flex; gap: 4px; padding: 8px 0; }
.typing span {
  width: 6px; height: 6px; background: var(--brass); border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }

/* REVEAL */
/* El contenido es visible por defecto; solo se oculta para animar si el JS está activo (.js).
   Así, en navegadores in-app (WhatsApp/Instagram) donde el JS pueda fallar, nada queda invisible. */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1); }
.js .reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-anim > * { opacity: 1; transform: none; animation: none; }
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav, .nav.scrolled { padding: 16px 24px; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .burger { display: block; }
  section { padding: 90px 24px; }
  .hero { padding: 110px 24px 60px; }
  .stats { padding: 60px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .ig-grid { grid-template-columns: 1fr; gap: 50px; }
  .ig-content { text-align: center; }
  .ig-content .eyebrow-block { justify-content: center; }
  .ig-content .section-lead { margin-left: auto; margin-right: auto; }
  .ig-stats { justify-content: center; }
  .filosofia-grid, .especialidad-grid { grid-template-columns: 1fr; gap: 40px; }
  .filosofia-img, .especialidad-visual { aspect-ratio: 4/3; }
  .services-list { grid-template-columns: 1fr; gap: 0; }
  .equipo-grid { grid-template-columns: repeat(3, 1fr); }
  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-header { flex-direction: column; align-items: flex-start; }
  .testi-score { text-align: left; }
  .gallery-grid { grid-auto-rows: 180px; }
  .g1 { grid-column: span 12; grid-row: span 2; }
  .g2, .g4, .g7, .g8 { grid-column: span 6; }
  .g3, .g5 { grid-column: span 6; }
  .g6 { grid-column: span 6; grid-row: span 1; }
  .social-float { display: none; }
}
@media (max-width: 640px) {
  .sticky-mobile { display: flex; }
  body { padding-bottom: 78px; }
  .theme-toggle { bottom: 96px; left: 20px; width: 40px; height: 40px; font-size: 16px; }
  .chatbot-toggle { bottom: 96px; right: 20px; width: 54px; height: 54px; transition: bottom .3s; }
  body.cookie-visible .chatbot-toggle { bottom: 152px; }
  .chatbot-toggle svg { width: 22px; height: 22px; }
  .chatbot-panel {
    bottom: 0; right: 0; left: 0; width: 100%;
    max-height: 90vh; height: 90vh;
    border-radius: 16px 16px 0 0;
    max-width: none;
  }
  .nav { padding: 12px 18px; }
  .nav.scrolled { padding: 10px 18px; }
  .logo-img { width: 36px; height: 36px; }
  .logo-name { font-size: 14px; }
  .logo-tag { font-size: 7px; letter-spacing: 0.18em; }
  .cta-nav { padding: 9px 14px; font-size: 11px; letter-spacing: 0.12em; }
  section { padding: 70px 20px; }
  .hero { padding: 100px 20px 60px; min-height: 92vh; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3.6rem); }
  .hero-rating { font-size: 12px; padding: 8px 14px; gap: 8px; }
  .hero-tag { margin-bottom: 26px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { justify-content: center; width: 100%; padding: 16px 20px; }
  .marquee { padding: 14px 0; }
  .marquee span { font-size: 1.05rem; }
  .marquee span::before { margin-right: 20px; }
  .stats { padding: 50px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .stat-num { font-size: 2.4rem; }
  .stat-label { font-size: 10px; letter-spacing: 0.18em; }
  .services-tabs { padding-bottom: 14px; margin-bottom: 26px; gap: 6px; }
  .tab-btn { padding: 9px 15px; font-size: 11px; letter-spacing: 0.14em; }
  .equipo-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .miembro { padding: 18px 16px; }
  .miembro-avatar { width: 52px; height: 52px; font-size: 1.3rem; }
  .miembro-name { font-size: 1.1rem; }
  .miembro-role { font-size: 10px; letter-spacing: 0.14em; }
  .miembro-stats { font-size: 12px; }
  .reserva-btn { padding: 20px 28px; font-size: 1.05rem; }
  .reserva-hours { grid-template-columns: 1fr; max-width: 340px; gap: 8px; padding-top: 30px; }
  .filosofia-text p { font-size: 15px; }
  .info-block .value { font-size: 1.05rem; }
  .info-block { margin-bottom: 26px; }
  .testi-score-big { font-size: 3rem; }
  .testi { padding: 32px 24px; }
  .testi p { font-size: 1rem; }
  .socials-row { gap: 8px; }
  .social-btn { padding: 10px 14px; font-size: 12px; }
  .phone-frame { width: 300px; height: 620px; padding: 10px; border-radius: 36px; }
  .phone-screen { border-radius: 26px; }
  .ig-stats { padding: 16px 18px; gap: 20px; }
  .ig-stat-num { font-size: 1.4rem; }
  .ig-follow-btn { padding: 14px 22px; font-size: 12px; }
}

/* BANNER DE COOKIES (RGPD / LSSI) — barra fina inferior, no tapa los CTAs */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 260;
  background: rgba(11,11,11,.97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--brass);
  padding: 12px 20px;
  box-shadow: 0 -8px 30px rgba(0,0,0,.5);
  display: none; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 12.5px; color: var(--ink); line-height: 1.5; margin: 0; flex: 1 1 260px; max-width: 640px; }
.cookie-banner a { color: var(--brass); border-bottom: 1px solid var(--brass); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 18px; border-radius: 6px; font-size: 12.5px; font-weight: 600;
  border: 1px solid var(--brass); cursor: pointer; transition: all .2s; white-space: nowrap;
}
.cookie-btn.accept { background: var(--brass); color: #0B0B0B; }
.cookie-btn.accept:hover { background: var(--brass-hi); }
.cookie-btn.reject { background: transparent; color: var(--ink); }
.cookie-btn.reject:hover { background: rgba(212,175,55,.12); }
/* En móvil, la barra se coloca por encima de la barra de reserva sticky. Compacta: cabe en una franja fina, no tapa el CTA del hero. */
@media (max-width: 768px) {
  .cookie-banner { bottom: 62px; padding: 8px 14px; gap: 6px; flex-direction: column; }
  .cookie-banner p { font-size: 11px; flex-basis: 100%; text-align: center; margin: 0; }
  .cookie-actions { width: 100%; justify-content: center; gap: 8px; }
  .cookie-btn { flex: 1; max-width: 140px; text-align: center; padding: 8px 8px; font-size: 11.5px; }
}

/* PÁGINA LEGAL */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 130px 24px 90px; }
.legal-wrap h1 { font-family: Georgia, serif; font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 8px; }
.legal-wrap h2 { font-family: Georgia, serif; font-size: 1.4rem; color: var(--brass-hi); margin: 36px 0 12px; }
.legal-wrap p, .legal-wrap li { color: var(--ink-mute); line-height: 1.7; margin-bottom: 12px; font-size: 15px; }
.legal-wrap ul { padding-left: 22px; }
.legal-wrap a { color: var(--brass); border-bottom: 1px solid var(--brass); }
.legal-updated { font-size: 13px; color: var(--ink-mute); margin-bottom: 30px; }

/* FAQ ACORDEÓN */
.faq-section { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%); }
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--ink); font-size: 17px; font-weight: 500;
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; cursor: pointer; transition: color .2s; font-family: inherit;
}
.faq-q:hover { color: var(--brass-hi); }
.faq-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--brass); color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; transition: transform .3s, background .3s, color .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--brass); color: #0B0B0B; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 24px; }
.faq-a p { color: var(--ink-mute); font-size: 15px; line-height: 1.7; }
.faq-a a { color: var(--brass); border-bottom: 1px solid var(--brass); }
