.animacion-whatsapp{
    display: none;
}

.animacion:hover div{
    display: block;
    transition: all 2s linear;
}
.tarjetas {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-gap: 1rem;
}
.tarjetasBorde {
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, .5);
  text-align: center;
  position: relative;
  transition: background-color 0.8s linear 0.2s;
}
.tarjetasTitulo{
  font-weight: bold; 
  font-size:medium; 
  color: #000000;
}

.tarjetasDesc{
  color: #000000;
}
.tarjetas .tarjetasBorde:hover .tarjetasDesc{
  font-weight: bold;
  color: darkblue;
}
/* Screen larger than 600px? 2 column */
@media (min-width: 600px) {
  .tarjetas { grid-template-columns: repeat(2, 1fr); }
}
  
/* Screen larger than 900px? 3 columns */
@media (min-width: 900px) {
  .tarjetas { grid-template-columns: repeat(3, 1fr); }
}
.tarjetas3 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-gap: 1rem;
}
.tarjetasBorde3 {
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
  position: relative;
  transition: background-color 0.8s linear 0.2s;
}
.tarjetasBorde3 p{
  margin-bottom: 10px;
}
.tarjetasBorde3 img{
  width: 50px;
  height: 50px;
}
.tarjetasBorde3:hover {
  transform: scale(1.2);
  transition: all 300ms;
}
.tarjetasTitulo3{
  font-weight: bold; 
  font-size:medium; 
  color: #fff;
}
.tarjetasDesc3{
  color: #fff;
}
/* Screen larger than 600px? 2 column */
@media (min-width: 600px) {
  .tarjetas3 { grid-template-columns: repeat(2, 1fr); }
}
  
/* Screen larger than 900px? 3 columns */
@media (min-width: 900px) {
  .tarjetas3 { grid-template-columns: repeat(6, 1fr); }
}



/*******************Permisos Objetivos**********************/

.contenedor-parrafos {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: nowrap; /* ❌ evita que bajen de línea */
  margin: 40px auto;
  max-width: 1200px;
}

/* Cada cuadro */
.cuadro-parrafo {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px 20px;
  width: 33.33%; /* ✅ asegura tres por fila */
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.cuadro-parrafo:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.15);
}

/* Título (primera palabra) */
.cuadro-parrafo h3 {
  font-size: 1.4em;
  color: #763C94;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 700;
}

/* Descripción */
.cuadro-parrafo p {
  color: #000;
  font-size: 1em;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

/* 📱 Responsivo para móviles */
@media (max-width: 768px) {
  .contenedor-parrafos {
    flex-direction: column;
  }

  .cuadro-parrafo {
    width: 100%; /* ocupan todo el ancho en móvil */
  }

  .cuadro-parrafo h3,
  .cuadro-parrafo p {
    text-align: center;
  }
}


/*******************Permisos Objetivos**********************/

/********************Permisos Funciones Principales*****************/



.seccion-permisos {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 40px;
  font-family: 'Arial', sans-serif;
  flex-wrap: wrap;
}

/* Imagen a la izquierda */
.imagen-izquierda {
  flex: 1;
  display: flex;
  justify-content: center;
}

.imagen-izquierda img {
  width: 500px;
  height: 500px;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Panel derecho */
.panel-derecho {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.linea {
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #ccc;
  z-index: 0;
}

.opcion {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.radio {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 3px solid #ccc;
  background-color: #fff;
  transition: all 0.3s;
  flex-shrink: 0;
}

.opcion.activa .radio {
  border-color: #763C94;
  background-color: #ffffff;
}

.texto h2 {
  margin: 0;
  font-size: 1.4em;
  transition: color 0.3s;
}

.texto ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 5px 0 0 0;
  color: #000;
  transition: opacity 0.3s, height 0.3s;
}

.texto li {
  margin-bottom: 5px;
  line-height: 1.5;
  list-style-type:disc;
}

.opcion:not(.activa) .texto ul {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.opcion.activa .texto ul {
  opacity: 1;
  height: auto;
}

.opcion:not(.activa) .texto h2 {
  color: #aaa;
}

/* 💡 --- ESTILOS RESPONSIVE --- 💡 */
@media (max-width: 900px) {

  /* La sección se apila verticalmente */
  .seccion-permisos {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 30px 20px;
  }

  /* Imagen centrada y más pequeña */
  .imagen-izquierda img {
    width: 250px;
    height: 250px;
  }

  /* Panel de opciones debajo de la imagen */
  .panel-derecho {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 500px;
    position: relative;
  }

  .linea {
    left: 12px;
    top: 0;
    bottom: 0;
    display: block;
  }

  .opcion {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }

  .texto h2 {
    font-size: 1.2em;
  }

  .texto ul {
    font-size: 0.95em;
  }
}






/********************Permisos Funciones Principales*****************/

/********************Seguridad Objetivos*****************/

/* Contenedor general */
.bloque-textos {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: nowrap;
  margin: 40px auto;
  max-width: 1000px;
}

/* Cada cuadro de texto */
.caja-texto {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 25px 20px;
  width: 48%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Efecto al pasar el mouse */
.caja-texto:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
}

/* Texto general */
.caja-texto p {
  color: #000;
  font-size: 1em;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

/* Primera oración (azul y más grande) */
.caja-texto p span {
  color: #763C94; /* Azul */
  font-weight: bold;
  font-size: 1.3em; /* 30% más grande que el resto */
}

/* 📱 Diseño responsivo */
@media (max-width: 768px) {
  .bloque-textos {
    flex-direction: column;
  }

  .caja-texto {
    width: 100%;
  }
}


/********************Seguridad Objetivos*****************/

/********************Cautivo Modulos*****************/


/* ======== ESTILO GENERAL ======== */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  background-color: #f5f5f8;
  color: #333;
}

/* ======== SECCIÓN DE MÓDULOS ======== */
.modulos-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  font-size: 2em;
  color: #2e237a;
  margin-bottom: 40px;
}

/* ======== GRID DE TARJETAS ======== */
.modulos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

/* ======== TARJETAS ======== */
.modulo-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.modulo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.modulo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #d4c7ff;
}

.modulo-card h3 {
  font-size: 1.1em;
  color: #2e237a;
  margin: 15px 0;
}

/* 🔹 OCULTAR LISTAS DENTRO DE LAS TARJETAS 🔹 */
.modulo-card .modulo-descripcion {
  display: none;
}

/* ======== POPUP ======== */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 30, 0.7);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(3px);
  padding: 20px;
 
}

.popup-contenido {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 25px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  animation: fadeIn 0.3s ease;
   /* 👇 evita que crezca más que la ventana */
  max-height: 90vh;
  overflow-y: auto;
}

/* Imagen del popup — tamaño moderado y uniforme */
.popup-contenido img {
  width: 100%;
  max-width: 340px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #d4c7ff;
  margin-bottom: 20px;
}

/* Títulos y texto del popup */
.popup-contenido h3 {
  color: #2e237a;
  margin-bottom: 10px;
}

.popup-contenido ul {
  text-align: left;
  margin: 0 auto;
  display: inline-block;
  font-size: 0.95em;
  line-height: 1.6em;
  list-style-position: inside;
  overflow-wrap: break-word;

  /* Por defecto una sola columna */
  column-count: 1;
  column-gap: 25px;
  /*max-height: 55vh;*/
  overflow-y: auto;
}
.popup-contenido ul.dos-columnas {
  column-count: 2;
}

.popup-contenido li {
  margin-bottom: 6px;
  list-style-type:disc;
}

/* Botón cerrar */
.cerrar {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease;
}

.cerrar:hover {
  color: #000;
}

/* ======== ANIMACIONES ======== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ======== RESPONSIVE ======== */
@media (max-width: 900px) {
  .modulos-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}
@media (max-width: 600px) {
  .modulos-grid {
    grid-template-columns: 1fr;
  }

  .popup-contenido {
    width: 95%;
    padding: 20px;
	max-height: 85vh;
  }
}


/********************Cautivo Modulos*****************/

.tarjetas5 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-gap: 0rem;
  margin-top: 30px;
}
.tarjetasBorde5 {
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
  position: relative;
  transition: background-color 0.8s linear 0.2s;
  border-bottom:1px solid black;
  border-right: none;
}
.tarjetasBorde5botton {
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
  position: relative;
  transition: background-color 0.8s linear 0.2s;
  border-bottom: none;
  border-right: none;
}
.tarjetasBorde5 p, .tarjetasBorde5botton p{
  margin-bottom: 10px;
}
.tarjetasBorde5 img, .tarjetasBorde5botton img{
  width: 50px;
  height: 50px;
}
.tarjetasTitulo5{
  font-size:medium; 
  color: black;
  padding-top: 10px;
}

/* Screen larger than 900px? 3 columns */
@media (min-width: 900px) {
  .tarjetas5 { grid-template-columns: repeat(5, 1fr); }
  .tarjetasBorde5{border-bottom: none;border-right:1px solid black;}
  .tarjetasBorde5botton{border-bottom: none;border-left: none;}
}

.tarjetas6 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-gap: 0rem;
  margin-top: 30px;
}
.tarjetasBorde6 {
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
  position: relative;
  transition: background-color 0.8s linear 0.2s;
  border-bottom: 1px solid black;
}
.tarjetasBorde6 p{
  margin-bottom: 10px;
}
.tarjetasBorde6 img{
  width: 150px;
  height: 150px;
}
.tarjetasTitulo6{
  font-size:large; 
  color: black;
  padding-top: 10px;
}
.tarjetasBorde6botton {
  border-bottom: none;
}
/* Screen larger than 600px? 2 column */
@media (min-width: 600px) {
  .tarjetas6 { grid-template-columns: repeat(2, 1fr); }
  .tarjetasBorde6{border-bottom: none;}
  .tarjetasBorde6left{border-bottom: none;border-left:1px solid black;}

}
/* Screen larger than 900px? 3 columns */
@media (min-width: 900px) {
  .tarjetas6 { grid-template-columns: repeat(3, 1fr); }
  .tarjetasBorde6right{border-bottom: none;border-right:1px solid black;}
  .tarjetasBorde6left{border-bottom: none;border-left:none}
}


/*Boton ver mas*/
.botonVerMas{
  background-color: #F1B5F6;
  border-radius: 10%;
  position:absolute;
  margin-bottom: 10px;
  bottom:0px;
  color:#222A35;
  font-weight: 500;
}
/*blog-card*/
.blog-card {
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
  box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.6%;
  background: #fff;
  line-height: 1.4;
  font-family: sans-serif;
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
}
.blog-card a {
  color: inherit;
}
.blog-card a:hover {
  color: #5ad67d;
}
.blog-card:hover .photo {
  transform: scale(1.3) rotate(3deg);
}
.blog-card .meta {
  position: relative;
  z-index: 0;
  height: 200px;
}
.blog-card .photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s;
}
.blog-card .details,
.blog-card .details ul {
  margin: auto;
  padding: 0;
  list-style: none;
}
.blog-card .details {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  margin: auto;
  transition: left 0.2s;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  width: 100%;
  font-size: 0.9rem;
}
.blog-card .details a {
  -webkit-text-decoration: dotted underline;
          text-decoration: dotted underline;
}
.blog-card .details ul li {
  display: inline-block;
}
.blog-card .details .author:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "";
}
.blog-card .details .date:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "";
}
.blog-card .details .tags ul:before {
  font-family: FontAwesome;
  content: "";
  margin-right: 10px;
}
.blog-card .details .tags li {
  margin-right: 2px;
}
.blog-card .details .tags li:first-child {
  margin-left: -4px;
}
.blog-card .description {
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1;
}
.blog-card .description h1,
.blog-card .description h2 {
  font-family: Poppins, sans-serif;
}
.blog-card .description h1 {
  line-height: 1;
  margin: 0;
  font-size: 1.7rem;
}
.blog-card .description h2 {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #a2a2a2;
  margin-top: 5px;
}
.blog-card .description .read-more {
  text-align: right;
}
.blog-card .description .read-more a {
  color: #5ad67d;
  display: inline-block;
  position: relative;
}
.blog-card .description .read-more a:after {
  content: "";
  font-family: FontAwesome;
  margin-left: -10px;
  opacity: 0;
  vertical-align: middle;
  transition: margin 0.3s, opacity 0.3s;
}
.blog-card .description .read-more a:hover:after {
  margin-left: 5px;
  opacity: 1;
}
.blog-card p {
  position: relative;
  margin: 1rem 0 0;
}
.blog-card p:first-of-type {
  margin-top: 1.25rem;
}
.blog-card p:first-of-type:before {
  content: "";
  position: absolute;
  height: 5px;
  background: #5ad67d;
  width: 35px;
  top: -0.75rem;
  border-radius: 3px;
}
/*Voltea la tarjeta*/
/* .blog-card:hover .details {
  left: 0%;
} */
@media (min-width: 640px) {
  .blog-card {
    flex-direction: row;
    max-width: 700px;
  }
  .blog-card .meta {
    flex-basis: 40%;
    height: auto;
  }
  .blog-card .description {
    flex-basis: 60%;
  }
  .blog-card .description:before {
    transform: skewX(-3deg);
    content: "";
    background: #fff;
    width: 30px;
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  .blog-card.alt {
    flex-direction: row-reverse;
  }
  .blog-card.alt .description:before {
    left: inherit;
    right: -10px;
    transform: skew(3deg);
  }
  .blog-card.alt .details {
    padding-left: 25px;
  }
}
.tarjetas2 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-gap: 1rem;
}
/* Screen larger than 600px? 2 column */
@media (min-width: 600px) {
  .tarjetas2 { grid-template-columns: repeat(1, 1fr); }
}
  
/* Screen larger than 900px? 3 columns */
@media (min-width: 900px) {
  .tarjetas2 { grid-template-columns: repeat(2, 1fr); }
}
/*Slider Infinito*/
.slider {
  /* background: white;*/
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
  width: calc(150px * 6)
}


.slider .slide-track {
  display: flex;
}
.slider .slide {
  height: 100px;
  width: 150px;
}



/*Slider 3D*/
/* #slideshow {
  margin: 0 auto;
  padding-top: 50px;
  height: 600px;
  width: 100%;
  background-color: #6adecd;
  box-sizing: border-box;
}
.entire-content {
  margin: auto;
  width: 190px;
  perspective: 1000px;
  position: relative;
  padding-top: 80px;
}
.content-carrousel {
  width: 100%;
  position: absolute;
  float: right;
  animation: rotar 20s infinite linear;
  transform-style: preserve-3d;
}
.content-carrousel:hover {
  animation-play-state: paused;
  cursor: pointer;
}
.content-carrousel figure {
  width: 100%;
  height: 220px;
  border: 1px solid #3b444b;
  overflow: hidden;
  position: absolute;
}
.content-carrousel figure:nth-child(1) {
  transform: rotateY(0deg) translateZ(300px); 
} 
.content-carrousel figure:nth-child(2) {
  transform: rotateY(60deg) translateZ(300px); 
} 
.content-carrousel figure:nth-child(3) {
  transform: rotateY(120deg) translateZ(300px); 
} 
.content-carrousel figure:nth-child(4) {
  transform: rotateY(180deg) translateZ(300px); 
} 
.content-carrousel figure:nth-child(5) {
  transform: rotateY(240deg) translateZ(300px); 
} 
.content-carrousel figure:nth-child(6) {
  transform: rotateY(300deg) translateZ(300px); 
} 

.shadow {
    position: absolute;
    box-shadow: 0px 0px 20px 0px #000;
    border-radius: 1px;
}
.content-carrousel img {
  image-rendering: auto;
  transition: all 300ms;
}
.content-carrousel img:hover {
  transform: scale(1.2);
  transition: all 300ms;
}
@keyframes rotar {
  from {
    transform: rotateY(0deg);
  } to {
    transform: rotateY(360deg);
  }
} */