/* ==============================================================
   10. CONTACTO Y FOOTER
   ============================================================== */
#contactenos {
  background: linear-gradient(rgba(32, 43, 61, 0.85), rgba(34, 41, 52, 0.95)), url(/landing/6425/images/footer.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  display: block;
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px; /* Reducido para balancear con el footer */
  text-align: center;
}
#contactenos p {
  color: #f9f9f9;
}
#contactenos a {
	color: #7EA8D9; 
}
#contactenos a:hover {
	color: #ffffff; 
}
footer {
  padding-bottom: 80px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(rgba(32, 43, 61, 0.85), rgba(34, 41, 52, 0.95)), url(/landing/6425/images/footer.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
footer p {
  color: #f9f9f9;
}

/* Redes Sociales */
.social-icon {
  padding: 0;
  margin: 0;
}
.social-icon li {
  list-style: none;
  display: inline-block;
}
.social-icon li a {
  border-radius: 4px; 
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 42px;
  text-align: center;
  margin: 10px 8px 40px;
  padding: 0px;
  transition: all 0.3s ease;
}
.social-icon li a:hover {
  background: #7EA8D9;
  border-color: #7EA8D9;
  color: #033560;
  transform: scale(1.1);
}

/* ==============================================================
   NUEVA PERSONALIZACIÓN DE LOGOS DOBLES EN FOOTER
   ============================================================== */

.footer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px auto 30px auto;
    width: 100%;
}

/* Estilo base de los logos */
.footer-logo {
    height: auto !important;
    display: block;
    margin: 0 auto;
}

/* MEDIDAS DESKTOP */
.logo-nextgen {
    width: 140px !important; 
}

.logo-sshop {
    width: 120px !important; 
}

/* El Separador vertical */
.footer-separator {
    width: 1px;
    height: 45px;
    background-color: #ffffff;
    opacity: 0.5;
}

/* ==============================================================
   AJUSTES RESPONSIVOS
   ============================================================== */

@media (max-width: 650px) {
  #contactenos {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .footer-logo-container {
      gap: 15px;
  }

  .logo-nextgen {
      width: 100px !important; 
  }

  .logo-sshop {
      width: 85px !important; 
  }

  .footer-separator {
      height: 30px; 
  }
}