@font-face {
    font-family: 'Isidora-Site';
    font-weight: bold !important;
    src: local('../fuentes/IsidoraRegular.otf'), url('../fuentes/IsidoraRegular.otf') format('opentype');
}

@font-face {
    font-family: 'IsidoraLight';
    font-weight: bold !important;
    font-style: normal;
    src: local('../fuentes/Isidora-Light.woff'), url('../fuentes/Isidora-Light.woff') format('woff');
}
@font-face {
	font-family: 'IsidoraBold';
    font-weight: bold !important;
    font-style: normal;
    font-weight: normal;
    src: local('../fuentes/Isidora-Bold.woff'), url('../fuentes/Isidora-Bold.woff') format('woff'); 
}

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/* Scrollbar personalizado para navegadores basados en WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 6px !important; /* Ancho del scrollbar */
}
::-webkit-scrollbar-track {
  background: transparent; /* Oculta el riel */
  border-radius: 20px;
}

::-webkit-scrollbar-thumb {
  background-color: #c4c4c4; /* Color del pulgar */
  border-radius: 20px; /* Bordes redondeados en los extremos */
  border: none; /* Quita cualquier borde adicional */
}

::-webkit-scrollbar-thumb:hover {
  background: #888; /* Color al pasar el cursor por encima */
}

/* Scrollbar para Firefox */
* {
  scrollbar-width: thin; /* Scrollbar delgado */
  scrollbar-color: #c4c4c4 transparent; /* Color del pulgar y riel transparente */
}

html, body {
	font-family: IsidoraBold,Isidora-Site !important;
	color: #7a8389;
}

.progreso-flotante {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 3000;
    width: 130px;
    text-align: center;

    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 12px 10px;

    box-shadow: 0px 4px 20px rgba(0,0,0,0.12);
    animation: fadeInProgreso 0.6s ease;
}

.circular-chart {
    width: 100px;
    height: 100px;
    position: relative;
}

.circular-chart-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* para que empiece desde arriba */
}

.circle-bg {
    fill: none;
    stroke: #e6e6e6;   /* gris claro */
    stroke-width: 3.5;
}

.circle-progress {
    fill: none;
    stroke: #28a745;   /* verde moderno */
    stroke-width: 3.5;
    stroke-linecap: round;
    transition: stroke-dasharray 1.2s ease;
}

.circular-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

.circle-steps {
    font-size: 0.9em;
    margin-top: 6px;
    font-weight: 600;
    color: #333;
}

.circle-status {
    font-size: 0.8em;
    max-width: 120px;
    margin: 2px auto 0 auto;
    color: #555;
}

@keyframes fadeInProgreso {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Mantiene alineadas todas las cajas en cada fila */
.form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;       /* centra verticalmente label + input */
}

/* Alinea el label y el botón info sin romper el flujo */
.form-group > label {
  display: flex;
  align-items: center;           /* centra verticalmente texto y botón */
  justify-content: center;       /* centra horizontalmente el label */
  text-align: center;            /* centra el texto */
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  min-height: 40px;              /* asegura que todos los labels tengan el mismo alto */
  margin-bottom: 4px;
}

/* Ajusta el tamaño de los inputs */
.form-group .form-control {
  height: 38px;
  text-align: center;            /* centra el texto dentro de la caja */
}

/* Botón info proporcional y alineado */
.btn-info-inline {
  color: #17a2b8;
  font-size: 0.75rem;
  border: 1px solid #17a2b8;
  border-radius: 6px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn-info-inline:hover {
  background-color: #17a2b8;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.border-top,
.border-bottom {
	border-radius: 5px !important;
	margin-top: 10px;
	margin-bottom: 10px;
  	border-color: #272822 !important; /* Gris medio, visible pero suave */
}
/* Barra superior decorativa o separador */
.barra-info-clara {
    background-color: #0d6efd; /* azul Bootstrap original */
    height: 5px;
    border-radius: 4px;
}

/* Alerta personalizada */
.alerta-info-clara {
    background-color: #e7f1ff;
    border: 1px solid #b6daff;
    color: #0d6efd;
    border-radius: 4px;
    padding: 10px;
}

tbody td, tbody th, .bordoGris2px{
	border: 2px solid #c1c1c1 !important;
}
.table thead tr th{
	background: #e3e3e3 !important;
	color: #343a40 !important;
	position: sticky;
    top: 0;
    z-index: 10;
}
.table{
	color: #343a40 !important;
}
.bg-ececec{
	background: #ececec;
}
.text-92a0b7{
	color: #92a0b7;
}
.text-888{
	font-family: IsidoraLight,Isidora-Site !important;
	color: #888;
}
.pegarAlFondo{
	bottom: 5px;
}
.bg-verde{
	background: #6cb843;
}
.bg-verdeoscuro{
	background: #1ba38e;
}
.bg-naranja{
	background: #f96200;
}
.text-verde{
	color: #6cb843;
}
.text-verdeoscuro{
	color: #1ba38e;
}
.text-naranja{
	color: #f96200;
}
.row {
	padding: 0;
	margin: 0;
}
.ancho14{
	width: 14%;
	font-size: 0.8em;
}
.table{
	color: black !important;
}
.altura110{
	height: 110px;
}
.card{
	box-shadow: 2px 2px 4px #9e9e9e;
}
.sombraSimple{
	box-shadow: 2px 2px 4px #9e9e9e;
}
.bordeMenu{
	border-bottom: 5px solid #dee2e6;
}
.bordeTop{
	border-top: 5px solid #dee2e6;
}
.bordeMenu2{
	border-right: 5px solid #dee2e6;
}
.custom-file-input ~ .custom-file-label::after {
    content: "Cargar";
}
.centrado{
	text-align: center !important; 
}
.pm{
	display: none;
}
.ocultar {
    display: none;
}
.mostrar {
    display: block;
}
input[type=number]{ 
  -webkit-appearance: textfield !important;
  -moz-appearance: textfield !important;
  -o-appearance: textfield !important;
  appearance: textfield !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none !important;
	margin: 0;
}

input[type=number], input[type=email], input[type=password], input[type=text], .tipoSelector, .selectGenerico, .selectorAux{
	height: 45px !important;
	background: #f2f4f8 !important;
	border: none !important;
	width: 97% !important;
	margin: 0 auto !important;
}
.card-header{
	background: #f7f7f7 !important;
}
fieldset:disabled input, fieldset:disabled textarea, input[readonly], input[disabled], .tipoSelector:disabled, .selectGenerico:disabled, .selectorAux:disabled{
	background: #DCDCDC !important;
	cursor: not-allowed;
}
.tipoSelector option, .selectGenerico option, .selectorAux{
	font-size: 1.1em;
}
.date input[type=text]{
	width: 88% !important;
	margin: 0 auto !important;
}

a, a:hover, button{
	text-decoration: none !important;
	border: none;
}
.menuPrincipal, button{
	margin-top: 12px;
	margin-bottom: 8px;
}
.navPrincipal li a, .menuPrincipal svg{
	color: #788288;
}
.imgCreditosPrincipal{
	width: 70%;
	min-width: 70%;
}
.imgCreditos{
	width: 70%;
	min-width: 70%;
}
.imgfooder{
	width: 45%;
	min-width: 45%;
	margin: 2%;
	padding: 0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0.5) sepia(1) saturate(5) hue-rotate(180deg);
}
.imgfooder2{
	width: 18%;
	min-width: 20%;
	margin: 3%;
	padding: 0;
}
.imgfooderinizio{
	width: 18%;
	min-width: 21%;
	margin: 10px;
	padding: 0;
}
.margin0{
	margin: 0;
	padding-right: 10px;
	padding-left: 20px;
}
.filaImagenes button, .filaImagenes div, a{
	margin: 0;
	padding: 0;
	font-size: 1em;
	color: white;
}
.texto-79858b{
	color: #79858b;
}
.textoFooder2 a{
	color: #788288 !important;
}
.filaImagenes button:hover, .filaImagenes div:hover, .filaImagenes a:hover{
	color: white;
	font-size: 1.2em;
	cursor: pointer;
}
.manita{
	cursor: pointer;
}
.bannerSCredito, .bannerComercial{
	background: #ff6800;
	color: white;
	font-weight: bold;
	text-align: center;
}
.bannerSCredito a{
	border-radius: 20px;
	background: #d90a8f;
	text-decoration: none;
	color: white;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 10px;
}
.bannerComercial{
	background: #ac1db0 !important;
}
.bannerContacto{
	background: #d8008b;
	color: white;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}
.redesSocialesIconos{
	padding-top: 25px;
	color: #727d83;
	font-weight: bold;
	padding-left: 5px;
}
.textoFooder1{
	color: #727d83;
	padding-top: 15px;
	font-size: .70em;
}
.textoFooder2{
	padding-top: 5px;
	font-size: .70em;
	color: #727d83;
	padding-bottom: 25px;
}
.fondoAzul{
	background: #00ade0;
	color: white !important;
	border-radius: 5px;
	text-decoration: none;
}
.fondoAmarillo{
	background: #f1c55f;
	color: white !important;
	border-radius: 5px;
	text-decoration: none;
}
.paddingAl40{
	padding-top: 8%;
	padding-bottom: 8%;
}
.paddingtop35px{
	padding-top: 35px;
}
.paddingtop15px{
	padding-top: 15px;
}
.paddingBottom35px{
	padding-bottom: 35px;
}
.avisoPrincipal{
	text-align: center;
	border-radius: 5px;
	padding-top: 50px;
	padding-bottom: 35px;
}
.avisoPrincipal{
	color: white;
}
.colorPasosCredito{
	color: #d8008b;
}
.pasosCredito{
	color: #d8008b;
	background: #e8effa;
	padding-top: 35px;
	padding-bottom : 35px;
}

.menufixed{
	position: fixed;
	z-index: 1000;
	top: 0;
	width: 100%;
	opacity: 0.99;
}
.fondoProgramas{
	background: linear-gradient(to bottom, #b1b7bb, #FFFFFF,#FFFFFF) !important;
}
.separador{
	background: #d8008b;
}
.fondoimgPrograma{
	background: white;
	border-radius: 1.5em;
	width: 70%;
	margin: 0 auto;
}
.colorAcademias{
	border-right: 1px solid #FFFFFF;
	background: #00a07b;
	color: white;
	font-family: IsidoraLight,Isidora-Site !important;
}
.colorCreativa{
	border-right: 1px solid #FFFFFF;
	background: #00ade0;
	color: white;
	font-family: IsidoraLight,Isidora-Site !important;
}
.colorNeurona{
	border-right: 1px solid #FFFFFF;
	background: #7f128c;
	color: white;
	font-family: IsidoraLight,Isidora-Site !important;
}
.colorTalento{
	background: #002094;
	color: white;
	font-family: IsidoraLight,Isidora-Site !important;
}
.colorReto{
	background: #0025a1;
	color: white;
	font-family: IsidoraLight,Isidora-Site !important;
}
.colorHecho{
	background: #ff7400;
	color: white;
	font-family: IsidoraLight,Isidora-Site !important;
}
.colorLin{
	background: #009b75;
	color: white;
	font-family: IsidoraLight,Isidora-Site !important;
}
.colorSnapsis{
	background: #921295;
	color: white;
	font-family: IsidoraLight,Isidora-Site !important;
}
.colorCuenta{
	background: #40972e;
	color: white;
	font-family: IsidoraLight,Isidora-Site !important;
}
.colorSerMujer{
	background: #0094d3;
	color: white;
	font-family: IsidoraLight,Isidora-Site !important;
}
.colorImpulZapp{
	background: #00ad5e;
	color: white;
	font-family: IsidoraLight,Isidora-Site !important;
}
.imgCentradaVertical{
	margin: 0;
  	position: absolute;
  	top: 50%;
  	-ms-transform: translateY(-50%);
  	transform: translateY(-50%);
}

.section-margin{
	margin-top: 95px;
}
.btnRojo{
	background: #eb2038 !important;
}
#caroselFooder{
	display: none;
}

/* Colores Background */
.credito1{
	background: #ff007a;
}
.credito2{
	background: #ff8300;
}
.credito3{
	background: #ff007a;
}
.credito4{
	background: #ff007a;
}
.credito5{
	background: #7f11ff;
}
.credito6{
	background: #ff007a;
}
.credito7{
	background: #ffd200;
}
.credito8{
	background: #ff8300;
}
.credito9{
	background: #ff007a;
}
.credito10{
	background: #00d7c4;
}
.credito11{
	background: #ffd200;
}
.credito12{
	background: #ff8300;
}
.credito13{
	background: #F0F0F0;
	color: #d8008b !important;
}
.credito14{
	background: #F0F0F0;
	color: #d8008b !important;
}
.credito15{
	background: #771187;
}
.credito16{
	background: #ffd200;
}
.credito17{
	background: #ffd200;
}
.credito18{
	background: #00d7c4;
}
.credito19{
	background: #ff8300;
}
.credito20{
	background: #ff8300;
}
.credito21{
	background: #ff8300;
}
.credito22{
	background: #7f11ff;
}
.credito23{
	background: #733dbd;
}
.credito24{
	background: #00d7c4;
}
.credito25{
	background: #ffd200;
}
.credito26{
	background: #ff007a;
}
.credito27{
	background: #753dbe;
}
.credito28{
	background: #ffd200;
}
.credito29{
	background: #7f11ff;
}
.credito30{
	background: #00d7c4;
}
.credito31{
	background: #00d7c4;
}
.credito32{
	background: #e71e7a;
}
.credito33{
	background: #00d7c4;
}
.credito34{
	background: #7f11ff;
}
.backgroundContenido{
	background-color: #e8effa;
}

.colorDicoe{
	background: #ff6d01;
}
.colorEmprendimiento{
	background: #46bdc6;
}
.backBanner{
	background: #af1eb2;
}
.backBanner1{
	background: #00d7c4;
}
.colorRosa{
	color: #d8008b !important;
}
.avisoPrivacidad{
	color: #788288;
}
/* Fin de background color*/
@media only screen and (max-width: 1200px) {
	#imgsFooder{
		display: none;
	}
	#caroselFooder{
  		display: block;
  	}
  	.navPrincipal li{
		width: 100%;
	}
}
@media only screen and (max-width: 992px) {
  	.navPrincipal li{
		width: 100%;
	}
}
@media only screen and (max-width: 1200px) {
  	.navPrincipal li{
		width: 100%;
	}
}
