/*
 * Tentaciones Design Tokens — aplicados al proyecto Masajes App
 * Fuente: c:\laragon\www\Tentaciones_v1\colors_and_type.css
 */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400;1,6..72,500&family=Hanken+Grotesk:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&family=Playfair+Display:wght@600;700&family=Dancing+Script:wght@600;700&display=swap');

:root {
  /* --- ROSE-MAGENTA (primary) --- */
  --rose-50:  #FCE9F1;
  --rose-100: #FAD0E2;
  --rose-200: #F4A6C8;
  --rose-300: #EC74A8;
  --rose-400: #E0468A;
  --rose-500: #D11E6C;
  --rose-600: #B8155C;
  --rose-700: #9A0E4B;
  --rose-800: #7C0A3C;
  --rose-900: #5E0B30;

  /* --- WINE / AUBERGINE INK --- */
  --ink-950: #190610;
  --ink-900: #28101E;
  --ink-800: #3A1A2C;
  --ink-700: #4E2740;
  --ink-600: #6B3C57;
  --ink-500: #6E5160;
  --ink-400: #9C8090;
  --ink-300: #C6B2BD;

  /* --- SURFACES (rose-tinted warm) --- */
  --bg:        #FFFFFF;
  --surface:   #FBF6F9;
  --surface-2: #F5EBF0;
  --surface-3: #ECDCE4;
  --border:    #F0E2EA;
  --border-strong: #DCC6D2;

  /* --- GOLD ACCENT --- */
  --gold-50:  #FBF2DB;
  --gold-100: #F6E2B0;
  --gold-300: #EBC76A;
  --gold-500: #D9A123;
  --gold-600: #BD8712;
  --gold-700: #946809;

  /* --- SEMANTIC --- */
  --success-50:  #E6F6EE;
  --success-500: #15A06C;
  --warning-50:  #FDF1DE;
  --warning-500: #E8902B;
  --danger-50:   #FCEAEC;
  --danger-500:  #E23744;

  /* --- ALIASES --- */
  --fg-1: var(--ink-900);
  --fg-2: var(--ink-500);
  --fg-3: var(--ink-400);
  --primary: var(--rose-600);
  --primary-hover: var(--rose-700);
  --focus-ring: rgba(184, 21, 92, 0.32);
  --shadow-rose: 0 10px 30px rgba(184, 21, 92, 0.30);

  /* --- FONTS --- */
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* --- SHADOWS (wine-tinted) --- */
  --shadow-sm: 0 1px 3px rgba(40,16,30,.08), 0 1px 2px rgba(40,16,30,.04);
  --shadow-md: 0 4px 14px rgba(40,16,30,.09), 0 2px 4px rgba(40,16,30,.05);
  --shadow-lg: 0 14px 40px rgba(40,16,30,.14), 0 4px 10px rgba(40,16,30,.06);

  /* --- RADII --- */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-2xl: 28px;
  --radius-pill: 999px;
}

/* ─── Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--fg-1);
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography helpers ────────────────────────────────── */
.t-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose-600);
}

.t-display {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg-1);
}

.t-h1  { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }
.t-h2  { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; line-height: 1.2; letter-spacing: -0.01em; }
.t-h3  { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; line-height: 1.25; }
.t-price { font-family: var(--font-mono); font-weight: 600; font-variant-numeric: tabular-nums; }
.t-mono  { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ─── Brand gradient hero bg — aurora animation ─────────── */
@keyframes aurora {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gradient-hero {
  background: linear-gradient(
    135deg,
    #3d1225 0%,
    #6B1038 18%,
    #8a1a4a 35%,
    #5a0a2e 52%,
    #7d1640 68%,
    #4a0d26 85%,
    #6B1038 100%
  );
  background-size: 400% 400%;
  animation: aurora 22s ease infinite;
}

/* ─── Card lift on hover ────────────────────────────────── */
.card-hover {
  transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s cubic-bezier(.2,.7,.3,1);
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.therapist-card-fixed-width {
  width: 260px;
}

/* ─── Verified badge gradient ───────────────────────────── */
.badge-verified {
  background: linear-gradient(135deg, var(--rose-600), var(--rose-800));
}

/* ─── Media overlay (protect text on images) ───────────── */
.media-overlay {
  background: linear-gradient(to top, rgba(25,6,16,.85) 0%, transparent 60%);
}

/* ─── Rating star gold ──────────────────────────────────── */
.rating-star { color: var(--gold-500); }

/* ─── Special badge glow (accesorio "Badge Especial") ────── */
@keyframes badge-glow-pulse {
  0%, 100% { box-shadow: 0 3px 14px var(--glow-color, rgba(0,0,0,.35)); transform: scale(1); }
  50%      { box-shadow: 0 3px 22px var(--glow-color, rgba(0,0,0,.35)); transform: scale(1.05); }
}
.special-badge-glow {
  animation: badge-glow-pulse 2.2s ease-in-out infinite;
}

/* ─── Banner Personalizable: fondo tipo sticker para el texto ── */
.banner-text-chip {
  background: rgba(25,6,16,.42);
  backdrop-filter: blur(3px);
  padding: .35em .7em;
  border-radius: 10px;
  display: inline-block;
  width: fit-content;
}

/* ─── Banner Personalizable: brillo animado ─────────────── */
@keyframes banner-shine-sweep {
  0%        { transform: translateX(-160%); }
  55%, 100% { transform: translateX(220%); }
}
.banner-shine-sweep {
  position: absolute; top: 0; bottom: 0; left: 0; width: 45%;
  background: linear-gradient(75deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: translateX(-160%);
  animation: banner-shine-sweep 3.2s ease-in-out infinite;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .banner-shine-sweep { animation: none; display: none; }
}

/* ─── Focus ring ────────────────────────────────────────── */
*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus-ring);
}

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--rose-600); border-radius: 3px; }

/* ─── Alpine.js cloak ───────────────────────────────────── */
[x-cloak] { display: none !important; }
