/* =============================
	 HERO COOKIES & PRIVACY
	 Archivo: cookies.css
	 Descripción: Estilos específicos para la página de cookies y privacidad
	 ============================= */

#cookies-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #141414 0%, #1d1d1d 40%, #222 100%);
	overflow: hidden;
	padding: 4rem 1rem 3rem;
}

#cookies-hero .overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 40%, rgba(110,255,235,0.15), transparent 60%),
							radial-gradient(circle at 70% 65%, rgba(110,255,235,0.10), transparent 65%),
							rgba(0,0,0,0.55);
	pointer-events: none;
	mix-blend-mode: normal;
}

#cookies-hero .hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	text-align: center;
	color: #f2f2f2;
}

#cookies-hero h1 {
	font-size: clamp(2rem, 5vw, 3.2rem);
	line-height: 1.1;
	margin-bottom: 1rem;
	background: linear-gradient(90deg, #6effeb, #b4fff6);
		-webkit-background-clip: text;
		background-clip: text;
	color: transparent;
	filter: drop-shadow(0 4px 10px rgba(110,255,235,0.25));
}

#cookies-hero p {
	font-size: clamp(1rem, 2.2vw, 1.25rem);
	line-height: 1.55;
	max-width: 740px;
	margin: 0 auto;
}

/* Pequeño adorno animado (opcional) */
#cookies-hero::after {
	content: '';
	position: absolute;
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, rgba(110,255,235,0.18) 0%, rgba(110,255,235,0) 70%);
	top: -120px;
	right: -120px;
	filter: blur(6px);
	animation: floatGlow 12s linear infinite;
	opacity: .6;
}

/* =============================
	 SECCIONES DE TEXTO / LAYOUT
	 ============================= */
.cookies-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	max-width: 1400px;
	margin: 3rem auto;
	padding: 0 1.5rem 3rem;
}

.cookies-container {
	flex: 1 1 560px;
	max-width: 760px;
	background: #1b1b1b;
	padding: 2.2rem 2rem;
	border-radius: 0.75rem;
	border: 1px solid #242424;
	box-shadow: 0 4px 18px -4px rgba(0,0,0,0.5);
	position: relative;
	overflow: hidden;
}

.cookies-container::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(125deg, rgba(110,255,235,0.08), transparent 60%);
	pointer-events: none;
}

.cookies-container h1 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	background: linear-gradient(90deg, #6effeb, #d9fffa);
		-webkit-background-clip: text;
		background-clip: text;
	color: transparent;
}

.cookies-container h2,
.cookies-container h3,
.cookies-container h4 {
	color: #6effeb;
	margin-top: 1.8rem;
	margin-bottom: 0.75rem;
	font-weight: 600;
}

.cookies-container p,
.cookies-container li {
	color: #d6d6d6;
	line-height: 1.55;
	font-size: 0.97rem;
}

.cookies-container ul {
	padding-left: 1.2rem;
	margin: 0.75rem 0 1rem;
}

.cookies-container a {
	color: #6effeb;
	text-decoration: none;
	transition: color .25s;
}

.cookies-container a:hover {
	color: #b7fff6;
}

/* Listas más espaciadas */
.cookies-container li + li {
	margin-top: 0.4rem;
}

/* Tablas, code, etc (por si se añaden en un futuro) */
.cookies-container code {
	background: #262626;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
	font-size: 0.85rem;
	color: #9fffee;
}

/* Botón gestionar cookies en footer */
.manage-cookies-btn {
  margin-left: 1rem;
  background: #242424;
  color: #e9e9e9;
  border: 1px solid #2e2e2e;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: background .3s, color .3s, box-shadow .3s, transform .3s, border-color .3s;
}
.manage-cookies-btn:hover {
  background: #2d2d2d;
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(110,255,235,0.15);
}
.manage-cookies-btn:focus-visible {
  outline: 2px solid #6effeb;
  outline-offset: 2px;
}
.manage-cookies-btn:active {
	 transform: translateY(1px); 
}

/* =============================
	 RESPONSIVE
	 ============================= */
@media (max-width: 820px) {
	.cookies-flex { gap: 2rem; }
	.cookies-container { flex: 1 1 100%; }
}

@media (max-width: 560px) {
	#cookies-hero { min-height: 54vh; padding: 3.2rem 1rem 2.5rem; }
	#cookies-hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
	#cookies-hero p { font-size: 1rem; }
	.cookies-container { padding: 1.7rem 1.3rem; }
}


