@charset "utf-8";
/* CSS Document */
/* === MIS ESTILOS DIRESA === */
h5{
    
}
h6{
    
}
h7{
    
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --azul:      hsl(198, 91%, 44%);
    --azul-dark: hsl(198, 91%, 28%);
    --azul-med:  hsl(198, 80%, 35%);
    --azul-clr:  hsl(198, 91%, 60%);
    --naranja:   hsl(18, 88%, 50%);
    --naranja-lt:hsl(18, 90%, 70%);
    --crema:     hsl(198, 20%, 96%);
    --gris-clr:  hsl(198, 15%, 91%);
    --gris:      hsl(198, 10%, 55%);
    --texto:     hsl(198, 15%, 14%);
    --blanco:    #ffffff;
    --sombra:    0 4px 28px hsla(198,91%,44%,.13);
  }
 
  html { scroll-behavior: smooth; }
 
 
  /* ── HERO ─────────────────────────────────────── */
  .hero {
    background: var(--azul-dark);
    position: relative;
    overflow: hidden;
    padding: 80px 40px 60px;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 95% 50%, hsla(198,91%,60%,.20) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 90%, hsla(18,88%,50%,.13) 0%, transparent 60%);
  }
  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
  }
  .hero-badge {
    display: inline-block;
    background: hsla(18,88%,50%,.22);
    border: 1px solid var(--naranja-lt);
    color: var(--naranja-lt);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--blanco);
    line-height: 1.18;
    margin-bottom: 8px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--naranja-lt);
  }
  .hero-sub {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: .02em;
    margin-top: 12px;
  }
  .hero-img {
    width: 240px;
    height: 190px;
    object-fit: cover;
    border-radius: 4px;
    border: 3px solid hsla(18,88%,50%,.5);
    box-shadow: 0 8px 40px rgba(0,0,0,.35);
    flex-shrink: 0;
  }
  @media(max-width:680px){
    .hero-inner { grid-template-columns: 1fr; }
    .hero-img { width: 100%; height: 200px; }
  }
 
  /* ── DECORATIVE LINE ────────────────────────── */
  .deco-bar {
    height: 5px;
    background: linear-gradient(90deg, var(--azul), var(--naranja), var(--azul));
  }
 
  /* ── LAYOUT ─────────────────────────────────── */
  .page { max-width: 1100px; margin: 0 auto; padding: 60px 28px; }
 
  /* ── SECTION TITLE ───────────────────────────── */
  .section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
  }
  .section-title .bar {
    width: 4px;
    height: 38px;
    background: linear-gradient(180deg, var(--azul), var(--naranja));
    border-radius: 2px;
    flex-shrink: 0;
  }
  .section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--azul-dark);
    letter-spacing: -.01em;
  }
 
  /* ── DESCRIPCION ─────────────────────────────── */
  .descripcion {
    background: var(--blanco);
    border-radius: 6px;
    padding: 44px 48px;
    box-shadow: var(--sombra);
    margin-bottom: 56px;
    border-top: 3px solid var(--azul);
  }
  .descripcion p {
    font-size: 1.02rem;
    font-weight: 300;
    color: #3a3730;
    margin-bottom: 18px;
  }
  .descripcion p:last-child { margin-bottom: 0; }
 
  /* ── OBJETIVO ────────────────────────────────── */
  .objetivo-box {
    background: linear-gradient(135deg, var(--azul-dark) 0%, var(--azul-med) 100%);
    border-radius: 6px;
    padding: 40px 48px;
    margin-bottom: 56px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sombra);
  }
  .objetivo-box::after {
    content: 'OBJETIVO';
    position: absolute;
    right: -20px; bottom: -30px;
    font-family: 'Playfair Display', serif;
    font-size: 9rem;
    font-weight: 900;
    color: rgba(255,255,255,.05);
    line-height: 1;
    pointer-events: none;
  }
  .objetivo-box .section-title .bar { background: linear-gradient(180deg,var(--naranja-lt),var(--naranja)); }
  .objetivo-box .section-title h2 { color: var(--naranja-lt); }
  .objetivo-box p {
    color: rgba(255,255,255,.88);
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.8;
    position: relative; z-index: 1;
  }
 
  /* ── FUNCIONES ───────────────────────────────── */
  .funciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 56px;
  }
  .funcion-card {
    background: var(--blanco);
    border-radius: 6px;
    padding: 28px 28px 28px 24px;
    box-shadow: var(--sombra);
    border-left: 3px solid var(--azul);
    transition: transform .22s, box-shadow .22s, border-color .22s;
  }
  .funcion-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px hsla(198,91%,44%,.20);
    border-color: var(--naranja);
  }
  .funcion-card .icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--azul), var(--azul-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }
  .funcion-card .icon svg { width: 18px; height: 18px; fill: white; }
  .funcion-card strong {
    display: block;
    color: var(--azul-dark);
    font-weight: 600;
    font-size: .97rem;
    margin-bottom: 6px;
  }
  .funcion-card p { font-size: .9rem; color: #4a5568; line-height: 1.6; }
 
  /* ── RESOLUCIONES ────────────────────────────── */
  .resoluciones-section { margin-bottom: 56px; }
  .year-block { margin-bottom: 36px; }
  .year-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  .year-label .yr {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--azul);
    line-height: 1;
  }
  .year-label .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--azul-clr), transparent);
  }
  .resolucion-item {
    background: var(--blanco);
    border-radius: 5px;
    padding: 16px 22px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 10px hsla(198,91%,44%,.08);
    border-left: 3px solid transparent;
    transition: border-color .2s, transform .2s;
  }
  .resolucion-item:hover {
    border-color: var(--azul);
    transform: translateX(4px);
  }
  .res-dot {
    width: 8px; height: 8px; min-width: 8px;
    background: var(--naranja);
    border-radius: 50%;
    margin-top: 7px;
  }
  .resolucion-item p { font-size: .92rem; color: #3a3f4a; line-height: 1.55; }
  .resolucion-item a {
    color: var(--azul-med);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid hsla(198,80%,35%,.3);
    transition: color .18s, border-color .18s;
  }
  .resolucion-item a:hover { color: var(--naranja); border-color: var(--naranja); }
 
  /* ── FOOTER ──────────────────────────────────── */
  footer {
    background: hsl(198, 15%, 14%);
    padding: 32px 28px;
    text-align: center;
  }
  footer p {
    color: rgba(255,255,255,.4);
    font-size: .82rem;
    letter-spacing: .04em;
  }
  footer strong { color: rgba(255,255,255,.7); }
 
  /* ── RESPONSIVE ──────────────────────────────── */
  @media(max-width:760px){
    .descripcion, .objetivo-box { padding: 28px 24px; }
    .funciones-grid { grid-template-columns: 1fr; }
  }
/* === FIN MIS ESTILOS === */
.h1-seccion{
 font-size:1.3rem; 
 line-height:100%;
}
.h2-slogan{
 font-size:0.95rem;
 line-height:100%;
}
.servicios-item{
    list-style:none;
}
.servicios-item li{
 border-radius:10px;
 padding:20px 30px;
 background:#ffffff;
 margin-bottom:10px;
 font-size:0.95rem;
 box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.25);
-webkit-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.25);
}
.servicios-item li:hover{
    background:#08936C;
    color:#ffffff;
}
/* === FORMULARIO CONTACTO === */
.cont-frm-contacto{
 background: #F5F6F8;
 border-radius: 8px;
 padding: 35px;
}
.frm-contacto label{
 font-size:0.85rem;   
}
.activo{
 	font-size:1.5rem; 
    width:250px; 
    
}
.sec-parrafo-a{
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 20px;
  margin-top:50px;
}
.sec-parrafo-a p{
  text-align:justify;
}
.sec-cont-icon {
    width: 100px;
  height: 100px;
  border-radius: 20%;
  background-color: #FFB606;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.sec-cont-img-a{
  height: 100%; /* ajusta según necesites */
  background-size: cover;         /* Hace que la imagen llene el div */
  background-position: center;    /* Centra horizontal y verticalmente */
  background-repeat: no-repeat; 
  border-radius:0 50px 50px 50px;
    
  padding: 0.25rem;
  background-color: #fff;
  border: 3px solid #ffffff;
  box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.5);
-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.5);
}
.sec-cont-img-a{
  height: 100%; /* ajusta según necesites */
  background-size: cover;         /* Hace que la imagen llene el div */
  background-position: center;    /* Centra horizontal y verticalmente */
  background-repeat: no-repeat; 
  border-radius:50px 0 50px 50px;
    
  padding: 0.25rem;
  background-color: #fff;
  border: 3px solid #ffffff;
  box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.5);
-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.5);
}
.sec-cont-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain; /* O 'cover' si prefieres que llene el espacio */
  filter: invert(1) brightness(2);
}
/* === VELORES === */
.valores h3{
    line-height:normal;
    font-size:1.3rem;
}
.valores h4{
    
}
.valores .cont-icon{
  height: 100%; /* ajusta según necesites */
  background-size: cover;         /* Hace que la imagen llene el div */
  background-position: center;    /* Centra horizontal y verticalmente */
  background-repeat: no-repeat; 
  /*padding:25px !important;*/
}
.valores .cont-icon img{
  	width: 100%;
    height: 100%;
    object-fit: contain; /* O 'cover' si prefieres que llene el espacio */
	filter: brightness(0) saturate(100%) invert(79%) sepia(54%) saturate(1750%) hue-rotate(1deg) brightness(100%) contrast(105%);
}
.cont-list-a{
   padding:15px;
   
}
.cont-list-item{
   display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom:10px;
  background-color: #F5F5F5; 
   padding:15px;
}
.cont-list-item .cont-icon{
 width:100px;
 heigh:100px;
}
.cont-list-item .cont-icon img{
}
/* === FOTOS DIRECTIVOS === */
.cont-foto-a{
	width: 270px;
	height: 270px;
	position: relative;
    margin-bottom:25px;
}
.cfa-circulo{
	width: 270px;
	height: 270px;
	border-radius: 50%;
	background: #FFFFFF;
	background-size: cover;       /* Asegura que la imagen cubra todo el contenedor */
background-position: center;  /* Centra la imagen */
background-repeat: no-repeat; /* Evita que se repita */
overflow: hidden;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease;
    border:solid 5px rgb(255, 215, 0);
}
.cfa-nombre {
position: absolute;
bottom: 20px;
left: 0;
background-color: #0C3782; /* Celeste */
padding: 8px 12px;
color: white;
font-size: 0.8rem;
width: 100%;
clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
z-index:1000;
}
.cargo {
  font-weight: bold;
  font-size: 0.9rem;
}
.cfa-circulo:hover .cfa-img {
  transform: scale(1.1); /* Agranda un poco */
}
.cont-frm-contacto {
    position: relative;
}
/* Overlay completamente oculto al inicio */
.msje-loading {
    position: absolute;
    inset: 0; /* cubre todo el contenedor */
    background: rgba(255, 255, 255, 0.5); /* blanco semi-transparente */
    display: none; /* oculto por defecto */
    z-index: 20;
    display:block ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	font-size:0.8rem;
    padding: 20px;
}
.msje-loading.show {
    display: flex; /* se muestra agregando la clase 'show' */
}
.active-icon{
	color:#000;
	text-shadow:0px 1px 0px #fff;
}
.tab-pane{
	background: #fff !important;
	color: #000 !important;
}
.semest{
	padding: 10px 15px 10px 20px;
	color:rgba(0,0,0,1.00)!important;
	background: #EAF1F7;
	border-radius: 6px;
	font-size: 0.8rem;
	margin: 10px 1px;
	cursor: pointer;
}
.semest span{
	position: relative;
	padding: 2px 2.5px;
	background: rgba(255,255,255,0.8);
	border-radius: 50%;
	margin-left: 5px;
	color: #000;
}
.activ_semest{
	background: #58CCE6;
	color: #fff!important;
}	
.menu-section{
	list-style: none;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	padding: 0;
}
.menu-section li{
	
	border-radius: 11px 11px 0 0;
	padding: 5px 25px 5px 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #fff;
	margin-right: 3px;
}
.menu-section li:first-child{
	background: #0169B2;
}
.menu-section li:not(:first-child){
	background:rgba(180,177,177,1.00);
}
.menu-section li:first-child span{
	color: rgba(2,107,249,1.00);
	font-size: 1.2rem;
}
.menu-section li:not(:first-child) span{
	color:rgba(95,94,94,0.5);
	font-size: 1.2rem;
}
.menu-section li div{
	
}
.menu-section li div:first-child{
	width: 32px;
	height: 32px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.menu-section li div:not(:first-child){
	margin-left: 10px;
	text-shadow:0px 1px 0px #000000;
}
.menu-section-h{
	list-style: none;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	padding: 0;
}
.menu-section-h li{
	
	border-radius: 11px 11px 0 0;
	padding: 5px 25px 5px 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #fff;
	margin-right: 3px;
	cursor: pointer;
}
.menu-section-h li div:first-child{
	width: 28px;
	height: 28px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}
.menu-section-h li div:first-child span{
	font-size: 1.0rem;
}
.menu-section-h li:hover{
	background: linear-gradient(to bottom,  #00b4fc 0%,#0082e5 100%);
}
.menu-section-h li:hover span{
	color: rgba(2,107,249,1.00);
}
.section-activated{
	background: #0169B2;
}
.section-activated span{
	color: rgba(2,107,249,1.00);
	
}
.section-deactivated{
	background:rgba(180,177,177,1.00);
}
.section-deactivated span{
	color:rgba(95,94,94,0.5);
	font-size: 1.2rem;
}