/* ==========================================================================
   FICHA COMERCIAL & MINI-LANDING MAESTRA · GUÍA INGRUMÁ (REFINADA V1.1)
   ========================================================================== */

.ficha-page-body {
  background-color: #060312;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* 1. NAVEGACIÓN STICKY DESATURADA */
.ficha-sticky-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(8, 4, 23, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(61, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.85);
  padding: 0.55rem 1rem;
}
.ficha-nav-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.btn-ficha-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #CBD5E1;
  text-decoration: none;
  font-family: var(--font-h2);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}
.btn-ficha-back:hover {
  background: rgba(61, 255, 255, 0.15);
  color: #3DFFFF;
  border-color: #3DFFFF;
  transform: translateX(-2px);
}
.nav-back-icon {
  width: 15px;
  height: 15px;
}
.ficha-nav-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.ficha-nav-actions {
  display: flex;
  align-items: center;
}

/* 2. CABECERA CINEMÁTICA CON MALLA LÍQUIDA VIBRANTE & ESPACIADO SIMÉTRICO */
.merchant-hero-section {
  position: relative;
  overflow: hidden;
  padding: 3rem 1.25rem 2.75rem;
  background: #080417;
  border-bottom: 1px solid rgba(255, 187, 0, 0.25);
  text-align: center;
}

/* Malla líquida con orbes vibrantes de alta visibilidad y dinamismo ágil */
.merchant-liquid-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  background: #080318;
}
.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  will-change: transform;
}

/* Orbe 1: Cian Eléctrico / Turquesa (Acelerado +15%) */
.mesh-orb-1 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.75) 0%, rgba(14, 165, 233, 0.4) 50%, transparent 75%);
  top: -50px;
  left: -30px;
  animation: meshFloat1 5.2s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* Orbe 2: Púrpura Cósmico / Amatista Profundo (Acelerado +15%) */
.mesh-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.76) 0%, rgba(126, 34, 206, 0.42) 55%, transparent 75%);
  bottom: -40px;
  right: -20px;
  animation: meshFloat2 6.2s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* Orbe 3: Oro Amarillo Institucional Protagonista (Acelerado a 4.2s cruzando dinámico) */
.mesh-orb-3 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 187, 0, 0.85) 0%, rgba(245, 158, 11, 0.48) 48%, rgba(217, 119, 6, 0.2) 68%, transparent 80%);
  top: 10%;
  right: 5%;
  animation: meshFloatYellow 4.2s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* Orbe 4: Resplandor Coral / Ámbar Energético (Acelerado a 4.9s) */
.mesh-orb-4 {
  width: 290px;
  height: 290px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.65) 0%, rgba(236, 72, 153, 0.35) 55%, transparent 75%);
  bottom: 5%;
  left: 8%;
  animation: meshFloat4 4.9s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* Trayectorias con Amplitud Pronunciada */
@keyframes meshFloat1 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(85px, 55px) scale(1.2) rotate(20deg); }
  100% { transform: translate(40px, 110px) scale(0.9) rotate(-16deg); }
}

@keyframes meshFloat2 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(-80px, -65px) scale(1.18) rotate(-18deg); }
  100% { transform: translate(-40px, -105px) scale(0.88) rotate(14deg); }
}

/* El amarillo dorado cruza ampliamente de derecha a izquierda detrás del logo */
@keyframes meshFloatYellow {
  0% { 
    transform: translate(0, 0) scale(0.92); 
    opacity: 0.85;
  }
  50% { 
    transform: translate(-145px, 50px) scale(1.28); 
    opacity: 1;
  }
  100% { 
    transform: translate(-250px, -25px) scale(0.96); 
    opacity: 0.9;
  }
}

@keyframes meshFloat4 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(75px, -50px) scale(1.2); }
  100% { transform: translate(-45px, 35px) scale(0.86); }
}

.hero-fade-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 3, 24, 0.15) 0%, rgba(8, 3, 24, 0.35) 50%, rgba(8, 3, 24, 0.92) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Botón Flotante de Compartir en la esquina superior de la cabecera */
.btn-merchant-floating-share {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(14, 10, 36, 0.8);
  backdrop-filter: blur(8px);
  border: 1.2px solid #FFBB00;
  color: #FFBB00;
  font-family: var(--font-h2);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}
.btn-merchant-floating-share:hover {
  background: #FFBB00;
  color: #000000;
  box-shadow: 0 0 16px rgba(255, 187, 0, 0.6);
  transform: scale(1.05);
}
.share-icon {
  width: 13px;
  height: 13px;
}

.merchant-hero-container {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Avatar / Logo con Espaciado Simétrico Arriba y Abajo */
.merchant-avatar-wrapper {
  margin: 1.25rem 0 1.5rem;
  display: flex;
  justify-content: center;
}
.merchant-avatar-frame {
  width: 125px;
  height: 125px;
  border-radius: 50% !important;
  background: #181135 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.85), 0 0 22px rgba(255, 187, 0, 0.45) !important;
}
.merchant-avatar-img {
  max-width: 90px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
}

/* Badges de Autoridad con Espaciado Respetado */
.merchant-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.45rem;
  flex-wrap: wrap;
}
.badge-status-open {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid #10B981;
  color: #34D399;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
}
.badge-authority-gold {
  background: rgba(255, 187, 0, 0.2);
  border: 1px solid #FFBB00;
  color: #FFBB00;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
}
.badge-solidario-pacto {
  background: rgba(61, 255, 255, 0.18);
  border: 1px solid #3DFFFF;
  color: #3DFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
}

/* Jerarquía Tipográfica Espaciosa (Anti-Apretujada) */
.merchant-identity-card {
  width: 100%;
}
.merchant-title {
  font-family: var(--font-h1);
  font-size: clamp(1.75rem, 4.5vw, 2.45rem);
  font-weight: 800;
  color: #FFBB00;
  margin: 0 0 0.85rem;
  line-height: 1.2;
  text-shadow: 0 0 18px rgba(255, 187, 0, 0.4);
}
.merchant-slogan {
  font-family: var(--font-h2);
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 0.85rem;
  line-height: 1.4;
}
.merchant-specialty {
  font-family: var(--font-h2);
  font-size: 0.82rem;
  font-weight: 700;
  color: #3DFFFF;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0 0 1.15rem;
}
.merchant-summary-copy {
  font-size: 0.88rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin: 0 auto;
  font-weight: 300;
  max-width: 640px;
}

/* 3. CARRUSEL VITRINA FOTOGRÁFICA */
.merchant-content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.merchant-carousel-section {
  padding: 2.25rem 0 1.25rem;
}
.carousel-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 187, 0, 0.4);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.88);
  background: #000000;
  aspect-ratio: 16 / 9;
  max-height: 440px;
}
.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
  transform: scale(1.02);
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 3, 16, 0.94) 85%);
  padding: 1.75rem 1.25rem 0.95rem;
}
.caption-tag {
  font-family: var(--font-h2);
  font-size: 0.62rem;
  font-weight: 800;
  color: #FFBB00;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.15rem;
}
.caption-text {
  font-size: 0.82rem;
  color: #FFFFFF;
  margin: 0;
  font-weight: 400;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(14, 10, 36, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}
.carousel-btn:hover {
  background: #FFBB00;
  color: #000000;
  border-color: #FFBB00;
  transform: translateY(-50%) scale(1.08);
}
.btn-carousel-prev { left: 12px; }
.btn-carousel-next { right: 12px; }
.carousel-dots {
  position: absolute;
  bottom: 12px;
  right: 16px;
  z-index: 10;
  display: flex;
  gap: 6px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}
.carousel-dot.active {
  width: 22px;
  border-radius: 4px;
  background: #FFBB00;
  box-shadow: 0 0 8px rgba(255, 187, 0, 0.8);
}

/* 4. STORYTELLING EDITORIAL */
.merchant-story-section {
  padding: 1.5rem 0;
}
.story-card-box {
  background: linear-gradient(145deg, #130B2E 0%, #0A051A 100%);
  border: 1.5px solid rgba(61, 255, 255, 0.25);
  border-radius: 18px;
  padding: 1.85rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
}
.story-header-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.95rem;
}
.story-heading {
  font-family: var(--font-h1);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 0.95rem;
}
.story-body-paragraphs p {
  font-size: 0.88rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin: 0 0 0.85rem;
  font-weight: 300;
}
.story-body-paragraphs p:last-child {
  margin-bottom: 0;
}
.story-body-paragraphs strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* 5. OPERACIÓN Y REDES (EN UNA SOLA FILA CENTRADA) */
.merchant-operation-section {
  padding: 1.5rem 0;
}
.operation-grid-card {
  background: #0E0824;
  border: 1.5px solid rgba(255, 187, 0, 0.35);
  border-radius: 18px;
  padding: 1.85rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
}
.section-micro-title {
  font-family: var(--font-h2);
  font-size: 0.75rem;
  font-weight: 800;
  color: #FFBB00;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1.35rem;
}
.op-items-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 680px) {
  .op-items-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.op-row-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.op-icon-pill {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(61, 255, 255, 0.12);
  border: 1px solid rgba(61, 255, 255, 0.35);
  color: #3DFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.op-icon-pill svg {
  width: 18px;
  height: 18px;
}
.op-info-text {
  flex: 1;
}
.op-label {
  font-size: 0.68rem;
  color: #94A3B8;
  display: block;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.op-value {
  font-size: 0.82rem;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.35;
}
.op-value-link {
  color: #3DFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}
.op-value-link:hover {
  color: #FFBB00;
  text-decoration: underline;
}

/* Redes Sociales en Una Sola Fila Centrada */
.social-channels-zone {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  text-align: center;
}
.social-zone-title {
  font-family: var(--font-h2);
  font-size: 0.65rem;
  font-weight: 800;
  color: #94A3B8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.85rem;
}
.social-buttons-single-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.btn-social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-social-circle:hover {
  background: rgba(61, 255, 255, 0.2);
  border-color: #3DFFFF;
  color: #3DFFFF;
  transform: translateY(-2px);
}
.btn-social-pill-web {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 187, 0, 0.12);
  border: 1.2px solid #FFBB00;
  border-radius: 9999px;
  color: #FFBB00;
  text-decoration: none;
  font-family: var(--font-h2);
  font-size: 0.75rem;
  font-weight: 800;
  transition: all 0.2s ease;
}
.btn-social-pill-web:hover {
  background: #FFBB00;
  color: #000000;
  box-shadow: 0 0 14px rgba(255, 187, 0, 0.5);
  transform: translateY(-2px);
}
.social-svg-icon {
  width: 17px;
  height: 17px;
}

/* 6. SERVICIOS & CARACTERÍSTICAS (ESTILO BOOKING / AIRBNB CON MALLA LÍQUIDA VIVA) */
.merchant-features-section {
  padding: 1.5rem 0;
}
.features-card-box {
  position: relative;
  overflow: hidden;
  background: #080318;
  border: 1.5px solid rgba(61, 255, 255, 0.35);
  border-radius: 20px;
  padding: 1.85rem 1.65rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

/* Malla Líquida de Acento Interna (0 KB Video, Dinamismo Acelerado) */
.features-liquid-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.feat-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  will-change: transform;
}

/* Orbe 1: Cian Eléctrico */
.feat-orb-1 {
  width: 290px;
  height: 290px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.65) 0%, rgba(12, 149, 155, 0.3) 55%, transparent 75%);
  top: -40px;
  left: -20px;
  animation: featFloat1 4.8s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* Orbe 2: Oro Amarillo Institucional Protagonista (Cruzando amplio de derecha a izquierda) */
.feat-orb-2 {
  width: 310px;
  height: 310px;
  background: radial-gradient(circle, rgba(255, 187, 0, 0.75) 0%, rgba(245, 158, 11, 0.38) 48%, transparent 75%);
  bottom: -30px;
  right: -20px;
  animation: featFloatYellow 4.2s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* Orbe 3: Púrpura Cósmico */
.feat-orb-3 {
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.65) 0%, rgba(107, 33, 168, 0.3) 55%, transparent 75%);
  top: 25%;
  left: 30%;
  animation: featFloat3 5.5s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

@keyframes featFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(140px, 70px) scale(1.22); }
  100% { transform: translate(60px, 130px) scale(0.92); }
}

@keyframes featFloatYellow {
  0% { 
    transform: translate(0, 0) scale(0.92); 
  }
  50% { 
    transform: translate(-150px, -50px) scale(1.28); 
  }
  100% { 
    transform: translate(-260px, 20px) scale(0.98); 
  }
}

@keyframes featFloat3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -60px) scale(1.18); }
  100% { transform: translate(-60px, 50px) scale(0.88); }
}

.features-content-inner {
  position: relative;
  z-index: 2;
}

.features-title {
  font-family: var(--font-h1);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 0.35rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}
.features-desc {
  font-size: 0.8rem;
  color: #CBD5E1;
  margin: 0 0 1.35rem;
  line-height: 1.45;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
}
.features-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.25rem;
}
@media (max-width: 640px) {
  .features-checklist-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.feature-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(14, 8, 36, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1.2px solid rgba(61, 255, 255, 0.28);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.feature-check-item:hover {
  transform: translateY(-2px);
  border-color: #3DFFFF;
  background: rgba(14, 8, 36, 0.55);
}
.feature-check-icon {
  color: #FFBB00;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1;
  text-shadow: 0 0 8px rgba(255, 187, 0, 0.6);
}
.feature-check-text {
  font-size: 0.82rem;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* 7. CONVERSIÓN CON RESPIRO (WHATSAPP PROTAGONISTA) */
.merchant-conversion-section {
  padding: 1.5rem 0;
}
.conversion-card-box {
  background: linear-gradient(145deg, #180F38 0%, #0D0622 100%);
  border: 2px solid #FFBB00;
  border-radius: 20px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.85), 0 0 24px rgba(255, 187, 0, 0.35);
}
.conversion-kicker {
  font-family: var(--font-h2);
  font-size: 0.65rem;
  font-weight: 800;
  color: #FFBB00;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}
.conversion-heading {
  font-family: var(--font-h1);
  font-size: clamp(1.2rem, 3.5vw, 1.65rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0.45rem 0 1.75rem;
}
.wa-action-wrap {
  margin-bottom: 1.75rem;
}
.btn-merchant-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 520px;
  padding: 1.05rem 1.6rem;
  background: linear-gradient(90deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  font-family: var(--font-h2);
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.45);
  transition: all 0.25s ease;
  animation: pulseWaGlow 3s infinite ease-in-out;
}
@keyframes pulseWaGlow {
  0%, 100% {
    box-shadow: 0 6px 22px rgba(16, 185, 129, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 10px 34px rgba(16, 185, 129, 0.75), 0 0 20px rgba(16, 185, 129, 0.5);
    transform: scale(1.02);
  }
}
.btn-merchant-whatsapp:hover {
  background: #FFFFFF;
  color: #059669;
  transform: scale(1.035);
}
.wa-btn-icon {
  width: 22px;
  height: 22px;
}
.btn-arrow-sign {
  font-size: 1.15rem;
  line-height: 1;
}

/* Separador sutil antes de mapas */
.conversion-spacer-line {
  max-width: 320px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 auto 1.5rem;
}

/* Geolocalización Dual */
.geo-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .geo-actions-grid {
    grid-template-columns: 1fr;
  }
}
.btn-geo-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-family: var(--font-h2);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-geo-google {
  background: rgba(61, 255, 255, 0.12);
  border: 1px solid #3DFFFF;
  color: #3DFFFF;
}
.btn-geo-google:hover {
  background: #3DFFFF;
  color: #000000;
  transform: translateY(-2px);
}
.btn-geo-waze {
  background: rgba(255, 187, 0, 0.12);
  border: 1px solid #FFBB00;
  color: #FFBB00;
}
.btn-geo-waze:hover {
  background: #FFBB00;
  color: #000000;
  transform: translateY(-2px);
}
.geo-icon {
  width: 15px;
  height: 15px;
}

/* 8. CÓDIGO QR */
.merchant-qr-section {
  padding: 1.5rem 0;
}
.qr-card-box {
  background: #0E0724;
  border: 1.5px solid rgba(255, 187, 0, 0.35);
  border-radius: 18px;
  padding: 1.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 680px) {
  .qr-card-box {
    flex-direction: column;
    text-align: center;
  }
}
.qr-info-left {
  flex: 1;
}
.qr-title {
  font-family: var(--font-h1);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0.35rem 0 0.5rem;
}
.qr-desc {
  font-size: 0.8rem;
  color: #94A3B8;
  line-height: 1.55;
  margin: 0 0 1.15rem;
}
.btn-qr-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  border-radius: 8px;
  font-family: var(--font-h2);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-qr-action:hover {
  background: #3DFFFF;
  color: #000000;
  border-color: #3DFFFF;
}
.btn-qr-action svg {
  width: 14px;
  height: 14px;
}
.qr-visual-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.qr-code-frame {
  width: 150px;
  height: 150px;
  background: #FFFFFF;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 18px rgba(255, 187, 0, 0.4);
  border: 2px solid #FFBB00;
}
.qr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.qr-badge-caption {
  font-family: var(--font-h2);
  font-size: 0.58rem;
  font-weight: 800;
  color: #FFBB00;
  letter-spacing: 0.06em;
}

/* 9. NUESTRA HISTORIA (LITE-YOUTUBE EMBED) */
.merchant-video-section {
  padding: 1.5rem 0 3rem;
}
.video-story-card {
  background: #0B061D;
  border: 1.5px solid rgba(61, 255, 255, 0.25);
  border-radius: 18px;
  padding: 1.85rem 1.5rem;
}
.video-story-header {
  margin-bottom: 1.25rem;
}
.video-kicker {
  font-family: var(--font-h2);
  font-size: 0.62rem;
  font-weight: 800;
  color: #3DFFFF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.video-story-title {
  font-family: var(--font-h1);
  font-size: clamp(1.2rem, 3.5vw, 1.55rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0.25rem 0 0.35rem;
}
.video-story-sub {
  font-size: 0.8rem;
  color: #94A3B8;
  margin: 0;
}
.lite-youtube-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 200px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 187, 0, 0.5);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.9);
  cursor: pointer;
  background: #000000;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.lite-yt-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.lite-youtube-wrap:hover .lite-yt-poster {
  transform: scale(1.03);
}
.lite-yt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}
.lite-youtube-wrap:hover .lite-yt-overlay {
  background: rgba(0, 0, 0, 0.25);
}
.btn-lite-yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFBB00 0%, #FFA500 100%);
  border: 3px solid #FFFFFF;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 0 30px rgba(255, 187, 0, 0.7);
  transition: all 0.25s ease;
  animation: ytPlayPulse 2.5s infinite ease-in-out;
}
@keyframes ytPlayPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 24px rgba(255, 187, 0, 0.6); }
  50% { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 0 36px rgba(255, 187, 0, 0.9); }
}
.btn-lite-yt-play svg {
  width: 26px;
  height: 26px;
  margin-left: 4px;
}
.lite-yt-meta {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}
.yt-channel-badge {
  font-family: var(--font-h2);
  font-size: 0.65rem;
  font-weight: 800;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.yt-duration {
  font-size: 0.65rem;
  color: #FFBB00;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}
