/* FUENTES */
@font-face
{
	font-family: Roboto;
	src: url(fuentes/Roboto-Regular.ttf);
}

@font-face
{
	font-family: RobotoSlab;
	src: url(fuentes/RobotoSlab-Regular.ttf);
}

@font-face {
  font-family: 'KontoraLigero'; /* Mismo nombre de la familia */ 
  src: url('fuentes/kontora-thin.otf') format('opentype');
}

@font-face {
  font-family: 'KontoraNormal'; /* Nombre de la familia */ 
  src: url('fuentes/kontora-medium.otf') format('opentype');  
}

@font-face {
  font-family: 'KontoraBold'; /* Mismo nombre de la familia */ 
  src: url('fuentes/kontora-black.otf') format('opentype'); 
}
/* FUENTES */

/* GENERALES BODY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.elemento1 {
  font-size: 50px;
  color: #5b3131;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.ventana-modal {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
}

#cancelar_cierre_session {
  cursor: pointer;
  float: right;
}

body, html
{
  font-family: 'KontoraNormal', sans-serif;  
}

body.estilo1 {
    font-family: 'KontoraNormal', sans-serif;
    background-image: url('../img/patron2.png');
    background-size: auto; /* No cambia el tamaño de la imagen, permite que se repita */
    background-position: top left; /* Posiciona la imagen en la esquina superior izquierda */
    background-repeat: repeat; /* Repite la imagen en todo el fondo */

}

body.estilo2 {
  font-family: 'KontoraNormal', sans-serif !important;
  background-color: #ffffff;
  background-image: none;
}

h1, h2, h3, h4, h5, h6
{
  font-family: RobotoSlab;
}

a
{
  text-decoration: none;
}

.contenedor
{
  width: 95%;
  margin: auto;
}

.text_center
{
  text-align: center;
}

.line
{
  width: 100%;
  height: 2px;
  background: #404040;
  box-shadow: 0 1px 3px rgba(0.24, 0.22, 0.19, 0.5);
  margin-bottom: 15px;
}

i[class^='icon']
{
  margin-right: 5px;
  display: flex;
  align-items: center;
}

.top10
{
  margin-top: 10px;
}

.top10 i
{
  font-weight: bold;
}

.contacto
{
  font-size: small;
}

section
{
  margin-bottom: 55px;
}

section .encabezado
{
  border-bottom: 2px solid rgba(0.24, 0.22, 0.19, 0.5);
  border-bottom-style: dashed;
  margin-bottom: 15px;
}
/* GENERALES BODY */

/* HEADER */
header
{
  background: #333333;
}

header .contenedor
{
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo_se, .logo_cosicam
{
  height: 45px;
}

.line_header
{
  width: 100%;
  height: 3px;
  background: #A41E48;
}

.header_user
{
  width: 100%;
  height: 27px;
  background: #30937e;
  display: flex;
  align-items: center;
  /* margin-bottom: 5px; */
  position: sticky;
  top: 0;
  z-index: 20;
}

.sicav
{
  display: none;
}

.contenedor_usuario
{
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.usuario
{
  display: flex;
}
/* HEADER */

/* NAVEGACION */
.position_nav
{
  position: sticky;
  top: 27px;
  z-index: 20;
  padding-top: 4px;
  background-color: #FCFCFC;
}

.icon-menu
{
  cursor: pointer;
}

.nav
{
	width: 100%;
	position: absolute;
	top: 26px;
  left: -100%;
  z-index: 100;
	transition: all 0.4s;
}

.nav .contenedor
{
  width: auto;
  margin-right: auto;
}

.menu
{
	list-style: none;
	padding: 4px 0;
	margin: 0;
}

.menu-link
{
  width: 100%;
  border: none;
  font-size: 15px;
  text-align: center;
	padding: 15px 2.5%;
	background: #B9A56D;
  color: #404040;
  cursor: pointer;
  margin: 1px 0;
}

button.menu-link:hover
{
  /* background: #CABC92; */
  color: black;
}

.mostrar
{
	left: 0;
}

li button.activo
{
  color: white;
  /* text-shadow: -1px -1px 2px rgba(0, 0, 0, 0.8); */
  letter-spacing: 1px;
  /* padding: 10px; */
  background-color: #B9A56D;
  border-radius: 3px;
  box-shadow: 0 5px 8px -3px rgba(0, 0, 0, 0.5);
  /* text-decoration: underline; */
  /* border: 1px solid red; */
}
/* NAVEGACION */

/* FOOTER */
/* footer
{
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #621132;
  color: #F9F9F9;
  font-size: small;
  border-top: 3px solid #B9A56D;
} */

footer
{
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  background-image: url('../img/patron1.png'); /* Ruta de la imagen de fondo */
  background-size: cover; /* Ajusta el tamaño de la imagen para cubrir el área del header */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  padding: 20px 0; /* Añade algo de espacio interno si es necesario */
  color: #30937e;
  font-size: 1rem; /* Aumenta el tamaño de la fuente */
  border-top: 2px solid #B6213C;
}
/* FOOTER */
/* ------------------------------------------------------------ */
/* RESPONSIVE */
@media (min-width: 480px)
{
  header .contenedor
  {
    height: 70px;
  }

  .logo_se, .logo_cosicam
  {
    height: 55px;
  }

  .contenedor_usuario
  {
    font-size: 15px;
  }
}

@media (min-width: 576px)
{
  h1
  {
    font-size: 22px;
  }

  p.top10
  {
    font-size: 18px;
  }

  p.contacto
  {
    font-size: 15px;
  }

  header .contenedor
  {
    height: 80px;
  }

  .logo_se, .logo_cosicam
  {
    height: 65px;
  }

  .contenedor_usuario
  {
    justify-content: flex-end;
  }
}

@media (min-width: 768px)
{
  h1
  {
    font-size: 24px;
  }

  p.top10
  {
    font-size: 19px;
  }

  p.contacto
  {
    font-size: 16px;
  }

  header .contenedor
  {
    height: 90px;
  }

  .logo_se, .logo_cosicam
  {
    height: 75px;
  }

  .sicav
  {
    display: block;
  }

  .header_user .contenedor
  {
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .icon-menu
	{
		display: none;
	}

  .nav
	{
    position: static;
  }

  .nav .contenedor
  {
    width: 95%;
  }

  .icon-home
  {
    padding-top: 1px;
    font-size: 20px;
  }
  
  .menu
	{
		display: flex;
  }
  
  .menu-link
  {
    background: none;
    padding: 0%;
    margin-right: 15px;
    font-size: 17px;
  }

  .menu-link:hover
  {
    background: none;
    color: #A41E48;
  }
}

@media (min-width: 992px)
{
  h1
  {
    font-size: 26px;
  }

  p.top10
  {
    font-size: 20px;
  }

  p.contacto
  {
    font-size: 17px;
  }

  header .contenedor
  {
    width: 90%;
    height: 100px;
  }

  .logo_se, .logo_cosicam
  {
    height: 85px;
  }

  .contenedor, .header_user .contenedor, .nav .contenedor
  {
    width: 90%;
  }
}

@media (min-width: 1200px)
{
  h1
  {
    font-size: 28px;
  }

  p.top10
  {
    font-size: 21px;
  }

  p.contacto
  {
    font-size: 18px;
  }

  header .contenedor
  {
    height: 110px;
  }

  .logo_se, .logo_cosicam
  {
    height: 70px;
  }
}

@media (min-width: 1300px)
{
  h1
  {
    font-size: 30px;
  }

  p.top10
  {
    font-size: 22px;
  }

  p.contacto
  {
    font-size: 19px;
  }
}
/* RESPONSIVE */

