/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/

/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Raleway:100,400,600,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Dosis:400,500,600,700,800&display=swap');

/*****---------------------------------------- 
1) font-family: 'Rajdhani', sans-serif;
2) font-family: 'Poppins', sans-serif;
----------------------------------------*****/

/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	/* el valor para 1rem=16px */
	font-size: 16px;
}

body {
	font-family: 'Poppins', sans-serif;
	font-weight: 200;
}

.contenedor {
	width: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 30px 50px 30px 50px;
}

.titulo {
	color: #ccc;
	font-size: 1.875rem;
	text-align: center;
	margin: 0 0 30px 0;
}

b {
	font-weight: 400;
}

@media all and (max-width: 768px) {
	.contenedor {
		padding: 30px 20px 30px 20px;
	}
}

/*--------------------------------------------------------------------- header ---------------------------------------------------------------------*/

header {
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 30px;
}

/* Linea de info y contacto */
.meta {
	display: flex;
	justify-content: space-between; /* Espacio entre elementos */
	align-items: center; /* Alinea verticalmente los elementos */
	margin: 8px;
}

/* .meta h1,
.meta h2, */
.meta p {
	color: #ddd;
	font-family: 'Raleway', sans-serif;
	line-height: 1.2rem; /* Ajusta la altura de la línea para mejorar la legibilidad */
	padding: 12px 0; /* Ajusta el padding para centrar verticalmente */
	margin: 0; /* Elimina el margen por defecto */
	font-weight: normal;
}

.meta a {
	color: #ddd;
	text-decoration: none;
	font-size: 1rem;
	margin: 0 10px;
}

.meta a:hover {
	color: #dfcfbf;
}

/* SECTION LANGUAGE */
/* Estilos para la barra de idiomas */
#language-switcher {
	text-align: right; /* Centrar el texto */
}

#language-switcher a {
	color: #ddd; /* Color de texto predeterminado */
	font-size: 1rem;
	transition: color 0.3s ease; /* Agrega una transición de 0.3 segundos con efecto ease a la propiedad color */
}

#language-switcher .separator {
	margin: 0 10px; /* Espacio entre elementos | */
	color: #ddd; /* Color del separador */
}

#language-switcher a:hover,
#language-switcher a.selected {
	color: rgb(190, 190, 190); /* Color de texto al pasar el ratón o seleccionado */
	font-weight: normal; /*Texto en negrita para resaltar */
}

@media all and (max-width: 500px) {
	.meta a,
	#language-switcher a {
		font-size: 0.9rem;
	}
}

@media all and (max-width: 375px) {
	.meta a,
	#language-switcher a {
		font-size: 0.8rem;
	}
}

@media all and (max-width: 340px) {
	.meta a,
	#language-switcher a {
		font-size: 0.7rem;
	}
}

/* Logo y barra de navegación */
nav {
	display: flex;
	justify-content: space-around;
	box-shadow: 5px 0 10px 2px rgba(0, 0, 0, 0.15);
	align-items: center;
}

/* Estilo del logo de la barra de navegación */
.nav-logo {
	width: 125px;
	margin: 20px;
}

.nav-logo img {
	display: block;
	width: 100%;
	height: auto;
}

a.nav-logo {
	display: inline-block;
}

/* Estilos de los elementos de la barra de navegación-lista */
.nav-list {
	list-style: none;
	display: inline-block;
	text-align: center;
}

.nav-list li {
	display: inline-block;
	padding: 25px 15px;
}

.nav-list li > a {
	color: rgb(190, 190, 190);
	font-size: 0.95rem;
	font-family: 'Raleway';
	font-weight: 500;
	text-decoration: none;
}

.nav-list li > a:hover {
	color: #dfcfbf;
	/* font-weight: 600; */
	transition: 0.3s;
}

#nav-list-latest > a {
	color: rgb(150, 150, 150);
	font-weight: 600;
	font-size: 1.1rem;
	font-family: 'Raleway';
	background-color: #dfcfbf83;
	font-family: inherit;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#nav-list-latest > a:hover {
	color: #fff;
	background-color: #dfcfbfca;
	transition: 0.5s;
}

/* Icono menu desplegable para menú embebido */
.menu {
	display: none;
}

.menu-line {
	width: 20px;
	height: 3px;
	background-color: #ddd;
	margin-bottom: 4px;
}

/* Comportamiento responsive del texto para ancho menor que max-width: 1115px */
@media all and (max-width: 1115px) {
	.nav-list li > a {
		font-size: 0.8125rem;
	}
}

/* Comportamiento responsive de la barra para ancho menor que max-width: 768px */
@media all and (max-width: 768px) {
	.nav {
		flex-direction: column;
	}

	.nav-logo {
		width: 100px;
		margin: 15px;
	}

	.menu {
		display: block;
		/* position: absolute; */
		margin: 20px;
	}

	.nav-list {
		list-style: none;
		text-align: center;
		padding-top: 10px;
		display: none;
	}

	.nav-list li {
		display: block;
		padding: 25px 10px;
		font-size: 0.8rem;
		border-top: 1px solid #ddd;
	}
	/* para quitar la línea superior (border-top) del primer elemento */
	#nav-list-first {
		border-top: none;
	}

	.active {
		display: block;
	}
}

/* Textos de la cabecera y la imagen */
.info-imagen-header {
	display: block;
	height: 600px;
	width: 100%;
}

.imagen-header {
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.imagen-header > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.texto-imagen-header {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	transform: scale(0);
	transition: transform 3s;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	/* opacity: 0.75; */
	opacity: 0;
	padding: 10px;
}

.imagen-header:hover .texto-imagen-header,
.info-imagen-header.hovered .texto-imagen-header {
	transform: scale(1);
	opacity: 0.75;
}

.texto-imagen-header h1 {
	font-weight: 300;
	font-size: 3.125rem;
	color: #fff;
}

.texto-imagen-header h2 {
	font-size: 1.875rem;
	font-weight: 300;
	color: #fff;
	line-height: 3rem;
}

/*--------------------------------------------------------------------- main ---------------------------------------------------------------------*/
main {
	display: block;
	box-shadow: 0px 10px 10px 1px rgba(0, 0, 0, 0.1);
}

/* Apartado sobre nosotros */
.sobre-nosotros {
	width: 100%;
	display: block;
	justify-content: center;
}

.contenedor-sobre-nosotros {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: stretch; /* Asegura que ambos elementos tengan la misma altura */
	justify-content: space-between;
	gap: 20px; /* Espacio entre el texto y la imagen */
}

.imagen-sobre-nosotros {
	width: 50%;
	max-height: 800px;
}

.imagen-sobre-nosotros img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contenido-textos {
	width: 50%;
	padding: 20px 30px;
	display: flex;
	flex-direction: column;
}

.contenido-textos h3 {
	font-size: 1rem;
	color: rgb(150, 150, 150);
	padding-top: 40px;
}

.contenido-textos h3 span {
	background: #dfcfbf;
	color: #fff;
	opacity: 60%;
	font-size: 0.875rem;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
	width: 25px;
	height: 25px;
	padding: 5px;
	box-shadow: 1px 1.5px 2px 0 rgba(0, 0, 0, 0.1);
	margin-right: 12px;
}

.contenido-textos p {
	padding-top: 10px;
	color: rgb(100, 100, 100);
	text-align: justify;
	line-height: 1.5rem;
}

/* Estilo de la imagen de marca dentro del texto */
.inline-img {
	/*vertical-align: middle;  Alinea verticalmente la imagen con el texto */
	vertical-align: baseline; /* Alinea la parte inferior de la imagen con la línea de base del texto */
	height: 1em; /* Ajusta la altura de la imagen para que coincida con la altura de la línea de texto */
	width: auto; /* Mantiene la proporción de la imagen */
	display: inline-block; /* Asegura que la imagen se comporte como un elemento en línea */
}

/* Estilos para los hipervínculos */
.contenido-textos p a {
	color: rgb(100, 100, 100);
	font-weight: 300;
	text-decoration: none;
	line-height: 1.5rem;
}

.contenido-textos p a:hover {
	text-decoration: none;
	color: #dfcfbf;
}

@media all and (max-width: 1115px) {
	main {
		display: block;
		padding: 0px;
	}
	.contenedor-sobre-nosotros {
		width: 100%;
		display: block;
		justify-content: center;
	}

	.imagen-sobre-nosotros {
		width: 100%;
		height: 400px;
		overflow: hidden;
		justify-content: center;
		align-items: center;
		position: relative;
	}

	.imagen-sobre-nosotros > img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.contenido-textos {
		width: 100%;
		padding: 30px;
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
}

/* Apartado servicios */
.servicios {
	width: 100%;
	display: block;
	justify-content: center;
	/* background: #dfcfbf2c; */
}

.texto-servicios p {
	padding: 0 25px 40px 25px;
	color: rgb(100, 100, 100);
	text-align: justify;
	line-height: 1.5rem;
}

/* Estilos para los hipervínculos */
.texto-servicios p a {
	color: rgb(100, 100, 100);
	font-weight: 300;
	text-decoration: none;
}

.texto-servicios p a:hover {
	text-decoration: none;
	color: #dfcfbf;
}

.galeria-ser {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.imagen-ser {
	width: calc(25% - 20px);
	margin: 10px;
	background: #dfcfbf2c;
	overflow: hidden;
	position: relative;
}

.imagen.ser > img {
	width: 100%;
	height: 100%;

	object-fit: cover;
	display: block;
}

.hover-galeria {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	transform: scale(0);
	background: rgba(125, 125, 125, 0.55);
	transition: transform 0.5s;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 10px;
}

.hover-galeria h4 {
	width: 100%;
	height: auto;
	color: #fff;
	font-size: 2.75rem;
	font-weight: 500;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.icons-cont {
	width: 100%;
	height: fit-content;
	display: flex;
	justify-content: center;
	padding: 0 40px 0 40px;
}

.icons-cont a {
	width: fit-content;
	height: 100%;
	padding: 5px;
	text-align: center;
	cursor: pointer;
}

.icons-cont a img {
	width: 100%;
	height: 100%;
}

.imagen-ser:hover .hover-galeria {
	transform: scale(1);
}

@media all and (max-width: 768px) {
	.galeria-ser {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.imagen-ser {
		width: 100%;
		height: 100%;
		margin: 0px 0 40px 0;
	}
}

/* Apartado nuestra-marca */
.nuestra-marca {
	width: 100%;
	display: block;
	justify-content: center;
}

.producto {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: stretch; /* Asegura que ambos elementos tengan la misma altura */
	justify-content: space-between;
	gap: 20px; /* Espacio entre el texto y la imagen */
}

.imagen-producto {
	width: 50%;
	display: flex;
	align-items: stretch; /* Asegura que la imagen se estire a la misma altura que el texto */
}

.imagen-producto img {
	width: 100%;
	height: 100%; /* Asegura que la imagen ocupe todo el contenedor en altura */
	object-fit: cover; /* Recorta la imagen si es necesario para mantener las proporciones */
}

.texto-producto {
	width: 50%;
	padding: 20px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around; /* Asegura que los elementos hijos se centren verticalmente */
}

.texto-producto h3 {
	font-size: 0.9375rem;
	color: rgb(150, 150, 150);
	text-align: center;
}

.texto-producto p {
	padding-top: 20px;
	color: rgb(100, 100, 100);
	text-align: justify;
	line-height: 1.5rem;
	width: 100%; /* Asegura que el texto ocupe todo el ancho del contenedor */
}

/* Estilos para los hipervínculos */
.texto-producto p a {
	color: rgb(100, 100, 100);
	font-weight: 300;
	text-decoration: none;
}

.texto-producto p a:hover {
	text-decoration: none;
	color: #dfcfbf;
}

/* Estilo botón acceso a la tienda */
#acceso-tienda {
	padding: 40px;
	width: 100%; /* Asegura que el contenedor del botón ocupe todo el ancho disponible */
	display: flex;
	justify-content: center; /* Centra el botón horizontalmente */
	align-items: center; /* Centra el botón verticalmente */
}

#acceso-tienda a {
	text-decoration: none;
	color: rgb(150, 150, 150);
	font-weight: 600;
	font-size: 1.7rem;
	font-family: 'Raleway', sans-serif;
	background-color: #dfcfbf83;
	font-family: inherit;
	padding: 15px 25px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#acceso-tienda a:hover {
	color: #fff;
	background-color: #dfcfbfca;
	transition: 0.5s;
}

@media all and (max-width: 768px) {
	.producto {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.imagen-producto {
		width: 100%;
		padding: 0 20px;
	}

	.texto-producto {
		width: 100%;
		padding: 30px;
		display: flex;
		flex-direction: column;
	}

	#acceso-tienda {
		padding: 0;
		padding-top: 40px;
	}
}

/* Apartado onandno */
.about-onandno {
	width: 100%;
	background: #dfcfbf2c;
	display: flex;
	flex-direction: row;
	align-items: stretch; /* Asegura que ambos elementos tengan la misma altura */
	justify-content: space-between;
	gap: 20px; /* Espacio entre el texto y la imagen */
}

.about-onandno .contenedor h2 {
	margin: 10px;
}

.about-onandno .contenedor h2 img {
	width: auto;
	height: 35px;
	align-items: center;
}

.about-onandno .contenedor > p {
	padding: 0 30px 30px 30px;
	color: rgb(100, 100, 100);
	text-align: justify;
	line-height: 1.5rem;
}

/* Galeria ONandNO*/
.galeria-onandno {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.apartados-onandno {
	display: flex;
	flex-direction: row;
	justify-items: center;
	/* align-items: center; */
	margin: auto;
	background: #ffffff;
}

.texto-apartados-onandno {
	color: rgb(150, 150, 150);
	padding: 30px;
}

.texto-apartados-onandno h4 {
	text-align: center;
	padding: 30px;
}

.texto-apartados-onandno p {
	text-align: justify;
	line-height: 1.5rem;
	padding: 10px 30px;
}

/* Estilos para los hipervínculos */
.texto-apartados-onandno p a {
	text-decoration: none;
	color: rgb(100, 100, 100);
	font-weight: 300;
}

.texto-apartados-onandno p a:hover {
	text-decoration: none;
	color: #dfcfbf;
}

.imagen-onandno {
	overflow: hidden;
}

.imagen-onandno > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: #ffffff;
}

@media all and (max-width: 1115px) {
	.about-onandno {
		padding-bottom: 30px;
	}

	.about-onandno .contenedor > p {
		padding: 15px 30px 30px 30px;
	}

	.apartados-onandno {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		padding-bottom: 30px;
	}

	#last-apartados-onandno {
		padding-bottom: 0px;
	}

	.texto-apartados-onandno {
		width: 100%;
		height: 100%;
		padding: 20px 10px 30px 10px;
	}

	.texto-apartados-onandno h4 {
		padding: 20px 30px;
	}

	.texto-apartados-onandno > p {
		padding: 10px 30px;
	}

	.imagen-onandno {
		display: block;
		width: 100%;
		height: auto;
	}
}

@media all and (max-width: 450px) {
	.about-onandno .contenedor h2 img {
		width: auto;
		height: 100%;
		padding: 0 20px;
		align-items: center;
	}
}

/*--------------------------------------------------------------------- Página de contacto ---------------------------------------------------------------------*/
.section-cont {
	width: 100%;
	display: flex;
	padding: 20px;
}

/* Apartado datos contacto */
.info-cont {
	width: 40%;
	padding: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.info-cont a {
	color: #ccc;
	text-decoration: none;
	font-weight: 400;
}

.info-cont h3 {
	font-size: 1.125rem;
}

.info-cont h5 {
	color: rgb(125, 125, 125);
	font-weight: 400;
	font-size: 0.875rem;
}

/* Apartado formulario contacto */
.formulario-cont {
	width: 60%;
	height: 100%;
	padding: 30px;
}

.formulario-cont form {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: right;
	flex-direction: column;
}

.formulario-cont form h2 {
	color: #ccc;
	text-align: center;
}

input[type='text'],
input[type='email'],
input[type='tel'],
select,
textarea {
	font-family: inherit;
	color: rgb(100, 100, 100);
	width: 100%;
	padding: 2px 5px 2px 5px;
	border: 1px solid #ccc;
	border-radius: 2px;
	box-sizing: border-box;
}

/* Estilos generales para los enlaces dentro de las etiquetas de la clase .checkbox */
.checkbox label a {
	text-decoration: none;
	color: rgb(100, 100, 100);
	font-weight: 300;
}

/* Estilo adicional para el enlace cuando se pasa el ratón por encima */
.checkbox label a:hover {
	text-decoration: none; /* Asegura que el subrayado se mantenga eliminado incluso al pasar el ratón por encima */
	color: #dfcfbf; /* O cualquier color que desees para el enlace en el estado hover */
}

.enviar-form {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding-top: 10px;
}

button[type='submit'] {
	width: 100px;
	height: auto;
	font-family: inherit;
	color: rgb(150, 150, 150);
	font-weight: 600;
	padding: 5px 10px 5px 10px;
	background-color: #dfcfbf83;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

input:invalid,
textarea:invalid {
	border: 1px solid #ccc;
}

input:valid,
textarea:valid {
	border: 1px solid rgb(100, 100, 100);
}

input:focus:invalid,
textarea:focus:invalid {
	color: #c27475;
}

/* Estilo para contenedor de mensajes del formulario*/
#formResponse {
    display: none;
    text-align: center;
    font-style: italic;
    line-height: 1.8; /* Ajusta la altura de línea para mejorar la legibilidad */
    padding-top: 30px;
}

/* Estilo para mensajes de éxito */
#formResponse.success {
    display: block;
    color: #dfcfbf;
}

/* Estilo para mensajes de error */
#formResponse.error {
    display: block;
    color: #c27475;
}

/* Enlaces dentro de los mensajes */
#formResponse.success a, #formResponse.error a {
    text-decoration: none !important;
    font-weight: 400 !important;
	color: inherit !important; /* Usa el color del contenedor */
}

#formResponse.success a:hover, #formResponse.error a:hover {
    color: rgb(190, 190, 190) !important;
}

@media all and (max-width: 768px) {
	.section-cont {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		padding: 30px;
	}

	/* Apartado datos contacto */
	.info-cont {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		padding: 30px;
	}

	/* Apartado formulario contacto */
	.formulario-cont {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: flex-end; /* Ajuste correcto */
		flex-direction: column;
		padding: 30px;
	}
	#asunto {
		width: 100%; /* Asegura que el <select> ocupe el 100% del contenedor */
		max-width: 100%; /* Asegura que no se salga del contenedor */
		box-sizing: border-box; /* Incluye el padding y el border en el ancho total */
	}
	#asunto option {
		font-size: 0.8rem;
	}
}

/*--------------------------------------------------------------------- Boton go-top ---------------------------------------------------------------------*/
.go-top-contenedor {
	position: fixed;
	bottom: 80px;
	right: 18px; /* Ajusta el margen derecho para que no esté pegado al borde */
	width: 36px;
	height: 36px;
	z-index: 10; /* Ajusta el z-index para que esté sobre el contenido */
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s, transform 0.3s; /* Transición suave para la opacidad y transform */
}

.go-top-button {
	width: 100%; /* Asegura que el botón ocupe todo el espacio del contenedor */
	height: 100%; /* Asegura que el botón ocupe todo el espacio del contenedor */
	background: #dfcfbf;
	opacity: 0.5;
	border-radius: 50%;
	cursor: pointer;
	position: relative; /* Ajusta para posicionar correctamente el símbolo */
	transform: scale(0);
	transition: transform 0.3s;
}

.go-top-button p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.1rem; /* Ajusta el tamaño del símbolo */
	font-weight: bold;
	color: #fff;
	transition: transform 0.2s, font-size 0.2s; /* Añade transición suave al escalar el símbolo */
}

.go-top-contenedor.show {
	opacity: 1; /* Mostrar el contenedor cuando tiene la clase .show */
	pointer-events: auto;
	transform: scale(1);
}

.go-top-contenedor.show .go-top-button {
	transform: scale(1);
}

/* Animación popup*/
@keyframes popup {
	0% {
		transform: scale(0); /* Escala inicialmente a tamaño cero */
	}
	50% {
		transform: scale(1.2); /* Escala a un tamaño mayor a la mitad de la animación */
	}
	100% {
		transform: scale(1); /* Vuelve al tamaño normal */
	}
}


/*------------------------------------------------------------------- Widget Google reCAPTCHA --------------------------------------------------------------------*/
/* .grecaptcha-badge {
    display: none !important;
} */

/*--------------------------------------------------------------------- footer ---------------------------------------------------------------------*/
footer {
	display: block;
	justify-content: center;
	align-items: center;
}

.contenedor-footer {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding-top: 20px;
}

.content-foo {
	display: block;
	width: 100%;
	height: auto;
	padding: 40px;
}

/* Apartado información institucional*/
.content-foo figure {
	width: 100%;
	height: 100%;
	text-align: center;
}

.logo-jcyl {
	width: auto;
	height: 90px;
}

.content-foo figcaption {
	padding: 10px;
}

.content-foo p {
	width: 100%;
	height: 100%;
	text-align: justify;
	font-size: 0.8125rem;
	padding-top: 20px;
}

@media all and (max-width: 1115px) {
	.logo-jcyl {
		width: 100%;
		height: 100%;
	}
}

/* Apartado redes sociales + info-contacto */
/* Apartado redes sociales*/
.logo {
	width: auto;
	height: 45px;
	margin: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo img {
	width: 100%;
	height: 100%;
}

.social_icon {
	width: 100%;
	height: 100%;
	text-decoration: none;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social_icon > li {
	width: 50px;
	height: 50px;
	margin: 20px;
	display: inline-block;
	text-align: center;
}

/* Apartado info-contacto */
.contacto {
	width: 100%;
	height: 100%;
	margin-top: 30px;
	align-items: center;
}

.contacto a {
	color: rgb(190, 190, 190);
	text-decoration: none;
}

.contacto a:hover {
	color: #dfcfbf;
}

.contacto h3 {
	font-weight: 500;
	font-size: 1.25rem;
	text-align: center;
}

.contacto p {
	font-size: 0.875rem;
	line-height: 1.25rem;
	padding-top: 0;
	text-align: center;
}

@media all and (max-width: 768px) {
	.contenedor-footer {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
}

/* Copyright*/
.section-copyrigth h4 {
	font-family: 'Raleway';
	font-size: 1.1rem;
	color: #ddd;
	font-weight: 400;
	text-align: center;
	padding-bottom: 8px;
}

.section-copyrigth h5 {
	font-family: 'Raleway';
	font-size: 0.9rem;
	color: #ddd;
	font-weight: 400;
	text-align: center;
	padding-bottom: 15px;
}

.section-copyrigth h5 a {
	color: #ddd;
}

.section-copyrigth h5 a:hover {
	color: rgb(100, 100, 100);
	transition: 0.2s;
}

@media all and (max-width: 768px) {
	.section-copyrigth h4 {
		font-size: 1rem;
	}

	.section-copyrigth h5 {
		font-size: 0.8rem;
	}
}

/*--------------------------------------------------------------------- Página de privacidad ---------------------------------------------------------------------*/
.privacidad {
	width: 100%;
	display: block;
	padding: 0 40px 20px 40px;
}

.privacidad h2,
.privacidad h4,
.privacidad h6 {
	width: 100%;
	padding: 20px 20px 20px 20px;
	color: rgb(112, 112, 112);
}

.privacidad p {
	width: 100%;
	padding: 0px 0px 20px 0px;
	text-align: justify;
}

/* Estilo tabla */
.tabla-privacidad {
	width: 100%;
	display: block;
	border-collapse: collapse;
	border: 1px solid #ddd;
	margin: 0px 0px 20px 0px;
}

.tabla-privacidad tr {
	width: 100%;
	border: 1px solid #ddd;
}

.tabla-privacidad th {
	color: rgb(112, 112, 112);
	padding: 10px;
}

.tabla-privacidad td {
	color: rgb(112, 112, 112);
	padding: 10px;
}

/* Estilo lista */
.privacidad ul {
	width: 100%;
	padding: 0px 20px 20px 20px;
	text-align: justify;
	list-style: none;
}

.privacidad ul li::before {
	content: '• ';
	color: rgb(112, 112, 112);
	list-style-position: outside;
}

/* Estilo del botón de regreso de la página de privacidad */
.regreso-priva {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.regreso-priva button {
	width: 100px;
	height: auto;
	margin-bottom: 10px;
	padding: 5px 10px 5px 10px;
	background-color: #dfcfbf83;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.regreso-priva a {
	text-decoration: none;
	color: rgb(150, 150, 150);
	font-family: inherit;
	font-weight: 600;
}

@media all and (max-width: 768px) {
	.privacidad {
		padding: 0 20px 20px 20px;
	}

	/* Estilo tabla */
	.privacidad th {
		display: none;
	}

	.tabla-privacidad td {
		width: 100%;
		display: block;
		text-align: justify;
		border: 1px solid #ddd;
	}

	.tratamiento {
		color: rgb(112, 112, 112);
		font-weight: 600;
		text-align: center;
	}
}


/*--------------------------------------------------------------------- Página de ERROR 404 ---------------------------------------------------------------------*/
.texto-error404 {
	width: 100%;
	display: block;
	padding: 0 40px 20px 40px;
}

.texto-error404 h2,
.texto-error404 h4 {
	padding: 20px 20px 20px 20px;
	color: rgb(112, 112, 112);
	font-size: 14px;
	text-align: center;
	font-weight: 300;
}

/* Estilo del botón de regreso de la página de ERROR 404 */
.regreso-texto-error404 {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.regreso-texto-error404 button {
	width: 100px;
	height: auto;
	margin-bottom: 10px;
	padding: 5px 10px 5px 10px;
	background-color: #dfcfbf83;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.regreso-texto-error404 a {
	text-decoration: none;
	color: rgb(150, 150, 150);
	font-family: inherit;
	font-weight: 600;
}

@media all and (max-width: 768px) {
	.texto-error404 {
		padding: 0 20px 20px 20px;
	}
}
