/* Tipografía */
body {
    font-family: 'Inter', sans-serif;
  }
  
  /* Alturas */
  .py-100 { padding-top: 100px; padding-bottom: 100px; }
  .py-120 { padding-top: 175px; padding-bottom: 120px; }
  
  /* Gradientes */
  .bg-gradient-primary {
    background: linear-gradient(135deg, #2A5C8C 0%, #1a3c5a 100%);
  }
  
  .bg-gradient-secondary {
    background: linear-gradient(135deg, #F57C00 0%, #D84315 100%);
  }
  
  /* Botón naranja */
  .btn-orange {
    background: #F57C00;
    border: none;
  }
  .btn-orange:hover {
    background: #e66a00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 124, 0, 0.3);
  }
  
  /* Animaciones */
  [data-aos] {
    transition-duration: 800ms;
  }
  
  /* Iconos Bootstrap */
  i.bi {
    font-size: 1.2rem;
  }

 /* -------------------------------------
   HERO - FONDOS ALEATORIOS
---------------------------------------- */
.hero-background-1 {
    background-image: url('../img/hero-bg-1.webp');
  }
  .hero-background-2 {
    background-image: url('../img/hero-bg-2.webp');
  }
  
  .hero-background-1,
  .hero-background-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transition: opacity 1.5s ease;
  }

  
  
  /* Overlay con gradiente tecnológico */
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 15, 30, 0.8), rgba(20, 50, 80, 0.65));
    z-index: -1;
  }
  
  /* Texto futurista con efecto "neón" */
  .hero-title {
    position: relative;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #fff;
    text-shadow: 
      0 0 5px rgba(70, 130, 255, 0.6),
      0 0 10px rgba(70, 130, 255, 0.4),
      0 0 20px rgba(70, 130, 255, 0.2);
    letter-spacing: -0.5px;
  }
  
  /* Texto "futuro" con borde brillante */
  .text-stroke {
    -webkit-text-stroke: 1px rgba(100, 180, 255, 0.5);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: glow-pulse 2.5s ease-in-out infinite alternate;
    
  }
  
  /* Animación de pulso de brillo */
  @keyframes glow-pulse {
    0% {
      text-shadow: 
        0 0 5px rgba(230, 106, 0, 0.8), /*#e66a00;*//*rgba(70, 130, 255, 0.8),*/
        0 0 8px rgba(230, 106, 0, 0.2);
        /*0 0 10px rgba(70, 130, 255, 0.2);*/
    }
    100% {
      text-shadow: 
        0 0 8px rgba(230, 106, 0, 1),
        0 0 15px rgba(230, 106, 0, 0.6),/*rgba(70, 130, 255, 0.8),*/
        0 0 25px rgba(230, 106, 0, 0.3),
        /*0 0 15px rgba(70, 130, 255, 0.6),
        0 0 25px rgba(70, 130, 255, 0.3);*/
    }
  }
  
  /* Efecto de escritura (typewriter) - opcional */
  .hero-lead {
    opacity: 0;
    animation: typewriter 2s steps(60) 0.5s forwards,
               fade-in 0.5s 2.5s forwards;
    white-space: nowrap;
    overflow: hidden;
    /*border-right: 2px solid #FFB300;
    border-left: 2px solid #FFB300;
    background-color: #FFB300 transparent 10%;*/
    animation-delay: 2s;
    animation-duration: 2s;
    color: #e66a00;
    font-size: 2rem;
  }
  
  @keyframes typewriter {
    to { opacity: 1; width: 100%; }
  }
  @keyframes fade-in {
    to { opacity: 1; }
  }
  
  /* Botón con hover más agresivo */
  .btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(245, 124, 0, 0.4);
    animation: pulse-slow 2s infinite;
  }
  
  @keyframes pulse-slow {
    0%, 100% { transform: translateY(-3px); }
    50% { transform: translateY(-5px); }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.3rem !important;
    }
    .hero-lead {
      font-size: 1rem;
    }
  }

  /**** FIN HERO ****/

  /* -------------------------------------
   SECCIÓN REDES SOCIALES
---------------------------------------- */

/* Fondo sutil con degradado */
.social-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #f8f9fa 0%, #e3f2fd 100%);
    z-index: -1;
    opacity: 0.7;
    border-radius: 20px;
    transform: skewY(-2deg);
    transform-origin: center;
  }
  
  /* Contenedor de imagen con efecto hover */
  .social-img-wrapper {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 16px;
    overflow: hidden;
    margin-left: -20px;
  }
  
  .social-img-wrapper:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  /* Texto de características */
  .feature-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .feature-list li:hover .feature-text {
    color: #2A5C8C;
  }
  
  /* Botón naranja personalizado */
  .btn-primary {
    background: #F57C00;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  .btn-primary:hover {
    background: #e66a00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 124, 0, 0.3);
    transition: all 0.3s ease !important;
  }
  
  /* Ícono naranja */
  .text-orange {
    color: #F57C00 !important;
  }
  
  /* Ajuste responsivo */
  @media (max-width: 992px) {
    #sociales .container {
      text-align: center;
    }
    .social-img-wrapper {
      margin-left: 0;
      transform: scale(0.95);
    }
    .social-content {
      text-align: center;
    }
    .feature-list li {
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }

  /* -------------------------------------
   FONDOS DEGRADADOS - REDES Y SOCIALES
---------------------------------------- */

/* Fondo para redes técnicas */
.tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #1a2a4a 0%, #2a5c8c 100%);
    z-index: -1;
    opacity: 0.08;
    transform: skewY(2deg);
    transform-origin: center;
    border-radius: 20px;
  }
  
  /* Fondo para redes sociales (ya definido, pero mejorado) */
  .social-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #f8f9fa 0%, #e3f2fd 100%);
    z-index: -1;
    opacity: 0.7;
    transform: skewY(-2deg);
    transform-origin: center;
    border-radius: 20px;
  }
  
  /* -------------------------------------
     IMÁGENES CON EFECTO HOVER
  ---------------------------------------- */
  .tech-img-wrapper,
  .social-img-wrapper {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 16px;
    overflow: hidden;
  }
  
  .tech-img-wrapper {
    margin-right: -20px;
  }
  
  .social-img-wrapper {
    margin-left: -20px;
  }
  
  .tech-img-wrapper:hover,
  .social-img-wrapper:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  /* -------------------------------------
     TEXTOS Y LISTAS
  ---------------------------------------- */
  .feature-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .feature-list li:hover .feature-text {
    color: #2A5C8C;
  }
  
  /* -------------------------------------
     BOTONES
  ---------------------------------------- */
  .btn-primary {
    background: #F57C00;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
  }
  
  .btn-primary:hover {
    background: #e66a00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 124, 0, 0.3) !important;
  }
  
  .text-orange {
    color: #F57C00 !important;
  }
  
  /* -------------------------------------
     EFECTOS AVANZADOS DE SCROLL REVEAL
  ---------------------------------------- */
  
  /* AOS - Configuración global (opcional en main.js) */
  /* Ya usamos data-aos, pero vamos a mejorar el comportamiento */
  
  /* Ajuste responsivo */
  @media (max-width: 992px) {
    .tech-img-wrapper,
    .social-img-wrapper {
      margin-left: 0 !important;
      margin-right: 0 !important;
      transform: scale(0.95);
    }
    
    .tech-content,
    .social-content {
      text-align: center;
    }
    
    .feature-list li {
      justify-content: center;
      display: flex;
      align-items: center;
    }
  }

  /* Hover en logos de redes */
.logo-item:hover,
.social-logo-item:hover .social-icon {
  opacity: 1 !important;
  transform: translateY(-2px);
}

/* Ajuste para gradientes en iconos */
.social-icon {
  transition: transform 0.3s ease;
}

.social-logo-item:hover .social-icon {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .logo-item, .social-logo-item {
    font-size: 0.9rem;
  }
  .social-icon {
    font-size: 1.8rem;
  }
  .gap-5 {
    gap: 1.5rem !important;
  }
}
  /*** Fin sociales ***/

/**** Logos Redes ****/
.imagen-marcas{
    height: 120px; 
    filter: contrast(0.8);
    padding: 20px;
}
/**** Fin Logos Redes ****/

/**** Logos Sociales ****/
.imagen-sociales{
    filter: contrast(0.8);
    padding: 38px;
    font-size: 3.0rem;
}
/**** Fin Logos Sociales ****/

/*** Transparecia menu ***/
.menu-transparencia{
    background: rgb(24, 60, 96) !important;
}

.copy{
    color: lightskyblue;
}

/*** Contacto ***/
/* Botón naranja (ya definido, pero aseguramos) */
.btn-orange {
    background: #F57C00;
    border: none;
  }
  .btn-orange:hover {
    background: #e66a00;
  }
  
  /* Tarjetas de contacto */
  .contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
  }
  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  
  /* Iconos grandes */
  .contact-card i {
    transition: transform 0.3s ease;
  }
  .contact-card:hover i {
    transform: scale(1.1);
  }

  /*** Fin contact ***/

  /* Texto del menú en móviles (fondo blanco) */
.navbar-light .navbar-nav .nav-link {
    color: #fff !important;
    transition: color 0.3s ease;
    z-index: 10;
  }
  
  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: #F57C00 !important; /* Naranja al pasar el mouse */
  }
  
  /* Asegurar contraste en todos los estados */
  .navbar-light .navbar-toggler {
    border-color: #fff;
  }
  
  .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(42, 92, 140, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }


  /* Efecto parallax suave (opcional) */
  @media (min-width: 768px) {
    .hero-background-1 {
      background-attachment: fixed;
    }

    .hero-background-2 {
        background-attachment: fixed;
      }
  }