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

    /* Cintillo superior */
    .top-bar {
      background-color: #FD073C;
      color: white;
      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: white;
      text-decoration: none;
      transition: color 0.3s ease;
    }

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

    .ligaInterna{ 
 color:#fff;
}

    /* Menú escritorio */
    .menu {
      display: flex;
      justify-content: center;
      background-color: #ffffff;
      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: #333;
      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;
    }

    /* Ícono menú móvil */
    .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;
    }

    /* Menú móvil */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 260px;
      height: 100%;
      background-color: #ffffff;
      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: #ffffff;
      box-shadow: none;
      padding: 8px 10px;
      border-radius: 6px;
    }
	/* Encabezado móvil */
.mobile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  height:80px;
  background-color: #ffffff;
  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;
}

/* Ícono menú centrado */
.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;
}

/* Mostrar solo en móviles */
@media (min-width: 769px) {
  .mobile-header {
    display: none;
  }
}

.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);
}


    /* Sección bienvenida */
.intro {
  background-image: url("../click/img/portada.jpg");
  background-repeat: no-repeat;
  background-size: cover; /* Mejor que 100% para mantener proporción */
  background-position: center;
  background
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center; /* Corregido: era "text -align" */
  padding: 60px 20px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.video-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.intro-contenido {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
  padding: 0 20px;
}

.intro h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.intro p {
  font-size: 1.2em;
  max-width: 700px;
  margin: auto;
  line-height: 1.4;
}

/* 📱 Responsividad para móviles */
@media (max-width: 768px) {
  .intro {
    padding: 40px 15px;
    min-height: 300px;
  }

  .intro h1 {
    font-size: 1.8em;
  }

  .intro p {
    font-size: 1em;
    max-width: 100%;
  }

  .intro-contenido {
    padding: 0 10px;
  }
}


    /* Carrusel */
    .carousel-container {
      position: relative;
      max-width: 100%;
      overflow: hidden;
      margin: 40px auto;
    }

    .carousel-slide {
      display: flex;
      width: 300%;
      animation: slide 12s infinite;
    }

    .carousel-item {
      position: relative;
      flex: 1 0 100%;
    }

    .carousel-item img {
      width: 100%;
      height: auto;
      display: block;
    }

    .carousel-text {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(0,0,0,0.6);
      color: white;
      padding: 10px 15px;
      border-radius: 5px;
      font-size: 1em;
    }

    @keyframes slide {
      0% { transform: translateX(0%); }
      33% { transform: translateX(-100%); }
      66% { transform: translateX(-200%); }
      100% { transform: translateX(0%); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .menu {
        display: none;
      }

      .mobile-menu-icon {
        display: block;
      }

      .intro h1 {
        font-size: 1.8em;
      }

      .intro p {
        font-size: 1em;
      }

      .carousel-text {
        font-size: 0.9em;
        bottom: 10px;
        left: 10px;
        padding: 8px 12px;
      }
    }
	



.footer {
  background-color: #3902A0;
  color: #f5f5f5;
  padding: 40px 20px 20px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-size: 0.95em;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.footer-logo img {
  height: 120px;
  margin-bottom: 10px;
}

.footer-logo p {
  max-width: 250px;
  color: #e0e0ff;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
  color: #ffffff;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-social a {
  text-decoration: none;
  color: #fff0f3; /* Amarillo dorado para destacar */
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #ffffff;
}
.footer-contact a{
text-decoration:none;	
}
.footer-contact p {
  margin: 5px 0;
  color: #e0e0ff;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: #ccccff;
  font-size: 0.9em;
  background-color:#FD073C;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
 /* Ejemplo de cómo usarlas en tu CSS: */
        .menu-text {
            /* 1. Usar Roboto como primera opción */
            font-family: 'Roboto', sans-serif;
            font-size: 18px;
            font-weight: 500; /* Coincide con el grosor que solicitamos arriba */
        }
        /* Puedes usar otra fuente para el cuerpo del texto si quieres variar: */
        .body-text {
            font-family: 'Open Sans', sans-serif;
        }

/* valor */

  .valores-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(180deg, #dcc9ff, #ffffff);
  }

  .valores-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #3902ac;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
  }

  .circle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dcc9ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
  }

  .icono-titulo {
    width: 26px;
    height: 26px;
  }

  .valores-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .valor-item {
    background: #fff0f3;
    border-radius: 16px;
    padding: 25px;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .valor-item:hover {
    background: #dfd6ef;
    transform: translateY(-8px);
  }

  .valor-icon {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .valor-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #3902ac;
  }

  .valor-item p {
    font-size: 1em;
    color: #333;
    line-height: 1.6;
  }

/* fin valor */



.cintillo-horizontal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #f4f4f4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 40px 0;
}

.cintillo-imagen {
  flex: 1 1 40%;
  background-image: url('https://tusitio.com/ruta-imagen.jpg'); /* Reemplaza con tu imagen */
  background-size: cover;
  background-position: center;
  min-height: 100px;
}

.cintillo-contenido {
  flex: 1 1 60%;
  padding: 40px 30px;
  color: #333;
  text-align: center;
}

.cintillo-contenido h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #0077cc;
}

.cintillo-contenido p {
  font-size: 1.1em;
  line-height: 1.6;
}
/*carrusel */

.carrusel {
  max-width: 1000px; /* Aumentamos el ancho en PC */
  margin: auto;
  width: 100%;
  display: flex;
}

.carrusel video, /* Si est�s usando <video> en lugar de <img> */
.carrusel img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.slick-slide {
  padding: 10px;
  box-sizing: border-box;
}

.slick-prev, .slick-next {
  z-index: 10;
}

/* RESPONSIVE: para m�viles y tablets */
@media (max-width: 768px) {
  .carrusel {
    max-width: 100%;
    padding: 0 10px;
  }

  .slick-slide {
    padding: 5px;
  }
}
	
	
.centrado{ text-align:right;width:100%;} 



.carrusel-texto {
  max-width: 560px;
  margin: auto;
  padding: 0px 20px 0 20px;
  text-align: left;
  min-height: 250px; 
  transition: height 0.3s ease;
  color:#7E7E7E;
  position:relative;
  left:-25%;
}/*

.carrusel-texto p, h1 {
  font-size: 1.4em;
  line-height: 1.6;
  background-color: rgba(0, 0, 0, 0.6); 
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin: 0;
}
*/
/* Responsividad */
@media (max-width: 800px) {
.carrusel-texto::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px; /* Redondea el sombreado */
  z-index: 0;
}

.carrusel-texto {
	margin-left:70px;
  max-width: 285px;
  color:#333;
   min-height: 200px; 

  }
 .ocultaPhone{display:none} 
}

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      padding: 40px;
    }
    .service {
      background: #dfd6ef;
      border-radius: 16px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      color: #333;
    }
    .service:hover {
  transform: translateY(-8px);    }
    .service-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 15px;
    }
    .icon {
      width: 36px;
      height: 36px;
      stroke: #fd073c;
      stroke-width: 2;
      fill: none;
      flex-shrink: 0;
    }
    .service h3 {
      font-size: 1.3em;
      margin: 0;
      color: #3902ac;
      transition: color 0.3s ease;
    }
    .service p {
      font-size: 1.05em;
      font-weight: 500;
      color: #555;
      margin-bottom: 20px;
      transition: color 0.3s ease;
    }
    /* Cambio de color al hacer hover en desktop y al tocar en móviles */
    .service:hover h3,
    .service:hover p,
    .service:active h3,
    .service:active p {
/*      color: #fd073c; */
    }

    .btn {
      display: inline-block;
      padding: 10px 18px;
      border-radius: 25px;
      background: linear-gradient(90deg, #3902ac, #fd073c);
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: background 0.4s ease;
    }
    .btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: rgba(255, 255, 255, 0.4);
      transform: skewX(-25deg);
      transition: left 0.6s ease;
    }
    .btn:hover::before {
      left: 125%;
    }
    .btn:hover {
      background: linear-gradient(90deg, #fd073c, #3902ac);
    }

.cintillo-logos {
  overflow: hidden;
  width: 100%;
  background: #f9f9f9;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.cintillo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: deslizar 30s linear infinite;
}

.cintillo-track.inverso {
  animation: deslizar-inverso 40s linear infinite;
}

.cintillo-track img {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.cintillo-track img:hover {
  filter: grayscale(0%);
}

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

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


.cintillo-logos:hover .cintillo-track {
  animation-play-state: paused;
}

.titulo-clientes {
  text-align: center;
  margin: 30px 0 10px;
}

.titulo-clientes h2 {
  font-family: 'Segoe UI', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color:#39019F;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.titulo-clientes h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #0078D4;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* estilo servicios */

    /* Secci�n del t�tulo */
    .services-title {
      text-align: center;
      margin: 50px 20px 40px;
      position: relative;
    }

    .services-title .icon {
      font-size: 2rem;
      display: block;
      margin-bottom: 10px;
      color: #6a0dad; /* Morado elegante */
    }

    .services-title h2 {
      font-size: 2.2rem;
      font-weight: 700;
      text-transform: uppercase;
      color: #333;
      letter-spacing: 2px;
      margin: 0;
    }

    .services-title h2 span {
      color: #6a0dad; /* Resalta la palabra Servicios */
    }

    .services-title .underline {
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #6a0dad, #b49bff);
      margin: 15px auto 0;
      border-radius: 2px;
    }

    /* Grid de servicios */
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 0 20px 50px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-card {
      background: #fff;
      border-radius: 15px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

    .service-icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .service-card h3 {
      font-size: 1.3rem;
      margin-bottom: 12px;
      color: #6a0dad;
    }

    .service-card p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 18px;
      line-height: 1.5;
    }

    /* Botones con degradado morado oscuro a claro */
    .btn {
      display: inline-block;
      padding: 10px 18px;
      border-radius: 25px;
      background: linear-gradient(90deg, #6a0dad, #b49bff);
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: background 0.4s ease, transform 0.3s ease;
    }

    .btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: rgba(255, 255, 255, 0.4);
      transform: skewX(-25deg);
      transition: left 0.6s ease;
    }

    .btn:hover::before {
      left: 125%;
    }

    .btn:hover {
      background: linear-gradient(90deg, #4b0082, #ac82ff);
      transform: scale(1.05);
    }
/* unete a la familia click */

    .titulo {
      font-size: 2.5em;
      font-weight: bold;
      margin-top: 60px;
      background: linear-gradient(to right, #000000, #7e2ee0); /* Negro a morado */
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
      padding: 0 50px;
    }

    .subtitulo {
      font-size: 1.2em;
      margin-top: 20px;
      color: #555;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
      padding: 0 20px; /* Espaciado lateral en m�viles */
      word-wrap: break-word;
    }

    .nota {
      font-size: 0.9em;
      margin-top: 30px;
      color: #888;
      font-style: italic;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 20px;
      line-height: 1.5;
    }

    /* Ajustes para pantallas peque�as */
    @media (max-width: 600px) {
      .titulo {
        font-size: 1.8em;
      }

      .subtitulo {
        font-size: 1em;
      }

      .nota {
        font-size: 0.85em;
      }
    }


