/*************************
*****Dark Theme Global****
**************************/

:root {
  --primary-dark: #0f1419;
  --secondary-dark: #1a1f29;
  --accent-dark: #2d3748;
  --surface-dark: #1e2328;
  --surface-light: #2a2f3a;
  --text-primary: #f7fafc;
  --text-secondary: #a0aec0;
  --accent-blue: #4299e1;
  --accent-purple: #805ad5;
  --accent-gradient: linear-gradient(135deg, #4299e1 0%, #805ad5 100%);
  --glass-bg: rgba(45, 55, 72, 0.8);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/*************************
*******Typography******
**************************/

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-secondary);
  background-color: var(--primary-dark);
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(66, 153, 225, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(128, 90, 213, 0.1) 0%, transparent 50%);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 600;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 20px;
  color: var(--text-primary);
}

.parallax {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.parallax,
.parallax h1,
.parallax h2,
.parallax h3,
.parallax h4,
.parallax h5,
.parallax h6 {
  color: var(--text-primary);
}

.parallax input[type="text"],
.parallax input[type="text"]:hover,
.parallax input[type="email"],
.parallax input[type="email"]:hover,
.parallax input[type="url"],
.parallax input[type="url"]:hover,
.parallax input[type="password"],
.parallax input[type="password"]:hover,
.parallax textarea,
.parallax textarea:hover {
  font-weight: 300;
  color: var(--text-primary);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn {
  border: 0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn.btn-primary:hover {
  background: var(--accent-gradient);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(66, 153, 225, 0.3);
}

.navbar-nav li a:hover, 
.navbar-nav li a:focus {
  outline:none;
  outline-offset: 0;
  text-decoration:none;  
  background: transparent;
}

a {
  text-decoration: none;
  color: var(--accent-blue);
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

a:focus, 
a:hover {
  text-decoration: none;
  outline: none;
  color: var(--accent-purple);
}

section {
  padding: 100px 0;
  position: relative;
}

.heading {
  padding-bottom: 80px;
}

.heading h2 {
  position: relative;
}

.heading h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader > i {
  font-size: 48px;
  color: var(--accent-blue);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/*************************
*****Navbar Elegante*****
**************************/

.main-nav {
  background: rgba(15, 20, 25, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  min-height: 70px; /* Altura fija para el navbar */
}

.main-nav.navbar-fixed-top {
  background: rgba(15, 20, 25, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
  padding: 10px 15px; /* Padding reducido */
}

.navbar-brand h1 {
  margin: 0;
  line-height: 1;
}

.navbar-brand img {
  max-height: 45px; /* Altura máxima del logo */
  width: auto;
  transition: all 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-right li a {
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  padding: 25px 20px;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.navbar-right li a:before {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transform: translateX(-55%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar-right li a:hover {
  color: var(--accent-blue);
}

.navbar-right li a:hover:before,
.navbar-right li.active a:before {
  width: 70%;
}

.navbar-right li.active a {
  background-color: transparent;
  color: var(--accent-blue);
}

.navbar-toggle {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
}

.navbar-toggle .icon-bar {
  background-color: var(--text-primary);
}

/*************************
********Home Dark*********
**************************/
#home-slider {
  overflow: hidden;
  position: relative;
  height: 100vh;
}

/* Hero Container Layout */
.hero-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 15;
  padding: 0 5%;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  text-align: left;
  color: var(--text-primary);
  z-index: 10;
  position: relative;
}

#home-slider .caption {
  position: absolute;
  top: 50%;
  margin-top: -120px;
  left: 0;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  z-index: 15;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-primary);
}

#home-slider .caption h1,
.hero-text h1 {
  color: var(--text-primary);
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.hero-text h1 {
  text-transform: uppercase;
  font-size: 56px;
  z-index: 10;
  position: relative;
}

/* Estilos base para el título en dos líneas */
.hero-text h1 span {
  display: block;
  color: transparent;
  text-transform: none;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Primera línea: "Creatividad" - Efecto azul creativo */
.hero-text h1 .title-line-1 {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.95) 0%, 
    rgba(37, 99, 235, 0.9) 50%, 
    rgba(29, 78, 216, 0.85) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: creativityGlow 6s ease-in-out infinite, slideInCreativity 1.2s ease-out 0.5s forwards;
  filter: drop-shadow(0 3px 15px rgba(59, 130, 246, 0.6));
  text-shadow: 0 0 15px rgba(59, 130, 246, 0.5),
               0 0 25px rgba(37, 99, 235, 0.3);
}

/* Segunda línea: "Informática" - Efecto púrpura tecnológico */
.hero-text h1 .title-line-2 {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.95) 0%, 
    rgba(124, 58, 237, 0.9) 50%, 
    rgba(109, 40, 217, 0.85) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: informaticaGlow 6s ease-in-out infinite, slideInInformatica 1.2s ease-out 1.3s forwards;
  filter: drop-shadow(0 3px 15px rgba(139, 92, 246, 0.6));
  text-shadow: 0 0 15px rgba(139, 92, 246, 0.5),
               0 0 25px rgba(124, 58, 237, 0.3);
}

/* Tercera línea: "Help Desk Perú" - Efecto cian tecnológico */
.hero-text h1 .title-line-3 {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, 
    rgba(6, 182, 212, 0.95) 0%, 
    rgba(14, 165, 233, 0.9) 50%, 
    rgba(59, 130, 246, 0.85) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: helpdeskGlow 6s ease-in-out infinite, slideInHelpdesk 1.2s ease-out 2.1s forwards;
  filter: drop-shadow(0 3px 15px rgba(6, 182, 212, 0.6));
  text-shadow: 0 0 15px rgba(6, 182, 212, 0.5),
               0 0 25px rgba(14, 165, 233, 0.3);
}

#home-slider .caption h1 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*************************
***Hero Description Effects***
**************************/

.hero-description {
  max-width: 600px;
  margin: 30px 0 0 0;
  text-align: left;
}

.hero-description p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: rgba(247, 250, 252, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-description p.animated {
  opacity: 1;
  transform: translateY(0);
}

.hero-description .highlight {
  color: var(--accent-blue);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.hero-description .highlight:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width 0.8s ease;
}

.hero-description .highlight.highlight-active:after {
  width: 100%;
}

.hero-description .highlight:hover:after {
  background: var(--accent-purple);
  box-shadow: 0 0 8px var(--accent-purple);
}

@keyframes underlineGrow {
  to { width: 100%; }
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: enhancedGradientShift 4s ease-in-out infinite;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
}

@keyframes enhancedGradientShift {
  0%, 100% { 
    background-position: 0% 50%;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  }
  25% {
    background-position: 50% 0%;
    filter: drop-shadow(0 3px 12px rgba(139, 92, 246, 0.5));
    text-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
  }
  50% { 
    background-position: 100% 50%;
    filter: drop-shadow(0 2px 10px rgba(6, 182, 212, 0.4));
    text-shadow: 0 0 22px rgba(6, 182, 212, 0.5);
  }
  75% {
    background-position: 50% 100%;
    filter: drop-shadow(0 3px 12px rgba(139, 92, 246, 0.5));
    text-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
  }
}


/* Animación de entrada para "Creatividad" */
@keyframes slideInCreativity {
  0% {
    opacity: 0;
    transform: translateX(-80px) rotateY(-15deg);
    filter: blur(5px) drop-shadow(0 0 0 transparent);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-10px) rotateY(-3deg);
    filter: blur(1px) drop-shadow(0 2px 10px rgba(59, 130, 246, 0.4));
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
    filter: blur(0) drop-shadow(0 3px 15px rgba(59, 130, 246, 0.6));
  }
}

/* Animación de entrada para "Informática" */
@keyframes slideInInformatica {
  0% {
    opacity: 0;
    transform: translateX(80px) rotateY(15deg);
    filter: blur(5px) drop-shadow(0 0 0 transparent);
  }
  50% {
    opacity: 0.7;
    transform: translateX(10px) rotateY(3deg);
    filter: blur(1px) drop-shadow(0 2px 10px rgba(139, 92, 246, 0.4));
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
    filter: blur(0) drop-shadow(0 3px 15px rgba(139, 92, 246, 0.6));
  }
}

/* Animación de resplandor para "Creatividad" */
@keyframes creativityGlow {
  0%, 100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 3px 15px rgba(59, 130, 246, 0.6));
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.5),
                 0 0 25px rgba(37, 99, 235, 0.3);
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 4px 20px rgba(59, 130, 246, 0.8));
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.7),
                 0 0 30px rgba(37, 99, 235, 0.4);
  }
}

/* Animación de resplandor para "Informática" */
@keyframes informaticaGlow {
  0%, 100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 3px 15px rgba(139, 92, 246, 0.6));
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.5),
                 0 0 25px rgba(124, 58, 237, 0.3);
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 4px 20px rgba(139, 92, 246, 0.8));
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.7),
                 0 0 30px rgba(124, 58, 237, 0.4);
  }
}

/* Animación de entrada para "Help Desk Perú" */
@keyframes slideInHelpdesk {
  0% {
    opacity: 0;
    transform: translateY(60px) rotateX(-15deg);
    filter: blur(5px) drop-shadow(0 0 0 transparent);
  }
  50% {
    opacity: 0.7;
    transform: translateY(10px) rotateX(-3deg);
    filter: blur(1px) drop-shadow(0 2px 10px rgba(6, 182, 212, 0.4));
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    filter: blur(0) drop-shadow(0 3px 15px rgba(6, 182, 212, 0.6));
  }
}

/* Animación de resplandor para "Help Desk Perú" */
@keyframes helpdeskGlow {
  0%, 100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 3px 15px rgba(6, 182, 212, 0.6));
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.5),
                 0 0 25px rgba(14, 165, 233, 0.3);
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 4px 20px rgba(6, 182, 212, 0.8));
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.7),
                 0 0 30px rgba(14, 165, 233, 0.4);
  }
}

/* Efecto de escritura progresiva */
.hero-line-1 {
  animation-delay: 0.3s !important;
}

.hero-line-2 {
  animation-delay: 0.6s !important;
}

.hero-line-3 {
  animation-delay: 0.9s !important;
}

.hero-line-4 {
  animation-delay: 1.2s !important;
}

/*************************
***AI Robot Image Effects***
**************************/

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ai-robot-container {
  position: fixed;
  top: -10%;
  right: -15%;
  width: 100%;
  height: 120vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}

.ai-robot {
  width: 90vw;
  height: 110vh;
  object-fit: cover;
  object-position: center top;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 30px 60px rgba(66, 153, 225, 0.1));
  animation: float 10s ease-in-out infinite;
  /* Desvanecimiento completo para eliminar forma rectangular */
  mask: 
    radial-gradient(ellipse 80% 60% at 60% 40%, 
      rgba(0,0,0,1) 20%, 
      rgba(0,0,0,0.9) 35%, 
      rgba(0,0,0,0.7) 50%, 
      rgba(0,0,0,0.4) 65%, 
      rgba(0,0,0,0.2) 80%, 
      rgba(0,0,0,0.05) 90%, 
      rgba(0,0,0,0) 100%),
    linear-gradient(to right, 
      rgba(0,0,0,0) 0%, 
      rgba(0,0,0,0.2) 15%, 
      rgba(0,0,0,0.6) 30%, 
      rgba(0,0,0,1) 40%, 
      rgba(0,0,0,1) 60%, 
      rgba(0,0,0,0.6) 70%, 
      rgba(0,0,0,0.2) 85%, 
      rgba(0,0,0,0) 100%);
  -webkit-mask: 
    radial-gradient(ellipse 80% 60% at 60% 40%, 
      rgba(0,0,0,1) 20%, 
      rgba(0,0,0,0.9) 35%, 
      rgba(0,0,0,0.7) 50%, 
      rgba(0,0,0,0.4) 65%, 
      rgba(0,0,0,0.2) 80%, 
      rgba(0,0,0,0.05) 90%, 
      rgba(0,0,0,0) 100%),
    linear-gradient(to right, 
      rgba(0,0,0,0) 0%, 
      rgba(0,0,0,0.2) 15%, 
      rgba(0,0,0,0.6) 30%, 
      rgba(0,0,0,1) 40%, 
      rgba(0,0,0,1) 60%, 
      rgba(0,0,0,0.6) 70%, 
      rgba(0,0,0,0.2) 85%, 
      rgba(0,0,0,0) 100%);
  mask-composite: intersect;
  -webkit-mask-composite: intersect;
}

/* Efectos de anillos pulsantes */
.pulse-ring {
  position: absolute;
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  opacity: 0;
  animation: pulseRing 3s infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pulse-ring-1 {
  width: 200px;
  height: 200px;
  animation-delay: 0s;
}

.pulse-ring-2 {
  width: 300px;
  height: 300px;
  animation-delay: 1s;
  border-color: var(--accent-purple);
}

.pulse-ring-3 {
  width: 400px;
  height: 400px;
  animation-delay: 2s;
  border-color: var(--accent-blue);
}

@keyframes pulseRing {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
  40% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Partículas flotantes */
.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
  opacity: 0.8;
  animation: floatParticle 8s infinite;
  box-shadow: 0 0 10px var(--accent-blue);
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.particle-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  animation-duration: 8s;
  background: var(--accent-purple);
  box-shadow: 0 0 10px var(--accent-purple);
}

.particle-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
  animation-duration: 7s;
}

.particle-4 {
  top: 15%;
  right: 25%;
  animation-delay: 1s;
  animation-duration: 9s;
}

.particle-5 {
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
  animation-duration: 5s;
  background: var(--accent-purple);
  box-shadow: 0 0 10px var(--accent-purple);
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-25px) rotate(270deg);
    opacity: 1;
  }
}

/* Efecto glow detrás del robot */
.ai-robot-container:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(66, 153, 225, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

/* Responsive para hero layout */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text {
    text-align: center;
    order: 2;
    margin-top: 60px !important;
  }
  
  .hero-image {
    order: 1;
  }
  
  .ai-robot-container {
    position: absolute !important;
    top: 0 !important;
    left: 0% !important; /* Más centrado */
    right: auto !important;
    width: 100% !important; /* Ancho completo para centrar mejor */
    height: 100% !important;
    z-index: 1 !important; /* Imagen delante de las burbujas */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .ai-robot {
    width: 80vw !important; /* Más grande para que se vea más */
    height: 80vh !important; /* Más grande para que se vea más */
    max-width: none !important;
    object-fit: contain !important; /* Cambio a contain para ver más de la imagen */
    object-position: center center !important;
    opacity: 0.7 !important; /* No tan transparente, delante de burbujas */
  }
  
  .hero-description {
    margin: 30px auto 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 0 20px;
  }
  
  .hero-text {
    margin-top: 80px !important;
    text-align: center;
  }
  
  /* Video de fondo atrás en móvil */
  .video-background {
    z-index: -1 !important; /* Burbujas atrás */
  }
  
  .ai-robot-container {
    position: absolute !important;
    top: 0 !important; /* Posición base */
    left: 50% !important; /* Centrar horizontalmente */
    transform: translateX(-50%) translateY(-45%) !important; /* Bajar para mostrar la cabeza */
    width: 160vw !important; /* Ancho de la imagen */
    height: 160vh !important; /* Altura de la imagen */
    z-index: 1 !important; /* Imagen delante de las burbujas */
    display: block !important; /* Sin flexbox */
  }
  
  .ai-robot {
    width: 160vw !important; /* Al doble: de 80vw a 160vw */
    height: 160vh !important; /* Al doble: de 80vh a 160vh */
    max-width: none !important;
    object-fit: contain !important; /* Cambio a contain para ver más de la imagen */
    object-position: center center !important;
    opacity: 0.7 !important; /* No tan transparente, delante de burbujas */
    position: relative !important;
  }
  
  /* Efecto de transparencia gradual en la parte inferior */
  .ai-robot::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 40% !important; /* Cubre el 40% inferior de la imagen */
    background: linear-gradient(to bottom, 
      rgba(15, 20, 25, 0) 0%, 
      rgba(15, 20, 25, 0.2) 25%, 
      rgba(15, 20, 25, 0.5) 50%, 
      rgba(15, 20, 25, 0.8) 75%, 
      rgba(15, 20, 25, 1) 100%) !important; /* Gradiente que simula el fondo */
    pointer-events: none !important;
    z-index: 1 !important;
  }
  
  .hero-description p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  
  .hero-description {
    max-width: 90%;
    margin: 20px auto 0;
    padding: 0;
  }
  
  /* En tablet/móvil: título en dos líneas con efectos completos */
  .hero-text h1 .title-line-1:after {
    content: none !important;
  }
  
  .hero-text h1 .title-line-1 {
    display: block !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    animation: creativityGlow 6s ease-in-out infinite, slideInCreativity 1.2s ease-out 0.5s forwards !important;
  }
  
  .hero-text h1 .title-line-2 {
    display: block !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    animation: informaticaGlow 6s ease-in-out infinite, slideInInformatica 1.2s ease-out 1.3s forwards !important;
  }

  .hero-text h1 .title-line-3 {
    display: block !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    animation: helpdeskGlow 6s ease-in-out infinite, slideInHelpdesk 1.2s ease-out 2.1s forwards !important;
  }
  
  .pulse-ring-1 { width: 140px; height: 140px; } /* Proporcionalmente más grandes */
  .pulse-ring-2 { width: 180px; height: 180px; } /* Proporcionalmente más grandes */
  .pulse-ring-3 { width: 220px; height: 220px; } /* Proporcionalmente más grandes */
}

@media (max-width: 480px) {
  /* Video de fondo atrás en móvil pequeño */
  .video-background {
    z-index: -1 !important; /* Burbujas atrás */
  }
  
  .hero-text {
    margin-top: 100px !important;
    text-align: center;
  }
  
  .ai-robot-container {
    position: absolute !important;
    top: 0 !important; /* Posición base */
    left: 50% !important; /* Centrar horizontalmente */
    transform: translateX(-50%) translateY(-45%) !important; /* Bajar más para mostrar la cabeza completa */
    width: 150vw !important; /* Ancho de la imagen */
    height: 150vh !important; /* Altura de la imagen */
    z-index: 1 !important; /* Imagen delante de las burbujas */
    display: block !important; /* Sin flexbox */
  }
  
  .ai-robot {
    width: 150vw !important; /* Al doble: de 75vw a 150vw */
    height: 150vh !important; /* Al doble: de 75vh a 150vh */
    max-width: none !important;
    object-fit: contain !important; /* Cambio a contain para ver más de la imagen */
    object-position: center center !important;
    opacity: 0.6 !important; /* No tan transparente, delante de burbujas */
    position: relative !important;
  }
  
  /* Efecto de transparencia gradual en la parte inferior para móvil pequeño */
  @media (max-width: 480px) {
    .ai-robot::after {
      content: '' !important;
      position: absolute !important;
      bottom: 0 !important;
      left: 0 !important;
      right: 0 !important;
      height: 40% !important; /* Cubre el 40% inferior de la imagen */
      background: linear-gradient(to bottom, 
        rgba(15, 20, 25, 0) 0%, 
        rgba(15, 20, 25, 0.2) 25%, 
        rgba(15, 20, 25, 0.5) 50%, 
        rgba(15, 20, 25, 0.8) 75%, 
        rgba(15, 20, 25, 1) 100%) !important; /* Gradiente que simula el fondo */
      pointer-events: none !important;
      z-index: 1 !important;
    }
  }
  
  .hero-description p {
  font-size: 14px;
    line-height: 1.4;
  }
  
  /* En móvil pequeño: título más compacto con efectos completos */
  .hero-text h1 .title-line-1 {
    font-size: 32px !important;
    font-weight: 700 !important;
    display: block !important;
    animation: creativityGlow 6s ease-in-out infinite, slideInCreativity 1.2s ease-out 0.5s forwards !important;
  }
  
  .hero-text h1 .title-line-2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    display: block !important;
    animation: informaticaGlow 6s ease-in-out infinite, slideInInformatica 1.2s ease-out 1.3s forwards !important;
  }

  .hero-text h1 .title-line-3 {
    font-size: 32px !important;
    font-weight: 700 !important;
    display: block !important;
    animation: helpdeskGlow 6s ease-in-out infinite, slideInHelpdesk 1.2s ease-out 2.1s forwards !important;
  }
  
  .pulse-ring-1 { width: 120px; height: 120px; } /* Proporcionalmente más grandes */
  .pulse-ring-2 { width: 150px; height: 150px; } /* Proporcionalmente más grandes */
  .pulse-ring-3 { width: 180px; height: 180px; } /* Proporcionalmente más grandes */
}

.caption .btn-start,
.hero-text .btn-start {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 45px;
  border: 2px solid transparent;
  border-radius: 50px;
  margin-top: 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-transform: none;
  display: inline-block;
}

.caption .btn-start:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  transition: left 0.4s ease;
  z-index: -1;
}

.caption .btn-start:hover {
  color: var(--text-primary);
  border-color: var(--accent-blue);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(66, 153, 225, 0.4);
}

.caption .btn-start:hover:before {
  left: 0;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
}

.carousel-fade .carousel-inner .item:after {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 20, 25, 0.6);
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}

.left-control, .right-control {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 20px;
  line-height: 58px;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.left-control {
  left: 40px;
} 

.right-control {
  right: 40px;
}

.left-control:hover, 
.right-control:hover {
  color: var(--text-primary);
  background: rgba(66, 153, 225, 0.3);
  border-color: var(--accent-blue);
  transform: scale(1.1);
}

#home-slider:hover .left-control {
  opacity: 1;
  left: 25px;
} 

#home-slider:hover .right-control {
  opacity: 1;
  right: 25px;
}

#home-slider .fa-angle-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--text-primary);
  font-size: 24px;
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  animation: bounce 2s infinite;
  transition: all 0.3s ease;
}

#home-slider .fa-angle-down:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}

/*************************
*****Services Dark*******
**************************/

#services {
  background: var(--secondary-dark);
  position: relative;
  overflow: hidden;
}

#services:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(66, 153, 225, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(128, 90, 213, 0.1) 0%, transparent 50%);
  z-index: 1;
}

#services .container {
  position: relative;
  z-index: 2;
}

.service-icon {
  border-radius: 50%;
  color: var(--text-primary);
  display: inline-block;
  font-size: 40px;
  height: 100px;
  line-height: 100px;
  width: 100px;  
  background: var(--accent-gradient);
  box-shadow: 0 10px 30px rgba(66, 153, 225, 0.3);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-icon:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.our-services .col-sm-4:hover .service-icon {
  transform: translateY(-15px) scale(1.1);
  box-shadow: 0 20px 50px rgba(66, 153, 225, 0.4);
}

.our-services .col-sm-4:hover .service-icon:before {
  left: 100%;
}

.our-services .col-sm-4 {
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 50px 30px;
  transition: all 0.4s ease;
  position: relative;
  background: rgba(45, 55, 72, 0.3);
  border-radius: 15px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.our-services .col-sm-4:hover {
  transform: translateY(-10px);
  background: rgba(45, 55, 72, 0.6);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.our-services .col-sm-4:nth-child(4), 
.our-services .col-sm-4:nth-child(5), 
.our-services .col-sm-4:nth-child(6) {
  border-bottom: 1px solid var(--glass-border);
  padding-top: 50px;
}

.our-services .col-sm-4:nth-child(3), 
.our-services .col-sm-4:nth-child(6) {
  border-right: 1px solid var(--glass-border);
}

.service-info h3 {
  margin-top: 30px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 22px;
}

.service-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.service-features li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.service-features li i {
  color: var(--accent-blue);
  margin-right: 10px;
  font-size: 12px;
  width: 16px;
}

/*************************
*****About Dark*********
**************************/
#about-us {
  background: 
    linear-gradient(135deg, rgba(15, 20, 25, 0.9), rgba(26, 31, 41, 0.9)), 
    url(../images/bg-futuristic.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#about-us:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(66, 153, 225, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(128, 90, 213, 0.15) 0%, transparent 50%);
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.3; }
}

#about-us .container {
  position: relative;
  z-index: 2;
}

#about-us h2 {
  margin-top: 0;
  color: var(--text-primary);
  position: relative;
  z-index: 2;
}

#about-us .about-info p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

#about-us .lead {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.progress{
  height: 8px;
  background: rgba(45, 55, 72, 0.5);
  border-radius: 10px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
  margin-bottom: 30px;
  overflow: hidden;
}

.progress-bar{
  background: var(--accent-gradient);
  box-shadow: 0 2px 8px rgba(66, 153, 225, 0.3);
  text-align: right;
  padding-right: 15px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  color: var(--text-primary);
  line-height: 8px;
}

.progress-bar:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  animation: progressShine 3s ease-in-out infinite;
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress .progress-bar.six-sec-ease-in-out {
  -webkit-transition: width 2.5s ease-in-out;
  transition: width 2.5s ease-in-out;
}

/*************************
****Portfolio Dark*******
**************************/

#portfolio {
  background: var(--primary-dark);
  position: relative;
}

#portfolio .container-fluid, 
#portfolio .col-sm-3  {
  overflow: hidden;
  padding: 0;
}

#portfolio .folio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin: 10px;
  background: var(--surface-dark);
}

#portfolio .overlay {
  background: linear-gradient(135deg, rgba(66, 153, 225, 0.9), rgba(128, 90, 213, 0.9));
  color: var(--text-primary); 
  left: 0;
  right: 0;
  bottom: -100%;
  height: 0;
  position: absolute;
  text-align: center;
  opacity: 0;  
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  backdrop-filter: blur(10px);
}

.overlay .overlay-content {
  display: table;
  height: 100%;
  width: 100%;
}

.overlay .overlay-text {
  display: table-cell;
  vertical-align: middle;
  padding: 30px;
}

.overlay .folio-info {
  opacity: 0;
  margin-bottom: 50px;
  margin-top: -50px;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.overlay .folio-info h3 {
  margin-top: 0;
  color: var(--text-primary);
  font-size: 24px;
  margin-bottom: 15px;
}

.overlay .folio-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.folio-overview a {
  font-size: 20px;
  color: var(--primary-dark);
  height: 55px;
  width: 55px;
  line-height: 55px;
  border-radius: 50%;
  background-color: var(--text-primary);
  display: inline-block;
  margin-top: 25px;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.folio-overview a:hover {
  background: var(--accent-blue);
  color: var(--text-primary);
  transform: scale(1.1);
}

.folio-image img {
  width: 100%;
  transition: all 0.5s ease;
}

#portfolio .folio-item:hover .folio-image img {
  transform: scale(1.1);
}

#portfolio .folio-item:hover .overlay {
  opacity: 1;
  bottom: 0;
  height: 100%;
}

#portfolio .folio-item:hover .overlay .folio-info {
  opacity: 1;
  margin-top: 0;
  margin-bottom: 20px;
}

/*************************
*****Features Dark*******
**************************/

#features {
  background: 
    linear-gradient(135deg, rgba(26, 31, 41, 0.95), rgba(45, 55, 72, 0.95)), 
    url(../images/ai_robot.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-primary);
  position: relative;
}

#features:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 20, 25, 0.8);
}

#features .container {
  position: relative;
  z-index: 2;
}

#features i {
  font-size: 48px;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

#features h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

#features p {
  color: var(--text-secondary);
  font-size: 16px;
}

/*************************
*****Twitter Dark********
**************************/

#twitter {
  background: var(--surface-dark);
  position: relative;
}

#twitter > div {
  padding: 80px 0;
}

.twitter-icon {
  margin-bottom: 40px;
}

.twitter-icon h4 {
  color: var(--text-primary);
  font-size: 28px;
  margin-top: 20px;
}

#twitter-carousel .item {
  text-align: center;
}

#twitter-carousel .item p {
  font-size: 24px;
  color: var(--text-secondary);
  font-style: italic;
  font-weight: 300;
}

/*************************
*****Blog Dark***********
**************************/

#blog {
  background: var(--secondary-dark);
  position: relative;
}

.post-thumb {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: var(--surface-dark);
}

.post-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--accent-gradient);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 18px;
}

.post-meta {
  background: rgba(45, 55, 72, 0.9);
  padding: 15px;
  color: var(--text-secondary);
}

.entry-header h3 a {
  color: var(--text-primary);
  font-size: 22px;
  font-weight: 600;
}

.entry-header h3 a:hover {
  color: var(--accent-blue);
}

.entry-header .date {
  color: var(--accent-blue);
  font-weight: 500;
}

.entry-content {
  color: var(--text-secondary);
  line-height: 1.8;
}

/*************************
*****Contact Dark********
**************************/

#contact {
  background: var(--primary-dark);
}

#contact-us {
  background: 
    linear-gradient(135deg, rgba(15, 20, 25, 0.9), rgba(26, 31, 41, 0.9)), 
    url(../images/contact-bg.webp);
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.form-control {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 15px 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(45, 55, 72, 0.9);
  border-color: var(--accent-blue);
  box-shadow: 0 0 20px rgba(66, 153, 225, 0.3);
  color: var(--text-primary);
}

.form-control::placeholder {
  color: var(--text-secondary);
}

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

.btn-submit {
  background: var(--accent-gradient);
  color: var(--text-primary);
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(66, 153, 225, 0.4);
}

.contact-info {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid var(--glass-border);
}

.contact-info ul li {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-info ul li i {
  color: var(--accent-blue);
  margin-right: 15px;
  width: 20px;
}

.contact-info ul li a {
  color: var(--accent-blue);
}

/*************************
*****Footer Dark*********
**************************/

#footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  padding: 60px 0 40px;
  background: var(--secondary-dark);
}

.footer-logo img {
  max-height: 50px;
}

#footer .social-icons ul li a {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

#footer .social-icons ul li a:hover {
  background: var(--accent-gradient);
  transform: translateY(-3px);
}

#footer .footer-bottom {
  background: var(--primary-dark);
  color: var(--text-secondary);
  padding: 20px 0;
}

/*************************
*****Mobile First********
**************************/

/* Estilos por defecto (mobile first) */
.navbar-brand img {
  max-height: 40px;
}

.navbar-right li a {
  padding: 15px 10px;
  font-size: 12px;
}

#home-slider .caption h1 {
  font-size: 32px;
  line-height: 1.1;
}

#home-slider .caption {
  padding: 0 20px;
}

.service-icon {
  height: 70px;
  width: 70px;
  line-height: 70px;
  font-size: 28px;
}

.our-services .col-sm-4 {
  margin-bottom: 20px;
  border-right: none;
  border-bottom: 1px solid var(--glass-border);
  padding: 30px 20px;
}

.service-info h3 {
  font-size: 18px;
}

.service-info p {
  font-size: 14px;
}

/* Tablet */
@media (min-width: 768px) {
  .navbar-brand img {
    max-height: 45px;
  }
  
  .navbar-right li a {
    padding: 20px 15px;
    font-size: 13px;
  }
  
  #home-slider .caption h1 {
    font-size: 48px;
  }
  
  .service-icon {
    height: 90px;
    width: 90px;
    line-height: 90px;
    font-size: 36px;
  }
  
  .our-services .col-sm-4 {
    padding: 40px 25px;
  }
  
  .service-info h3 {
    font-size: 20px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .navbar-brand img {
    max-height: 45px;
  }
  
  .navbar-right li a {
    padding: 25px 20px;
    font-size: 13px;
  }
  
  #home-slider .caption h1 {
    font-size: 64px;
  }
  
  .service-icon {
    height: 100px;
    width: 100px;
    line-height: 100px;
    font-size: 40px;
  }
  
  .our-services .col-sm-4 {
    padding: 50px 30px;
    border-right: 1px solid var(--glass-border);
  }
  
  .service-info h3 {
    font-size: 22px;
  }
}

/*************************
***Touch Gestures*******
**************************/

.carousel-inner {
  touch-action: pan-y;
}

.carousel-inner .item {
  transition: transform 0.3s ease-in-out;
}

/* Swipe indicators */
.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  background: transparent;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  transform: scale(1.2);
}

/*************************
***Elegant Effects******
**************************/

/* Micro-animaciones elegantes */
.service-icon:hover {
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.our-services .col-sm-4:hover .service-features li {
  animation: slideInLeft 0.3s ease forwards;
  opacity: 0;
}

.our-services .col-sm-4:hover .service-features li:nth-child(1) {
  animation-delay: 0.1s;
}

.our-services .col-sm-4:hover .service-features li:nth-child(2) {
  animation-delay: 0.2s;
}

.our-services .col-sm-4:hover .service-features li:nth-child(3) {
  animation-delay: 0.3s;
}

.our-services .col-sm-4:hover .service-features li:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Efectos de texto */
.service-info h3 {
  position: relative;
  overflow: hidden;
}

.service-info h3:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  transition: left 0.5s ease;
  opacity: 0.1;
}

.our-services .col-sm-4:hover .service-info h3:before {
  left: 100%;
}

/* Efectos sutiles de brillo */
.btn-start:hover {
  box-shadow: 
    0 15px 40px rgba(66, 153, 225, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Efectos de parallax ligero en elementos */
.service-icon {
  position: relative;
  z-index: 1;
}

.service-icon:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  background: var(--accent-gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  filter: blur(20px);
}

.our-services .col-sm-4:hover .service-icon:after {
  opacity: 0.3;
}

/*************************
***Mobile Touch Effects**
**************************/

.touch-device .our-services .col-sm-4.mobile-active {
  transform: translateY(-5px);
  background: rgba(45, 55, 72, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.touch-device .our-services .col-sm-4.mobile-active .service-icon {
  transform: scale(1.05);
}

.carousel-indicators li.touched {
  transform: scale(1.3);
  background: var(--accent-purple);
  border-color: var(--accent-purple);
}

/* Efectos de swipe visual */
.carousel.swiping .carousel-inner .item.active {
  transition: transform 0.3s ease-out;
}

/* Mejor feedback táctil */
.touch-device .btn:active {
  transform: scale(0.98);
}

.touch-device .service-icon:active {
  transform: scale(0.95);
}

/*************************
***Performance Enhancements**
**************************/

/* Hardware acceleration para elementos animados */
.service-icon,
.carousel-inner .item,
.progress-bar,
.btn-start {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Optimizar renders para dispositivos de alta DPI */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-icon {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Mejorar rendimiento en scroll */
.parallax {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Preload crítico */
.preload {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

/*************************
***Accessibility Mobile***
**************************/

/* Mejor contraste para pantallas pequeñas */
@media (max-width: 480px) {
  .service-info h3 {
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  }
  
  .service-info p,
  .service-features li {
    color: rgba(247, 250, 252, 0.9);
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
  }
  
  /* Hacer botones más grandes para touch */
  .carousel-indicators li {
    width: 14px;
    height: 14px;
    margin: 0 6px;
  }
  
  .left-control,
  .right-control {
    width: 50px;
    height: 50px;
  font-size: 18px;
    line-height: 48px;
  }
}

/* Video de fondo */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Muy atrás */
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Asegurar que el video esté siempre atrás */
#home-slider .video-background {
  z-index: -2 !important;
}

/*************************
*****Servicios Modernos***
**************************/

.services-grid {
  margin-top: 50px;
}

.services-grid .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.services-grid .col-lg-4,
.services-grid .col-md-6,
.services-grid .col-sm-6 {
  display: flex;
  margin-bottom: 30px;
}

.service-card {
  background: var(--surface-dark);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 600px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(66, 153, 225, 0.2);
  border-color: var(--accent-blue);
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 20, 25, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1);
}

.service-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  color: var(--text-primary);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.service-content p {
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 14px;
  flex-grow: 1;
  min-height: 80px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  min-height: 140px;
  flex-grow: 1;
}

.service-features li {
  padding: 6px 0;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  font-size: 14px;
}

.service-features li i {
  color: var(--accent-blue);
  margin-right: 10px;
}

.service-card:hover .service-features li {
  color: var(--text-primary);
}

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

.service-action .btn {
  width: 100%;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.service-action .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 153, 225, 0.3);
}

/*************************
*****Portfolio Elegante***
**************************/

.portfolio-section {
  background: var(--secondary-dark);
  position: relative;
}

.portfolio-filter-tabs {
  margin-bottom: 50px;
}

.portfolio-filter {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.portfolio-filter li a {
  display: block;
  padding: 12px 25px;
  background: var(--surface-dark);
  color: var(--text-secondary);
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
  font-weight: 500;
}

.portfolio-filter li a:hover,
.portfolio-filter li a.active {
  background: var(--accent-gradient);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 153, 225, 0.3);
}

.portfolio-grid {
  margin-bottom: 60px;
}

.portfolio-item {
  margin-bottom: 40px;
}

.portfolio-card {
  background: var(--surface-dark);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-blue);
}

.portfolio-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 20, 25, 0.95);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-content {
  text-align: center;
  color: white;
}

.portfolio-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--accent-blue);
}

.portfolio-question {
  font-size: 16px;
  color: var(--accent-purple);
  margin-bottom: 10px;
  font-weight: 600;
}

.portfolio-answer {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.portfolio-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-tag {
  background: rgba(66, 153, 225, 0.2);
  color: var(--accent-blue);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(66, 153, 225, 0.3);
}

.portfolio-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.portfolio-actions .btn {
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-size: 12px;
}

.btn-outline {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
}

.btn-outline:hover {
  background: var(--accent-blue);
  color: white;
  transform: translateY(-2px);
}

.portfolio-info {
  padding: 25px 30px;
}

.portfolio-info h4 {
  color: var(--text-primary);
  font-size: 20px;
  margin-bottom: 8px;
}

.portfolio-info > p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 15px;
}

.portfolio-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  color: var(--text-secondary);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.stat i {
  color: var(--accent-blue);
}

.portfolio-cta {
  background: var(--primary-dark);
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
}

.portfolio-cta h3 {
  color: var(--text-primary);
  font-size: 28px;
  margin-bottom: 15px;
}

.portfolio-cta p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 30px;
}

.portfolio-cta .btn {
  padding: 15px 35px;
  font-size: 16px;
}

/*************************
*****Footer Elegante*****
**************************/

#footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

.footer-main {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  position: relative;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(66, 153, 225, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-section {
  position: relative;
  z-index: 1;
}

.footer-section h4 {
  color: var(--text-primary);
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
}

.footer-section h4:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
}

.company-certifications h5 {
  color: var(--text-primary);
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-list li {
  padding: 5px 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.cert-list li i {
  color: var(--accent-blue);
  margin-right: 10px;
}

.contact-info-footer .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.contact-info-footer .contact-item i {
  color: var(--accent-blue);
  font-size: 18px;
  margin-top: 5px;
  min-width: 20px;
}

.contact-details h5 {
  color: var(--text-primary);
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-details p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 14px;
  margin: 0;
}

.contact-details a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--accent-purple);
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.services-list li {
  margin-bottom: 10px;
}

.services-list li a {
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.services-list li a:hover {
  color: var(--accent-blue);
  padding-left: 15px;
}

.services-list li i {
  color: var(--accent-blue);
  width: 16px;
}

.business-hours h5 {
  color: var(--text-primary);
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  padding: 5px 0;
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

.hours-list li span {
  color: var(--text-primary);
  font-weight: 500;
}

.footer-social {
  background: var(--secondary-dark);
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
}

.footer-social h4 {
  color: var(--text-primary);
  margin-bottom: 30px;
  font-size: 18px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background: var(--surface-dark);
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
  min-width: 80px;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-link i {
  font-size: 24px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.social-link span {
  font-size: 12px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.social-link.email:hover i,
.social-link.email:hover span {
  color: #ea4335;
}

.social-link.linkedin:hover i,
.social-link.linkedin:hover span {
  color: #0077b5;
}

.social-link.facebook:hover i,
.social-link.facebook:hover span {
  color: #1877f2;
}

.social-link.whatsapp:hover i,
.social-link.whatsapp:hover span {
  color: #25d366;
}

.social-link.twitter:hover i,
.social-link.twitter:hover span {
  color: #1da1f2;
}

.social-link.youtube:hover i,
.social-link.youtube:hover span {
  color: #ff0000;
}

.footer-bottom {
  background: var(--primary-dark);
  padding: 30px 0;
  border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.legal-links a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.company-details {
  font-size: 13px;
  margin-bottom: 5px !important;
}

.text-danger {
  color: #dc3545 !important;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.scroll-top {
  display: block;
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(66, 153, 225, 0.3);
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(66, 153, 225, 0.5);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-card {
    min-height: 500px;
  }
  
  .service-image {
    height: 180px;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .service-content h3 {
    font-size: 18px;
    min-height: 45px;
  }
  
  .service-content p {
    font-size: 13px;
    min-height: 70px;
  }
  
  .service-features {
    min-height: 120px;
  }
}

/* Mobile pequeño - Servicios */
@media (max-width: 480px) {
  .services-grid .col-lg-4,
  .services-grid .col-md-6,
  .services-grid .col-sm-6 {
    margin-bottom: 20px;
  }
  
  .service-card {
    min-height: 450px;
  }
  
  .service-image {
    height: 160px;
  }
  
  .service-content {
    padding: 15px;
  }
  
  .service-content h3 {
    font-size: 16px;
    min-height: 40px;
  }
  
  .service-content p {
    font-size: 12px;
    min-height: 60px;
  }
  
  .service-features {
    min-height: 100px;
  }
  
  .service-features li {
    font-size: 12px;
    padding: 4px 0;
  }
}
  
  .portfolio-image {
    height: 250px;
  }
  
  .portfolio-overlay {
    padding: 20px;
  }
  
  .portfolio-content h3 {
    font-size: 20px;
  }
  
  .portfolio-features {
    gap: 5px;
  }
  
  .portfolio-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .portfolio-stats {
    justify-content: center;
  }
  
  .footer-main {
    padding: 60px 0 40px;
  }
  
  .footer-section {
    margin-bottom: 40px;
  }
  
  .social-icons {
    gap: 15px;
  }
  
  .social-link {
    min-width: 70px;
    padding: 12px;
  }
  
  .footer-bottom .text-right {
    text-align: left !important;
  }
}

/*************************
*****Navegación Fix*****
**************************/

html {
  scroll-behavior: auto; /* Deshabilitado para evitar conflictos con JS */
}

/* Forzar comportamiento de scroll controlado por JavaScript */
* {
  scroll-behavior: auto !important;
}

/* Navegación mejorada */
.navbar-nav li.scroll.active a {
  color: var(--accent-blue) !important;
}

.navbar-nav li.scroll.active a:before {
  width: 70% !important;
}

/* Asegurar que las secciones tengan padding-top para compensar navbar fijo */
section {
  scroll-margin-top: 70px;
}

/* Mejorar visibilidad del menú móvil */
@media (max-width: 767px) {
  .navbar-collapse {
    background: var(--primary-dark);
    border-top: 1px solid var(--glass-border);
    margin-top: 15px;
    border-radius: 10px;
    padding: 20px;
  }
  
  .navbar-right li a {
    padding: 15px 20px !important;
    border-bottom: 1px solid var(--glass-border);
  }
  
  .navbar-right li:last-child a {
    border-bottom: none;
  }
  
  /* Mejorar botones para touch en móvil */
  .btn-start {
    min-height: 50px !important;
    padding: 15px 30px !important;
    font-size: 16px !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(66, 153, 225, 0.3);
  }
  
  /* Mejorar controles del carrusel para móvil */
  .carousel-control-touch {
    width: 60px !important;
    height: 60px !important;
    font-size: 24px !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
    z-index: 20 !important;
  }
  
  .carousel-control-touch.left {
    left: 10px !important;
  }
  
  .carousel-control-touch.right {
    right: 10px !important;
  }
  
  /* Flecha hacia abajo más grande en móvil */
  #tohash {
    width: 60px !important;
    height: 60px !important;
    font-size: 24px !important;
    line-height: 60px !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
  }
  
  /* Asegurar que todos los enlaces sean touch-friendly */
  a, button, .btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(66, 153, 225, 0.2);
  }
  
  /* Estados de touch para feedback visual */
  .btn-start.touching {
    transform: scale(0.95);
    background: var(--accent-blue) !important;
  }
  
  .carousel-control-touch.touching {
    transform: translateY(-50%) scale(0.9);
    background: rgba(0,0,0,0.9) !important;
  }
  
  #tohash.touching {
    transform: scale(0.9);
    background: rgba(255,255,255,0.3) !important;
  }
}

/* ========================================
   ABOUT US SECTION - REINVENTADO
   ======================================== */

.about-section-dark {
  background: 
    linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--accent-dark) 100%);
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  min-height: 100vh;
}

/* Partículas animadas de fondo */
.about-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
}

.particle-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 100px;
  width: 100%;
  height: 100%;
  padding: 50px;
}

.particle-dot {
  width: 3px;
  height: 3px;
  background: var(--accent-blue);
  border-radius: 50%;
  position: relative;
  animation: particlePulse 3s ease-in-out infinite;
}

.particle-dot:nth-child(even) {
  background: var(--accent-purple);
  animation-delay: 1.5s;
}

@keyframes particlePulse {
  0%, 100% { 
    opacity: 0.3; 
    transform: scale(1);
  }
  50% { 
    opacity: 1; 
    transform: scale(1.5);
    box-shadow: 0 0 20px currentColor;
  }
}

/* Elementos tecnológicos flotantes */
.floating-tech-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.tech-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-blue);
  backdrop-filter: blur(10px);
  animation: floatTech 6s ease-in-out infinite;
  opacity: 0.6;
}

.tech-icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
.tech-icon-2 { top: 20%; right: 15%; animation-delay: 1s; }
.tech-icon-3 { bottom: 30%; left: 8%; animation-delay: 2s; }
.tech-icon-4 { top: 60%; right: 10%; animation-delay: 3s; }
.tech-icon-5 { bottom: 15%; right: 20%; animation-delay: 4s; }

@keyframes floatTech {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  25% { 
    transform: translateY(-20px) rotate(90deg);
    opacity: 1;
  }
  50% { 
    transform: translateY(-10px) rotate(180deg);
    opacity: 0.8;
  }
  75% { 
    transform: translateY(-30px) rotate(270deg);
    opacity: 1;
  }
}

/* Contenedor principal */
.about-content-wrapper {
  position: relative;
  z-index: 5;
}

/* Encabezado moderno */
.about-header {
  margin-bottom: 80px;
}

.section-title-modern {
  position: relative;
}

.title-accent {
  font-size: 16px;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.main-title {
  font-size: 48px;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--accent-gradient);
  margin: 30px auto;
  border-radius: 2px;
  position: relative;
}

.title-underline:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: underlineShine 2s ease-in-out infinite;
}

@keyframes underlineShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Tarjeta de cristal principal */
.about-glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.about-glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(66, 153, 225, 0.2);
}

.about-glass-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.1), transparent);
  transition: left 0.8s ease;
}

.about-glass-card:hover:before {
  left: 100%;
}

/* Sección del logo de la empresa */
.company-logo-section {
  text-align: center;
  margin-bottom: 30px;
}

.logo-highlight {
  display: inline-block;
  padding: 20px 30px;
  background: var(--accent-gradient);
  border-radius: 15px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.company-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.company-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
  display: block;
}

/* Textos mejorados */
.intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 25px;
  text-align: justify;
}

.mission-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: justify;
}

.highlight-phrase {
  color: var(--accent-blue);
  font-style: italic;
  font-weight: 600;
  position: relative;
}

.highlight-phrase:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease;
}

.about-glass-card:hover .highlight-phrase:after {
  transform: scaleX(1);
}

/* Estadísticas interactivas */
.company-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 20px;
}

.stat-item {
  background: rgba(66, 153, 225, 0.1);
  border: 1px solid rgba(66, 153, 225, 0.2);
  border-radius: 15px;
  padding: 20px 15px;
  text-align: center;
  flex: 1;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(66, 153, 225, 0.2);
  border-color: var(--accent-blue);
  box-shadow: 0 15px 40px rgba(66, 153, 225, 0.3);
}

.stat-icon {
  font-size: 24px;
  color: var(--accent-blue);
  margin-bottom: 10px;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sección de habilidades moderna */
.about-skills-section {
  padding-left: 30px;
}

.expertise-container {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 35px;
  backdrop-filter: blur(15px);
  margin-bottom: 30px;
}

.skills-title {
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.skills-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

/* Barras de habilidad modernas */
.skill-item-modern {
  margin-bottom: 25px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.skill-name {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 600;
}

.skill-percentage {
  font-size: 14px;
  color: var(--accent-blue);
  font-weight: 700;
}

.skill-bar-container {
  position: relative;
  height: 8px;
  background: rgba(45, 55, 72, 0.5);
  border-radius: 10px;
  overflow: hidden;
}

.skill-bar {
  position: relative;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 10px;
  width: 0%;
  transition: width 2s ease-in-out;
  position: relative;
}

.skill-glow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: skillGlow 2s ease-in-out infinite;
  opacity: 0;
}

.skill-item-modern:hover .skill-glow {
  opacity: 1;
}

@keyframes skillGlow {
  0% { transform: translateX(-30px); }
  100% { transform: translateX(200px); }
}

/* Grid de certificaciones */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.cert-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.cert-card:hover {
  transform: translateY(-5px);
  background: rgba(66, 153, 225, 0.1);
  border-color: var(--accent-blue);
  box-shadow: 0 10px 30px rgba(66, 153, 225, 0.2);
}

.cert-icon {
  font-size: 20px;
  color: var(--accent-blue);
  margin-bottom: 10px;
}

.cert-card h4 {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 5px;
  font-weight: 700;
}

.cert-card p {
  font-size: 11px;
  color: var(--text-secondary);
  margin: 0;
}

/* Call to Action modernizado */
.about-cta-section {
  margin-top: 80px;
  padding: 50px 0;
}

.cta-content h3 {
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-modern,
.btn-outline-modern {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid;
}

.btn-primary-modern {
  background: var(--accent-gradient);
  border-color: transparent;
  color: var(--text-primary);
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(66, 153, 225, 0.4);
  color: var(--text-primary);
}

.btn-outline-modern {
  background: transparent;
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.btn-outline-modern:hover {
  background: var(--accent-blue);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(66, 153, 225, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-section-dark {
    padding: 80px 0;
  }
  
  .main-title {
    font-size: 36px;
  }
  
  .about-skills-section {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .company-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .floating-tech-elements {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-glass-card {
    padding: 25px;
  }
  
  .company-name {
    font-size: 24px;
  }
  
  .main-title {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .certifications-grid {
    grid-template-columns: 1fr;
  }
  
  .particle-grid {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-section-dark {
    padding: 60px 0;
  }
  
  .logo-highlight {
    padding: 15px 20px;
  }
  
  .company-name {
    font-size: 20px;
  }
  
  .main-title {
    font-size: 24px;
  }
  
  .expertise-container {
    padding: 20px;
  }
}

/*------------------------------------------------------------------
[Trust Band Section]
*/

.trust-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.trust-section .container {
  position: relative;
  z-index: 2;
}

.trust-indicators {
  margin-bottom: 40px;
}

.trust-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(45deg, #4299e1, #805ad5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(66, 153, 225, 0.4);
}

.trust-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.trust-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.limited-offer {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.limited-offer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
  z-index: 1;
}

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

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.offer-badge {
  background: linear-gradient(45deg, #4299e1, #805ad5);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(66, 153, 225, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(66, 153, 225, 0); }
  100% { box-shadow: 0 0 0 0 rgba(66, 153, 225, 0); }
}

.limited-offer h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.limited-offer p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-size: 16px;
}

.offer-timer {
  margin-bottom: 25px;
}

.timer-text {
  background: rgba(66, 153, 225, 0.2);
  border: 1px solid #4299e1;
  padding: 10px 20px;
  border-radius: 25px;
  color: #fff;
  font-size: 14px;
}

.timer-text strong {
  color: #4299e1;
  font-weight: 700;
}

.btn-offer {
  background: linear-gradient(45deg, #4299e1, #805ad5);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(66, 153, 225, 0.4);
}

.btn-offer:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(66, 153, 225, 0.6);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .trust-section {
    padding: 30px 0;
  }
  
  .trust-item {
    margin-bottom: 15px;
  }
  
  .trust-content h3 {
    font-size: 24px;
  }
  
  .limited-offer {
    padding: 20px;
  }
  
  .limited-offer h3 {
    font-size: 20px;
  }
  
  .limited-offer p {
    font-size: 14px;
  }
}

/*------------------------------------------------------------------
[FAQ Section]
*/

.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/bg-futuristic.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.faq-section .container {
  position: relative;
  z-index: 2;
}

.faq-content {
  margin-top: 60px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.faq-question::before {
  content: '❓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
}

.faq-answer {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.faq-answer ul {
  margin: 15px 0;
  padding-left: 0;
  list-style: none;
}

.faq-answer li {
  margin: 10px 0;
  padding-left: 0;
  font-size: 14px;
}

.faq-cta {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  margin-top: 50px;
}

.faq-cta h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
}

.faq-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.faq-cta .btn {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(238, 90, 36, 0.4);
}

.faq-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(238, 90, 36, 0.6);
}

@media (max-width: 768px) {
  .faq-item {
    padding: 20px;
  }
  
  .faq-question {
    font-size: 16px;
    padding-left: 25px;
  }
  
  .faq-cta {
    padding: 30px 20px;
  }
  
  .faq-cta h3 {
    font-size: 20px;
  }
}


