/* styles.css optimizado para diseño elegante + hero innovador + nav sticky */

:root {
    --primario: #00f0ff;
    --secundario: #0097a7;
    --oscuro: #0a0a0a;
    --blanco: #ffffff;
    --gris: #cccccc;
    --fondo: #101820;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 62.5%;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    background-color: var(--fondo);
    color: var(--blanco);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  header {
    position: fixed;
    width: 100%;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
    z-index: 9999;
  }
  
  .contenedor-header {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  header h1 span {
    color: var(--primario);
  }
  
  .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }
  
  #bgCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }
  
  .contenido-hero {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 4rem;
    background: rgba(0, 240, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .contenido-hero h2 {
    font-size: 3.4rem;
    color: var(--primario);
    margin-bottom: 2rem;
  }
  
  .contenido-hero p {
    font-size: 1.8rem;
    color: var(--blanco);
    margin-bottom: 2rem;
  }
  
  .btn-cta {
    display: inline-block;
    background: var(--primario);
    color: var(--oscuro);
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  }
  
  .btn-cta:hover {
    transform: scale(1.05);
    background: var(--secundario);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .seccion {
    padding: 8rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: auto;
  }
  
  .seccion-clara {
    background-color: #1a1a1a;
  }
  
  h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primario);
  }
  
  .grid-tarjetas {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .tarjeta {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    width: 100%;
    max-width: 330px;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  }
  
  .tarjeta:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
  }
  
  .formulario {
    max-width: 600px;
    margin: auto;
    background: rgba(0, 240, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
  }
  
  .formulario input,
  .formulario textarea {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.6rem;
    background: #f8f9fa;
    color: #000;
  }
  
  .formulario button {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.6rem;
    background: var(--primario);
    color: var(--oscuro);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
  }
  
  .formulario button:hover {
    background: var(--secundario);
  }
  
  
  footer {
    text-align: center;
    padding: 2rem;
    background: #000;
    font-size: 1.4rem;
    color: var(--gris);
  }
  
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .grid-tarjetas {
      flex-direction: column;
      align-items: center;
    }
  
    .contenido-hero h2 {
      font-size: 2.5rem;
    }
  }
  .estadisticas {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
  }
  
  .estadistica {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 3rem;
    border-radius: 15px;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
  }
  
  .estadistica .contador {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primario);
    display: block;
    margin-bottom: 1rem;
  }
  
  .testimonios {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: auto;
  }
  
  .testimonio {
    background: rgba(0, 240, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
  }
  
  .testimonio p {
    font-size: 1.7rem;
    font-style: italic;
    color: var(--blanco);
    margin-bottom: 1rem;
  }
  
  .testimonio h4 {
    font-size: 1.4rem;
    color: var(--primario);
    text-align: right;
  }
  .seccion-nosotros {
    background: linear-gradient(to right, rgba(0, 240, 255, 0.05), rgba(0, 151, 167, 0.1));
    border-top: 1px solid rgba(0,240,255,0.1);
    border-bottom: 1px solid rgba(0,240,255,0.1);
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  
  .contenedor-nosotros {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
  }
  
  .nosotros-texto {
    flex: 1 1 500px;
    font-size: 1.8rem;
    color: var(--blanco);
    line-height: 1.8;
  }
  
  .nosotros-texto h2 {
    color: var(--primario);
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  
  .nosotros-texto p {
    margin-bottom: 2rem;
  }
  
  .valores-nosotros {
    list-style: none;
    padding-left: 0;
  }
  
  .valores-nosotros li {
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--primario);
    display: flex;
    align-items: center;
  }
  
  .valores-nosotros li span {
    margin-right: 1rem;
    font-size: 1.8rem;
    color: #8fffda;
  }
  
  
  .nosotros-img {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .nosotros-img img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
    transition: transform 0.3s;
  }
  
  .nosotros-img img:hover {
    transform: scale(1.02);
  }
  
  @media (max-width: 768px) {
    .contenedor-nosotros {
      flex-direction: column;
      text-align: center;
    }
  
    .nosotros-texto {
      text-align: center;
    }
  
    .valores-nosotros li {
      justify-content: center;
    }
  }
  @media (max-width: 768px) {
    .hero {
      height: 100vh;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
  
    .contenido-hero {
      padding: 2.5rem;
      max-width: 90%;
    }
  
    .contenido-hero h2 {
      font-size: 2.4rem;
      line-height: 1.3;
    }
  
    .contenido-hero p {
      font-size: 1.6rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }
  
    .btn-cta {
      font-size: 1.4rem;
      padding: 1rem 2rem;
    }
  }
  .menu-toggle {
    display: none;
    font-size: 3rem;
    color: var(--blanco);
    cursor: pointer;
    z-index: 10001;
  }
  
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      align-items: flex-start;
      position: fixed;
      top: 70px;
      right: 0;
      width: 100%;
      background: rgba(0, 240, 255, 0.08);
      backdrop-filter: blur(10px);
      padding: 2rem;
      display: none;
      z-index: 10000;
      transition: all 0.3s ease;
    }
  
    nav ul li {
      margin-bottom: 1.5rem;
    }
  
    .menu-toggle {
      display: block;
      position: absolute;
      top: 20px;
      right: 20px;
    }
  }
  .slider-testimonios {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2rem 1rem;
    gap: 2rem;
  }
  
  .grupo-testimonios {
    display: flex;
    flex: 0 0 100%;
    justify-content: center;
    gap: 2rem;
    scroll-snap-align: center;
  }
  
  .testimonio-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
  }
  
  .testimonio-card p {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--blanco);
    margin-bottom: 1rem;
  }
  
  .testimonio-card h4 {
    font-size: 1.4rem;
    color: var(--primario);
    text-align: right;
  }
  
  .slider-testimonios::-webkit-scrollbar {
    display: none;
  }
  
  @media (max-width: 768px) {
    .grupo-testimonios {
      flex-direction: column;
      flex: 0 0 100%;
      align-items: center;
    }
  
    .testimonio-card {
      max-width: 90%;
    }
  }
  .scroll-indicador-hero {
    position: absolute;
    bottom: 80px; /* ALTURA AJUSTADA PARA QUE SE VEA EN MÓVIL */
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #00f0ff;
    animation: bounce 1.8s infinite;
    z-index: 100;
    opacity: 0.9;
  }
  
  .flecha-scroll-abajo {
    font-size: 2.5rem; /* TAMAÑO AJUSTADO PARA MAYOR VISIBILIDAD */
    font-weight: bold;
    color: #00f0ff;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.8);
    animation: bounce 1.6s infinite;
    user-select: none;
    transition: transform 0.3s ease;
  }
  
  .flecha-scroll-abajo:hover {
    transform: translateY(5px);
  }
  
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(8px);
    }
  }
  
  @media (max-width: 768px) {
    .scroll-indicador-hero {
      bottom: 120px; /* MÁS ARRIBA en móviles para que no la tape la barra */
      font-size: 1.6rem;
    }
  }
  
  
  
  .flecha-scroll {
    font-size: 2.2rem;
    animation: deslizamiento 1.2s infinite alternate ease-in-out;
    color: var(--primario);
  }
  
  @keyframes deslizamiento {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(10px);
    }
  }
  
  @keyframes fadeInScroll {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 0.85;
      transform: translateY(0);
    }
  }

  .grid-servicios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
  }
  
  .bloque-servicio {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: left;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .bloque-servicio h3 {
    font-size: 2.2rem;
    color: var(--primario);
    margin-bottom: 1.5rem;
  }
  
  .bloque-servicio p {
    font-size: 1.6rem;
    color: var(--blanco);
    margin-bottom: 2rem;
  }
  
  .bloque-servicio:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
  }
.subtitulo-servicios {
  text-align: center;
  font-size: 2rem;
  color: var(--primario);
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
  
.scroll-flecha-hero {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}

.scroll-flecha-hero .flecha {
  font-size: 3rem; /* ⬅️ Tamaño más visible y equilibrado */
  color: var(--primario);
  animation: bounceAbajo 1.6s infinite ease-in-out;
  opacity: 0.8;
  transition: transform 0.3s, opacity 0.3s;
  cursor: pointer;
  user-select: none;
}

.scroll-flecha-hero .flecha:hover {
  opacity: 1;
  transform: scale(1.2);
}


@keyframes bounceAbajo {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

header.sticky {
  background: rgba(0, 240, 255, 0.07); /* más sutil para mantener elegancia */
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
  transition: background 0.3s, box-shadow 0.3s;
}
.fade-in-servicio {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}

.fade-in-servicio.visible {
  opacity: 1;
  transform: translateY(0);
}
.seccion-inicio-impacto {
  padding-top: 12rem; /* AUMENTADO */
  padding-bottom: 4rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.seccion-inicio-impacto h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.seccion-inicio-impacto p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 3rem; /* 👉 Esto da aire antes del bloque de estadísticas */
}

.estadisticas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem; /* 👉 Separación entre tarjetas */
  padding: 0 1rem;
  margin-bottom: 4rem;
}

.estadistica {
  background-color: #1e1e1e;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  width: 280px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.08);
  transition: transform 0.3s ease;
}

.estadistica:hover {
  transform: translateY(-5px);
}

.resaltado {
  color: #00f0ff;
  font-weight: bold;
}

.hero-impacto {
  padding-top: 14rem; /* 📌 Este margen extra compensa el header fijo */
  padding-bottom: 4rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-impacto .titulo-principal {
  font-size: 2.2rem;
  color: var(--primario);
  margin-bottom: 1.8rem;
}

.hero-impacto .intro-impacto {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--blanco);
}
.seccion-graficos-impacto {
  padding: 6rem 2rem;
  text-align: center;
}

.graficos-impacto {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.grafico h3 {
  font-size: 1.6rem;
  color: var(--primario);
  margin-bottom: 1rem;
}

.grafico canvas {
  width: 100% !important;
  max-width: 500px;
  height: auto !important;
  margin: 0 auto;
}

/* Para pantallas grandes */
/* ============================
   🌐 ESTILOS PARA ESCRITORIO
   ============================ */
   @media (min-width: 768px) {
    .menu-toggle {
      display: none !important;
    }
  
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 10, 20, 0.85);
      backdrop-filter: blur(12px);
      padding: 1.6rem 0;
      box-shadow: 0 6px 16px rgba(0, 240, 255, 0.1);
      z-index: 1000;
    }
  
    .contenedor-header {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  
    .contenedor-header h1 {
      display: flex;
      align-items: center;
      font-size: 4rem;
      font-weight: 900;
      font-family: 'Inter', sans-serif;
      color: white;
      letter-spacing: 1.4px;
      white-space: nowrap;
      margin: 0;
    }
  
    .contenedor-header h1 span {
      color: #00f0ff;
      margin-left: 0.7rem;
      font-weight: 900;
    }
  
    nav {
      display: flex !important;
      justify-content: flex-end;
      align-items: center;
    }
  
    nav ul {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      justify-content: flex-end !important;
      gap: 2.8rem;
      list-style: none;
      margin: 0;
      padding: 0;
      background: none !important;
      transform: none !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      height: auto !important;
      width: auto !important;
      z-index: auto !important;
    }
  
    nav ul li a {
      font-size: 2rem;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      color: #00f0ff;
      text-decoration: none;
      padding: 0.6rem 1.2rem;
      border-radius: 6px;
      transition: all 0.3s ease-in-out;
      position: relative;
      letter-spacing: 0.5px;
    }
  
    nav ul li a::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 0;
      height: 2px;
      width: 0;
      background-color: #00f0ff;
      transition: width 0.3s ease-in-out;
    }
  
    nav ul li a:hover {
      color: #ffffff;
      background-color: rgba(0, 240, 255, 0.05);
      text-shadow: 0 0 12px #00f0ff;
      transform: translateY(-1px);
    }
  
    nav ul li a:hover::after {
      width: 100%;
    }
  
    /* 🛡️ Evita que el menú hamburguesa quede activo */
    nav ul.show,
    nav ul.fullscreen,
    nav.fullscreen {
      all: unset;
      display: flex !important;
      flex-direction: row;
      gap: 2.8rem;
      align-items: center;
    }
  }
  
  
  /* ============================
     📱 ESTILOS PARA MÓVIL
     ============================ */
  /* ============================
   🌐 ESTILOS PARA ESCRITORIO
   ============================ */
@media (min-width: 768px) {
  .menu-toggle {
    display: none !important;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 10, 20, 0.85);
    backdrop-filter: blur(12px);
    padding: 1.6rem 0;
    box-shadow: 0 6px 16px rgba(0, 240, 255, 0.1);
    z-index: 1000;
  }

  .contenedor-header {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .contenedor-header h1 {
    display: flex;
    align-items: center;
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    color: white;
    letter-spacing: 1.4px;
    white-space: nowrap;
    margin: 0;
  }

  .contenedor-header h1 span {
    color: #00f0ff;
    margin-left: 0.7rem;
    font-weight: 900;
  }

  nav {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
  }

  nav ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 2.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
    background: none !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    height: auto !important;
    width: auto !important;
    z-index: auto !important;
  }

  nav ul li a {
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #00f0ff;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    position: relative;
    letter-spacing: 0.5px;
  }

  nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #00f0ff;
    transition: width 0.3s ease-in-out;
  }

  nav ul li a:hover {
    color: #ffffff;
    background-color: rgba(0, 240, 255, 0.05);
    text-shadow: 0 0 12px #00f0ff;
    transform: translateY(-1px);
  }

  nav ul li a:hover::after {
    width: 100%;
  }

  /* 🛡️ Evita que el menú hamburguesa quede activo */
  nav ul.show,
  nav ul.fullscreen,
  nav.fullscreen {
    all: unset;
    display: flex !important;
    flex-direction: row;
    gap: 2.8rem;
    align-items: center;
  }
}


/* ============================
   📱 ESTILOS PARA MÓVIL
   ============================ */
@media (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 10, 20, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.5rem;
    z-index: 1000;
  }

  .contenedor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .contenedor-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
  }

  .contenedor-header h1 span {
    color: #00f0ff;
    margin-left: 0.3rem;
  }

  .menu-toggle {
    font-size: 3rem;
    cursor: pointer;
    color: white;
    z-index: 1001;
  }
  

  nav ul {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
    z-index: 999;
  }

  nav ul.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  nav ul li {
    margin: 1.5rem 0;
  }

  nav ul li a {
    font-size: 1.8rem;
    color: #00f0ff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
  }

  nav ul li a:hover {
    color: #ffffff;
  }

}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
.hero-impacto {
  padding: 8rem 1rem 4rem; /* <-- espacio superior aumentado */
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}


.hero-impacto h2.titulo-principal {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 1.8rem;
}

.hero-impacto p.intro-impacto {
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 2.5rem;
}

.resaltado {
  color: #00f0ff;
  font-weight: 800;
}
.titulo-principal {
  font-size: 1.6rem;
  font-weight: 800;
  color: #00f0ff;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.intro-impacto {
  font-size: 1.5rem;
  color: #d3d3d3;
  margin-bottom: 3rem;
  line-height: 1.6;
  padding: 0 1rem;
}

.intro-impacto strong {
  color: white;
}

.hero-impacto .bloque-impacto {
  margin-bottom: 5rem;
}

.hero-impacto .emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}
/* Ajuste para pantallas grandes */
@media (min-width: 768px) {
  .hero-impacto {
    padding-top: 12rem; /* más espacio arriba para evitar que se tape */
  }
}
/* Corrección para el corte del título bajo header sticky */
@media (min-width: 768px) {
  #servicios {
    padding-top: 120px; /* Ajusta este valor según el alto de tu header */
  }
}
.bloque-calendario {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.1);
  padding: 3rem;
  border-radius: 15px;
  margin-bottom: 4rem;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.05);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bloque-calendario h3 {
  font-size: 2rem;
  color: var(--primario);
  margin-bottom: 1rem;
}

.bloque-calendario p {
  color: var(--blanco);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.mensaje-enviado {
  display: none;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 240, 255, 0.1);
  color: #00f0ff;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
  animation: fadeInConfirm 0.5s ease-in-out;
}

@keyframes fadeInConfirm {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.separador-opcional {
  text-align: center;
  margin: 3rem 0;
  font-size: 1.3rem;
  color: #00f0ff;
  opacity: 0.7;
  font-style: italic;
}

.nota-opcional {
  font-size: 0.95rem;
  margin-top: 1rem;
  color: rgba(0, 240, 255, 0.6);
}
.btn-ver-form {
  margin-top: 2rem;
  background: transparent;
  color: #00f0ff;
  border: 1px solid rgba(0,240,255,0.4);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-ver-form:hover {
  background-color: rgba(0, 240, 255, 0.1);
  transform: scale(1.05);
}
.btn-scroll-form {
  margin-top: 2rem;
  background: linear-gradient(90deg, #00f0ff 0%, #007cff 100%);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  transition: all 0.3s ease-in-out;
}
.btn-scroll-form:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #00e0ff 0%, #00c0ff 100%);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}
.img-ajustada {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
  margin-bottom: 1rem;
}

.contenedor-img-responsiva {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
}

.galeria-ia {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 1rem;
}

.opcion-ia {
  text-align: center;
}

@media (min-width: 768px) {
  .galeria-ia {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contenedor-img-ajustada {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
}

.img-responsiva-controlada {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,240,255,0.08);
}

/* Evita que alguna sección genere scroll interno no deseado */
body, html {
  overflow-x: hidden;
}
.seccion-hero-ia {
  background: linear-gradient(180deg, rgba(0,240,255,0.04), rgba(0,240,255,0.015));
  padding: 7rem 2rem 4rem; /* ⬅️ Aquí aumentamos a 7rem */
  text-align: center;
  border-bottom: 1px solid rgba(0,240,255,0.05);
}


.hero-ia-contenido h1 {
  font-size: 2.5rem;
  color: var(--primario);
  margin-bottom: 1rem;
}

.intro-impacto.destacado {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.intro-secundaria {
  font-size: 1rem;
  color: var(--gris-claro);
  max-width: 700px;
  margin: 0 auto;
}
.offset-header {
  padding-top: 6.5rem;
}
@media (max-width: 768px) {
  .offset-header {
    padding-top: 5.5rem;
  }
}
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 240, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 240, 255, 0.1);
}
.seccion-hero-ia {
  padding: 11rem 2rem 4rem;
}
.img-ajustada-hover {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.08);
}
.img-ajustada-hover:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
}

.hero-ia-contenido {
  max-width: 850px;
  margin: 0 auto;
  padding: 1rem 2rem;
  text-align: center;
}
.contenedor-flecha {
  text-align: center;
  margin-top: -2rem;  /* ⬅️ antes estaba en positivo, ahora la subimos */
  margin-bottom: -0.5rem;
  animation: aparecer 1s ease-out forwards;
}


.flecha-scroll {
  font-size: 2.6rem;
  color: #00f0ff;
  animation: bajar 1.2s infinite ease-in-out;
  text-decoration: none;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6));
  transition: transform 0.3s ease;
}

.flecha-scroll:hover {
  transform: scale(1.15);
}

@keyframes bajar {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .titulo-principal {
    font-size: 2.6rem;       /* antes 1.6rem */
    line-height: 1.4;
    font-weight: 800;
  }

  .intro-impacto.destacado {
    font-size: 1.5rem;       /* antes 1.25rem */
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
  }

  .intro-impacto {
    font-size: 1.3rem;       /* antes 1.1rem aprox */
    line-height: 1.8;
    color: #cccccc;
  }
}
/* Estilo general */
.seccion-creativa {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(180deg, rgba(0,240,255,0.015), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(0,240,255,0.04);
  border-bottom: 1px solid rgba(0,240,255,0.04);
}

.galeria-transformacion-producto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 3rem auto;
  align-items: start;
}

.bloque-producto {
  text-align: center;
}

.bloque-producto img {
  width: 100%;
  height: 480px; /* menor que antes */
  object-fit: contain; /* 🔁 esto cambia de 'cover' a 'contain' */
  border-radius: 1.2rem;
  box-shadow: 0 0 20px rgba(0,240,255,0.06);
  transition: transform 0.3s ease;
}
.bloque-producto img:hover {
  transform: scale(1.02);
}


.etiqueta-producto {
  font-size: 1.6rem;
  color: #00f0ff;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Aumentar tamaño del texto de párrafo */
.seccion-creativa .intro-impacto {
  font-size: 1.35rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  color: #e0e0e0;
}

.nota-creativa {
  font-size: 1.25rem;
  margin-top: 3rem;
  color: #cccccc;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  opacity: 0.9;
}

/* Responsive (solo móvil) */
@media (max-width: 768px) {
  .galeria-transformacion-producto {
    grid-template-columns: 1fr;
  }

  .bloque-producto img {
    height: auto;
  }

  .etiqueta-producto {
    font-size: 1.3rem;
  }

  .seccion-creativa .intro-impacto {
    font-size: 1.1rem;
  }

  .nota-creativa {
    font-size: 1rem;
  }
}
.seccion-notion {
  background: radial-gradient(circle at top, rgba(0,240,255,0.015), transparent 70%);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.borde-redondeado {
  border-radius: 1.2rem;
}

.sombra-ligera {
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.08);
  transition: transform 0.3s ease-in-out;
}

.sombra-ligera:hover {
  transform: scale(1.01);
}

.fade-in {
  animation: fadeIn 1s ease-out both;
  opacity: 0.9;
  font-size: 1.25rem;
  font-style: italic;
  color: #d3d3d3;
  margin-top: 2rem;
  text-align: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.intro-impacto {
  font-size: 1.9rem;
  line-height: 1.7;
  color: #e6e6e6;
}
@media (max-width: 768px) {
  .intro-impacto {
    font-size: 1.6rem;
  }
}
.destacado-estrella {
  background: linear-gradient(145deg, rgba(0,240,255,0.06), rgba(255,255,255,0.03));
  border: 2px solid rgba(0,240,255,0.15);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
  padding: 3.5rem;
  transform: scale(1.03);
  transition: all 0.4s ease;
  position: relative;
}

.destacado-estrella:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
}

.sello-estrella {
  position: absolute;
  top: -14px;
  right: -14px;
  background: rgba(0,240,255,0.15);
  border: 1px solid rgba(0,240,255,0.3);
  color: #00f0ff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.btn-estrella {
  background: #00f0ff;
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.4);
  transition: all 0.3s ease-in-out;
}

.btn-estrella:hover {
  background: #0097a7;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}
.destacado-estrella:hover {
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.4), 0 0 10px rgba(0, 240, 255, 0.2) inset;
}
.caso-negocio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  text-align: left;
}

.caso-negocio .texto-caso {
  max-width: 800px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.galeria-estilos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.card-estilo {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0,240,255,0.05);
  border-radius: 16px;
  padding: 1rem;
  max-width: 320px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.02);
}

.card-estilo:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0,240,255,0.08);
}

.card-estilo img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.card-estilo h4 {
  color: var(--primario);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.card-estilo p {
  font-size: 0.95rem;
  color: #ccc;
}

.seccion-hero {
  text-align: center;
  padding-top: 6rem;
}

.btn-cta.animado {
  background-color: #00f0ff;
  color: #000;
  padding: 0.9rem 2rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(0,240,255,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta.animado:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(0,240,255,0.7);
}

.seccion-antes-despues {
  margin-top: 4rem;
  text-align: center;
}

.contenedor-imagen-original {
  max-width: 400px;
  margin: 2rem auto;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(0,240,255,0.04);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,240,255,0.03);
}

.img-original {
  width: 100%;
  border-radius: 12px;
}

/*MEJORA INICIO*/
.contenido-hero {
  border: 1px solid rgba(0,240,255,0.08);
  background: radial-gradient(circle at 30% 30%, rgba(0,240,255,0.03), rgba(0,240,255,0.01));
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(0, 240, 255, 0.2), inset 0 0 30px rgba(0,240,255,0.1);
}

.contenido-hero::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(0,240,255,0.1), transparent 70%);
  z-index: -1;
}

.btn-cta {
  font-size: 1.7rem;
  background: linear-gradient(90deg, #00f0ff, #3fffd1);
  color: #000;
  text-shadow: none;
  border: none;
  box-shadow: 0 0 15px rgba(0,240,255,0.4);
  transition: all 0.35s ease-in-out;
}

.btn-cta:hover {
  transform: scale(1.08);
  background: linear-gradient(90deg, #00f0ff, #00c8b9);
  box-shadow: 0 0 25px rgba(0,240,255,0.6);
}

.tarjeta {
  background: linear-gradient(180deg, rgba(0,240,255,0.02), rgba(0,240,255,0.01));
  border: 1px solid rgba(0,240,255,0.05);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(0,240,255,0.05);
}
.tarjeta:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 25px rgba(0,240,255,0.15);
}

.seccion-nosotros {
  background: linear-gradient(to bottom, #101820, #0a0a0a);
}

.formulario {
  background: rgba(0,240,255,0.02);
  border: 1px solid rgba(0,240,255,0.05);
  box-shadow: 0 0 25px rgba(0,240,255,0.08);
}

.formulario input,
.formulario textarea {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 1.4rem;
  font-size: 1.6rem;
}
html {
  scroll-behavior: smooth;
}
.seccion[data-aos] {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/*EXTRAS*/
.titulo-iconico {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.icono-titulo {
  font-size: 2.2rem;
  animation: parpadeo 1.5s infinite;
}

@keyframes parpadeo {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.scroll-flecha-hero {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-flecha-hero .flecha {
  font-size: 2.8rem;
  color: var(--primario);
  animation: bounceAbajo 1.6s infinite ease-in-out;
  opacity: 0.8;
  cursor: pointer;
  transition: transform 0.3s;
}

.scroll-flecha-hero .flecha:hover {
  transform: translateY(5px) scale(1.1);
}

@keyframes bounceAbajo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/*MEJORA SERVICIOS*/
.titulo-iconico {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 2.5rem;
  color: var(--primario);
}
.icono-titulo {
  font-size: 2.5rem;
  animation: parpadeo 1.5s infinite;
}
@keyframes parpadeo {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/*MEJORAS IMPACTO*/
.titulo-iconico {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--primario);
  font-size: 2rem;
  text-align: center;
}
.icono-titulo {
  font-size: 2rem;
  animation: pulseIcon 1.8s infinite ease-in-out;
}
@keyframes pulseIcon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.6; }
}

.impacto-resumen {
  padding: 6rem 2rem 4rem;
  background: linear-gradient(180deg, rgba(0,240,255,0.05), transparent);
  text-align: center;
  padding-top: 9rem; 
}

.contenedor-impacto {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.bloque-estadistica {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.icono-impacto {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: flotar 2.5s ease-in-out infinite;
}

.titulo-impacto {
  font-size: 1.5rem;
  color: var(--primario);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.texto-impacto {
  color: var(--gris-claro);
  font-size: 1rem;
  line-height: 1.6;
}

@keyframes flotar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.impacto-resumen {
  padding: 8rem 2rem 4rem; /* Aumentamos el padding-top */
  margin-top: 4rem; /* Despegue extra para que no lo tape el header */
}

.bloque-estadistica {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(0, 240, 255, 0.1);
  transition: transform 0.3s ease;
}
.bloque-estadistica:hover {
  transform: translateY(-5px);
}
.titulo-impacto {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #00f0ff;
  line-height: 1.4;
}

.subtitulo-servicios {
  font-size: 1.8rem;
  color: #00f0ff;
  background: linear-gradient(to right, #00f0ff, #00ffa3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.linea-impacto {
  border: none;
  height: 2px;
  width: 80%;
  margin: 4rem auto;
  background: linear-gradient(to right, transparent, #00f0ff, transparent);
  opacity: 0.4;
}

.slider-testimonios {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
}
.testimonio-card {
  min-width: 280px;
  scroll-snap-align: center;
  background: #1a1a1a;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.08);
}

.btn-cta {
  background: linear-gradient(to right, #00f0ff, #00ffa3);
  color: #000;
  font-weight: bold;
  border-radius: 999px;
  padding: 1rem 2rem;
  transition: background 0.3s ease;
}
.btn-cta:hover {
  background: linear-gradient(to left, #00f0ff, #00ffa3);
}

.titulo-impacto {
  font-size: 1.5rem; /* Aumentado desde 1rem */
  font-weight: 700;
  color: var(--primario);
  text-align: center;
  margin: 1rem 0 0.5rem;
}

.texto-impacto {
  font-size: 1.25rem; /* Aumentado desde 0.9rem aprox. */
  line-height: 1.6;
  color: #d0d0d0;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.icono-impacto {
  font-size: 2rem; /* Más grande para que se note el emoji */
  margin-bottom: 0.5rem;
}

/*WEBS INTELIGENTES NUEVO*/
.intro-impacto {
  font-size: 1.3rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 1rem auto;
  color: #e0f7fa;
}

.linea-impacto {
  border: none;
  border-top: 1px solid rgba(0,240,255,0.2);
  margin: 4rem auto;
  width: 60%;
}

.grid-explicacion {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.08);
}
.card-explicacion {
  background: rgba(0,0,0,0.2);
  padding: 1.5rem;
  border-radius: 16px;
  color: #e0f7fa;
  text-align: center;
}
.emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.btn-cta.especial {
  background: linear-gradient(90deg, #00f0ff, #1affd5);
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  transition: transform 0.2s ease-in-out;
}
.btn-cta.especial:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
}

.caso-img img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 2rem auto;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

a.enlace-ikal {
  color: #00f0ff;
  text-decoration: underline;
  font-weight: 500;
}

.galeria-ikal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.item-ikal {
  background-color: #11161f;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-ikal:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.25);
}

.item-ikal img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.item-ikal p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.galeria-ikal-balanceada {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.item-ikal-balanceado {
  background: #0e131b;
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.item-ikal-balanceado:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.25);
}

.item-ikal-balanceado img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 0 8px rgba(0,0,0,0.25);
}

.item-ikal-balanceado p {
  color: #d0d0d0;
  font-size: 0.96rem;
  line-height: 1.45;
  margin: 0;
}

.item-ikal-balanceado p {
  font-size: 1.3rem;
  color: #ccc;
}

.item-ikal-balanceado:hover {
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.18);
}

.btn-cta.especial:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px #00f0ff;
}

/*MARKETING NUEVO*/
.galeria-proyectos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.proyecto-card {
  background-color: rgba(0, 240, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  color: #e6e6e6;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
  transition: transform 0.3s ease;
}

.proyecto-card:hover {
  transform: translateY(-5px);
}

.proyecto-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.proyecto-card a {
  color: #00ffe6;
  font-weight: 500;
  text-decoration: none;
}

.proyecto-card a:hover {
  color: #00c4ff;
  text-decoration: underline;
}

.proyecto-card p {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

a {
  color: #00f0ff;
  text-decoration: underline dotted;
}
a:hover {
  color: #ffffff;
  text-decoration: none;
}

.grid-explicacion {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.card-explicacion {
  background: rgba(0,240,255,0.03);
  border: 1px solid rgba(0,240,255,0.08);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,240,255,0.05);
  color: #e6e6e6;
}

.card-explicacion .emoji {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--primario);
}

.embudo-contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 720px;
  padding: 1rem;
}
.embudo-imagen {
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,240,255,0.12);
}
.caso-texto {
  max-width: 800px;
  margin: 3rem auto 0 auto;
  padding: 0 1rem;
  font-size: 1.1rem;
  color: #e6e6e6;
}

.titulo-embudo {
  text-align: center;
  font-size: 1.4rem;
  color: var(--primario);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.linea-impacto {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primario), transparent);
  margin: 2rem auto;
  width: 80%;
}

.testimonio-ikal {
  font-style: italic;
  color: #ccc;
  text-align: center;
  margin-top: 2rem;
  max-width: 700px;
}

.transformacion-contenido {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.06);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
  color: #e0e0e0;
  font-size: 1.1rem;
}

.bloque-transformacion {
  margin-bottom: 1.8rem;
  padding: 1rem;
  border-left: 4px solid var(--primario);
}

.bloque-transformacion h4 {
  margin-bottom: 0.5rem;
  color: var(--primario);
  font-size: 1.2rem;
}

.bloque-transformacion.resultado {
  border-left: none;
  padding-left: 0;
  font-style: italic;
  text-align: center;
  font-size: 1.15rem;
  color: #aefaff;
}

.bloque-testimonio {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  text-align: center;
}

.bloque-testimonio .cita {
  font-style: italic;
  font-size: 1.1rem;
  color: #cccccc;
}

.bloque-testimonio .autor {
  margin-top: 0.5rem;
  font-weight: bold;
  color: #aefaff;
}

.seccion-clara:last-of-type {
  margin-bottom: 0;
  padding-bottom: 2rem;
}
footer {
  background-color: #000;
  color: #e6e6e6;
  padding: 2rem;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 0;
}

.resultados-impacto .estadisticas {
  margin-top: 2rem;
}

.estadistica {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.12);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.07);
}

.estadistica:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
}

.estadistica .icono-result {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primario);
}

.estadistica .contador {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primario);
  margin-bottom: 0.5rem;
  display: block;
}

.btn-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 240, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 1.4rem 2.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 60px;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.25), inset 0 0 8px rgba(0, 240, 255, 0.2);
  z-index: 9999;
  text-decoration: none;
  border: 1px solid rgba(0, 240, 255, 0.25);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-flotante .emoji {
  font-size: 1.8rem;
  animation: pulseEmoji 1.8s infinite ease-in-out;
}

.btn-flotante:hover {
  background: rgba(0, 240, 255, 0.25);
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
}

@keyframes pulseEmoji {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}
.intro-hero {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--blanco);
  line-height: 1.6;
  animation: fadeInUp 1s ease forwards;
}

.intro-hero .resaltado {
  color: var(--primario);
  font-weight: bold;
}

.testimonio-flash {
  font-size: 1.6rem;
  font-style: italic;
  color: #b0f9ff;
  background: rgba(0, 240, 255, 0.05);
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--primario);
  border-radius: 10px;
  max-width: 600px;
  margin: 1rem auto 2rem;
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.typed-sub {
  font-size: 1.7rem;
  color: var(--primario);
  margin: 1rem 0 2rem;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.4);
  min-height: 2.5rem; /* evita que el cambio de línea salte */
}
.typed-cursor {
  display: none !important;
}
.hero-demo-video {
  margin-top: 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,240,255,0.3);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.video-demo {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}
.testimonio-elegante {
  background: rgba(255,255,255,0.02);
  border-left: 4px solid var(--primario);
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--gris-claro);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,240,255,0.1);
}
.testimonio-elegante cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: bold;
  color: var(--blanco);
}

.razones-neotem {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.razon {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  border-radius: 1rem;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
  transition: transform 0.3s ease;
}

.razon:hover {
  transform: scale(1.05);
}

.icono-razon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primario);
}

.razon h4 {
  margin-bottom: 0.5rem;
  color: var(--blanco);
}

.razon p {
  color: var(--gris);
  font-size: 0.9rem;
}

/*CONTACTO*/
.contacto-mejorada {
  text-align: center;
  padding: 4rem 2rem;
}

.intro-contacto {
  max-width: 650px;
  margin: 1rem auto 3rem;
  font-size: 1rem;
  color: var(--gris-claro);
}

.grid-contacto {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 4rem;
}

.tarjeta-contacto {
  background: rgba(0,240,255,0.03);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,240,255,0.05);
  transition: transform 0.3s ease;
}
.tarjeta-contacto:hover {
  transform: translateY(-5px);
}
.btn-wsp {
  background-color: #25d366;
  color: white;
  padding: 0.8rem 1.5rem;
  display: inline-block;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
}
.email-link {
  color: var(--primario);
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
  text-decoration: underline;
}

.formulario-wrapper {
  max-width: 700px;
  margin: auto;
  background: rgba(255,255,255,0.02);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0,240,255,0.05);
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1rem;
}
.privacidad {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gris);
}
/* Separación visual entre bloques */
.grid-contacto {
  margin-bottom: 4rem;
}

/* Estética equilibrada en formularios */
.formulario-wrapper h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--primario);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: none;
  color: white;
  font-family: inherit;
  resize: none;
  box-shadow: inset 0 0 5px rgba(0,240,255,0.1);
}

/* Responsive tweak */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.btn-wsp-min {
  margin-top: 1rem;
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.intro-contacto, .form-intro {
  color: var(--gris-claro);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.grid-contacto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tarjeta-contacto {
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,240,255,0.1);
}

.formulario-wrapper {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border-radius: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.03);
  border: none;
  color: white;
  font-family: inherit;
  resize: none;
}

.info-contacto-final {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #aaa;
  text-align: center;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Unifica el botón de WhatsApp al estilo CTA */
.btn-wsp {
  background: linear-gradient(90deg, #00f0ff, #00ffd5);
  color: #000;
  font-weight: bold;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  transition: transform 0.3s ease;
}

.btn-wsp:hover {
  transform: scale(1.05);
}

/* Ajusta estilo final de privacidad */
.info-contacto-final {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--gris-claro);
  text-align: center;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.formulario-wrapper {
  background: rgba(0, 240, 255, 0.02);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.08);
  max-width: 960px;
  margin: 3rem auto;
}

.formulario-wrapper h3 {
  color: var(--primario);
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
  text-align: center;
}

.form-intro {
  font-size: 1rem;
  color: var(--gris-claro);
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 10px;
  border: none;
  background: #1a1a1a;
  color: white;
  font-size: 1rem;
  transition: border 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border: 1px solid var(--primario);
}

textarea {
  margin-top: 1rem;
  resize: none;
}

textarea::placeholder,
input::placeholder,
select {
  color: #bcbcbc;
}

.btn-cta {
  margin-top: 1.5rem;
  display: block;
  width: fit-content;
  margin-inline: auto;
}

.microcopy-confirmacion {
  margin-top: 1rem;
  text-align: center;
  color: var(--primario);
  font-size: 0.95rem;
}

.privacidad {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: var(--gris-claro);
  text-align: center;
}
.form-titulo-seccion {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primario);
  text-align: center;
  margin-bottom: 0.5rem;
}

.motivacion-formulario {
  font-size: 0.95rem;
  color: var(--gris-claro);
  margin-bottom: 1rem;
  text-align: center;
}

.microcopy-confirmacion, .privacidad {
  color: #ccc;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  background-color: rgba(0,240,255,0.03);
  border-radius: 0.75rem;
}

.confirmacion-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 30, 0.9);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.confirmacion-box {
  background: #0b0f15;
  border: 1px solid rgba(0,240,255,0.2);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0,240,255,0.3);
  animation: fadeInUp 0.6s ease-out;
}

.confirmacion-box h3 {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #00f0ff;
}

.confirmacion-box p {
  font-size: 1rem;
  margin: 1rem 0 1.5rem;
  color: #ccc;
}

.check-animation {
  font-size: 3rem;
  animation: popIn 0.5s ease-out;
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

#contacto {
  scroll-margin-top: 65px; /* Ajusta según el alto de tu header */
}

#nosotros {
  scroll-margin-top: 30px; /* Ajusta según el alto de tu header */
}

.badge-servicio {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.05);
}

.badge-webs { background-color: rgba(0, 245, 198, 0.15); color: #00f5c6; }
.badge-redes { background-color: rgba(255, 92, 212, 0.15); color: #FF5CD4; }
.badge-marketing { background-color: rgba(255, 125, 0, 0.15); color: #FF7D00; }
.badge-visual { background-color: rgba(0, 168, 255, 0.15); color: #00A8FF; }
.badge-prompts { background-color: rgba(180, 120, 255, 0.15); color: #B478FF; }


/*WEBS*/

.cta-final-resaltada {
  background: linear-gradient(120deg, #00f0ff 0%, #006f8f 100%);
  padding: 4rem 2rem;
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0 0 60px rgba(0, 255, 255, 0.2);
  text-align: center;
  color: #ffffff;
  margin-top: 6rem;
}

.cta-final-resaltada h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.emoji-cta {
  font-size: 1.5rem;
  margin-right: 0.4rem;
}

.mensaje-clave {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: #f0f0f0;
}

.cta-final-resaltada .btn-cta.especial {
  background: #00ffe0;
  color: #000;
  font-weight: bold;
  border-radius: 999px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.3);
  transition: transform 0.2s ease;
}

.cta-final-resaltada .btn-cta.especial:hover {
  transform: scale(1.05);
  background: #02fff2;
}

.destacada-transformacion {
  background-color: #11161d;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.05);
  margin-top: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ddd;
}

.destacada-transformacion h4 {
  margin-bottom: 0.5rem;
  color: #00fff0;
  font-size: 1.1rem;
}

.destacada-transformacion .antes h4 {
  color: #ff6b6b;
}

.destacada-transformacion .despues h4 {
  color: #00ffa0;
}

.destacada-transformacion .resultado h4 {
  color: #00c3ff;
}

.destacada-transformacion p {
  margin-bottom: 1.2rem;
}
.fases-metodologia {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.fase {
  background: linear-gradient(145deg, #11181f, #0d1218);
  border: 1px solid rgba(0, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fase:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.08);
}

.icono-fase {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #00fff0;
}

.fase h4 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  color: #ffffff;
}

.fase p {
  font-size: 1.05rem;
  color: #cccccc;
  line-height: 1.6;
}

.grid-galeria-ikal-dosfilas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.card-visual h4 {
  color: #00fff7;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card-visual p {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.5;
}

.card-visual {
  max-width: 480px;
  padding: 1.5rem;
  margin: 1.5rem auto;
  background: #0b0d10;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.card-visual:hover {
  transform: scale(1.02);
}

.card-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.galeria-ikal-balanceada {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  justify-items: center;
}

.estadisticas.en-proceso .estadistica {
  opacity: 0.7;
  filter: grayscale(30%);
  text-align: center;
  transition: all 0.3s ease;
}

.estadisticas.en-proceso .estadistica:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.03);
}

/*MARKETING*/
.timeline {
  position: relative;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: rgba(0,240,255,0.2);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  padding: 2rem 3rem;
  position: relative;
  width: 50%;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item .content {
  background: rgba(0,240,255,0.03);
  border: 1px solid rgba(0,240,255,0.08);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 12px rgba(0,240,255,0.05);
}

.timeline-item .emoji {
  font-size: 2rem;
  color: var(--primario);
  display: block;
  margin-bottom: 0.5rem;
}

.timeline-item h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff;
}

.timeline-item p {
  color: #ccc;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 8px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 1rem;
    margin-bottom: 2rem;
  }

  .timeline-item.left, .timeline-item.right {
    left: 0;
    text-align: left;
  }
}

.seccion-transformacion {
  background: linear-gradient(to bottom, rgba(0,240,255,0.015), rgba(0,0,0,0.02));
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.grid-transformacion {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-inline: auto;
}

.bloque-transformacion {
  background: rgba(0,240,255,0.025);
  border: 1px solid rgba(0,240,255,0.07);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  color: #e6e6e6;
  box-shadow: 0 0 12px rgba(0,240,255,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bloque-transformacion:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0,240,255,0.12);
}

.bloque-transformacion img {
  width: 100%;
  height: 200px; /* Fija un alto uniforme */
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.bloque-transformacion h4 {
  font-size: 1.1rem;
  color: var(--primario);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.bloque-transformacion p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cfcfcf;
  padding: 0 0.5rem;
  margin: 0 auto;
}

.svg-embudo {
  background: rgba(0,240,255,0.035);
  padding: 1rem;
  border-radius: 12px;
  margin: 1rem 0;
  text-align: left;
  font-size: 0.95rem;
  color: #ccc;
}

.svg-embudo span {
  color: var(--primario);
  font-weight: bold;
  margin-right: 0.3rem;
}

@media (max-width: 1024px) {
  .grid-transformacion {
    grid-template-columns: repeat(2, 1fr);
  }

  .bloque-transformacion img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .grid-transformacion {
    grid-template-columns: 1fr;
  }

  .bloque-transformacion img {
    height: 160px;
  }
}

/*IMAGEN EMBUDO*/
.embudo-svg {
  padding: 4rem 2rem;
  text-align: center;
}
.embudo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.nivel {
  fill: rgba(0, 240, 255, 0.05);
  stroke: var(--primario);
  stroke-width: 2;
  transition: all 0.4s ease;
}
.nivel:hover {
  fill: rgba(0, 240, 255, 0.2);
  transform: scale(1.02);
}

.texto {
  fill: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  pointer-events: none;
}

.carrito {
  fill: var(--primario);
  opacity: 0.8;
  transition: transform 0.4s ease;
}
.carrito-icono {
  font-size: 1.2rem;
  fill: #000;
  pointer-events: none;
  font-weight: bold;
}

/*PASOS MARKETING*/
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem 0;
}
.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primario);
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem 2rem;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item.izquierda {
  left: 0;
  text-align: right;
}
.timeline-item.derecha {
  left: 50%;
  text-align: left;
}

.timeline-item .contenido {
  background: rgba(0,240,255,0.05);
  border: 1px solid rgba(0,240,255,0.1);
  padding: 1.5rem;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 10px rgba(0,240,255,0.04);
}

.timeline-item .emoji {
  font-size: 1.8rem;
  color: var(--primario);
  margin-bottom: 0.4rem;
  display: inline-block;
}

.timeline-item h4 {
  font-size: 1.3rem;
  color: var(--blanco);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 1.1rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 8px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 2.5rem;
    text-align: left !important;
  }
  .timeline-item.derecha {
    left: 0;
  }
  .timeline-item.izquierda {
    left: 0;
  }
}

/*IMAGENES INTEGRARQ*/
.tabs-transformacion {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.tabs-transformacion .tab {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  color: var(--primario);
  transition: all 0.3s ease;
}

.tabs-transformacion .tab.activo {
  background: var(--primario);
  color: #000;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
}

.tab-contenido {
  display: none;
  max-width: 800px;
  margin: auto;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.tab-contenido img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(0,240,255,0.08);
}

.tab-contenido.activo {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/*EMBUDO*/
.bloque-embudo {
  background: rgba(0,240,255,0.03);
  border: 1px solid rgba(0,240,255,0.08);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,240,255,0.03);
}

.titulo-embudo {
  font-size: 1.6rem;
  color: var(--primario);
  margin-bottom: 1rem;
}

.intro-embudo {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.embudo-escalonado {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.etapa {
  background: rgba(0,240,255,0.04);
  border: 1px solid rgba(0,240,255,0.08);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0,240,255,0.05);
  transition: transform 0.3s ease;
}
.etapa:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 12px rgba(0,240,255,0.1);
}

.paso-num {
  background: var(--primario);
  color: #000;
  font-weight: bold;
  font-size: 1.3rem;
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  line-height: 2.4rem;
  margin-bottom: 0.6rem;
  display: inline-block;
}

.etapa h5 {
  font-size: 1.1rem;
  color: var(--blanco);
  margin-bottom: 0.4rem;
}

.etapa p {
  font-size: 0.95rem;
  color: #ccc;
}

.mensaje-final-embudo {
  margin-top: 2.5rem;
  background: rgba(0,240,255,0.04);
  padding: 1rem;
  border-radius: 10px;
  color: #e6e6e6;
  font-weight: bold;
}

/* Resultados Integrarq*/
/* Contenedor vertical del botón de menú */
.menu-contenedor {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 16px;
  position: relative;
}

/* Texto MENÚ */
.etiqueta-menu {
  font-size: 11px;
  color: #00f0ff;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.8;
  margin-bottom: 2px;
}

/* Icono hamburguesa */
.menu-toggle {
  font-size: 22px;
  cursor: pointer;
  color: white;
  line-height: 1;
  margin-top: 2px;
}

/* SOLO visible en móviles */
@media (max-width: 767px) {
  .menu-contenedor {
    display: flex;
  }
}

/* Oculta en escritorio */
@media (min-width: 768px) {
  .etiqueta-menu {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

.tab-contenido {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
}

.tab-contenido.activo {
  display: block;
}

.tab-contenido img {
  width: 100%;
  max-width: 800px;
  height: 450px;
  object-fit: cover; /* o 'contain' si no quieres recortar */
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,240,255,0.1);
  transition: transform 0.3s ease;
}

.tab-contenido img:hover {
  transform: scale(1.02);
}

.tabs-transformacion {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding: 2rem 0 1rem;
  margin: 0;
}

.tabs-transformacion .tab {
  background: rgba(0,240,255,0.08);
  color: #00f0ff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.tabs-transformacion .tab.activo {
  background: #00f0ff;
  color: #000;
  box-shadow: 0 0 12px rgba(0,240,255,0.4);
}
.tab-contenido img {
  width: 100%;
  max-width: 800px;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,240,255,0.1);
  display: block;
  margin: 0 auto 1.5rem;
}

/*IMAGENES VERTICALES Y HORIZONTALES*/
/* Por defecto (pantallas grandes) mostramos solo la versión desktop */
.solo-desktop {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.solo-movil {
  display: none !important;
}

/* En móviles, ocultamos la desktop y mostramos solo la móvil */
@media (max-width: 767px) {
  .solo-desktop {
    display: none !important;
  }

  .solo-movil {
    display: block !important;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .solo-movil {
    display: block !important;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain; /* ✅ CAMBIAMOS cover → contain */
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
  }

  .vertical-optimizada {
    max-height: 100vh; /* o ajusta a 600px si quieres limitar aún más */
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .mostrar-completa {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100vh; /* que nunca exceda la altura de pantalla */
    object-fit: contain;
    object-position: center;
    margin: 0 auto 1.5rem;
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .video-vertical {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
  }
}
.contenido-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 1rem;
  max-width: 960px;
  width: 100%;
}

.video-horizontal,
.video-vertical {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .solo-desktop {
    display: none !important;
  }

  .solo-movil {
    display: block !important;
  }

  .video-vertical {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.descripcion-transformacion {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #e6e6e6;
  text-align: center;
  line-height: 1.6;
  padding: 1rem;
}

@media (max-width: 768px) {
  .solo-desktop {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .tabs-transformacion .tab.solo-desktop {
    display: inline-block !important;
    width: auto;
    flex-grow: 0;
    text-align: center;
    padding-inline: 1.2rem;
  }
}

/*VIDEO INICIAL SECCIÓN WEB*/
.video-impacto {
  background-color: transparent; /* Elimina fondo negro */
  max-width: 960px;
  margin: 3rem auto;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
}

.video-responsivo {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 1rem;
  background-color: transparent; /* elimina fondo negro interno */
}

.custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00f0ff;
  color: #000;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  transition: background 0.3s ease;
}
.custom-play-btn:hover {
  background: #00c4d3;
}
.video-responsivo {
  background-color: transparent !important;
}
