/* ==========================================================================
   CONESPLAG - High-Conversion Minimalist Design System
   Aesthetic: Ultra-Clean, Modern Corporate Sanity, High-Contrast Typography
   Palette: Institutional Deep Navy (#0B2545) & Action Amber Orange (#FF7F11)
   ========================================================================== */

:root {
  /* Colors */
  --color-primary: #0B2545;
  --color-primary-dark: #07192F;
  --color-primary-light: #134074;
  --color-primary-subtle: #EEF4F8;
  
  --color-accent: #FF7F11;
  --color-accent-hover: #E06A00;
  --color-accent-yellow: #F59E0B;
  --color-accent-glow: rgba(255, 127, 17, 0.35);

  --color-cyan: #00B4D8;
  --color-cyan-hover: #0096C7;

  --color-dark: #111827;
  --color-dark-surface: #1F2937;
  
  --color-bg-body: #F8FAFC;
  --color-bg-card: #FFFFFF;
  --color-bg-alt: #F1F5F9;

  --color-text-main: #0F172A;
  --color-text-muted: #475569;
  --color-text-light: #94A3B8;
  --color-text-white: #FFFFFF;

  --color-border: #E2E8F0;
  --color-border-subtle: rgba(226, 232, 240, 0.8);
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(11, 37, 69, 0.07), 0 2px 4px -2px rgba(11, 37, 69, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(11, 37, 69, 0.08), 0 4px 6px -4px rgba(11, 37, 69, 0.04);
  --shadow-xl: 0 20px 30px -5px rgba(11, 37, 69, 0.12), 0 8px 10px -6px rgba(11, 37, 69, 0.05);
  --shadow-accent: 0 8px 24px rgba(255, 127, 17, 0.32);

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1220px;
  --nav-height: 82px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-body);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font: inherit;
}

/* Google Ads Sitelinks & Hash Anchors Scroll Margin */
section[id], article[id], .anchor-target {
  scroll-margin-top: calc(var(--nav-height) + 1.25rem);
}

.anchor-target {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-center {
  text-align: center;
}

/* Typography Helpers */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(255, 127, 17, 0.1);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

.section-tag-light {
  background: rgba(255, 255, 255, 0.15);
  color: #FFD166;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  margin-bottom: 0.85rem;
  color: var(--color-primary);
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.text-white {
  color: #FFFFFF !important;
}

.text-white-muted {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  white-space: nowrap;
}

.btn-pill {
  border-radius: var(--radius-pill);
  padding: 0.95rem 2.2rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-accent-hero {
  background: linear-gradient(135deg, #FF7F11 0%, #F59E0B 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(255, 127, 17, 0.4);
}

.btn-accent-hero:hover {
  background: linear-gradient(135deg, #E06A00 0%, #D97706 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 127, 17, 0.5);
}

.btn-dark-hero {
  background-color: var(--color-dark);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-dark-hero:hover {
  background-color: #000000;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--color-accent);
  color: #FFFFFF;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 127, 17, 0.45);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 0.7rem 1.5rem;
}

.btn-outline-dark:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.btn-secondary-white {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-pulse {
  animation: pulse-subtle 2.5s infinite;
}

@keyframes pulse-subtle {
  0% { box-shadow: 0 0 0 0 rgba(255, 127, 17, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255, 127, 17, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 127, 17, 0); }
}

/* ==========================================================================
   1. Header & Navigation (Clean Minimalist White)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  z-index: 1000;
  transition: all var(--transition-base);
}

.header.scrolled {
  height: 70px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text-main);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-accent);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* WhatsApp Header Button (Clean, Adaptado y Dinámico) */
.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-accent);
  color: #FFFFFF;
  padding: 0.52rem 1.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 127, 17, 0.3);
  transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn-whatsapp-header:hover {
  background-color: #E86F07;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 127, 17, 0.45);
}

.btn-whatsapp-header svg,
.btn-whatsapp-header .wa-btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Hamburger Trigger */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Drawer Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background-color: var(--color-primary-dark);
  color: #FFFFFF;
  padding: 2rem 1.5rem;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
  transition: right var(--transition-slow);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-close-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: auto;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  display: block;
}

.mobile-nav-link:hover {
  color: var(--color-accent);
}

.mobile-nav-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-timing-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin-top: 0.85rem;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 25, 47, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   2. Hero Section con Video Seedance 2.5
   ========================================================================== */
.hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: 5.5rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.72) 40%,
    rgba(255, 255, 255, 0.94) 85%,
    #F8FAFC 100%
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  max-width: 920px;
  margin-bottom: 2.5rem;
}

.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #FFFFFF;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-border);
}

.badge-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: #000000;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  color: #334155;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle strong {
  color: #0F172A;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Fast Assessment Bar */
.hero-fast-quote-bar {
  width: 100%;
  max-width: 1080px;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 16px 40px -8px rgba(11, 37, 69, 0.15);
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-top: 1rem;
}

.quote-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #F1F5F9;
}

.quote-bar-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-primary);
}

.quote-bar-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #047857;
  background-color: #D1FAE5;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
}

.quote-bar-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1.2fr auto;
  gap: 0.85rem;
  align-items: flex-end;
}

.quote-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.quote-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.quote-input, .quote-select {
  height: 48px;
  width: 100%;
  padding: 0 0.85rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  background-color: #F8FAFC;
  font-size: 0.92rem;
  color: var(--color-text-main);
  outline: none;
  transition: all var(--transition-fast);
}

.quote-input:focus, .quote-select:focus {
  border-color: var(--color-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.08);
}

.btn-quote-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 1.6rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background-color: var(--color-accent);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-width: max-content;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255, 127, 17, 0.35);
  transition: all var(--transition-fast);
}

.btn-quote-submit:hover {
  background-color: #E86F07;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 127, 17, 0.45);
}

.btn-quote-submit svg {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.btn-quote-submit:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   3. Trust & Metrics Bar
   ========================================================================== */
.trust-metrics-bar {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  padding: 1.75rem 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
}

.metric-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.metric-card:hover .metric-icon-box {
  transform: scale(1.08) rotate(3deg);
  background-color: var(--color-accent);
  color: #FFFFFF;
}

.metric-text {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.1;
}

.metric-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   4. Services Grid (Modern Clean Cards)
   ========================================================================== */
.section-services {
  padding: 5.5rem 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

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

.service-clean-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.service-clean-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 37, 69, 0.15);
}

.service-clean-card.featured-service {
  border: 2px solid var(--color-accent);
  position: relative;
}

.service-media-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #0B2545;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-clean-card:hover .service-img {
  transform: scale(1.04);
}

.service-badge-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 37, 69, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
}

.service-badge-pill.pill-accent {
  background: linear-gradient(135deg, #FF7F11 0%, #D97706 100%);
}

.service-clean-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.service-card-p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--color-text-main);
  line-height: 1.5;
}

.bullet-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #D1FAE5;
  color: #059669;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card-action {
  margin-top: auto;
}

/* ==========================================================================
   4.1 Metodología Científica MIP-4D
   ========================================================================== */
.section-methodology {
  padding: 5.5rem 0;
  background-color: var(--color-bg-body);
  border-top: 1px solid var(--color-border);
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

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

.methodology-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(11, 37, 69, 0.2);
}

.methodology-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.methodology-phase {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(255, 127, 17, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.methodology-icon-box {
  width: 44px;
  height: 44px;
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.methodology-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

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

.methodology-takeaway {
  font-size: 0.82rem;
  font-weight: 700;
  color: #065F46;
  background-color: #D1FAE5;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   5. Universal Interactive Carousel Engine & Macro Detail Section
   ========================================================================== */
.section-macro-detail {
  padding: 5rem 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.detail-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.detail-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Base Carousel Engine */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: inherit;
  background-color: #0B2545;
  user-select: none;
  touch-action: pan-y pinch-zoom;
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.detail-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.carousel-slide:hover .detail-img {
  transform: scale(1.02);
}

.detail-float-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(11, 37, 69, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 5;
  pointer-events: none;
}

.badge-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: #FFD166;
  line-height: 1.3;
}

.badge-sub {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3px;
  line-height: 1.4;
}

/* Controles de Navegación de Carrusel */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 37, 69, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  padding: 0;
}

.carousel-nav-btn:hover {
  background: var(--color-accent);
  color: #FFFFFF;
  border-color: var(--color-accent);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 127, 17, 0.4);
}

.carousel-nav-btn.prev {
  left: 1rem;
}

.carousel-nav-btn.next {
  right: 1rem;
}

.carousel-indicators {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(11, 37, 69, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.indicator-dot.active {
  width: 22px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(255, 127, 17, 0.6);
}

.detail-heading {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  margin-bottom: 1rem;
}

.detail-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.detail-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.detail-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.point-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-accent);
  background: rgba(255, 127, 17, 0.12);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-body h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.point-body p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   5.1 Equipamiento e Insumos Sanitarios Certificados
   ========================================================================== */
.section-equipment {
  padding: 5.5rem 0;
  background-color: #F8FAFC;
  border-bottom: 1px solid var(--color-border);
}

/* Banner de Equipamiento Certificado en Carrusel en Bucle */
.equipment-showcase-wrap {
  margin-top: 2.75rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.equipment-carousel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 45px -12px rgba(11, 37, 69, 0.18);
  border: 1px solid var(--color-border);
}

.equipment-showcase-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.carousel-slide:hover .equipment-showcase-img {
  transform: scale(1.02);
}

.equipment-showcase-badge {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  right: 1.75rem;
  background: rgba(11, 37, 69, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 1.15rem 1.45rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  z-index: 5;
  pointer-events: none;
}

.equipment-showcase-badge .badge-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: #FFD166;
  line-height: 1.3;
}

.equipment-showcase-badge .badge-sub {
  display: block;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
  line-height: 1.45;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.equipment-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.equipment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 127, 17, 0.4);
}

.equipment-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.equipment-icon-badge {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.equipment-norm-pill {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background-color: rgba(11, 37, 69, 0.08);
  color: var(--color-primary);
}

.equipment-norm-pill.pill-green {
  background-color: #D1FAE5;
  color: #065F46;
}

.equipment-norm-pill.pill-orange {
  background-color: rgba(255, 127, 17, 0.12);
  color: var(--color-accent);
}

.equipment-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

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

.equipment-meta {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.equipment-meta strong {
  color: var(--color-primary);
}

/* ==========================================================================
   6. Sección Asesoramiento: Carrusel Habilitantes + Bloque Dividido
   ========================================================================== */
.section-asesoramiento {
  padding-top: 0;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* ==========================================================================
   Cintas Dinámicas de Alto Impacto: Eliminamos (Plagas) & Zonas
   ========================================================================== */
.ticker-ribbons-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 3.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.marquee-ribbon {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 52px;
  overflow: hidden;
}

.ribbon-eliminamos {
  background: linear-gradient(90deg, #07192F 0%, #0B2545 50%, #07192F 100%);
  border-top: 1px solid rgba(0, 180, 216, 0.25);
  border-bottom: 1px solid rgba(255, 127, 17, 0.2);
}

.ribbon-zonas {
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.ribbon-label-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 1.25rem 0 1.5rem;
  z-index: 10;
  height: 100%;
}

.ribbon-eliminamos .ribbon-label-container {
  background: linear-gradient(90deg, #07192F 82%, transparent 100%);
}

.ribbon-zonas .ribbon-label-container {
  background: linear-gradient(90deg, #F8FAFC 82%, transparent 100%);
}

.ribbon-label-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.label-pill-cyan {
  background: #0077B6;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.label-pill-dot {
  width: 7px;
  height: 7px;
  background-color: #FF7F11;
  border-radius: 50%;
  box-shadow: 0 0 8px #FF7F11;
  animation: beacon-pulse 2s infinite;
}

.label-pill-blue {
  background: #0B2545;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.label-pill-icon {
  font-size: 0.9rem;
}

.ribbon-scroll-area {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 25px, black calc(100% - 25px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25px, black calc(100% - 25px), transparent 100%);
}

.ribbon-scroll-track {
  display: flex;
  width: max-content;
  user-select: none;
}

.track-eliminamos {
  animation: marquee-flow-left 32s linear infinite;
  will-change: transform;
}

.track-zonas {
  animation: marquee-flow-left 36s linear infinite;
  will-change: transform;
}

.ribbon-scroll-area:hover .ribbon-scroll-track {
  animation-play-state: paused;
}

.ribbon-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-right: 0.85rem;
}

/* Individual Ticker Chips / Pills */
.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.chip-icon {
  font-size: 1.05rem;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dark Ribbon Chips (Eliminamos) */
.chip-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}

.chip-dark:hover {
  background: linear-gradient(135deg, rgba(255, 127, 17, 0.3) 0%, rgba(11, 37, 69, 0.95) 100%);
  border-color: #FF7F11;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 6px 18px rgba(255, 127, 17, 0.4), 0 0 10px rgba(255, 127, 17, 0.3);
}

.chip-dark:hover .chip-icon {
  transform: scale(1.25) rotate(-10deg);
}

/* Light Ribbon Chips (Zonas) */
.chip-light {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: #0B2545;
}

.chip-light:hover {
  background: #FFFFFF;
  border-color: #00B4D8;
  color: #FF7F11;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.3);
}

@keyframes marquee-flow-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.habilitantes-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.habilitantes-divider-line {
  flex-grow: 1;
  height: 1.5px;
  background-color: #111827;
  max-width: 180px;
}

.habilitantes-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #111827;
  text-transform: uppercase;
}

.habilitantes-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 4.5rem auto;
  overflow: hidden;
  padding: 1rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.habilitantes-carousel-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee-infinite 22s linear infinite;
  will-change: transform;
}

.habilitantes-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

.habilitante-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  min-width: 110px;
  padding: 0.25rem 0.75rem;
  transition: transform var(--transition-fast);
}

.habilitante-item:hover {
  transform: translateY(-2px) scale(1.06);
}

.habilitante-logo {
  max-height: 56px;
  max-width: 135px;
  object-fit: contain;
  filter: grayscale(12%) contrast(102%);
  transition: filter var(--transition-fast);
}

.habilitante-item:hover .habilitante-logo {
  filter: grayscale(0%) contrast(110%);
}

/* Asesoramiento Bloque Dividido (Split Section - Foto Izq Oscura / Der Dorada) */
.asesoramiento-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 640px;
}

.split-col {
  padding: 4.5rem 3.5rem;
  display: flex;
  align-items: center;
  position: relative;
}

/* Columna Izquierda: Dark Skyscrapers */
.split-col-dark {
  background: linear-gradient(135deg, rgba(7, 25, 47, 0.95) 0%, rgba(11, 37, 69, 0.92) 100%),
              url('https://pub-03f6e6e8a8bb4020bffc3204e04d7a24.r2.dev/assets/commercial-b2b.jpg') center/cover no-repeat;
  color: #FFFFFF;
}

/* Columna Derecha: Warm Golden Warehouse */
.split-col-gold {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.94) 0%, rgba(217, 119, 6, 0.95) 100%),
              url('https://pub-03f6e6e8a8bb4020bffc3204e04d7a24.r2.dev/assets/technical-inspection.jpg') center/cover no-repeat;
  color: #111827;
}

.split-col-content {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}

.split-title {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #FFFFFF;
}

.split-title-dark {
  color: #111827 !important;
}

.split-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 2.5rem;
}

.split-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
}

.split-list-dark li {
  color: rgba(255, 255, 255, 0.95);
}

.split-list-gold li {
  color: #111827;
  font-weight: 700;
}

.split-icon {
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
}

.split-icon-badge {
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
}

/* Split Action Buttons */
.btn-split-cyan {
  background-color: var(--color-cyan);
  color: #FFFFFF;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.35);
}

.btn-split-cyan:hover {
  background-color: var(--color-cyan-hover);
  transform: translateY(-2px);
}

.btn-split-dark {
  background-color: #1F2937;
  color: #FFFFFF;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-split-dark:hover {
  background-color: #000000;
  transform: translateY(-2px);
}

/* ==========================================================================
   7. Fleet & Áreas de Cobertura Section (Sin texto sobre van)
   ========================================================================== */
.section-fleet-coverage {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #07192F 0%, #0B2545 100%);
  color: #FFFFFF;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.fleet-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.fleet-van-img {
  width: 100%;
  height: auto;
  display: block;
}

.coverage-zones-title {
  color: #FFFFFF;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.coverage-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.zone-box {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--transition-fast);
}

.zone-box:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.zone-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #FFD166;
  background: rgba(255, 209, 102, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
}

.zone-box h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.zone-box p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
}

.coverage-emergency-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 127, 17, 0.15);
  border: 1.5px solid var(--color-accent);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.emergency-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ==========================================================================
   8. Comparison Table (Por qué confiar en CONESPLAG)
   ========================================================================== */
.section-comparison {
  padding: 5.5rem 0;
  background-color: #FFFFFF;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px -2px rgba(11, 37, 69, 0.06);
  background-color: #FFFFFF;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table th, 
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.comparison-table th {
  background-color: #F8FAFC;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-primary);
  font-size: 1rem;
}

.comparison-table th.col-highlight {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.th-criterio {
  width: 30%;
}

.th-conesplag {
  width: 40%;
}

.th-informal {
  width: 30%;
}

.col-conesplag {
  background-color: rgba(16, 185, 129, 0.05);
  color: #065F46;
  font-weight: 600;
}

.col-informal {
  color: #991B1B;
}

.table-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  margin-right: 8px;
  flex-shrink: 0;
  vertical-align: middle;
}

.check-icon {
  background-color: rgba(16, 185, 129, 0.15);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.cross-icon {
  background-color: rgba(239, 68, 68, 0.12);
  color: #B91C1C;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.desktop-text {
  display: inline;
}

.mobile-text {
  display: none;
}

/* Botón de Conversión Destacado para la Comparativa */
.comparison-cta-box {
  margin-top: 2.25rem;
  display: flex;
  justify-content: center;
}

.comparison-cta-box .btn {
  padding: 1rem 2rem;
  font-size: 0.98rem;
  box-shadow: 0 8px 24px -4px rgba(255, 127, 17, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.comparison-cta-box .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(255, 127, 17, 0.45);
}

/* ==========================================================================
   9. Blog Section & Multi-Card Carousel
   ========================================================================== */
.section-blog {
  padding: 5.5rem 0;
  background-color: var(--color-bg-alt);
}

.blog-carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 1.5rem;
}

.blog-carousel {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0 1.25rem;
}

.blog-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.blog-card {
  flex: 0 0 calc((100% - 2 * 1.5rem) / 3);
  max-width: calc((100% - 2 * 1.5rem) / 3);
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  box-sizing: border-box;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px -8px rgba(11, 37, 69, 0.12);
  border-color: rgba(255, 127, 17, 0.35);
}

.blog-media {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-img {
  transform: scale(1.06);
}

.blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 37, 69, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.blog-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-card-title {
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-accent);
  transition: gap var(--transition-fast);
}

.blog-link:hover {
  color: var(--color-accent-hover);
  gap: 0.65rem;
}

/* Controles de Navegación del Carrusel del Blog */
.blog-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  box-shadow: 0 6px 20px rgba(11, 37, 69, 0.12);
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.blog-nav-btn:hover {
  background: var(--color-accent);
  color: #FFFFFF;
  border-color: var(--color-accent);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(255, 127, 17, 0.4);
}

.blog-nav-btn.prev {
  left: -1.4rem;
}

.blog-nav-btn.next {
  right: -1.4rem;
}

.blog-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 1.75rem;
}

.blog-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(11, 37, 69, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-dot.active {
  width: 26px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(255, 127, 17, 0.5);
}

/* ==========================================================================
   10. FAQ Accordion (AI Search & Rich Snippets Optimization)
   ========================================================================== */
.section-faq {
  padding: 5.5rem 0;
  background-color: #F8FAFC;
  border-top: 1px solid var(--color-border);
}

.faq-accordion-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(11, 37, 69, 0.25);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(255, 127, 17, 0.1);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.75rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question-btn:hover {
  color: var(--color-accent);
}

.faq-arrow-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-arrow-icon {
  transform: rotate(180deg);
}

.faq-answer-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer-body {
  max-height: 300px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer-body p {
  color: var(--color-text-main);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   11. Contact Form
   ========================================================================== */
.section-contacto {
  padding: 5.5rem 0;
  background-color: #FFFFFF;
}

.form-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.form-input, .form-select {
  width: 100%;
  height: 50px;
  padding: 0 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  background-color: #F8FAFC;
  outline: none;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus {
  border-color: var(--color-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.08);
}

.form-notice {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

.form-success-message {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.form-success-message.visible {
  display: block;
}

/* ==========================================================================
   11. Footer
   ========================================================================== */
.footer {
  background-color: #07192F;
  color: #FFFFFF;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h5 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal-badge {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   12. Floating Elements UX
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  text-decoration: none;
  z-index: 990;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Burbuja blanca: ¿Necesitas ayuda? */
.wa-help-bubble {
  background-color: #FFFFFF;
  color: #111827;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.6rem 1.15rem;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  letter-spacing: -0.01em;
  line-height: 1.25;
  user-select: none;
  pointer-events: auto;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

/* Botón Circular WhatsApp */
.wa-btn-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.wa-btn-circle svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
  display: block;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-whatsapp:hover .wa-btn-circle {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp:hover .wa-help-bubble {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.16);
}

.scroll-top-btn {
  position: fixed;
  bottom: 6.4rem;
  right: 2.45rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: var(--color-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: all var(--transition-fast);
  z-index: 980;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(7, 25, 47, 0.25);
}

.mobile-sticky-bar {
  display: none;
}

/* ==========================================================================
   13. Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1149px) {
  .quote-bar-form {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .btn-quote-submit {
    grid-column: 1 / -1;
    width: 100%;
    height: 50px;
    font-size: 0.95rem;
    justify-content: center;
    white-space: normal;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .detail-flex {
    grid-template-columns: 1fr;
  }

  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .asesoramiento-split-container {
    grid-template-columns: 1fr;
  }

  .split-col {
    padding: 3.5rem 2rem;
  }

  .blog-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
  }

  .blog-nav-btn.prev {
    left: -0.65rem;
  }

  .blog-nav-btn.next {
    right: -0.65rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .nav-wrapper {
    gap: 0.5rem;
    padding: 0 1rem;
  }

  .brand-link {
    gap: 0.5rem;
    min-width: 0;
  }

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

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-tagline {
    font-size: 0.62rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .btn-whatsapp-header {
    padding: 0.42rem 0.8rem;
    font-size: 0.8rem;
    gap: 0.35rem;
  }

  .btn-whatsapp-header svg,
  .btn-whatsapp-header .wa-btn-icon {
    width: 16px;
    height: 16px;
  }

  .btn {
    white-space: normal;
    max-width: 100%;
  }

  /* Hero Section: Máxima Optimización de Espacio en Pantalla Móvil */
  .hero {
    min-height: auto;
    display: block;
    padding-top: calc(var(--nav-height) + 0.85rem);
    padding-bottom: 2rem;
  }

  .hero-container {
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .hero-content {
    margin-bottom: 1.25rem;
    max-width: 100%;
  }

  .hero-eyebrow-badge {
    font-size: 0.76rem;
    padding: 0.35rem 0.85rem;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
  }

  .hero-title {
    font-size: clamp(1.6rem, 6.8vw, 2.15rem);
    line-height: 1.14;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.48;
    margin-bottom: 1.25rem;
    color: #475569;
    padding: 0 0.25rem;
  }

  .hero-ctas {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
  }

  .hero-ctas .btn {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.92rem;
    justify-content: center;
    letter-spacing: 0.02em;
    box-sizing: border-box;
    text-align: center;
  }

  /* Barra de Cotización Rápida en Hero */
  .hero-fast-quote-bar {
    padding: 1.15rem 1rem;
    border-radius: var(--radius-lg);
    margin-top: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .quote-bar-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
  }

  .quote-bar-title {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .quote-bar-badge {
    font-size: 0.74rem;
  }

  .quote-bar-form {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    width: 100%;
  }

  .quote-input-group {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .quote-label {
    font-size: 0.78rem;
    margin-bottom: 0.25rem;
  }

  .quote-input,
  .quote-select {
    width: 100%;
    max-width: 100%;
    height: 46px;
    font-size: 0.9rem;
    padding: 0 0.85rem;
    box-sizing: border-box;
  }

  .btn-quote-submit {
    grid-column: span 1;
    width: 100%;
    height: 48px;
    font-size: 0.9rem;
    justify-content: center;
    margin-top: 0.25rem;
    padding: 0 0.85rem;
    white-space: normal;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }

  .services-modern-grid {
    grid-template-columns: 1fr;
  }

  .methodology-grid {
    grid-template-columns: 1fr;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  /* Cintas Dinámicas Móvil */
  .marquee-ribbon {
    height: 46px;
  }

  .ribbon-label-container {
    padding: 0 0.6rem 0 0.8rem;
  }

  .ribbon-label-pill {
    padding: 0.25rem 0.6rem;
    font-size: 0.72rem;
  }

  .ticker-chip {
    font-size: 0.76rem;
    padding: 0.25rem 0.7rem;
    gap: 0.35rem;
  }

  .chip-icon {
    font-size: 0.9rem;
  }

  /* Carrusel Habilitantes Móvil */
  .habilitantes-carousel-wrapper {
    margin-bottom: 3rem;
    padding: 0.5rem 0;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .habilitantes-carousel-track {
    gap: 2.2rem;
    animation-duration: 18s;
  }

  .habilitante-item {
    height: 52px;
    min-width: 85px;
    padding: 0.2rem 0.5rem;
  }

  .habilitante-logo {
    max-height: 42px;
    max-width: 100px;
  }

  .coverage-cards-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .blog-nav-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.15);
  }

  .blog-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .blog-nav-btn.prev {
    left: 0.25rem;
  }

  .blog-nav-btn.next {
    right: 0.25rem;
  }

  .blog-indicators {
    margin-top: 1.25rem;
  }

  /* ==========================================================================
     Carrusel y Tabla Comparativa Responsiva en Móvil (Cero Desborde Horizontal)
     ========================================================================== */
  .detail-flex {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .detail-media {
    max-width: 100%;
  }

  .detail-img {
    height: 310px;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .equipment-showcase-wrap {
    margin-top: 1.5rem;
    margin-bottom: 2.25rem;
  }

  .equipment-showcase-img {
    height: 300px;
  }

  .carousel-nav-btn {
    width: 36px;
    height: 36px;
  }

  .carousel-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .carousel-nav-btn.prev {
    left: 0.5rem;
  }

  .carousel-nav-btn.next {
    right: 0.5rem;
  }

  .carousel-indicators {
    top: 0.75rem;
    right: 0.75rem;
    padding: 4px 8px;
  }

  .detail-float-badge,
  .equipment-showcase-badge {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
  }

  .detail-float-badge .badge-title,
  .equipment-showcase-badge .badge-title {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .detail-float-badge .badge-sub,
  .equipment-showcase-badge .badge-sub {
    font-size: 0.72rem;
    line-height: 1.3;
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Tabla Comparativa en Móvil: Cero Scroll Horizontal, Totalmente Adaptada */
  .section-comparison {
    padding: 3.5rem 0;
  }

  .comparison-table-wrapper {
    overflow-x: hidden !important;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(11, 37, 69, 0.08);
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .comparison-table {
    table-layout: fixed;
    width: 100% !important;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .desktop-text {
    display: none !important;
  }

  .mobile-text {
    display: inline !important;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.65rem 0.4rem;
    word-break: break-word;
    overflow-wrap: break-word;
    vertical-align: top;
    box-sizing: border-box;
  }

  .comparison-table th {
    font-size: 0.76rem;
    padding: 0.65rem 0.35rem;
    text-align: center;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    text-align: left;
    padding-left: 0.55rem;
  }

  .th-criterio, .td-criterio {
    width: 29% !important;
    font-weight: 700;
    color: var(--color-primary);
  }

  .th-conesplag, .col-conesplag {
    width: 39% !important;
    background-color: rgba(16, 185, 129, 0.07);
    color: #065F46;
  }

  .th-informal, .col-informal {
    width: 32% !important;
    color: #7F1D1D;
    background-color: rgba(239, 68, 68, 0.02);
  }

  .table-icon {
    width: 17px;
    height: 17px;
    font-size: 10px;
    margin-right: 3px;
    display: inline-flex;
    vertical-align: middle;
  }

  .comparison-cta-box {
    margin-top: 1.5rem;
    width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
  }

  .comparison-cta-box .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    font-size: 0.86rem;
    padding: 0.85rem 1rem;
    line-height: 1.3;
    text-align: center;
    box-sizing: border-box;
  }

  /* ==========================================================================
     Formulario de Contacto y CTA Principal Móvil (Corrección de Desborde)
     ========================================================================== */
  .section-contacto {
    padding: 3.5rem 0;
  }

  .section-contacto .section-header {
    margin-bottom: 1.75rem;
  }

  .form-wrapper {
    padding: 1.35rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .form-group {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-label {
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
  }

  .form-input,
  .form-select {
    width: 100%;
    max-width: 100%;
    height: 48px;
    padding: 0 0.85rem;
    font-size: 0.92rem;
    box-sizing: border-box;
    border-radius: var(--radius-md);
  }

  .section-contacto button[type="submit"],
  .form-grid button[type="submit"],
  .section-contacto .btn-lg {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    padding: 0.95rem 1rem !important;
    font-size: 0.92rem !important;
    line-height: 1.3 !important;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    box-sizing: border-box !important;
    border-radius: var(--radius-pill);
  }

  .section-contacto .btn-lg svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
  }

  .form-notice {
    font-size: 0.76rem;
    margin-top: 0.6rem;
    padding: 0 0.5rem;
    line-height: 1.35;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    bottom: 5.5rem;
    right: 1rem;
    gap: 0.55rem;
    width: auto;
    height: auto;
    padding: 0;
  }

  .wa-help-bubble {
    font-size: 0.82rem;
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
  }

  .wa-btn-circle {
    width: 50px;
    height: 50px;
  }

  .wa-btn-circle svg {
    width: 28px;
    height: 28px;
  }

  /* Scroll to top en móvil: a la derecha, encima del botón flotante de WhatsApp */
  .scroll-top-btn {
    bottom: 9.6rem;
    right: 1.32rem;
    width: 40px;
    height: 40px;
  }

  /* Mobile Sticky Bottom Action Bar */
  .mobile-sticky-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }

  .mobile-sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0.6rem 0.25rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-primary);
  }

  .mobile-sticky-btn.btn-wa {
    background-color: #25D366;
    color: #FFFFFF;
  }

  .mobile-sticky-btn.btn-quote {
    background-color: var(--color-accent);
    color: #FFFFFF;
  }
}

@media (max-width: 480px) {
  .brand-tagline {
    display: none;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-logo {
    height: 34px;
    width: 34px;
  }

  .btn-whatsapp-header {
    padding: 0.38rem 0.68rem;
    font-size: 0.76rem;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 0.65rem);
    padding-bottom: 1.75rem;
  }

  .hero-eyebrow-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
    gap: 0.35rem;
    margin-bottom: 0.6rem;
  }

  .hero-title {
    font-size: clamp(1.45rem, 7vw, 1.8rem);
    line-height: 1.15;
    margin-bottom: 0.6rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    line-height: 1.42;
    margin-bottom: 1rem;
  }

  .hero-ctas {
    gap: 0.55rem;
    margin-bottom: 1rem;
  }

  .hero-ctas .btn {
    padding: 0.75rem 1rem;
    font-size: 0.86rem;
  }

  .hero-fast-quote-bar {
    padding: 1rem 0.85rem;
  }

  .btn-quote-submit {
    font-size: 0.86rem;
    padding: 0 0.75rem;
    height: 48px;
  }

  .form-wrapper {
    padding: 1.15rem 0.85rem;
  }

  .form-input, .form-select {
    height: 46px;
    font-size: 0.88rem;
    padding: 0 0.75rem;
  }

  .section-contacto button[type="submit"],
  .form-grid button[type="submit"],
  .section-contacto .btn-lg {
    padding: 0.85rem 0.75rem !important;
    font-size: 0.86rem !important;
  }

  /* Ajuste ultra-compacto para pantallas estrechas <= 480px */
  .detail-img {
    height: 250px;
  }

  .equipment-showcase-img {
    height: 240px;
  }

  .carousel-nav-btn {
    width: 32px;
    height: 32px;
  }

  .carousel-nav-btn svg {
    width: 15px;
    height: 15px;
  }

  .carousel-indicators {
    top: 0.5rem;
    right: 0.5rem;
    padding: 3px 6px;
    gap: 4px;
  }

  .indicator-dot {
    width: 6px;
    height: 6px;
  }

  .indicator-dot.active {
    width: 16px;
  }

  .detail-float-badge,
  .equipment-showcase-badge {
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    padding: 0.5rem 0.65rem;
  }

  .detail-float-badge .badge-title,
  .equipment-showcase-badge .badge-title {
    font-size: 0.74rem;
  }

  .detail-float-badge .badge-sub,
  .equipment-showcase-badge .badge-sub {
    font-size: 0.66rem;
    -webkit-line-clamp: 2;
  }

  .comparison-table {
    font-size: 0.70rem;
    line-height: 1.3;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.55rem 0.22rem;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    padding-left: 0.35rem;
  }

  .th-criterio, .td-criterio {
    width: 28% !important;
    font-size: 0.69rem;
  }

  .th-conesplag, .col-conesplag {
    width: 40% !important;
    font-size: 0.70rem;
  }

  .th-informal, .col-informal {
    width: 32% !important;
    font-size: 0.69rem;
  }

  .table-icon {
    width: 15px;
    height: 15px;
    font-size: 9px;
    margin-right: 2px;
  }

  .comparison-cta-box .btn {
    font-size: 0.78rem;
    padding: 0.75rem 0.65rem;
    letter-spacing: 0.01em;
  }
}

@media (max-width: 370px) {
  .btn-whatsapp-header .wa-btn-text {
    display: none;
  }

  .btn-whatsapp-header {
    width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .btn-whatsapp-header svg,
  .btn-whatsapp-header .wa-btn-icon {
    width: 18px;
    height: 18px;
  }

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

  .hero-eyebrow-badge {
    font-size: 0.68rem;
    padding: 0.25rem 0.6rem;
  }

  .hero-ctas .btn {
    font-size: 0.82rem;
    padding: 0.7rem 0.85rem;
  }

  .btn-quote-submit {
    font-size: 0.8rem;
    padding: 0 0.5rem;
    gap: 0.35rem;
  }

  .form-wrapper {
    padding: 1rem 0.65rem;
  }

  .section-contacto button[type="submit"],
  .form-grid button[type="submit"],
  .section-contacto .btn-lg {
    font-size: 0.82rem !important;
    padding: 0.8rem 0.5rem !important;
  }
}

/* ==========================================================================
   14. Ultra-Premium Motion & Frontend Design System
   Philosophy: Deliberate, High-Impact Choreography, Zero Generic AI Fluff
   ========================================================================== */

/* Reading / Scroll Depth Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-accent) 0%, #FFB703 50%, var(--color-cyan) 100%);
  z-index: 1001;
  transition: width 0.1s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(255, 127, 17, 0.7);
  pointer-events: none;
}

/* Scroll-Driven Reveal System (IntersectionObserver) */
.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Stagger Delays */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* Hero Choreography */
.hero-eyebrow-badge {
  animation: badge-reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title {
  animation: title-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-subtitle {
  animation: fade-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.hero-ctas {
  animation: fade-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

.hero-fast-quote-bar {
  animation: quote-bar-reveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both;
}

@keyframes badge-reveal {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes title-reveal {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-reveal {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes quote-bar-reveal {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulsing Status Beacon */
.badge-pulse-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: beacon-pulse 2.2s infinite;
  vertical-align: middle;
  margin-right: 0.45rem;
}

@keyframes beacon-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 9px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Primary Button Light Sweep (Shimmer Effect) */
.btn-accent-hero {
  position: relative;
  overflow: hidden;
}

.btn-accent-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 35%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: button-shimmer 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes button-shimmer {
  0%, 75% { left: -60%; }
  92%, 100% { left: 130%; }
}

/* Button Micro-Interactions */
.btn:hover svg,
.btn:hover .wa-btn-icon {
  transform: translateX(3px);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pulse {
  animation: gentle-heartbeat 3.5s infinite;
}

@keyframes gentle-heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Equipment Showcase Banner */
.equipment-showcase-wrap {
  margin-bottom: 3.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  border: 1px solid rgba(11, 37, 69, 0.12);
  background-color: #07192F;
}

.equipment-showcase-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.equipment-showcase-wrap:hover .equipment-showcase-img {
  transform: scale(1.03);
}

.equipment-showcase-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(7, 25, 47, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 1.35rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Card Enhancements & Image Scales */
.service-clean-card {
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.service-clean-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -8px rgba(11, 37, 69, 0.15);
  border-color: rgba(255, 127, 17, 0.4);
}

.service-img {
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-clean-card:hover .service-img {
  transform: scale(1.05);
}

.blog-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px -6px rgba(11, 37, 69, 0.12);
}

.blog-img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img {
  transform: scale(1.06);
}

.blog-link:hover svg {
  transform: translateX(5px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating WhatsApp Circular Pulse Aura */
.wa-btn-circle::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.8;
  animation: wa-pulse-ring 2.8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  pointer-events: none;
}

@keyframes wa-pulse-ring {
  0% { transform: scale(0.96); opacity: 0.8; }
  65% { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}

/* Comparison Table Row Highlight */
.comparison-table tbody tr {
  transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
  background-color: rgba(11, 37, 69, 0.035);
}

/* Metric Number Active Glow */
.metric-number.is-animated {
  color: var(--color-accent);
  transition: color 0.4s ease;
}

/* ==========================================================================
   15. Advanced Floating Elements, 3D Glare & Ambient Atmosphere
   ========================================================================== */

/* Ambient Luminous Backlight Orbs */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.32;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

.orb-amber {
  top: 15%;
  left: 8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #FF7F11 0%, rgba(255, 127, 17, 0) 70%);
  animation: orb-drift-1 12s ease-in-out infinite alternate;
}

.orb-cyan {
  bottom: 8%;
  right: 6%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, #00B4D8 0%, rgba(0, 180, 216, 0) 70%);
  animation: orb-drift-2 15s ease-in-out infinite alternate;
}

@keyframes orb-drift-1 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(55px, 35px, 0) scale(1.15); }
}

@keyframes orb-drift-2 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-45px, -30px, 0) scale(1.1); }
}

/* Methodology Connecting Track Line */
.methodology-grid-wrapper {
  position: relative;
}

.methodology-track-line {
  position: absolute;
  top: 48px;
  left: 6%;
  right: 6%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-cyan) 50%, #10B981 100%);
  border-radius: var(--radius-pill);
  opacity: 0.35;
  z-index: 0;
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.5);
}

@media (max-width: 1024px) {
  .methodology-track-line {
    display: none;
  }
}

/* Live Status Radar Ping */
.live-radar-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: radar-ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
  vertical-align: middle;
  margin-right: 5px;
  flex-shrink: 0;
}

@keyframes radar-ping {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}


/* 3D Dynamic Cursor Glare on Cards */
.service-clean-card,
.methodology-card,
.equipment-card,
.blog-card {
  position: relative;
  transform-style: preserve-3d;
}

.service-clean-card::before,
.methodology-card::before,
.equipment-card::before,
.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(
    520px circle at var(--glare-x, 50%) var(--glare-y, 50%),
    rgba(255, 255, 255, 0.16),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 3;
}

.service-clean-card:hover::before,
.methodology-card:hover::before,
.equipment-card:hover::before,
.blog-card:hover::before {
  opacity: 1;
}

/* Scroll Depth Progress Meter */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, #FF7F11 0%, #00B4D8 50%, #10B981 100%);
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.8), 0 0 5px rgba(255, 127, 17, 0.6);
  z-index: 10000;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ==========================================================================
   16. Advanced Scroll Animations & Fluid Entrances
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll.reveal-scale {
  transform: scale(0.95) translateY(24px);
}

.reveal-on-scroll.reveal-scale.is-revealed {
  transform: scale(1) translateY(0);
}

/* Stagger Entrance Timing */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* Dynamic Methodology Connecting Track line */
.methodology-track-line {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.methodology-track-line.active {
  transform: scaleX(1);
}

/* Shimmer Light Sweep on Primary CTAs */
.btn-primary,
.btn-accent-hero {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 35%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: button-shimmer 6s ease-in-out infinite;
  pointer-events: none;
}

/* Card 3D Perspective Tilt Physics */
.service-clean-card,
.methodology-card,
.equipment-card,
.blog-card {
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

/* Accessibility: Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
  .btn-accent-hero::after,
  .btn-primary::after,
  .floating-whatsapp::before,
  .wa-btn-circle::before,
  .badge-pulse-dot,
  .live-radar-dot,
  .ambient-orb,
  .methodology-track-line,
  .track-eliminamos,
  .track-zonas {
    animation: none !important;
    transform: none !important;
  }
}


