@font-face {
    font-family: 'Mont';
    src: url('../fonts/Fonts/Mont-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Mont';
    src: url('../fonts/Fonts/Mont-Bold.ttf') format('truetype');
    /* Ruta absoluta desde la raíz */
    font-weight: 700;
    /* Si el archivo es Bold, usa 700 */
    font-style: normal;
}

.nav-footer a {
    font-family: 'Mont', sans-serif;
    color: white;
    transition: color 0.3s ease;
}

.nav-footer a:hover {
    color: #5e8a4b;
}


/* Aplicar la fuente a toda la web */

body {
    font-family: 'Mont', sans-serif;
}


@font-face {
  font-family: 'Mont';
    src: url('../fonts/Fonts/Mont-Regular.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Mont';
  src: url('../fonts/Fonts/Mont-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Mont';
  src: url('../fonts/Fonts/Mont-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Mont';
  src: url('../fonts/Fonts/Mont-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Fonts/Mont-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body, h1, h2, h3, h4, h5, h6, p, a, span, button {
  font-family: 'Mont', sans-serif;
}




.text-carrusel-inicio {
    font-size: calc(3rem + 1.2vw);
    color: #87613F;

}
:root {
  /* Colores institucionales */
  --color-marron-feh: #87613F;
  --color-marron-oscuro-feh: #6d4f34; /* opcional si usas sombras o variantes */

  --color-blanco: #ffffff;
  --color-negro-suave: #222222;

  /* Otros posibles colores auxiliares */
  --color-texto-principal: #87613F;
  --color-titulo-secundario: #DFB289;
}

.colorFeh{
    color: var(--color-marron-feh);
}

.btn-feh {
  background-color: var(--color-marron-feh);
  color: var(--color-blanco);
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 8px;
 border: 2px solid var(--color-marron-feh);
  transition: all 0.3s ease;
}

.btn-feh:hover {
  background-color: var(--color-blanco);
  color: var(--color-marron-feh);
  border: 2px solid var(--color-marron-feh);
}



.bg-pink {
  background-color: #dc3e82;
}

.btn-outline-pink {
  border: 1px solid #dc3e82;
  color: #dc3e82;
}

.btn-outline-pink:hover {
  background-color: #dc3e82;
  color: white;
}

.timeline-educacion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 3rem;
  padding: 1.5rem 0;
}

.timeline-educacion::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #7a4b24; /* color marrón */
  z-index: 1;
}

.timeline-educacion .item {
  text-align: center;
  background: #fff;
  z-index: 2;
  position: relative;
}

.timeline-educacion .item::before {
  content: '';
  width: 14px;
  height: 14px;
  background-color: #7a4b24;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}











.timeline-vertical {
  position: relative;
  padding: 2rem 0;
}

.timeline-vertical::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: #8B5E3C; /* Marrón */
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1rem 2rem;
}

.timeline-item .content {
  background: #fff;
  border: 1px solid #eee;
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item.left .content {
  margin-left: auto;
}

.timeline-item.right .content {
  margin-right: auto;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 20px;
  width: 16px;
  height: 16px;
  background-color: #8B5E3C;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px #8B5E3C;
}

.timeline-item.left::after {
  right: -8px;
}

.timeline-item.right::after {
  left: -8px;
}

@media screen and (max-width: 768px) {
  .timeline-item, .timeline-item.left, .timeline-item.right {
    width: 100%;
    left: 0 !important;
    text-align: left;
  }

  .timeline-item .content {
    margin: 0 auto;
  }

  .timeline-vertical::before {
    left: 8px;
  }

  .timeline-item::after {
    left: 0;
  }
}




.timeline-vertical .content {
  font-size: 0.9rem;
  padding: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.timeline-vertical ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.timeline-vertical li {
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}


.timeline-vertical ul {
  padding-left: 1rem;
  margin: 0;
  list-style-type: disc;
}

.timeline-vertical li {
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  line-height: 1.4;
  text-align: left;
  list-style-position: inside;
  white-space: normal;
  word-break: break-word;
}


.timeline-vertical .content {
  max-width: 320px;
}


.timeline-item .content h6 {
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: #0d2c49; /* o el color que estés usando */
  text-transform: uppercase;
}


.timeline-item .content ul {
  padding-left: 1.2rem;
  margin: 0;
}

.timeline-item .content ul li {
  font-size: 0.95rem;
  line-height: 1.4; /* Más compacto */
  margin-bottom: 4px; /* Menor separación entre ítems */
  color: #333;
}


.timeline-item .content h6 {
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  color: #0d2c49;
}



.timeline-vertical::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: #e91e63; /* Color rosado */
  transform: translateX(-50%);
}


.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 3px solid #e91e63;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}



.docente-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  text-align: center;
  padding-bottom: 12px;
  transition: transform 0.3s ease;
}



.img-wrapper {
  padding: 18px;
}




.docente-info .nombre {
  margin: 5px 0 3px;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.2;
}

.docente-info .cargo {
  margin: 0;
  font-size: 13px;
}




.docente-card {
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.docente-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Ajuste para que el logo esté en la esquina superior izquierda */
.docente-bg {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 3;
}

.logo-facultad {
  max-width: 40px;
  opacity: 0.8;
}


.docente-img-container {
  padding: 12px;
  background-color: white;
}

.docente-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
}
