@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);
}


.titulo-principal {
  color: var(--color-texto-principal);
  font-weight: 300;
}

.titulo-secundario {
  color: var(--color-titulo-secundario);
  font-weight: 700;
}



.comunicado-box {
  background: linear-gradient(135deg, #a35b2b, #c0834e);
  color: white;
  border-radius: 15px;
  padding: 40px 30px;
  max-width: 750px;
  position: relative;
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.comillas {
  position: absolute;
  top: -25px;
  left: 25px;
}

.circulo {
  width: 40px;
  height: 40px;
  background-color: #ffcb3f;
  border-radius: 50%;
  position: absolute;
}

.circulo-izq {
  bottom: -10px;
  left: -10px;
}

.circulo-der {
  top: -10px;
  right: -10px;
}

.logo-comunicado {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}



.grayscale {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease-in-out;

}
.grayscale:hover {
  filter: none;
  opacity: 1;
}
.owl-carousel .item {
  text-align: center;
}





/*
inicio de secion nuestro programas */






/* Fondo amarillo del bloque */
.bg-amarillo-feh {
  background-color: #F5C94E;
  position: relative;
  z-index: 2;
}

/* Fondo con curva marrón a la izquierda */
.bg-curva {
  background-color: var(--color-marron-feh);
  border-top-right-radius: 160px;
  border-bottom-right-radius: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.img-programa {
  max-height: 500px;
  object-fit: contain;
}

/* Estilos para las cajas numeradas */
.programa-box {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 15px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.programa-box .numero {
  background-color: var(--color-marron-feh);
  color: white;
  border-radius: 6px;
  font-weight: bold;
  padding: 6px 12px;
  margin-right: 12px;
}

/* Variables de color */



.programa-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  padding: 10px 20px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-weight: 500;
  color: #333;
  cursor: pointer;
}

.programa-box .numero {
  background-color: var(--color-marron-feh);
  color: white;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 8px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.programa-box:hover {
  border-color: var(--color-marron-feh);
  color: var(--color-marron-feh);
  background-color: #fffaf3;
}

.programa-box:hover .numero {
  background-color: white;
  color: var(--color-marron-feh);
  border: 2px solid var(--color-marron-feh);
}



/* fin section nuestros programas

 */






