:root {
  --azul:#0a8fdc;
  --azul-claro:#27b4ff;
  --gris:#f7f9fb;
  --texto:#1e2a38;
  --metal:#e6edf7;
  --blanco:#ffffff;
}

/* =========================================
   GENERAL
========================================= */
* {margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
body {background:var(--gris);color:var(--texto);scroll-behavior:smooth;}
.container {width:90%;max-width:1200px;margin:auto;}
a {text-decoration:none;color:inherit;}
.btn-primary {
  background: var(--azul);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  display: inline-block;
  transition: 0.3s;
}
.btn-primary:hover { background: var(--azul-claro); transform: scale(1.05); }

/* =========================================
   NAVBAR - AZUL OSCURO GLASS
========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(5, 20, 35, 0.85); /* azul muy oscuro con transparencia */
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.logo img { width: 180px; }

/* === Enlaces de navegación === */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  color: #f0f4f8;
  letter-spacing: 0.3px;
  transition: color 0.3s, transform 0.3s;
}

/* Hover moderno con línea luminosa azul */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(39,180,255,0.4);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--azul-claro);
  transform: translateY(-1px);
}

/* === Dropdowns === */
.dropdown {
  position: relative;
}
.dropdown > .dropbtn {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-weight: 500;
  color: #f2f4f7;
  transition: color 0.3s;
}
.dropdown:hover > .dropbtn {
  color: var(--azul-claro);
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: rgba(10,25,45,0.95);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  border-radius: 8px;
  overflow: hidden;
  z-index: 999;
  backdrop-filter: blur(12px);
}
.dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: #f2f4f7;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}
.dropdown-content a:hover {
  background: rgba(39,180,255,0.12);
  color: var(--azul-claro);
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* === Botón de contacto destacado === */
.nav-contact-btn {
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 3px 10px rgba(39,180,255,0.35);
  transition: all 0.3s ease;
  margin-left: 20px;
}
.nav-contact-btn i {
  font-size: 1.1rem;
}
.nav-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(39,180,255,0.5);
  background: linear-gradient(135deg, var(--azul-claro), var(--azul));
}

/* === Móvil === */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #f0f4f8;
  border-radius: 5px;
}
@media(max-width: 900px) {
  
  .nav-links {
    position: fixed;
    top: 60px; right: -100%;
    background: rgba(5,20,35,0.97);
    width: 100vw;
    height: calc(100vh - 60px);
    flex-direction: column;
    gap: 25px;
    padding-top: 35px;
    transition: 0.3s;
    backdrop-filter: blur(12px);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .nav-contact-btn { display: none; }
}



/* =========================================
   HERO - AZUL METÁLICO CON EFECTO DE LÍNEAS Y CONTADORES
========================================= */
.hero {
  position: relative;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #051524 0%, #0b2238 60%, #08182c 100%);
}

/* === Fondo dinámico con líneas metálicas === */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
#heroCanvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.12;
}

/* === Luz azul central difusa === */
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(39,180,255,0.25) 0%, transparent 70%);
  filter: blur(90px);
  opacity: 0.8;
  z-index: 1;
  animation: pulseGlow 8s infinite ease-in-out;
}
@keyframes pulseGlow {
  0%,100% {opacity: 0.8; transform: translateX(-50%) scale(1);}
  50% {opacity: 0.4; transform: translateX(-50%) scale(1.1);}
}

/* === Contenido === */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}
.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.3);
}
.hero-subtext {
  font-size: 1.1rem;
  color: #d0e6f5;
  margin-bottom: 35px;
  letter-spacing: 0.3px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
}
.hero-stats div h3 {
  font-size: 2.2rem;
  color: var(--azul-claro);
  margin-bottom: 5px;
  font-weight: 700;
}
.hero-stats div p {
  color: #d0e6f5;
  font-size: 0.95rem;
}

/* === Responsive === */
@media(max-width:768px){
  .hero {height: auto; padding: 120px 20px 100px; height: 100%;}
  .hero h1 {font-size: 1.5rem;}
  .hero-subtext {font-size: 0.9rem;
  text-align: left; margin-top: 30px;}
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  .hero-stats div h3 {font-size: 1.8rem;}
  .hero-content {
  max-width: 100%;
}
}

/* =========================================
   EFECTOS DE FONDO ADICIONALES (parte superior)
========================================= */
.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/* Luz diagonal tipo flare */
.flare-top {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 150%;
  height: 60%;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(39,180,255,0.3),
    rgba(10,25,45,0) 70%
  );
  transform: rotate(-10deg);
  filter: blur(80px);
  opacity: 0.5;
  animation: flareMove 10s ease-in-out infinite alternate;
}
@keyframes flareMove {
  0% { transform: translateX(0) rotate(-10deg); opacity: 0.4; }
  50% { transform: translateX(40px) rotate(-12deg); opacity: 0.6; }
  100% { transform: translateX(-40px) rotate(-8deg); opacity: 0.5; }
}

/* Curva difusa superior */
.curve-light {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 40%;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.08),
    transparent 70%
  );
  filter: blur(60px);
  opacity: 0.4;
}

/* Partículas ascendentes */
.particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: particlesMove 40s linear infinite;
  opacity: 0.15;
  filter: blur(1px);
}
@keyframes particlesMove {
  from { background-position: 0 0; }
  to { background-position: 0 -400px; }
}

/* =========================================
   FONDO CON IMAGEN PARA HERO
========================================= */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('media/fondo.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  filter: brightness(0.6) contrast(1.2) blur(1px);
  pointer-events: none;
}


/* =========================================
   EVALUACIÓN DE TALENTO Y LIDERAZGO
========================================= */
.evaluacion {
  background: linear-gradient(135deg, #f6f9fc 0%, #eef4fa 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.evaluacion::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(39,180,255,0.12), transparent 60%);
  filter: blur(100px);
  z-index: 0;
}

.eval-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  z-index: 2;
}

.eval-text h2 {
  font-size: 2.3rem;
  color: #0b2238;
  margin-bottom: 20px;
  position: relative;
}

.eval-text h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  border-radius: 2px;
}

.eval-intro {
  color: #42536a;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* === pasos === */
.eval-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step i {
  font-size: 1.8rem;
  color: var(--azul);
  background: rgba(39,180,255,0.1);
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(39,180,255,0.15);
}

.step h3 {
  margin-bottom: 5px;
  color: #0b2238;
  font-size: 1.05rem;
}
.step p {
  color: #5c6f86;
  line-height: 1.5;
}

/* === imagen lateral === */
.eval-img {
  position: relative;
}
.eval-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.eval-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}
.eval-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eval-card {
  position: relative;
  overflow: hidden;
}

.eval-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.0) 65%
  );
  pointer-events: none;
}

.eval-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.55) 100%);
}
.eval-card-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 2;
  max-width: 80%;
}
.eval-card-text h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--azul-claro);
}
.eval-card-text p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #e5f3ff;
}

/* === Responsive === */
@media(max-width: 992px) {
  .eval-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .eval-img {
    order: -1;
  }
}


/* =========================================
   SERVICIOS - AJUSTE FINAL PREMIUM
========================================= */
.services {
  background: linear-gradient(135deg, #0b2238 0%, #08182c 100%);
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(39,180,255,0.18), transparent 70%);
  filter: blur(100px);
  z-index: 0;
}

.services h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  position: relative;
}
.services h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  border-radius: 3px;
}
.services-intro {
  max-width: 700px;
  margin: 30px auto 70px;
  color: #d0e6f5;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* === Tarjetas === */
.service-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

/* Línea divisoria azul al centro */
.service-cards::before {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(39,180,255,0.6),
    rgba(39,180,255,0.3),
    transparent
  );
  filter: blur(2px);
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.6;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 60px 50px;
  width: 46%; /* ajustado para que quepan perfectamente */
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
  min-height: 430px;
  z-index: 2;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(39,180,255,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(39,180,255,0.35);
}

.service-icon {
  font-size: 2.8rem;
  color: var(--azul-claro);
  margin-bottom: 25px;
  background: rgba(255,255,255,0.08);
  width: 90px;
  height: 90px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 12px rgba(39,180,255,0.4);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #ffffff;
  text-align: center;
}
.service-card p {
  color: #c2d8eb;
  line-height: 1.6;
  font-size: 1.05rem;
  margin-bottom: 30px;
  text-align: center;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--azul-claro);
  font-weight: 600;
  transition: 0.3s;
  margin-top: auto;
}
.service-card:hover .btn-more {
  gap: 14px;
  color: #fff;
}

/* === Ajustes para 3 tarjetas === */
.service-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.service-card {
  width: 30%;
  min-width: 320px;
}

@media(max-width: 992px){
  .services{
    padding-left: 0;
    padding-right: 0;
  }
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
  .service-cards::before {
    display: none; 
  }
  .service-card {
    width: 95%;
    text-align: center;
    padding: 35px 15px; 
  }
  .service-card p {
    font-size: 1rem;
    line-height: 1.65;
  }
}

/* =========================================
   DIFERENCIADOR - SECCIÓN DE VALOR
========================================= */
.diferencia {
  background: linear-gradient(135deg, #f6f9fc 0%, #eaf2fb 100%);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}
.diferencia::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 130%;
  height: 130%;
  background: radial-gradient(circle at 20% 30%, rgba(39,180,255,0.1), transparent 70%);
  filter: blur(120px);
  z-index: 0;
}

.diff-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.diff-content h2 {
  font-size: 2.3rem;
  color: #0b2238;
  margin-bottom: 15px;
  position: relative;
}
.diff-content h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  border-radius: 3px;
}
.diff-intro {
  max-width: 750px;
  margin: 30px auto 80px;
  color: #45566d;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* === Cards === */
.diff-grid {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}
.diff-card {
  background: white;
  border-radius: 18px;
  padding: 50px 35px;
  text-align: center;
  width: 360px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  border: 1px solid rgba(39,180,255,0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(39,180,255,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.diff-card:hover::before {
  opacity: 1;
}
.diff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(39,180,255,0.25);
}

.diff-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  border-radius: 20px;
  margin: 0 auto 25px;
  box-shadow: 0 0 20px rgba(39,180,255,0.4);
  transition: transform 0.4s ease;
}
.diff-card:hover .diff-icon {
  transform: scale(1.1) rotate(5deg);
}

.diff-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0b2238;
}
.diff-card p {
  color: #566a84;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* === Responsive === */
@media(max-width: 992px) {
  .diferencia{
    padding: 120px 0px;
  }
  .diff-grid {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .diff-card {
    width: 90%;
    padding: 45px 25px;
  }
}


/* =========================================
   CTA FINAL - MODERNO Y ENERGÉTICO
========================================= */
.cta {
  position: relative;
  text-align: center;
  color: white;
  padding: 160px 20px;
  background: radial-gradient(circle at 70% 20%, rgba(39,180,255,0.3), transparent 60%),
              linear-gradient(135deg, #08182c 0%, #0b2238 60%, #051524 100%);
  overflow: hidden;
}

/* Efecto de líneas diagonales luminosas */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.05) 0px,
    rgba(255,255,255,0.05) 2px,
    transparent 3px,
    transparent 10px
  );
  opacity: 0.3;
  animation: moveLines 25s linear infinite;
}
@keyframes moveLines {
  from { background-position: 0 0; }
  to { background-position: 400px 400px; }
}

/* Overlay tipo flare */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(39,180,255,0.25), transparent 70%);
  filter: blur(100px);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(39,180,255,0.3);
}

.cta p {
  font-size: 1.15rem;
  color: #c8e2f7;
  margin-bottom: 45px;
  line-height: 1.6;
}

/* Botón principal */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  color: white;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1.05rem;
  box-shadow: 0 0 25px rgba(39,180,255,0.35);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.6), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}
.cta-btn:hover::after {
  left: 125%;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(39,180,255,0.5);
}

/* Pulso suave */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 25px rgba(39,180,255,0.35); }
  50% { box-shadow: 0 0 45px rgba(39,180,255,0.6); }
}
.cta-btn {
  animation: pulseGlow 3.5s ease-in-out infinite;
}

/* === Responsive === */
@media(max-width: 768px){
  .cta {
    padding: 120px 25px;
  }
  .cta h2 {
    font-size: 2rem;
  }
  .cta p {
    font-size: 1rem;
  }
  .cta-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}


/* =========================================
   FOOTER - ESTÁTICO, ELEGANTE Y TECNOLÓGICO
========================================= */
.footer {
  position: relative;
  background: linear-gradient(135deg, #06101c, #0b2238 60%, #08182c);
  color: white;
  padding: 100px 20px 40px;
  overflow: hidden;
}

/* Fondo estático tipo textura */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(39,180,255,0.08), transparent 70%);
  opacity: 0.4;
  z-index: 0;
}

/* Contenido principal */
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.footer-desc {
  color: #d5e7f9;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

/* CONTACTO */
.footer-contact h3,
.footer-social h3 {
  color: var(--azul-claro);
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.footer-contact p {
  font-size: 0.95rem;
  color: #e3f1ff;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-contact a {
  color: #b7dbf8;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: var(--azul-claro);
}

/* REDES SOCIALES */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--azul-claro);
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: var(--azul-claro);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(39,180,255,0.4);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}
.footer-bottom p {
  font-size: 0.9rem;
  color: #a7c6e4;
}
.footer-bottom a {
  color: var(--azul-claro);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: white;
}

/* === Responsive === */
@media(max-width: 992px){
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-desc {
    margin: 0 auto;
  }
  .social-icons {
    justify-content: center;
  }
}

/* =========================================
   ANIMACIÓN GLOBAL HERO (fade + slide up)
========================================= */
.reveal-hero {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.division-badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 18px;
    color: white;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* =========================================
   COLOREADO - BOTÓN WHATSAPP
========================================= */
.nav-contact-btn {
  background: linear-gradient(135deg, #25D366, #1EBE5A) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35) !important;
  transition: all 0.3s ease !important;
}

.nav-contact-btn i {
  font-size: 1.1rem !important;
  color: #fff !important;
}

/* Hover verde más oscuro */
.nav-contact-btn:hover {
  background: linear-gradient(135deg, #1EBE5A, #128C4A) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 16px rgba(37, 211, 102, 0.48) !important;
}

/* =========================================
   COBERTURA Y ALCANCE (NUEVA SECCIÓN)
========================================= */
.scope{
  position: relative;
  padding: 120px 0px;
  background: linear-gradient(135deg, #f6f9fc 0%, #eef4fa 100%);
  overflow: hidden;
}

.scope::before{
  content:"";
  position:absolute;
  inset:-10%;
  background:
    radial-gradient(circle at 20% 25%, rgba(39,180,255,0.14), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(10,143,220,0.10), transparent 55%);
  filter: blur(90px);
  z-index:0;
}

.scope__grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
}

.scope__intro{
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(39,180,255,0.16);
  border-radius: 22px;
  padding: 46px 40px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.scope__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(39,180,255,0.10);
  color: #0b2238;
  border: 1px solid rgba(39,180,255,0.20);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.scope__badge i{
  color: var(--azul);
}

.scope__title{
  font-size: 2.2rem;
  color: #0b2238;
  line-height: 1.15;
  margin-bottom: 14px;
}

.scope__text{
  color: #45566d;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.scope__list{
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.scope__list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4b5f78;
  line-height: 1.55;
  font-size: 0.98rem;
}

.scope__list i{
  color: var(--azul);
  background: rgba(39,180,255,0.12);
  border: 1px solid rgba(39,180,255,0.18);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex: 0 0 30px;
  margin-top: 2px;
}

.scope__ctaRow{
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.scope__cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(39,180,255,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scope__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(39,180,255,0.35);
}

.scope__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0b2238;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.scope__link:hover{
  background: rgba(39,180,255,0.10);
  transform: translateY(-1px);
}

.scope__mini{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px dashed rgba(39,180,255,0.28);
}

.scope__miniItem{
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(39,180,255,0.14);
  border-radius: 18px;
  padding: 16px 14px;
  text-align: center;
}

.scope__miniNum{
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 2px;
}

.scope__miniLabel{
  display: block;
  font-size: 0.88rem;
  color: #556a84;
}

/* === Cards (col derecha) === */
.scope__cards{
  display: grid;
  gap: 18px;
}

.scopeCard{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(39,180,255,0.16);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.scopeCard::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(39,180,255,0.10), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.scopeCard:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(39,180,255,0.18);
}

.scopeCard:hover::before{
  opacity: 1;
}

.scopeCard__icon{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.55rem;
  box-shadow: 0 0 20px rgba(39,180,255,0.35);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.scopeCard__title{
  font-size: 1.18rem;
  color: #0b2238;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.scopeCard__text{
  color: #566a84;
  line-height: 1.65;
  font-size: 0.98rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.scopeCard__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.scopeCard__chips span{
  font-size: 0.86rem;
  color: #2b3f56;
  background: rgba(39,180,255,0.10);
  border: 1px solid rgba(39,180,255,0.16);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Panel inferior */
.scope__panel{
  background: linear-gradient(135deg, rgba(10,143,220,0.10), rgba(39,180,255,0.08));
  border: 1px solid rgba(39,180,255,0.22);
  border-radius: 22px;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.scope__panelTitle{
  font-size: 1.1rem;
  color: #0b2238;
  margin-bottom: 6px;
}

.scope__panelText{
  color: #4f647f;
  line-height: 1.55;
  font-size: 0.96rem;
}

.scope__panelBtn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(39,180,255,0.22);
  color: #0b2238;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}

.scope__panelBtn i{
  color: var(--azul);
}

.scope__panelBtn:hover{
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(39,180,255,0.20);
}

/* Responsive */
@media(max-width: 992px){
  .scope__grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .scope__intro{
    padding: 38px 26px;
  }
  .scope__mini{
    grid-template-columns: 1fr;
  }
  .scope__panel{
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .scope__panelBtn{
    justify-content: center;
  }
}
