/* Vita Masaje - Boutique Familiar Moderno
   Paleta: oliva (#91AD51) + crema (#F7F1E5) + coral suave (#E89679) + tierra (#3F3A33).
   Tipografía: Manrope (sans redondeada moderna).
   Estilo: cards generosas, bordes muy redondeados, microcopy cercano, calidez boutique. */

:root {
  --vm-primary: #91AD51;
  --vm-primary-dark: #7A9543;
  --vm-primary-rgb: 145, 173, 81;

  --vm-cream: #FFFFFF;          /* antes beige, ahora blanco puro */
  --vm-cream-soft: #F7F7F7;     /* gris muy claro para alternancia y icon bg */
  --vm-sand: #ECECEC;           /* gris claro neutro para bordes y separadores */
  --vm-dark: #2A2723;           /* marrón muy oscuro - acento corporativo principal */
  --vm-dark-soft: #4A443D;      /* marrón medio para variantes */
  --vm-coral: #E89679;          /* coral - usar muy puntualmente */
  --vm-earth: #2D2A26;          /* texto principal */
  --vm-earth-soft: #5C5852;     /* texto secundario */

  --vm-bg: #FFFFFF;
  --vm-bg-alt: var(--vm-cream);
  --vm-heading: var(--vm-earth);
  --vm-text: #2D2A26;
  --vm-muted: var(--vm-earth-soft);
  --vm-footer: #2A2723;
  --vm-star: #F2B441;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--vm-text);
  background: var(--vm-bg);
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* =================== Reveal on scroll =================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .15s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .25s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: .35s; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: .45s; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: .55s; }

/* Hero entrance */
.hero .copy > * { opacity: 0; animation: heroIn .8s cubic-bezier(.2,.8,.2,1) forwards; }
.hero .copy > *:nth-child(1) { animation-delay: .15s; }
.hero .copy > *:nth-child(2) { animation-delay: .30s; }
.hero .copy > *:nth-child(3) { animation-delay: .45s; }
.hero .copy > *:nth-child(4) { animation-delay: .60s; }
.hero .copy > *:nth-child(5) { animation-delay: .75s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .visual .photo {
  opacity: 0;
  animation: heroPhotoIn 1s cubic-bezier(.2,.8,.2,1) .35s forwards;
}
@keyframes heroPhotoIn {
  from { opacity: 0; transform: scale(.94) rotate(-2deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible,
  .reveal-stagger > *, .reveal-stagger.is-visible > *,
  .hero .copy > *, .hero .visual .photo { opacity: 1 !important; transform: none !important; animation: none !important; }
  .has-glass-bg::before, .has-glass-bg::after, .has-glass-bg .has-glass-blob-3,
  .stats-band::before, .stats-band::after,
  .cta-banner::before, .cta-banner::after,
  .site-footer::before, .site-footer::after,
  .hero .visual .badge-float, .testimonial-card .stars .material-symbols-outlined,
  .floating-dots .dot, .mesh-bg, .spinning-ring, .wave-divider svg path { animation: none !important; }
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* =================== Botones =================== */
.btn-primary,
.btn-outline,
.btn-ghost-on-dark,
.btn-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.65rem;
  border-radius: 999px;
  transition: all .25s ease;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
}
.btn-primary {
  background: var(--vm-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(var(--vm-primary-rgb), 0.30);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s ease;
  pointer-events: none;
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:hover {
  background: var(--vm-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(var(--vm-primary-rgb), 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--vm-primary);
  border: 2px solid var(--vm-primary);
}
.btn-outline:hover { background: var(--vm-primary); color: #fff; }

.btn-ghost-on-dark {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.btn-ghost-on-dark:hover { background: #fff; color: var(--vm-primary); border-color: #fff; }

.btn-soft {
  background: var(--vm-cream);
  color: var(--vm-earth);
  border: 1px solid var(--vm-sand);
}
.btn-soft:hover { background: var(--vm-sand); }

/* =================== Layout =================== */
.section { padding: 3rem 0; position: relative; }
@media (min-width: 640px) { .section { padding: 4rem 0; } }
@media (min-width: 1024px) { .section { padding: 6rem 0; } }

.container-vm { max-width: 1180px; margin: 0 auto; padding: 0 1.1rem; }
@media (min-width: 640px) { .container-vm { padding: 0 1.5rem; } }

.bg-cream { background: var(--vm-cream); }
.bg-cream-soft { background: var(--vm-cream-soft); }
.bg-white { background: #fff; }
.bg-dark { background: var(--vm-dark); color: var(--vm-cream); }
.bg-alt { background: var(--vm-cream); } /* compat */

/* =================== Backgrounds animados (blobs en bucle)
   Cualquier sección con .has-glass-bg recibe 2 blobs animados (uno oliva,
   uno dark) y un blob central opcional con .has-glass-blob-3. */
.has-glass-bg { position: relative; overflow: hidden; isolation: isolate; }
.has-glass-bg > .container-vm { position: relative; z-index: 2; }
.has-glass-bg::before,
.has-glass-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  z-index: 0;
  will-change: transform;
}
.has-glass-bg::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(var(--vm-primary-rgb), 0.35), transparent 65%);
  top: -180px; left: -120px;
  animation: drift1 22s ease-in-out infinite;
}
.has-glass-bg::after {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(42, 39, 35, 0.18), transparent 65%);
  bottom: -160px; right: -100px;
  animation: drift2 28s ease-in-out infinite;
}
.has-glass-bg .has-glass-blob-3 {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  filter: blur(60px);
  background: radial-gradient(circle, rgba(var(--vm-primary-rgb), 0.22), transparent 65%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  animation: drift3 18s ease-in-out infinite;
  will-change: transform;
}

/* Variante "soft" para secciones donde queremos efecto más sutil */
.has-glass-bg.glass-soft::before { opacity: .55; }
.has-glass-bg.glass-soft::after  { opacity: .55; }

/* Variante "dark" para secciones de fondo oscuro (stats, CTA, footer) */
.has-glass-bg.glass-dark::before {
  background: radial-gradient(circle, rgba(var(--vm-primary-rgb), 0.28), transparent 70%);
}
.has-glass-bg.glass-dark::after {
  background: radial-gradient(circle, rgba(var(--vm-primary-rgb), 0.14), transparent 70%);
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, 40px) scale(1.10); }
  66%      { transform: translate(-30px, 60px) scale(0.92); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-80px, -50px) scale(1.15); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -55%) scale(1.18); }
}

/* =================== Floating dots (partículas decorativas) =================== */
.floating-dots {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.floating-dots .dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--vm-primary);
  opacity: 0;
  animation: dotRise 14s linear infinite;
}
.floating-dots .dot.lg { width: 14px; height: 14px; }
.floating-dots .dot.dk { background: var(--vm-dark); }
.floating-dots .dot.ring { background: transparent; border: 2px solid var(--vm-primary); }
.floating-dots .dot:nth-child(1) { left: 8%;  bottom: -20px; animation-delay: 0s;   animation-duration: 16s; }
.floating-dots .dot:nth-child(2) { left: 22%; bottom: -20px; animation-delay: -3s;  animation-duration: 13s; }
.floating-dots .dot:nth-child(3) { left: 38%; bottom: -20px; animation-delay: -6s;  animation-duration: 18s; }
.floating-dots .dot:nth-child(4) { left: 55%; bottom: -20px; animation-delay: -2s;  animation-duration: 15s; }
.floating-dots .dot:nth-child(5) { left: 70%; bottom: -20px; animation-delay: -9s;  animation-duration: 17s; }
.floating-dots .dot:nth-child(6) { left: 85%; bottom: -20px; animation-delay: -5s;  animation-duration: 14s; }
.floating-dots .dot:nth-child(7) { left: 95%; bottom: -20px; animation-delay: -11s; animation-duration: 19s; }
@keyframes dotRise {
  0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
  10%  { opacity: 0.30; }
  50%  { opacity: 0.40; transform: translate(20px, -45vh) scale(1); }
  90%  { opacity: 0.18; }
  100% { transform: translate(-12px, -100vh) scale(0.7); opacity: 0; }
}

/* =================== Mesh gradient animado (para hero / footer) =================== */
.mesh-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(at 20% 30%, rgba(var(--vm-primary-rgb), 0.18) 0, transparent 50%),
    radial-gradient(at 80% 20%, rgba(42, 39, 35, 0.10) 0, transparent 50%),
    radial-gradient(at 70% 80%, rgba(var(--vm-primary-rgb), 0.14) 0, transparent 50%),
    radial-gradient(at 30% 90%, rgba(42, 39, 35, 0.08) 0, transparent 50%);
  filter: blur(20px);
  animation: meshShift 24s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes meshShift {
  0%   { transform: scale(1) rotate(0deg); }
  50%  { transform: scale(1.08) rotate(2deg); }
  100% { transform: scale(1.04) rotate(-2deg); }
}

/* =================== Aro conic rotando (sticker about) =================== */
.spinning-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--vm-primary), transparent 35%, var(--vm-primary) 70%, transparent 100%);
  z-index: -1;
  animation: spin 8s linear infinite;
  filter: blur(2px);
  opacity: .65;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* =================== Wave divider animada =================== */
.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.wave-divider svg { display: block; width: 100%; height: 100%; }
.wave-divider svg path { animation: wavePulse 8s ease-in-out infinite alternate; transform-origin: center; }
@keyframes wavePulse {
  0%   { transform: scaleY(1); }
  100% { transform: scaleY(1.3); }
}

/* =================== Stats band (franja dark) =================== */
.stats-band {
  background: var(--vm-dark);
  color: #FFFFFF;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.stats-band > .container-vm { position: relative; z-index: 2; }
.stats-band::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--vm-primary-rgb), 0.30), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: drift1 24s ease-in-out infinite;
  will-change: transform;
}
.stats-band::after {
  content: '';
  position: absolute;
  bottom: -140px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--vm-primary-rgb), 0.20), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: drift2 30s ease-in-out infinite;
  will-change: transform;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem .5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.stats-grid .stat { padding: .25rem .5rem; position: relative; }
@media (max-width: 767px) {
  .stats-grid .stat:nth-child(odd) {
    border-right: 1px solid rgba(var(--vm-primary-rgb), 0.20);
  }
  .stats-grid .stat:nth-child(-n+2) {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(var(--vm-primary-rgb), 0.20);
  }
  .stats-grid .stat:nth-child(n+3) { padding-top: .25rem; }
}
@media (min-width: 768px) {
  .stats-grid .stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -.5rem; top: 25%; bottom: 25%;
    width: 1px;
    background: rgba(var(--vm-primary-rgb), 0.35);
  }
}
.stats-grid .num {
  font-size: clamp(1.85rem, 5.5vw, 3rem);
  font-weight: 800;
  color: var(--vm-primary);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; justify-content: center; gap: .25rem;
  flex-wrap: wrap;
}
.stats-grid .num .unit { font-size: .5em; color: rgba(255,255,255,0.55); font-weight: 700; }
.stats-grid .num .material-symbols-outlined { font-size: clamp(2rem, 5vw, 2.5rem); color: var(--vm-primary); font-variation-settings: 'FILL' 1; align-self: center; }
.stats-grid .lbl {
  font-size: clamp(.78rem, 2vw, .92rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
  font-weight: 500;
}

/* =================== Header / nav =================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--vm-sand);
}
.site-header .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 84px; }

.site-header .brand { display: inline-flex; align-items: center; line-height: 1; min-width: 0; }
.site-header .brand-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--vm-dark);
  text-decoration: none;
  transition: opacity .2s ease;
}
.site-header .brand-link:hover { opacity: 1; }
.site-header .brand-logo-img,
.site-header .brand img,
.site-header .custom-logo {
  height: 48px !important;
  width: auto !important;
  max-width: 180px;
  display: block;
  flex-shrink: 0;
  animation: vmLogoIn .9s cubic-bezier(.2,.9,.2,1.05) both, vmLogoBreath 4s ease-in-out 1.2s infinite;
  transform-origin: center center;
  transition: transform .4s cubic-bezier(.2,.9,.2,1.15), filter .35s ease;
  will-change: transform;
}
.site-header .brand-link:hover .brand-logo-img,
.site-header .brand-link:hover .brand img,
.site-header .brand-link:hover .custom-logo {
  animation-play-state: paused;
  transform: scale(1.10) rotate(-4deg);
  filter: drop-shadow(0 6px 14px rgba(var(--vm-primary-rgb), 0.45));
}
.site-header .brand-link:active .brand-logo-img,
.site-header .brand-link:active .custom-logo {
  transform: scale(0.94) rotate(0);
  transition-duration: .12s;
}
@keyframes vmLogoIn {
  0%   { opacity: 0; transform: scale(0.55) rotate(-12deg); }
  60%  { opacity: 1; transform: scale(1.08) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes vmLogoBreath {
  0%, 100% { transform: translateY(0) rotate(0); }
  35%      { transform: translateY(-3px) rotate(-1.2deg); }
  65%      { transform: translateY(0)    rotate(1.2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .site-header .brand-logo-img,
  .site-header .brand img,
  .site-header .custom-logo { animation: none !important; }
}
.site-header .brand-icon { color: var(--vm-primary); font-size: 30px; flex-shrink: 0; }
.site-header .brand-text {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--vm-dark);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .site-header .brand-logo-img,
  .site-header .brand img,
  .site-header .custom-logo { height: 36px !important; }
  .site-header .brand-link { gap: .45rem; }
  .site-header .brand-text { font-size: 1rem; }
}
@media (max-width: 400px) {
  .site-header .brand-logo-img,
  .site-header .brand img,
  .site-header .custom-logo { height: 32px !important; }
  .site-header .brand-text { font-size: .95rem; }
}

.site-header .menu { display: none; }
.site-header .menu ul,
.site-header .menu-list { list-style: none; padding: 0; margin: 0; gap: 2rem; align-items: center; }
.site-header .menu li { margin: 0; }
.site-header .menu a {
  color: var(--vm-earth);
  font-weight: 600;
  font-size: 0.95rem;
  padding: .35rem 0;
  display: inline-block;
  position: relative;
}
.site-header .menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--vm-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-header .menu a:hover::after,
.site-header .menu .current-menu-item > a::after,
.site-header .menu .current_page_item > a::after { transform: scaleX(1); }
.site-header .menu a:hover { color: var(--vm-primary); }

@media (min-width: 1024px) {
  .site-header .menu { display: flex; align-items: center; }
  .site-header .menu ul,
  .site-header .menu-list { display: flex; }
}

.menu-toggle {
  background: transparent;
  border: 0;
  color: var(--vm-earth);
  padding: .65rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  transition: background .2s ease;
}
.menu-toggle:hover, .menu-toggle:focus-visible { background: var(--vm-sand); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Drawer lateral (slide desde izquierda) */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0;
  width: min(86vw, 340px);
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  z-index: 70;
  padding: 1.25rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  border-right: 1px solid var(--vm-sand);
  box-shadow: 12px 0 50px rgba(42, 39, 35, 0.30);
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-drawer.is-open { transform: translateX(0); }
@media (min-width: 1024px) { .mobile-drawer { display: none; } }

.mobile-drawer .drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .25rem 0 1rem;
  border-bottom: 1px solid var(--vm-sand);
  margin-bottom: .5rem;
}
.mobile-drawer .drawer-head .brand-mini {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--vm-primary);
  font-weight: 800;
  font-size: 1.1rem;
}
.mobile-drawer .drawer-close {
  background: var(--vm-sand);
  border: 0;
  width: 38px; height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vm-earth);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.mobile-drawer .drawer-close:hover { background: var(--vm-dark); color: #fff; transform: rotate(90deg); }

.mobile-drawer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.mobile-drawer a {
  color: var(--vm-earth);
  font-weight: 600;
  padding: 1.05rem .25rem;
  border-bottom: 1px solid var(--vm-sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .2s ease, padding-left .25s ease;
  font-size: 1.05rem;
}
.mobile-drawer a::after {
  content: '→';
  color: var(--vm-primary);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s ease, transform .25s ease;
  font-weight: 700;
}
.mobile-drawer a:hover,
.mobile-drawer a:focus-visible { color: var(--vm-primary); padding-left: .65rem; }
.mobile-drawer a:hover::after,
.mobile-drawer a:focus-visible::after { opacity: 1; transform: translateX(0); }
.mobile-drawer li:last-of-type a { border-bottom: 0; }

.mobile-drawer .drawer-foot {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vm-sand);
  display: flex; flex-direction: column; gap: .65rem;
  font-size: .85rem;
  color: var(--vm-earth-soft);
}
.mobile-drawer .drawer-foot strong { color: var(--vm-earth); display: block; margin-bottom: .15rem; }

/* CTA dentro del drawer — alineado, sin sombra que se salga del panel */
.mobile-drawer .btn-primary {
  width: 100% !important;
  justify-content: center !important;
  padding: .9rem 1.25rem !important;
  font-size: 1rem !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 14px rgba(var(--vm-primary-rgb), 0.30) !important;
  margin: .5rem 0 0 !important;
  color: #fff !important;
}
.mobile-drawer .btn-primary .material-symbols-outlined,
.mobile-drawer .btn-primary span { color: #fff !important; }
.mobile-drawer .btn-primary::before { display: none; } /* desactivar shimmer dentro del drawer */
.mobile-drawer .btn-primary:hover { transform: none; box-shadow: 0 6px 18px rgba(var(--vm-primary-rgb), 0.40) !important; color: #fff !important; }
.mobile-drawer a.btn-primary:hover { padding-left: .9rem !important; } /* anular el padding-left que añade .mobile-drawer a:hover */
.mobile-drawer a.btn-primary::after { display: none !important; } /* anular el chevron del menu lateral */

/* Animación stagger de los enlaces al abrir */
.mobile-drawer ul li {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .3s ease, transform .3s ease;
}
.mobile-drawer.is-open ul li { opacity: 1; transform: translateX(0); }
.mobile-drawer.is-open ul li:nth-child(1) { transition-delay: .15s; }
.mobile-drawer.is-open ul li:nth-child(2) { transition-delay: .20s; }
.mobile-drawer.is-open ul li:nth-child(3) { transition-delay: .25s; }
.mobile-drawer.is-open ul li:nth-child(4) { transition-delay: .30s; }
.mobile-drawer.is-open ul li:nth-child(5) { transition-delay: .35s; }
.mobile-drawer.is-open ul li:nth-child(6) { transition-delay: .40s; }

/* Overlay backdrop */
.mobile-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(42, 39, 35, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 65;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
@media (min-width: 1024px) { .mobile-drawer-overlay { display: none !important; } }

body.drawer-open { overflow: hidden; }
/* Ocultar el FAB cuando el drawer está abierto */
body.drawer-open .fab-cita {
  opacity: 0;
  pointer-events: none;
  transform: scale(.8);
  transition: opacity .25s ease, transform .25s ease;
}

.menu-toggle .material-symbols-outlined { transition: transform .3s ease; }
.menu-toggle[aria-expanded="true"] .material-symbols-outlined { transform: rotate(90deg); }

/* =================== Hero =================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: flex-start;
  overflow: hidden;
  isolation: isolate;
  color: var(--vm-earth);
  background: #FFFFFF;
}
.hero > .container-vm { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 3rem; }
}
.hero .copy { padding: 2rem 0; position: relative; z-index: 2; }
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--vm-dark);
  color: #FFFFFF;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .02em;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(42, 39, 35, 0.18);
}
.hero .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--vm-primary); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .6; } }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 1.25rem;
  color: var(--vm-dark);
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--vm-dark); position: relative; display: inline-block; }
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 12px;
  background: var(--vm-primary);
  border-radius: 999px;
  z-index: -1;
  opacity: .35;
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--vm-earth-soft);
  margin: 0 0 2rem;
  max-width: 540px;
}
.hero .ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }

.hero .trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vm-sand);
}
.hero .trust .item { display: flex; align-items: center; gap: .55rem; color: var(--vm-earth-soft); font-size: .92rem; font-weight: 600; }
.hero .trust .item .icon { color: var(--vm-primary); }
.hero .trust .stars { display: inline-flex; gap: 1px; color: var(--vm-star); }
.hero .trust .stars .material-symbols-outlined { font-size: 18px; font-variation-settings: 'FILL' 1; }

.hero .visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 380px;
}
.hero .visual .photo {
  width: 100%;
  height: clamp(360px, 55vw, 560px);
  object-fit: cover;
  border-radius: 36px 36px 36px 100px;
  box-shadow: 0 30px 60px -20px rgba(63, 58, 51, 0.30);
}
.hero .visual .badge-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 1rem 1.25rem;
  border-radius: 20px;
  box-shadow: 0 16px 40px -10px rgba(42, 39, 35, 0.25);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero .visual .badge-rating { left: -18px; bottom: 32px; animation: floatY 5s ease-in-out infinite; }
.hero .visual .badge-years  { right: -10px; top: 28px; animation: floatY 6s ease-in-out infinite -2s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero .visual .badge-float .num { font-size: 1.3rem; font-weight: 800; color: var(--vm-dark); line-height: 1; }
.hero .visual .badge-float .lbl { font-size: .75rem; color: var(--vm-earth-soft); margin-top: 2px; }
.hero .visual .badge-float .icon-circle { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--vm-dark); color: var(--vm-primary); }
.hero .visual .blob {
  position: absolute;
  z-index: -1;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 30% 40%, rgba(var(--vm-primary-rgb), 0.30), transparent 60%);
  filter: blur(40px);
  top: 10%; right: -10%;
  pointer-events: none;
}

@media (max-width: 899px) {
  .hero { min-height: auto; padding: 2rem 0 3rem; }
  .hero h1 { font-size: clamp(1.95rem, 8vw, 2.8rem); margin-bottom: 1rem; }
  .hero p.lead { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero .ctas { flex-direction: column; align-items: stretch; gap: .65rem; }
  .hero .ctas .btn-primary,
  .hero .ctas .btn-soft,
  .hero .ctas .btn-outline { width: 100%; justify-content: center; }
  .hero .visual { min-height: 0; }
  .hero .visual .photo { height: clamp(280px, 65vw, 440px); border-radius: 24px 24px 24px 70px; }
  .hero .visual .badge-rating { left: 8px; bottom: 12px; }
  .hero .visual .badge-years { right: 8px; top: 12px; }
  .hero .trust { gap: .65rem 1rem; padding-top: 1.25rem; }
  .hero .trust .item { font-size: .85rem; }
  .hero .eyebrow { font-size: .78rem; padding: .4rem .9rem; margin-bottom: 1rem; }
}
@media (max-width: 540px) {
  .hero .visual .badge-float { padding: .6rem .8rem; border-radius: 14px; gap: .55rem; }
  .hero .visual .badge-float .num { font-size: 1rem; }
  .hero .visual .badge-float .lbl { font-size: .68rem; line-height: 1.2; }
  .hero .visual .badge-float .icon-circle { width: 32px; height: 32px; }
  .hero .visual .badge-float .icon-circle .material-symbols-outlined { font-size: 18px; }
}
@media (max-width: 420px) {
  .hero .visual .photo { height: 280px; border-radius: 20px 20px 20px 56px; }
}

/* =================== Section title =================== */
.section-title { text-align: center; max-width: 700px; margin: 0 auto 2rem; }
@media (min-width: 768px) { .section-title { margin: 0 auto 3rem; } }
.section-title .kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--vm-dark);
  color: #FFFFFF;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-title .kicker::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vm-primary);
}
.section-title h2 {
  font-size: clamp(1.6rem, 5.5vw, 2.6rem);
  font-weight: 800;
  color: var(--vm-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .85rem;
}
.section-title p { color: var(--vm-earth-soft); font-size: 1.05rem; margin: 0; }

/* =================== Servicios =================== */
.grid-services { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-services { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1280px) { .grid-services { grid-template-columns: repeat(5, 1fr); gap: 1.1rem; } }

.service-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 36px -10px rgba(42, 39, 35, 0.12), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 24px 50px -10px rgba(42, 39, 35, 0.20), inset 0 1px 0 rgba(255,255,255,0.7);
  border-color: rgba(var(--vm-primary-rgb), 0.40);
}
.service-card .img-wrap { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.service-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .img-wrap img { transform: scale(1.06); }
.service-card .price-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--vm-dark);
  padding: .45rem .85rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 8px 22px rgba(42, 39, 35, 0.18);
  display: flex; align-items: center; gap: .4rem;
}
.service-card .price-tag.has-discount {
  background: var(--vm-dark);
  border-color: var(--vm-dark);
  color: #fff;
  padding: .45rem .85rem .45rem .65rem;
}
.service-card .price-tag .price-old {
  text-decoration: line-through;
  opacity: .55;
  font-weight: 600;
  font-size: .82rem;
}
.service-card .price-tag .price-new {
  color: var(--vm-primary);
  font-weight: 800;
  font-size: 1rem;
}
.service-card .offer-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--vm-primary);
  color: #fff;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .78rem;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  box-shadow: 0 6px 18px rgba(var(--vm-primary-rgb), 0.40);
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: offerPulse 2.5s ease-in-out infinite;
}
.service-card .offer-badge .material-symbols-outlined { font-size: 14px; }
@keyframes offerPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
.offer-inline {
  display: inline-block;
  background: var(--vm-primary);
  color: #fff;
  padding: .12rem .5rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-left: .25rem;
}

/* Editor de servicios — fieldset de descuento */
.discount-fieldset {
  border: 1.5px solid var(--vm-sand);
  border-radius: 16px;
  padding: 1.25rem 1.5rem 1.5rem;
  margin: 0;
  background: var(--vm-cream-soft);
}
.discount-fieldset legend {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 800;
  color: var(--vm-dark);
  padding: .25rem .75rem;
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: 999px;
  font-size: .85rem;
}
.discount-fieldset legend .material-symbols-outlined { color: var(--vm-primary); font-size: 18px; }
.discount-status {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--vm-sand);
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .75rem;
  font-size: .9rem;
}
.discount-status-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
}
.discount-status-pill .material-symbols-outlined { font-size: 16px; }
.discount-status-pill.is-active { background: rgba(var(--vm-primary-rgb), 0.15); color: var(--vm-primary-dark); }
.discount-status-pill.is-active .material-symbols-outlined { font-variation-settings: 'FILL' 1; }
.discount-status-pill.is-expired { background: #FEF2F2; color: #991B1B; }
.discount-status-text { color: var(--vm-earth-soft); }
.discount-status-text strong { color: var(--vm-dark); }
.service-card .body { padding: 1.25rem 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.service-card .duration {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--vm-primary-dark);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.service-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--vm-heading); margin: 0; letter-spacing: -0.01em; line-height: 1.2; }
.service-card .excerpt { color: var(--vm-earth-soft); font-size: .92rem; margin: 0; line-height: 1.5; }
@media (min-width: 1024px) {
  .service-card .body { padding: 1.25rem 1.1rem 1.4rem; }
  .service-card h3 { font-size: 1.15rem; }
  .service-card .excerpt { font-size: .9rem; }
}
.service-card .reserve {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--vm-primary);
  font-weight: 700;
  padding: .5rem 0;
  border-bottom: 2px solid transparent;
  transition: all .25s ease;
}
.service-card .reserve:hover { border-bottom-color: var(--vm-primary); gap: .8rem; }
.service-card .reserve .material-symbols-outlined { transition: transform .25s ease; }
.service-card:hover .reserve .material-symbols-outlined { transform: translateX(4px); }

/* =================== Sobre nosotros =================== */
.about-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1.05fr; gap: 4rem; } }

.about-grid .visual { position: relative; }
.about-grid .visual .photo {
  width: 100%;
  height: clamp(380px, 50vw, 540px);
  object-fit: cover;
  border-radius: 28px;
}
.about-grid .visual .photo-2 {
  position: absolute;
  bottom: -2rem; right: -1.5rem;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  border: 8px solid #FFFFFF;
  box-shadow: 0 12px 30px rgba(63,58,51,0.20);
  display: none;
}
@media (min-width: 768px) { .about-grid .visual .photo-2 { display: block; } }
.about-grid .visual .sticker {
  position: absolute;
  top: -1rem; left: -1rem;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--vm-dark);
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: .85rem;
  line-height: 1.15;
  padding: 1rem;
  transform: rotate(-12deg);
  box-shadow: 0 12px 28px rgba(42, 39, 35, 0.45);
  display: none;
  border: 3px solid #FFFFFF;
}
@media (min-width: 600px) { .about-grid .visual .sticker { display: flex; } }
.about-grid .visual .sticker span { font-size: 1.4rem; display: block; margin-bottom: .15rem; }

.about-grid h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--vm-heading); margin: 0 0 1.25rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.about-grid p { font-size: 1.05rem; color: var(--vm-earth-soft); margin: 0 0 1rem; line-height: 1.65; }

.about-grid .badges { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0; }
.about-grid .badges .item { display: flex; align-items: flex-start; gap: .75rem; }
.about-grid .badges .item .icon-circle {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(var(--vm-primary-rgb), 0.10);
  color: var(--vm-primary-dark);
  display: flex; align-items: center; justify-content: center;
}
.about-grid .badges .item .label { font-weight: 700; color: var(--vm-heading); display: block; line-height: 1.25; }
.about-grid .badges .item .sub { color: var(--vm-earth-soft); font-size: .85rem; }

/* =================== Beneficios =================== */
.grid-benefits { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-benefits { grid-template-columns: repeat(4, 1fr); } }

.benefit-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  padding: 1.75rem 1.5rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 28px -8px rgba(42, 39, 35, 0.10), inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, background .4s ease, border-color .4s ease;
}
.benefit-card:hover {
  transform: translateY(-6px) scale(1.015);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(var(--vm-primary-rgb), 0.40);
  box-shadow: 0 24px 50px -12px rgba(42, 39, 35, 0.20), inset 0 1px 0 rgba(255,255,255,0.7);
}
.benefit-card:hover .icon-circle { transform: rotate(-8deg) scale(1.08); }
.benefit-card .icon-circle { transition: transform .4s cubic-bezier(.4,1.6,.4,1); }
.benefit-card .icon-circle {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: rgba(var(--vm-primary-rgb), 0.10);
  color: var(--vm-primary-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.benefit-card .icon-circle .material-symbols-outlined { font-size: 30px; }
.benefit-card.dark { background: var(--vm-dark); border-color: var(--vm-dark); color: var(--vm-cream); }
.benefit-card.dark h4 { color: #fff; }
.benefit-card.dark p { color: rgba(255,255,255,0.78); }
.benefit-card.dark .icon-circle { background: rgba(255,255,255,0.10); color: var(--vm-primary); }
.benefit-card.dark:hover { box-shadow: 0 18px 40px -10px rgba(42,39,35,0.40); }
.benefit-card h4 { font-size: 1.15rem; font-weight: 800; color: var(--vm-heading); margin: 0 0 .35rem; }
.benefit-card p { color: var(--vm-earth-soft); font-size: .95rem; margin: 0; line-height: 1.55; }

/* =================== Testimonios =================== */
.grid-testimonials { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-testimonials { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 32px -10px rgba(42, 39, 35, 0.12), inset 0 1px 0 rgba(255,255,255,0.55);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, background .4s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 22px 48px -10px rgba(42, 39, 35, 0.22), inset 0 1px 0 rgba(255,255,255,0.7);
}
.testimonial-card .stars .material-symbols-outlined {
  animation: testimStarPop .6s cubic-bezier(.4,1.8,.4,1) backwards;
}
.testimonial-card .stars .material-symbols-outlined:nth-child(1) { animation-delay: .05s; }
.testimonial-card .stars .material-symbols-outlined:nth-child(2) { animation-delay: .12s; }
.testimonial-card .stars .material-symbols-outlined:nth-child(3) { animation-delay: .19s; }
.testimonial-card .stars .material-symbols-outlined:nth-child(4) { animation-delay: .26s; }
.testimonial-card .stars .material-symbols-outlined:nth-child(5) { animation-delay: .33s; }
@keyframes testimStarPop {
  0%   { transform: scale(0) rotate(-25deg); opacity: 0; }
  60%  { transform: scale(1.25) rotate(8deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.testimonial-card .stars { display: inline-flex; gap: 2px; color: var(--vm-star); margin-bottom: .75rem; }
.testimonial-card .stars .material-symbols-outlined { font-size: 20px; font-variation-settings: 'FILL' 1; }
.testimonial-card .body { color: var(--vm-earth); font-size: 1rem; line-height: 1.65; margin: 0 0 1.25rem; flex: 1; }
.testimonial-card .author { display: flex; align-items: center; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--vm-sand); }
.testimonial-card .author .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--vm-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-card .author .avatar-img {
  object-fit: cover;
  border: 2px solid var(--vm-cream);
}

/* Respuesta del propietario */
.owner-reply {
  margin-top: 1rem;
  padding: .85rem 1rem;
  background: rgba(var(--vm-primary-rgb), 0.07);
  border-left: 3px solid var(--vm-primary);
  border-radius: 0 12px 12px 0;
}
.owner-reply-head {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .4rem;
}
.owner-reply-head .material-symbols-outlined {
  font-size: 18px;
  color: var(--vm-primary);
  background: rgba(var(--vm-primary-rgb), 0.15);
  width: 26px; height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.owner-reply-head strong {
  display: block;
  color: var(--vm-dark);
  font-weight: 700;
  font-size: .88rem;
  line-height: 1.2;
}
.owner-reply-date {
  display: block;
  color: var(--vm-earth-soft);
  font-size: .75rem;
  margin-top: .15rem;
}
.owner-reply p {
  margin: 0;
  color: var(--vm-earth);
  font-size: .92rem;
  line-height: 1.55;
  font-style: italic;
}
.testimonial-card .author .name { font-weight: 700; color: var(--vm-heading); line-height: 1.2; }
.testimonial-card .author .src { font-size: .8rem; color: var(--vm-earth-soft); display: flex; align-items: center; gap: .3rem; }
.testimonial-card .author .src::before { content: 'G'; display: inline-flex; width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(135deg, #4285F4, #DB4437, #F4B400, #0F9D58); color: #fff; font-size: 11px; align-items: center; justify-content: center; font-weight: 700; }

/* =================== Bloque "Deja reseña en Google" =================== */
.review-cta {
  margin-top: 2.5rem;
  background: #fff;
  border: 1.5px solid var(--vm-sand);
  border-radius: 24px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: center;
  box-shadow: 0 14px 36px -12px rgba(42,39,35,0.10);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
@media (min-width: 720px) {
  .review-cta { grid-template-columns: auto 1fr auto; padding: 1.75rem 2rem; gap: 1.5rem; }
}
.review-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--vm-primary-rgb), 0.40);
  box-shadow: 0 22px 48px -14px rgba(42,39,35,0.18);
}
.review-cta-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--vm-cream-soft);
  border: 1px solid var(--vm-sand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-cta-icon .google-g { width: 36px; height: 36px; display: block; }

.review-cta-body { min-width: 0; }
.review-cta-stars {
  display: flex; align-items: center; gap: .15rem;
  color: var(--vm-star);
  font-size: .9rem;
  margin-bottom: .35rem;
  flex-wrap: wrap;
}
.review-cta-stars .material-symbols-outlined { font-size: 18px; font-variation-settings: 'FILL' 1; }
.review-cta-stars strong { color: var(--vm-dark); margin-left: .35rem; font-weight: 800; }
.review-cta-stars .muted { color: var(--vm-earth-soft); font-weight: 500; }

.review-cta-body h3 {
  margin: .15rem 0 .3rem;
  font-size: 1.15rem;
  color: var(--vm-dark);
  font-weight: 800;
  line-height: 1.25;
}
.review-cta-body p {
  margin: 0;
  color: var(--vm-earth-soft);
  font-size: .92rem;
  line-height: 1.5;
}

.review-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 719px) {
  .review-cta-btn {
    grid-column: span 2;
    width: 100%;
    justify-content: center;
  }
}

/* =================== Banner CTA =================== */
.cta-banner {
  background: var(--vm-dark);
  color: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 768px) { .cta-banner { padding: 4.5rem 0; } }
.cta-banner > .container-vm { position: relative; z-index: 2; }
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.cta-banner::before {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(var(--vm-primary-rgb), 0.35), transparent 65%);
  top: -240px; right: -140px;
  filter: blur(40px);
  animation: drift1 26s ease-in-out infinite;
}
.cta-banner::after {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(var(--vm-primary-rgb), 0.22), transparent 65%);
  bottom: -160px; left: -80px;
  filter: blur(40px);
  animation: drift2 32s ease-in-out infinite;
}
.cta-banner .content { position: relative; z-index: 1; }
.cta-banner-row { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; justify-content: space-between; text-align: center; }
@media (min-width: 768px) { .cta-banner-row { flex-direction: row; text-align: left; } }
.cta-banner h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; color: #fff; margin: 0 0 .35rem; letter-spacing: -0.02em; }
.cta-banner p { color: rgba(255,255,255,0.92); font-size: 1.1rem; margin: 0; max-width: 500px; }
.cta-banner .btn-on-dark {
  background: var(--vm-primary);
  color: #fff;
  padding: 1rem 1.85rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  box-shadow: 0 12px 30px rgba(var(--vm-primary-rgb), 0.45);
  transition: all .25s ease;
}
.cta-banner .btn-on-dark:hover { background: var(--vm-primary-dark); }
@media (max-width: 767px) {
  .cta-banner .btn-on-dark { width: 100%; padding: .9rem 1.25rem; font-size: 1rem; }
}
.cta-banner .btn-on-dark:hover { transform: translateY(-2px) scale(1.02); }

/* =================== Ubicación =================== */
.location-grid { display: grid; gap: 1.5rem; align-items: stretch; }
@media (min-width: 768px) { .location-grid { grid-template-columns: 1.1fr 1fr; gap: 3rem; } }
.location-grid .map-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px -12px rgba(63,58,51,0.20);
  min-height: 280px;
  background: var(--vm-sand);
}
@media (min-width: 768px) { .location-grid .map-wrap { border-radius: 28px; min-height: 380px; } }
.location-grid iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }
@media (min-width: 768px) { .location-grid iframe { min-height: 380px; } }
@media (max-width: 540px) {
  .location-grid + div, .location-grid > div + div { display: flex; flex-direction: column; }
  .location-grid > div > div[style*="display:flex"] > a { flex: 1 1 100%; justify-content: center; }
}

.info-list { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.info-list .row { display: flex; align-items: flex-start; gap: 1rem; }
.info-list .icon-circle {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(var(--vm-primary-rgb), 0.10);
  color: var(--vm-primary-dark);
  display: flex; align-items: center; justify-content: center;
}
.info-list strong { color: var(--vm-heading); display: block; font-weight: 700; margin-bottom: .15rem; }
.info-list .value { color: var(--vm-earth-soft); }

/* Hours block (Google business hours) */
.hours-block strong { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; }
.hours-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.hours-badge .dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.hours-badge-open { background: rgba(var(--vm-primary-rgb), 0.15); color: var(--vm-primary-dark); }
.hours-badge-open .dot { background: var(--vm-primary); animation: hoursPulse 1.8s ease-in-out infinite; }
.hours-badge-closed { background: rgba(193, 52, 47, 0.10); color: #c1342f; }
.hours-badge-closed .dot { background: #c1342f; }
@keyframes hoursPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.25); }
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: .65rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .35rem .65rem;
  border-radius: 8px;
  font-size: .92rem;
  color: var(--vm-earth-soft);
  transition: background .2s ease;
}
.hours-row.is-today {
  background: rgba(var(--vm-primary-rgb), 0.08);
  color: var(--vm-heading);
  font-weight: 700;
}
.hours-row .hours-day { text-transform: capitalize; }
.hours-row .hours-times { font-variant-numeric: tabular-nums; }
.hours-row .hours-closed { color: var(--vm-muted, #999); font-style: italic; font-weight: 400; }

/* =================== Footer =================== */
.site-footer {
  background: var(--vm-dark);
  color: rgba(255,255,255,0.72);
  padding: 4rem 0 1.75rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.site-footer > .container-vm { position: relative; z-index: 2; }
.site-footer::before {
  content: '';
  position: absolute;
  top: -200px; left: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--vm-primary-rgb), 0.18), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  animation: drift1 30s ease-in-out infinite;
  will-change: transform;
}
.site-footer::after {
  content: '';
  position: absolute;
  bottom: -160px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--vm-primary-rgb), 0.10), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  animation: drift2 34s ease-in-out infinite;
  will-change: transform;
}
.site-footer h4 { color: #fff; font-weight: 800; margin: 0 0 .85rem; font-size: 1rem; letter-spacing: .03em; }
.site-footer a { color: rgba(255,255,255,0.75); transition: color .2s ease; }
.site-footer a:hover { color: #fff; }
.site-footer .brand-row { display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem; color: #fff; font-weight: 800; font-size: 1.3rem; }
.site-footer .brand-row .icon-circle { width: 40px; height: 40px; border-radius: 12px; background: rgba(var(--vm-primary-rgb), 0.20); color: var(--vm-primary); display: flex; align-items: center; justify-content: center; }
.footer-logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  display: block;
  flex-shrink: 0;
}

/* Logo en páginas de autenticación (login, registro, recuperar) */
.auth-logo-wrap {
  text-align: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--vm-sand);
}
.auth-logo {
  height: 56px;
  width: auto;
  max-width: 180px;
  display: inline-block;
  vertical-align: middle;
}
.auth-logo.vm-logo-fallback {
  width: 56px; height: 56px;
  background: rgba(var(--vm-primary-rgb), 0.12);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.auth-logo.vm-logo-fallback .material-symbols-outlined {
  font-size: 30px;
  color: var(--vm-primary-dark);
}
.vm-logo-link { display: inline-block; line-height: 0; }
.site-footer .bottom { border-top: 1px solid rgba(255,255,255,0.10); margin-top: 2.5rem; padding-top: 1.25rem; text-align: center; font-size: .85rem; color: rgba(255,255,255,0.50); }
.footer-cols { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-cols { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }

/* Newsletter form */
.vm-newsletter { margin: 0; }
.vm-newsletter-label {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; color: #fff;
  margin-bottom: .25rem;
}
.vm-newsletter-label .material-symbols-outlined { font-size: 20px; color: var(--vm-primary); }
.vm-newsletter-hint {
  margin: .35rem 0 .85rem;
  font-size: .82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.vm-newsletter-row {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.vm-newsletter-row input[type="email"] {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  outline: none;
  padding: .7rem .9rem;
  color: #fff;
  font-size: .9rem;
  min-width: 0;
  transition: border-color .2s ease, background .2s ease;
}
.vm-newsletter-row input[type="email"]:focus {
  border-color: rgba(var(--vm-primary-rgb), 0.6);
  background: rgba(255,255,255,0.10);
}
.vm-newsletter-row input[type="email"]::placeholder { color: rgba(255,255,255,0.40); }
.vm-newsletter-submit {
  width: 100%;
  justify-content: center !important;
  padding: .65rem 1rem !important;
  font-size: .88rem !important;
  border-radius: 10px !important;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.vm-newsletter-submit::before { display: none !important; } /* anular shimmer del btn-primary */
.vm-newsletter-submit .material-symbols-outlined { font-size: 18px; }
.vm-newsletter-submit:hover { transform: translateY(-1px); }
.vm-newsletter-msg {
  margin: .6rem 0 0;
  padding: .55rem .8rem;
  border-radius: 10px;
  font-size: .82rem;
  line-height: 1.4;
}
.vm-newsletter-msg.is-ok {
  background: rgba(var(--vm-primary-rgb), 0.16);
  color: var(--vm-primary);
  border: 1px solid rgba(var(--vm-primary-rgb), 0.30);
}
.vm-newsletter-msg.is-err {
  background: rgba(217, 86, 86, 0.16);
  color: #ffb7b7;
  border: 1px solid rgba(217, 86, 86, 0.30);
}

/* Cita previa aviso */
.footer-cita-aviso {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  margin: 1rem 0 .25rem;
  padding: .65rem .85rem;
  background: rgba(var(--vm-primary-rgb), 0.15);
  border-left: 3px solid var(--vm-primary);
  border-radius: 10px;
  color: #fff;
  font-size: .9rem;
  line-height: 1.5;
}
.footer-cita-aviso .material-symbols-outlined {
  color: var(--vm-primary);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-cita-aviso strong { color: #fff; }

/* Disclaimer strip */
.footer-disclaimer {
  margin-top: 2.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,0.85);
  font-size: .9rem;
  line-height: 1.5;
}
.footer-disclaimer .material-symbols-outlined {
  color: var(--vm-primary);
  font-size: 22px;
  flex-shrink: 0;
}
.footer-disclaimer strong { color: #fff; }
.site-footer .footer-disclaimer + .bottom { margin-top: 1.5rem; }

/* =================== FAB "Pedir cita" =================== */
.fab-cita {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  background: var(--vm-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.25rem .85rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(145, 173, 81, 0.45), 0 4px 12px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.fab-cita:hover {
  transform: translateY(-2px) scale(1.03);
  background: var(--vm-primary-dark);
  color: #fff;
  box-shadow: 0 18px 38px rgba(145, 173, 81, 0.55), 0 6px 16px rgba(0,0,0,0.16);
}
.fab-cita::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 999px;
  background: var(--vm-primary);
  opacity: .30;
  animation: fabPing 2.2s cubic-bezier(0,0,.2,1) infinite;
  z-index: -1;
}
@keyframes fabPing {
  0% { transform: scale(1); opacity: .5; }
  75%, 100% { transform: scale(1.35); opacity: 0; }
}
.fab-cita .material-symbols-outlined {
  font-size: 22px;
  font-variation-settings: 'FILL' 1;
}
.fab-cita__label { white-space: nowrap; }
@media (min-width: 768px) {
  .fab-cita {
    right: 1.5rem;
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    padding: 1rem 1.5rem 1rem 1.2rem;
    font-size: 1rem;
  }
  .fab-cita .material-symbols-outlined { font-size: 24px; }
}
@media (max-width: 380px) {
  .fab-cita { padding: .75rem 1rem .75rem .85rem; font-size: .88rem; }
}
body.drawer-open .fab-cita { display: none; }

/* =================== Page header (interiores) =================== */
.page-header { background: var(--vm-cream); padding: 4rem 0 3rem; text-align: center; position: relative; }
.page-header h1 { font-size: clamp(2.2rem, 4vw, 3rem); color: var(--vm-heading); font-weight: 800; margin: 0; letter-spacing: -0.02em; }
.page-header .crumb { color: var(--vm-earth-soft); margin-top: .75rem; font-size: 1.05rem; }

/* =================== Single servicio (página individual) =================== */
.service-hero {
  position: relative;
  padding: 3rem 0 4rem;
  background: var(--vm-cream-soft);
  overflow: hidden;
  isolation: isolate;
}
.service-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.svc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
}
.svc-blob-1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(var(--vm-primary-rgb), 0.25), transparent 65%);
  top: -160px; right: -120px;
  animation: drift1 22s ease-in-out infinite;
}
.svc-blob-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(42, 39, 35, 0.12), transparent 65%);
  bottom: -140px; left: -100px;
  animation: drift2 28s ease-in-out infinite;
}
.service-hero > .container-vm { position: relative; z-index: 2; }

.svc-breadcrumb {
  display: flex; flex-wrap: wrap; gap: .35rem;
  font-size: .85rem; color: var(--vm-earth-soft);
  margin-bottom: 1.25rem;
}
.svc-breadcrumb a { color: var(--vm-earth-soft); text-decoration: none; }
.svc-breadcrumb a:hover { color: var(--vm-primary-dark); }
.svc-breadcrumb [aria-current="page"] { color: var(--vm-dark); font-weight: 600; }

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) { .service-hero-grid { grid-template-columns: 1.05fr 1fr; gap: 3rem; } }

.service-hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--vm-dark);
  letter-spacing: -0.02em;
  margin: .75rem 0 1.25rem;
  line-height: 1.1;
}
.service-hero-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; }
.svc-meta-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  background: #fff;
  border: 1px solid var(--vm-sand);
  padding: .45rem .85rem;
  border-radius: 999px;
  color: var(--vm-dark);
  font-weight: 700;
  font-size: .92rem;
}
.svc-meta-pill .material-symbols-outlined { font-size: 18px; color: var(--vm-primary-dark); }
.svc-meta-pill.svc-price { background: rgba(var(--vm-primary-rgb), 0.12); border-color: rgba(var(--vm-primary-rgb), 0.30); color: var(--vm-primary-dark); }
.svc-meta-pill.has-discount { background: var(--vm-dark); border-color: var(--vm-dark); color: #fff; }
.svc-meta-pill .price-old { text-decoration: line-through; opacity: .55; font-weight: 600; font-size: .82rem; }
.svc-meta-pill .price-new { color: var(--vm-primary); font-weight: 800; }
.offer-badge-inline {
  background: var(--vm-primary);
  color: #fff;
  padding: .1rem .5rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.service-hero-lead {
  font-size: 1.1rem;
  color: var(--vm-earth-soft);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 540px;
}
.service-hero-ctas { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.25rem; }
.service-hero-offer {
  display: inline-flex; align-items: center; gap: .35rem;
  margin: 0;
  color: var(--vm-primary-dark);
  font-weight: 600;
  font-size: .9rem;
}
.service-hero-offer .material-symbols-outlined { font-size: 18px; }

.service-hero-visual { position: relative; }
.service-hero-visual img {
  width: 100%;
  height: clamp(320px, 50vw, 520px);
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 50px -16px rgba(42, 39, 35, 0.25);
}
.service-hero-placeholder {
  width: 100%;
  height: clamp(320px, 50vw, 520px);
  border-radius: 28px;
  background: rgba(var(--vm-primary-rgb), 0.12);
  color: var(--vm-primary);
  display: flex; align-items: center; justify-content: center;
}
.service-hero-placeholder .material-symbols-outlined { font-size: 80px; font-variation-settings: 'FILL' 1; }

/* Contenido detalle */
.service-content { font-size: 1.05rem; color: var(--vm-earth); line-height: 1.75; }

.service-benefits {
  margin: 2.5rem 0;
  padding: 1.75rem;
  background: var(--vm-cream-soft);
  border: 1px solid var(--vm-sand);
  border-radius: 24px;
}
.service-benefits h2 {
  display: flex; align-items: center; gap: .55rem;
  margin: 0 0 1.25rem;
  font-size: 1.3rem;
  color: var(--vm-dark);
  font-weight: 800;
}
.service-benefits h2 .material-symbols-outlined {
  color: var(--vm-primary);
  font-variation-settings: 'FILL' 1;
}
.service-benefits ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .service-benefits ul { grid-template-columns: 1fr 1fr; } }
.service-benefits li {
  display: flex; align-items: flex-start; gap: .6rem;
  color: var(--vm-earth);
  font-size: .98rem;
  line-height: 1.5;
}
.service-benefits li .material-symbols-outlined {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--vm-primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-variation-settings: 'FILL' 1;
}

.service-cta-card {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--vm-dark);
  color: #fff;
  border-radius: 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 18px 40px -14px rgba(42,39,35,0.30);
}

/* Bloque de reseñas en single de servicio */
.svc-reviews { margin: 2.5rem 0; }
.svc-reviews-head { margin-bottom: 1.5rem; }
.svc-reviews-head h2 {
  display: flex; align-items: center; gap: .55rem;
  font-size: 1.3rem; color: var(--vm-dark); font-weight: 800;
  margin: 0 0 .65rem;
}
.svc-reviews-head h2 .material-symbols-outlined { color: var(--vm-primary); }
.svc-reviews-rating {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .92rem;
  color: var(--vm-earth);
  flex-wrap: wrap;
}
.svc-reviews-rating .stars { color: var(--vm-star); display: inline-flex; gap: 1px; }
.svc-reviews-rating .stars .material-symbols-outlined { font-size: 18px; font-variation-settings: 'FILL' 1; }
.svc-reviews-rating strong { color: var(--vm-dark); font-weight: 800; margin-left: .25rem; }
.svc-reviews-rating .muted { color: var(--vm-earth-soft); }

.svc-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 720px) { .svc-reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-review-card {
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: 18px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--vm-primary-rgb), 0.35);
  box-shadow: 0 14px 30px -10px rgba(42,39,35,0.12);
}
.svc-review-card .stars {
  color: var(--vm-star);
  display: inline-flex;
  gap: 1px;
}
.svc-review-card .stars .material-symbols-outlined { font-size: 18px; font-variation-settings: 'FILL' 1; }
.svc-review-text {
  margin: 0;
  color: var(--vm-earth);
  font-size: .95rem;
  line-height: 1.55;
  font-style: italic;
  flex: 1;
}
.svc-review-author {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding-top: .75rem;
  border-top: 1px solid var(--vm-sand);
}
.svc-review-author .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--vm-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
  object-fit: cover;
}
.svc-review-author .avatar-img { border: 2px solid var(--vm-cream); }
.svc-review-author .name {
  color: var(--vm-dark);
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.2;
}
.svc-review-author .src {
  color: var(--vm-earth-soft);
  font-size: .78rem;
  margin-top: .1rem;
}

.svc-reviews-cta {
  display: flex;
  justify-content: center;
}

/* H1 con subtítulo de ciudad SEO */
.svc-h1-city {
  display: block;
  font-size: .55em;
  color: var(--vm-earth-soft);
  font-weight: 600;
  margin-top: .35rem;
  letter-spacing: 0;
}

/* Info grid: "Recomendado para" + "Qué incluye" en 2 columnas */
.svc-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0;
}
@media (min-width: 720px) { .svc-info-grid { grid-template-columns: 1fr 1fr; } }
.svc-info-card {
  background: var(--vm-cream-soft);
  border: 1px solid var(--vm-sand);
  border-radius: 20px;
  padding: 1.5rem;
}
.svc-info-head {
  display: flex; align-items: center; gap: .65rem;
  margin-bottom: 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--vm-sand);
}
.svc-info-head .material-symbols-outlined {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--vm-primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-variation-settings: 'FILL' 1;
}
.svc-info-head h3 { margin: 0; font-size: 1.1rem; font-weight: 800; color: var(--vm-dark); }
.svc-info-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .65rem; }
.svc-info-card li {
  display: flex; align-items: flex-start; gap: .55rem;
  color: var(--vm-earth); font-size: .95rem; line-height: 1.5;
}
.svc-info-card li .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--vm-primary);
  margin-top: 2px;
}

/* Timeline antes/durante/después */
.svc-timeline { margin: 2.5rem 0; }
.svc-timeline > h2 {
  display: flex; align-items: center; gap: .55rem;
  font-size: 1.3rem; color: var(--vm-dark); font-weight: 800;
  margin: 0 0 1.5rem;
}
.svc-timeline > h2 .material-symbols-outlined { color: var(--vm-primary); }
.svc-timeline-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) { .svc-timeline-steps { grid-template-columns: repeat(3, 1fr); } }
.svc-timeline-step {
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: 18px;
  padding: 1.5rem 1.25rem 1.25rem;
  position: relative;
}
.svc-step-num {
  position: absolute;
  top: -16px; left: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--vm-dark);
  color: var(--vm-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(42,39,35,0.20);
}
.svc-timeline-step h4 {
  margin: .5rem 0 .75rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--vm-dark);
}
.svc-timeline-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.svc-timeline-step li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--vm-earth);
  font-size: .92rem;
  line-height: 1.5;
}
.svc-timeline-step li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vm-primary);
}

/* FAQs accordion */
.svc-faqs { margin: 2.5rem 0; }
.svc-faqs > h2 {
  display: flex; align-items: center; gap: .55rem;
  font-size: 1.3rem; color: var(--vm-dark); font-weight: 800;
  margin: 0 0 1.25rem;
}
.svc-faqs > h2 .material-symbols-outlined { color: var(--vm-primary); }
.svc-faq {
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: 14px;
  margin-bottom: .65rem;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.svc-faq[open] { border-color: var(--vm-primary); box-shadow: 0 8px 24px -10px rgba(var(--vm-primary-rgb), 0.25); }
.svc-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 700;
  color: var(--vm-dark);
  font-size: 1rem;
}
.svc-faq summary::-webkit-details-marker { display: none; }
.svc-faq summary::marker { display: none; }
.svc-faq:hover summary { background: var(--vm-cream-soft); }
.svc-faq-icon {
  color: var(--vm-primary);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.svc-faq[open] .svc-faq-icon { transform: rotate(180deg); }
.svc-faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--vm-earth);
  line-height: 1.65;
  font-size: .96rem;
}
.svc-faq-answer p { margin: 0 0 .65rem; }
.svc-faq-answer p:last-child { margin-bottom: 0; }

/* Contraindicaciones - bloque de advertencia */
.svc-warning {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: #FFFBEA;
  border: 1.5px solid #FCD34D;
  border-left-width: 6px;
  border-radius: 16px;
}
.svc-warning-head {
  display: flex; align-items: center; gap: .55rem;
  margin-bottom: .75rem;
}
.svc-warning-head .material-symbols-outlined {
  color: #B45309;
  font-variation-settings: 'FILL' 1;
}
.svc-warning-head h3 { margin: 0; font-size: 1.1rem; color: #92400E; font-weight: 800; }
.svc-warning p { color: #78350F; margin: 0 0 .75rem; font-size: .95rem; }
.svc-warning ul { color: #78350F; padding-left: 1.25rem; margin: 0; }
.svc-warning li { margin-bottom: .35rem; font-size: .95rem; }

.service-cta-card h3 { margin: 0 0 .35rem; color: #fff; font-size: 1.2rem; font-weight: 800; }
.service-cta-card p { margin: 0; color: rgba(255,255,255,0.78); font-size: .95rem; }
.service-cta-card .btn-primary { background: var(--vm-primary); color: var(--vm-dark); }
@media (max-width: 540px) {
  .service-cta-card { padding: 1.5rem; }
  .service-cta-card .btn-primary { width: 100%; justify-content: center; }
}

/* =================== Detalle servicio (página /servicios/) =================== */
.service-detail { padding: 5rem 0; border-bottom: 1px solid var(--vm-sand); }
.service-detail:last-child { border-bottom: 0; }
.service-detail-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .service-detail-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.service-detail-grid img { width: 100%; height: clamp(380px, 45vw, 520px); object-fit: cover; border-radius: 28px; }
.service-detail-grid h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--vm-heading); font-weight: 800; margin: 1rem 0; letter-spacing: -0.02em; }
.service-detail-grid .meta-pill {
  display: inline-flex; align-items: center; gap: .65rem;
  background: var(--vm-cream-soft);
  border: 1px solid var(--vm-sand);
  padding: .5rem 1rem;
  border-radius: 999px;
  color: var(--vm-earth);
  font-weight: 700;
  font-size: .9rem;
}
.service-detail-grid .meta-pill .price { color: var(--vm-primary-dark); }
.service-detail-grid p { color: var(--vm-earth); font-size: 1.05rem; line-height: 1.7; margin: 1rem 0; }
.service-detail-grid ul { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.service-detail-grid ul li { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .65rem; color: var(--vm-earth); }
.service-detail-grid ul li .check { color: var(--vm-primary); flex-shrink: 0; }

/* =================== Prose =================== */
.prose-vm h2 { color: var(--vm-heading); font-size: 1.6rem; font-weight: 800; margin: 1.75rem 0 .85rem; }
.prose-vm h3 { color: var(--vm-heading); font-size: 1.25rem; font-weight: 800; margin: 1.5rem 0 .65rem; }
.prose-vm p { margin: 0 0 1.1rem; line-height: 1.75; color: var(--vm-earth); }
.prose-vm ul { padding-left: 1.25rem; margin: 0 0 1.1rem; }
.prose-vm ul li { margin-bottom: .4rem; }

/* =================== Decorative SVG corners =================== */
.deco-leaf {
  position: absolute;
  width: 120px; height: 120px;
  pointer-events: none;
  opacity: .35;
}
@media (min-width: 1024px) { .deco-leaf { width: 180px; height: 180px; } }

/* =================== Misc =================== */
.text-primary { color: var(--vm-primary); }
.text-coral { color: var(--vm-coral); }
.muted { color: var(--vm-muted); }

/* =================== AUTH (login, registro, mi cuenta) =================== */

.kicker-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--vm-dark);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: .85rem;
}
.kicker-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--vm-primary); animation: pulse 2s ease-in-out infinite; }

.auth-section {
  padding: 4rem 0;
  background: var(--vm-cream-soft);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}
.auth-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 24px 60px -20px rgba(42,39,35,0.18);
}
@media (min-width: 768px) { .auth-card { padding: 3rem; } }
.auth-head { text-align: center; margin-bottom: 1.75rem; }
.auth-head h1 { font-size: clamp(1.6rem, 4vw, 2rem); color: var(--vm-dark); font-weight: 800; margin: 0 0 .65rem; letter-spacing: -0.02em; }
.auth-head p { color: var(--vm-earth-soft); margin: 0; font-size: 1rem; }

/* Formularios genéricos VM */
.vm-form { display: flex; flex-direction: column; gap: 1rem; }
.vm-form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 540px) { .vm-form-grid { grid-template-columns: 1fr 1fr; } }

.vm-field { display: flex; flex-direction: column; gap: .35rem; }
.vm-field label,
.vm-radio-group legend {
  font-weight: 700;
  color: var(--vm-dark);
  font-size: .92rem;
  margin: 0;
}
.vm-field .req { color: var(--vm-primary); }
.vm-field-hint { font-size: .78rem; color: var(--vm-earth-soft); margin: .15rem 0 0; }

.vm-form input[type="text"],
.vm-form input[type="email"],
.vm-form input[type="tel"],
.vm-form input[type="password"],
.vm-form input[type="number"],
.vm-form input[type="date"],
.vm-form select,
.vm-form textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--vm-sand);
  border-radius: 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--vm-dark);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.vm-form input:focus,
.vm-form select:focus,
.vm-form textarea:focus {
  outline: 0;
  border-color: var(--vm-primary);
  box-shadow: 0 0 0 4px rgba(var(--vm-primary-rgb), 0.15);
  background: #fff;
}
.vm-form textarea { resize: vertical; min-height: 90px; }
.vm-form input:disabled { background: var(--vm-cream-soft); color: var(--vm-earth-soft); cursor: not-allowed; }

/* Radio pills */
.vm-radio-group { border: 0; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .45rem; }
.vm-radio-pills,
.vm-checkbox-pills { display: flex; flex-wrap: wrap; gap: .45rem; }
.vm-radio-pill {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.vm-radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.vm-radio-pill span {
  display: inline-block;
  padding: .55rem 1rem;
  border: 1.5px solid var(--vm-sand);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--vm-earth);
  background: #fff;
  transition: all .2s ease;
}
.vm-radio-pill:hover span { border-color: var(--vm-primary); color: var(--vm-primary-dark); }
.vm-radio-pill input:checked + span {
  background: var(--vm-dark);
  color: #fff;
  border-color: var(--vm-dark);
  box-shadow: 0 4px 12px rgba(42,39,35,0.20);
}
.vm-radio-pill input:focus-visible + span { outline: 2px solid var(--vm-primary); outline-offset: 2px; }

/* Checkbox row (terms, remember…) */
.vm-check-row {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--vm-earth);
  cursor: pointer;
  padding: .25rem 0;
}
.vm-check-row input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--vm-primary);
  flex-shrink: 0;
  margin-top: .2rem;
}
.vm-check-row a { color: var(--vm-primary); font-weight: 600; }

.vm-form-footer { text-align: center; margin: 1rem 0 0; color: var(--vm-earth-soft); font-size: .92rem; }
.vm-form-footer a { color: var(--vm-dark); }

/* Alerts */
.vm-alert {
  display: flex; gap: .65rem; align-items: flex-start;
  padding: .85rem 1rem;
  border-radius: 14px;
  font-size: .92rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.vm-alert .material-symbols-outlined { flex-shrink: 0; }
.vm-alert-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.vm-alert-error .material-symbols-outlined { color: #DC2626; }
.vm-alert-success { background: rgba(var(--vm-primary-rgb), 0.10); color: var(--vm-primary-dark); border: 1px solid rgba(var(--vm-primary-rgb), 0.25); }
.vm-alert-success .material-symbols-outlined { color: var(--vm-primary); font-variation-settings: 'FILL' 1; }

/* =================== MI CUENTA =================== */
.account-hero {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(var(--vm-primary-rgb), 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 100%, rgba(228, 205, 132, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, var(--vm-dark) 0%, #211e1a 100%);
  color: #fff;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.account-hero > .container-vm { position: relative; z-index: 1; }
.account-greeting {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.account-greeting-info {
  flex: 1;
  min-width: 0;
}
.account-greeting h1 {
  font-size: clamp(1.25rem, 4.5vw, 1.85rem);
  margin: 0 0 .15rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
}
.account-greeting h1 .wave {
  display: inline-block;
  animation: vmWave 2.4s ease-in-out infinite;
  transform-origin: 70% 70%;
}
@keyframes vmWave {
  0%, 60%, 100% { transform: rotate(0); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
}
.account-greeting-email {
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: clamp(.82rem, 2vw, .95rem);
  word-break: break-all;
}
.avatar-lg {
  width: clamp(52px, 12vw, 72px);
  height: clamp(52px, 12vw, 72px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vm-primary), #a4c168);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(1.3rem, 4vw, 1.85rem);
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(var(--vm-primary-rgb), 0.40), inset 0 1px 0 rgba(255,255,255,0.20);
  position: relative;
}
.avatar-lg::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(228, 205, 132, 0.6), transparent 60%);
  z-index: -1;
  filter: blur(8px);
  opacity: .65;
}
.account-logout {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  flex-shrink: 0;
}
.account-logout:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.30);
  color: #fff;
}
.account-logout .material-symbols-outlined { font-size: 18px; }
@media (max-width: 540px) {
  .account-logout-label { display: none; }
  .account-logout { padding: .5rem; width: 36px; height: 36px; justify-content: center; }
}

/* ============== Account layout (sidebar + content) ============== */
.account-body { padding: clamp(1rem, 3vw, 2rem) 0 3rem; }
.account-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 960px) {
  .account-layout { grid-template-columns: 260px 1fr; gap: 1.75rem; align-items: start; }
}

/* Sidebar */
.account-sidebar { position: relative; }
@media (min-width: 960px) {
  .account-sidebar {
    position: sticky;
    top: 5.5rem;
    align-self: start;
  }
}

/* Tabs */
.account-tabs {
  display: flex;
  gap: .35rem;
  padding: .35rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--vm-sand);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.account-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 960px) {
  .account-tabs:not(.account-tabs--horizontal) {
    flex-direction: column;
    gap: .25rem;
    padding: .55rem;
    border-radius: 18px;
    overflow: visible;
  }
}
/* Modificador para tabs siempre horizontales (panel cliente, ficha) */
.account-tabs--horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: .35rem;
  padding: .35rem;
  margin-bottom: 1rem;
}
@media (min-width: 720px) {
  .account-tabs--horizontal {
    padding: .5rem;
    gap: .4rem;
  }
}
.account-tab {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--vm-earth-soft);
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
  flex-shrink: 0;
  text-decoration: none;
  scroll-snap-align: start;
}
.account-tab:hover { color: var(--vm-dark); background: var(--vm-cream-soft); }
.account-tab.is-active {
  background: var(--vm-dark);
  color: #fff;
  box-shadow: 0 6px 16px -8px rgba(42, 39, 35, 0.35);
}
.account-tab-icon { font-size: 20px; flex-shrink: 0; }
.account-tab-icon.material-symbols-outlined { font-variation-settings: 'FILL' 0; }
.account-tab.is-active .account-tab-icon.material-symbols-outlined { font-variation-settings: 'FILL' 1; }
@media (min-width: 960px) {
  .account-tab { padding: .75rem 1rem; }
}
@media (max-width: 540px) {
  .account-tab { padding: .6rem .85rem; font-size: .88rem; }
  .account-tab-icon { font-size: 18px; }
}

/* Content column */
.account-content { display: flex; flex-direction: column; gap: 1rem; min-width: 0; }

/* Account cards & groups */
.account-form { display: flex; flex-direction: column; gap: 1.25rem; }
.account-group,
.account-card {
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: clamp(14px, 2.5vw, 20px);
  padding: clamp(1.1rem, 3vw, 1.85rem);
  box-shadow: 0 4px 16px -10px rgba(42,39,35,0.06);
  transition: box-shadow .3s ease;
}
.account-group:hover,
.account-card:hover {
  box-shadow: 0 8px 24px -12px rgba(42,39,35,0.12);
}
.group-head, .account-card-head {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.1rem;
  padding-bottom: .95rem;
  border-bottom: 1px solid var(--vm-sand);
}
.group-head .material-symbols-outlined,
.account-card-head > .material-symbols-outlined {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(var(--vm-primary-rgb), 0.12);
  color: var(--vm-primary-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-variation-settings: 'FILL' 1;
  flex-shrink: 0;
}
.group-head h2,
.account-card-head h2 {
  margin: 0;
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  color: var(--vm-dark);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.account-card-head p,
.group-head .group-sub {
  margin: .25rem 0 0;
  color: var(--vm-earth-soft);
  font-size: .88rem;
  line-height: 1.4;
}
.account-card-head > div { flex: 1; min-width: 0; }

.group-body { display: flex; flex-direction: column; gap: 1.1rem; }
.group-body.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 640px) {
  .group-body.two-col { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: flex-end;
  padding-top: .5rem;
}
@media (max-width: 539px) {
  .form-actions .btn-primary { width: 100%; justify-content: center; }
}

.vm-disclaimer {
  font-size: .82rem;
  color: var(--vm-earth-soft);
  text-align: center;
  margin: 1rem auto 0;
  max-width: 640px;
  line-height: 1.55;
}

/* Sessions list */
.sessions-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.session-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  background: var(--vm-cream-soft);
  border-radius: 18px;
  padding: 1.25rem;
}
.session-date {
  background: var(--vm-dark);
  color: #fff;
  padding: .85rem 1rem;
  border-radius: 14px;
  text-align: center;
  align-self: start;
  min-width: 80px;
}
.session-date .day { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--vm-primary); }
.session-date .month { font-size: .78rem; opacity: .85; text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; display: block; }
.session-body h4 { margin: 0 0 .35rem; color: var(--vm-dark); font-size: 1.05rem; font-weight: 700; }
.session-meta { display: flex; flex-wrap: wrap; gap: .85rem; color: var(--vm-earth-soft); font-size: .85rem; }
.session-meta .material-symbols-outlined { font-size: 16px; vertical-align: middle; }
.session-notes { margin-top: .65rem; color: var(--vm-earth); font-size: .92rem; line-height: 1.55; }

.empty-state { text-align: center; padding: 2rem 1rem; }
.empty-state .material-symbols-outlined { font-size: 48px; color: var(--vm-primary); margin-bottom: .5rem; font-variation-settings: 'FILL' 1; }
.empty-state h3 { color: var(--vm-dark); margin: .35rem 0; font-size: 1.2rem; }
.empty-state p { color: var(--vm-earth-soft); margin: 0 0 1.25rem; }

@media (max-width: 540px) {
  .auth-section { padding: 2rem 0; min-height: 0; }
  .auth-card { padding: 2rem 1.25rem; }
  .account-tabs { top: 64px; }
  .account-tab span:not(.material-symbols-outlined) { display: none; }
  .session-item { grid-template-columns: 1fr; }
  .session-date { display: inline-flex; gap: .65rem; align-items: baseline; padding: .55rem 1rem; }
  .session-date .day { font-size: 1.2rem; }
}

/* =================== PANEL EMPLEADO =================== */
.panel-hero {
  background: linear-gradient(135deg, var(--vm-dark) 0%, #1f1c19 100%);
  color: #fff;
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.panel-hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--vm-primary-rgb), 0.32), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  animation: drift1 26s ease-in-out infinite;
}
.panel-hero > .container-vm { position: relative; z-index: 1; }
.panel-hero-row { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.panel-hero-left { display: flex; align-items: center; gap: 1.25rem; flex: 1 1 auto; min-width: 0; }
.panel-hero-left h1 { color: #fff; margin: 0 0 .35rem; font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; }
.panel-hero-left p { color: rgba(255,255,255,0.78); margin: 0; }
.panel-hero-left .kicker-pill { background: rgba(255,255,255,0.15); margin-bottom: .65rem; }
.avatar-lg.empleado { background: var(--vm-primary); }
.panel-hero-actions { display: flex; flex-wrap: wrap; gap: .65rem; }
@media (max-width: 640px) {
  .panel-hero-actions { width: 100%; }
  .panel-hero-actions .btn-primary,
  .panel-hero-actions .btn-soft { flex: 1; justify-content: center; }
}

/* Stats grid */
.panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .panel-stats { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.panel-stat {
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: 20px;
  padding: 1.25rem;
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.panel-stat:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(42,39,35,0.12); border-color: rgba(var(--vm-primary-rgb),0.40); }
.panel-stat-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(var(--vm-primary-rgb), 0.12);
  color: var(--vm-primary-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .85rem;
}
.panel-stat-icon .material-symbols-outlined { font-size: 22px; }
.panel-stat-icon.coral { background: rgba(232,150,121,0.15); color: var(--vm-coral); }
.panel-stat-num { font-size: clamp(1.7rem, 4vw, 2.2rem); font-weight: 800; color: var(--vm-dark); line-height: 1; margin-bottom: .25rem; letter-spacing: -0.02em; }
.panel-stat-lbl { font-size: .85rem; color: var(--vm-earth-soft); font-weight: 500; }

/* Toolbar / search */
.panel-toolbar { margin-bottom: 1.25rem; }
.panel-search {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: 14px;
  padding: .35rem .35rem .35rem 1rem;
  box-shadow: 0 4px 14px -8px rgba(42,39,35,0.10);
}
.panel-search > .material-symbols-outlined { color: var(--vm-earth-soft); }
.panel-search input[type="search"] {
  flex: 1;
  border: 0;
  outline: 0;
  padding: .65rem .25rem;
  font-size: .95rem;
  background: transparent;
  font-family: inherit;
  color: var(--vm-dark);
  min-width: 0;
}
.panel-search input[type="search"]::placeholder { color: var(--vm-earth-soft); }
.panel-search .btn-primary,
.panel-search .btn-soft { padding: .55rem 1rem; font-size: .9rem; }
.panel-search .btn-clear { padding: .55rem .85rem; }

/* Card del panel */
.panel-card {
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 6px 18px -10px rgba(42,39,35,0.08);
}
@media (min-width: 768px) { .panel-card { padding: 2rem; } }
.panel-card-head { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--vm-sand); }
.panel-card-head h2 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--vm-dark);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.panel-card-head .muted-counter { color: var(--vm-earth-soft); font-weight: 500; font-size: .9rem; }
.panel-card-head .muted { color: var(--vm-earth-soft); margin: 0; font-size: .9rem; }

/* Tabla de clientes */
.clients-table-wrap { overflow-x: auto; margin: 0 -1.5rem; padding: 0 1.5rem; }
@media (min-width: 768px) { .clients-table-wrap { margin: 0 -2rem; padding: 0 2rem; } }
.clients-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.clients-table thead th {
  text-align: left;
  font-size: .75rem;
  font-weight: 700;
  color: var(--vm-earth-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .5rem .75rem;
  border-bottom: 1px solid var(--vm-sand);
}
.clients-table tbody td {
  padding: 1rem .75rem;
  border-bottom: 1px solid var(--vm-cream-soft);
  vertical-align: middle;
  font-size: .92rem;
}
.clients-table tbody tr:hover td { background: var(--vm-cream-soft); }
.clients-table tbody tr:last-child td { border-bottom: 0; }
.clients-table .cell-client { display: flex; align-items: center; gap: .75rem; min-width: 200px; }
.clients-table .cl-name { font-weight: 700; color: var(--vm-dark); text-decoration: none; }
.clients-table .cl-name:hover { color: var(--vm-primary); }
.clients-table .cl-sub { font-size: .8rem; color: var(--vm-earth-soft); margin-top: .15rem; }
.clients-table .cl-email { color: var(--vm-dark); }
.clients-table .cl-email a, .clients-table .cl-sub a { color: inherit; }
.clients-table .cell-actions { text-align: right; }
.clients-table .btn-sm { padding: .45rem .85rem; font-size: .82rem; border-radius: 999px; }
.clients-table .th-meta { width: 100px; }

.avatar-sm {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--vm-dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .92rem;
  flex-shrink: 0;
}

.badge-yes {
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(var(--vm-primary-rgb), 0.15);
  color: var(--vm-primary-dark);
  padding: .2rem .6rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
}
.badge-yes .material-symbols-outlined { font-size: 14px; }
.badge-no { color: var(--vm-earth-soft); font-size: .85rem; }

/* Paginación */
.panel-pagination { display: flex; gap: .35rem; justify-content: center; align-items: center; margin-top: 1.5rem; flex-wrap: wrap; }
.panel-page {
  display: inline-flex; align-items: center; justify-content: center; gap: .25rem;
  min-width: 38px; height: 38px;
  padding: 0 .65rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--vm-sand);
  color: var(--vm-earth);
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  transition: all .2s ease;
}
.panel-page:hover { background: var(--vm-cream-soft); border-color: var(--vm-earth); }
.panel-page.is-active { background: var(--vm-dark); color: #fff; border-color: var(--vm-dark); cursor: default; }
.panel-page.is-active:hover { background: var(--vm-dark); color: #fff; }
.panel-page-nav { padding: 0 .85rem; }
.panel-page-nav .material-symbols-outlined { font-size: 18px; }
.panel-page.is-disabled { opacity: .45; pointer-events: none; }
.panel-page-dots { display: inline-flex; align-items: center; justify-content: center; min-width: 24px; color: var(--vm-earth); opacity: .55; padding: 0 .15rem; }
.panel-pagination-info { width: 100%; text-align: center; font-size: .82rem; color: var(--vm-earth); opacity: .7; margin-top: .5rem; }
@media (max-width: 540px) {
  .panel-page .hide-sm { display: none; }
  .panel-page-nav { min-width: 38px; padding: 0 .5rem; }
}

/* Vista de cliente individual */
.client-header {
  display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: flex-start;
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: 24px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 18px -10px rgba(42,39,35,0.08);
}
@media (min-width: 768px) { .client-header { padding: 2rem; align-items: center; } }
.client-info { flex: 1; min-width: 0; }
.client-info h2 { margin: 0 0 .65rem; color: var(--vm-dark); font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 800; }
.client-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; color: var(--vm-earth-soft); font-size: .9rem; align-items: center; }
.client-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.client-meta a { color: var(--vm-dark); text-decoration: none; }
.client-meta a:hover { color: var(--vm-primary); }
.client-meta .material-symbols-outlined { font-size: 18px; color: var(--vm-primary); }
.client-header-actions { display: flex; gap: .65rem; flex-wrap: wrap; }

.client-section {
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: 24px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px -10px rgba(42,39,35,0.08);
}
@media (min-width: 768px) { .client-section { padding: 2rem; } }
.client-section-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--vm-sand); }
.client-section-head .section-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(var(--vm-primary-rgb), 0.12);
  color: var(--vm-primary-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.client-section-head h3 { margin: 0; color: var(--vm-dark); font-size: 1.15rem; font-weight: 800; }

.client-section-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem 1.5rem;
}
@media (min-width: 640px) { .client-section-body { grid-template-columns: 1fr 1fr; } }

.client-row {
  display: flex; flex-direction: column; gap: .15rem;
  padding: .65rem 0;
  border-bottom: 1px dashed var(--vm-sand);
}
.client-row:last-child { border-bottom: 0; }
.client-row dt { font-size: .8rem; color: var(--vm-earth-soft); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin: 0; }
.client-row dd { margin: 0; color: var(--vm-dark); font-weight: 500; line-height: 1.5; word-break: break-word; }
.client-row.is-empty dd { color: var(--vm-earth-soft); font-weight: 400; }
.empty-dash { color: var(--vm-earth-soft); }

@media (max-width: 540px) {
  .panel-search { flex-wrap: wrap; }
  .panel-search input[type="search"] { width: 100%; padding: .85rem .25rem; }
  .panel-search .btn-primary, .panel-search .btn-soft { width: 100%; justify-content: center; }
  .clients-table { min-width: 580px; }
}

/* =================== Tarjeta regalo - vista pública =================== */
.giftcard-stage {
  position: relative;
  height: 100vh;
  height: 100dvh;
  padding: 1rem 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(145, 173, 81, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(145, 173, 81, 0.12) 0%, transparent 60%),
    linear-gradient(160deg, #221f1b 0%, #15130f 50%, #1a1714 100%);
  color: #fff;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
}
body.gc-fullscreen { overflow: hidden; }
@media (min-width: 640px) { .giftcard-stage { padding: 1.5rem 0; } }
.giftcard-stage::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .6;
  mix-blend-mode: screen;
}
@media (min-width: 640px) { .giftcard-stage { padding: 4rem 0; } }
.giftcard-stage > .container-vm { position: relative; z-index: 2; max-width: 720px; }

.giftcard-stage-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.gc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
}
.gc-blob-1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(var(--vm-primary-rgb), 0.50), transparent 65%);
  top: -180px; left: -120px;
  animation: drift1 20s ease-in-out infinite;
}
.gc-blob-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(var(--vm-primary-rgb), 0.35), transparent 65%);
  bottom: -160px; right: -100px;
  animation: drift2 26s ease-in-out infinite;
}
.gc-blob-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255, 0.10), transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation: drift3 18s ease-in-out infinite;
}

.gc-particles { position: absolute; inset: 0; }
.gc-sparkle {
  position: absolute;
  width: 4px; height: 4px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  filter: blur(.5px);
  box-shadow: 0 0 8px rgba(255,255,255,0.95), 0 0 16px rgba(var(--vm-primary-rgb), 0.55);
  animation: sparkleFloat 11s linear infinite;
  animation-delay: calc(var(--i) * -0.85s);
  left: calc(8% + (var(--i) * 6.7%));
  top: 100%;
}
@keyframes sparkleFloat {
  0%   { transform: translate(0, 0) scale(0.5); opacity: 0; }
  10%  { opacity: 1; }
  50%  { opacity: 0.85; transform: translate(20px, -50vh) scale(1); }
  90%  { opacity: 0.5; }
  100% { transform: translate(-12px, -110vh) scale(0.6); opacity: 0; }
}

/* La tarjeta */
.giftcard-card {
  background:
    linear-gradient(160deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(255,255,255, 0.14);
  border-radius: 24px;
  padding: clamp(.75rem, 1.5dvh, 1.25rem);
  position: relative;
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow:
    0 40px 100px -25px rgba(0,0,0,0.70),
    0 0 0 1px rgba(255,255,255,0.02),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.20);
  animation: gcCardIn 1.1s cubic-bezier(.2,.9,.2,1.05) both;
  transform-origin: center center;
  scrollbar-width: thin;
  scrollbar-color: rgba(228, 205, 132, 0.30) transparent;
}
.giftcard-card::-webkit-scrollbar { width: 5px; }
.giftcard-card::-webkit-scrollbar-thumb { background: rgba(228, 205, 132, 0.30); border-radius: 3px; }
.giftcard-card::-webkit-scrollbar-track { background: transparent; }
.giftcard-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(228, 205, 132, 0.55), transparent);
  pointer-events: none;
  z-index: 4;
}
@media (min-width: 640px) { .giftcard-card { padding: 1.75rem 1.75rem 1.5rem; } }
.giftcard-card.has-image { padding-top: 0; }
@media (min-width: 640px) { .giftcard-card.has-image { padding-top: 0; } }

/* Banner de imagen superior (cuando se sube foto) */
.gc-hero-image {
  position: relative;
  margin: -1px clamp(-1.25rem, -1.5dvh, -.75rem) clamp(.5rem, 1dvh, 1rem);
  height: clamp(120px, 18dvh, 190px);
  overflow: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  flex-shrink: 0;
  box-shadow: inset 0 -1px 0 rgba(228, 205, 132, 0.25);
}
.gc-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: gcHeroZoom 14s ease-in-out infinite alternate;
  filter: saturate(1.05);
}
@keyframes gcHeroZoom {
  0%   { transform: scale(1.02) translateY(0); }
  100% { transform: scale(1.10) translateY(-4px); }
}
/* Gradient overlay: oscuro arriba (legible pill) + oscuro abajo (legible badge) + tint cálido */
.gc-hero-image::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 60%, rgba(20,18,16,0.65) 100%),
    linear-gradient(135deg, rgba(228, 205, 132, 0.08) 0%, transparent 40%, rgba(var(--vm-primary-rgb), 0.10) 100%);
  pointer-events: none;
}
/* Línea sutil champagne en el borde inferior del hero */
.gc-hero-image::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(228, 205, 132, 0.45) 20%, rgba(228, 205, 132, 0.65) 50%, rgba(228, 205, 132, 0.45) 80%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.gc-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(.65rem, 1.5dvh, 1rem) clamp(.85rem, 2dvh, 1.25rem);
  z-index: 1;
}
.gc-hero-overlay .gc-brand {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(228, 205, 132, 0.45);
  padding: .35rem .85rem .35rem .45rem;
  border-radius: 999px;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  align-self: flex-start;
  gap: .45rem;
  max-width: calc(100% - 1rem);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gc-hero-overlay .gc-brand:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.gc-hero-overlay .gc-brand > span:not(.material-symbols-outlined) {
  color: var(--vm-dark);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-shadow: none;
}
.gc-hero-overlay .gc-brand .material-symbols-outlined {
  background: rgba(var(--vm-primary-rgb), 0.18);
  border: 0;
  color: var(--vm-primary-dark);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  width: 30px; height: 30px;
  font-size: 18px;
}
.gc-hero-overlay .gc-badge { align-self: flex-end; }
@media (max-width: 540px) {
  .gc-hero-overlay .gc-brand { padding: .3rem .75rem .3rem .4rem; }
  .gc-hero-overlay .gc-brand > span:not(.material-symbols-outlined) { font-size: .85rem; }
  .gc-hero-overlay .gc-brand .material-symbols-outlined { width: 26px; height: 26px; font-size: 16px; }
}
@keyframes gcCardIn {
  0%   { opacity: 0; transform: translateY(40px) scale(.92) rotate(-1deg); }
  60%  { opacity: 1; transform: translateY(-6px) scale(1.005) rotate(.4deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}

.giftcard-card.is-expired { opacity: 0.85; }
.giftcard-card > * {
  animation: gcChildIn .85s cubic-bezier(.2,.9,.2,1) both;
}
.giftcard-card > *:nth-child(1) { animation-delay: .55s; }
.giftcard-card > *:nth-child(2) { animation-delay: .70s; }
.giftcard-card > *:nth-child(3) { animation-delay: .85s; }
.giftcard-card > *:nth-child(4) { animation-delay: 1.00s; }
.giftcard-card > *:nth-child(5) { animation-delay: 1.15s; }
.giftcard-card > *:nth-child(6) { animation-delay: 1.30s; }
.giftcard-card > *:nth-child(7) { animation-delay: 1.45s; }
@keyframes gcChildIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Cabecera */
.gc-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.5rem;
}
.gc-head .gc-brand { justify-self: start; min-width: 0; }
.gc-head .gc-badge { justify-self: end; }
.gc-brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 800; font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.gc-brand .material-symbols-outlined {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: rgba(var(--vm-primary-rgb), 0.20);
  color: var(--vm-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-variation-settings: 'FILL' 1;
}
.gc-brand-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  display: block;
  flex-shrink: 0;
}
.gc-hero-overlay .gc-brand-logo {
  height: 28px;
  width: auto;
  filter: none;
  animation: vmLogoBreath 4.5s ease-in-out infinite;
  transform-origin: center center;
  transition: transform .35s ease;
}
.gc-hero-overlay .gc-brand:hover .gc-brand-logo {
  animation-play-state: paused;
  transform: scale(1.10) rotate(-4deg);
}
@media (max-width: 540px) {
  .gc-hero-overlay .gc-brand-logo { height: 24px; }
}

.gc-badge {
  position: relative;
  overflow: hidden;
  display: inline-flex; align-items: center; gap: .35rem;
  background:
    linear-gradient(135deg, #e6cd84 0%, #f7e6b6 25%, #d9b96e 55%, #f3dca0 80%, #c69e54 100%);
  color: #3b2e10;
  padding: .45rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow:
    0 8px 22px rgba(198, 158, 84, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}
.gc-badge .material-symbols-outlined { font-size: 16px; font-variation-settings: 'FILL' 1; }
.gc-badge-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.65), transparent);
  animation: badgeShine 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes badgeShine {
  0%, 70% { transform: translateX(0); }
  100%    { transform: translateX(280%); }
}

/* Mensaje (elemento HERO de la tarjeta) */
.gc-message {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.7rem, 4.4dvh, 2.6rem);
  line-height: 1.22;
  font-weight: 400;
  margin: clamp(.75rem, 2dvh, 1.5rem) 0 clamp(.75rem, 2dvh, 1.5rem);
  position: relative;
  padding: clamp(1rem, 2.5dvh, 1.75rem) clamp(.85rem, 2dvh, 1.5rem);
  color: #fff;
  font-style: italic;
  letter-spacing: -0.005em;
  text-align: center;
  flex-shrink: 0;
  text-wrap: balance;
  text-shadow: 0 2px 16px rgba(228, 205, 132, 0.18), 0 1px 0 rgba(0,0,0,0.20);
}
/* Ornamento "flor de lis" superior — SVG inline via data URL */
.gc-message::before,
.gc-message::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 16dvh, 140px);
  height: clamp(18px, 3dvh, 26px);
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 26' fill='none'%3E%3Cpath d='M0 13h45' stroke='%23e4cd84' stroke-opacity='.35' stroke-width='1'/%3E%3Cpath d='M95 13h45' stroke='%23e4cd84' stroke-opacity='.35' stroke-width='1'/%3E%3Cpath d='M70 4c-2 4-6 6-10 7 4 1 8 3 10 7 2-4 6-6 10-7-4-1-8-3-10-7z' fill='%23e4cd84' fill-opacity='.55'/%3E%3Ccircle cx='52' cy='13' r='1.6' fill='%23e4cd84' fill-opacity='.55'/%3E%3Ccircle cx='88' cy='13' r='1.6' fill='%23e4cd84' fill-opacity='.55'/%3E%3C/svg%3E");
  pointer-events: none;
}
.gc-message::before { top: clamp(.15rem, .6dvh, .5rem); }
.gc-message::after  { bottom: clamp(.15rem, .6dvh, .5rem); transform: translateX(-50%) scaleY(-1); }
.gc-message .quote-mark {
  color: #e4cd84;
  font-size: 1.4em;
  line-height: 0;
  font-style: normal;
  position: relative;
  top: .22em;
  margin: 0 .15em;
  opacity: .9;
  font-family: 'Georgia', serif;
  display: inline-block;
  animation: gcQuoteFloat 4s ease-in-out infinite;
}
.gc-message .quote-mark.closing { margin: 0 0 0 .15em; animation-delay: 2s; }
@keyframes gcQuoteFloat {
  0%, 100% { transform: translateY(0); opacity: .9; }
  50%      { transform: translateY(-3px); opacity: 1; }
}

/* Personas */
.gc-people {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: clamp(.5rem, 1dvh, 1rem);
  padding: 0 .5rem;
  text-align: center;
  flex-shrink: 0;
}
.gc-person { flex: 1; min-width: 0; }
.gc-person .lbl {
  display: block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(228, 205, 132, 0.75);
  font-weight: 700;
  margin-bottom: .35rem;
}
.gc-person .name {
  display: block;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2.8dvh, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.gc-divider {
  flex-shrink: 0;
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.gc-divider::before {
  content: '✦';
  font-size: 1.3rem;
  color: rgba(228, 205, 132, 0.65);
}

/* Servicio (estilo ticket-stub con dashed line) */
.gc-service {
  display: flex; gap: .65rem; align-items: center;
  background:
    linear-gradient(135deg, rgba(228, 205, 132, 0.08) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px dashed rgba(228, 205, 132, 0.30);
  border-radius: 14px;
  padding: clamp(.45rem, .8dvh, .65rem) .75rem;
  margin-bottom: clamp(.5rem, 1dvh, 1rem);
  position: relative;
  transition: transform .35s ease, background .35s ease, border-color .35s ease;
  flex-shrink: 0;
}
.gc-service::before,
.gc-service::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #15130f;
  border: 1px dashed rgba(228, 205, 132, 0.30);
  transform: translateY(-50%);
}
.gc-service::before { left: -8px; }
.gc-service::after { right: -8px; }
.gc-service:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(228, 205, 132, 0.14) 0%, rgba(255,255,255,0.08) 100%);
  border-color: rgba(228, 205, 132, 0.45);
}
.gc-service-img {
  width: clamp(42px, 6dvh, 56px); height: clamp(42px, 6dvh, 56px);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(var(--vm-primary-rgb), 0.20);
  box-shadow: 0 4px 12px rgba(0,0,0,0.30), inset 0 0 0 1px rgba(228, 205, 132, 0.20);
}
.gc-service-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gc-service-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--vm-primary);
}
.gc-service-img-placeholder .material-symbols-outlined { font-size: 36px; font-variation-settings: 'FILL' 1; }
.gc-service-body { flex: 1; min-width: 0; }
.gc-service-eyebrow {
  display: block;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #e4cd84;
  font-weight: 700;
  margin-bottom: .3rem;
}
.gc-service h3 { color: #fff; margin: 0 0 .15rem; font-size: 1rem; font-weight: 800; letter-spacing: -0.01em; }
.gc-service-meta { display: flex; flex-wrap: wrap; gap: .25rem .75rem; color: rgba(255,255,255,0.65); font-size: .78rem; }
.gc-service-excerpt { display: none; }
.gc-service-meta span { display: inline-flex; align-items: center; gap: .3rem; }
.gc-service-meta .material-symbols-outlined { font-size: 16px; }
.gc-service-excerpt { font-style: italic; max-width: 100%; }
@media (max-width: 540px) {
  .gc-service { flex-direction: column; align-items: flex-start; }
  .gc-service-img { width: 100%; height: 140px; border-radius: 14px; }
}

/* CTAs */
.gc-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(.35rem, .5dvh, .65rem); flex-shrink: 0; }
.gc-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: clamp(.55rem, .9dvh, .75rem) 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  position: relative;
  overflow: hidden;
}
.gc-cta-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--vm-primary), #a4c168);
  color: var(--vm-dark);
  box-shadow: 0 14px 36px rgba(var(--vm-primary-rgb), 0.45), inset 0 1px 0 rgba(255,255,255,0.30);
  animation: ctaPulse 2.6s ease-in-out infinite;
}
.gc-cta-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s ease;
  pointer-events: none;
}
.gc-cta-primary:hover { transform: translateY(-3px); }
.gc-cta-primary:hover::before { transform: translateX(120%); }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 14px 36px rgba(var(--vm-primary-rgb), 0.45), inset 0 1px 0 rgba(255,255,255,0.30); }
  50%      { box-shadow: 0 18px 50px rgba(var(--vm-primary-rgb), 0.65), inset 0 1px 0 rgba(255,255,255,0.30); }
}
.gc-cta-soft {
  background: rgba(255,255,255, 0.10);
  color: #fff;
  border: 1.5px solid rgba(255,255,255, 0.20);
}
.gc-cta-soft:hover { background: rgba(255,255,255, 0.18); transform: translateY(-2px); }

.gc-validity {
  display: inline-flex; align-items: center; gap: .4rem;
  margin: clamp(.4rem, .6dvh, .8rem) 0 0;
  padding: .3rem .8rem;
  background: rgba(228, 205, 132, 0.08);
  border: 1px solid rgba(228, 205, 132, 0.20);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  font-size: .78rem;
  font-weight: 600;
  flex-shrink: 0;
}
.gc-validity .material-symbols-outlined { font-size: 16px; color: #e4cd84; }

/* Bloque de reclamar tarjeta */
.gc-claim {
  margin-top: clamp(.5rem, .8dvh, .85rem);
  padding: clamp(.6rem, 1dvh, .85rem) .85rem;
  background:
    linear-gradient(135deg, rgba(228, 205, 132, 0.10) 0%, rgba(var(--vm-primary-rgb), 0.12) 100%);
  border: 1px solid rgba(228, 205, 132, 0.28);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.gc-claim::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(228, 205, 132, 0.5), transparent);
  pointer-events: none;
}
.gc-claim.is-mine { background: rgba(var(--vm-primary-rgb), 0.06); border-color: rgba(var(--vm-primary-rgb), 0.20); }
.gc-claim.is-taken { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.10); }
.gc-claim-head { display: flex; align-items: center; gap: .65rem; }
.gc-claim-head > .material-symbols-outlined {
  width: 36px; height: 36px;
  border-radius: 11px;
  background: var(--vm-primary);
  color: var(--vm-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-variation-settings: 'FILL' 1;
  flex-shrink: 0;
}
.gc-claim-head.gc-claim-mine > .material-symbols-outlined { background: var(--vm-primary); color: #fff; }
.gc-claim-head.gc-claim-taken > .material-symbols-outlined { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.75); }
.gc-claim-head strong { display: block; color: #fff; font-size: .92rem; font-weight: 800; margin-bottom: .1rem; }
.gc-claim-head p { margin: 0; color: rgba(255,255,255,0.72); font-size: .8rem; line-height: 1.45; }

.gc-cta-claim {
  background: linear-gradient(135deg, var(--vm-primary), #b6cf7c);
  color: var(--vm-dark);
  border: 0;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 12px 32px rgba(var(--vm-primary-rgb), 0.45);
  width: 100%;
}
.gc-cta-claim:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(var(--vm-primary-rgb), 0.55); }
.gc-claim-form { display: flex; flex-direction: column; gap: 1rem; margin: 0; }
.gc-claim-error {
  margin: 0;
  padding: .65rem .85rem;
  background: rgba(193, 52, 47, 0.18);
  color: #ffb6b3;
  border-radius: 10px;
  font-size: .85rem;
  border: 1px solid rgba(193, 52, 47, 0.30);
}

/* Banner en /login/ cuando viene con claim=1 */
.claim-banner {
  display: flex; align-items: flex-start; gap: .85rem;
  background: rgba(var(--vm-primary-rgb), 0.10);
  border: 1.5px solid rgba(var(--vm-primary-rgb), 0.30);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
}
.claim-banner > .material-symbols-outlined {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--vm-primary);
  color: var(--vm-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-variation-settings: 'FILL' 1;
  flex-shrink: 0;
}
.claim-banner strong { color: var(--vm-dark); display: block; margin-bottom: .15rem; }
.claim-banner p { margin: 0; color: var(--vm-earth-soft); font-size: .9rem; line-height: 1.5; }
.claim-banner a { color: var(--vm-primary-dark); font-weight: 700; }

/* Lista "Mis tarjetas regalo" en /mi-cuenta/ */
.my-giftcards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) {
  .my-giftcards { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
.my-gc-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.my-gc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(42,39,35,0.15);
  border-color: rgba(var(--vm-primary-rgb), 0.35);
}
.my-gc-card.is-expired { opacity: .65; }

.my-gc-thumb {
  background:
    linear-gradient(135deg, rgba(var(--vm-primary-rgb), 0.18) 0%, rgba(228, 205, 132, 0.15) 100%);
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.my-gc-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.my-gc-card:hover .my-gc-thumb img { transform: scale(1.04); }
.my-gc-thumb-placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--vm-primary-dark);
  width: 100%; height: 100%;
}
.my-gc-thumb-placeholder .material-symbols-outlined { font-size: 48px; font-variation-settings: 'FILL' 1; opacity: .7; }

.my-gc-body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.my-gc-eyebrow { display: block; }
.my-gc-pill {
  display: inline-flex; align-items: center; gap: .25rem;
  background: rgba(var(--vm-primary-rgb), 0.15);
  color: var(--vm-primary-dark);
  padding: .22rem .6rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.my-gc-pill-pending   { background: rgba(228, 205, 132, 0.20); color: #8b6a1f; }
.my-gc-pill-active    { background: rgba(31, 138, 76, 0.15); color: #1f8a4c; }
.my-gc-pill-redeemed  { background: rgba(74, 95, 168, 0.13); color: #4a5fa8; }
.my-gc-pill-cancelled { background: rgba(193, 52, 47, 0.12); color: #c1342f; }
.my-gc-pill-expired   { background: rgba(193, 52, 47, 0.12); color: #c1342f; }
.my-gc-card h3 {
  margin: .15rem 0 .25rem;
  font-size: 1.05rem;
  color: var(--vm-dark);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.my-gc-message {
  margin: 0;
  color: var(--vm-earth);
  font-style: italic;
  font-size: .9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.my-gc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .75rem;
  color: var(--vm-earth-soft);
  font-size: .8rem;
  margin-top: auto;
  padding-top: .35rem;
}
.my-gc-meta span { display: inline-flex; align-items: center; gap: .25rem; }
.my-gc-meta .material-symbols-outlined { font-size: 15px; color: var(--vm-primary); }
.my-gc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--vm-sand);
}
.my-gc-actions .btn-primary,
.my-gc-actions .btn-soft {
  padding: .45rem .85rem;
  font-size: .82rem;
  min-height: 36px;
  flex: 1;
  min-width: 110px;
  justify-content: center;
  border-radius: 8px;
}
.my-gc-actions .btn-primary .material-symbols-outlined,
.my-gc-actions .btn-soft .material-symbols-outlined { font-size: 16px; }
@media (max-width: 540px) {
  .my-gc-actions { gap: .35rem; }
  .my-gc-actions .btn-primary,
  .my-gc-actions .btn-soft { width: 100%; min-width: 100%; }
}

/* Botones del header de "Tarjetas que regalas" y empty-state — más compactos */
#vm-account-tarjetas-section .account-card-head .btn-primary,
.account-content .account-card-head .btn-primary {
  padding: .5rem .9rem;
  font-size: .85rem;
  min-height: 36px;
  border-radius: 10px;
}
.account-content .account-card-head .btn-primary .material-symbols-outlined { font-size: 16px; }

/* Empty state dentro de las cards de cuenta — más sobrio */
.account-content .empty-state { padding: 1.5rem 1rem; }
.account-content .empty-state > .material-symbols-outlined {
  font-size: 36px;
  margin-bottom: .35rem;
  opacity: .8;
}
.account-content .empty-state h3 {
  font-size: 1.05rem;
  margin: .15rem 0;
}
.account-content .empty-state p {
  font-size: .9rem;
  margin: 0 0 1rem;
}
.account-content .empty-state .btn-primary {
  padding: .55rem 1.1rem;
  font-size: .88rem;
  min-height: 38px;
  border-radius: 10px;
}
.account-content .empty-state .btn-primary .material-symbols-outlined { font-size: 17px; }


/* Bloque de dirección con CTA a Maps */
.gc-location {
  margin-top: clamp(.4rem, .6dvh, .75rem);
  padding: clamp(.4rem, .7dvh, .65rem) .85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.gc-location-info {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  flex: 1;
  min-width: 0;
}
.gc-location-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(var(--vm-primary-rgb), 0.18);
  color: var(--vm-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-variation-settings: 'FILL' 1;
  flex-shrink: 0;
}
.gc-location-validity {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .35rem;
  font-size: .78rem;
  color: rgba(228, 205, 132, 0.85);
  font-weight: 600;
}
.gc-location-validity .material-symbols-outlined { font-size: 14px; color: #e4cd84; }
.gc-location-eyebrow {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  margin-bottom: .15rem;
}
.gc-location-text {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.35;
}
.gc-location-cta {
  flex-shrink: 0;
  padding: .65rem 1.1rem !important;
  font-size: .9rem !important;
}
@media (max-width: 540px) {
  .gc-location { flex-direction: column; align-items: stretch; }
  .gc-location-cta { width: 100%; justify-content: center; }
}

.gc-expired-banner {
  background: rgba(193, 52, 47, 0.18);
  border: 1px solid rgba(193, 52, 47, 0.40);
  color: #ffb6b3;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  display: flex; align-items: flex-start; gap: .65rem;
  margin-bottom: 1.5rem;
  font-size: .92rem;
}
.gc-expired-banner .material-symbols-outlined { color: #ff7a73; flex-shrink: 0; }

/* Footer de la tarjeta */
.gc-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: clamp(.75rem, 1.5dvh, 1.25rem);
  padding-top: clamp(.5rem, .8dvh, .85rem);
  position: relative;
}
.gc-foot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 240px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 205, 132, 0.30), transparent);
}
.gc-print-btn .material-symbols-outlined { font-variation-settings: 'FILL' 0; }

.gc-share {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(228, 205, 132, 0.20);
  color: rgba(255,255,255, 0.65);
  padding: .55rem .85rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
  font-family: inherit;
  letter-spacing: .02em;
  width: 100%;
}
.gc-share:hover {
  color: #e4cd84;
  background: rgba(228, 205, 132, 0.10);
  border-color: rgba(228, 205, 132, 0.40);
}
.gc-share.copied { color: var(--vm-primary); background: rgba(var(--vm-primary-rgb), 0.12); border-color: rgba(var(--vm-primary-rgb), 0.40); }
.gc-share .material-symbols-outlined { font-size: 16px; }

.gc-tag-foot { display: none; }

/* =================== Loader de la tarjeta regalo =================== */
.gc-page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(145, 173, 81, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(228, 205, 132, 0.12) 0%, transparent 60%),
    linear-gradient(160deg, #221f1b 0%, #15130f 50%, #1a1714 100%);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), visibility .8s;
  isolation: isolate;
}
.gc-page-loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.gc-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: gcLoaderInnerFade .6s ease both;
}
@keyframes gcLoaderInnerFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gc-page-loader.is-done .gc-loader-inner {
  transform: scale(1.15);
  opacity: 0;
  transition: transform .6s ease, opacity .4s ease;
}
.gc-loader-gift {
  position: relative;
  width: 110px; height: 110px;
  display: flex; align-items: center; justify-content: center;
}
.gc-loader-icon {
  font-size: 78px !important;
  color: #e4cd84;
  font-variation-settings: 'FILL' 1;
  filter: drop-shadow(0 0 24px rgba(228, 205, 132, 0.55));
  animation: gcLoaderWobble 1.6s cubic-bezier(.36, 0, .2, 1) infinite;
  transform-origin: center 80%;
}
@keyframes gcLoaderWobble {
  0%   { transform: scale(1) rotate(-4deg); }
  50%  { transform: scale(1.12) rotate(4deg); }
  100% { transform: scale(1) rotate(-4deg); }
}
.gc-loader-sparkle {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e4cd84;
  box-shadow: 0 0 12px rgba(228, 205, 132, 0.95), 0 0 24px rgba(228, 205, 132, 0.55);
  opacity: 0;
  animation: gcLoaderSparkle 2.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.4s);
}
.gc-loader-sparkle:nth-child(2) { top: -4px; left: 20%; }
.gc-loader-sparkle:nth-child(3) { top: 14%; right: -6px; }
.gc-loader-sparkle:nth-child(4) { bottom: -2px; left: 12%; }
.gc-loader-sparkle:nth-child(5) { bottom: 18%; right: 0; }
.gc-loader-sparkle:nth-child(6) { top: 38%; left: -8px; width: 5px; height: 5px; }
.gc-loader-sparkle:nth-child(7) { top: 70%; right: 30%; width: 5px; height: 5px; }
@keyframes gcLoaderSparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50%      { opacity: 1; transform: scale(1); }
}
.gc-loader-text {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: .03em;
}
.gc-loader-dots {
  display: inline-flex;
  gap: 3px;
  margin-left: 2px;
}
.gc-loader-dots i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(228, 205, 132, 0.85);
  animation: gcLoaderDots 1.2s ease-in-out infinite;
}
.gc-loader-dots i:nth-child(2) { animation-delay: .2s; }
.gc-loader-dots i:nth-child(3) { animation-delay: .4s; }
@keyframes gcLoaderDots {
  0%, 100% { opacity: .3; transform: translateY(0); }
  50%      { opacity: 1; transform: translateY(-3px); }
}

/* Frase sorpresa que rota */
.gc-loader-surprise {
  min-height: 1.5em;
  margin-top: .5rem;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.4dvh, 1.35rem);
  color: #e4cd84;
  text-align: center;
  letter-spacing: .01em;
  text-shadow: 0 0 16px rgba(228, 205, 132, 0.30);
  opacity: 0;
  transform: translateY(6px);
  max-width: 90vw;
  padding: 0 1rem;
}
.gc-loader-surprise.is-in {
  animation: gcLoaderSurpriseIn .6s cubic-bezier(.2,.9,.2,1) forwards;
}
@keyframes gcLoaderSurpriseIn {
  0%   { opacity: 0; transform: translateY(6px); letter-spacing: .08em; filter: blur(4px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0); letter-spacing: .01em; filter: blur(0); }
}

/* Mientras carga, ocultar la tarjeta y pausar animaciones; al cargar, dispararlas */
html.gc-loading .giftcard-card,
html.gc-loading .giftcard-card * { animation-play-state: paused !important; }
html.gc-loading .giftcard-card { opacity: 0; }
html.gc-loaded .giftcard-card { animation: gcCardIn 1.1s cubic-bezier(.2,.9,.2,1.05) both; }

/* =================== Modal estado tarjeta (no activa) =================== */
.gc-status-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.gc-status-modal.is-open { display: flex; }
.gc-status-modal__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(20, 18, 16, 0.55) 0%, rgba(8, 7, 6, 0.85) 70%),
    rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  animation: gcStatusFadeIn .3s ease;
}
@keyframes gcStatusFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes gcStatusPopIn {
  from { opacity: 0; transform: translateY(12px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.gc-status-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background:
    linear-gradient(160deg, #2a2622 0%, #1a1714 100%);
  border: 1px solid rgba(228, 205, 132, 0.30);
  border-radius: 22px;
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 30px 70px -15px rgba(0,0,0,0.55);
  animation: gcStatusPopIn .4s cubic-bezier(.16,1,.3,1);
}
.gc-status-modal__dialog::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(228, 205, 132, 0.55), transparent);
  pointer-events: none;
}
.gc-status-modal__close {
  position: absolute;
  top: .75rem; right: .75rem;
  width: 34px; height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}
.gc-status-modal__close:hover { background: rgba(255, 255, 255, 0.20); color: #fff; }
.gc-status-modal__icon {
  display: inline-flex;
  width: 64px; height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 1rem;
}
.gc-status-modal__icon .material-symbols-outlined {
  font-size: 32px;
  font-variation-settings: 'FILL' 1;
}
.gc-status-modal--pending .gc-status-modal__icon {
  background: rgba(228, 205, 132, 0.18);
  color: #e4cd84;
}
.gc-status-modal--cancelled .gc-status-modal__icon {
  background: rgba(193, 52, 47, 0.18);
  color: #ff7a73;
}
.gc-status-modal--expired .gc-status-modal__icon {
  background: rgba(160, 150, 140, 0.18);
  color: #c5bdb3;
}
.gc-status-modal--redeemed .gc-status-modal__icon {
  background: rgba(74, 95, 168, 0.18);
  color: #93a4e0;
}
.gc-status-modal__title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  margin: 0 0 .6rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.gc-status-modal__body {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: .95rem;
  line-height: 1.5;
}
.gc-status-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .85rem 1.25rem;
  background: linear-gradient(135deg, var(--vm-primary), #a4c168);
  color: var(--vm-dark);
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(var(--vm-primary-rgb), 0.40);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gc-status-modal__cta:hover {
  transform: translateY(-2px);
  color: var(--vm-dark);
  box-shadow: 0 16px 40px rgba(var(--vm-primary-rgb), 0.55);
}
.gc-status-modal__ref {
  margin: .85rem 0 0;
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: .04em;
}
.gc-status-modal__ref code {
  background: rgba(228, 205, 132, 0.15);
  color: #e4cd84;
  padding: .15rem .55rem;
  border-radius: 6px;
  font-family: monospace;
  font-weight: 700;
  margin-left: .25rem;
}
.gc-status-modal__dismiss {
  display: block;
  margin: 1rem auto 0;
  padding: .35rem .65rem;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: .82rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-family: inherit;
}
.gc-status-modal__dismiss:hover { color: #fff; }
@media (max-width: 480px) {
  .gc-status-modal__dialog { padding: 1.5rem 1.1rem 1.25rem; border-radius: 18px; }
  .gc-status-modal__title { font-size: 1.25rem; }
  .gc-status-modal__body { font-size: .9rem; }
}

/* Salvaguardas para pantallas cortas: ir ocultando lo menos crítico
   para que la tarjeta siempre quepa entera sin scroll */
@media (max-height: 760px) {
  .gc-hero-image img { animation: none; }
  .gc-foot { gap: 1rem; }
}
@media (max-height: 680px) {
  .gc-service-meta { display: none; }
  .gc-validity { display: none; }
}
@media (max-height: 620px) {
  .gc-location-eyebrow { display: none; }
  .gc-location { padding: .35rem .6rem; }
}
@media (max-height: 560px) {
  .gc-hero-image { display: none; }
  .giftcard-card.has-image { padding-top: 1rem; }
  .gc-message::before, .gc-message::after { display: none; }
}

@media (max-width: 540px) {
  .gc-head { flex-direction: column-reverse; align-items: flex-start; gap: .75rem; }
  .gc-people { flex-wrap: wrap; gap: .75rem 1rem; }
  .gc-divider { display: none; }
  .gc-people .gc-person { flex: 0 1 calc(50% - .5rem); }
  .gc-cta-primary { width: 100%; }
  .gc-cta-soft { width: 100%; }
  .gc-foot { flex-direction: column; align-items: stretch; }
  .gc-share { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .giftcard-card, .giftcard-card > *, .gc-blob, .gc-sparkle, .gc-cta-primary, .gc-badge-shine { animation: none !important; }
}

/* =================== Estilos de impresión =================== */
/* La tarjeta se imprime tal cual se ve en pantalla, manteniendo fondo dark,
   glass, foto y todo el estilo. Solo simplificamos lo que no aporta en papel. */
@media print {
  @page { size: A4 portrait; margin: 0; }

  /* Forzar al navegador a respetar los colores y degradados de fondo */
  html, body, .giftcard-stage, .giftcard-card, .gc-hero-image,
  .gc-hero-image::before, .gc-hero-overlay, .gc-hero-overlay .gc-brand,
  .gc-badge, .gc-cta, .gc-cta-primary, .gc-cta-soft, .gc-blob, .gc-service,
  .gc-message, .gc-person .name, .gc-validity, .gc-expired-banner,
  .gc-service-img-placeholder, .gc-service-img {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
  }

  /* Detener animaciones para que no capturen frames intermedios */
  *, *::before, *::after {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition: none !important;
  }

  body.gc-fullscreen { min-height: auto !important; margin: 0 !important; }

  /* Ocultar solo lo que no aporta al papel */
  .gc-particles,                  /* sparkles flotantes */
  .gc-foot,                       /* botones compartir / imprimir */
  .gc-tag-foot {                  /* línea © */
    display: none !important;
  }

  /* Stage: que se ajuste al contenido sin scroll fantasma */
  .giftcard-stage {
    min-height: auto !important;
    padding: 1.25cm 0 !important;
    page-break-inside: avoid;
    break-inside: avoid;
    display: block !important;
  }
  .giftcard-stage > .container-vm { padding: 0 .8cm !important; max-width: none !important; }

  /* La card que no se parta entre páginas */
  .giftcard-card {
    page-break-inside: avoid;
    break-inside: avoid;
    box-shadow: 0 8px 24px rgba(0,0,0,0.30) !important;
    /* Reducir blur del glass: en print se ve gris uniforme */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255,255,255, 0.05) !important;
  }

  /* Blobs decorativos: dejarlos pero quietos (la animación está en 0s) */
  .gc-blob { opacity: 0.7 !important; }
}

/* =================== Servicios (panel empleado) =================== */
.service-thumb {
  width: 56px; height: 56px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  background: var(--vm-cream-soft);
}
.service-thumb-empty {
  display: flex; align-items: center; justify-content: center;
  color: var(--vm-earth-soft);
  background: var(--vm-cream-soft);
  border: 1px dashed var(--vm-sand);
}
.services-table .cell-actions { white-space: nowrap; }
.services-table .btn-sm .material-symbols-outlined { font-size: 16px; }

.current-image {
  margin-bottom: .65rem;
  padding: .65rem;
  background: var(--vm-cream-soft);
  border: 1px solid var(--vm-sand);
  border-radius: 12px;
  display: inline-flex;
  flex-direction: column;
  max-width: 280px;
}
.current-image img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 8px;
  display: block;
}

.vm-form input[type="file"] {
  padding: .55rem;
  border: 1.5px dashed var(--vm-sand);
  border-radius: 12px;
  background: var(--vm-cream-soft);
  cursor: pointer;
  font-family: inherit;
  font-size: .92rem;
  color: var(--vm-earth);
  width: 100%;
}
.vm-form input[type="file"]:hover { border-color: var(--vm-primary); background: rgba(var(--vm-primary-rgb), 0.05); }

.btn-danger {
  background: #fff;
  color: #c1342f;
  border: 1.5px solid #f3c2bf;
  padding: .85rem 1.65rem;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  transition: all .25s ease;
  font-size: 1rem;
  font-family: inherit;
}
.btn-danger:hover { background: #c1342f; color: #fff; border-color: #c1342f; }
.btn-danger .material-symbols-outlined { font-size: 20px; }
@media (max-width: 540px) {
  .btn-danger { width: 100%; justify-content: center; }
}

/* =================== Mobile refinements (todo el tema) =================== */
@media (max-width: 767px) {
  /* Reducir blur (caro en GPU móvil) en cards glass */
  .service-card,
  .benefit-card,
  .testimonial-card,
  .hero .visual .badge-float,
  .service-card .price-tag {
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
  }

  /* Blobs y mesh - reducir blur para no quemar batería */
  .has-glass-bg::before, .has-glass-bg::after,
  .stats-band::before, .stats-band::after,
  .cta-banner::before, .cta-banner::after,
  .site-footer::before, .site-footer::after { filter: blur(45px); }
  .mesh-bg { filter: blur(12px); opacity: .55; }

  /* Reducir cantidad de dots flotantes */
  .floating-dots .dot:nth-child(n+5) { display: none; }

  /* Quitar el blob central en mobile (ya hay 2 grandes) */
  .has-glass-bg .has-glass-blob-3 { display: none; }

  /* Cards padding más compacto */
  .service-card .body { padding: 1.1rem 1.1rem 1.4rem; gap: .55rem; }
  .service-card .img-wrap { aspect-ratio: 16/10; }
  .service-card .price-tag { top: .65rem; right: .65rem; padding: .35rem .7rem; font-size: .9rem; }
  .service-card .reserve { padding: .5rem 0; font-size: .95rem; }
  .service-card h3 { font-size: 1.15rem; }

  .benefit-card { padding: 1.4rem 1.25rem; }
  .benefit-card .icon-circle { width: 48px; height: 48px; border-radius: 14px; margin-bottom: .85rem; }
  .benefit-card h4 { font-size: 1.1rem; }
  .benefit-card p { font-size: .9rem; }

  .testimonial-card { padding: 1.4rem 1.25rem; }
  .testimonial-card .body { font-size: .95rem; line-height: 1.6; margin-bottom: 1rem; }

  /* About */
  .about-grid { gap: 1.75rem; }
  .about-grid .visual .photo { height: clamp(280px, 75vw, 420px); }
  .about-grid h2 { font-size: clamp(1.6rem, 5.5vw, 2.2rem); margin-bottom: .85rem; }
  .about-grid p { font-size: 1rem; }
  .about-grid .badges { gap: 1rem; margin: 1.5rem 0; }
  .about-grid .badges .item .label { font-size: .92rem; }
  .about-grid .badges .item .sub { font-size: .78rem; }

  /* Info list */
  .info-list .row { gap: .75rem; }
  .info-list .icon-circle { width: 38px; height: 38px; border-radius: 12px; }
  .info-list strong { font-size: .92rem; }
  .info-list .value { font-size: .92rem; }

  /* Page header */
  .page-header { padding: 2.5rem 0 2rem; }

  /* Service detail (interior) */
  .service-detail { padding: 3rem 0; }
  .service-detail-grid { gap: 1.5rem; }
  .service-detail-grid img { height: clamp(260px, 60vw, 380px); border-radius: 22px; }
  .service-detail-grid h2 { font-size: clamp(1.5rem, 5vw, 2rem); margin: .5rem 0; }
  .service-detail-grid .btn-primary { width: 100%; justify-content: center; }

  /* CTA banner row stack */
  .cta-banner h2 { font-size: clamp(1.35rem, 5vw, 1.8rem); }
  .cta-banner p { font-size: .95rem; }

  /* Footer */
  .site-footer { padding: 3rem 0 1.5rem; }
  .site-footer .brand-row { font-size: 1.15rem; }
  .site-footer h4 { font-size: .95rem; }
  .site-footer p, .site-footer a { font-size: .92rem; }
}

@media (max-width: 540px) {
  /* Aún más floating dots fuera */
  .floating-dots .dot:nth-child(n+4) { display: none; }
  /* Spinning ring del sticker no se ve (sticker oculto), por compatibilidad */
  .spinning-ring { display: none; }
  /* Section padding más estrecho */
  .section { padding: 2.5rem 0; }
}

/* Safe area / iPhone notch (cabecera con padding inferior si la stats-band está pegada al notch) */
@supports (padding: env(safe-area-inset-top)) {
  .site-header .nav-inner { padding-top: env(safe-area-inset-top, 0px); }
}

/* Touch devices - desactivar hovers que requieran pointer */
@media (hover: none) {
  .service-card:hover { transform: none; }
  .benefit-card:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
  .btn-primary:hover { transform: none; }
}

/* =================== Modal horario =================== */
.vm-hours-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.vm-hours-modal.is-open { display: flex; }
.vm-hours-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.55);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  animation: vmHoursFadeIn .25s ease;
}
.vm-hours-modal__dialog {
  position: relative;
  z-index: 1;
  max-width: 460px;
  width: 100%;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25);
  animation: vmHoursPopIn .3s cubic-bezier(.16,1,.3,1);
}
@keyframes vmHoursFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes vmHoursPopIn {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.vm-hours-modal__close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 38px; height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: var(--vm-heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}
.vm-hours-modal__close:hover { background: rgba(0, 0, 0, 0.12); }
.vm-hours-modal__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.vm-hours-modal__icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: rgba(var(--vm-primary-rgb), 0.15);
  color: var(--vm-primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.vm-hours-modal__icon .material-symbols-outlined { font-size: 28px; }
.vm-hours-modal__head h2 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--vm-heading);
}
.vm-hours-modal__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: .85rem;
}
.vm-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .55rem .85rem;
  border-radius: 10px;
  font-size: .95rem;
  color: var(--vm-earth-soft);
  transition: background .2s ease;
}
.vm-hours-row.is-today {
  background: rgba(var(--vm-primary-rgb), 0.10);
  color: var(--vm-heading);
  font-weight: 700;
}
.vm-hours-row__day { text-transform: capitalize; }
.vm-hours-row__times { font-variant-numeric: tabular-nums; }
.vm-hours-row__closed {
  color: var(--vm-muted, #999);
  font-style: italic;
  font-weight: 400;
}
.vm-hours-modal__notice {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  padding: .75rem .9rem;
  background: rgba(var(--vm-primary-rgb), 0.10);
  border-left: 3px solid var(--vm-primary);
  border-radius: 10px;
  color: var(--vm-heading);
  font-size: .9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.vm-hours-modal__notice .material-symbols-outlined {
  color: var(--vm-primary-dark);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.vm-hours-modal__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  background: var(--vm-primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease;
}
.vm-hours-modal__cta:hover {
  background: var(--vm-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  .vm-hours-modal__dialog { padding: 1.5rem 1.1rem 1.1rem; border-radius: 20px; }
  .vm-hours-modal__head h2 { font-size: 1.2rem; }
  .vm-hours-row { font-size: .9rem; padding: .5rem .65rem; }
}
.menu-item-hours > a { cursor: pointer; }

/* =================== Blog archive (home.php) =================== */
.blog-hero { background: var(--vm-cream-soft, #fffaf2); padding: 3.5rem 0 2.5rem; text-align: center; }
.blog-hero h1 { font-size: clamp(1.85rem, 5vw, 2.8rem); margin: 0 0 .6rem; color: var(--vm-dark); font-weight: 800; letter-spacing: -0.02em; }
.blog-hero .crumb { color: var(--vm-earth-soft); margin: 0; max-width: 640px; margin: 0 auto; font-size: 1.05rem; line-height: 1.55; }

.blog-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -16px rgba(42, 39, 35, 0.16);
  border-color: rgba(var(--vm-primary-rgb), 0.40);
}
.blog-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--vm-cream-soft, #fffaf2);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(var(--vm-primary-rgb), 0.15) 0%, rgba(228, 205, 132, 0.15) 100%);
  color: var(--vm-primary-dark);
}
.blog-card-placeholder .material-symbols-outlined { font-size: 56px; opacity: .6; font-variation-settings: 'FILL' 1; }
.blog-card-body { padding: 1.25rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.blog-card-meta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--vm-earth-soft);
  font-size: .82rem;
  font-weight: 600;
}
.blog-card-meta .material-symbols-outlined { font-size: 14px; color: var(--vm-primary); }
.blog-card-meta time { display: inline-flex; align-items: center; gap: .3rem; }
.blog-card-cat {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .15rem .55rem;
  background: rgba(var(--vm-primary-rgb), 0.10);
  color: var(--vm-primary-dark);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease;
}
.blog-card-cat:hover { background: rgba(var(--vm-primary-rgb), 0.18); }
.blog-card-cat .material-symbols-outlined { font-size: 12px; color: currentColor; }
.blog-card-title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.blog-card-title a { color: var(--vm-dark); text-decoration: none; transition: color .2s ease; }
.blog-card-title a:hover { color: var(--vm-primary-dark); }
.blog-card-excerpt {
  margin: 0;
  color: var(--vm-earth);
  font-size: .92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--vm-primary-dark);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}
.blog-card-link:hover { border-bottom-color: currentColor; transform: translateX(2px); }
.blog-card-link .material-symbols-outlined { font-size: 16px; transition: transform .2s ease; }
.blog-card-link:hover .material-symbols-outlined { transform: translateX(3px); }

.blog-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.blog-pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  min-width: 40px;
  height: 40px;
  padding: 0 .85rem;
  border-radius: 10px;
  border: 1px solid var(--vm-sand);
  background: #fff;
  color: var(--vm-earth);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.blog-pagination .page-numbers:hover {
  background: var(--vm-cream-soft, #fffaf2);
  border-color: rgba(var(--vm-primary-rgb), 0.45);
  color: var(--vm-heading);
}
.blog-pagination .page-numbers.current {
  background: var(--vm-dark);
  border-color: var(--vm-dark);
  color: #fff;
}
.blog-pagination .material-symbols-outlined { font-size: 18px; }

/* =================== Single post =================== */
.single-hero { background: var(--vm-cream-soft, #fffaf2); padding: 2.5rem 0 1.5rem; }
.breadcrumbs {
  font-size: .85rem;
  color: var(--vm-earth-soft);
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
}
.breadcrumbs a { color: var(--vm-earth-soft); text-decoration: none; transition: color .2s ease; }
.breadcrumbs a:hover { color: var(--vm-primary-dark); }
.breadcrumbs .current { color: var(--vm-dark); font-weight: 600; }
.single-hero h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  margin: 0 0 .85rem;
  color: var(--vm-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--vm-earth-soft);
  font-size: .9rem;
  font-weight: 600;
}
.single-meta time,
.single-meta .reading-time {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.single-meta .material-symbols-outlined { font-size: 16px; color: var(--vm-primary); }

.single-cover {
  background: linear-gradient(180deg, var(--vm-cream-soft, #fffaf2) 0%, var(--vm-cream-soft, #fffaf2) 50%, #fff 50%, #fff 100%);
  padding: 0 0 0 0;
}
.single-cover-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 48px -16px rgba(42, 39, 35, 0.18);
  object-fit: cover;
  max-height: 480px;
}

.single-body { padding-top: 2.5rem; }
.single-article {
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  line-height: 1.78;
  color: var(--vm-earth);
}
/* Dropcap en el primer párrafo */
.single-article > p:first-of-type::first-letter {
  font-family: 'Georgia', 'Times New Roman', serif;
  float: left;
  font-size: 3.4rem;
  line-height: .9;
  padding: .35rem .65rem 0 0;
  color: var(--vm-primary-dark);
  font-weight: 700;
}
.single-article h2 {
  font-size: clamp(1.45rem, 3.2vw, 1.8rem);
  color: var(--vm-dark);
  font-weight: 800;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
  position: relative;
  padding-bottom: .65rem;
}
.single-article h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--vm-primary), #e4cd84);
  border-radius: 2px;
}
.single-article h3 {
  font-size: 1.28rem;
  color: var(--vm-dark);
  font-weight: 800;
  margin: 2rem 0 .75rem;
  letter-spacing: -0.01em;
}
.single-article p { margin: 0 0 1.2rem; }
.single-article strong { color: var(--vm-heading); font-weight: 700; }
.single-article a {
  color: var(--vm-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(var(--vm-primary-rgb), 0.45);
  transition: text-decoration-color .2s ease;
}
.single-article a:hover { text-decoration-color: var(--vm-primary); }
.single-article ul, .single-article ol { margin: 0 0 1.4rem 1.4rem; padding-left: .5rem; }
.single-article ul li { margin-bottom: .55rem; position: relative; padding-left: .25rem; }
.single-article ul li::marker { color: var(--vm-primary); }
.single-article ol li { margin-bottom: .55rem; padding-left: .25rem; }
.single-article ol li::marker { color: var(--vm-primary-dark); font-weight: 700; }
.single-article blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background:
    linear-gradient(135deg, rgba(var(--vm-primary-rgb), 0.06) 0%, rgba(228, 205, 132, 0.06) 100%);
  border-left: 4px solid var(--vm-primary);
  border-radius: 0 14px 14px 0;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--vm-heading);
}
.single-article blockquote p:last-child { margin-bottom: 0; }
.single-article img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 1.5rem 0;
  box-shadow: 0 12px 28px -14px rgba(42, 39, 35, 0.18);
}
@media (max-width: 540px) {
  .single-article > p:first-of-type::first-letter { font-size: 2.8rem; padding: .25rem .5rem 0 0; }
}

/* Opiniones de clientes dentro del single */
.single-reviews {
  margin: 3rem 0 0;
  padding: 1.75rem;
  background: var(--vm-cream-soft, #fffaf2);
  border-radius: 18px;
}
.single-reviews-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.single-reviews-head h3 { margin: .25rem 0 0; font-size: 1.25rem; color: var(--vm-dark); font-weight: 800; letter-spacing: -0.01em; }
.single-reviews-score {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  border: 1px solid var(--vm-sand);
  padding: .35rem .75rem;
  border-radius: 999px;
  flex-shrink: 0;
}
.single-reviews-stars { display: inline-flex; gap: 1px; color: var(--vm-star, #e0a924); }
.single-reviews-stars .material-symbols-outlined { font-size: 16px; font-variation-settings: 'FILL' 0; opacity: .4; }
.single-reviews-stars .material-symbols-outlined.filled { font-variation-settings: 'FILL' 1; opacity: 1; }
.single-reviews-rating { font-weight: 800; color: var(--vm-dark); font-size: .92rem; }
.single-reviews-count { font-size: .78rem; color: var(--vm-earth-soft); }

.single-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) { .single-reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.single-review-card {
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: 14px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.single-review-stars { display: inline-flex; gap: 1px; color: var(--vm-star, #e0a924); }
.single-review-stars .material-symbols-outlined { font-size: 16px; font-variation-settings: 'FILL' 0; opacity: .35; }
.single-review-stars .material-symbols-outlined.filled { font-variation-settings: 'FILL' 1; opacity: 1; }
.single-review-text {
  margin: 0;
  font-family: 'Georgia', serif;
  font-style: italic;
  color: var(--vm-earth);
  font-size: .92rem;
  line-height: 1.55;
  flex: 1;
}
.single-review-author { display: flex; flex-direction: column; gap: .15rem; padding-top: .5rem; border-top: 1px solid var(--vm-sand); }
.single-review-name { font-weight: 700; color: var(--vm-dark); font-size: .92rem; }
.single-review-date {
  font-size: .75rem;
  color: var(--vm-earth-soft);
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
@media (max-width: 540px) {
  .single-reviews { padding: 1.25rem; }
}

.single-share {
  margin-top: 2.5rem;
  padding: 1.25rem;
  background: var(--vm-cream-soft, #fffaf2);
  border: 1px solid var(--vm-sand);
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.single-share-label {
  color: var(--vm-dark);
  font-weight: 700;
  font-size: .95rem;
}
.single-share-buttons { display: inline-flex; gap: .4rem; }
.share-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--vm-sand);
  color: var(--vm-earth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.share-btn:hover { background: var(--vm-primary); color: #fff; border-color: var(--vm-primary); }
.share-btn .material-symbols-outlined { font-size: 18px; }
.share-copy.is-copied { background: var(--vm-primary); color: #fff; border-color: var(--vm-primary); }
.share-copy.is-copied::after { content: ' ✓'; }
@media (max-width: 540px) {
  .single-share { flex-direction: column; align-items: stretch; text-align: center; }
  .single-share-buttons { justify-content: center; }
}

/* Single — categorías y etiquetas */
.single-taxonomies {
  margin: 2rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.single-tax-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem .5rem;
}
.single-tax-label {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--vm-earth-soft);
  font-size: .85rem;
  font-weight: 700;
  margin-right: .25rem;
}
.single-tax-label .material-symbols-outlined { font-size: 16px; color: var(--vm-primary); }
.single-tax-pill {
  padding: .25rem .7rem;
  border-radius: 999px;
  background: var(--vm-cream-soft, #fffaf2);
  border: 1px solid var(--vm-sand);
  color: var(--vm-earth);
  font-size: .82rem;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.single-tax-pill:hover { background: #fff; border-color: rgba(var(--vm-primary-rgb), 0.45); color: var(--vm-primary-dark); }
.single-tax-pill.is-cat {
  background: rgba(var(--vm-primary-rgb), 0.10);
  border-color: transparent;
  color: var(--vm-primary-dark);
  font-weight: 700;
}
.single-tax-pill.is-cat:hover { background: rgba(var(--vm-primary-rgb), 0.18); }

/* Single — navegación prev/next */
.single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0 0;
}
@media (max-width: 600px) {
  .single-nav { grid-template-columns: 1fr; }
}
.single-nav-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.1rem;
  background: var(--vm-cream-soft, #fffaf2);
  border: 1px solid var(--vm-sand);
  border-radius: 14px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  color: var(--vm-earth);
  min-height: 78px;
}
.single-nav-item:hover {
  background: #fff;
  transform: translateY(-2px);
  border-color: rgba(var(--vm-primary-rgb), 0.40);
  box-shadow: 0 12px 28px -14px rgba(42, 39, 35, 0.16);
}
.single-nav-prev { text-align: left; }
.single-nav-next { text-align: right; flex-direction: row-reverse; }
.single-nav-content { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .2rem; }
.single-nav-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vm-earth-soft);
}
.single-nav-title {
  color: var(--vm-dark);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.single-nav-arrow {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(var(--vm-primary-rgb), 0.12);
  color: var(--vm-primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s ease, transform .2s ease;
}
.single-nav-item:hover .single-nav-arrow {
  background: var(--vm-primary);
  color: #fff;
}
.single-nav-prev:hover .single-nav-arrow { transform: translateX(-3px); }
.single-nav-next:hover .single-nav-arrow { transform: translateX(3px); }

/* Single — CTA final */
.single-cta {
  margin: 3rem 0 0;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(var(--vm-primary-rgb), 0.10) 0%, rgba(228, 205, 132, 0.10) 100%);
  border: 1px solid rgba(var(--vm-primary-rgb), 0.25);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.single-cta-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--vm-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.single-cta-icon .material-symbols-outlined { font-size: 28px; font-variation-settings: 'FILL' 1; }
.single-cta-body { flex: 1; min-width: 200px; }
.single-cta-body h3 { margin: 0 0 .2rem; color: var(--vm-dark); font-size: 1.1rem; font-weight: 800; }
.single-cta-body p { margin: 0; color: var(--vm-earth); font-size: .92rem; }
.single-cta-btn { flex-shrink: 0; }
@media (max-width: 540px) {
  .single-cta { text-align: center; flex-direction: column; padding: 1.25rem; }
  .single-cta-body { min-width: 0; }
  .single-cta-btn { width: 100%; justify-content: center; }
}

/* =================== Galería de fotos de Google =================== */
.gphotos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .gphotos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .gphotos-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }
  .gphoto-item.is-big {
    grid-column: span 2;
    grid-row: span 2;
  }
}
.gphoto-item {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,0.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gphoto-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}
.gphoto-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gphoto-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
@media (max-width: 1023px) {
  .gphoto-link img { aspect-ratio: 4/3; height: auto; }
}
.gphoto-item:hover .gphoto-link img { transform: scale(1.04); }
.gphoto-credit {
  position: absolute;
  left: .65rem;
  bottom: .65rem;
  right: .65rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .65rem;
  background: rgba(20, 18, 16, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  border-radius: 999px;
  width: fit-content;
  max-width: calc(100% - 1.3rem);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.gphoto-credit a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.5);
}
.gphoto-credit a:hover { border-bottom-color: #fff; }
.gphoto-credit .material-symbols-outlined { font-size: 14px; flex-shrink: 0; }
.gphoto-credit .gphoto-source { opacity: .6; font-weight: 400; }
.gphotos-foot {
  text-align: center;
  margin: 1.5rem 0 0;
  font-size: .85rem;
  color: var(--vm-earth-soft);
}
.gphotos-foot a {
  color: var(--vm-primary-dark);
  font-weight: 700;
  text-decoration: none;
}
.gphotos-foot a:hover { text-decoration: underline; }

/* =================== Lightbox (spotlight) =================== */
.vm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.vm-lightbox.is-open { display: flex; }
.vm-lightbox__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(20, 18, 16, 0.55) 0%, rgba(8, 7, 6, 0.92) 70%),
    rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  animation: vmLbFadeIn .25s ease;
  cursor: zoom-out;
}
@keyframes vmLbFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes vmLbPopIn {
  from { opacity: 0; transform: scale(.94); }
  to { opacity: 1; transform: scale(1); }
}
.vm-lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.vm-lightbox__close:hover { background: rgba(255, 255, 255, 0.22); transform: scale(1.05); }
.vm-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.vm-lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.vm-lightbox__nav--prev { left: 1rem; }
.vm-lightbox__nav--next { right: 1rem; }
.vm-lightbox__nav .material-symbols-outlined { font-size: 30px; }
@media (max-width: 640px) {
  .vm-lightbox__nav { width: 40px; height: 40px; }
  .vm-lightbox__nav--prev { left: .5rem; }
  .vm-lightbox__nav--next { right: .5rem; }
  .vm-lightbox__close { top: .85rem; right: .85rem; width: 38px; height: 38px; }
}
.vm-lightbox__stage {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: vmLbPopIn .35s cubic-bezier(.16,1,.3,1);
}
.vm-lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: opacity .25s ease;
  background: rgba(255,255,255,0.04);
}
.vm-lightbox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.18);
  border-top-color: var(--vm-primary);
  animation: vmLbSpin .9s linear infinite;
  z-index: 1;
}
@keyframes vmLbSpin { to { transform: rotate(360deg); } }
.vm-lightbox__caption {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-size: .85rem;
  font-weight: 600;
  border-radius: 999px;
  max-width: 90vw;
}
.vm-lightbox__caption .material-symbols-outlined { font-size: 16px; }
.vm-lightbox__caption a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.5);
}
.vm-lightbox__caption a:hover { border-bottom-color: #fff; }
.vm-lightbox__source { opacity: .55; font-weight: 400; }
.gphoto-link { cursor: zoom-in; }

/* =================== Servicios (página) - CTA pie =================== */
.services-cta-foot {
  margin: 3rem auto 0;
  padding: 2rem 1.5rem;
  text-align: center;
  background: rgba(var(--vm-primary-rgb), 0.06);
  border-radius: 20px;
  max-width: 560px;
}
.services-cta-foot p {
  margin: 0 0 1rem;
  color: var(--vm-heading);
  font-size: 1.1rem;
  font-weight: 700;
}
.services-cta-foot .btn-primary { display: inline-flex; }

/* =================== Panel: Gestión tarjetas regalo =================== */
.gc-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--vm-sand);
}
.gc-filter-tab {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: var(--vm-cream-soft, #fffaf2);
  border: 1px solid var(--vm-sand);
  color: var(--vm-earth);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.gc-filter-tab .material-symbols-outlined { font-size: 17px; }
.gc-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 .35rem;
  background: rgba(0, 0, 0, 0.06);
  color: inherit;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 999px;
}
.gc-filter-tab:hover { background: #fff; border-color: rgba(var(--vm-primary-rgb), 0.40); color: var(--vm-heading); }
.gc-filter-tab.is-active {
  background: var(--vm-dark);
  border-color: var(--vm-dark);
  color: #fff;
}
.gc-filter-tab.is-active .gc-filter-count { background: rgba(255,255,255,0.18); color: #fff; }

/* Badges de estado en filas */
.gc-status-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .65rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}
.gc-status-badge .material-symbols-outlined { font-size: 15px; font-variation-settings: 'FILL' 1; }
.gc-status-badge-pending   { background: rgba(228, 205, 132, 0.18); color: #8b6a1f; border: 1px solid rgba(228, 205, 132, 0.45); }
.gc-status-badge-active    { background: rgba(31, 138, 76, 0.13); color: #1f8a4c; border: 1px solid rgba(31, 138, 76, 0.30); }
.gc-status-badge-redeemed  { background: rgba(74, 95, 168, 0.13); color: #4a5fa8; border: 1px solid rgba(74, 95, 168, 0.30); }
.gc-status-badge-cancelled { background: rgba(193, 52, 47, 0.12); color: #c1342f; border: 1px solid rgba(193, 52, 47, 0.30); }
.gc-status-badge-expired   { background: rgba(120, 110, 100, 0.13); color: #6b6258; border: 1px solid rgba(120, 110, 100, 0.30); }

/* Filas atenuadas para estados terminales */
.gc-row-cancelled, .gc-row-expired, .gc-row-redeemed { opacity: .75; }

/* Buscador */
.gc-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
  align-items: center;
}
.gc-search-wrap {
  position: relative;
  flex: 1;
  min-width: 240px;
  display: flex;
  align-items: center;
}
.gc-search-icon {
  position: absolute;
  left: .75rem;
  color: var(--vm-earth-soft);
  font-size: 20px;
  pointer-events: none;
}
.gc-search-input {
  width: 100%;
  padding: .65rem .65rem .65rem 2.4rem;
  border: 1px solid var(--vm-sand);
  border-radius: 10px;
  background: #fff;
  font-size: .92rem;
  font-family: inherit;
  color: var(--vm-heading);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.gc-search-input:focus {
  outline: none;
  border-color: rgba(var(--vm-primary-rgb), 0.55);
  box-shadow: 0 0 0 3px rgba(var(--vm-primary-rgb), 0.12);
}
.gc-search-clear {
  position: absolute;
  right: .5rem;
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  color: var(--vm-earth-soft);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.gc-search-clear:hover { background: rgba(0,0,0,0.12); color: var(--vm-heading); }
.gc-search-clear .material-symbols-outlined { font-size: 16px; }
.gc-search-btn { white-space: nowrap; padding: .65rem 1rem; }
.gc-search-meta {
  margin: 0 0 1rem;
  font-size: .85rem;
  color: var(--vm-earth-soft);
  padding: .5rem .85rem;
  background: rgba(var(--vm-primary-rgb), 0.06);
  border-radius: 8px;
  border-left: 3px solid var(--vm-primary);
}

/* Paginación */
.gc-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--vm-sand);
}
.gc-pagination-info {
  font-size: .85rem;
  color: var(--vm-earth-soft);
}
.gc-pagination-buttons {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
}
.gc-page-btn,
.gc-page-num {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .45rem .75rem;
  border-radius: 8px;
  border: 1px solid var(--vm-sand);
  background: #fff;
  color: var(--vm-earth);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  min-width: 36px;
  justify-content: center;
}
.gc-page-btn .material-symbols-outlined { font-size: 16px; }
.gc-page-btn:hover,
.gc-page-num:hover {
  background: var(--vm-cream-soft, #fffaf2);
  border-color: rgba(var(--vm-primary-rgb), 0.45);
  color: var(--vm-heading);
}
.gc-page-num.is-current {
  background: var(--vm-dark);
  border-color: var(--vm-dark);
  color: #fff;
  pointer-events: none;
}
.gc-page-btn.is-disabled {
  opacity: .4;
  pointer-events: none;
  cursor: not-allowed;
}
.gc-page-ellipsis {
  padding: 0 .35rem;
  color: var(--vm-earth-soft);
  font-weight: 700;
}

@media (max-width: 540px) {
  .gc-search-form { gap: .35rem; }
  .gc-search-wrap { min-width: 0; }
  .gc-search-input { padding: .55rem .55rem .55rem 2.2rem; font-size: .88rem; }
  .gc-search-btn { width: 100%; }
  .gc-pagination { flex-direction: column; gap: .75rem; align-items: stretch; }
  .gc-pagination-info { text-align: center; }
  .gc-pagination-buttons { justify-content: center; }
  .gc-page-btn { font-size: .8rem; padding: .4rem .55rem; }
  .gc-page-btn:not(.is-disabled) span:not(.material-symbols-outlined) { display: none; }
}

/* Acciones de la fila — todas en una sola línea */
.gc-actions {
  display: flex;
  gap: .3rem;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.gc-actions .btn-sm,
.gc-actions form { display: inline-flex; }
.gc-actions .btn-sm {
  padding: .35rem .55rem;
  font-size: .78rem;
  font-weight: 700;
  border-radius: 8px;
  min-height: 32px;
  line-height: 1;
  border-width: 1px;
}
.gc-actions .btn-sm .material-symbols-outlined { font-size: 15px; }
/* Botones tipo icono solo (ver, editar, cancelar) — cuadrados sin texto */
.gc-actions .gc-btn-icon {
  padding: 0;
  width: 32px;
  height: 32px;
  justify-content: center;
}
.gc-actions .gc-btn-icon .material-symbols-outlined { font-size: 16px; }
.gc-btn-validate {
  background: #1f8a4c !important;
  color: #fff !important;
  border-color: #1f8a4c !important;
  box-shadow: 0 4px 10px rgba(31, 138, 76, 0.25) !important;
}
.gc-btn-validate:hover { background: #176a3a !important; border-color: #176a3a !important; }
.gc-btn-cancel {
  color: #c1342f !important;
  border-color: rgba(193, 52, 47, 0.30) !important;
}
.gc-btn-cancel:hover { background: rgba(193, 52, 47, 0.10) !important; }
.gc-btn-reactivate { color: var(--vm-primary-dark); }
.gc-btn-reactivate:hover { background: rgba(var(--vm-primary-rgb), 0.12); }
.gc-btn-complete { color: #4a5fa8; border-color: rgba(74, 95, 168, 0.30); }
.gc-btn-complete:hover { background: rgba(74, 95, 168, 0.10); }

/* ============== Tabla → cards en móvil (≤768px) ============== */
@media (max-width: 768px) {
  .gc-filter-tab { padding: .45rem .7rem; font-size: .82rem; }
  .gc-filter-tab .material-symbols-outlined { font-size: 15px; }
  .gc-status-badge { font-size: .72rem; padding: .2rem .55rem; }

  /* Convertir tabla a cards apilados */
  .gc-table { display: block; border: 0; }
  .gc-table thead { display: none; }
  .gc-table tbody { display: block; }
  .gc-table tbody tr.gc-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .25rem .75rem;
    background: #fff;
    border: 1px solid var(--vm-sand);
    border-radius: 14px;
    padding: .85rem 1rem;
    margin-bottom: .75rem;
    box-shadow: 0 4px 14px -8px rgba(42, 39, 35, 0.08);
  }
  .gc-table tbody tr.gc-row td {
    display: block;
    border: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    font-size: .88rem;
  }
  /* Etiquetas data-label antes del valor para identificar cada campo */
  .gc-table tbody tr.gc-row td::before {
    content: attr(data-label);
    display: block;
    font-size: .65rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--vm-earth-soft);
    font-weight: 700;
    margin-bottom: .15rem;
  }
  .gc-table tbody tr.gc-row td:empty,
  .gc-table tbody tr.gc-row td:empty::before { display: none; }
  /* Layout específico: código + estado en la primera fila del card, ocupando todo el ancho */
  .gc-table tbody tr.gc-row td:nth-child(1) { grid-column: 1; }
  .gc-table tbody tr.gc-row td:nth-child(2) { grid-column: 2; text-align: right; }
  .gc-table tbody tr.gc-row td:nth-child(2)::before { display: none; }
  /* Resto ocupa toda la fila */
  .gc-table tbody tr.gc-row td:nth-child(n+3) { grid-column: 1 / -1; }
  /* Acciones al fondo, separadas con un borde */
  .gc-table tbody tr.gc-row td.gc-actions {
    grid-column: 1 / -1;
    margin-top: .35rem;
    padding-top: .65rem !important;
    border-top: 1px solid var(--vm-sand) !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .gc-table tbody tr.gc-row td.gc-actions::before { display: none; }
  .gc-actions { gap: .35rem; }
}

/* Card "Tarjeta regalo" en grid de servicios del home */
.service-card-giftcard .img-wrap { background: linear-gradient(160deg, #2a2622 0%, #1a1714 100%); aspect-ratio: 4/3; position: relative; }
.gift-card-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(228, 205, 132, 0.30) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(var(--vm-primary-rgb), 0.20) 0%, transparent 60%);
}
.gift-card-icon {
  font-size: 80px !important;
  color: #e4cd84;
  font-variation-settings: 'FILL' 1;
  filter: drop-shadow(0 8px 24px rgba(228, 205, 132, 0.55));
  animation: giftCardFloat 3.5s ease-in-out infinite;
}
@keyframes giftCardFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-6px) rotate(3deg); }
}
.gift-card-sparkle {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e4cd84;
  box-shadow: 0 0 14px rgba(228, 205, 132, 0.95);
  animation: gcsparkle 2.4s ease-in-out infinite;
}
.gift-card-sparkle.s1 { top: 18%; left: 20%; }
.gift-card-sparkle.s2 { top: 30%; right: 18%; width: 6px; height: 6px; animation-delay: .7s; }
.gift-card-sparkle.s3 { bottom: 22%; left: 30%; width: 5px; height: 5px; animation-delay: 1.4s; }
@keyframes gcsparkle {
  0%, 100% { opacity: 0; transform: scale(.5); }
  50%      { opacity: 1; transform: scale(1.15); }
}
.gift-card-tag {
  background: linear-gradient(135deg, #e6cd84, #f3dca0, #c69e54) !important;
  color: #3b2e10 !important;
  font-weight: 800;
  letter-spacing: .04em;
}
.gift-card-tag .material-symbols-outlined { color: #3b2e10 !important; font-variation-settings: 'FILL' 1; }

/* =================== Landing /regalar/ =================== */
.regalo-hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(228, 205, 132, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 80%, rgba(var(--vm-primary-rgb), 0.10) 0%, transparent 55%),
    linear-gradient(180deg, #fffaf2 0%, #fff 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.regalo-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .regalo-hero-grid { grid-template-columns: 1.15fr 1fr; gap: 4rem; }
}
.regalo-hero-copy .kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, #e6cd84, #f3dca0, #c69e54);
  color: #3b2e10;
  padding: .35rem .85rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 18px rgba(198, 158, 84, 0.35);
}
.regalo-hero-copy .kicker-pill .material-symbols-outlined { font-size: 16px; }
.regalo-hero-copy h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--vm-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.accent-gold {
  background: linear-gradient(135deg, #c69e54, #e6cd84 50%, #c69e54);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.regalo-hero-copy .lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--vm-earth);
  line-height: 1.65;
  margin: 0 0 1.75rem;
  max-width: 580px;
}
.regalo-hero-copy .ctas { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Mockup de la tarjeta — versión miniatura para el hero */
.regalo-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}
.regalo-card-mock {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 1.5rem 1.35rem;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%),
    linear-gradient(160deg, #2a2622 0%, #1a1714 100%);
  color: #fff;
  border: 1px solid rgba(228, 205, 132, 0.30);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.18);
  transform: rotate(-2deg);
  animation: regaloMockFloat 6s ease-in-out infinite;
}
@keyframes regaloMockFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(-1deg) translateY(-8px); }
}
.regalo-card-mock::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(228, 205, 132, 0.55), transparent);
}
.regalo-card-mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}
.regalo-card-mock .regalo-brand {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--vm-dark);
  padding: .3rem .7rem .3rem .45rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
}
.regalo-card-mock .regalo-brand .material-symbols-outlined {
  width: 24px; height: 24px;
  background: rgba(var(--vm-primary-rgb), 0.18);
  color: var(--vm-primary-dark);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-variation-settings: 'FILL' 1;
}
.regalo-card-mock .regalo-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: linear-gradient(135deg, #e6cd84, #f3dca0, #c69e54);
  color: #3b2e10;
  padding: .3rem .65rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.regalo-card-mock .regalo-badge .material-symbols-outlined { font-size: 13px; font-variation-settings: 'FILL' 1; }
.regalo-card-mock blockquote {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.3;
  text-align: center;
  margin: .5rem 0 1.1rem;
  padding: .75rem 0;
  border-top: 1px solid rgba(228, 205, 132, 0.18);
  border-bottom: 1px solid rgba(228, 205, 132, 0.18);
  color: #fff;
}
.regalo-card-mock blockquote .qm { color: #e4cd84; font-size: 1.4em; opacity: .9; }
.regalo-card-mock-people {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  text-align: center;
  margin-bottom: 1.1rem;
}
.regalo-card-mock-people > div { flex: 1; }
.regalo-card-mock-people .lbl {
  display: block;
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(228, 205, 132, 0.70);
  font-weight: 700;
  margin-bottom: .2rem;
}
.regalo-card-mock-people .nm {
  display: block;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1rem;
  color: #fff;
}
.regalo-card-mock-people .div { color: rgba(228, 205, 132, 0.65); font-size: 1rem; }
.regalo-card-mock-cta {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  background: linear-gradient(135deg, var(--vm-primary), #a4c168);
  color: var(--vm-dark);
  padding: .7rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  box-shadow: 0 8px 20px rgba(var(--vm-primary-rgb), 0.40);
}
.regalo-card-mock-cta .material-symbols-outlined { font-size: 18px; }
.regalo-spark {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e4cd84;
  box-shadow: 0 0 14px rgba(228, 205, 132, 0.95);
  opacity: .8;
  animation: regaloSparkPulse 2.5s ease-in-out infinite;
}
.regalo-spark.spark1 { top: 8%; right: 8%; }
.regalo-spark.spark2 { bottom: 18%; left: 4%; width: 6px; height: 6px; animation-delay: .8s; }
.regalo-spark.spark3 { top: 50%; right: -4px; width: 7px; height: 7px; animation-delay: 1.4s; }
@keyframes regaloSparkPulse {
  0%, 100% { opacity: .4; transform: scale(.7); }
  50%      { opacity: 1; transform: scale(1.15); }
}

/* Pasos */
.regalo-steps {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  gap: 1.25rem;
  counter-reset: regalo-step;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .regalo-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .regalo-steps { grid-template-columns: repeat(4, 1fr); } }
.regalo-step {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--vm-cream-soft, #fffaf2);
  border: 1px solid var(--vm-sand);
  border-radius: 18px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.regalo-step:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--vm-primary-rgb), 0.40);
  box-shadow: 0 16px 36px -12px rgba(42,39,35,0.15);
}
.regalo-step .num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e6cd84, #c69e54);
  color: #3b2e10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 6px 14px rgba(198, 158, 84, 0.35);
}
.regalo-step h3 { margin: .1rem 0 .35rem; font-size: 1.05rem; color: var(--vm-heading); font-weight: 800; }
.regalo-step p { margin: 0; color: var(--vm-earth-soft); font-size: .92rem; line-height: 1.55; }

/* Info grid (precio + condiciones) */
.regalo-info-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
@media (min-width: 640px) { .regalo-info-grid { grid-template-columns: repeat(2, 1fr); } }
.regalo-info-card {
  background: #fff;
  border: 1px solid var(--vm-sand);
  border-radius: 18px;
  padding: 1.5rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.regalo-info-card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(42,39,35,0.14); }
.regalo-info-card .ic {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(228, 205, 132, 0.15);
  color: #a07e3a;
  margin-bottom: 1rem;
}
.regalo-info-card .ic .material-symbols-outlined { font-size: 24px; font-variation-settings: 'FILL' 1; }
.regalo-info-card h3 { margin: 0 0 .5rem; font-size: 1.1rem; color: var(--vm-heading); font-weight: 800; }
.regalo-info-card p { margin: 0; color: var(--vm-earth-soft); font-size: .95rem; line-height: 1.6; }

/* Por qué regalar bienestar */
.regalo-reasons {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
@media (min-width: 640px) { .regalo-reasons { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .regalo-reasons { grid-template-columns: repeat(4, 1fr); } }
.regalo-reason { text-align: center; padding: 1.25rem .75rem; }
.regalo-reason .ic {
  display: inline-flex;
  width: 64px; height: 64px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(var(--vm-primary-rgb), 0.12);
  color: var(--vm-primary-dark);
  margin-bottom: 1rem;
}
.regalo-reason .ic .material-symbols-outlined { font-size: 30px; font-variation-settings: 'FILL' 1; }
.regalo-reason h3 { margin: 0 0 .35rem; font-size: 1.05rem; color: var(--vm-heading); font-weight: 800; }
.regalo-reason p { margin: 0; color: var(--vm-earth-soft); font-size: .9rem; line-height: 1.55; }

/* CTA final */
.bg-dark-soft {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(228, 205, 132, 0.15) 0%, transparent 60%),
    linear-gradient(160deg, #221f1b 0%, #15130f 100%);
  color: #fff;
}
.regalo-final-cta {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.regalo-final-icon {
  font-size: 56px !important;
  color: #e4cd84;
  filter: drop-shadow(0 0 20px rgba(228, 205, 132, 0.55));
  font-variation-settings: 'FILL' 1;
  margin-bottom: 1rem;
  display: block;
}
.regalo-final-cta h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 0 0 .75rem; font-weight: 800; }
.regalo-final-cta p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin: 0 0 1.75rem; line-height: 1.55; }
.regalo-final-cta .btn-primary {
  display: inline-flex;
  background: linear-gradient(135deg, var(--vm-primary), #a4c168);
  color: var(--vm-dark);
  box-shadow: 0 14px 36px rgba(var(--vm-primary-rgb), 0.45);
}

/* Móvil ajustes para regalar */
@media (max-width: 480px) {
  .regalo-hero { padding: 4rem 0 3rem; }
  .regalo-hero-grid { gap: 2rem; }
  .regalo-card-mock { max-width: 100%; padding: 1.25rem 1rem; }
  .regalo-card-mock blockquote { font-size: 1.05rem; }
  .regalo-step { padding: 1.1rem; }
  .regalo-info-card { padding: 1.1rem; }
  .regalo-final-cta .btn-primary { width: 100%; justify-content: center; }
  .regalo-hero-copy .ctas .btn-primary,
  .regalo-hero-copy .ctas .btn-soft { width: 100%; justify-content: center; }
}

/* ===================== Mobile pass (≤480px y ≤380px) ===================== */
@media (max-width: 480px) {
  /* Container con padding ajustado para no comerse contenido */
  .container-vm { padding: 0 1rem; }

  /* Botones más compactos pero táctiles (>=44px) */
  .btn-primary, .btn-outline, .btn-soft, .btn-on-dark {
    padding: .75rem 1.1rem;
    font-size: .92rem;
    min-height: 44px;
  }

  /* Hero más equilibrado */
  .hero { padding: 4.5rem 0 3rem; }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .hero p.lead { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero .ctas { flex-direction: column; align-items: stretch; gap: .65rem; }
  .hero .ctas .btn-primary, .hero .ctas .btn-soft, .hero .ctas .btn-outline { width: 100%; justify-content: center; }
  .hero .trust { gap: .85rem 1.25rem; padding-top: 1rem; }
  .hero .visual { min-height: 280px; }

  /* Secciones internas */
  .section { padding: 3rem 0; }
  .section-title h2 { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
  .section-title p { font-size: .95rem; }

  /* Stats band */
  .stats-band { padding: 2rem 0; }
  .stats-grid { gap: 1rem .25rem; }
  .stats-grid .stat .num { font-size: clamp(1.6rem, 7vw, 2rem); }
  .stats-grid .stat .label { font-size: .72rem; letter-spacing: .04em; }

  /* About badges 2 cols → 1 col en muy pequeño */
  .about-grid .badges { grid-template-columns: 1fr; gap: .75rem; }

  /* Reviews CTA — apilar columnas */
  .review-cta { grid-template-columns: 1fr; text-align: center; padding: 1.25rem; }
  .review-cta-icon { margin: 0 auto; }
  .review-cta .btn-primary { width: 100%; justify-content: center; }

  /* Modal horario más compacto */
  .vm-hours-modal__dialog { padding: 1.25rem .95rem 1rem; border-radius: 18px; }
  .vm-hours-row { padding: .5rem .55rem; font-size: .88rem; }

  /* Tarjeta regalo en móviles pequeños */
  .gc-people { gap: .65rem; padding: 0 .25rem; }
  .gc-person .name { font-size: 1.15rem; }
  .gc-divider { width: 30px; height: 30px; }
  .gc-divider::before { font-size: 1rem; }
  .gc-service {
    gap: .5rem;
    padding: .4rem .9rem .4rem .45rem;
    margin: 0 auto .65rem;
    border-radius: 999px;
    border-style: solid;
    border-color: rgba(228, 205, 132, 0.30);
    width: fit-content;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: row !important;
  }
  .gc-service::before, .gc-service::after { display: none; }
  .gc-service-body { flex: 0 1 auto; }
  .gc-service-img {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    box-shadow: none;
    flex-shrink: 0;
  }
  .gc-service-img-placeholder .material-symbols-outlined { font-size: 20px; }
  .gc-service-eyebrow { display: none; }
  .gc-service h3 {
    font-size: .92rem;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 16rem;
  }
  .gc-service-meta { display: none; }
  .gc-message { font-size: clamp(1.35rem, 6vw, 1.85rem); padding: .85rem .6rem; margin: .5rem 0 .85rem; }
  .gc-message::before, .gc-message::after { width: clamp(60px, 14vw, 100px); }
  .gc-claim { padding: .75rem .85rem; gap: .55rem; }
  .gc-claim-head { gap: .55rem; }
  .gc-claim-head > .material-symbols-outlined { width: 32px; height: 32px; font-size: 18px; border-radius: 10px; }
  .gc-claim-head strong { font-size: .88rem; }
  .gc-claim-head p { font-size: .76rem; }
  .gc-location { padding: .55rem .7rem; gap: .55rem; }
  .gc-location-icon { width: 28px; height: 28px; font-size: 16px; }
  .gc-location-text { font-size: .85rem; }
  .gc-location-validity { font-size: .72rem; margin-top: .25rem; }
  .gc-cta { padding: .7rem 1rem; font-size: .88rem; }
  .gc-cta-claim { padding: .8rem 1rem; }

  /* Loader tarjeta regalo */
  .gc-loader-icon { font-size: 64px !important; }
  .gc-loader-gift { width: 90px; height: 90px; }
  .gc-loader-text { font-size: .95rem; }
  .gc-loader-surprise { font-size: clamp(.95rem, 4.2vw, 1.15rem); padding: 0 .85rem; }

  /* Servicios página - foot CTA full width */
  .services-cta-foot { padding: 1.5rem 1rem; }
  .services-cta-foot p { font-size: 1rem; }
  .services-cta-foot .btn-primary { width: 100%; justify-content: center; }

  /* Service single hero */
  .service-hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* Galería de Google */
  .gphotos-grid { gap: .65rem; }
  .gphoto-credit { font-size: .65rem; padding: .25rem .55rem; left: .45rem; right: .45rem; bottom: .45rem; }

  /* Footer */
  .site-footer { padding: 2.75rem 0 1.5rem; }
  .footer-cita-aviso { padding: .55rem .75rem; font-size: .85rem; }
  .footer-disclaimer { padding: .85rem 1rem; font-size: .85rem; margin-top: 1.75rem; }

  /* Cuenta / panel */
  .account-tabs { gap: .35rem; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: .5rem; }
  .account-tabs::-webkit-scrollbar { display: none; }
  .account-tab { flex-shrink: 0; padding: .55rem .85rem; font-size: .85rem; }
  .account-tab .material-symbols-outlined { font-size: 18px; }

  /* Forms en móvil */
  .vm-field input[type="text"],
  .vm-field input[type="email"],
  .vm-field input[type="tel"],
  .vm-field input[type="number"],
  .vm-field input[type="password"],
  .vm-field input[type="date"],
  .vm-field select,
  .vm-field textarea {
    font-size: 16px; /* Evita zoom automático en iOS */
  }

  /* Mis tarjetas */
  .my-gc-card { border-radius: 16px; }
  .my-gc-body { padding: 1rem; }
  .my-gc-actions .btn-primary, .my-gc-actions .btn-soft { padding: .55rem .95rem; font-size: .85rem; }

  /* Auth (login / registro) */
  .auth-card { padding: 1.5rem 1.1rem; border-radius: 18px; }
  .auth-head h1 { font-size: 1.4rem; }
}

/* Móvil pequeño (≤380px) — ajustes más estrictos */
@media (max-width: 380px) {
  .container-vm { padding: 0 .85rem; }

  /* Page-header (h1 de páginas interiores) */
  .page-header { padding: 2rem 0 1.5rem; }
  .page-header h1 { font-size: 1.55rem; }

  /* Hero CTAs eyebrow más pequeño */
  .hero .eyebrow { font-size: .78rem; padding: .4rem .9rem; margin-bottom: 1.1rem; }

  /* Header del sitio */
  .site-header .brand-text { display: none; }
  .site-header .brand-logo-img { height: 28px !important; }

  /* Tarjeta regalo: nombres serif aún cómodos */
  .gc-person .name { font-size: 1.05rem; }
  .gc-message { padding: .65rem .4rem; }

  /* Lightbox close button no se solape */
  .vm-lightbox__close { top: .6rem; right: .6rem; width: 34px; height: 34px; }

  /* FAB cita ya tiene rule propia */
  .fab-cita .fab-cita__label { font-size: .85rem; }
}

/* =================== Banner de cookies (plugin "Cookies EU Banner") — discreto =================== */
#cookies-eu-banner {
  position: fixed;
  left: 1rem;
  right: auto;
  bottom: 1rem;
  transform: none;
  z-index: 9998;
  width: min(340px, calc(100% - 2rem));
  max-width: 340px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%),
    linear-gradient(135deg, rgba(20, 17, 15, 0.82) 0%, rgba(10, 8, 7, 0.82) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: .8rem .95rem;
  box-shadow:
    0 14px 36px -10px rgba(0,0,0,0.50),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(0,0,0,0.20);
  overflow: hidden;
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .6rem;
  font-size: .78rem;
  line-height: 1.4;
  animation: cookiesBannerSlideUp .4s cubic-bezier(.2,.9,.2,1) both;
}
@keyframes cookiesBannerSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Línea champagne sutil arriba */
#cookies-eu-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 14px; right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 205, 132, 0.55), transparent);
  pointer-events: none;
}
#cookies-eu-banner::after {
  content: '🍪';
  font-size: .95rem;
  margin-right: .2rem;
  order: -1;
  opacity: .9;
}

/* Textos */
#cookies-eu-banner,
#cookies-eu-banner p,
#cookies-eu-banner span {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
#cookies-eu-banner strong,
#cookies-eu-banner b { color: #fff; font-weight: 600; }

/* Enlace "Más info" */
#cookies-eu-banner a,
#cookies-eu-banner #cookies-eu-more,
#cookies-eu-banner a#cookies-eu-more {
  color: #e4cd84;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(228, 205, 132, 0.40);
  transition: color .2s ease, text-decoration-color .2s ease;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  display: inline;
}
#cookies-eu-banner a:hover,
#cookies-eu-banner #cookies-eu-more:hover {
  color: #fff;
  text-decoration-color: #fff;
}

/* Botones (Aceptar / Rechazar / Configurar) — compactos */
#cookies-eu-banner button,
#cookies-eu-banner #cookies-eu-accept,
#cookies-eu-banner #cookies-eu-reject,
#cookies-eu-banner #cookies-eu-accept-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  padding: .4rem .8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .01em;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  text-decoration: none;
}

/* Botón principal "Aceptar" — verde primary */
#cookies-eu-banner #cookies-eu-accept,
#cookies-eu-banner #cookies-eu-accept-all,
#cookies-eu-banner .cookies-eu-accept {
  background: var(--vm-primary);
  color: var(--vm-dark);
  box-shadow: 0 4px 10px rgba(var(--vm-primary-rgb), 0.30);
}
#cookies-eu-banner #cookies-eu-accept:hover,
#cookies-eu-banner #cookies-eu-accept-all:hover,
#cookies-eu-banner .cookies-eu-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(var(--vm-primary-rgb), 0.45);
}

/* Botón secundario "Rechazar" — outline */
#cookies-eu-banner #cookies-eu-reject,
#cookies-eu-banner .cookies-eu-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.18);
}
#cookies-eu-banner #cookies-eu-reject:hover,
#cookies-eu-banner .cookies-eu-reject:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.30);
  color: #fff;
}

/* Layout: texto ocupa toda la fila, botones debajo */
#cookies-eu-banner > *:not(button):not([id^="cookies-eu-"]) { flex: 1 1 100%; min-width: 0; }

/* Móvil: ajustar al ancho con márgenes */
@media (max-width: 640px) {
  #cookies-eu-banner {
    left: .6rem;
    right: .6rem;
    bottom: .6rem;
    width: auto;
    max-width: none;
    padding: .75rem .85rem;
    border-radius: 12px;
    font-size: .78rem;
  }
  #cookies-eu-banner button,
  #cookies-eu-banner #cookies-eu-accept,
  #cookies-eu-banner #cookies-eu-reject,
  #cookies-eu-banner #cookies-eu-accept-all {
    flex: 1;
    padding: .5rem .8rem;
  }
  #cookies-eu-banner::after {
    font-size: 1rem;
  }
}
