/* ============================================================
   MUNKARI NAILS — LANDING PAGE
   Brand tokens + base styles
   ============================================================ */

:root {
  --munkari-rose: #DD6797;
  --munkari-cherry: #D9095C;
  --munkari-mauve: #8e6f77;
  --munkari-cream: #FBF7F6;
  --munkari-ink: #1A1013;
  --munkari-ink-soft: #4A3A40;
  --munkari-line: #EADFE1;
  --munkari-bg: #FFFFFF;
  --munkari-rose-50: #FFF0F6;
  --munkari-rose-100: #FFDCE9;

  --f-display: 'Inter', system-ui, sans-serif;
  --f-body: 'Poppins', system-ui, sans-serif;
  --f-script: 'Yellowtail', cursive;
  --f-mono: 'Montserrat', sans-serif;
   

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 44px;

  --shadow-soft: 0 2px 10px rgba(221,103,151,0.08), 0 12px 40px rgba(26,16,19,0.06);
  --shadow-deep: 0 4px 16px rgba(217,9,92,0.12), 0 24px 60px rgba(26,16,19,0.10);

  --pad-section: clamp(56px, 8vw, 120px);
  --pad-x: clamp(20px, 5vw, 64px);

  --maxw: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--munkari-ink);
  background: var(--munkari-bg);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
.h-display {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-wrap: balance;
}
.h-display .outline {
  -webkit-text-stroke: 1.5px currentColor;
  color: transparent;
}
.h-display .italic {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.script {
  font-family: var(--f-script);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--munkari-rose);
}
.mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--munkari-mauve);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}
section {
  padding-block: var(--pad-section);
  position: relative;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--munkari-rose);
  color: #fff;
  box-shadow: var(--shadow-deep);
}
.btn-primary:hover {
  background: var(--munkari-cherry);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--munkari-ink);
  border: 1px solid var(--munkari-line);
}
.btn-ghost:hover { border-color: var(--munkari-ink); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  width: min(var(--maxw), calc(100% - 32px));
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(234,223,225,0.8);
  border-radius: 999px;
  padding: 10px 14px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav .logo { height: 26px; display: block; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--munkari-ink-soft);
}
.nav-links a:hover { color: var(--munkari-rose); }
.nav-cta {
  padding: 10px 18px;
  font-size: 13px;
  background: var(--munkari-ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { background: var(--munkari-cherry); }
.nav-burger {
  display: none;
  transition: background .25s;
}

@media (max-width: 820px) {
  .nav {
    flex-wrap: wrap;
    position: relative;
  }
  .nav-links {
    display: none;
    width: 100%;
  }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0 0 18px 18px;
    padding: 20px;
    gap: 12px;
    margin-top: 8px;
    border: 1px solid rgba(234,223,225,0.8);
    border-top: none;
    z-index: 61;
  }
  .nav-links.mobile-open a {
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--munkari-ink);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .nav-links.mobile-open a:last-child {
    border-bottom: none;
  }
  .nav-burger {
    display: inline-flex;
    width: 40px; height: 40px;
    border-radius: 999px;
    background: var(--munkari-ink);
    color: #fff;
    align-items: center;
    justify-content: center;
  }
  .nav-burger.active {
    background: var(--munkari-cherry);
  }
}

/* ---------- Placeholder imagery (rose-gold gradient tiles) ---------- */
.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #FFE4EC 0%, #FFC4D6 35%, #E8A4B8 70%, #C27890 100%);
  isolation: isolate;
}
.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 70% 20%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(217,9,92,0.22), transparent 70%);
  mix-blend-mode: screen;
  z-index: 1;
}
.ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 18px,
    rgba(255,255,255,0.05) 18px 19px
  );
  z-index: 2;
}
.ph .ph-label {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  z-index: 3;
  mix-blend-mode: difference;
  filter: invert(1);
}

/* Variants */
.ph.v-cherry { background: linear-gradient(135deg, #FFDCE9 0%, #DD6797 50%, #8E2A4F 100%); }
.ph.v-nude   { background: linear-gradient(135deg, #FBF1EE 0%, #E8CFC8 50%, #B69088 100%); }
.ph.v-mauve  { background: linear-gradient(135deg, #F5E6E9 0%, #B89098 55%, #6B4852 100%); }
.ph.v-cream  { background: linear-gradient(135deg, #FFF8F3 0%, #F5D9D0 50%, #C9A299 100%); }
.ph.v-ink    { background: linear-gradient(135deg, #2D1A21 0%, #5A2A3A 55%, #DD6797 110%); }
.ph.v-pearl  { background: linear-gradient(135deg, #FEFCFB 0%, #F3D9DF 45%, #D492A6 100%); }

/* ---------- Marquee ---------- */
.marquee {
  display: flex;
  overflow: hidden;
  gap: 20px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  animation: marquee 40s linear infinite;
  flex-shrink: 0;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% - 20px)); }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: calc(var(--pad-section) + 20px);
  padding-bottom: calc(var(--pad-section) - 20px);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -10% -20% auto auto;
  width: 70vw;
  height: 70vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at 50% 50%, #FFDCE9 0%, #FFE8F0 40%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.9;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(56px, 9vw, 132px);
  margin: 18px 0 20px;
  color: var(--munkari-ink);
}
.hero h1 .line { display: block; }
.hero h1 .italic { color: var(--munkari-rose); }
.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  max-width: 52ch;
  color: var(--munkari-ink-soft);
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-cta-row .script {
  font-size: 26px;
  line-height: 1;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--munkari-line);
}
.hero-stat .n {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--munkari-ink);
}
.hero-stat .l {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--munkari-mauve);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-visual .ph { border-radius: var(--radius-lg); height: 100%; }

.hero-visual .badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  z-index: 4;
  box-shadow: var(--shadow-soft);
}
.hero-visual .badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #35C07A;
  box-shadow: 0 0 0 3px rgba(53,192,122,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(53,192,122,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(53,192,122,0.0); }
}

.hero-marquee {
  margin-top: 56px;
}
.hero-marquee .tile {
  width: 180px;
  height: 240px;
  border-radius: var(--radius);
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 1/1.15; }
  .hero-stats { gap: 24px; }
}

/* ---------- Section: Agendamiento ---------- */
.agenda {
  background: var(--munkari-cream);
  border-radius: var(--radius-xl);
  width: calc(100% - var(--pad-x) * 2);
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.agenda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.agenda h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin: 14px 0 18px;
}
.agenda p.lead {
  font-size: 17px;
  color: var(--munkari-ink-soft);
  margin-bottom: 28px;
  max-width: 46ch;
}
.agenda .steps {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}
.agenda .step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--munkari-line);
}
.agenda .step:last-child { border-bottom: 0; }
.agenda .step .n {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--munkari-rose);
  margin-top: 4px;
  min-width: 24px;
}
.agenda .step .t {
  font-weight: 500;
  font-size: 15px;
  color: var(--munkari-ink);
}
.agenda .step .d {
  font-size: 13px;
  color: var(--munkari-ink-soft);
  margin-top: 2px;
}

/* Phone mock */
.phone {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 340/700;
  border-radius: 44px;
  background: #0A0608;
  padding: 12px;
  box-shadow: 0 40px 80px -20px rgba(26,16,19,0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background: #EDE5E8;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone .notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #0A0608;
  border-radius: 999px;
  z-index: 5;
}
.chat-header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 40px 16px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--munkari-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--f-display);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.chat-who .name {
  font-size: 13px;
  font-weight: 600;
}
.chat-who .status {
  font-size: 10px;
  color: var(--munkari-mauve);
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-who .status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #35C07A;
}
.chat-body {
  flex: 1;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background:
    radial-gradient(circle at 20% 30%, #FFE8F0 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, #FFDCE9 0%, transparent 60%),
    #F5EDF0;
  overflow-y: auto;
}
.bubble {
  max-width: 76%;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 12px;
  line-height: 1.4;
  animation: bubble-in 0.5s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(6px) scale(.96); }
  to   { opacity: 1; transform: none; }
}
.bubble.in {
  align-self: flex-start;
  background: #fff;
  border-bottom-left-radius: 4px;
  color: var(--munkari-ink);
}
.bubble.out {
  align-self: flex-end;
  background: var(--munkari-rose);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.bubble .meta {
  font-size: 9px;
  opacity: 0.7;
  margin-top: 2px;
}
.bubble.card {
  padding: 0;
  background: #fff;
  overflow: hidden;
  width: 80%;
  max-width: 240px;
}
.bubble.card .ph { border-radius: 0; height: 80px; }
.bubble.card .txt {
  padding: 8px 12px 10px;
}
.bubble.card .txt .n { font-weight: 600; font-size: 12px; }
.bubble.card .txt .p { font-size: 11px; color: var(--munkari-rose); font-weight: 600; }
.bubble.card .txt .d { font-size: 10px; color: var(--munkari-mauve); }

.typing {
  align-self: flex-start;
  background: #fff;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  padding: 10px 12px;
  display: flex;
  gap: 4px;
}
.typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--munkari-mauve);
  animation: typing 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-input {
  padding: 10px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.chat-input .field {
  flex: 1;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--munkari-mauve);
  border: 1px solid rgba(0,0,0,0.05);
}
.chat-input .send {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--munkari-rose);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-float {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  z-index: 10;
}
.phone-float.a { top: 10%; left: -8%; }
.phone-float.b { bottom: 18%; right: -10%; }
.phone-float .ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--munkari-rose-50);
  color: var(--munkari-rose);
  display: flex; align-items: center; justify-content: center;
}
.phone-float .t { font-weight: 600; }
.phone-float .s { font-size: 10px; color: var(--munkari-mauve); }

@media (max-width: 820px) {
  .agenda-grid { grid-template-columns: 1fr; }
  .phone-float.a { left: 0; }
  .phone-float.b { right: 0; }
}

/* ---------- Section: Servicios ---------- */
.services .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
}
.services h2 {
  font-size: clamp(42px, 6vw, 80px);
  margin: 10px 0 0;
  max-width: 14ch;
}
.tabs {
  display: inline-flex;
  background: var(--munkari-cream);
  padding: 6px;
  border-radius: 999px;
  gap: 4px;
}
.tab {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--munkari-ink-soft);
  transition: all .25s;
}
.tab.active {
  background: var(--munkari-ink);
  color: #fff;
}

.service-rail {
  position: relative;
  margin: 0 calc(var(--pad-x) * -1);
  padding-inline: var(--pad-x);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.service-rail::-webkit-scrollbar { display: none; }
.service-track {
  display: flex;
  gap: 20px;
  padding-bottom: 8px;
}
.service-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--munkari-cream);
  border: 1px solid var(--munkari-line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}
.service-card .ph {
  aspect-ratio: 4/3;
  border-radius: 0;
}
.service-card .fabs {
  position: absolute;
  top: 14px; right: 14px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.service-card .fab {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--munkari-ink);
  transition: all .2s;
  border: 1px solid rgba(255,255,255,0.8);
}
.service-card .fab:hover {
  background: var(--munkari-rose);
  color: #fff;
  transform: scale(1.1);
}
.service-card .fab.active {
  background: var(--munkari-rose);
  color: #fff;
}
.service-card .tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 5;
  backdrop-filter: blur(6px);
}
.service-card .body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.service-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}
.service-card .desc {
  font-size: 13px;
  color: var(--munkari-ink-soft);
  line-height: 1.55;
  flex: 1;
}
.service-card .reveal {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--munkari-line);
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--munkari-ink);
  animation: reveal .3s cubic-bezier(.2,.8,.2,1);
}
.service-card .reveal .lbl {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--munkari-rose);
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 6px;
}
@keyframes reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}
.service-card .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--munkari-line);
}
.service-card .price {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--munkari-ink);
}
.service-card .price small {
  font-size: 10px;
  font-weight: 500;
  color: var(--munkari-mauve);
  margin-right: 2px;
}
.service-card .duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--munkari-mauve);
}

.rail-nav {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  justify-content: flex-end;
}
.rail-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--munkari-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  color: var(--munkari-ink);
}
.rail-btn:hover { background: var(--munkari-ink); color: #fff; border-color: var(--munkari-ink); }
.rail-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ---------- Section: Equipo ---------- */
.team {
  background:
    radial-gradient(ellipse at 10% 10%, rgba(255,220,233,0.5), transparent 40%),
    var(--munkari-cream);
}
.team h2 {
  font-size: clamp(42px, 6vw, 80px);
  margin: 10px 0 40px;
  max-width: 16ch;
}
.team-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--munkari-line);
  display: grid;
  grid-template-columns: 1fr;
}
.team-photo {
  aspect-ratio: 1/1;
  position: relative;
  background: linear-gradient(135deg, #FFE4EC 0%, #D492A6 100%);
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team-info {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-info .role {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--munkari-rose);
}
.team-info h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -0.03em;
  margin: 4px 0 8px;
  line-height: 1;
}
.rating {
  display: flex;
  gap: 2px;
  color: var(--munkari-rose);
}
.rating svg { width: 14px; height: 14px; }
.team-info .quote {
  font-family: var(--f-script);
  font-size: 22px;
  color: var(--munkari-ink);
  line-height: 1.3;
  padding: 18px 0;
  border-top: 1px solid var(--munkari-line);
  border-bottom: 1px solid var(--munkari-line);
}
.team-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background: var(--munkari-rose-50);
  color: var(--munkari-rose);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
  border: 1px solid transparent;
}
.chip:hover, .chip.active {
  background: var(--munkari-rose);
  color: #fff;
}
.chip svg { width: 13px; height: 13px; }
.team-reveal {
  padding: 14px 16px;
  background: var(--munkari-cream);
  border-radius: 12px;
  font-size: 13px;
  color: var(--munkari-ink);
  line-height: 1.55;
  animation: reveal .3s;
}
.team-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 10px;
  margin-top: 4px;
  padding: 11px 12px 11px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--munkari-ink);
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background .3s cubic-bezier(.2,.8,.2,1), transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.team-btn:hover {
  background: var(--munkari-rose);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}
.team-btn-ico {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), background .3s;
}
.team-btn:hover .team-btn-ico {
  transform: translateX(4px);
  background: rgba(255,255,255,0.28);
}

.team-side h2 { font-size: clamp(32px, 4vw, 54px); }
.team-side p {
  font-size: 16px;
  color: var(--munkari-ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 42ch;
}

@media (max-width: 820px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ---------- Section: Autoridad ---------- */
.authority {
  padding-top: calc(var(--pad-section) + 20px);
}
.auth-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 72px;
  align-items: end;
}
.auth-header h2 {
  font-size: clamp(48px, 7vw, 104px);
  margin: 12px 0 0;
}
.auth-header p {
  font-size: 17px;
  color: var(--munkari-ink-soft);
  line-height: 1.6;
  max-width: 48ch;
}
.auth-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.auth-block {
  background: var(--munkari-cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  min-height: 320px;
  transition: all .3s;
}
.auth-block:hover {
  background: var(--munkari-ink);
  color: var(--munkari-cream);
}
.auth-block:hover .auth-num { color: var(--munkari-rose); }
.auth-block:hover .auth-desc { color: rgba(255,255,255,0.75); }
.auth-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--munkari-rose);
  margin-bottom: 40px;
}
.auth-block h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  flex: 1;
}
.auth-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--munkari-ink-soft);
  transition: color .3s;
}

.auth-about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  padding-top: 72px;
  border-top: 1px solid var(--munkari-line);
}
.auth-logo-mark {
  padding: 32px;
  background: var(--munkari-cream);
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 100px;
}
.auth-logo-mark img { width: 80%; }
.auth-logo-mark .mono { color: var(--munkari-mauve); }
.auth-text h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 24px 0 18px;
}
.auth-text h3:first-child { margin-top: 0; }
.auth-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--munkari-ink-soft);
  margin-bottom: 20px;
}
.auth-text .script {
  font-size: 32px;
  display: block;
  margin: 24px 0 12px;
}

@media (max-width: 820px) {
  .auth-header { grid-template-columns: 1fr; gap: 24px; }
  .auth-blocks { grid-template-columns: 1fr; }
  .auth-about { grid-template-columns: 1fr; gap: 32px; }
  .auth-logo-mark { position: static; aspect-ratio: auto; }
}

/* ---------- Cejas (dentro de Tu experiencia) ---------- */
.cejas-header {
  border-top: 1px solid var(--munkari-line);
  padding-top: 72px;
}
.cejas-blocks {
  grid-template-columns: repeat(4, 1fr);
}
.cejas-blocks .auth-block { min-height: 280px; padding: 28px; }
.cejas-blocks .auth-block h3 { font-size: 24px; }

@media (max-width: 980px) {
  .cejas-blocks { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .cejas-blocks { grid-template-columns: 1fr; }
}

/* ---------- Location + FAQ ---------- */
.loc-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.loc h2, .faq h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  margin: 10px 0 28px;
}
.map-wrap {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--munkari-cream);
  margin-bottom: 24px;
  border: 1px solid var(--munkari-line);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.loc-details {
  display: grid;
  gap: 14px;
}
.loc-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--munkari-line);
}
.loc-row .ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--munkari-rose-50);
  color: var(--munkari-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.loc-row .l {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--munkari-mauve);
}
.loc-row .v { font-size: 15px; font-weight: 500; margin-top: 2px; }
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--munkari-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.social-row a:hover {
  background: var(--munkari-ink);
  color: #fff;
  border-color: var(--munkari-ink);
}

.faq-list { display: grid; }
.faq-item {
  border-bottom: 1px solid var(--munkari-line);
}
.faq-item:first-child { border-top: 1px solid var(--munkari-line); }
.faq-q {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--munkari-ink);
  transition: color .2s;
}
.faq-q:hover { color: var(--munkari-rose); }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--munkari-line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.faq-item.open .faq-toggle {
  background: var(--munkari-rose);
  color: #fff;
  border-color: var(--munkari-rose);
  transform: rotate(45deg);
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s cubic-bezier(.2,.8,.2,1);
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a-inner {
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--munkari-ink-soft);
  max-width: 56ch;
}

@media (max-width: 820px) {
  .loc-faq { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--munkari-ink);
  color: var(--munkari-cream);
  padding-block: 80px 28px;
  margin-top: 60px;
}
.footer .wrap { display: grid; gap: 60px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-wm {
  width: 100%;
  max-width: 420px;
  opacity: 0.9;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 20px;
  max-width: 34ch;
}
.footer h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--munkari-rose);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color .2s;
}
.footer-col a:hover { color: var(--munkari-rose); }
.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-bot .powered {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bot .powered .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--munkari-rose);
  animation: pulse-d 2s infinite;
}
@keyframes pulse-d {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bot { flex-direction: column; gap: 14px; text-align: center; }
}

/* ---------- Big wordmark outro ---------- */
.outro {
  padding: 80px 0 40px;
  text-align: center;
  overflow: hidden;
}
.outro .wm {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(100px, 22vw, 340px);
  letter-spacing: -0.06em;
  line-height: 0.9;
  background: linear-gradient(180deg, var(--munkari-rose) 0%, var(--munkari-cherry) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.outro .wm .ital { font-style: italic; font-weight: 400; }

/* ---------- Floating chat button ---------- */
.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  background: var(--munkari-rose);
  color: #fff;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all .25s;
}
.chat-fab:hover { transform: translateY(-3px); background: var(--munkari-cherry); }
.chat-fab .ico {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-fab .dot {
  position: absolute;
  top: -2px; right: -2px;
  width: 14px; height: 14px;
  background: #35C07A;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* ---------- Tweaks panel ---------- */
.tweaks-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 90;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--munkari-line);
  width: 280px;
  display: none;
}
.tweaks-panel.show { display: block; }
.tweaks-panel h5 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--munkari-mauve);
  margin: 0 0 14px;
  font-weight: 500;
}
.tweaks-panel h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.tweaks-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.tweaks-row label {
  font-size: 12px;
  font-weight: 500;
  color: var(--munkari-ink);
}
.swatch-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--munkari-line);
  cursor: pointer;
  transition: all .2s;
}
.swatch:hover { transform: scale(1.1); }
.swatch.active { box-shadow: 0 0 0 2px var(--munkari-ink); }
.variant-row {
  display: flex;
  gap: 6px;
  background: var(--munkari-cream);
  padding: 4px;
  border-radius: 10px;
}
.variant-btn {
  flex: 1;
  padding: 8px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 8px;
  color: var(--munkari-ink-soft);
}
.variant-btn.active { background: #fff; color: var(--munkari-ink); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }

/* ---------- Editorial hero variant ---------- */
body.v-editorial .hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255,220,233,0.6), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(217,9,92,0.15), transparent 60%);
}
body.v-editorial .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
}
body.v-editorial .hero h1 {
  font-size: clamp(64px, 14vw, 200px);
  margin-inline: auto;
}
body.v-editorial .hero-sub {
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 32px;
}
body.v-editorial .hero-cta-row {
  justify-content: center;
}
body.v-editorial .hero-stats {
  justify-content: center;
  max-width: 720px;
  margin-inline: auto;
}
body.v-editorial .hero-visual {
  display: none;
}
body.v-editorial .hero-marquee { margin-top: 64px; }

/* ---------- Decorative elements ---------- */
.deco-diamond {
  width: 10px; height: 10px;
  background: var(--munkari-rose);
  transform: rotate(45deg);
  display: inline-block;
}
.deco-chevron {
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 14px solid var(--munkari-rose);
  display: inline-block;
}
