* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	background: #f2f2f2;
	font-family: 'Roboto', sans-serif;
}

p {
	margin-bottom: 20px;
	line-height: 150%;
}

main {
	margin: 20px auto;
	max-width: 1000px;
	background: #fff;
	min-height: 80vh;
	padding: 20px;
	border-radius: 10px;
}

.aviso-cookies {
	display: none;
	position: fixed;
	bottom: 50%;
	left: 50%;
	transform: translate(-50%, 50%);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 40px 30px 30px;
	width: 90%;
	max-width: 400px;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	text-align: center;
	z-index: 100;
}

.aviso-cookies.activo {
	display: block;
}

.aviso-cookies .galleta {
	width: 80px;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
}

.aviso-cookies .titulo {
	font-size: 22px;
	margin-bottom: 10px;
	color: #333;
	font-weight: bold;
}

.aviso-cookies .parrafo {
	font-size: 16px;
	color: #555;
	margin-bottom: 20px;
}

.aviso-cookies .boton {
	width: 100%;
	padding: 15px;
	font-size: 16px;
	background: #4DBFFF;
	border: none;
	border-radius: 8px;
	color: white;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
}

.aviso-cookies .boton:hover {
	background: #1ea0e6;
}

.aviso-cookies .enlace {
	display: inline-block;
	margin-top: 10px;
	color: #4DBFFF;
	text-decoration: none;
	font-size: 14px;
}

.aviso-cookies .enlace:hover {
	text-decoration: underline;
}

.fondo-aviso-cookies {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(2px);
	z-index: 99;
}

.fondo-aviso-cookies.activo {
	display: block;
}
