/* ==========================================================================
   SYSTEM EVOLUTION - HOJA DE ESTILOS MINIMALISTA
   Paleta: Fondo Blanco / Verde Zafiro Oscuro / Esmeralda & Oro Sutil
   Tipografía: Plus Jakarta Sans + DM Sans (Moderna & Minimalista)
   ========================================================================== */

:root {
  /* Fondos Limpios y Minimalistas */
  --bg-white: #FFFFFF;
  --bg-surface-50: #F8FAFC;
  --bg-surface-100: #F1F5F9;
  --bg-surface-200: #E2E8F0;

  /* Verde Zafiro Oscuro & Esmeralda */
  --sapphire-950: #022C22;
  --sapphire-900: #064E3B;
  --sapphire-800: #065F46;
  --sapphire-700: #047857;
  --sapphire-600: #059669;
  --sapphire-500: #10B981;
  --sapphire-light: #ECFDF5;
  --sapphire-border: #A7F3D0;

  /* Gradiente Verde Zafiro */
  --sapphire-grad: linear-gradient(135deg, #064E3B 0%, #047857 50%, #022C22 100%);
  --sapphire-grad-hover: linear-gradient(135deg, #047857 0%, #059669 100%);

  /* Toques Dorados Sutiles */
  --gold-500: #D4AF37;
  --gold-600: #B88E28;
  --gold-light: #FEF9C3;
  --gold-border: #FDE047;

  /* Textos de Alta Legibilidad sobre Blanco */
  --text-heading: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  /* Bordes y Sombras Minimalistas */
  --border-subtle: #E2E8F0;
  --border-focus: #064E3B;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 32px -4px rgba(6, 78, 59, 0.09), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);

  /* Tipografías */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------------- RESET & BASE ---------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: light;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(6, 78, 59, 0.025) 0%, transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(212, 175, 55, 0.02) 0%, transparent 45%);
}

/* Scrollbar Minimalista */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-surface-50);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--sapphire-700);
}

::selection {
  background-color: #A7F3D0;
  color: #022C22;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ---------------- COMPONENTES GLOBALES ---------------- */
.sapphire-text, .gold-text {
  background: var(--sapphire-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
  padding-bottom: 0.16em;
  vertical-align: bottom;
}

.gold-accent-text {
  color: var(--gold-600);
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--sapphire-light);
  border: 1px solid var(--sapphire-border);
  color: var(--sapphire-900);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sapphire-600);
}

/* Botones Minimalistas */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sapphire-grad);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(6, 78, 59, 0.25);
}

.btn-primary:hover {
  background: var(--sapphire-grad-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 78, 59, 0.35);
  color: #FFFFFF;
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-heading);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--sapphire-700);
  color: var(--sapphire-900);
  background: var(--sapphire-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #15803D;
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #15803D 0%, #166534 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.35);
  color: #FFFFFF;
}

/* Encabezados de Sección */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-header .section-tag {
  margin-bottom: 0.85rem;
}

.section-header .section-title {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.section-header .section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ---------------- HEADER & NAVBAR (SIN EMPALMES) ---------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 44px;
  flex-shrink: 0;
  transition: var(--transition);
}

.brand-logo:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.brand-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Botón Minimalista de Menú Desplegable */
.menu-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.15rem;
  background: var(--bg-surface-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-heading);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.menu-toggle-btn:hover {
  background: var(--sapphire-light);
  border-color: var(--sapphire-border);
  color: var(--sapphire-900);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(6, 78, 59, 0.12);
}

.menu-toggle-btn svg {
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.menu-toggle-btn .menu-icon-close {
  display: none;
}

.menu-toggle-btn[aria-expanded="true"] {
  background: var(--sapphire-900);
  border-color: var(--sapphire-900);
  color: #FFFFFF;
}

.menu-toggle-btn[aria-expanded="true"] .menu-icon-bars {
  display: none;
}

.menu-toggle-btn[aria-expanded="true"] .menu-icon-close {
  display: block;
}

/* ================= OVERLAY DEL MENÚ DESPLEGABLE ================= */
/* Oculto por defecto en TODAS las resoluciones con display: none !important */
.mobile-nav-overlay {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.open {
  display: flex !important;
  opacity: 1;
}

.overlay-inner-container {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(6, 78, 59, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  animation: overlayPopIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes overlayPopIn {
  from {
    transform: scale(0.95) translateY(-8px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.overlay-header img {
  height: 38px;
  width: auto;
}

.overlay-close-btn {
  background: var(--bg-surface-50);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}

.overlay-close-btn:hover {
  background: #FEE2E2;
  color: #DC2626;
  border-color: #FCA5A5;
  transform: rotate(90deg);
}

.overlay-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.overlay-nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.overlay-nav-link:hover,
.overlay-nav-link.active {
  background: var(--sapphire-light);
  color: var(--sapphire-900);
  padding-left: 1.25rem;
}

.overlay-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

/* ---------------- PORTADA ANIMADA DE FLUJO TECNOLÓGICO ---------------- */
.tech-cover-section {
  position: relative;
  min-height: calc(100vh - 80px);
  padding-top: 110px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 50%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.tech-flow-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.tech-cover-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.tech-cover-content {
  max-width: 1040px;
  margin: 0 auto;
}

.tech-cover-badge {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.tech-cover-title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 3.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.025em;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  text-wrap: balance;
  overflow: visible;
  animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-cover-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 auto 2.5rem;
  max-width: 720px;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-cover-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Indicador de scroll mouse */
.cover-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--sapphire-800);
  transition: var(--transition);
}

.cover-scroll-indicator:hover {
  color: var(--sapphire-950);
  transform: translateX(-50%) translateY(3px);
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--sapphire-800);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--sapphire-800);
  border-radius: 2px;
  margin-top: 6px;
  animation: scrollWheelAnim 1.8s infinite ease-in-out;
}

@keyframes scrollWheelAnim {
  0% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.scroll-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .tech-cover-title {
    font-size: clamp(2rem, 4.5vw, 2.6rem);
  }
  .tech-cover-subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .tech-cover-title {
    font-size: 1.95rem;
  }
}

/* ---------------- HERO SECTION (MINIMALISTA BLANCO) ---------------- */
.hero {
  position: relative;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  display: flex;
  align-items: center;
  background: var(--bg-surface-50);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-pretitle {
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  margin-bottom: 1.4rem;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

/* Fila de Pilares Rápidos en Hero */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--sapphire-light);
  border: 1px solid var(--sapphire-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sapphire-800);
}

.trust-text h4 {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-heading);
}

.trust-text p {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Hero Visual: Tarjeta Minimalista Blanca */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card-master {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.card-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sapphire-800);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sapphire-600);
}

.hero-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--bg-surface-50);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.feature-row:hover {
  background: #FFFFFF;
  border-color: var(--sapphire-700);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

.feature-row-icon {
  color: var(--sapphire-800);
  font-size: 1.25rem;
  line-height: 1;
  padding-top: 2px;
}

.feature-row-info h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}

.feature-row-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.hero-metric-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sapphire-light);
  border: 1px solid var(--sapphire-border);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.2rem;
}

.metric-number {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--sapphire-900);
}

.metric-label {
  font-size: 0.78rem;
  color: var(--sapphire-950);
  text-align: right;
  line-height: 1.35;
}

/* ---------------- SPOTS PUBLICITARIOS INTERACTIVOS (MINIMALISTA) ---------------- */
.spots-section {
  padding: 6rem 0;
  background: #FFFFFF;
  position: relative;
}

.spots-player-container {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
}

.spots-nav-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.spot-tab-btn {
  background: var(--bg-surface-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.95rem 1rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.spot-tab-btn .tab-index {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sapphire-700);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}

.spot-tab-btn .tab-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-body);
  line-height: 1.3;
}

.spot-tab-btn:hover {
  background: var(--sapphire-light);
  border-color: var(--sapphire-border);
}

.spot-tab-btn.active {
  background: var(--sapphire-light);
  border-color: var(--sapphire-700);
  box-shadow: var(--shadow-sm);
}

.spot-tab-btn.active .tab-title {
  color: var(--sapphire-950);
}

.spot-tab-btn .tab-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--sapphire-grad);
  transition: width 0.1s linear;
}

.spot-tab-btn.active .tab-progress-bar {
  width: 100%;
}

.spot-viewport {
  position: relative;
  min-height: 360px;
}

.spot-slide {
  display: none;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.5rem;
  align-items: center;
  animation: fadeInSpot 0.35s ease forwards;
}

.spot-slide.active {
  display: grid;
}

@keyframes fadeInSpot {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.spot-body-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sapphire-800);
  margin-bottom: 0.85rem;
}

.spot-headline {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.22;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
}

.spot-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.spot-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.spot-point {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-heading);
  font-weight: 600;
}

.spot-point svg {
  color: var(--sapphire-700);
  flex-shrink: 0;
}

.spot-actions-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Tarjeta lateral del spot */
.spot-visual-card {
  background: var(--bg-surface-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.spot-visual-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sapphire-800);
  background: var(--sapphire-light);
  border: 1px solid var(--sapphire-border);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 1.4rem;
}

.spot-big-metric {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--sapphire-900);
  margin-bottom: 0.4rem;
}

.spot-metric-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.spot-metric-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.spot-guarantee-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--sapphire-900);
  font-weight: 600;
}

/* Controles de Spots */
.spots-controls-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-subtle);
}

.spots-playback-btns {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.spot-arrow-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--sapphire-800);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.spot-arrow-btn:hover {
  background: var(--sapphire-900);
  color: #FFFFFF;
  border-color: var(--sapphire-900);
}

.spot-auto-toggle {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 600;
}

.spot-auto-toggle:hover {
  color: var(--sapphire-800);
}

/* ---------------- PILARES ESTRATÉGICOS (MINIMALISTA BLANCO) ---------------- */
.pillars-section {
  padding: 6rem 0;
  background: var(--bg-surface-50);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.pillar-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--sapphire-border);
  box-shadow: var(--shadow-lg);
}

.pillar-badge-top {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--sapphire-light);
  color: var(--sapphire-900);
  border: 1px solid var(--sapphire-border);
}

.pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--sapphire-light);
  border: 1px solid var(--sapphire-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sapphire-800);
  margin-bottom: 1.6rem;
  transition: var(--transition);
}

.pillar-card:hover .pillar-icon-box {
  background: var(--sapphire-900);
  color: #FFFFFF;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.pillar-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.pillar-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-subtle);
}

.pillar-spec-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--text-body);
  font-weight: 600;
}

.pillar-spec-item svg {
  color: var(--sapphire-700);
  flex-shrink: 0;
}

/* ---------------- SERVICIOS TECNOLÓGICOS ---------------- */
.services-section {
  padding: 6rem 0;
  background: #FFFFFF;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--sapphire-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--sapphire-light);
  border: 1px solid var(--sapphire-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sapphire-800);
}

.service-card-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--border-subtle);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.6rem;
}

.tech-chip {
  background: var(--bg-surface-100);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  color: var(--text-body);
  font-weight: 600;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sapphire-800);
}

.service-card-link:hover {
  color: var(--sapphire-950);
  transform: translateX(4px);
}

/* ---------------- COTIZADOR INTERACTIVO (MINIMALISTA) ---------------- */
.calculator-section {
  padding: 6rem 0;
  background: var(--bg-surface-50);
  border-top: 1px solid var(--border-subtle);
}

.calculator-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.calc-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.calc-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.calc-step {
  margin-bottom: 1.8rem;
}

.calc-step-label {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sapphire-900);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 800;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.option-box {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.option-box:hover {
  background: var(--sapphire-light);
  border-color: var(--sapphire-border);
}

.option-box.selected {
  background: var(--sapphire-light);
  border-color: var(--sapphire-700);
  box-shadow: var(--shadow-sm);
}

.option-box input {
  display: none;
}

.option-radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.option-box.selected .option-radio-dot {
  border-color: var(--sapphire-800);
  background: var(--sapphire-800);
}

.option-info strong {
  display: block;
  font-size: 0.86rem;
  color: var(--text-heading);
  font-weight: 700;
}

.option-info span {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Columna Resumen Cotizador */
.calc-summary-panel {
  background: var(--bg-surface-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.summary-header {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.4rem;
}

.summary-header h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.summary-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
}

.summary-item .item-lbl {
  color: var(--text-muted);
}

.summary-item .item-val {
  font-weight: 700;
  color: var(--text-heading);
  text-align: right;
}

.summary-delivery-box {
  background: #FFFFFF;
  border: 1px solid var(--sapphire-border);
  border-radius: var(--radius-sm);
  padding: 0.95rem;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.summary-delivery-box svg {
  color: var(--sapphire-700);
  flex-shrink: 0;
}

.delivery-info h6 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sapphire-950);
}

.delivery-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------------- SECCIÓN CONTACTO & SEDE ---------------- */
.contact-section {
  padding: 6rem 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-channel-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  background: var(--bg-surface-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  transition: var(--transition);
}

.contact-channel-card:hover {
  background: #FFFFFF;
  border-color: var(--sapphire-border);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--sapphire-light);
  border: 1px solid var(--sapphire-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sapphire-800);
  flex-shrink: 0;
}

.channel-meta h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.channel-meta .channel-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  word-break: break-all;
}

.channel-meta .channel-val:hover {
  color: var(--sapphire-900);
}

.monterrey-badge-card {
  background: var(--bg-surface-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.monterrey-badge-card svg {
  color: var(--sapphire-800);
  flex-shrink: 0;
  margin-top: 3px;
}

.monterrey-badge-card h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
}

.monterrey-badge-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Formulario Minimalista */
.contact-form-box {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.45rem;
}

.form-control {
  width: 100%;
  background: var(--bg-surface-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  color: var(--text-heading);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--sapphire-700);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.12);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

/* ---------------- FOOTER (MINIMALISTA) ---------------- */
.site-footer {
  background: var(--bg-surface-50);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 1.2rem;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--sapphire-900);
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------------- BOTÓN FLOTANTE WHATSAPP ---------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floating-wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #15803D;
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(22, 163, 74, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.floating-wa-btn:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.5);
}

.floating-wa-tooltip {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-heading);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  white-space: nowrap;
}

/* ---------------- RESPONSIVE BREAKPOINTS (CERO EMPALMES) ---------------- */

/* ---------------- RESPONSIVE BREAKPOINTS (OPTIMIZACIÓN MÓVIL TOTAL) ---------------- */

/* Breakpoint 1140px: Laptops y Pantallas Medianas */
@media (max-width: 1140px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .spots-nav-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .spot-slide {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .calculator-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Breakpoint 860px: Tablets y Celulares - BARRA SUPERIOR LIMPIA */
@media (max-width: 860px) {
  .navbar {
    height: 64px;
    justify-content: space-between;
  }

  .brand-logo {
    height: 38px;
    max-width: 165px;
  }

  .menu-toggle-btn {
    padding: 0.45rem 0.95rem;
    font-size: 0.86rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Breakpoint 768px: Celulares y Pantallas Pequeñas */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Portada: Flujo y 'Deslizar para continuar' reubicado y reducido */
  .tech-cover-section {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 40px;
  }

  .tech-cover-title {
    font-size: 2.15rem;
    line-height: 1.25;
  }

  .tech-cover-subtitle {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

  .tech-cover-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .tech-cover-actions .btn {
    width: 100%;
    max-width: 320px;
    padding: 0.8rem 1.4rem;
    font-size: 0.94rem;
  }

  /* 'Deslizar para continuar' reubicado en flujo normal: CERO SOBREPOSICIÓN */
  .cover-scroll-indicator {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 2.2rem auto 0;
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
  }

  .scroll-mouse {
    width: 18px;
    height: 28px;
    border-radius: 9px;
  }

  .scroll-wheel {
    width: 3px;
    height: 6px;
    margin-top: 4px;
  }

  .scroll-text {
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  /* Hero Section */
  .hero {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-card-master {
    padding: 1.5rem 1.1rem;
  }

  /* Spots / Elígenos */
  .spots-section {
    padding: 4rem 0;
  }

  .spots-player-container {
    padding: 1.25rem 1rem;
  }

  .spots-nav-tabs {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .spot-headline {
    font-size: 1.5rem;
  }

  .spot-text {
    font-size: 0.94rem;
  }

  .spot-points-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .spot-visual-card {
    padding: 1.4rem 1rem;
  }

  .spot-big-metric {
    font-size: 2.5rem;
  }

  /* Pilares */
  .pillars-section {
    padding: 4rem 0;
  }

  .pillar-card {
    padding: 1.8rem 1.25rem;
  }

  /* Servicios */
  .services-section {
    padding: 4rem 0;
  }

  .service-card {
    padding: 1.6rem 1.2rem;
  }

  /* ================= COTIZADOR DE PROYECTOS EN CELULAR (AJUSTADO SIN DESBORDE) ================= */
  .calculator-section {
    padding: 3.5rem 0;
  }

  .calculator-wrapper {
    grid-template-columns: 1fr;
    padding: 1.25rem 0.85rem;
    border-radius: 14px;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .calc-title {
    font-size: 1.35rem;
  }

  .calc-desc {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .calc-step {
    margin-bottom: 1.25rem;
  }

  .calc-step-label {
    font-size: 0.86rem;
    gap: 0.45rem;
    flex-wrap: wrap;
  }

  .options-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    width: 100%;
  }

  .option-box {
    padding: 0.75rem 0.8rem;
    width: 100%;
    box-sizing: border-box;
  }

  .option-info strong {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .option-info span {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .calc-summary-panel {
    padding: 1.2rem 0.95rem;
    position: static;
    top: auto;
    border-radius: 12px;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .summary-header h4 {
    font-size: 1.05rem;
  }

  .summary-list {
    gap: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .summary-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    width: 100%;
  }

  .summary-item .item-lbl {
    font-size: 0.75rem;
  }

  .summary-item .item-val {
    font-size: 0.84rem;
    text-align: left;
    word-break: break-word;
  }

  .summary-delivery-box {
    padding: 0.75rem 0.85rem;
    gap: 0.6rem;
    font-size: 0.78rem;
  }

  #btnWhatsAppCalc {
    font-size: 0.92rem;
    padding: 0.75rem 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* Contacto */
  .contact-section {
    padding: 4rem 0;
  }

  .contact-form-box {
    padding: 1.6rem 1.1rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .floating-wa-tooltip {
    display: none;
  }

  /* Overlay Responsive para Celular */
  .overlay-inner-container {
    max-width: 100%;
    padding: 1.4rem 1.15rem;
    border-radius: 16px;
    gap: 1.15rem;
  }

  .overlay-header img {
    height: 32px;
  }

  .overlay-nav-link {
    font-size: 0.95rem;
    padding: 0.65rem 0.85rem;
  }
}
