/* CSS Document */



/* ── Corrección conflicto servidor ──────────────────────────────────────────
   La barra del servidor ocupa el top del viewport. Ponemos nuestra navbar en
   flujo normal (position:relative) para que sea visible debajo de ella.
   El pie necesita fondo oscuro explícito porque el servidor sobreescribe los
   estilos de Mobirise basados en cid-* con menor especificidad.
─────────────────────────────────────────────────────────────────────────── */
section.menu nav.navbar,
section.menu nav.navbar-dropdown {
  position: relative !important;
  background: #ffffff !important;
  border-bottom: 1px solid #e6e6e6 !important;
  min-height: 60px !important;
}

section.footer3 {
  background-color: #232323 !important;
  padding: 2rem 0 !important;
}

section.footer3,
section.footer3 p,
section.footer3 span {
  color: #ffffff !important;
}

section.footer3 a.text-primary {
  color: #6592e6 !important;
}

/* ── Override display-* sizes (el servidor sobreescribe mbr-additional.css) */
.display-1 { font-size: 4.6rem   !important; font-family: 'Jost', sans-serif; }
.display-2 { font-size: 3rem     !important; font-family: 'Jost', sans-serif; }
.display-4 { font-size: 1.1rem   !important; font-family: 'Jost', sans-serif; }
.display-5 { font-size: 2.2rem   !important; font-family: 'Jost', sans-serif; }
.display-7 { font-size: 1.2rem   !important; font-family: 'Jost', sans-serif; }

/* ── Colores de texto (el servidor sobreescribe mbr-additional.css) */
.text-black { color: #232323 !important; }
.text-primary { color: #6592e6 !important; }



/* Estilos propios*/

.contenedor{
	align-content: left;
	padding-left: 20px;
	width: 100%;
}

.elemento_menu{
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 1.2rem;
	font-weight: 900;
	color:#4E4E4E;
	text-align: justify; 
}

input {
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
	border-radius: 10px;
	font-size: 0.7rem;
}

select {
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
	border-radius: 10px;
	font-size: 0.7rem;
}

#submit{
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	color: #FFFFFF;
	padding: 7px 12px;
	background: #E84D20;
	border-radius: 10px;
	font-size: 1em;
}

#submit:hover {
	background: #fff;
	color: #E84D20;
	border-color: #E84D20;
}

/* Botón secundario (gris) para acciones como "Volver" o "Menú" */
#submit_menu, a#submit_menu {
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
	color: #FFFFFF;
	padding: 7px 12px;
	background: #666;
	border-radius: 10px;
	font-size: 1em;
	border: none;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
}
#submit_menu:hover, a#submit_menu:hover {
	background: #fff;
	color: #666;
	border: 1px solid #666;
	text-decoration: none;
}

/*Estilos necesarios*/

.mbr-text {
  font-style: normal;
  line-height: 1.7;
}

.mbr-white {
  color: #ffffff;
}

.align-center {
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-4,
.display-5,
.display-7,
span,
p,
a {
  line-height: 1;
  word-break: break-word;
  word-wrap: break-word;
  font-weight: 400;
}


/*Tablas adaptativas*/
table {
  width: 100%;
  background: white;
  margin-bottom: 1.25em;
  border: solid 1px #dddddd;
  border-collapse: collapse;
  border-spacing: 0;
}

table tr,
table tr td {
  padding: 0.5625em 0.625em;
  font-size: 0.875em;
  color: #222222;
  border: 1px solid #dddddd;
}
table th {
  padding: 0.5625em 0.625em;
  font-size: 0.9rem;
  color: white;
  border: 1px solid #dddddd;
  background:#E84D20 ;
}
table tr.even,
table tr.alt,
table tr:nth-of-type(even) {
  background:#FBE0D8 ;
}





table.tabla2 tr,
table.tabla2 tr td {
  padding: 0.5625em 0.625em;
  font-size: 0.875em;
  color: #222222;
  border: 1px solid #dddddd;
}
table.tabla2 th {
  padding: 0.5625em 0.625em;
  font-size: 0.9em;
  color: white;
  border: 1px solid #dddddd;
  background:#E84D20 ;
}
table.tabla2 tr.even,
table.tabla2 tr.alt,
table.tabla2 tr:nth-of-type(even) {
  background:#FBE0D8 ;
}



@media only screen and (max-width: 768px) {
	table.resp,
	.resp thead,
	.resp tbody,
	.resp tr,
	.resp th,
	.resp td,
	.resp caption {
	  display: block;
	}
	
	table.resp {
	  border: none
	}
	
	.resp thead tr {
	  display: none;
	}
	
	.resp tbody tr {
	  margin: 1em 1em;
	  border: 1px solid #FBE0D8;
	}
	
	.resp td {
	  border: none;
	  border-bottom: 1px solid #FBE0D8;
	  position: relative;
	  padding-left: 5%;
	  text-align: left;
	}
	
	.resp td:first-child{
		/* Para poner la primera celda de cada fila más visible */
		padding: 0.5625em 0.625em;
		font-size: 2em;
		font-weight: bold;
		color: black;
		border: 1px solid;
		background:#E84D20 ;
	}

	.resp tr td:last-child {
	  border-bottom: 1px double #FBE0D8;
	}
	
	.resp tr:last-child td:last-child {
	  border: none;
	}
	
	.resp td:before {
	  position: absolute;
	  top: 6px;
	  left: 6px;
	  width: 45%;
	  padding-right: 10px;
	  white-space: nowrap;
	  text-align: left;
	  font-weight: bold;
	}
}