  :root {
    --black: #1D1D1B;
    --pink: #E867C5;
    --cyan: #6AD9E0;
    --purple-light: #AC9DD2;
    --blue-light: #92B4D7;
    --white: #FFFFFF;
    --surface: #252523;
    --surface2: #2E2E2B;
    --bg-light: #1a1a1a;
    --bg-darkmode-light: #707070;
    --grad: linear-gradient(90deg, #E867C5, #6AD9E0);
    --border: rgba(255,255,255,0.07);
  }

  /* Clases de utilidad para fondos */
  .bg-dark { background-color: var(--black); }
  .bg-surface { background-color: var(--surface); }
  .bg-light { background-color: var(--bg-light); }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  html, body {
  overflow-x: hidden;
  width: 100%;
}
  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    line-height: 1.6;
  }

  /* Estructura */
  .section-container { 
  width: 100%; 
  padding: 100px 0px; /* Padding aplicado directamente aquí */
  position: relative; 
}
  .content-inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0; /* Ya no necesita padding, lo hereda del padre */
}
  /* DIVIDER */
  .divider {
    height: 1px; background: var(--border);
    margin: 0 60px;
    /* Máscara webkit para navegadores basados en Chrome/Safari */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  
  /* Máscara estándar */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }
  /* DIVIDER grad*/
.divider-grad {
  height: 1px; 
  background: var(--grad);
  margin: 0 60px;
  
  /* Máscara webkit para navegadores basados en Chrome/Safari */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  
  /* Máscara estándar */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.divider-claim {
   height: 1px; background: #7c7c7c;
}
   /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 60px;
    background: rgba(29,29,27,0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
  }
  nav img.logo { height: 44px; }
  nav .nav-links { display: flex; gap: 32px; align-items: center; }
  nav .nav-links a {
    color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: 14px; font-weight: 600; letter-spacing: 0.03em;
    transition: color .2s;
  }
  nav .nav-links a:hover { color: var(--cyan); }
  nav .cta-nav {
    background: var(--cyan);
    color: var(--black); font-weight: 700; font-size: 14px;
    padding: 10px 22px; border-radius: 50px;
    text-decoration: none; transition: opacity .2s; white-space: nowrap;
  }
  nav .cta-nav:hover { opacity: 0.85; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 60px 80px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 70% 40%, rgba(108,64,200,0.15) 0%, transparent 70%),
                radial-gradient(ellipse 50% 50% at 20% 80%, rgba(232,103,197,0.1) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 80% 80%, rgba(106,217,224,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
.hero .subtitle strong {
  display: inline-block;
}


  .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,103,197,0.12); border: 1px solid rgba(232,103,197,0.3);
    border-radius: 50px; padding: 6px 16px; margin-bottom: 28px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--pink);
  }
  .hero-badge span.dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--pink); display: inline-block;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }
  .hero h1 {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.02em; margin-bottom: 24px;
  }
  .hero h1 .grad-text {
    background: var(--grad); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
  }
  .hero .subtitle {
    font-size: 17px; color: rgba(255,255,255,0.7);
    line-height: 1.7; margin-bottom: 16px; max-width: 600px;
  }
  .hero .subtitle2 p{
    font-size: 10px; color: rgba(255,255,255,0.5);
    line-height: 1.7; margin-bottom: 36px; max-width: 520px;
  }
  .hero-bullets {
    list-style: none; margin-bottom: 44px; display: flex; flex-direction: column; gap: 10px;
  }
  .hero-bullets li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.5;
  }
  .hero-bullets li::before {
    content: ''; min-width: 18px; height: 18px;
    background: var(--grad); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px; flex-shrink: 0;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/cover;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/cover;
  }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--pink); color: var(--black);
    font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 15px;
    padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer;
    text-decoration: none; display: inline-block; transition: transform .2s, opacity .2s;
    white-space: nowrap;
  }
  .btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }
  .btn-secondary {
    background: transparent; color: var(--white);
    font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 15px;
    padding: 13px 28px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
    text-decoration: none; display: inline-block; transition: border-color .2s, color .2s;
    white-space: nowrap;
  }
  .btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }

  /* HERO RIGHT — Dashboard mockup */
  .hero-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
    margin: 0;
    padding: 0;
  }
  .dashboard-mock {
    padding: 0;
    width: 100%;
    max-width: 650px;
    position: relative;
    animation: float 5s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .dashboard-mock::before {
    content: '';
    position: absolute; inset: -1px; border-radius: 21px;
  }
  .dashboard-mock img {
    width: 100%;         
    max-width: 100%;     /* Quitamos el límite rígido de 520px para que fluya libremente al 100% del padre */
    height: auto;        
    display: block;      
    filter: drop-shadow(0px 20px 40px rgba(232, 103, 197, 0.35));
}
  .dash-header {
    display: flex; gap: 6px; margin-bottom: 20px;
  }
  .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
  .dash-dot.r { background: #FF5F56; }
  .dash-dot.y { background: #FFBD2E; }
  .dash-dot.g { background: #27C93F; }
  .dash-title { font-size: 11px; color: rgba(255,255,255,0.4); margin-left: 8px; align-self: center; letter-spacing: 0.05em; text-transform: uppercase; }
  .dash-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px;
  }
  .dash-stat {
    background: var(--surface2); border-radius: 12px; padding: 14px 12px;
    border: 1px solid var(--border);
  }
  .dash-stat .label { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
  .dash-stat .val {
    font-family: 'Alexandria', sans-serif;
    font-size: 22px; font-weight: 700;
  }
  .dash-stat .val.pink { color: var(--pink); }
  .dash-stat .val.cyan { color: var(--cyan); }
  .dash-stat .val.purple { color: var(--purple-light); }
  .dash-stat .trend { font-size: 10px; color: #27C93F; margin-top: 2px; }
  .dash-bar-section { margin-bottom: 20px; }
  .dash-bar-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 8px; display: flex; justify-content: space-between; }
  .bar-track { background: rgba(255,255,255,0.07); border-radius: 4px; height: 6px; margin-bottom: 8px; }
  .bar-fill { height: 6px; border-radius: 4px; }
  .bar-fill.pink { background: var(--pink); }
  .bar-fill.cyan { background: var(--cyan); }
  .bar-fill.purple { background: var(--purple-light); }
  .dash-rows { display: flex; flex-direction: column; gap: 8px; }
  .dash-row {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--surface2); border-radius: 8px; padding: 10px 14px;
    font-size: 12px;
  }
  .dash-row .name { color: rgba(255,255,255,0.8); }
  .dash-pill {
    font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.04em;
  }
  .dash-pill.contactado { background: rgba(106,217,224,0.15); color: var(--cyan); }
  .dash-pill.calificado { background: rgba(172,157,210,0.15); color: var(--purple-light); }
  .dash-pill.reunion { background: rgba(232,103,197,0.15); color: var(--pink); }
  .glow-blob {
    position: absolute;
    border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: -1;
  }
  .glow-blob.b1 { width: 300px; height: 300px; background: rgba(232,103,197,0.2); top: -80px; right: -60px; }
  .glow-blob.b2 { width: 250px; height: 250px; background: rgba(106,217,224,0.15); bottom: -60px; left: -40px; }

  /* SECTION BASE */
  .section-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--cyan); margin-bottom: 14px;
  }
  h2 {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700; line-height: 1.15;
    letter-spacing: -0.02em; margin-bottom: 20px;
  }
  .section-text { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.75; }

  /* DIVIDER */
  .divider {
    height: 1px; background: var(--border);
    margin: 0 60px;
  }

  /* PROBLEMA SECTION */
  .problema-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .problema-left { padding-top: 20px; }
  .problema-text { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 16px; }
  .cards-problema {
    display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 40px;
  }
  .card-prob {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 24px 28px;
    position: relative; overflow: hidden;
    transition: border-color .25s, transform .25s;
  }
  .card-prob:hover { border-color: rgba(232,103,197,0.3); transform: translateX(4px); }
  .card-prob::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--pink);
  }
  .card-prob h4 {
    font-family: 'Alexandria', sans-serif; font-size: 16px; font-weight: 700;
    margin-bottom: 6px; color: var(--white);
  }
  .card-prob p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
  .cierre-bloque {
    margin-top: 32px; padding: 24px 28px;
    background: linear-gradient(135deg, rgba(232,103,197,0.1), rgba(106,217,224,0.1));
    border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
    font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.6;
  }

/* Contenedor para mantener la imagen y el cuadro en la parte derecha del grid */
.hero-visual-column {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Espacio entre la imagen y el cuadro */
  margin: 0;
}

/* Estilos exactos para el cuadro de referencia */
.claim-box-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  text-align: left;
  max-width: 500px;
  
  /* Truco moderno para bordes redondeados con gradiente */
  border: 2px solid transparent;
  border-radius: 16px;
  background: linear-gradient(#050505, #191919) padding-box, /* Reemplaza #050505 por tu color de fondo real */
              linear-gradient(90deg, #ff6b9d, #42dcf5) border-box; 
}

.claim-icon-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ff6b9d; /* Círculo rosa alrededor del ícono */
  flex-shrink: 0;
}

.claim-box-hero p.subtitle2 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2rem;
  color: #ffffff;
}

/* Colores de resaltado para el texto */
.hl-blue { color: #42dcf5; }
.hl-pink { color: #ff6b9d; }


/* Contenedor de cada línea para alinear el círculo y el texto */
.claim-line {
  display: flex;
  align-items: left; /* Centra verticalmente el círculo con el texto */
  gap: 1rem;          /* Espacio entre el círculo y el texto */
  margin-bottom: 0.75rem; /* Reemplaza el <br> para dar espacio entre filas */
}

/* Contenedor circular base */
.check-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;  /* Tamaño del círculo */
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent; /* Borde base transparente */
  flex-shrink: 0; /* Evita que el círculo se deforme o achique */
}

/* Variante Azul (Borde y Check) */
.check-circle.blue {
  border-color: #42dcf5; /* Color celeste */
}
.check-circle.white {
  border-color: #ffffff; /* Color celeste */
}
.check-circle.blue .check-icon {
  color: #42dcf5; /* Color del check celeste */
}
.check-circle.white .check-icon {
  color: #ffffff; /* Color del check celeste */
}
/* Variante Rosa (Borde y Check) */
.check-circle.pink {
  border-color: #ff6b9d; /* Color rosa */
}
.check-circle.pink .check-icon {
  color: #ff6b9d; /* Color del check rosa */
}

/* Estilo base del ícono de check (se usa currentColor para heredar de la clase del círculo) */
.check-icon {
  color: currentColor; /* Hereda el color establecido en la clase variante del círculo */
  margin: 0; /* Elimina cualquier margen residual */
}


 /* =========================================
     SECCIÓN: QUÉ HACE (HUB)
     ========================================= */
  .que-hace-section { background: var(--surface); margin: 0; padding: 100px 0; }
  .que-hace-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
  
/* Contenedor principal del Hub */
.features-grid { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; /* Centra la 5ta tarjeta */
  gap: 24px; 
  margin-top: 60px; 
}
  
/* Tarjetas del Hub */
.feature-card {
  width: calc(50% - 12px); /* 50% del contenedor menos la mitad del gap (24px/2) */
  box-sizing: border-box;
  background: var(--black); 
  border: 1px solid var(--border);
  border-radius: 20px; 
  padding: 32px;
  display: flex; 
  align-items: flex-start;
  gap: 24px;
  /* Transición unificada */
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: transform; /* Le avisa al navegador que esto va a moverse */
}

.feature-card:hover { 
  border-color: rgba(106,217,224,0.4); 
  transform: translateY(-4px) scale(1.01) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

/* Contenedor del ícono (sin máscaras) */
.feature-icon-wrapper {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* El ícono carga la imagen directamente */
.feature-icon { 
  width: 100% !important; 
  height: 100% !important; 
  object-fit: contain !important;
}

/* Textos de la tarjeta */
.feature-text-content h3 {
  font-family: 'Alexandria', sans-serif; 
  font-size: 20px; 
  font-weight: 700;
  margin-bottom: 8px; 
  color: var(--white);
}

.feature-text-content p { 
  font-size: 14px; 
  color: rgba(255,255,255,0.6); 
  line-height: 1.7; 
  margin: 0; /* Asegura que el párrafo no agregue margen extra al final */
}


  /* Nota inferior */
  .feature-note {
    margin-top: 40px; 
    padding: 24px 32px; 
    background: rgba(106, 217, 224, 0.03); 
    border: 1px solid rgba(106, 217, 224, 0.15); 
    border-left: 4px solid var(--cyan); 
    border-radius: 12px;
    font-size: 13.5px; 
    color: rgba(255, 255, 255, 0.85); 
    line-height: 1.6;
    box-shadow: 0 8px 32px rgba(106, 217, 224, 0.12);  
    display: flex; 
    align-items: flex-start; 
    gap: 12px;
  }

  .feature-note::before { 
    content: 'ℹ'; 
    color: var(--cyan); 
    font-size: 18px; 
    flex-shrink: 0; 
    margin-top: -2px; 
    text-shadow: 0 0 10px rgba(106, 217, 224, 0.4);
  }




/* Imagen de fondo para las secciones*/
#problema {
  position: relative;
  /* El linear-gradient actúa como una capa oscura semi-transparente sobre la foto */
  background-image: url('./img/13149561_network_communications1609.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#hub {
  position: relative;
  /* El linear-gradient actúa como una capa oscura semi-transparente sobre la foto */
  background-image: url('./img/27250823_abstract_pixel_design_banner_312.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#canales {
  position: relative;
  /* El linear-gradient actúa como una capa oscura semi-transparente sobre la foto */
  background-image: url('./img/12616174_BIGDATA.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#pasos {
  position: relative;
  /* El linear-gradient actúa como una capa oscura semi-transparente sobre la foto */
  background-image: url('./img/27250823_abstract_pixel_design_banner_313.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#contacto {
  position: relative;
  /* El linear-gradient actúa como una capa oscura semi-transparente sobre la foto */
  background-image: url('./img/12580.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#faq {
  position: relative;
  background-color: #111111;
}

/* CANAL MODULE - DOBLE COLUMNA CON PROFUNDIDAD */
  .canal-section {
    position: relative; 
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    margin: 0; padding: 100px 0;
    overflow: hidden; 
    /* Fondo fotográfico oscuro y realista. Asegúrate de que sea una foto, no ilustración */
    background-image: linear-gradient(to right, rgba(15, 15, 15, 0.92), rgba(15, 15, 15, 0.95)), url('./img/tu-fondo-fotografico-realista.jpg');
    background-size: cover;
    background-position: center;
  }
  
  .canal-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink), var(--cyan), transparent);
    opacity: 0.5;
  }
  .canal-section::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.3;
  }
  .canal-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 60px; 
    position: relative;
    z-index: 2;
  }
  
  /* Textos de introducción centrados opcionales, o puedes quitar esto si los prefieres a la izquierda */
  .canal-inner > .section-label, 
  .canal-inner > h2, 
  .canal-inner > .section-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .canal-section .glow-bg-1 {
    position: absolute; width: 400px; height: 400px; top: -100px; right: -100px;
    background: radial-gradient(circle, rgba(232,103,197,0.15) 0%, transparent 70%);
    border-radius: 50%; z-index: 1; pointer-events: none;
  }
  .canal-section .glow-bg-2 {
    position: absolute; width: 500px; height: 500px; bottom: -150px; left: -150px;
    background: radial-gradient(circle, rgba(106,217,224,0.1) 0%, transparent 70%);
    border-radius: 50%; z-index: 1; pointer-events: none;
  }

  /* Mantienes tu grilla original de 2 columnas */
  .canal-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    align-items: stretch; /* Hace que ambas tarjetas midan lo mismo de alto */
    margin-top: 60px; 
  }

  /* NUEVO: Contenedores elevados para cada columna */
  .canal-column {
    background: rgba(30, 30, 30, 0.6); /* Fondo muy sutil */
    backdrop-filter: blur(10px); /* Opcional: difumina lo que hay detrás */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px; /* Margen interno para proteger el contenido de los bordes */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); /* Sombra realista */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }


  /* --- COLUMNA DERECHA --- */
  .column-right {
    /* Mantiene el fondo translúcido de la base y aplica la flotación */
    animation: floatData 5s ease-in-out infinite; 
  }

  /* Animación de flotación suave y continua */
  @keyframes floatData {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-12px); /* Se eleva suavemente */
    }
    100% {
      transform: translateY(0px);
    }
  }
  /* Ajustes en los elementos internos para que fluyan bien en la tarjeta */
  .canal-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .canal-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.5;
  }
  .canal-list li .check {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    background: rgba(106,217,224,0.15); border: 1px solid var(--cyan);
    display: flex; align-items: center; justify-content: center; margin-top: 1px;
    color: var(--cyan); font-size: 11px;
  }
  
  .canal-visual { display: flex; flex-direction: column; gap: 16px; }
  
  .canal-impact {
    margin-top: 36px; padding: 24px 32px;
    background: var(--black); border: 1px solid var(--border);
    border-radius: 16px; position: relative; overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Sombra extra al bloque de impacto */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, box-shadow; /* Optimiza el rendimiento de la animación */
}

/* 2. Añade el estado hover con el desplazamiento (translateY) y la escala (scale) */
.canal-impact:hover {
  transform: translateY(-3px) scale(1.01);
  
  /* Intensifica la sombra para darle realismo a la elevación */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); 
}
  .canal-impact::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: var(--pink);
  }
  .canal-impact .quote {
    font-family: 'Alexandria', sans-serif;
    font-size: 16px; font-weight: 600; color: var(--white);
    line-height: 1.6; padding-left: 8px; margin: 0;
  }
  .canal-impact .quote em {
    background: var(--grad); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
    font-style: normal;
  }


 /* Llamador vertical rosa para el encabezado */
/* Contenedor del encabezado */
.canal-header-line {
  position: relative; /* Esencial para posicionar la línea internamente */
  padding-left: 35px; /* Espacio de seguridad para que el texto no toque la línea */
  margin-bottom: 50px;
  text-align: left;
}

/* La línea vertical con bordes redondeados */
.canal-header-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px; /* Grosor de la línea */
  background: var(--cyan); /* Tu variable de color rosa */
  border-radius: 4px; /* Esto redondea los extremos superior e inferior */
}

/* Ajustes complementarios de los textos */
.canal-header-line .section-label { margin-bottom: 12px; }
.canal-header-line h2 { margin-bottom: 16px; }
.canal-header-line .section-text { margin-bottom: 0; max-width: 800px; }
  .stage-row {
    display: flex; align-items: center; gap: 14px;
    background: var(--surface); border-radius: 12px; padding: 14px 20px;
    border: 1px solid var(--border);
  }
  .stage-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
  .stage-name { font-size: 14px; font-weight: 600; color: var(--white); flex: 1; }
  .stage-count { font-size: 13px; color: rgba(255,255,255,0.4); }
  .stage-bar { flex: 2; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
  .stage-bar-fill { height: 4px; border-radius: 2px; }

  /* CÓMO TRABAJAMOS */
  .pasos-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 60px; position: relative;
  }
  .paso {
    padding: 0 24px; position: relative;
  }
  .paso:not(:last-child)::after {
    content: '→'; position: absolute; right: -10px; top: 10px;
    color: var(--cyan); font-size: 20px; z-index: 1;
  }
  .paso-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--pink); display: flex; align-items: center; justify-content: center;
    font-family: 'Alexandria', sans-serif; font-size: 18px; font-weight: 800;
    color: var(--black); margin-bottom: 20px; flex-shrink: 0;
  }
  .paso h4 {
    font-family: 'Alexandria', sans-serif; font-size: 16px; font-weight: 700;
    color: var(--white); margin-bottom: 10px; line-height: 1.3;
  }
  .paso p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

  /* FORMULARIO */
  .form-section {
    margin: 0; padding: 0px 0;
  }
  .form-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .form-left h2 { margin-bottom: 16px; }
  .form-left .form-text {
    font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 40px;
  }
  .cta-cards { display: flex; flex-direction: column; gap: 16px; }
  .cta-card {
    background: var(--black); border: 1px solid var(--border);
    border-radius: 14px; padding: 20px 24px;
    display: flex; align-items: center; gap: 16px;
    cursor: pointer; transition: border-color .2s;
    text-decoration: none;
  }
  .cta-card:hover { border-color: var(--pink); }
  .cta-card .icon { font-size: 24px; }
  .cta-card .cta-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
  .cta-card .cta-sub { font-size: 12px; color: rgba(255,255,255,0.45); }
  .cta-card .arrow { margin-left: auto; color: var(--pink); font-size: 18px; }
  form h3 {
    font-family: 'Alexandria', sans-serif; font-size: 20px; font-weight: 700;
    color: var(--white); margin-bottom: 28px;
  }

.form-doppler {
      border-radius: 50px;
      padding: 0px;
      margin: 0;
    }

    /* =========================================
          Form de registro 
    =========================================*/
[data-dp-form], 
  [data-dp-form] > div, 
  [data-dp-form] iframe {
    background: transparent !important;
    background-color: transparent !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;    
    border-radius: 15px !important;
  }

  [data-dp-form] .dp-header,
  [data-dp-form] .dp-form-header,
  [data-dp-form] .dp-row-wrapper:first-child {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 15px !important;
  }

/* =========================================
     SOMBRA PARA EL ÍCONO FLOTANTE DE WHATSAPP (popup)
     ========================================= */

  /* Apuntamos al botón exacto que está dentro del contenedor de Doppler */
  div[class*="_dp_button-modal"] button {
    /* Pisamos la sombra gris clara (#cccccc) por una oscura y elegante */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6) !important;
    
    /* Opcional: una transición suave si el usuario pasa el mouse */
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }

  /* Un pequeño efecto hover para que se sienta interactivo */
  div[class*="_dp_button-modal"] button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.8) !important;
  }

/* =========================================
     ANIMACIÓN SMOOTH PARA EL POPUP
     ========================================= */

  /* 1. Definimos la animación (Fade In + un ligero rebote/escala hacia arriba) */
  @keyframes smoothPopupOpen {
    0% {
      opacity: 0;
      transform: scale(0.95) translateY(20px);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  /* Animación súper sutil solo para el fondo oscuro (overlay) */
  @keyframes smoothOverlayFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  /* 2. Aplicamos la animación al fondo/overlay general */
  div[class*="_dp_modal-button-form"] {
    animation: smoothOverlayFade 0.3s ease forwards !important;
  }

  /* 3. Aplicamos la animación de escala a la tarjeta principal */
  div[class*="_dp_modal-btn-wrapper"] {
    /* La curva 'cubic-bezier' le da ese toque natural de aceleración/desaceleración */
    animation: smoothPopupOpen 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  }

/* =========================================
     DARK MODE PARA POPUP DE DOPPLER (V2)
========================================= */

/* 1. Fondo unificado SOLO para el modal (popup) y sus elementos internos */
div[class*="_dp_modal-btn-wrapper"],
div[class*="_dp_modal-btn-wrapper"] div[class*="_dp_container-content"],
div[class*="_dp_modal-btn-wrapper"] div[class*="_dp_modal-btn-topbar"] {
  background-color: var(--white) !important;
  background:var(--white) !important;
  color: #111111 !important;
}

/* Redondear las esquinas del contenedor exterior principal */
div[class*="_dp_modal-btn-wrapper"] {
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  overflow: hidden !important; /* Evita que la barra superior pinche los bordes redondos */
}

/* 2. Eliminar el cuadro negro interno SOLO del popup */
div[class*="_dp_modal-btn-wrapper"] div[class*="_dp_container-HTMLForm"] {
  background-color: transparent !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  margin-top: 0px !important;
  padding-top: 0 !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  padding-bottom: 32px !important;
}

/* Asegurar que el párrafo del título no empuje hacia abajo */
div[class*="_dp_modal-btn-wrapper"] div[class*="_dp_canvas-form--body"] p:first-child {
  margin-top: 0 !important;
}

/* 3. Colorear la X de cerrar de la barra superior */
div[class*="_dp_modal-btn-topbar"] {
  border-bottom: none !important; 
  color: var(--bg-darkmode-light) !important;
}

div[class*="_dp_modal-btn-wrapper"] {    
  /* Sombra con un toque del rosa de tu paleta */
  box-shadow: 0 20px 20px rgba(232, 103, 197, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
}

/* 4. Asegurar que el título mantenga su color */
div[class*="_dp_modal-btn-wrapper"] div[class*="_dp_canvas-form--body"] strong {
  color: var(--pink) !important;
}
  

.claim{
font-size: 1.8rem;
line-height: normal;
}
.claim p{
font-size: 1.2rem;
line-height: normal;
}
/* ==========================================================================
   NUEVOS ESTILOS PARA DESTACAR EL CLAIM EN CONTACTO
   ========================================================================== */

/* Caja contenedora con fondo translúcido y borde sutil */
.claim-box {
  background: rgba(37, 37, 35, 0.4); /* Variante de tu var(--surface) */
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Efecto de luz difusa de fondo para llamar la atención sin molestar */
.claim-box::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(106, 217, 224, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Mini etiqueta superior */
.claim-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Título principal con tipografía del ecosistema */
.claim-title {
  font-family: 'Alexandria', sans-serif;
  font-size: clamp(28px, 3.5vw, 36px); /* Tamaño responsive e imponente */
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px !important;
  letter-spacing: -0.01em;
}

/* Palabras clave en negrita extra */
.word-destacada {
  font-weight: 800;
}

/* Efecto de degradado característico de Entercomm para "Más" */
.text-grad {
  background: var(--cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Línea divisoria elegante */
.claim-box .divider-claim {
  height: 1px;
  background: linear-gradient(90deg, var(--border), rgba(255, 255, 255, 0.15), transparent);
  margin: 24px 0;
  border: none;
}

/* Bloque inferior de firma */
.claim-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-more {
  font-family: 'Alexandria', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.sub-more {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}


  /* FAQ */
  .faq-section { padding: 0px 60px; max-width: 1200px; margin: 0 auto; }
  .faq-section h2 { margin-bottom: 48px; }
  .faq-item {
    border-bottom: 1px solid var(--border); overflow: hidden;
  }
  .faq-q {
    width: 100%; background: none; border: none; text-align: left;
    color: var(--white); font-family: 'Open Sans', sans-serif;
    font-size: 16px; font-weight: 600; padding: 22px 0;
    cursor: pointer; display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
  }
  .faq-q:hover { color: var(--cyan); }
  .faq-icon {
    width: 26px; height: 26px; border-radius: 50%;
    border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background .2s, border-color .2s; font-size: 14px;
    color: rgba(255,255,255,0.5);
  }
  .faq-item.open .faq-icon { background: var(--pink); border-color: var(--pink); color: var(--black); }
  .faq-a {
    max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  }
  .faq-a-inner { padding-bottom: 20px; font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; }
  .faq-item.open .faq-a { max-height: 200px; }

  /* FOOTER */
  footer {
    background: var(--black); border-top: 1px solid var(--border);
    padding: 48px 60px; display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 24px;
  }
  footer img { height: 38px; }
  footer .foot-links { display: flex; gap: 28px; }
  footer .foot-links a { color: rgba(255,255,255,0.45); font-size: 13px; text-decoration: none; transition: color .2s; }
  footer .foot-links a:hover { color: var(--cyan); }
  footer .foot-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

  /* ANIMATIONS */
  .fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* GRADIENT LINE */
  .grad-line {
    height: 2px; background: var(--grad); width: 60px; margin-bottom: 20px;
  }
  /* Contenedor del botón fijo */
.whatsapp-float {
  position: fixed;
  bottom: 40px; /* Distancia desde abajo */
  right: 40px;  /* Distancia desde la derecha */
  width: 60px;
  height: 60px;
  background-color: #25d366; /* Verde oficial de WhatsApp */
  color: #ffffff;
  border-radius: 50%; /* Lo hace un círculo perfecto */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999; /* Asegura que flote sobre todo lo demás */
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Efecto al pasar el mouse */
.whatsapp-float:hover {
  background-color: #1ebe57; /* Verde un poco más oscuro */
  transform: translateY(-4px) scale(1.05); /* Se levanta y crece ligeramente */
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4); /* Resplandor verde */
}

/* Tamaño del ícono */
.whatsapp-icon {
  width: 35px;
  height: 35px;
  fill: currentColor;
}



/* ==========================================================================
   Ajustes para dispositivos móviles (Media Queries)
   ========================================================================== */

/* --- Laptops y Tablets Grandes --- */
@media (max-width: 1200px) {
  .hero .subtitle {
    font-size: clamp(13px, 1.6vw, 16px);
  }
}
/* Solo forzamos la línea única en laptops y monitores grandes */
@media (min-width: 901px) {
  .hero .subtitle strong {
    white-space: nowrap; 
  }
}
/* --- Tablets y Portátiles --- */
@media (max-width: 900px) {
  /* Navegación y Hero */
  nav { 
    padding: 16px 24px; 
  }
  nav .nav-links { 
    display: none; 
  }
  .hero { 
    padding: 100px 24px 60px; 
  }

  /* Grillas a 1 columna */
  .hero-grid, 
  .problema-wrap, 
  .canal-grid, 
  .form-grid, 
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pasos-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  .hero .subtitle strong {
      white-space: normal;
    }
  }
  /* Espaciados y contenedores seguros */
  section { 
    padding: 60px 24px; 
  }
  .content-inner,
  .que-hace-inner, 
  .canal-inner, 
  .form-inner { 
    padding: 0 24px; 
  }
  .canal-column {
    padding: 30px 24px; 
  }
  .divider {
    margin: 0 24px;
  }
  .stage-row {
    display: flex;
    align-items: center;
    gap: 10px;          /* Espacio controlado entre elementos */
    width: 100%;
    box-sizing: border-box;
  }

  .stage-bar {
    flex-grow: 1;       /* Hace que la barra ocupe SOLO el espacio que sobre */
    width: auto !important; /* Elimina cualquier ancho fijo en píxeles (ej. 250px) */
    min-width: 50px;    /* Evita que desaparezca por completo en pantallas muy chicas */
  }

  .stage-name {
    width: 95px;        /* Un ancho fijo menor y controlado para el texto de la izquierda */
    min-width: 95px;
    font-size: 13px;    /* Reducimos un punto la fuente para ganar espacio */
  }

  .canal-grid .btn-primary {
    display: inline-block;
    width: 100%;        /* Ocupa todo el ancho en móvil para que sea más fácil presionar */
    text-align: center;
    white-space: normal; /* ¡Clave! Permite que el texto del botón se divida en 2 líneas si no cabe */
    box-sizing: border-box;
    font-size: 14px;    /* Ajuste ligero de tamaño */
    padding: 14px 20px;
  }
  
  .canal-visual {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  /* Footer */
  footer { 
    padding: 40px 24px; 
    flex-direction: column; 
    align-items: flex-start;
  }

/* --- Móviles Grandes --- */
@media (max-width: 768px) {
  /* Botón flotante WhatsApp */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .claim-line {
    justify-content: left;
  }
  .feature-card {
    width: 100%; 
  }
  /* 1. Quitamos cualquier ancho fijo a la caja de claim y aseguramos que no pase del 100% */
  .claim-box-hero {
    flex-direction: column;
    text-align: center;
    width: 100%;          /* Fuerza a que ocupe el ancho disponible, no más */
    max-width: 100%;
    box-sizing: border-box; /* Asegura que los paddings internos no sumen ancho extra */
  }

  /* 2. Aseguramos que la lista no se desborde ni tenga márgenes negativos que la saquen de la pantalla */
  .hero-content ul {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word; /* Evita que palabras muy largas rompan la caja */
  }

  /* 3. Permite que los logos bajen de línea si no caben en la pantalla */
  /* NOTA: Reemplaza ".hero-logos" por la clase real que envuelve a tus logos si se llama distinto */
  .hero-logos {
    display: flex;
    flex-wrap: wrap; /* ¡Clave! Obliga a los logos a bajar si no hay espacio */
    justify-content: flex-start; /* O center, según prefieras */
    gap: 15px; 
    width: 100%;
  }

  .hero-logos img {
    max-width: 100%;
    height: auto;
  }
}

/* --- Móviles Pequeños --- */
@media (max-width: 576px) {
  .feature-card { 
    flex-direction: column; 
    text-align: center; 
    align-items: center; 
  }
  
  .claim-box {
    padding: 28px;
    margin-top: 32px;
  }
}