/* ============================================================================
   Nails by Mery — sistema visual "Pastel Soft" (a medida, desde cero)
   Paleta del cliente: primario #d88299. Fondo/texto del estilo. Secundario
   durazno derivado. Contraste AA verificado. Mobile-first.
   ============================================================================ */

:root {
  /* Superficies */
  --bg: #fdf6f0;
  --bg-soft: #fbeae4;
  --bg-peach: #f7ddd3;
  --card: #fffaf6;

  /* Tinta (texto) */
  --ink: #4a2338;         /* cuerpo — AA fuerte sobre crema */
  --ink-deep: #3f1f30;    /* títulos / texto sobre primario */
  --ink-soft: #7d5768;    /* labels apagados — AA 5.6 sobre crema */

  /* Paleta de marca */
  --rose: #d88299;        /* PRIMARIO del cliente — rellenos, deco, fondo del CTA */
  --rose-2: #e6a0b1;      /* rosa aclarado */
  --link: #b23f62;        /* rosa profundo — links/CTA-texto sobre claro (AA 5.1) */
  --peach: #e9b8a3;       /* SECUNDARIO — blobs, deco, fondos, inicio del gradiente CTA */
  --peach-soft: #f4dcd0;  /* paneles/tinte suave */
  --accent: #f3e2d6;      /* crema-durazno */
  --petal-a: #f3c9d3;     /* pétalo rosa */
  --petal-b: #f2d3c2;     /* pétalo durazno */

  /* Sombras difusas elevadas (tinte cálido, no gris) */
  --shadow: 0 8px 24px rgba(93, 46, 70, .10), 0 2px 6px rgba(93, 46, 70, .06);
  --shadow-lg: 0 18px 44px rgba(93, 46, 70, .14);
  --shadow-rose: 0 12px 30px rgba(216, 130, 153, .42), 0 3px 8px rgba(184, 90, 120, .18);

  /* Radios muy generosos (18–56px) */
  --r-sm: 14px;
  --r: 22px;
  --r-lg: 34px;
  --r-xl: 46px;

  /* Tipografía */
  --f-display: 'Quicksand', system-ui, sans-serif;
  --f-body: 'Nunito', system-ui, sans-serif;
  --f-mono: 'Space Mono', ui-monospace, monospace;

  --wrap: 74rem;
}

/* --- Base ----------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* Clipeamos el desborde de los pétalos decorativos ACÁ (no en html/body: eso
   rompía el scroll y el sticky). main crece con el contenido → no captura scroll. */
main { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
  /* Fondo CONTINUO en toda la página (ADN): gradiente pastel suave, fijo */
  background: linear-gradient(158deg, #fdf6f0 0%, #fbeae4 46%, #f7ddd3 100%);
  background-attachment: fixed;
}
@media (max-width: 640px) { body { background-attachment: scroll; } }

img { max-width: 100%; display: block; }
a { color: var(--link); }
::selection { background: var(--rose); color: #fff; }

:focus-visible { outline: 3px solid var(--link); outline-offset: 3px; border-radius: 6px; }

/* --- Layout --------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
.section { position: relative; padding-block: clamp(3.2rem, 7vw, 5.2rem); }
.section-narrow { max-width: 60rem; margin-inline: auto; }
.center { text-align: center; }

/* --- Tipografía ----------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; color: var(--ink-deep); margin: 0; }
/* El widget de turnos usa .font-display para sus títulos */
.font-display { font-family: var(--f-display); }

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-mono); font-weight: 700; font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--link);
  margin: 0 0 .9rem;
}
.kicker::before { content: ""; width: 1.6rem; height: 2px; border-radius: 2px; background: var(--rose); }
.center .kicker { justify-content: center; }

/* Títulos compactos y PESADOS, tracking apretado (ADN) */
.h-hero { font-size: clamp(2.55rem, 8vw, 3.6rem); line-height: 1.02; letter-spacing: -.025em; }
.h-sec  { font-size: clamp(1.95rem, 4.5vw, 2.6rem); line-height: 1.08; letter-spacing: -.02em; }
.lead   { font-size: clamp(1.05rem, 2.2vw, 1.2rem); color: var(--ink); opacity: .9; }
.muted  { color: var(--ink-soft); }
.heart  { color: var(--rose); }

/* --- Botones (píldora, gradiente secundario→primario, sombra DEL color) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--f-body); font-weight: 800; font-size: 1rem; line-height: 1;
  border: 0; border-radius: 999px; padding: 1rem 1.75rem; cursor: pointer;
  text-decoration: none; min-height: 48px;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), box-shadow .28s ease, filter .28s ease;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-primary { background: linear-gradient(135deg, var(--peach) 0%, var(--rose) 100%); color: var(--ink-deep); box-shadow: var(--shadow-rose); }
.btn-primary:hover { transform: translateY(-3px) scale(1.015); box-shadow: 0 18px 40px rgba(216, 130, 153, .52); filter: saturate(1.05); }
.btn-primary:active { transform: translateY(-1px) scale(.99); }
.btn-ghost { background: var(--card); color: var(--link); box-shadow: var(--shadow); }
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-wa { background: #075e54; color: #fff; box-shadow: 0 10px 26px rgba(7, 94, 84, .3); }
.btn-wa:hover { transform: translateY(-3px) scale(1.015); box-shadow: 0 16px 34px rgba(7, 94, 84, .42); }
.btn-lg { padding: 1.15rem 2.1rem; font-size: 1.06rem; }

/* --- Cards (fondo elevado, sombra suave, SIN bordes) ---------------------- */
.card {
  background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow);
  padding: 1.6rem; transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease;
}
.card-hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* --- Decoración: pétalos + textura de puntos (signatures del estilo) ------- */
.petal {
  position: absolute; z-index: -1; pointer-events: none;
  border-radius: 999px 999px 999px 14px;
  filter: blur(.4px); opacity: .55;
  background: linear-gradient(150deg, var(--petal-a), var(--petal-b));
}
.petal-2 { background: linear-gradient(150deg, var(--peach), var(--rose-2)); }
.dots-layer {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(var(--peach) 1.5px, transparent 1.6px);
  background-size: 22px 22px; opacity: .32;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 55%, transparent 100%);
          mask-image: radial-gradient(ellipse at center, #000 55%, transparent 100%);
}

/* --- Header / Nav --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 246, 240, .82);
  backdrop-filter: saturate(1.3) blur(12px);
  -webkit-backdrop-filter: saturate(1.3) blur(12px);
  box-shadow: 0 1px 0 rgba(184, 124, 109, .16);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink-deep); font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; }
.brand img { width: 38px; height: 38px; border-radius: 12px; box-shadow: var(--shadow); }
.nav-links { display: none; align-items: center; gap: 1.6rem; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 700; font-size: .95rem; position: relative; padding: .2rem 0; transition: color .2s; }
.nav-links a:hover { color: var(--link); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0; background: var(--rose); border-radius: 2px; transition: width .25s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }
.nav-burger { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border: 0; border-radius: 14px; background: var(--card); color: var(--ink-deep); box-shadow: var(--shadow); cursor: pointer; }
.nav-burger svg { width: 22px; height: 22px; }

/* Menú mobile desplegable */
.nav-mobile { display: none; padding: .5rem 1.25rem 1.25rem; }
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: .85rem .4rem; color: var(--ink); text-decoration: none; font-weight: 700; border-bottom: 1px solid rgba(184, 124, 109, .16); }
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile .btn { margin-top: 1rem; width: 100%; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
  .nav-mobile { display: none !important; }
}

/* --- Hero (centrado tipográfico, fondo limpio) ---------------------------- */
.hero { position: relative; padding-top: clamp(2rem, 5vw, 3.4rem); padding-bottom: clamp(2.4rem, 6vw, 4rem); }
.hero-inner { max-width: 52rem; margin-inline: auto; text-align: center; }
/* Sello de marca: corazón de hilos con el logo, protagonista del hero */
.hero-top { display: grid; gap: clamp(1.4rem, 3.5vw, 3rem); align-items: center; }
.hero-art { position: relative; display: grid; place-items: center; }
.hero-art-glow {
  position: absolute; width: min(24rem, 94%); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(243, 201, 211, .6), rgba(242, 211, 194, .28) 62%, transparent);
  filter: blur(4px);
}
.hero-heart { position: relative; width: clamp(190px, 26vw, 340px); height: auto; filter: drop-shadow(0 22px 34px rgba(216, 130, 153, .38)); }
@media (min-width: 900px) {
  .hero-top { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
  .hero-top .hero-art { order: 2; }
  .hero-top .hero-inner { margin-inline: 0; text-align: left; }
  .hero-top .hero-lead { margin-inline: 0; }
  .hero-top .hero-cta { justify-content: flex-start; }
}
.hero .h-hero { margin-bottom: 1rem; }
.hero-lead { max-width: 34rem; margin: 0 auto 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
/* Collage polaroid: 3 trabajos reales en marcos crema, laterales inclinados */
.hero-gallery {
  display: grid; grid-template-columns: 1fr 1.35fr 1fr; align-items: center;
  gap: clamp(.7rem, 2vw, 1.3rem); max-width: 56rem;
  margin: clamp(2.2rem, 5vw, 3.4rem) auto 0;
}
.hg-item {
  position: relative; margin: 0; background: var(--card);
  padding: clamp(.35rem, .9vw, .6rem); border-radius: var(--r-xl);
  box-shadow: 0 36px 72px -30px rgba(184, 90, 120, .5), 0 12px 28px rgba(93, 46, 70, .1);
}
.hg-item::after { content: ""; position: absolute; inset: 0; border-radius: var(--r-xl); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55); pointer-events: none; }
.hg-item img { width: 100%; object-fit: cover; border-radius: calc(var(--r-xl) - .5rem); display: block; }
.hg-main { z-index: 1; }
.hg-main img { aspect-ratio: 4 / 3.4; }
.hg-side img { aspect-ratio: 3 / 3.7; }
.hg-a { transform: rotate(-3.5deg) translateY(.6rem); }
.hg-b { transform: rotate(3.5deg) translateY(.6rem); }
.hero-badge {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(255, 250, 246, .92); color: var(--ink-deep);
  border-radius: 999px; padding: .5rem 1rem; font-weight: 800; font-size: .85rem;
  box-shadow: var(--shadow); display: inline-flex; align-items: center; gap: .45rem;
}
.hero-badge .dot { width: .55rem; height: .55rem; border-radius: 50%; background: #2f8f6b; box-shadow: 0 0 0 4px rgba(47, 143, 107, .18); }

/* Franja de diferenciales bajo el hero */
.perks { display: grid; grid-template-columns: 1fr; gap: .9rem; margin-top: clamp(2rem, 5vw, 3rem); }
.perk { display: flex; align-items: flex-start; gap: .85rem; background: var(--card); border-radius: var(--r); padding: 1.1rem 1.2rem; box-shadow: var(--shadow); }
.perk-ic { flex: none; width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(140deg, var(--peach), var(--rose-2)); color: var(--ink-deep); }
.perk-ic svg { width: 22px; height: 22px; }
.perk b { font-family: var(--f-display); font-size: 1.02rem; color: var(--ink-deep); }
.perk p { margin: .15rem 0 0; font-size: .92rem; color: var(--ink-soft); }
@media (min-width: 760px) { .perks { grid-template-columns: repeat(3, 1fr); } }
/* Mobile: subimos el visual del hero para que tenga peso en la 1ª pantalla */
@media (max-width: 640px) {
  .hero { padding-top: 1rem; }
  .hero-heart { width: 175px; }
  .hero-art-glow { width: 15rem; }
  .hero-lead { margin-bottom: 1.3rem; }
  .hero-cta { gap: .6rem; }
  .hero-gallery { margin-top: 1.4rem; gap: .5rem; grid-template-columns: 1fr 1.55fr 1fr; }
  .hg-main img { aspect-ratio: 3 / 3.4; }
  .hg-side img { aspect-ratio: 3 / 4.6; }
  .hg-a { transform: rotate(-3deg) translateY(.4rem); }
  .hg-b { transform: rotate(3deg) translateY(.4rem); }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: .45rem; padding: .32rem .65rem; font-size: .68rem; white-space: nowrap; }
}

/* --- About (Nosotros) ----------------------------------------------------- */
.about-narrative { max-width: 44rem; margin-inline: auto; text-align: center; }
.about-narrative .kicker { justify-content: center; }
.about-narrative .h-sec { margin-bottom: 1.2rem; }
.about-narrative p + p { margin-top: 1rem; }
.about-sign { margin-top: 1.6rem; font-family: var(--f-mono); font-size: .8rem; letter-spacing: .12em; color: var(--ink-soft); }

/* --- Servicios ------------------------------------------------------------ */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 620px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
.svc {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .5s ease; }
.svc:hover .svc-photo { transform: scale(1.04); }
.svc-body { display: flex; flex-direction: column; gap: .5rem; padding: 1.25rem 1.4rem 1.4rem; flex: 1; }
.svc-name { font-size: 1.24rem; letter-spacing: -.01em; }
.svc-desc { color: var(--ink-soft); font-size: .93rem; flex: 1; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .6rem; }
.svc-price { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; color: var(--link); }
.svc-price small { display: block; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 400; }
.svc-book { font-weight: 800; font-size: .9rem; color: var(--link); text-decoration: none; white-space: nowrap; display: inline-flex; align-items: center; gap: .3rem; }
.svc-book:hover { text-decoration: underline; }

/* --- Galería (grilla uniforme, tiles SVG on-brand) ------------------------ */
.gal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; max-width: 58rem; margin-inline: auto; }
@media (min-width: 720px) { .gal-grid { gap: 1.2rem; } }
.gal-item {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.gal-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gal-item svg, .gal-item img { width: 100%; height: 100%; display: block; object-fit: cover; }
.gal-cap {
  position: absolute; left: .7rem; bottom: .7rem; z-index: 2;
  background: rgba(255, 250, 246, .9); color: var(--ink-deep);
  font-family: var(--f-mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .32rem .6rem; border-radius: 999px; box-shadow: var(--shadow);
}

/* --- Testimonios ---------------------------------------------------------- */
.tst-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 760px) { .tst-grid { grid-template-columns: repeat(3, 1fr); } }
.tst { background: var(--card); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow); }
.tst-stars { color: var(--rose); letter-spacing: .1em; font-size: 1rem; }
.tst-quote { margin: .6rem 0 1.1rem; font-size: 1.02rem; }
.tst-who { display: flex; align-items: center; gap: .7rem; }
.tst-av { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; line-height: 1; color: var(--ink-deep); background: linear-gradient(140deg, var(--peach), var(--rose-2)); }
.tst-who b { font-family: var(--f-display); color: var(--ink-deep); }
/* Solo el rol (span dentro del div), NO el avatar (span directo de .tst-who) */
.tst-who div span { display: block; font-size: .8rem; color: var(--ink-soft); }

/* --- FAQ (acordeón animado) ----------------------------------------------- */
.faq { max-width: 44rem; margin-inline: auto; display: grid; gap: .75rem; }
.faq-item { background: var(--card); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left; border: 0; background: transparent; cursor: pointer; padding: 1.1rem 1.3rem; font-family: var(--f-display); font-weight: 700; font-size: 1.02rem; color: var(--ink-deep); }
.faq-q .chev { flex: none; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--peach-soft); color: var(--link); transition: transform .3s ease; }
.faq-q .chev svg { width: 15px; height: 15px; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { margin: 0; padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }

/* --- Contacto ------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-panel { background: var(--card); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow); }
.contact-card-title { font-family: var(--f-display); font-size: 1.1rem; margin: 0 0 .6rem; color: var(--ink-deep); }
.contact-card-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.contact-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--link); font-weight: 700; text-decoration: none; }
.contact-link:hover { text-decoration: underline; }
.horarios-block { margin-top: 1.3rem; }
.horarios-titulo { font-family: var(--f-display); font-size: 1.1rem; margin: 0 0 .5rem; color: var(--ink-deep); }
.horarios-list { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: .3rem 1rem; }
.horario-dia { font-weight: 700; color: var(--ink); }
.horario-rango { color: var(--ink-soft); text-align: right; font-variant-numeric: tabular-nums; }
.map-embed { border: 0; width: 100%; height: 100%; min-height: 260px; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 260px; }

/* --- Footer --------------------------------------------------------------- */
.site-footer { position: relative; margin-top: clamp(3rem, 6vw, 4.5rem); background: #3f1f30; color: #f6e4df; padding-bottom: 5rem; }
/* Deja aire abajo-derecha para que el WhatsApp flotante no tape el crédito */
.footer-bottom { padding-right: 5rem; }
.site-footer .dots-layer { opacity: .12; -webkit-mask-image: none; mask-image: none; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-block: clamp(2.4rem, 5vw, 3.4rem); }
@media (min-width: 780px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand img { width: 46px; height: 46px; border-radius: 13px; }
.footer-brand p { color: #e7c9c2; max-width: 24rem; margin: .9rem 0 0; font-size: .95rem; }
.footer-col h4 { font-family: var(--f-display); color: #fff; font-size: 1rem; margin: 0 0 .8rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-col a, .footer-col li { color: #e7c9c2; text-decoration: none; font-size: .93rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding-block: 1.3rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-bottom small { color: #d9b6ae; font-size: .82rem; }
/* Redes bajo la marca (footer): pills con glifo — estructura del builder intacta */
.footer-redes { list-style: none; margin: 1.1rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.footer-redes .red-link {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: 999px; min-height: 40px;
  background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(231, 201, 194, .35);
  color: #f6e4df; font-weight: 700; font-size: .9rem; text-decoration: none;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.footer-redes .red-link:hover { background: rgba(216, 130, 153, .28); box-shadow: inset 0 0 0 1px rgba(230, 160, 177, .6); transform: translateY(-2px); color: #fff; text-decoration: none; }
.footer-redes .red-link::before {
  content: ""; width: 17px; height: 17px; flex: none; background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4.2'/%3E%3Ccircle cx='17.3' cy='6.7' r='1.3' fill='%23000' stroke='none'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4.2'/%3E%3Ccircle cx='17.3' cy='6.7' r='1.3' fill='%23000' stroke='none'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Crédito de agencia: el PNG es BLANCO → fondo oscuro lo usa tal cual */
.agency-credit img { height: 26px; width: auto; opacity: .9; transition: opacity .2s; }
.agency-credit:hover img { opacity: 1; }


/* --- WhatsApp flotante (pulso + logo oficial) ----------------------------- */
.wa-fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 10px 28px rgba(7, 94, 84, .4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-fab svg { width: 32px; height: 32px; }
.wa-fab::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25d366; z-index: -1; animation: wa-pulse 2.6s ease-out infinite; }
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(7, 94, 84, .5); }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .55; } 70% { transform: scale(1.5); opacity: 0; } 100% { opacity: 0; } }
@media (min-width: 900px) { .wa-fab { width: 64px; height: 64px; right: 1.6rem; bottom: 1.6rem; } .wa-fab svg { width: 34px; height: 34px; } }

/* --- Reservas: theming del widget de turnos ------------------------------- */
#reservar { --turnos-accent: var(--link); --turnos-accent-2: #2f8f6b; --turnos-ink: #5d2e46; --turnos-muted: var(--peach-soft); --turnos-surface: var(--card); }
/* Celebración del turno confirmado (pop del check + detalle que sube) */
@keyframes turnos-pop { 0% { transform: scale(.3); opacity: 0; } 70% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
@keyframes turnos-rise { from { transform: translateY(10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.turnos-pop { animation: turnos-pop .55s cubic-bezier(.34, 1.56, .64, 1) both; }
.turnos-rise { animation: turnos-rise .45s ease-out .25s both; }
@media (prefers-reduced-motion: reduce) { .turnos-pop, .turnos-rise { animation: none !important; } }
/* Ablandamos los bordes plenos del widget al lenguaje "sin bordes duros" */
#reservar [class*="border-"] { border-color: rgba(184, 124, 109, .28) !important; }
.reservar-alt { margin-top: 1.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.2rem; justify-content: center; background: var(--card); border-radius: var(--r-lg); padding: 1.2rem 1.4rem; box-shadow: var(--shadow); }
.reservar-alt p { margin: 0; font-weight: 700; color: var(--ink-deep); }

/* --- Tienda (widget shop) re-estilado ------------------------------------- */
.catalog-section { position: relative; padding-block: clamp(3.2rem, 7vw, 5.2rem); }
.catalog-title { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.95rem, 4.5vw, 2.6rem); letter-spacing: -.02em; color: var(--ink-deep); text-align: center; margin: 0 0 .5rem; }
.catalog-group { max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; margin-top: 2rem; }
.catalog-group-title { font-family: var(--f-display); font-size: 1.2rem; color: var(--ink-deep); margin: 0 0 1rem; }
.catalog-items { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 620px) { .catalog-items { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) { .catalog-items { grid-template-columns: repeat(3, 1fr); } }
.catalog-item { display: flex; flex-direction: column; background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.catalog-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.catalog-item-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.catalog-item-body { padding: 1.1rem 1.2rem .4rem; flex: 1; }
.catalog-item-name { font-family: var(--f-display); font-size: 1.08rem; color: var(--ink-deep); margin: 0 0 .3rem; }
.catalog-item-desc { color: var(--ink-soft); font-size: .9rem; margin: 0; }
.catalog-item-price { font-family: var(--f-display); font-weight: 700; font-size: 1.2rem; color: var(--link); padding: 0 1.2rem 1.2rem; margin: .4rem 0 0; }
.sms-shop-add { align-self: flex-start; margin: 0 1.2rem 1.2rem !important; border: 0 !important; border-radius: 999px !important; background: linear-gradient(135deg, var(--peach), var(--rose)) !important; color: var(--ink-deep) !important; font-weight: 800 !important; padding: .6rem 1.1rem !important; box-shadow: var(--shadow-rose) !important; cursor: pointer; }

/* --- Reveal on-scroll (sutil, una sola vez) ------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* Drift lentísimo de pétalos (ambiental) */
@keyframes drift { 0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); } 50% { transform: translateY(-16px) rotate(calc(var(--rot, 0deg) + 6deg)); } }
.float { animation: drift 14s ease-in-out infinite; }
.float-2 { animation: drift 19s ease-in-out infinite; }

/* --- prefers-reduced-motion: todo visible, sin movimiento ----------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .float, .float-2, .wa-fab::before { animation: none !important; }
  * { transition-duration: .01ms !important; }
}
