* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Roboto", sans-serif;
	text-decoration: none;
}

/* Custom properties */
:root {
	--blanco: #ffffff;
	--negro: #111111;
	--color-primario: #920000;
	--color-secundario: #920000;
	--color-fondo-carta: linear-gradient(
		-45deg,
		var(--blanco) 0%,
		transparent 30%
	);
	--color-degradado: linear-gradient(
		-45deg,
		var(--color-primario) 0%,
		transparent 45%
	);
	--color-degradado2: linear-gradient(
		-45deg,
		var(--color-primario) 0%,
		transparent 45%
	);
	--color-fondo-index: var(--negro);
	--color-formulario: linear-gradient(-45deg, #55cb60 0, var(--blanco) 40%);

	/* Sombras */
	--sombra: 6px 6px 8px #fff, -6px -6px 8px var(--negro);
	--sombra2: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
		0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06),
		0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086),
		0 100px 80px rgba(0, 0, 0, 0.12);
	/* Botones */
	--border: 2px double var(--color-primario);
	--border-radius: 20px;
	/* Tipografía */
	--tipo-principal: "Roboto", sans-serif;
	--tipo-secundaria: Verdana;
	/* Transition */
	--transition: all 0.5s ease-in-out;
}
html {
	color: var(--blanco);
}
body {
	background: var(--blanco);
	width: 100%;
}

/* fadeIn - En el <body> de cada página */
.fade-in {
	animation: fadeIn ease 2s;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* Títulos de las familias de comidas y bebidas */
p {
	font-size: 1rem;
	/* white-space: pre-line; Valida los saltos de linea \n que inserto en los textos largos que tengo en la data*/
	white-space: pre-line;
	color: var(--negro);
}
h2 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--negro);
}
h3 {
	font-size: 1rem;
	color: var(--color-secundario);
}
h4 {
	color: var(--negro);
	font-size: 1.1rem;
}

/* ICONOS BOOTSTRAP */
i {
	font-size: 1.7rem;
	padding: 0 0.8rem;
	color: var(--color-secundario);
}
/* Iconos Cartas */
.bi-house-fill,
.bi-heart-pulse,
.star2 {
	font-size: 2rem;
	padding: 0;
	text-align: center;
	color: var(--color-secundario);
}
.star3 {
	font-size: 2rem;
	color: var(--color-secundario);
	padding: 0;
}
/*  */
/* ******************** FOOTER ****************************** */
/* FOOTER. Da estilos a todos los footers */
.footer {
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 0.5rem;
	padding-bottom: 3rem;
}

/* Baner de alérgenos */
.baner__alergenos {
	max-width: 50rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin: 0 auto;
	padding: 1rem;
	border-radius: var(--border-radius);
	background: var(--color-degradado);
	box-shadow: var(--sombra2);
	color: var(--color-primario);
}
.footer__imagen-alergenos {
	width: 90%;
}
.footer__boton-alergenos {
	width: auto;
	background: var(--color-degradado);
	border-radius: var(--border-radius);
	margin: 0 auto;
	padding: 0.3rem 1rem;
	text-align: center;
	box-shadow: var(--sombra);
	color: var(--color-secundario);
}

.footer__div {
	font-weight: bold;
	margin: 1rem;
	text-align: center;
}
.footer__div h3 {
	color: var(--color-secundario);
}
.footer__creditos {
	font-size: 0.8rem;
	text-align: center;
	color: var(--color-secundario);
}
.footer__creditos span {
	font-size: 0.8rem;
}
.email {
	text-align: center;
	padding: 1rem;
	color: var(--color-secundario);
}
.restaurant123 {
	color: var(--color-secundario);
	font-size: 0.8rem;
}

/* ************************************************ */
/* Logo de fondo */
.logo__fondo {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -2;
	background-image: url(/images/fondo.webp);
	background-size: cover;
	background-repeat: repeat;
}
.logo__fondo-bebidas {
	width: 50%;
	max-width: 20rem;
	position: fixed;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
	z-index: -2;
}
.imagen__fondo {
	width: 100%;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: -2;
}

/* ***************** ANIMACIONES *************************** */
@keyframes rotation {
	from {
		transform: rotateX(180deg);
	}
	to {
		transform: rotateX(360deg);
	}
}

