/* Tarjeta flotante de consentimiento. [Codex 2026-09-17] */
#mpv-consent[hidden],
#mpv-consent [hidden] { display: none !important; }
.mpv-consent__backdrop {
	display: none;
}
.mpv-consent__card {
	background: #fffdf8;
	border: 1px solid rgba(36, 56, 43, .14);
	border-radius: 20px;
	bottom: 22px;
	box-shadow: 0 20px 60px rgba(17, 34, 24, .22);
	color: #24382b;
	left: 22px;
	max-width: min(430px, calc(100vw - 32px));
	padding: 24px;
	position: fixed;
	z-index: 99999;
}
.mpv-consent__leaf {
	color: #6f8f5f;
	font-size: 20px;
	line-height: 1;
	margin-bottom: 10px;
}
.mpv-consent__eyebrow {
	color: #7c3444;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .16em;
	margin: 0 0 5px;
	text-transform: uppercase;
}
.mpv-consent__card h2 {
	color: #24382b;
	font-family: var(--mpv-font-titulos, Bitter, serif);
	font-size: 23px;
	line-height: 1.2;
	margin: 0 34px 9px 0;
}
.mpv-consent__intro {
	font-size: 13.5px;
	line-height: 1.55;
	margin: 0 0 7px;
}
.mpv-consent__policy {
	color: #7c3444;
	font-size: 12.5px;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.mpv-consent__close {
	background: transparent;
	border: 0;
	color: #55614f;
	cursor: pointer;
	font-size: 25px;
	line-height: 1;
	padding: 5px;
	position: absolute;
	right: 14px;
	top: 12px;
}
.mpv-consent__settings {
	border-top: 1px solid rgba(36, 56, 43, .12);
	margin-top: 17px;
}
.mpv-consent__row {
	align-items: center;
	border-bottom: 1px solid rgba(36, 56, 43, .1);
	display: flex;
	font-size: 13px;
	gap: 15px;
	justify-content: space-between;
	padding: 12px 0;
}
.mpv-consent__row strong,
.mpv-consent__row small { display: block; }
.mpv-consent__row small {
	color: #687266;
	font-size: 11.5px;
	line-height: 1.35;
	margin-top: 2px;
}
.mpv-consent__row input {
	accent-color: #7c3444;
	height: 19px;
	width: 19px;
}
.mpv-consent__always {
	color: #6f8f5f;
	font-size: 11px;
	font-weight: 900;
	white-space: nowrap;
}
.mpv-consent__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 18px;
}
.mpv-consent__actions button {
	border-radius: 999px;
	cursor: pointer;
	font-family: inherit;
	font-size: 12.5px;
	font-weight: 900;
	min-height: 39px;
	padding: 9px 16px;
}
.mpv-consent__primary {
	background: #7c3444;
	border: 1px solid #7c3444;
	color: #fffdf8;
}
.mpv-consent__secondary {
	background: transparent;
	border: 1px solid rgba(36, 56, 43, .35);
	color: #24382b;
}
.mpv-consent__configure {
	background: transparent;
	border: 0;
	color: #55614f;
	padding-left: 5px !important;
	padding-right: 5px !important;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.mpv-consent__save { flex: 1; }
.mpv-consent__actions button:focus-visible,
.mpv-consent__close:focus-visible,
.mpv-consent__policy:focus-visible {
	outline: 3px solid rgba(111, 143, 95, .45);
	outline-offset: 2px;
}
@media (max-width: 520px) {
	.mpv-consent__card {
		bottom: 10px;
		left: 10px;
		max-width: calc(100vw - 20px);
		padding: 20px;
	}
	.mpv-consent__actions button { flex: 1 1 calc(50% - 5px); }
	.mpv-consent__configure { flex-basis: 100% !important; }
}
@media (prefers-reduced-motion: no-preference) {
	.mpv-consent__card { animation: mpvConsentIn .25s ease-out; }
	@keyframes mpvConsentIn {
		from { opacity: 0; transform: translateY(12px); }
		to { opacity: 1; transform: translateY(0); }
	}
}
