/* Medium */
@font-face {
    font-family: 'ZacbelX';
    src: url('../fonts/zacbelx-medium.ttf') format('truetype');
    font-weight: 500; /* medium */
    font-style: normal;
}

/* ExtraBold */
@font-face {
    font-family: 'ZacbelX';
    src: url('../fonts/zacbelx-extrabold.ttf') format('truetype');
    font-weight: 800; /* extra bold */
    font-style: normal;
}

.t-verde {
  color: #006633;
}

.t-azul {
  color: #2D2E83;
}

.t-blanco {
  color: white;
}

.t-z1 {
  font-size: 1rem;
}

.t-z1m {
  font-size: 1.5rem;
}

.t-z2 {
  font-size: 2rem;
}

.t-jt {
  text-align: justify;
}

.bk-verde {
  background-color: #006633;
}

.bk-verde2 {
  background-color: #008D36;
}

.bk-verde3 {
  background-color: #3AAA35;
}

.bk-azul {
  background-color: #2D2E83;
}

.bk-azul2 {
  background-color: #414F9D;
}

.bk-azul3 {
  background-color: #4796D2;
}

body, html {
  margin: 0;
  padding: 0;
  /* height: 100%; */
  overflow-x: hidden; 
  overflow-y: scroll;
}

body {
  margin: 0;
  font-family: ZacbelX, sans-serif;
  background: #f9f9f9;
  color: #333;
  
}


/* Splash general */
#splash {
    position: fixed;
  font-family: ZacbelX;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #414F9D; /* fondo sólido */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


/* Texto FollowMe */
#intro {
    font-family: 'ZacbelX', Geoslab, sans-serif;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6), 0 0 5px rgba(255,255,255,0.2);
    font-size: 5vw; /* tamaño relativo al ancho de pantalla */
}

#intro {
      font-family: 'ZacbelX', Geoslab, sans-serif;
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: #0056b3;
      color: white;
      z-index: 9999;
      text-align: center;
    }

    .phrase {
      font-size: 2rem;
      opacity: 0;
    }

    #logoX {
      font-size: 3rem;
      font-weight: 700;
      opacity: 0;
      margin-top: 20px;
      letter-spacing: 1px;
      color: white;
    }


/* Logo final */
#logo {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 120px;
  opacity: 1;
  z-index: 999;
      max-height: 2.8rem;
    width: auto;
}

/* Contenido principal */
main#content {
  margin: 0px; /* 100px 20px 20px 20px; /* margen para no chocar con el logo */
}

.menu1-bar {
    width: 100%;
    height: 78px; /* Ajusta según tu diseño */
    display: flex;
    align-items: center;
    padding: 0 20px;
  z-index: 999; 

    /* Degradado de izquierda a derecha */
    background: linear-gradient(to right, #4796D2, #414F9D, #2D2E83);

    /* Texto o logo en blanco */
    color: #fff;
  position: fixed;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* sombra opcional */
}

.hero {
    position: relative;
    height: calc(100vh - 78px); /* resto de la pantalla debajo de la barra */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Fondos de las imágenes */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
}

/* Imagenes específicas */
.hero-bg-1 {
    background-image: url('/images/contenido/buss1.jpg');
    opacity: 1; /* empieza visible */
}
.hero-bg-2 {
    background-image: url('/images/contenido/buss2.jpg');
}

/* Contenido del hero */
.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 25%; /* desplaza todo el bloque hacia abajo */
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

/* Título con efecto de sombra y glow */
.hero-content h1 {
    font-family: 'ZacbelX', Geoslab, sans-serif;
    font-weight: 600;
    font-size: 4rem;
    color: #ffffff;
    /* text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6), 0 0 10px rgba(255, 255, 255, 0.2);*/
    margin-bottom: 20px;
  text-shadow: 3px 2px 2px black;
}

/* Subtítulo con fondo semitransparente */
.hero-content p {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    background-color: rgba(0,0,0,0.3); /* fondo semitransparente */
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
}

/* Botón CTA con sombra */
.hero-cta {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: #2D2E83;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: scale(1.05);
    background-color: #414F9D;
}


#hero-title,
#hero-subtitle,
.hero-cta {
  opacity: 0;
  transform: translateY(20px);
}

.mod-menu {
  color: white;
    text-decoration: none;
    padding-right: 0.5rem;
    text-transform: uppercase;
    font-family: ZacbelX;
    margin-top:10px;
}

.mod-menu ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  gap: 1.2rem;
}

/*
.mod-menu li a {
  color: white;
    text-decoration: none;
    padding-right: 0.5rem;
    text-transform: uppercase;
    font-family: ZacbelX;
}
*/

.mod-menu a {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.4rem 0.6rem;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
}

/* Separador visual sutil entre ítems */
.mod-menu li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Hover: ilumina con brillo suave */
.mod-menu a:hover {
  color: #3AAA35; /* verde suave */
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* Ítem activo: fondo sutil y línea inferior */
.mod-menu .active > a,
.mod-menu a.active {
  background-color: #008D36; /* verde medio corporativo */
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.mod-menu .active a::after,
.mod-menu a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 60%;
  height: 2px;
  background-color: #3AAA35; /* verde suave */
  transition: transform 0.3s ease;

}

/* Transiciones suaves * /
.mod-menu a,
.mod-menu .active a::after {
  transition: all 0.3s ease;
}
*/
.mod-menu a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Responsive */
@media (max-width: 768px) {
  .mod-menu ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }
}



.men1 {
  display: flex;
    justify-content: flex-end;
    padding-right: 2rem;
  
}


/* 
=====================================
   AJUSTES PARA SCROLL HORIZONTAL 
=====================================
*/

.divScrollH {
  height: 80vh;
  width: 100%;
}

.divH {
  max-width: 300%;
  height: 100%;
  width: 300%;
  display: flex;
  flex-wrap: nowrap;  
}

.panelH {
  /* flex: 0 0 100%;  */
  width: 100vw;
  height: 80vh;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: white;
  position: realtive;
  box-sizing: border-box;
  padding: 10px;
}


/* Contenido centrado pero en bloque */

.panel-contenido {
    display: block;
    max-width: 100vw;
    color: white;
  }

.panel-contenido h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    opacity: 1;
    transform: translateY(50px);
  }

.panel-contenido p {
    line-height: 1.5;
    opacity: 1;
    transform: translateY(50px);
    display: block;
    max-width: 90vw;    
  }

/******** ajuste  para columnas horizontales scroll ****/

.LC-H {
    height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* Parte fija arriba */
  .titulo-H {
    height: 20%; /* Ocupa 20% del alto */
    display: flex;
    align-items: center;
    /* justify-content: center;
    background: #222; */
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    z-index: 10;
  }

  /* Contenedor scroll abajo */
  .divScrollH2 {
    height: 80%; /* Ocupa 80% del alto */
    overflow: hidden;
    background: #f0f0f0;
  }

  .divH2 {
    display: flex;
    align-items: center;
    height: 100%;
  }

  /* Paneles estilo columnas */
  .panelH2 {
    flex: 0 0 30%; /* cada panel ocupa el 40% del ancho de viewport */
    margin-right: 20px; /* separación entre columnas */
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    // background: #3498db;
    color: white;
    font-size: 1.5em;
    border-radius: 10px;
    margin-top: -6rem;
        flex-direction: column;
    flex-wrap: nowrap;
  }



/*
=========================
   Ajustes para móviles
========================= 
*/

@media (max-width: 768px) {
    .hero-content {
        margin-top: 15%; /* menos margen superior */
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 2rem; /* más pequeño */
        line-height: 1.2em;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 4px 10px;
    }

    .hero-cta {
        padding: 10px 20px;
        font-size: 1rem;
    }

  .t-z1m {
    font-size: 1rem;
  }
}

/* Para pantallas muy pequeñas (<480px) */
@media (max-width: 480px) {
    .hero-content {
        margin-top: 10%;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-cta {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

  .t-z1m {
    font-size: 1rem;
  }
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    #intro {
        font-size: 12vw; /* más grande y visible en móvil */
    }
}

@media (max-width: 480px) {
    #intro {
        font-size: 14vw; /* tamaño máximo en móviles muy pequeños */
    }
}


/***** AJUSTES DE CONTENIDO  *************/

.xbox1 {
  
}

.xb-titulo {
  font-variant: all-petite-caps;
    font-size: 2rem;
    /*background-color: #006633;*/
}

.xb-imagen {
  max-height: 15rem;
    margin-left: 12%;
}

.xb-parrafo {
  text-align: justify;
    padding: 9px;
}

.Fw-Titulos {
      padding-top: 12rem;
    text-align: center;
    padding-bottom: 4rem;
    color: white;
    background: linear-gradient(to right, #4796D2, #414F9D, #2D2E83);
    border-radius: 111px;
    margin-top: -7rem;
    overflow: hidden;
    overflow-x: hidden;
    padding-right: 0px;
    margin-right: -2px;
    margin-bottom: 2rem;
}

.pq-bk-1 {
      padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    border-radius: 20px;
    border: solid 1px #00000033;
    box-shadow: 3px 3px 4px 3px #00000040;
}

.pq-titulo {
  text-align: center;
    font-size: 2rem;
    font-weight: 800;
}

.pq-titulo2 {
  font-size: 1.8rem;
    margin-top: -0.8rem;
    color: #006633;
    text-align: center;
}

.pq-titulo3 {
  text-align: justify;
    font-size: 1rem !important;
    font-weight: 600;
}


/* Estilos para las politicas */


  /* === Estilos personalizados para la Política de Seguridad de la Información === */
  .policy-container {
    max-width: 900px;
    margin: auto;
    background-color: #ffffff;
    padding: 2rem 3rem;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
  }

  .policy-container h1 {
    color: #004080;
    border-bottom: 3px solid #0d6efd;
    padding-bottom: .5rem;
  }

  .policy-container h2 {
    color: #0d6efd;
    border-left: 5px solid #0d6efd;
    padding-left: .75rem;
  }

  .policy-container h3 {
    color: #084298;
    font-weight: 600;
  }

  .policy-container p,
  .policy-container li {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
  }

  .policy-container ul {
    margin-top: .5rem;
    margin-bottom: 1.5rem;
  }

  .policy-container li::marker {
    color: #0d6efd;
  }

  .policy-container strong {
    color: #000;
  }

  .policy-container .text-muted {
    font-size: 0.9rem;
  }

.tz-1 {
  font-size: 1.15rem;
  
}

  @media (max-width: 768px) {
    .policy-container {
      padding: 1.5rem;
    }
  }

/* Estilos para Paquetes */

/* mantiene lo anterior y añade controles específicos */
.paquete-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
  background: #ffffff;
  position: relative;
  padding-bottom: 1rem;
}

.paquete-card:hover {
  transform: translateY(-8px);
  border-color: #3AAA35;
  box-shadow: 0 8px 20px rgba(65, 79, 157, 0.15);
}

/* badge recomendado */
.badge-reco {
  display: inline-block;
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
  background: #008D36;
  color: #fff;
  border-radius: 0.5rem;
  margin-left: 0.6rem;
  vertical-align: middle;
  font-weight:700;
}

/* features - yes / no */
.feature-yes { color: #008D36; }
.feature-no { color: #d9534f; }

.feature-row { margin: 0.45rem 0; font-size: 0.95rem; display:flex; align-items:center; }
.feature-row .muted { color: #6c757d; }

/* botón principal */
.paquete-card .btn-success {
  background-color: #008D36;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.paquete-card .btn-success:hover { background-color: #006633; box-shadow: 0 0 10px rgba(0,141,54,0.35); }


/* estilo para la sección común */
.container.mt-5.pt-5 { background-color: #f9fafc; border-radius: 1rem; padding: 2.5rem; }


/* Contenedor principal */
.ForWhat {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
}

/* Tarjetas */
.fw-card {
  background-color: #fff;
  border: 1px solid rgba(65, 79, 157, 0.15);
  transition: all 0.35s ease;
}

.fw-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(65, 79, 157, 0.15);
  border-color: #008D36;
}

/* Iconos */
.icon-why {
  height: 145px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Textos */
.fw-card h5 {
  margin-bottom: 0.75rem;
}

.fw-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}


/* Responsive: mejora lectura en pantallas pequeñas */
@media (max-width: 768px) {
  .fw-card {
    padding: 1.5rem;
  }
  .icon-why {
    width: 56px;
    height: 56px;
  }
}


/* Botón de acceso de usuario */
.user-access-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Efecto hover */
.user-access-icon:hover {
  background-color: #008D36; /* Verde medio corporativo */
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(0, 141, 54, 0.4);
}

/* En pantallas pequeñas, separarlo visualmente */
@media (max-width: 768px) {
  .user-access-icon {
    margin-top: 0.5rem;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

.tlist0 {
  list-style: none !important;
}