:root {
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-script: 'Allura', cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: #EDE7DC;
  color: #3B1620;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Paleta Nails (Modo base / luz) */
.site {
  --bg: #F5E9D0;
  --bg-rgb: 245, 233, 208;
  --surface: #FFFFFF;
  --surface-glass: rgba(255, 255, 255, 0.85);
  --ink: #3B1620;
  --muted: #8E6D76;
  --coral: #BF2B54;
  --forest: #7A1B3A;
  --gold: #DA6C81;
  --border: #E8D5B5;
  --border-subtle: rgba(191, 43, 84, 0.12);
  --heart-outer: #BF2B54;
  --heart-mid: #DA6C81;
  --heart-inner: #8F1F3D;
  --script-fill: #F5E9D0;
  --shadow-sm: 0 2px 8px -2px rgba(59, 22, 32, 0.06);
  --shadow-md: 0 12px 28px -8px rgba(59, 22, 32, 0.10);
  --shadow-lg: 0 20px 40px -12px rgba(59, 22, 32, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  position: relative;
  transition: background 0.45s ease, color 0.45s ease;
}

/* Paleta Tattoo (Modo oscuro / Studio de Autor) */
.site[data-service="tattoo"] {
  --bg: #0B0B0E;
  --bg-rgb: 11, 11, 14;
  --surface: #141419;
  --surface-glass: rgba(20, 20, 25, 0.88);
  --ink: #F5F0EC;
  --muted: #A79DA3;
  --coral: #C41E2E;
  --forest: #1F070C;
  --gold: #E5A93C;
  --cyan: #00F0FF;
  --border: rgba(255, 255, 255, 0.12);
  --border-subtle: rgba(196, 30, 46, 0.20);
  --heart-outer: #3A0A10;
  --heart-mid: #C41E2E;
  --heart-inner: #1A0508;
  --script-fill: #E5A93C;
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 12px 28px -8px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 40px -12px rgba(0, 0, 0, 0.8);
}

@media (min-width: 900px) {
  .site {
    width: calc(100% - 120px);
    max-width: 1360px;
    margin: 0 auto;
    box-shadow: 0 0 70px -15px rgba(0,0,0,0.18);
  }
}


.ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
}
.ui-icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.open-status.open .status-dot {
  background: #2E7D32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.25);
  animation: pulse-dot 2s infinite;
}
.open-status.closed .status-dot {
  background: #C62828;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

/* ================= NAV / HEADER ================= */
.site-nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1360px;
  margin: 0 auto;
  gap: 16px;
}
.brandmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.logo-badge {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(191,43,84,0.18));
  transition: transform 0.3s ease;
}
.brandmark:hover .logo-badge { transform: scale(1.05); }
.logo-badge .script { font-family: var(--font-script); font-size: 15px; fill: var(--script-fill); text-anchor: middle; dominant-baseline: middle; }
.logo-badge .script-shadow { font-family: var(--font-script); font-size: 15px; fill: var(--heart-inner); text-anchor: middle; dominant-baseline: middle; }
.wordmark {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--coral);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.02em;
}
.wordmark .reg-mark { font-family: var(--font-sans); font-size: 11px; vertical-align: super; }

.site-menu {
  display: none;
  align-items: center;
  gap: 22px;
}
.site-menu a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}
.site-menu a:hover { color: var(--coral); }
.site-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.site-menu a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mode Switch Pill */
.toggle-pill {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
.toggle-pill button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.toggle-pill button[aria-pressed="true"] {
  background: var(--coral);
  color: #FFFFFF;
  box-shadow: 0 3px 10px -2px color-mix(in srgb, var(--coral) 60%, transparent);
}

.account-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.account-btn:hover { border-color: var(--coral); color: var(--coral); transform: scale(1.05); }
.account-btn.logged-in {
  background: var(--coral);
  color: #FFFFFF;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--coral) 20%, transparent);
}

.nav-wa-cta {
  display: none;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: var(--forest);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, filter 0.2s;
}
.nav-wa-cta:hover { transform: translateY(-1px); filter: brightness(1.1); }
.nav-wa-cta-text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.nav-wa-cta-text strong { font-size: 12px; font-weight: 700; letter-spacing: 0.02em; }
.nav-wa-cta-text small { font-size: 10.5px; opacity: 0.85; }

.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

@media (min-width: 960px) {
  .site-menu { display: flex; }
  .nav-hamburger { display: none; }
  .nav-wa-cta { display: flex; }
}

/* Mobile Drawer Menu */
.site-menu.mobile-drawer {
  display: flex;
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: 82vw;
  max-width: 320px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  flex-direction: column;
  align-items: stretch;
  padding: 80px 24px 30px;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 50;
  box-shadow: -15px 0 35px rgba(0,0,0,0.25);
}
.site-menu.mobile-drawer.open { transform: translateX(0); }
.site-menu.mobile-drawer a {
  font-size: 16px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  z-index: 45;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* ================= HERO SECTION ================= */
.site-hero {
  position: relative;
  padding: 56px 24px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--coral) 12%, transparent) 0%, transparent 65%);
}
.hero-watermark {
  position: absolute;
  top: 45%; left: 50%;
  width: min(75vw, 540px);
  transform: translate(-50%, -50%);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.site-hero > *:not(.hero-watermark) { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--coral);
  border: 1px solid color-mix(in srgb, var(--coral) 35%, transparent);
  background: color-mix(in srgb, var(--coral) 6%, var(--surface));
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.site-hero h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 700;
  color: var(--coral);
  margin: 0 0 12px;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.site-hero p {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--muted);
  max-width: 54ch;
  margin: 0 auto 26px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.hero-badge-icon { color: var(--gold); }

/* ================= BOTONES Y CTAS ================= */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}
.cta-primary {
  background: var(--coral);
  color: #FFFFFF;
  box-shadow: 0 8px 22px -6px color-mix(in srgb, var(--coral) 60%, transparent);
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px color-mix(in srgb, var(--coral) 75%, transparent);
}
.cta-secondary {
  background: var(--surface);
  color: var(--coral);
  border: 1px solid var(--coral);
  box-shadow: var(--shadow-sm);
}
.cta-secondary:hover {
  background: color-mix(in srgb, var(--coral) 8%, var(--surface));
  transform: translateY(-2px);
}
.cta-halo {
  position: relative;
  overflow: hidden;
}
.cta-halo-invert {
  background: var(--coral);
  color: #FFFFFF;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  background: currentColor;
  animation: ripple-anim 1.2s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-anim {
  from { transform: scale(0); opacity: 0.55; }
  to { transform: scale(3); opacity: 0; }
}

/* ================= SECCIONES GLOBALES ================= */
section {
  padding: 56px 24px;
  border-top: 1px solid var(--border-subtle);
}
section:nth-of-type(even) {
  background: color-mix(in srgb, var(--coral) 3%, transparent);
}
.section-header {
  text-align: center;
  margin-bottom: 36px;
}
h3.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--coral);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.section-subtitle {
  font-size: 14px;
  color: var(--muted);
  max-width: 48ch;
  margin: 0 auto;
}

/* ================= SERVICIOS GRID ================= */
.services-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--coral) 50%, var(--border));
  box-shadow: var(--shadow-md);
}
.service-tag {
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--coral) 12%, transparent);
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}
.service-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.service-card .meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}
.service-card .price {
  margin-top: auto;
  font-size: 17px;
  font-weight: 800;
  color: var(--coral);
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  width: 100%;
  text-align: center;
}

/* ================= AGENDADO / BOOKING CARD ================= */
.booking-container {
  max-width: 580px;
  margin: 0 auto;
}
.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.booking-card[hidden] { display: none; }

/* Segmented Mode Tabs */
.segment-tabs {
  position: relative;
  display: flex;
  background: color-mix(in srgb, var(--coral) 6%, var(--bg));
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 24px;
}
.segment-indicator {
  position: absolute;
  top: 4px; left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--coral);
  border-radius: var(--radius-pill);
  z-index: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.25, 0.4, 1);
  box-shadow: 0 4px 12px -2px color-mix(in srgb, var(--coral) 50%, transparent);
}
.segment-tabs.reschedule .segment-indicator { transform: translateX(100%); }
.segment-tab {
  position: relative;
  z-index: 1;
  flex: 1 1 50%;
  border: none;
  background: transparent;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  transition: color 0.3s ease;
}
.segment-tab.active { color: #FFFFFF; }

/* Form Fields */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.form-control, select, input[type="text"], input[type="tel"] {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, select:focus, input[type="text"]:focus, input[type="tel"]:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--coral) 18%, transparent);
}

/* Date Picker */
.date-field { position: relative; }
.date-display {
  width: 100%;
  text-align: left;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s;
}
.date-display:hover { border-color: var(--coral); }
.date-display .dd-label.placeholder { color: var(--muted); }
.date-picker {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  width: 290px;
  max-width: 90vw;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-lg);
}
.date-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.date-picker-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  color: var(--coral);
  text-transform: uppercase;
}
.date-nav {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.date-nav:hover:not(:disabled) { background: color-mix(in srgb, var(--coral) 12%, transparent); color: var(--coral); }
.date-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.date-picker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.date-picker-weekdays span { text-align: center; font-size: 10px; font-weight: 800; color: var(--muted); }
.date-picker-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.date-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}
.date-cell:hover:not(:disabled) { background: color-mix(in srgb, var(--coral) 16%, transparent); }
.date-cell.selected { background: var(--coral); color: #FFFFFF; font-weight: 700; }
.date-cell.today:not(.selected) { box-shadow: inset 0 0 0 1.5px var(--coral); font-weight: 700; }
.date-cell:disabled { color: var(--border); cursor: not-allowed; opacity: 0.4; }
.date-cell.empty { visibility: hidden; }

/* Slots Grid */
.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 8px;
  margin-top: 6px;
}
.slot-btn {
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.slot-btn:hover:not(:disabled) { border-color: var(--coral); color: var(--coral); transform: translateY(-1px); }
.slot-btn.selected { background: var(--coral); color: #FFFFFF; border-color: var(--coral); box-shadow: 0 4px 10px -2px color-mix(in srgb, var(--coral) 50%, transparent); }
.slot-btn:disabled { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; background: transparent; }

/* Booking Messages & Receipt */
.booking-msg { font-size: 13.5px; padding: 14px 16px; border-radius: var(--radius-md); margin-top: 14px; }
.booking-msg.ok { background: #E8F7EE; color: #1E382B; border: 1px solid rgba(30, 56, 43, 0.15); }
.booking-msg.err { background: #FBE4E4; color: #7A1620; border: 1px solid rgba(122, 22, 32, 0.15); }
.booking-msg.info { background: var(--surface); border: 1px solid var(--border); color: var(--ink); box-shadow: var(--shadow-sm); }
.booking-msg.alt { background: #FBF1DE; color: #5C4520; border: 1px solid rgba(92, 69, 32, 0.15); }
.receipt-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: 13px; border-bottom: 1px dashed var(--border); }
.receipt-row:last-of-type { border-bottom: none; }
.receipt-dismiss { position: absolute; top: 10px; right: 10px; border: none; background: transparent; color: inherit; opacity: 0.5; font-size: 16px; cursor: pointer; padding: 4px; }
.receipt-dismiss:hover { opacity: 1; }

/* History Items */
.history-group { margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px dashed var(--border); }
.history-group-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 8px; }
.history-item { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 8px 0; }
.history-item .hi-title { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.history-item .hi-meta { color: var(--muted); font-size: 11.5px; margin-top: 2px; }
.history-badge-ok { color: #3F7A52; font-weight: 700; font-size: 11.5px; }
.history-badge-cancel { color: var(--coral); font-weight: 700; font-size: 11.5px; }
.history-badge-pending { color: #8A6D1A; font-weight: 700; font-size: 11.5px; }

/* ================= EQUIPO / COLLABORATORS ================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.collab-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.collab-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.collab-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--coral) 12%, var(--bg));
  border: 2px solid var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--coral);
}
.collab-card h4 { font-family: var(--font-serif); font-size: 17px; font-weight: 700; margin: 0; }
.collab-card .meta { font-size: 12px; font-weight: 600; color: var(--coral); }
.collab-days { font-size: 11.5px; color: var(--muted); background: var(--bg); padding: 4px 10px; border-radius: var(--radius-pill); margin-top: auto; }

/* ================= REVIEWS / RESEÑAS ================= */
.reviews-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.site[data-service="tattoo"] .stars { color: var(--cyan); }
.review-card p { font-size: 13.5px; color: var(--ink); line-height: 1.6; font-style: italic; }
.review-author { font-size: 12px; font-weight: 700; color: var(--muted); }

/* ================= GALERIA ================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  grid-auto-rows: 130px;
  grid-auto-flow: dense;
  gap: 14px;
  max-width: 1140px;
  margin: 0 auto;
}
.gallery-grid figure { margin: 0; position: relative; height: 100%; overflow: hidden; border-radius: var(--radius-md); }
.gallery-grid figure.feature { grid-column: span 2; grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); border: 1px solid var(--border); transition: transform 0.5s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-size: 11px; color: #FFFFFF;
  padding: 18px 10px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.wishlist-btn {
  position: absolute; top: 8px; right: 8px;
  background: rgba(0,0,0,0.5); color: #FFF;
  border: none; border-radius: 50%; width: 32px; height: 32px;
  font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* ================= FAQ ACCORDION ================= */
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--coral); transition: transform 0.25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { margin-top: 12px; font-size: 13.5px; color: var(--muted); line-height: 1.6; border-top: 1px dashed var(--border); padding-top: 12px; }

/* ================= UBICACION ================= */
.location-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) { .location-card { grid-template-columns: 1fr; } }
.location-card iframe { border-radius: var(--radius-md); min-height: 240px; border: 0; width: 100%; height: 100%; }
.location-info { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.loc-item { display: flex; flex-direction: column; gap: 4px; }
.loc-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--coral); }
.loc-val { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-top: 4px;
}
.open-status.open { background: #E8F7EE; color: #1E382B; }
.open-status.closed { background: #FBE4E4; color: #7A1620; }

/* ================= FOOTER ================= */
.site-footer {
  padding: 28px 24px 100px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* ================= WHATSAPP FAB ================= */
.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 35;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wa-fab:hover { transform: scale(1.1) rotate(-8deg); }

/* ================= MODALES ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay[hidden] { display: none !important; }
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  max-width: 400px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modal-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(0.96); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s;
}
.modal-close:hover { color: var(--coral); }
.phone-field { display: flex; gap: 8px; margin-bottom: 12px; }
.phone-field input { margin-bottom: 0; }
.phone-lada {
  display: flex; align-items: center; gap: 4px; flex-shrink: 0; padding: 0 12px;
  border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg);
  font-weight: 700; font-size: 13px; color: var(--ink);
}

.grecaptcha-badge { bottom: 94px !important; opacity: 0.85; transform: scale(0.85); transform-origin: bottom right; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
