/* variables.css */

/* Colores */
:root {
/* colors */
  --primary-color: #0e17af; 
  --secondary-color: #00edff; 
  --tertiary-color: #fff; 
  --fourth-color: #e84e1b;  
  --fifth-color: #343a40;  
/* containers */
  --container-color-primary: #fff;
  --container-color-secondary: #01adce;
  --container-color-tertiary: #eceff1;

/* Tipografías */
  --primary-font: 'Roboto', sans-serif;
  --secondary-font: 'Cabin', sans-serif;
  --tertiary-font: 'SUSE', sans-serif;
  --fourth-font: 'Poppins', sans-serif;
/* Tamaños de letra */
  --font-size-small: 0.875rem; /* 14px */
  --font-size-medium: 1rem; /* 16px */
  --font-size-large: 1.25rem; /* 20px */
  --font-size-xlarge: 1.5rem; /* 24px */
  --font-size-icons: 4rem; /* 64px */
}


/* animaciones */

::-webkit-scrollbar{
  width: 10px;
}
::-webkit-scrollbar-track{
  background-color: white;
}
::-webkit-scrollbar-thumb{
  background-color: rgb(66, 84, 240);
  border-radius: 12px;
  /* border: 3px solid #0056b3; */

}
body {
  overflow-x:hidden;
}




/* logo css header */

.header{
padding-left: 10px;
padding-right: 10px;
}


/* Responsividad */

/* heroppp  */

/* carousel */
.hero {
  display: flex;
  justify-content: center;
  flex-direction: row;
  height: 90vh;
  margin-top: 120px; 
/*  */
}
/* Estilos para computadora */
.title-hero {
  font-size: 64px;
  font-weight: bold;
  color: #3498db; /* Azul claro */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeIn 2s;
}

.subtitle-hero {
  font-size: 36px;
  font-weight: normal;
  color: #2870d3; /* Azul verde */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeIn 2s;
}

.footer-hero {
  margin-top: 40px;
}

.tagline-hero {
  font-size: 24px;
  font-weight: normal;
  color: #0212ef; /* Azul oscuro */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: move 5s infinite;
}

@keyframes move {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* Estilos para tabletas y celulares */
@media (max-width: 768px) {
  .title-hero {
    font-size: 48px;
  }

  .subtitle-hero {
    font-size: 24px;
  }

  .footer-hero {
    margin-top: 20px;
  }

  .tagline-hero {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .title-hero {
    font-size: 36px;
  }

  .subtitle-hero {
    font-size: 18px;
  }

  .footer-hero {
    margin-top: 10px;
  }

  .tagline-hero {
    font-size: 14px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.text-container-hero {
  flex: 1;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  text-align: center;
  background-image: radial-gradient(circle, #91c8f2 1%, #ffffff 70%, #ffffff 80%);
  background-size: 100% 100%;
  background-position: center;
}

.carousel-container {
  flex: 1;
  display: flex;
  flex-direction: column; /* Cambiar a columna para el contenedor del carrusel */
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}



.carousel-container .carousel-item {
  height: 90vh;
  background-size: cover;
  background-position: center;
}

.carousel-container .carousel-item:nth-child(1) {
  background-image: linear-gradient(to bottom, #3498db, #1a1a1a);
}

.carousel-container .carousel-item:nth-child(2) {
  background-image: linear-gradient(to bottom, #77819d, #1a1a1a);
}

.carousel-container .carousel-item:nth-child(3) {
  background-image: linear-gradient(to bottom, #2648b9, #1a1a1a);
}
.carousel-container .carousel-item:nth-child(5) {
  background-image: linear-gradient(to bottom, #161554, #1a1a1a);
}
/* Responsividad */
@media (max-width: 768px) {
  .hero {
      flex-direction: column; /* Cambiar a columna en pantallas pequeñas */
      height: auto; /* Ajustar la altura */
  }

  .text-container {
      height: auto; /* Ajustar la altura del contenedor de texto */
  }

  .carousel-container {
      width: 100%; /* Asegurarse de que el carrusel ocupe todo el ancho */
  }
}
/* plan de estudios */

.plan-estudios{
  margin-top: 50px;
  margin-bottom: 50px;
}

.unidad-container{
  /* background-color: red; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

#download{
  background-color: green;
  border-radius: 10px;
  color: white;
  padding: 10px;
  text-decoration: none;
}




/* code plan de estudios */
#name-reticula{
  color: #03195c;
  margin-bottom: 30px;
}
#name-reticula p{
  /* color: #; */
  font-size: 30px;
  font-weight: 600;
}



.container-plan-estudios{
    /* background-color: #e84e1b; */
    margin-top: 100px;
}
.container-plan-estudios a{
  text-decoration: none;
  /* font-size: 20px; */
  text-align: center;
  color: black;
}
.container-plan-estudios button{
  background-color: white;
}
.container-reticula{
    height: 120px;
    width: 120px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px 2px gray;
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Agrega una transición suave */
}

.container-reticula:hover {
    transform: translateY(-10px); /* Mueve el elemento hacia arriba en el hover */
    box-shadow: 0 4px 15px 4px rgb(209, 209, 209); /* Ajusta la sombra en el hover */
}
 .container-reticula img{
  width: 60px;
  height: 60px;
  pointer-events: n one;
  
}

.container-reticula p{
  font-size: 9px;
  margin-top: 4px;
  margin-bottom: 0px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  z-index: 1;
  line-height: 10px;
}

.tittle-plan-estudio{
  text-align: center;
  font-size: 15px;
  height: 80px;
  font-family: var(--tertiary-font);
  font-weight: 200;
}


/*  boton descarga */




/*  */


.modal-content{
  background-color: #d9deca;
  border-radius: 20px;
  font-family: var(--fourth-font);
  text-align: justify;
}
.modal-header h1{
  color: #3f3b39;
  font-family: var(--tertiary-font);
  font-weight: 700;
}

/* end code plan de estudios */

/* mision, vision objetivo */
.mission-vision-objectives{
  background: linear-gradient(to top, #a1cac4, white);
  /* margin-bottom: 100px; */
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow-x: hidden;
}
.section-title{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  /* background-color: red; */
}
.section-title h2{
background-color: var(--container-color-secondary);
border-radius: 10px;
color: var(--tertiary-color);
font-family: var(--primary-font);
padding: 10px;
}
.section-title p{
font-family: var(--secondary-fontl);
font-size: 20px;
font-weight: 600;
/* background-color: red; */
}
.item-MVO{
  /* height: 400px; */
  height: 400px;
  /* width: 400px; */
  padding: 30px;
  border-radius: 20px;
  z-index: 1;
  background-color: var(--container-color-primary);
  transition: all 0.5s  ease-in-out;


}

.mision{
  border-bottom: 10px solid var(--secondary-color);
}
.vision{
  border-bottom: 10px solid var(--secondary-color);
}
.objetivo{
  border-bottom: 10px solid var(--secondary-color);
}
.item-MVO span{
  font-size: var(--font-size-icons);
  color: var(--secondary-color);
  transition: all 0.5s  ease-in-out;

}
.item-MVO h3{
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-weight: 700;
}
.item-MVO p{
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--fifth-color);
}
.item-MVO:hover{
  transform: scale(1);
  border-bottom: 9px solid  var(--primary-color);
}
.item-MVO:hover span{
  color: var(--primary-color);
}


/* 
/* <!-- ========== Start Section perfil ingreso ========== --> */
      

.perfil-ingreso{
  background: linear-gradient(to bottom, #a1cac4, white);
  padding: 20px;
  margin-bottom: 100px;
}

.contenedor-ingreso{
  /* background-color: blue; */
  display: flex;
  flex-direction: column;
}

.card-ingreso {
  margin-top: 10px;
  height: 200px;
  display: flex;
  justify-content:space-around  ;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
}

.book{
  background-color: #f0ae57;
}
.gear{
  background-color: #de4b17;
}
.light{
  background-color: #525e84;
}
.person{
  background-color: #9bbdd8;
}
.card-ingreso i{
  font-size: 140px;
  margin-left: -50px;
  color: white;
  opacity: 0.6;
}
.card-body-ingreso {
  justify-content: end;
  display: flex;
  align-items: end;
  flex-direction: column;
  text-align: end;
  width: 250px;
  /* background-color: red; */
}
.card-body-ingreso h3{
  font-size: 25px;
  font-weight: 800;
  color: white;
  font-family: var(--tertiary-font);
}
.card-body-ingreso p{
  text-align:end;
  font-size: 15px;
  color: white;
  font-family: var(--fourth-font);
  font-weight: 300;
}

.footer-ingreso{
  margin-top: 30px;
  font-weight: 400;
  font-family: var(--secondary-font)q;
}
/* <!-- ========== End Section ========== --> */ 
    





/***** Section *****/ 

.card-egreso
{
    max-width: 300px;
    height: 200px;
    margin: 30px 10px;
    padding: 20px 15px;
    box-shadow: 10px 5px 20px rgba(0,0,0,0.5);
    transition: 0.3s ease-in-out;
    border-radius: 10px;
}
.card-egreso:hover
{
    height:400px;
}
.card-egreso .imgContainer
{
    position: relative;
    width:250px;
    height:200px;
    /* top:-50px; */
    left:10px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.2); */
}
.card-egreso .imgContainer img
{
    max-width: 50%;
}
.card-egreso .content
{
    position: relative;
    margin-top: -140px;
    padding: 10px 15px;
    text-align: center;
    color:#111;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease-in-out;
    font-size: 18px;
    font-weight: 600;
}
.card-egreso:hover .content
{
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    transition-delay: 0.3s;
}

@media (max-width: 330px){
    .card-egreso .imgContainer{
        left: -2px;
    }
}

/***** End Section *****/


/***** Section *****/ 
.container-competencias{
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-big-shadow {
  max-width: 320px;
  position: relative;
  margin: 10px;
}

.coloured-cards .card {
  margin-top: 30px;
}

.card[data-radius="none"] {
  border-radius: 0px;
}
.card {
  border-radius: 8px;
  box-shadow: 0 2px 2px rgba(204, 197, 185, 0.5);
  background-color: #FFFFFF;
  color: #252422;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}


.card[data-background="image"] .title, .card[data-background="image"] .stats, .card[data-background="image"] .category, .card[data-background="image"] .description, .card[data-background="image"] .content, .card[data-background="image"] .card-footer, .card[data-background="image"] small, .card[data-background="image"] .content a, .card[data-background="color"] .title, .card[data-background="color"] .stats, .card[data-background="color"] .category, .card[data-background="color"] .description, .card[data-background="color"] .content, .card[data-background="color"] .card-footer, .card[data-background="color"] small, .card[data-background="color"] .content a {
  color: #FFFFFF;
}
.card.card-just-text .content {
  padding: 50px 65px;
  text-align: center;
}
.card .content {
  padding: 20px 20px 10px 20px;
}
.card[data-color="blue"] .category {
  color: #7a9e9f;
}

.card .category, .card .label {
  font-size: 14px;
  margin-bottom: 0px;
}
.card-big-shadow:before {
  background-image: url("http://static.tumblr.com/i21wc39/coTmrkw40/shadow.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: -12%;
  content: "";
  display: block;
  left: -12%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
h4, .h4 {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2em;
}
h6, .h6 {
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
}
.card .description {
  font-size: 16px;
  color: #66615b;
}
.content-card{
  margin-top:30px;    
}


/*======== COLORS ===========*/
.card[data-color="blue"] {
  background: #b8d8d8;
}
.card[data-color="blue"] .description {
  color: #506568;
}

.card[data-color="green"] {
  background: #d5e5a3;
}
.card[data-color="green"] .description {
  color: #60773d;
}
.card[data-color="green"] .category {
  color: #92ac56;
}

.card[data-color="yellow"] {
  background: #ffe28c;
}
.card[data-color="yellow"] .description {
  color: #b25825;
}
.card[data-color="yellow"] .category {
  color: #d88715;
}

.card[data-color="brown"] {
  background: #d6c1ab;
}
.card[data-color="brown"] .description {
  color: #75442e;
}
.card[data-color="brown"] .category {
  color: #a47e65;
}

.card[data-color="purple"] {
  background: #baa9ba;
}
.card[data-color="purple"] .description {
  color: #3a283d;
}
.card[data-color="purple"] .category {
  color: #5a283d;
}

.card[data-color="orange"] {
  background: #ff8f5e;
}
.card[data-color="orange"] .description {
  color: #772510;
}
.card[data-color="orange"] .category {
  color: #e95e37;
}


/***** End Section *****/




/***** Section *****/  

.areas{
  margin-top: 100px;
  /* margin-bottom: 100px; */
  background: linear-gradient(to bottom, white, #eceff1);
  padding-bottom: 100px;
  padding-top: 100px;


}


/* Estilos para las pestañas */
.nav-tabs {
  /* border-bottom: 2px solid #007bff; */
  display: flex;
  justify-content: center;
}

.nav-link {
  color: #01adce;
  font-weight: bold;
  border: none;
  border-radius: 0;
  padding: 10px 20px;
}

.nav-link.active {
  background-color: #007bff;
  color: white;
}

.nav-link:hover {
  background-color: #0056b3;
  color: white;
}

/* Estilos para los bloques personalizados */
.tab-pane{
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.custom-block {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
  margin: 10px;
  padding: 20px;
}

.custom-block:hover {
  transform: scale(1.05);
}

.custom-block-image {
  border-radius: 0;
  width: 100%;
  height: 200px; /* Ajusta la altura según sea necesario */
  object-fit: cover;
}

/* Estilos para el contenido dentro de los bloques */
.custom-block h5 {
  font-size: 1.25rem;
  color: #333;
}

.custom-block p {
  font-size: 0.9rem;
  color: #666;
}



/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
  .custom-block-image {
      height: 150px; /* Ajusta la altura para pantallas más pequeñas */
  }
}
/***** End Section *****/









/* footer */

/* footer */
.footer{
  /* margin-top: 50px; */
  padding-top: 100px;
  padding-bottom: 20px;
  background-color: var(--container-color-tertiary);
  
}

.title-card h1{
  font-size: 30px;
  color: #37517e;
  font-weight: 700;
  margin-bottom: 10px;
}
.space{
  margin-top: 20px;
}
.info-card h5{
  color: #37517e;
  font-weight: 600;
}
.info-card strong{
  font-size: 18px;
  color: #37517e;
}
.info-card p{
  font-size: 15px;
  font-size: 16px;
}

.card-header {
  background: linear-gradient(to right, #1e90ff, #00d2ff);
  color: white;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn-custom {
  background: none;
  border: 2px solid #1e90ff;
  color: #1e90ff;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: bold;
}
.btn-custom:hover {
  background: #1e90ff;
  color: white;
}
.stronge{
  font-size: 30px;
  color: #37517e;
  font-weight: 800;
  margin-bottom: 10px;
  font-family: var(--tertiary-font);
}
.img-logo{
  width: 100%;
  text-align: center;
}
.img-logo img{
  max-width: 200px;
}

.img-jefe{
  display: flex;
  justify-content: center;
}
.img-jefe img{
  display: flex;
  max-width: 200px;
  justify-content: center;
}

#footer-links-useful{ 
  margin-bottom: 10px;
}
#footer-links-useful a{ 
  color: black;
  text-decoration: none;
  font-weight: 300;
}
#footer-links-useful i{ 
  color: rgb(55, 142, 255);
}

.footer-copyright{
  background: linear-gradient(to top, #323741, var(--container-color-tertiary) );
  color: white;
}