
#politicas {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	box-sizing: border-box;
	padding: 0.85rem 1.25rem;
	min-height: 10vh;
	display: none;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.75rem 1.25rem;
	background: linear-gradient(180deg, #505050 0%, #474747 100%);
	border-top: 3px solid #ffd35f;
	box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.35);
	color: #e8e8e8;
	font-size: clamp(0.75rem, 1.9vw, 0.95rem);
	line-height: 1.45;
	font-family: var(--font-main);
}

#politicas a {
	color: #ffd35f;
	text-decoration: none;
}

#politicas a:hover,
#politicas a:focus {
	color: #ffffff;
	text-decoration: underline;
}

.politicas-texto {
	flex: 1 1 16rem;
	max-width: 42rem;
}

.politicas-texto p {
	margin: 0;
}

#botCoo {
	padding: 0;
	flex-shrink: 0;
}

.politicas-botones {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	justify-content: center;
	align-items: stretch;
}

.btn-cookie {
	font-family: var(--font-main);
	border: 2px solid #ffd35f;
	padding: 0.5rem 1.15rem;
	font-size: inherit;
	font-weight: bold;
	cursor: pointer;
	border-radius: 2px;
	min-width: 9.5rem;
	text-align: center;
	line-height: 1.25;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-cookie--primario {
	background-color: #ffd35f;
	color: #474747;
}

.btn-cookie--primario:hover,
.btn-cookie--primario:focus {
	background-color: #ffe08a;
	border-color: #ffe08a;
	color: #2e2e2e;
}

.btn-cookie--secundario {
	background-color: #474747;
	color: #ffd35f;
}

.btn-cookie--secundario:hover,
.btn-cookie--secundario:focus {
	background-color: #5a5a5a;
	border-color: #ffe08a;
	color: #ffffff;
}

@media screen and (max-width: 800px) {
	#politicas {
		font-size: clamp(0.7rem, 3.2vw, 0.9rem);
		padding: 0.75rem 1rem;
		text-align: center;
	}

	.politicas-botones {
		width: 100%;
	}

	.btn-cookie {
		flex: 1 1 calc(50% - 0.5rem);
		min-width: 7.5rem;
	}
}
