    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 1px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      z-index: 1000;
      
    }
    
    header .logo {
      font-size: 24px;
      font-weight: bold;
      color: #005073;
    }
    nav a {
      margin: 0 30px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      font-family: Nyala; 
      font-size: 20px
    }
    nav a:hover {
      color: #005073;
    }
    .btn {
      background: #005073;
      color: white;
      padding: 8px 15px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      width: 110px;
      height: 28px;
      margin-right: 12px;
      font-family: Nyala; 
      font-size: 20px;
    }
    .btn:hover {
      background: #0077b6;
    }
    hr{
        border: 0; /* Elimina el borde predeterminado */
      height: 2.5px; /* Grosor de la línea */
      background: linear-gradient(90deg, #0f172a, #005073, #0077b6); /* Color de la línea */
      margin: 10px 0; 
    }
     .hero {
    background: linear-gradient(90deg, #0f172a, #005073, #0077b6);
    color: white;
    padding: 50px 20px;
    display: flex;
    flex-direction: column; /* En móvil: apilado */
    align-items: center;
    text-align: center;
    gap: 20px;
    animation: fadeIn 0.8s ease forwards;
    margin-top: 118px;
    }

    @keyframes fadeIn {
      from { opacity: 0;}
      to   { opacity: 1;}
    }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-100px); }
      to   { opacity: 1; transform: translateX(0);}
    }

    .v1 img,
    .v1 video {
      width: 100%;
      max-width: 700px;   /* límite en escritorio */
      height: auto;
      border-radius: 50px;
      animation: slideInLeft 0.8s ease forwards;
      display: block;
      object-fit: cover;
    }

    .v2 h1 {
      margin: 0;
      animation: slideInLeft 0.8s ease forwards;
    }

    .c p {
      font-size: clamp(32px, 4vw, 40px);
      margin: 0;
      animation: slideInLeft 0.8s ease forwards;
    }

    /* --- Diseño para pantallas grandes --- */
    @media (min-width: 768px) {
      .hero {
        flex-direction: row;   /* en desktop se acomodan en fila */
        justify-content: center;
        text-align: left;
        gap: 40px;
      }

      .v1, .c {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .v2 h1, .c p {
        text-align: center;
      }
    }

    /* 📱 en móviles: video ocupa todo el ancho */
    @media (max-width: 767px) {
      .v1 video,
      .v1 img {
        max-width: 100% !important;
        width: 100%;
        height: auto;
    }
    }
    
    .solu {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      width: 90%;
      color: black;
    }

    .carouselS {
      overflow: hidden;
      border: 2px solid white;
      border-radius: 12px;
      background: white;
    }

    .track {
      display: flex;
      width: max-content;
      animation: scroll 15s linear infinite;
    }

    .track.reverse {
      animation-direction: reverse;
    }

    .item {
      min-width: 150px;
      margin: 10px;
      background: #ffffff;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      font-weight: bold;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .Soluciones {
      padding: 60px 20px;
      max-width: 80%;
      margin: auto;
      animation: slideInRight 0.8s ease forwards;

    }
    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(100px); }
      to   { opacity: 1; transform: translateX(0);}
    }
    .Soluciones h2 {
      text-align: center;
      font-size: 32px;
      margin-bottom: 40px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }
    .card h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #005073;
    }
    .card p {
      color: #555;
    }
     .features {
      background: #f5f5f5;
      padding: 60px 20px;
    }
    
    .features h2 {
      text-align: center;
      font-size: 32px;
      margin-bottom: 40px;
    }
    .features .grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .icon {
      font-size: 40px;
      color: #005073;
      margin-bottom: 15px;
    }
    /*Carrusel normal partners*/
    .carousel {
      background: #f5f5f5;
      padding: 40px 0;
      overflow: hidden;
      position: relative;
    }
    .carousel h2 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 28px;
    }
    .carousel-track {
      display: flex;
      width: calc(90px * 82); /* ancho estimado según número de logos */
      animation: scroll 40s linear infinite;
    }
    .carousel-track img {
      /*width: 200px;*/
      height: 120px;
      margin: 0 20px;
      filter: grayscale(100%);
      transition: filter 0.3s;
      border:3px solid rgb(245, 240, 240);
      border-radius:22px;
   

    }
    .carousel-track img:hover {
      filter: grayscale(0%);
    }
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }


    .whatsapp-button {
      position: fixed; /* Fija el elemento en la pantalla */
      bottom: 50px;    /* Distancia desde la parte inferior */
      right: 50px;     /* Distancia desde la parte derecha */
      z-index: 100;    /* Asegura que esté sobre otros elementos */
      display: block;  /* Asegura que el enlace ocupe el espacio del img */
    }

    .whatsapp-button img {
      width: 64px;     /* Ancho del icono */
      height: 64px;    /* Alto del icono */
      border-radius: 50%; /* Para un botón redondo (opcional) */
      box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* Sombra para hacerlo flotante */
    }


/* CARRUSEL NORMAL*/
    .carouselE {
      background: #f5f5f5;
      padding: 40px 0;
      overflow: hidden;
      position: relative;
    }
    .carouselE h2 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 28px;
    }
    .carouselE-track {
      display: flex;
      width: calc(120px * 15); /* ancho estimado según número de logos */
      animation: scroll 20s linear infinite;
    }
    .carouselE-track img {
      /*width: 200px;*/
      height: 120px;
      margin: 0 20px;
      /*filter: grayscale(100%);*/
      transition: filter 0.3s;
      border:3px solid rgb(245, 240, 240);
      border-radius:22px;
   

    }
    .carouselE-track img:hover {
      filter: grayscale(0%);
    }
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }


    .campo{
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;           /* permite que se acomode en pantallas chicas */
        animation: slideInDown 0.8s ease forwards;
        
        
        
    }
    .eslogan{
        flex: 1 1 45%;             /* ocupa la mitad en pantallas grandes */
        display: flex;
        justify-content: center;
    }
    .redes{
        flex: 1 1 50%;             /* ocupa la otra mitad */
        font-size: 1.5rem;
        line-height: 1.4;
        text-align: center;
    }
    .footer{
        background: linear-gradient(90deg, #0f172a, #005073, #0077b6);
        color: white;
        height: max-content;
    
    }
    .Designed{
      text-align: center;
    }
    .logo-face{
        width: 55px;
        height: 55px;
    }
    .logo-linke{
        width: 55px;
        height: 55px;
    }
    .logo-insta{
        width: 55px;
        height: 55px;
    }




/* Contenedor del botón */
    .boton-flotante {
      position: fixed;
      bottom: 20px;
      left: 20px;
      width: 70px;
      height: 70px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      animation: pulso 1.5s infinite;
      z-index: 999;
    }

    /* Imagen dentro del botón */
    .boton-flotante img {
      width: 60px;
      height: 60px;
    }

    /* Tooltip */
    .tooltip {
      position: absolute;
      left: 70px; /* espacio entre botón e info */
      bottom: 50%;
      transform: translateY(50%);
      background: #333;
      color: #fff;
      padding: 5px 12px;
      border-radius: 8px;
      font-size: 28px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
    }

    /* Flechita del tooltip */
    .tooltip::after {
      content: "";
      position: absolute;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      border-left: 8px solid #333;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
    }

    /* Mostrar tooltip al pasar el mouse */
    .boton-flotante:hover .tooltip {
      opacity: 1;
      transform: translateY(50%) translateX(-5px);
    }

    /* Animación de pulso */
    @keyframes pulso {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

