    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f9f9f9;
    }

    /* Cintillo superior */
    .top-bar {
      background-color: #FD073C;
      color: #000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 20px;
      font-size: 0.95em;
      flex-wrap: wrap;
    }

    .top-bar .left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .top-bar .left img {
      height: 40px;
    }

    .top-bar .right {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .top-bar .right a {
      color: #000;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .top-bar .right a:hover {
      color: #FFD700;
    }

    .ligaInterna{ 
 color:#fff;
}

 
 
    .menu {
      display: flex;
      justify-content: center;
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .menu ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 20px;
    }

    .menu li {
      position: relative;
    }

    .menu a {
      text-decoration: none;
      color: #000;
      padding: 10px 20px;
      border-radius: 8px;
      transition: all 0.3s ease;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .menu a:hover {
      background-color: #E0DFFF;
      box-shadow: 0 0 0 2px #6A5ACD inset;
      color: #6A5ACD;
    }

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  min-width: 200px;
  z-index: 999;
  padding: 10px 0;
}

.submenu.visible {
  display: block;
}

    .submenu a {
      padding: 10px 20px;
      display: block;
    }


.submenu.visible {
  display: block;
}

    .menu li:hover .submenu {
      display: block;
    }

  
    .mobile-menu-icon {
      display: none;
      font-size: 1.8em;
      cursor: pointer;
      padding: 15px 20px;
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1001;
    }

 
    .mobile-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 260px;
      height: 100%;
      background-color: #000fff;
      box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
      transition: left 0.3s ease;
      z-index: 2000;
      padding: 20px;
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
    }

    .mobile-menu.active {
      left: 0;
    }

    .mobile-menu .close-btn {
      text-align: right;
      font-size: 1.5em;
      cursor: pointer;
      margin-bottom: 20px;
    }

    .mobile-menu ul {
      list-style: none;
      padding: 0;
    }

    .mobile-menu li {
      margin-bottom: 15px;
      background-color: #f2f2f2;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      padding: 10px 15px;
      transition: background 0.3s ease;
	  position: relative;
    }

    .mobile-menu li:hover {
      background-color: #e0dfff;
    }

    .mobile-menu a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      display: block;
    }

    .mobile-submenu {
      margin-top: 10px;
      margin-left: 10px;
      font-size: 0.95em;
      display: none;
    }

    .mobile-submenu li {
      background-color: #000fff;
      box-shadow: none;
      padding: 8px 10px;
      border-radius: 6px;
    }
	
.mobile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  height:80px;
  background-color: #000fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


.mobile-top {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.mobile-logo {
  height: 80px;
  margin-right:40px;
}


.mobile-menu-trigger {
  font-size: 1.8em;
  margin-top: -65px;
  cursor: pointer;
  background-color: #dfd6ef;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.3s ease;
}

.mobile-menu-trigger:hover {
  background-color: #e0dfff;
}
/* Estilos Generales */
.footer-swc {
  background: #3902A0;
  color: #fff;
  padding: 10px 0 0 0;
  font-family: Arial, sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-col {
  flex: 1 1 250px;
  margin: 10px 20px;
}
.footer-col a {
  color: #000;
  text-decoration: none;
}
.footer-col a:hover,
.footer-col a:visited,
.footer-col a:active {
  color: #000;
  text-decoration: none;
}
.footer-logo-img {
  width: 110px;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  margin-bottom: 10px;
}
.footer-slogan {
  font-size: 1em;
  margin: 0;
}
.footer-desc {
  font-size: 0.95em;
  margin: 10px 0 0 0;
}
.footer-contacto h3,
.footer-enlaces h3 {
  margin-top: 0;
  font-size: 1.1em;
  margin-bottom: 10px;
}
.footer-contacto p, .footer-contacto a {
  margin: 4px 0;
  color: #000;
  font-size: 0.98em;
}
.footer-enlaces ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-enlaces ul li {
  margin-bottom: 8px;
}
.footer-enlaces ul li a {
  color: #000;
  text-decoration: none;
  font-size: 0.98em;
}
.footer-enlaces ul li a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 10px;
}
.footer-social-icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  vertical-align: middle;
  filter: invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-social-icon:hover {
  opacity: 1;
}
.footer-copy {
  background: #e30614;
  color: #000;
  text-align: center;
  padding: 12px 0;
  font-size: 0.95em;
  margin-top: 30px;
  letter-spacing: 0.5px;
}
.footer-copy a,
.footer-copy a:visited,
.footer-copy a:hover,
.footer-copy a:active {
  color: #000;
  text-decoration: none;
}
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-contact-list li {
  list-style: none;
  margin: 0 0 8px 0;
  padding: 0;
}


/* Media Query: Pantallas de hasta 900px de ancho */
@media (max-width: 900px) {
 .ocultaPhone{display:none} 
	
  /* Contenedor y Columnas */
  .footer-container {
    flex-direction: column;
    align-items: center;
    /* La segunda declaración sobreescribe el padding de la primera */
    padding: 0 5px; 
  }
  .footer-col {
    /* La segunda declaración sobreescribe el margin de la primera */
    margin: 10px 0;
    text-align: center;
    padding: 0;
  }
  .footer-enlaces {
    position: relative;
    top: -120px;
  }
  .mobile-menu-icon {
    display: block;
  }
  .menu {
    display: none;
  }

  /* Logo y Slogan */
  .footer-logo-img {
    /* La segunda declaración sobreescribe el margin y width de la primera */
    margin: 0 auto 5px auto;
    width: 200px;
    margin-top: 20%;
    padding: 4px;
  }
  .footer-slogan, .footer-desc {
    margin: 4px 0;
    font-size: 0.98em;
  }

  /* Títulos */
  .footer-contacto h3,
  .footer-enlaces h3 {
    /* La segunda declaración sobreescribe el font-size y margin-bottom de la primera */
    margin-bottom: 6px;
    font-size: 1em;
  }

  /* Enlaces (navegación) */
  .footer-enlaces ul {
    margin-top: 8px;
  }
  .footer-enlaces ul li {
    /* La segunda declaración sobreescribe el margin-bottom de la primera */
    margin-bottom: 5px; 
  }
  .footer-enlaces a {
    /* Estas reglas se consolidan */
    font-size: 1.3rem; 
    padding: 10px 0; 
    display: block;
  }
  
  /* Redes Sociales */
  .footer-social {
    margin-top: 6px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .footer-social-icon {
    width: 24px;
    height: 24px;
    margin-right: 0;
  }

  /* Copy */
  .footer-copy {
    /* La segunda declaración sobreescribe el margin-top, padding y font-size de la primera */
    margin-top: 10px;
    padding: 8px 0;
    font-size: 0.9em;
  }
}

/* Media Query: Pantallas de al menos 769px de ancho */
@media (min-width: 769px) {
  .mobile-header {
    display: none;
  }
}


a {
  color:#fff;
}


  #menuNav {
    width: 100%;
    background: #fff;
    color: #000;
    position: relative;
    font-family: Arial, Helvetica, sans-serif, sans-serif;
  }
  .menu-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    flex-wrap: nowrap;
    gap: 20px;
  }
  .menu-logo img {
    height: 78px;
    display: block;
    background: #fff;
    border-radius: 0px;
/*    padding: 4px 8px; */
  }
  .menu-bar .menu-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* distribuye a lo largo del ancho */
    gap: 12px;
    width: 100%;
    margin-left: 20px;
  }
  .menu-list-container {
    flex: 1 1 1 auto;
    overflow-x: auto;
  }
  #menuList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: max-content;

  }
  #menuList li {
    margin-left: 20px;
  }
  #menuList li a {
    display: block;
    padding: 15px 18px;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 1rem;
    white-space: nowrap;
  }
  #menuList li a:hover {
/*    background: #444;*/
	color:#E30614; /* color del menu cuando pasa el raton */
	text-decoration:none;
  }

  /* Responsive: móvil */
  @media (max-width: 900px) {
    .menu-bar {
      flex-direction: row;
      padding: 0 10px;
    }
    .menu-logo {
      flex: 0 0 auto;
    }
    .menu-mobile-header {
      display: flex;
      flex: 1 1 auto;
      justify-content: flex-end;
    }
    .menu-list-container {
      position: fixed;
      top: 0;
      left: -420px; /* que tan a la izquierda del menu mobil */
      width: 400px; /* ancho del menu mobil */
      height: 100%;
      transition: left 0.3s;
      z-index: 1000;
      overflow-y: auto;
    }
    .menu-list-container.open {
      left: 0;
    }
    #menuList {
      flex-direction: column;
      align-items: flex-start;
      min-width: 0;
		background: #FE073E; 
    }
    #menuList li a {
      padding: 5px;
      border-bottom: 1px solid #333;
      width: 100%;
	  font-size:20px;
	  margin-bottom:10px;
	  color:#fff;
	  text-decoration:none;
    }
		.footer-logo-mobil{
			margin-left:30px; /* Mover el logo menu mobil a la izquierda*/
		}
  }
  #menuClose {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2em;
  cursor: pointer;
  z-index: 1100;
}
@media (min-width: 900px) { /* pc */

	    .menu-logo img {
			margin-left:80px;
		}
	.footer-logo-mobil{
		display: none !important; 
	}
	
  #menuClose {
    display: none !important;
  }
  #menuList {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    min-width: 0; /* <-- Esto es CLAVE */

  }
  .menu-list-container {
    overflow-x: visible;
    width: 100%;
  }
  .menu-mobile-header{
    display: none !important;
  }
}
    .floating-cta{position:fixed;right:18px;bottom:18px;z-index:99999;display:flex;flex-direction:column;gap:10px;align-items:center;pointer-events:auto}
    .floating-cta .wa-btn{width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:transparent;border:none;padding:0;cursor:pointer;box-shadow:0 8px 20px rgba(0,0,0,0.18)}
    .floating-cta .wa-btn svg{width:56px;height:56px;display:block}
    .floating-cta .scroll-top{width:46px;height:46px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#fd073c;border:none;color:#fff;cursor:pointer;box-shadow:0 8px 20px rgba(0,0,0,0.18)}
    .floating-cta .scroll-top svg{width:22px;height:22px;fill:#fff}
    .floating-cta .scroll-top{display:none} /* oculto hasta hacer scroll */
    @media(max-width:480px){ .floating-cta{right:12px;bottom:12px} .floating-cta .wa-btn{width:48px;height:48px} .floating-cta .wa-btn svg{width:48px;height:48px} .floating-cta .scroll-top{width:40px;height:40px} }
    /* evita duplicados si existe otro #a_arriba en el DOM */
    #a_arriba{display:none !important;}


.footer {
  font-family: 'Poppins', sans-serif;
}

.footer-links a {
  color: #fff0f3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff0f3; /* azul m?s intenso al pasar el mouse */
}

.footer-links a i {
  margin-right: 8px;
  color: #fff0f3;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links a:hover i {
  transform: scale(1.2);
  color: #fff0f3;
}

.footer-social a svg path,
.footer-social a svg g path {
  fill: #fff0f3;
  transition: fill 0.3s ease;
}

.footer-social a:hover svg path,
.footer-social a:hover svg g path {
  fill: #fff0f3;
}




a {
  color:#fff;
}

.encabezado-inicio {
  background: linear-gradient(to right, #0077cc, #00aaff); /* Tonos azul Click */
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.encabezado-contenido h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 700;
}

.encabezado-contenido p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


.btn-contacto {
  background-color: #fff;
  color: #0077cc;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-contacto:hover {
  background-color: #e0f0ff;
}

.seccion-integracion {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.bloque {
  flex: 1 1 30%;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bloque h2, .bloque h3 {
  color: #0077cc;
  margin-bottom: 15px;
}

.bloque p, .bloque ul {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
}

.bloque ul {
  list-style: none;
  padding: 0;
}

.bloque ul li {
  margin-bottom: 10px;
}

.imagen-central img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.slogan {
  font-weight: bold;
  color: #0077cc;
  font-size: 1.1em;
}

.enfrente {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px; /* Espacio entre íconos */
  align-items: center;
}
.enfrente a,
.enfrente div {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1); /* Fondo opcional */
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.enfrente a:hover,
.enfrente div:hover {
  transform: scale(1.1);
}

