/* ======================= */
/*      ESTILOS GLOBALES   */
/* ======================= */
:root {
  --color-primario: #003366;
  --color-secundario: #00b4d8;
  --color-texto: #333333;
  --color-fondo: #f9fafb;
}

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
}

/* ======================= */
/*         HEADER          */
/* ======================= */


@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

.logo img {
  height: 72px;
  width: auto;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: #065a87;
  letter-spacing: 0.5px;
  text-transform: none;
}

@media (max-width: 500px) {
  .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .logo-text {
    font-size: 1.2rem;
    white-space: normal;
  }
}
.titulo-con-sombra {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;

}

.header-mobile button{display:none;}



/* ======================= */
/*     NAVEGACIÓN          */
/* ======================= */

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  color: rgb(39, 41, 90);
  text-decoration: none;
  font-weight: 600;
  padding-bottom: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: rgb(39, 41, 90);
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}

.main-nav ul li a:hover {
  color: #73715e;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/*jmr*/

.animar-hero {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.4,0,0.2,1), transform 1s cubic-bezier(0.4,0,0.2,1);
}

.animar-hero.visible {
  opacity: 1;
  transform: translateX(0);
}

.wrapper_modulos{display: flex;flex-direction: column;row-gap:30px}


.container_modulos{ 
  max-width: 1200px;
  margin: auto;
  padding:10px 20px;
}

/*ANIMACION DE CARDS MODULOS*/
@keyframes banderaFadeIn {
  from {
    opacity: 0;
    transform: translate(-32px, -32px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.module-card {
  opacity: 0;
  transform: translate(-32px, -32px) scale(0.98);
  will-change: opacity, transform;
}

.module-card.bandera-animada {
  animation: banderaFadeIn 0.8s cubic-bezier(0.4,0,0.2,1) both;
}










/* Botón hamburguesa para mobile */

/* ======================= */
/*     SECCIÓN MANUALES    */
/* ======================= */

.manuales {
  padding: 50px 20px;
  background-color: linear-gradient(90deg, #04669a, #00b4d8);
  max-width: 1200px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.manuales h1 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #007bff;
  font-weight: 600;
  text-transform: uppercase;
}

.manuales ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.manuales ul li {
  margin: 20px 0;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.manuales ul li a {
  color: #007bff;
  text-decoration: none;
  font-weight: normal;
  font-size: 1.1rem;
  padding: 10px 15px;
  border: 2px solid #007bff;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.manuales ul li a:hover {
  color: linear-gradient(90deg, #04669a, #00b4d8);
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-5px);
}
.header-content.left {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* alinea a la izquierda */
  gap: 20px;
  padding-left: 20px;
}

/* Botones especiales */

.btn-manuales, .boton-manuales {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: #005f86;
  color: white;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 168, 232, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin: 20px 0;
}

.btn-manuales:hover, .boton-manuales:hover {
  background-color: #005f86;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 168, 232, 0.4);
}

.btn-manuales:active, .boton-manuales:active {
  transform: translateY(2px);
  box-shadow: 0 6px 15px rgba(0, 168, 232, 0.3);
}

.icon-download {
  font-size: 16px;
}

    .back-button {
      display: block;
      width: max-content;
      margin: 40px auto;
      padding: 10px 20px;
      background-color: #0077b6;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .back-button:hover {
      background-color: #005f86;
    }
/* ======================= */
/*         FOOTER          */
/* ======================= */

footer {
  background-color: #176491;
  color: #ffffff;
  padding: 15px 0;
  text-align: center;
}

footer p {
  font-size: 1rem;
  margin: 0;
}

.footer-simple {
  background: linear-gradient(90deg, #6ba5c2, #51a9d8);
  color: white;
  padding: 20px 0;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-simple a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-simple a:hover {
  color: #e0f7fa;
}


/* Botón volver */

.btn-volver {
  display: inline-block;
  margin: 20px;
  padding: 10px 20px;
  background-color: #004080;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-volver:hover {
  background-color: #002b5c;
}
.extra-info {
  display: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav li {
  margin-left: auto;
}

header {
  background: linear-gradient(90deg, #add3e8, #00b4d8);
  color: rgb(7, 62, 214);
  padding: 20px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center; /* Centrar contenido */
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
}

.header-content h1 {
  margin: 0;
  font-size: 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Menú */
.nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: #004080;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color:#004080;
}

/* Menú responsive */
#menu-toggle {
  font-size: 1.8rem;
  background: none;
  border: none;
  color:#2769c4;
  cursor: pointer;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px; 
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.menu-toggle {
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #0c64b7;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #1979c7;
  font-weight: 700;
}

.nav-menu a:hover {
  color: #1b97da;
}

.btn-manuales {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: #005f86;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-manuales:hover {
  background-color: #005f86;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-manuales i {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.btn-manuales:hover i {
  transform: translateX(4px);
}


/* Estilo para el botón de expansión y la información adicional */
.extra-info {
  display: none;
  padding: 10px;
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.expand-btn {
  background-color: #005f86;
  color: #fff;
  border: none;
  padding: 8px 12px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.expand-btn:hover {
  background-color: #005f73;
}

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    header {
      background: linear-gradient(to right, #73b6ec, #e9f5ff);
      padding: 20px 40px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      animation: fadeIn 1s ease-out;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .branding {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .branding img {
      height: 60px;
      width: auto;
    }

    .branding-text h1 {
      font-size: 2rem;
      color: #222;
      font-weight: 600;
    }

    .branding-text p {
      font-size: 1rem;
      color: #777;
      margin-top: 5px;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    nav ul li a {
      text-decoration: none;
      font-weight: 500;
      color: #333;
      position: relative;
      padding-bottom: 5px;
      transition: all 0.3s ease;
    }

    nav ul li a::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      background-color: #0077b6;
      bottom: 0;
      left: 0;
      transition: 0.3s;
    }

    nav ul li a:hover::after {
      width: 100%;
    }

    nav ul li a:hover {
      color: #0077b6;
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
      }

      nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
      }

      .branding {
        flex-direction: column;
        align-items: flex-start;
      }

      .branding img {
        height: 50px;
      }
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    }



    h2 {
      color: #0077b6;
      margin-bottom: 20px;
    }

    .intro {
      background: url(./img/background5.jpg);
      background-size: cover;
      padding: 25px;
      min-height: 90vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      margin-bottom: 40px;
      position: relative; /* Necesario para el overlay */
      overflow: hidden; 
    }

    .intro::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(0, 40, 80, 0.373) 0%, rgba(0,0,0,0.25) 100%);
        z-index: 0;
      pointer-events: none;
    }
  
    
.intro > * {
  position: relative;
  z-index: 1;
}



    .text_wrapper{width: 50%; position:relative; left: 10%;}
    .intro-heading{font-size: 40px; color: #ffffff;}
    .intro-text{width:40%;color: #FFFFFF;}





    .fadein-suave {
      opacity: 0;
      transform: translateY(32px) scale(0.98);
      transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
      will-change: opacity, transform;
    }
    
    .fadein-suave.visible {
      opacity: 1;
      transform: none;
    }









    .modules {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .module-card {
      background-color:#f0f4f8;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .module-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    .module-icon {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .module-card h3 {
      font-size: 1.2rem;
      margin: 10px 0;
      color: #005f73;
    }

    .module-card p {
      font-size: 0.95rem;
      color: #555;
    }

    .manuales {
      background-color: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      margin-top: 40px;
    }

    .manuales ul {
      list-style: none;
      padding-left: 0;
    }

    .manuales li {
      margin: 10px 0;
    }

    .manuales a {
      color: #0077b6;
      text-decoration: none;
    }

    .manuales a:hover {
      text-decoration: underline;
    }

    footer {
      text-align: center;
      font-size: 0.9em;
      color: #ffffff;
      padding: 20px;
      margin-top: 10px;
    }

    .sistema   { color: #888; }
    .ventas    { color: #3aa17e; }
    .compras   { color: #d94f4f; }
    .stock     { color: #e0b400; }
    .finanzas  { color: #7b61ff; }
    .conta     { color: #ff9248; }
    .personal  { color: #3fa3d3; }

    #contacto {
        max-width: 400px;
        margin: 20px auto;
        padding: 15px;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    #contacto h2 {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #333;
    }

    #contacto label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
        color: #444;
    }

    #contacto input,
    #contacto textarea {
        width: 100%;
        margin-bottom: 10px;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 0.9rem;
        background-color: #f9f9f9;
        transition: border-color 0.3s;
    }

    #contacto input:focus,
    #contacto textarea:focus {
        border-color: #007BFF;
        outline: none;
    }

    #contacto button {
        width: 100%;
        padding: 10px;
        background-color: #007BFF;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    #contacto button:hover {
        background-color: #0056b3;
    }

  .manual-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
  }

  .manual-card {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .manual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }

  .manual-card i {
    font-size: 1.5rem;
    color: #e63946;
  }

  .manual-card a {
    text-decoration: none;
    color: #0077b6;
    font-weight: 500;
  }

  .manual-card a:hover {
    color: #005f73;
  }
.titulo-con-sombra {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
}
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  padding: 30px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: 0.3s;
}

.por-que-abacus {
  background-color: #f8f9fb;
  padding: 40px 20px;
  text-align: center;
}

.por-que-abacus h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #0077b6;
}

.ventajas {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.ventajas li {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.ventajas i {
  color: #00b4d8;
  font-size: 1.2rem;
}
.por-que-abacus {
  background-color: #f8f9fb;
  padding: 60px 20px 50px;
  text-align: center;
}

.por-que-abacus h2 {
  font-size: 2rem;
  margin-bottom: 35px;
  color: #0077b6;
  position: relative;
}

.por-que-abacus h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #00b4d8;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.ventajas {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.ventajas li {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #333;
}

.ventajas i {
  color: #00b4d8;
  font-size: 1.4rem;
  min-width: 24px;
  text-align: center;
}

/* Ajustes responsive */
@media (max-width: 600px) {
  .por-que-abacus {
    padding: 40px 15px;
  }

  .por-que-abacus h2 {
    font-size: 1.6rem;
  }

  .ventajas li {
    font-size: 1rem;
    gap: 8px;
    padding: 8px 0;
  }

  .ventajas i {
    font-size: 1.2rem;
  }
}
.main-header {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.logo:hover {
  transform: scale(1.1);
}

.menu-toggle:hover {
  color: #023e8a;
}
.main-header {
  background-color: #ffffff;
  padding: 20px 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    right: 0;
    background-color: #ffffff;
    width: 220px;
    height: calc(100% - 70px);
    flex-direction: column;
    padding: 20px;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  .nav-menu.show {
    transform: translateX(0);
  }
}
@media (max-width: 600px) {
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1100;
  }

  .nav-menu {
    position: fixed; /* fijo para que no se salga del viewport */
    top: 60px;       /* justo debajo del header */
    right: 10px;     /* algo de margen a la derecha */
    background: #0077b6;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    width: 180px;    /* ancho cómodo para pantallas móviles */
    padding: 15px 20px;
    z-index: 1050;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 14px;
    margin: 0;
  }

  .nav-menu ul li a {
    font-size: 1.15rem; /* más legible en móvil */
    padding: 8px 10px;
    display: block;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }

  .nav-menu ul li a:hover,
  .nav-menu ul li a:focus {
    background-color: #0096c7;
  }

  .nav-menu.active {
    display: block;
  }
}

.menu-toggle .bar {
  width: 100%;
  height: 3.5px;
  background-color: white;
  border-radius: 3px;
}
.page-container {
  max-width: 800px;
  margin: 2em auto;
  padding: 1em;
  font-family: sans-serif;
  color: #333;
}

h1 {
  font-size: 2em;
  margin-bottom: 1em;
    font-weight: normal;

}
/* Contenedor general */
.page-container {
  max-width: 800px;
  margin: 2em auto;
  padding: 1em;
  font-family: sans-serif;
  color: #333;
}

/* Título */
.page-container h1 {
  font-size: 2em;
  margin-bottom: 1em;
  font-weight: 600;
}

/* Botón toggle */
.toggle-novedades {
  background: #e0e0e0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  padding: 0.5em 1em;
  color: #333;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  margin-bottom: 1em;
}

.toggle-novedades:hover {
  background-color: #d4d4d4;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Lista de novedades (inicialmente oculta si se usa toggle) */
.novedades-list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

/* Lista visible cuando está abierta */
.novedades-list.open {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}

/* Estilo de cada novedad */
.novedad {
  padding: 0.5em 0;
  border-bottom: 1px solid #eee;
}

/* Última novedad sin borde */
.novedad:last-child {
  border-bottom: none;
}

/* Fecha de la novedad */
.novedad .fecha {
  font-size: 0.85em;
  color: #888;
  display: block;
  margin-bottom: 0.3em;
}
/* === Unificación de logos en toda la web === */
.logo img,
img[alt*="Logo"] {
  height: 80px !important;
  width: auto !important;
  object-fit: contain;
  flex-shrink: 0;
}

/* === Conservación del resto del diseño original === */
.site-header {
  background-color: #0a68d4;
  border-bottom: 1px solid #eaeaea;
  padding: 30px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.1);
}

/* resto del archivo estilos.css mantenido sin cambios significativos para no romper diseño existente */

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap:10%;
  background: linear-gradient(90deg, #6ba5c2, #51a9d8);
  padding: 15px 40px;
  position:sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo img {
  height: 40px;
  width: auto;
}

/* Menú horizontal */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #3392ea;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    color: rgb(8, 127, 200); /* se ve sobre fondo azul */
    cursor: pointer;
    z-index: 1100;
  }

  .nav-menu {
    position: fixed;
    top: 70px; /* ajustá según altura de tu header */
    right: 0;
    width: 220px;
    max-height: calc(100% - 70px); /* limita el alto total */
    background-color: #0077b6;
    padding: 20px;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 0 12px;
    z-index: 1099;
    overflow-y: auto; /* scroll si es muy largo */
    display: flex;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .nav-menu ul li {
    margin: 0;
  }

  .nav-menu ul li a {
    display: block;
    color: rgb(240, 240, 242);
    font-size: 1.1rem;
    padding: 10px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }

  .nav-menu ul li a:hover {
    background-color: #0096c7;
  }
}
/* ==== HAMBURGUESA Y MENÚ RESPONSIVO ==== */

.menu-toggle {
  display: block;
  font-size: 30px;
  color: #000; /* negro para que se vea sobre fondo claro */
  background: none;
  border: none;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}

/* Menú por defecto (visible en escritorio) */
.nav-menu {
  display: flex;
  gap: 20px;
}

/* Ocultar menú y mostrar hamburguesa en móvil */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 10px;
    background: #0f5fa4;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* Por defecto: ocultamos botón menú hamburguesa */
.menu-toggle {
  display: none;
}

/* Menú visible horizontal en escritorio */
.nav-menu {
  display: flex;
  gap: 30px;
  /* Aquí va el resto de tu estilo para escritorio */
}

/* En móvil: max-width 768px */
@media (max-width: 768px) {
  /* Mostrar botón hamburguesa */
  .menu-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    color: rgb(8, 127, 200);
    cursor: pointer;
    z-index: 1100;
  }

  .header-mobile{display: flex ; width: 100%; justify-content: space-between;}
   .header-mobile button{display: flex;align-items: center;position: relative;right: 10%;}
  /* Menú oculto por defecto, se mostrará con .active */
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 120px;
    right: 0;
    width: 220px;
    height: 100dvh;
    background-color: #0077b6;
    padding: 70px 20px 20px;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 0 12px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    z-index: 1099;
  }

  /* Mostrar menú cuando tenga clase active */
  .nav-menu.active {
    transform: translateX(0);
  }

  /* Opcional: estilos del ul y links dentro del menú */
  .nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .nav-menu ul li a {
    color: rgb(240, 240, 242);
    font-size: 1.1rem;
    padding: 10px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }

  .nav-menu ul li a:hover {
    background-color: #0096c7;
  }


  .text_wrapper{width: 100%; left:0px}
  .intro-text{width:100%;}
  .animar-hero.visible{transform: none;}
  




}

/* Opcional: evitar scroll en body cuando menú abierto */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}
.nav-menu ul li a {
  color: #fff;
  font-size: 1.2rem;
  padding: 12px 16px;
  text-decoration: none;
  border-radius: 8px;
/*  background-color: rgba(255, 255, 255, 0.05);  leve fondo para darle cuerpo */
  backdrop-filter: blur(2px); /* leve desenfoque detrás */
  transition: all 0.3s ease;
 /* box-shadow: 0 1px 2px rgba(0,0,0,0.15);*/
}

.nav-menu ul li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(5px); /* pequeño movimiento hacia la derecha */
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}







#por-que-y-clientes {
  display: flex;
  gap: 40px;
  padding: 40px 20px;
  background-color: #f8f9fa;
  flex-wrap: wrap; /* para que en pantallas chicas se acomode bien */
}

#por-que-y-clientes > section {
  flex: 1 1 400px; /* crece, encoge, con mínimo de 400px */
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}

/* Estilos para la lista de clientes */
.clientes-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.cliente {
  max-width: 120px;
  text-align: center;
}

.cliente img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  cursor: pointer;
}

.cliente img:hover {
  filter: none;
}

.cliente p {
  margin-top: 8px;
  font-weight: 600;
}

/* Responsividad para pantallas chicas */
@media (max-width: 768px) {
  #por-que-y-clientes {
    flex-direction: column;
  }
}
:root {
  --azul-oscuro: #003366;
  --azul-claro: #66CCFF;
  --gris-oscuro: #333333;
  --blanco: #FFFFFF;
  --naranja: #FF6600;
}

body {
  font-family: 'Roboto', sans-serif;
  /*background-color: var(--blanco);*/
  color: var(--gris-oscuro);
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Open Sans', sans-serif;
  color: var(--azul-oscuro);
  margin-bottom: 1rem;
}
.btn-manuales {
  background-color: var(--naranja);
  color: var(--blanco);
  padding: 10px 16px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-manuales:hover {
  background-color: #005f86; /* tono más oscuro de azul */
}
#por-que-y-clientes {
  display: flex;
  gap: 40px;
  padding: 40px 20px;
  background-color: #f8f9fa;
  flex-wrap: wrap;
}

#por-que-y-clientes > section {
  flex: 1 1 400px;
  background: var(--blanco);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}
.site-header .nav-menu ul li a {
  color: var(--blanco);
  text-decoration: none;
  font-weight: normal; /* acá cambiamos a normal */
  transition: color 0.3s ease;
}

.site-header .nav-menu ul li a:hover {
  color: var(--naranja);
}
.capacitacion-soporte {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9fafb;
}

.capacitacion-soporte h2 {
  margin-bottom: 20px;
  color: #003366;
  font-size: 1.8rem;
}
.metricas {
  background-color: #003366;
  color:#003366;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.metrica {
  text-align: center;
}

.metrica h3 {
  font-size: 2.5rem;
  margin: 0;
}

.metrica p {
  margin: 10px 0 0;
  font-size: 1rem;
}



@keyframes bounce {
  0%   { transform: scale(1);}
  20%  { transform: scale(1.18, 0.92);}
  40%  { transform: scale(0.92, 1.12);}
  60%  { transform: scale(1.08, 0.96);}
  80%  { transform: scale(0.98, 1.04);}
  100% { transform: scale(1);}
}

.metrica .bounce {
  animation: bounce 0.6s cubic-bezier(.68,-0.55,.27,1.55);
}




.btn-manuales {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: #005f86;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  box-shadow: 0 6px 15px rgba(0, 119, 182, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-manuales:hover,
.btn-manuales:focus {
  background-color: #005f86;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 95, 134, 0.4);
  outline: none;
}
.module-card {
  display: flex;
  flex-direction: column;
  align-items: center;      /* centra todo horizontalmente */
  text-align: center;       /* centra los textos */
  gap: 10px;                /* espacio entre ícono, título, texto y botón */
  padding: 20px;
  box-sizing: border-box;
}

.module-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
.btn-unificado {
  background-color:#005f86; /* mismo color que Ver más */
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn-unificado:hover {
  background-color: #1b89b5;
}
.centrar-boton {
  text-align: center;
  margin-top: 30px; /* opcional */
}
.capacitacion-soporte {
  background-color: #fff;
  padding: 60px 40px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
  /*margin-top: 60px;*/
}

.capacitacion-soporte p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0; /* para controlar mejor espacios */
}

.app-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 20px 25px;
  background-color: #e8f0fe;
  border-radius: 8px;
  box-shadow: inset 0 0 12px rgba(26, 115, 232, 0.15);
}

.app-icon {
  font-size: 44px;
  color: #1563c8;
  flex-shrink: 0;
}

.app-info h3 {
  margin: 0 0 6px 0;
  font-weight: 700;
  color: #0f3d91;
}

.app-info p {
  margin: 0 0 10px 0;
  font-size: 0.96rem;
  color: #2a3d66;
}

.btn-app {
  display: inline-block;
  padding: 10px 22px;
  background-color: #1d559f;
  color: white;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(26, 115, 232, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-app:hover {
  background-color: #155ab6;
  box-shadow: 0 6px 14px rgba(21, 90, 182, 0.6);
}
