/* ═══════════════════════════════════════════════════════════
   Inkredible Moments — inkredible.maynezcg.com
   Paleta tomada del logotipo: coral, rosa, amarillo, turquesa,
   morado y azul marino sobre crema.
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy:   #223A67;
  --ink:    #2B3550;
  --orange: #FF8A3D;
  --pink:   #F2427B;
  --yellow: #FFC933;
  --teal:   #17B8A6;
  --blue:   #2E86E0;
  --purple: #8A4FD3;
  --green:  #5CBB5A;
  --cream:  #FFF7EE;
  --white:  #FFFFFF;
  --wa:     #23B33A;
  --shadow: 0 10px 30px rgba(34, 58, 103, .12);
  --radius: 26px;
  --font-display: "Baloo 2", "Nunito", sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --bounce: cubic-bezier(.34, 1.56, .64, 1);
}

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }

/* Que el header sticky no tape los títulos al navegar por anclas */
[id] { scroll-margin-top: 84px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.container-narrow { width: min(820px, 92%); }

/* Colores utilitarios (wordmark y kickers) */
.c-navy { color: var(--navy); }   .c-orange { color: var(--orange); }
.c-yellow { color: var(--yellow);} .c-pink { color: var(--pink); }
.c-purple { color: var(--purple);} .c-teal { color: var(--teal); }
.c-blue { color: var(--blue); }    .c-green { color: var(--green); }
.c-cream { color: var(--cream); }  .c-lilac { color: #B79AE8; }
.c-sky { color: #7EB8F2; }

/* ── Subrayado garabato ─────────────────────────────── */
.squiggle {
  position: relative;
  white-space: nowrap;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 20 2, 35 11, 55 6 S 95 2, 118 7' fill='none' stroke='%23FFC933' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% .34em;
  padding-bottom: .18em;
}
.sq-pink   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 20 2, 35 11, 55 6 S 95 2, 118 7' fill='none' stroke='%23F2427B' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E"); }
.sq-teal   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 20 2, 35 11, 55 6 S 95 2, 118 7' fill='none' stroke='%2317B8A6' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E"); }
.sq-orange { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 20 2, 35 11, 55 6 S 95 2, 118 7' fill='none' stroke='%23FF8A3D' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E"); }
.sq-purple { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 20 2, 35 11, 55 6 S 95 2, 118 7' fill='none' stroke='%238A4FD3' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E"); }
.sq-yellow { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 20 2, 35 11, 55 6 S 95 2, 118 7' fill='none' stroke='%23FFC933' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E"); }

/* ── Botones ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: .72em 1.5em;
  border-radius: 999px;
  text-decoration: none;
  border: 3px solid transparent;
  transition: transform .25s var(--bounce), box-shadow .25s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: var(--shadow); }
.btn .ico { width: 1.25em; height: 1.25em; fill: currentColor; flex: none; }
.btn-lg { font-size: 1.12rem; padding: .8em 1.7em; }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 6px 0 #17862a; }
.btn-wa:hover { box-shadow: 0 8px 0 #17862a, var(--shadow); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ig { background: linear-gradient(45deg, #F58529, #DD2A7B 55%, #8134AF); color: #fff; }
.btn-fb { background: #1877F2; color: #fff; }

/* ── Header ─────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 238, .92);
  backdrop-filter: blur(10px);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(34, 58, 103, .12); }
.header-inner {
  width: min(1180px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: .65rem 0;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: .4rem;
  line-height: 1;
  white-space: nowrap;
  flex: none;
}
.wm-ink b { font-weight: 800; display: inline-block; transition: transform .3s var(--bounce); }
.wordmark:hover .wm-ink b { transform: translateY(-3px); }
.wordmark:hover .wm-ink b:nth-child(2n) { transform: translateY(2px) rotate(6deg); }
.wm-moments {
  color: var(--navy);
  font-weight: 700;
  font-size: .78em;
  letter-spacing: .06em;
}
.nav { display: flex; gap: 1.3rem; margin-left: auto; }
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 3px;
  border-radius: 2px;
  background: var(--pink);
  transition: right .25s;
}
.nav a:hover::after { right: 0; }
.btn-header { font-size: .92rem; padding: .55em 1.2em; }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.menu-btn span {
  width: 26px; height: 3px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .3s, opacity .3s;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: .4rem 1.2rem 1.1rem;
  gap: .15rem;
}
.mobile-menu a {
  padding: .6rem .4rem;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 2px dashed rgba(34, 58, 103, .12);
}
.mobile-menu.open { display: flex; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--cream);
  padding: 3.5rem 0 5.5rem;
  overflow: hidden;
}
.hero-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: .95rem;
  color: var(--pink);
  background: #fff;
  border: 2px dashed var(--pink);
  border-radius: 999px;
  padding: .3em 1em;
  transform: rotate(-1.5deg);
  margin-bottom: 1.1rem;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero-sub { font-size: 1.13rem; max-width: 34em; margin-bottom: 1.6rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1rem; }
.hero-note { font-size: .95rem; color: #5a6480; }
.hero-note a { color: var(--navy); font-weight: 800; text-decoration: none; }

.hero-media { position: relative; }
.hero-blob {
  border-radius: 58% 42% 55% 45% / 50% 56% 44% 50%;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
  animation: blob-morph 14s ease-in-out infinite alternate;
  aspect-ratio: 5 / 4;
}
.hero-blob img { width: 100%; height: 100%; object-fit: cover; }
@keyframes blob-morph {
  0%   { border-radius: 58% 42% 55% 45% / 50% 56% 44% 50%; }
  50%  { border-radius: 45% 55% 48% 52% / 58% 44% 56% 42%; }
  100% { border-radius: 52% 48% 60% 40% / 45% 55% 47% 53%; }
}

.sticker {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  background: var(--yellow);
  color: var(--navy);
  padding: .45em 1em;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(34, 58, 103, .2);
  animation: bob 3.4s ease-in-out infinite;
}
.sticker-1 { top: -14px; right: 8%; transform: rotate(6deg); background: var(--pink); color: #fff; }
.sticker-2 { bottom: -10px; left: 4%; transform: rotate(-5deg); animation-delay: 1.2s; }
@keyframes bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

/* Confetti flotante del hero */
.confetti { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.confetti i {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 3px;
  opacity: .7;
  animation: drift 9s ease-in-out infinite;
}
.confetti i:nth-child(1)  { left: 4%;  top: 18%; background: var(--pink);   animation-delay: 0s; }
.confetti i:nth-child(2)  { left: 12%; top: 72%; background: var(--teal);   animation-delay: -2s; width: 9px; height: 9px; border-radius: 50%; }
.confetti i:nth-child(3)  { left: 22%; top: 10%; background: var(--yellow); animation-delay: -4s; }
.confetti i:nth-child(4)  { left: 33%; top: 84%; background: var(--purple); animation-delay: -1s; border-radius: 50%; }
.confetti i:nth-child(5)  { left: 45%; top: 6%;  background: var(--orange); animation-delay: -6s; }
.confetti i:nth-child(6)  { left: 55%; top: 90%; background: var(--blue);   animation-delay: -3s; width: 8px; height: 8px; }
.confetti i:nth-child(7)  { left: 64%; top: 14%; background: var(--green);  animation-delay: -7s; border-radius: 50%; }
.confetti i:nth-child(8)  { left: 74%; top: 78%; background: var(--pink);   animation-delay: -5s; }
.confetti i:nth-child(9)  { left: 84%; top: 8%;  background: var(--teal);   animation-delay: -2.5s; }
.confetti i:nth-child(10) { left: 92%; top: 60%; background: var(--yellow); animation-delay: -8s; border-radius: 50%; }
.confetti i:nth-child(11) { left: 50%; top: 40%; background: var(--orange); animation-delay: -4.5s; width: 7px; height: 7px; }
.confetti i:nth-child(12) { left: 7%;  top: 45%; background: var(--purple); animation-delay: -6.5s; width: 9px; height: 9px; }
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(140deg); }
}

/* Olas divisorias */
.wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.wave svg { width: 100%; height: 56px; display: block; }
.wave-top { position: relative; bottom: auto; margin-top: -1px; }
.wave-top svg { height: 48px; }

/* ── Cinta marquee de texto ─────────────────────────── */
.tape {
  background: var(--teal);
  transform: rotate(-1.2deg) scale(1.02);
  padding: .55rem 0;
  overflow: hidden;
  margin: -1.5rem 0 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(23, 184, 166, .3);
}
.tape-track {
  display: flex;
  white-space: nowrap;
  animation: tape-scroll 26s linear infinite;
  width: max-content;
}
.tape-track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-right: .5em;
  flex: none;
}
@keyframes tape-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Secciones ──────────────────────────────────────── */
.section { padding: 4.5rem 0 5rem; position: relative; background: var(--white); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); }
.section .wave-top { margin: -4.5rem 0 3.5rem; }

.sec-head { text-align: center; max-width: 46em; margin: 0 auto 2.8rem; }
.kicker {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem;
  margin-bottom: .5rem;
}
/* Tonos oscurecidos para contraste AA sobre fondos claros */
.kicker.c-teal { color: #0D8A7C; }
.kicker.c-orange { color: #D95A12; }
.kicker.c-pink { color: #D42561; }
.kicker.c-purple { color: #7A3EC6; }
.sec-sub { margin-top: .9rem; color: #5a6480; font-size: 1.05rem; }
.on-dark { color: #fff; }
.sec-sub.on-dark { color: rgba(255, 255, 255, .78); }
.on-dark-soft { color: rgba(255, 255, 255, .85); }

/* ── Cards de catálogo ──────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.7rem;
}
.cards-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--bounce), box-shadow .35s;
}
.card:nth-child(odd)  { transform: rotate(-1.1deg); }
.card:nth-child(even) { transform: rotate(1.1deg); }
.card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.02);
  box-shadow: 0 18px 44px rgba(34, 58, 103, .2);
}
.card-img { aspect-ratio: 4 / 5; overflow: hidden; }
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.card:hover .card-img img { transform: scale(1.06) rotate(.5deg); }
.card-body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.card-body p { font-size: .95rem; color: #59637f; flex: 1; }
.card-cta {
  font-family: var(--font-display);
  font-weight: 800;
  color: #D42561;
  text-decoration: none;
  font-size: 1rem;
  align-self: flex-start;
  border-bottom: 3px solid transparent;
  transition: border-color .2s, transform .2s;
}
.card-cta:hover { border-bottom-color: var(--yellow); transform: translateX(3px); }

.card-more {
  background: repeating-linear-gradient(-45deg, #FFF3D6 0 18px, #FFECC2 18px 36px);
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.4rem;
  border: 3px dashed var(--yellow);
}
.card-more .card-body { align-items: center; }
.card-more h3 { font-size: 1.35rem; }

/* ── Galería marquee (Momentos) ─────────────────────── */
.photo-marquee { overflow: hidden; padding: 1.1rem 0; }
.pm-track {
  display: flex;
  gap: 1.6rem;
  width: max-content;
  animation: pm-left 48s linear infinite;
  padding: .8rem .8rem;
}
.photo-marquee[data-dir="right"] .pm-track { animation-name: pm-right; animation-duration: 55s; }
.photo-marquee:hover .pm-track { animation-play-state: paused; }
@keyframes pm-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pm-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.polaroid {
  background: #fff;
  padding: 9px 9px 26px;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .3);
  transform: rotate(-2deg);
  transition: transform .35s var(--bounce);
  cursor: zoom-in;
  flex: none;
}
.pm-track .polaroid:nth-child(2n) { transform: rotate(1.8deg); }
.pm-track .polaroid:nth-child(3n) { transform: rotate(-1deg); }
.polaroid:hover { transform: rotate(0deg) scale(1.05); z-index: 2; }
.polaroid img {
  height: 205px;
  width: auto;
  border-radius: 5px;
  object-fit: cover;
}

.social-cta { text-align: center; margin-top: 2rem; }
.social-cta p {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.social-btns { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ── Pasos ──────────────────────────────────────────── */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  max-width: 62em;
  margin: 0 auto;
  counter-reset: paso;
}
.step {
  text-align: center;
  padding: 2.4rem 1.5rem 1.9rem;
  background: var(--cream);
  border-radius: 34px 46px 38px 50px;
  position: relative;
  transition: transform .3s var(--bounce);
}
.step:nth-child(2) { border-radius: 48px 34px 52px 36px; }
.step:nth-child(3) { border-radius: 38px 52px 34px 46px; }
.step:hover { transform: translateY(-6px) rotate(-.6deg); }
.step h3 { margin-bottom: .5rem; }
.step p { font-size: .97rem; color: #59637f; }
.step-num {
  position: absolute;
  top: -24px;
  left: 50%;
  translate: -50% 0;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  border-radius: 50% 46% 52% 48% / 48% 52% 46% 52%;
  box-shadow: 0 6px 16px rgba(34, 58, 103, .25);
}
.n1 { background: var(--pink); }
.n2 { background: var(--teal); rotate: 8deg; }
.n3 { background: var(--orange); rotate: -6deg; }

/* ── FAQ ────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: .9rem; }
.faq details {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-left: 6px solid var(--yellow);
}
.faq details:nth-child(2) { border-left-color: var(--teal); }
.faq details:nth-child(3) { border-left-color: var(--pink); }
.faq details:nth-child(4) { border-left-color: var(--purple); }
.faq details:nth-child(5) { border-left-color: var(--orange); }
.faq details:nth-child(6) { border-left-color: var(--blue); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--navy);
  padding: 1.05rem 3rem 1.05rem 1.3rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--cream); }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  translate: 0 -50%;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pink);
  transition: rotate .25s;
}
.faq details[open] summary::after { rotate: 45deg; }
.faq details p { padding: 0 1.3rem 1.2rem; color: #59637f; }

/* ── Contacto ───────────────────────────────────────── */
.section-contact { background: #E9F8F5; padding-top: 5rem; }
.contact-card {
  background: #fff;
  border-radius: 40px;
  box-shadow: var(--shadow);
  padding: clamp(1.8rem, 4vw, 3.2rem);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  right: -70px; top: -70px;
  background: var(--yellow);
  opacity: .25;
  border-radius: 58% 42% 55% 45% / 50% 56% 44% 50%;
}
.contact-copy h2 { margin-bottom: .7rem; }
.contact-copy > p { margin-bottom: 1.4rem; color: #59637f; }
.contact-lines { list-style: none; margin-top: 1.4rem; display: flex; flex-direction: column; gap: .45rem; }
.contact-lines a { color: var(--navy); font-weight: 800; }
.contact-media { position: relative; z-index: 1; }
.contact-media img { margin: 0 auto; max-width: 320px; }

/* ── Footer ─────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255, 255, 255, .8); padding: 3.2rem 0 1.4rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.4rem;
  padding-bottom: 2rem;
}
.wordmark-footer { font-size: 1.35rem; margin-bottom: .6rem; display: inline-flex; }
.footer-brand p { font-size: .95rem; max-width: 26em; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a, .footer-contact a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-weight: 600;
  font-size: .96rem;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--yellow); }
.footer-fine {
  text-align: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 1.3rem;
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ── FAB WhatsApp ───────────────────────────────────── */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(35, 179, 58, .5);
  transition: transform .25s var(--bounce);
}
.wa-fab:hover { transform: scale(1.1) rotate(6deg); }
.wa-fab svg { width: 34px; height: 34px; fill: #fff; }
.wa-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--wa);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  from { transform: scale(1); opacity: .8; }
  to   { transform: scale(1.55); opacity: 0; }
}

/* ── Lightbox ───────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 28, 48, .93);
  display: grid;
  place-items: center;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 84vh;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .6);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 0;
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255, 255, 255, .28); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; translate: 0 -50%; font-size: 2rem; }
.lb-next { right: 14px; top: 50%; translate: 0 -50%; font-size: 2rem; }

/* ── Animación de entrada (solo si hay JS) ──────────── */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s var(--bounce); }
.js .reveal.in { opacity: 1; transform: translateY(0); }

/* ── Responsivo ─────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero-media { max-width: 520px; margin: 0 auto; width: 100%; }
  .contact-card { grid-template-columns: 1fr; text-align: center; }
  .contact-lines { align-items: center; }
  .contact-media img { max-width: 260px; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; text-align: center; }
  .footer-nav, .footer-contact { align-items: center; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .menu-btn { display: flex; margin-left: auto; }
  .btn-header { margin-left: auto; }
  .header-inner { gap: .8rem; }
  .steps { grid-template-columns: 1fr; gap: 2.6rem; max-width: 26em; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wordmark { font-size: 1.12rem; gap: .3rem; }
  .btn-header { font-size: .84rem; padding: .5em 1em; }
  .header-inner { gap: .5rem; }
  .section { padding: 3.4rem 0 4rem; }
  .section .wave-top { margin: -3.4rem 0 2.6rem; }
  .hero { padding: 2.4rem 0 4.6rem; }
  .hero-sub { font-size: 1.05rem; }
  .btn-lg { font-size: 1.02rem; width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; }
  .cards, .cards-4 { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .card:nth-child(odd)  { transform: rotate(-.5deg); }
  .card:nth-child(even) { transform: rotate(.5deg); }
  .card-body { padding: .85rem .9rem 1rem; }
  .card-body p { font-size: .86rem; }
  .card h3 { font-size: 1.04rem; }
  .polaroid img { height: 150px; }
  .wa-fab { width: 56px; height: 56px; right: 14px; bottom: 14px; }
  .sticker { font-size: .82rem; }
}

@media (max-width: 380px) {
  .cards, .cards-4 { grid-template-columns: 1fr; }
  h1 { font-size: 1.68rem; }
}

/* ── Accesibilidad: menos movimiento ────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-blob, .sticker, .confetti i, .wa-fab::after { animation: none; }
  .tape-track, .pm-track { animation: none; }
  .pm-track { overflow-x: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; }
}
