/* ============================================================
   La Parrilla — Menú Digital QR (menu.laparrilla.food)
   Diseño interactivo con hero, tabs sticky, cards con foto
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: clip;
}

body {
  width: 100%;
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--lp-bg-dark);
  color: var(--lp-cream);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  -webkit-font-smoothing: antialiased;
}

.lp-hero,
.lp-footer {
  width: 100%;
}

/* ── Hero ─────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  min-height: clamp(260px, 38dvh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1rem, 3dvh, 3rem) 1rem clamp(1.5rem, 4dvh, 3.5rem);
  background:
    radial-gradient(ellipse at top, rgba(192, 64, 32, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, var(--lp-bg-dark) 0%, var(--lp-bg-surface) 100%);
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(245, 160, 48, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(232, 98, 28, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, var(--lp-bg-dark) 100%);
  pointer-events: none;
  z-index: 1;
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.lp-hero-logo {
  height: clamp(110px, min(32vw, 22dvh), 240px);
  width: auto;
  margin-bottom: clamp(0.5rem, 1.5dvh, 1.5rem);
  filter: drop-shadow(0 6px 28px rgba(192, 64, 32, 0.55));
}

.lp-hero-title {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 10vw, 4rem);
  color: var(--lp-gold);
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.lp-hero-tagline {
  font-size: 0.85rem;
  color: var(--lp-cream);
  opacity: 0.75;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.lp-hero-date {
  margin-top: clamp(0.75rem, 2vh, 1.5rem);
  padding: 0.5rem 1.25rem;
  display: inline-block;
  border: 1px solid var(--lp-border-light);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--lp-cream);
  opacity: 0.85;
  text-transform: capitalize;
  backdrop-filter: blur(4px);
  background: rgba(26, 14, 8, 0.4);
}

.lp-hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--lp-gold);
  opacity: 0.6;
  animation: bounce 2s infinite;
  z-index: 2;
}

.lp-hero-scroll svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Título del día ───────────────────────────────────── */
.lp-menu-titulo {
  text-align: center;
  padding: 2rem 1.5rem 1rem;
}

.lp-menu-titulo h2 {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  color: var(--lp-gold-light);
}

.lp-menu-titulo p {
  font-size: 0.9rem;
  color: var(--lp-cream);
  opacity: 0.7;
  margin-top: 0.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Sticky navbar (logo + tabs) ─────────────────────── */
.lp-sticky-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lp-sticky-nav.scrolled {
  background: linear-gradient(180deg, rgba(26, 14, 8, 0.97) 0%, rgba(26, 14, 8, 0.92) 100%);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(222, 192, 144, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.lp-sticky-logo {
  width: 0;
  height: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(192, 64, 32, 0.4));
  transition: width 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
  opacity: 0;
  overflow: hidden;
  margin-right: -0.75rem;
}

.lp-sticky-logo.visible {
  width: 36px;
  opacity: 1;
  margin-right: 0;
}

.lp-tabs {
  flex: 1;
  min-width: 0;
  padding: 0;
}

.lp-tabs-inner {
  display: flex;
  gap: 0.6rem;
  padding: 0 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 0.25rem, #000 calc(100% - 0.25rem), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 0.25rem, #000 calc(100% - 0.25rem), transparent 100%);
}

.lp-tabs-inner::-webkit-scrollbar { display: none; }

.lp-tab {
  flex-shrink: 0;
  padding: 0.6rem 1.25rem;
  background: rgba(240, 224, 184, 0.04);
  border: 1px solid rgba(222, 192, 144, 0.15);
  border-radius: 50px;
  color: var(--lp-cream);
  opacity: 0.7;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.lp-tab:focus,
.lp-tab:focus-visible {
  outline: none;
  border-color: rgba(222, 192, 144, 0.15);
}

.lp-tab.active:focus,
.lp-tab.active:focus-visible {
  border-color: var(--lp-primary-hover);
}

@media (hover: hover) {
  .lp-tab:hover:not(.active) {
    border-color: var(--lp-gold);
    color: var(--lp-gold-light);
    background: rgba(245, 160, 48, 0.08);
    opacity: 1;
    transform: translateY(-1px);
  }
}

.lp-tab:active:not(.active) { transform: translateY(0); }

.lp-tab.active {
  background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-accent) 100%);
  border-color: var(--lp-primary-hover);
  color: #fff;
  opacity: 1;
  box-shadow: 0 6px 20px rgba(192, 64, 32, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ── Secciones ────────────────────────────────────────── */
.lp-sections {
  flex: 1;
  padding: 1rem 1rem 2rem;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .lp-sections {
    max-width: 960px;
    padding: 1.5rem 2rem 2rem;
  }
}

@media (min-width: 1280px) {
  .lp-sections {
    max-width: 1200px;
  }
}


.lp-section {
  padding: 2rem 0 1rem;
  scroll-margin-top: 80px;
}

.lp-section-title {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.75rem;
  color: var(--lp-gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--lp-gold) 0%, transparent 100%);
  opacity: 0.4;
}

/* ── Cards ────────────────────────────────────────────── */
.lp-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .lp-card-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (min-width: 1024px) {
  .lp-card-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .lp-card-grid { grid-template-columns: repeat(4, 1fr); }
}

.lp-card {
  background: var(--lp-bg-surface);
  border: 1px solid var(--lp-border-light);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  display: flex;
  flex-direction: column;
}

.lp-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border-color: var(--lp-gold);
}

.lp-card:active { transform: scale(0.98); }

.lp-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--lp-bg-dark) 0%, var(--lp-primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.lp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.lp-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.35) 100%);
}

.lp-card:hover .lp-card-img img { transform: scale(1.05); }

.lp-card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-gold);
  opacity: 0.5;
}

.lp-card-img-placeholder svg { width: 56px; height: 56px; }

.lp-card-body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.lp-card-name {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lp-cream);
  line-height: 1.2;
}

.lp-card-desc {
  font-size: 0.82rem;
  color: var(--lp-cream);
  opacity: 0.65;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
}

.lp-card-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lp-gold);
}

.lp-card-badge {
  background: var(--lp-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Stock badges ─────────────────────────────────────── */

.lp-stock-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--lp-success-bg);
  color: var(--lp-success);
}

.lp-stock-badge.lp-stock-low {
  background: var(--lp-warning-bg);
  color: var(--lp-warning);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 14px;
  letter-spacing: 0.3px;
  animation: lp-pulse-stock 1.5s ease-in-out infinite;
}

.lp-stock-badge.lp-stock-out {
  background: var(--lp-danger-bg);
  color: var(--lp-danger);
}

@keyframes lp-pulse-stock {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ── Sold-out overlay on card image ──────────────────── */

.lp-card-sold-out {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 14, 8, 0.7);
  z-index: 2;
}

.lp-card-sold-out span {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--lp-danger-bg);
  border: 3px solid var(--lp-danger-bg);
  padding: 0.4rem 1.25rem;
  border-radius: 4px;
  transform: rotate(-12deg);
}

/* ── Unavailable card ────────────────────────────────── */

.lp-card-unavailable { opacity: 0.65; }
.lp-card-unavailable .lp-card-img img { filter: grayscale(0.8); }

/* ── Modal stock ─────────────────────────────────────── */

.lp-modal-stock {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lp-success);
  margin-top: 0.25rem;
}
.lp-modal-stock.lp-stock-low { color: var(--lp-warning); }
.lp-modal-stock.lp-stock-out { color: var(--lp-danger); }

/* ── Modal ────────────────────────────────────────────── */
.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lp-modal-card {
  position: relative;
  background: var(--lp-bg-surface);
  border: 1px solid var(--lp-border-light);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeInUp 0.35s ease-out;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
}

.lp-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.lp-modal-close:hover { background: var(--lp-primary); }
.lp-modal-close svg { width: 20px; height: 20px; }

.lp-modal-carousel {
  position: relative;
  width: 100%;
}

.lp-modal-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--lp-bg-dark) 0%, var(--lp-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lp-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.18s ease;
}

.lp-modal-img .lp-card-img-placeholder svg { width: 72px; height: 72px; }

.lp-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.lp-modal-nav:hover  { background: rgba(0, 0, 0, 0.75); }
.lp-modal-nav:active { transform: translateY(-50%) scale(0.95); }
.lp-modal-nav svg    { width: 22px; height: 22px; }
.lp-modal-nav--prev  { left: 0.5rem; }
.lp-modal-nav--next  { right: 0.5rem; }

.lp-modal-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
}

.lp-modal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.15s ease, transform 0.15s ease;
}

.lp-modal-dot.active {
  background: #fff;
  transform: scale(1.15);
}

.lp-modal-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--lp-bg-dark);
  overflow-x: auto;
  scrollbar-width: thin;
}

.lp-modal-thumb {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.lp-modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lp-modal-thumb:hover { transform: translateY(-1px); }
.lp-modal-thumb.active { border-color: var(--lp-primary); }

.lp-modal-body {
  padding: 1.5rem;
}

.lp-modal-body h3 {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.75rem;
  color: var(--lp-gold);
  margin-bottom: 0.75rem;
}

.lp-modal-body p {
  font-size: 0.9rem;
  color: var(--lp-cream);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.lp-modal-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lp-gold);
  text-align: right;
}

/* ── Loading / Empty ──────────────────────────────────── */
.lp-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4rem 0;
  color: var(--lp-cream);
  opacity: 0.6;
}

.lp-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--lp-border-light);
  border-top-color: var(--lp-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.lp-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4dvh, 4rem) 1rem;
  text-align: center;
  align-self: stretch;
  width: 100%;
}

.lp-empty-icon {
  width: clamp(48px, 10vw, 64px);
  height: clamp(48px, 10vw, 64px);
  color: var(--lp-gold);
  margin-bottom: 1rem;
}

.lp-empty h2 { font-size: 1.2rem; color: var(--lp-cream); margin-bottom: 0.5rem; }
.lp-empty p  { font-size: 0.9rem; color: var(--lp-cream); opacity: 0.6; }

/* ── Footer ───────────────────────────────────────────── */
.lp-footer {
  position: relative;
  text-align: center;
  padding: clamp(1rem, 2.5dvh, 2rem) 1rem clamp(3rem, 8dvh, 5rem);
  margin-top: clamp(0.5rem, 1.5dvh, 2rem);
  padding-bottom: clamp(60px, 9dvh, 140px);
  isolation: isolate;
}

/* ── Franja ardiente fija al fondo del viewport ─────── */
.lp-embers {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(50px, 8dvh, 130px);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.lp-embers-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 25% 90% at 15% 100%, rgba(255, 140, 40, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 30% 95% at 40% 100%, rgba(255, 160, 60, 0.65) 0%, transparent 70%),
    radial-gradient(ellipse 28% 90% at 65% 100%, rgba(232, 98, 28, 0.6)  0%, transparent 70%),
    radial-gradient(ellipse 25% 90% at 88% 100%, rgba(255, 140, 40, 0.55) 0%, transparent 70%),
    linear-gradient(180deg,
      transparent 0%,
      rgba(139, 0, 0, 0.25) 40%,
      rgba(192, 64, 32, 0.55) 75%,
      rgba(245, 160, 48, 0.75) 100%);
  animation: emberGlowPulse 2.8s ease-in-out infinite;
}

@keyframes emberGlowPulse {
  0%, 100% { opacity: 0.75; filter: blur(0.5px); }
  50%      { opacity: 1;    filter: blur(0px);   }
}

/* Chispas doradas subiendo */
.lp-spark {
  position: absolute;
  bottom: 18px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lp-gold-light);
  box-shadow: 0 0 6px 1px var(--lp-gold);
  opacity: 0;
  animation: sparkRise 3s ease-out infinite;
}

.lp-spark-1 { left:  8%; animation-delay: 0s;    animation-duration: 3.2s; }
.lp-spark-2 { left: 18%; animation-delay: 0.6s;  animation-duration: 2.8s; }
.lp-spark-3 { left: 30%; animation-delay: 1.2s;  animation-duration: 3.5s; }
.lp-spark-4 { left: 42%; animation-delay: 0.3s;  animation-duration: 3s;   }
.lp-spark-5 { left: 56%; animation-delay: 1.8s;  animation-duration: 3.3s; }
.lp-spark-6 { left: 68%; animation-delay: 0.9s;  animation-duration: 2.7s; }
.lp-spark-7 { left: 82%; animation-delay: 1.5s;  animation-duration: 3.4s; }
.lp-spark-8 { left: 92%; animation-delay: 2.1s;  animation-duration: 3.1s; }

@keyframes sparkRise {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  15%  { opacity: 1; }
  60%  { opacity: 0.8; }
  100% { transform: translateY(-80px) scale(0.3); opacity: 0; }
}

.lp-footer > *:not(.lp-embers) { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .lp-ember-ambient,
  .lp-ember-cracks,
  .lp-ember-dots,
  .lp-spark { animation: none; }
}

.lp-footer-brand {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  color: var(--lp-gold);
}

.lp-wa-fab {
  position: fixed;
  bottom: clamp(60px, 9dvh, 140px);
  right: 1.5rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.lp-wa-fab.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lp-wa-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

@media (max-width: 640px) {
  .lp-wa-fab {
    bottom: clamp(55px, 8dvh, 120px);
    right: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
}

.lp-footer-small {
  font-size: 0.7rem;
  color: var(--lp-cream);
  opacity: 0.5;
  margin-top: 0.5rem;
}

.lp-icon-sm { width: 18px; height: 18px; stroke-width: 2; }

/* ── Scroll lock cuando modal abierto ─────────────────── */
body.modal-open { overflow: hidden; }
