/* ==========================================================================
   Clarke Footer — Custom Hardcoded Footer
   Inspired by HostDime blog modern footer
   ========================================================================== */

:root {
	--uzeda-footer-accent: var(--uzeda-color-secondary, #A20E2D);
	--uzeda-footer-accent-dark: #850A24;
	--uzeda-footer-heading: var(--uzeda-color-heading, #4e5159);
	--uzeda-footer-text: var(--uzeda-color-text, #6B7280);
	--uzeda-footer-muted: var(--uzeda-color-text, #6B7280);
	--uzeda-footer-surface: var(--uzeda-color-bg, #FFFFFF);
	--uzeda-footer-soft: var(--uzeda-color-surface, #F3F4F6);
	--uzeda-footer-border: var(--uzeda-color-border, #E5E7EB);
	--uzeda-footer-on-dark: var(--uzeda-color-on-dark, #FFFFFF);
	--uzeda-footer-shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.18);
	--uzeda-footer-gradient-start: #232B31;
	--uzeda-footer-gradient-end: #374151;
}

/* ==========================================================================
   Pre-Footer: Fale Conosco + Newsletter
   ========================================================================== */
:is(.uzeda-prefooter) {
	background: linear-gradient(274deg, var(--uzeda-footer-gradient-start) 0%, var(--uzeda-footer-gradient-start) 65%, var(--uzeda-footer-gradient-end) 100%);
	padding: 80px 0 72px;
	font-family: var(--uzeda-font, 'Nunito Sans', 'Nunito Sans Fallback', -apple-system, BlinkMacSystemFont, sans-serif);
	position: relative;
	overflow: visible;
	contain: layout style;
}

:is(.uzeda-prefooter__container) {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

:is(.uzeda-prefooter__row) {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 56px;
	align-items: center;
}

/* ── Badge ── */
.uzeda-prefooter__contact :is(.uzeda-prefooter__badge) {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #8b0d19;
	color: var(--uzeda-footer-on-dark);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 6px 16px;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	margin-bottom: 20px;
}

:is(.uzeda-prefooter__badge) svg {
	flex-shrink: 0;
}

/* ── Title ── */
.uzeda-prefooter__contact :is(.uzeda-prefooter__title) {
	color: rgba(255, 255, 255, 0.9);
	font-size: 28px;
	font-weight: 500;
	line-height: 1.25;
	margin: 0 0 16px 0;
}

.uzeda-prefooter__final-desc {
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	line-height: 1.45;
	font-weight: 300;
	margin: 0 0 28px 0;
	max-width: 64ch;
}

/* ── Contact Cards ── */
:is(.uzeda-prefooter__cards) {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

:is(.uzeda-prefooter__card) {
	display: flex;
	align-items: center;
	gap: 16px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 24px 20px;
	text-decoration: none;
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

:is(.uzeda-prefooter__card):hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(162, 14, 45, 0.45);
	transform: translateY(-2px);
}

:is(.uzeda-prefooter__card):focus-visible {
	outline: 2px solid rgba(162, 14, 45, 0.65);
	outline-offset: 2px;
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(162, 14, 45, 0.45);
}

:is(.uzeda-prefooter__card-icon) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	flex-shrink: 0;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.18);
	color: #FFFFFF;
	transition: color 0.3s ease, background 0.3s ease;
}

:is(.uzeda-prefooter__card):hover :is(.uzeda-prefooter__card-icon) {
	background: rgba(162, 14, 45, 0.18);
}

:is(.uzeda-prefooter__card-icon--accent) {
	background: rgba(255, 255, 255, 0.18);
	color: #FFFFFF;
}

:is(.uzeda-prefooter__card-info) {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

:is(.uzeda-prefooter__card-info) strong {
	color: rgba(255, 255, 255, 0.92);
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
}

:is(.uzeda-prefooter__card-info) small {
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	font-weight: 200;
}

/* ── Newsletter Card (supports plugin clarke classes) ── */
:is(.uzeda-prefooter__newsletter) {
	background: var(--uzeda-footer-surface);
	border-radius: 22px;
	padding: 40px 36px;
	box-shadow: var(--uzeda-footer-shadow-soft);
}

:is(.uzeda-prefooter__newsletter-label) {
	display: inline-block;
	font-size: 17px;
	font-weight: 500;
	color: var(--uzeda-footer-muted);
}

:is(.uzeda-prefooter__newsletter-title) {
	font-size: 48px;
	line-height: 1.12;
	margin: 12px 0 14px;
	color: var(--uzeda-footer-heading);
}

:is(.uzeda-prefooter__newsletter-desc) {
	margin: 0 0 26px;
	font-size: 17px;
	line-height: 1.6;
	color: var(--uzeda-footer-muted);
}

:is(.uzeda-prefooter__form) {
	display: grid;
	gap: 14px;
}

:is(.uzeda-prefooter__form-fields) {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

:is(.uzeda-prefooter__input) {
	width: 100%;
	height: 46px;
	padding: 0 14px;
	font-family: inherit;
	font-size: 14px;
	color: var(--uzeda-footer-heading);
	background: var(--uzeda-footer-soft);
	border: 1px solid var(--uzeda-footer-border);
	border-radius: 10px;
	outline: none;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	box-sizing: border-box;
}

:is(.uzeda-prefooter__input)::placeholder {
	color: #9CA3AF;
}

:is(.uzeda-prefooter__input):focus {
	border-color: #8b0d19;
	box-shadow: 0 0 0 3px rgba(139, 13, 25, 0.18);
}

:is(.uzeda-prefooter__consent) {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 11px;
	color: #6B7280;
	line-height: 1.45;
	cursor: pointer;
}

:is(.uzeda-prefooter__consent) input[type="checkbox"] {
	margin-top: 2px;
	flex-shrink: 0;
	accent-color: var(--uzeda-footer-accent);
}

:is(.uzeda-prefooter__consent) a {
	color: var(--uzeda-footer-heading);
	text-decoration: underline;
	font-weight: 600;
	font-size: 11px;
}

:is(.uzeda-prefooter__consent) a:hover {
	color: var(--uzeda-footer-accent);
}

:is(.uzeda-prefooter__submit) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 24px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	color: var(--uzeda-footer-on-dark);
	background: #374151;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

:is(.uzeda-prefooter__submit):hover {
	background: rgba(162, 14, 45, 0.95);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(162, 14, 45, 0.32);
}

:is(.uzeda-prefooter__submit):focus-visible {
	outline: 2px solid rgba(162, 14, 45, 0.95);
	outline-offset: 2px;
}

:is(.uzeda-prefooter__newsletter) :is(button[type="submit"], input[type="submit"], .hs-button, .clarke-newsletter__submit, .clarke-newsletter__button) {
	background: #374151 !important;
	color: var(--uzeda-footer-on-dark) !important;
	border: 1px solid #374151 !important;
	box-shadow: 0 4px 16px rgba(162, 14, 45, 0.22);
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

:is(.uzeda-prefooter__newsletter) :is(button[type="submit"], input[type="submit"], .hs-button, .clarke-newsletter__submit, .clarke-newsletter__button):hover {
	background: rgba(162, 14, 45, 0.95) !important;
	border-color: rgba(162, 14, 45, 0.95) !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(162, 14, 45, 0.3);
}

:is(.uzeda-prefooter__newsletter) :is(button[type="submit"], input[type="submit"], .hs-button, .clarke-newsletter__submit, .clarke-newsletter__button):focus-visible {
	outline: 2px solid rgba(162, 14, 45, 0.95);
	outline-offset: 2px;
}

:is(.uzeda-prefooter__submit):active {
	transform: translateY(0);
}

:is(.uzeda-prefooter__safe) {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: #9CA3AF;
	margin: 4px 0 0 0;
}

:is(.uzeda-prefooter__safe) svg {
	flex-shrink: 0;
	color: #9CA3AF;
}

/* ── Pre-Footer Responsive ── */
@media screen and (max-width: 1024px) {
	:is(.uzeda-prefooter__row) {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	:is(.uzeda-prefooter__newsletter) {
		max-width: 480px;
	}
}

@media screen and (max-width: 768px) {
	:is(.uzeda-prefooter) {
		padding: 56px 0;
	}

	.uzeda-prefooter__contact :is(.uzeda-prefooter__title) {
		font-size: 22px;
	}

	.uzeda-prefooter__final-desc {
		font-size: 13px;
	}

	:is(.uzeda-prefooter__cards) {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	:is(.uzeda-prefooter__newsletter) {
		max-width: 100%;
	}

	:is(.uzeda-prefooter__form-fields) {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 640px) {
	:is(.uzeda-prefooter) {
		padding: 40px 0;
	}

	.uzeda-prefooter__contact :is(.uzeda-prefooter__title) {
		font-size: 20px;
	}

	.uzeda-prefooter__final-desc {
		font-size: 12px;
		margin-bottom: 20px;
	}

	:is(.uzeda-prefooter__card) {
		padding: 16px 14px;
		border-radius: 12px;
		gap: 12px;
	}

	:is(.uzeda-prefooter__card-icon) {
		width: 44px;
		height: 44px;
		border-radius: 12px;
	}

	:is(.uzeda-prefooter__card-icon) svg {
		width: 18px;
		height: 18px;
	}

	:is(.uzeda-prefooter__card-info) strong {
		font-size: 14px;
	}

	:is(.uzeda-prefooter__card-info) small {
		font-size: 11px;
	}

	:is(.uzeda-prefooter__newsletter) {
		padding: 28px 22px;
		border-radius: 16px;
	}
}

@media screen and (max-width: 480px) {
	:is(.uzeda-prefooter) {
		padding: 32px 0;
	}

	:is(.uzeda-prefooter__container) {
		padding: 0 12px;
	}

	.uzeda-prefooter__contact :is(.uzeda-prefooter__title) {
		font-size: 18px;
	}

	:is(.uzeda-prefooter__card) {
		padding: 14px 12px;
	}

	:is(.uzeda-prefooter__card-icon) {
		width: 40px;
		height: 40px;
	}

	:is(.uzeda-prefooter__newsletter) {
		padding: 22px 16px;
		border-radius: 14px;
	}

	.uzeda-prefooter__contact :is(.uzeda-prefooter__badge) {
		font-size: 10px;
		padding: 5px 12px;
	}
}

/* ==========================================================================
   Footer — Modern / Minimalist Light (HostDime-inspired)
   ========================================================================== */

/* ---------- Base ---------- */
:is(.uzeda-footer) {
	font-family: var(--uzeda-font, 'Nunito Sans', 'Nunito Sans Fallback', -apple-system, BlinkMacSystemFont, sans-serif);
	background: var(--uzeda-footer-surface);
	color: #4B5563;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	contain: layout style;
	content-visibility: auto;
	contain-intrinsic-size: auto 500px;
}

/* ---------- Container ---------- */
:is(.uzeda-footer__container) {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ==========================================================================
   Top Row: Brand (left) + Awards (right)
   ========================================================================== */
:is(.uzeda-footer__main) {
	padding: 56px 0 0;
	border-top: 1px solid var(--uzeda-footer-border);
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.03);
}

:is(.uzeda-footer__top-row) {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
}

/* ── Brand ── */
:is(.uzeda-footer__brand) {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

:is(.uzeda-footer__logo) {
	display: inline-block;
	line-height: 0;
}

:is(.uzeda-footer__logo) img {
	width: 133px;
	height: auto;
	max-width: 100%;
	display: block;
}

:is(.uzeda-footer__brand-tagline) {
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	color: #9CA3AF;
	letter-spacing: 0.01em;
}

/* ── Awards (top-row right) ── */
:is(.uzeda-footer__awards) {
	display: flex;
	align-items: center;
	gap: 20px;
}

:is(.uzeda-footer__awards-label) {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #9CA3AF;
	white-space: nowrap;
}

:is(.uzeda-footer__awards-list) {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

:is(.uzeda-footer__awards-list) img {
	height: 40px;
	width: auto;
	display: block;
	filter: none;
	opacity: 0.72;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

:is(.uzeda-footer__awards-list) img:hover {
	opacity: 1;
	transform: scale(1.05);
}

/* ==========================================================================
   Divider
   ========================================================================== */
:is(.uzeda-footer__divider) {
	border: none;
	border-top: 1px solid;
	border-image: linear-gradient(to right, transparent, var(--uzeda-footer-border) 20%, var(--uzeda-footer-border) 80%, transparent) 1;
	margin: 40px 0;
}

/* ==========================================================================
   Navigation Grid
   ========================================================================== */
:is(.uzeda-footer__nav) {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	padding-bottom: 56px;
}

/* ── Nav Column ── */
:is(.uzeda-footer__nav-col) {
	display: flex;
	flex-direction: column;
}

/* ── Nav Title ── */
:is(.uzeda-footer__nav-title) {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--uzeda-footer-heading);
	margin: 0 0 20px 0;
	padding-bottom: 12px;
	padding-left: 12px;
	position: relative;
	border-bottom: none;
	line-height: 1.3;
}

:is(.uzeda-footer__nav-title)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 12px;
	width: 32px;
	height: 2px;
	background: var(--uzeda-footer-accent);
	border-radius: 2px;
}

/* ── Nav List ── */
:is(.uzeda-footer__nav-list) {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

:is(.uzeda-footer__nav-list) li a {
	color: var(--uzeda-footer-text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-left: 0;
	transition: color 0.25s ease, padding-left 0.25s ease;
}

:is(.uzeda-footer__nav-list) li a::before {
	content: '›';
	color: #D1D5DB;
	font-size: 15px;
	font-weight: 700;
	flex-shrink: 0;
	transition: color 0.25s ease, transform 0.25s ease;
}

:is(.uzeda-footer__nav-list) li a:hover {
	color: var(--uzeda-footer-accent);
	padding-left: 4px;
}

:is(.uzeda-footer__nav-list) li a:hover::before {
	color: var(--uzeda-footer-accent);
	transform: translateX(2px);
}

/* ==========================================================================
   Address Block
   ========================================================================== */
:is(.uzeda-footer__address-block) {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 24px;
}

:is(.uzeda-footer__address-block) svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--uzeda-footer-accent);
	opacity: 0.8;
}

:is(.uzeda-footer__address) {
	font-style: normal;
	font-size: 13px;
	color: var(--uzeda-footer-text);
	line-height: 1.6;
	margin: 0;
}

/* ==========================================================================
   Social Links
   ========================================================================== */
:is(.uzeda-footer__social) {
	display: flex;
	gap: 10px;
}

:is(.uzeda-footer__social-link) {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid var(--uzeda-footer-border);
	background: var(--uzeda-footer-soft);
	color: #9CA3AF;
	transition: border-color 0.3s ease,
	            color 0.3s ease,
	            background 0.3s ease,
	            transform 0.3s ease;
}

:is(.uzeda-footer__social-link) svg {
	fill: currentColor;
	width: 17px;
	height: 17px;
}

:is(.uzeda-footer__social-link):hover {
	transform: translateY(-2px);
}

/* Individual brand-color hovers */
:is(.uzeda-footer__social-link)[title="Instagram"]:hover {
	border-color: #E1306C;
	color: #E1306C;
	background: rgba(225, 48, 108, 0.06);
}

:is(.uzeda-footer__social-link)[title="LinkedIn"]:hover {
	border-color: #0A66C2;
	color: #0A66C2;
	background: rgba(10, 102, 194, 0.06);
}

:is(.uzeda-footer__social-link)[title="Facebook"]:hover {
	border-color: #1877F2;
	color: #1877F2;
	background: rgba(24, 119, 242, 0.06);
}

:is(.uzeda-footer__social-link)[title="YouTube"]:hover {
	border-color: #FF0000;
	color: #FF0000;
	background: rgba(255, 0, 0, 0.06);
}

:is(.uzeda-footer__social-link)[title="WhatsApp"]:hover {
	border-color: #25D366;
	color: #25D366;
	background: rgba(37, 211, 102, 0.06);
}

/* ==========================================================================
   Bottom Bar
   ========================================================================== */
:is(.uzeda-footer__bottom) {
	background: var(--uzeda-footer-soft);
	padding: 18px 0;
	border-top: 1px solid var(--uzeda-footer-border);
}

:is(.uzeda-footer__bottom) :is(.uzeda-footer__container) {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

:is(.uzeda-footer__copyright) {
	margin: 0;
	font-size: 12px;
	color: #9CA3AF;
}

:is(.uzeda-footer__cnpj) {
	margin-left: 8px;
	padding-left: 8px;
	border-left: 1px solid #D1D5DB;
}

:is(.uzeda-footer__legal) {
	display: flex;
	align-items: center;
	gap: 8px;
}

:is(.uzeda-footer__legal) a {
	color: #9CA3AF;
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	transition: color 0.25s ease;
}

:is(.uzeda-footer__legal) a:hover {
	color: var(--uzeda-footer-accent);
}

:is(.uzeda-footer__legal) span:not(.uzeda-footer__legal-sep) {
	color: #9CA3AF;
	font-size: 12px;
	font-weight: 500;
}

:is(.uzeda-footer__legal-sep) {
	color: #D1D5DB;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media screen and (max-width: 1024px) {
	:is(.uzeda-footer__nav) {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	:is(.uzeda-footer__top-row) {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media screen and (max-width: 768px) {
	:is(.uzeda-footer__main) {
		padding: 40px 0 0;
	}

	:is(.uzeda-footer__divider) {
		margin: 28px 0;
	}

	:is(.uzeda-footer__nav) {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-bottom: 40px;
	}

	:is(.uzeda-footer__awards-list) img {
		height: 32px;
	}

	:is(.uzeda-footer__bottom) :is(.uzeda-footer__container) {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	:is(.uzeda-footer__cnpj) {
		display: block;
		margin-left: 0;
		padding-left: 0;
		border-left: none;
		margin-top: 4px;
	}
}

/* ==========================================================================
   Back-to-Top Button
   ========================================================================== */
:is(.uzeda-footer__back-to-top) {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid var(--uzeda-footer-border);
	background: var(--uzeda-footer-surface);
	color: var(--uzeda-footer-heading);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease,
	            background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

:is(.uzeda-footer__back-to-top).is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

:is(.uzeda-footer__back-to-top):hover {
	background: var(--uzeda-footer-accent);
	border-color: var(--uzeda-footer-accent);
	color: var(--uzeda-footer-on-dark);
	box-shadow: 0 6px 20px rgba(0, 191, 111, 0.25);
	transform: translateY(-2px);
}

:is(.uzeda-footer__back-to-top):active {
	transform: translateY(0);
}

:is(.uzeda-footer__back-to-top) svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
}

/* ==========================================================================
   Conecte-se Column Enhancement
   ========================================================================== */
:is(.uzeda-footer__nav-col):last-child :is(.uzeda-footer__nav-title)::after {
	width: 24px;
	background: var(--uzeda-footer-accent);
}

/* ---------- Accessibility ---------- */
:is(.uzeda-footer__social-link):focus-visible,
:is(.uzeda-footer__nav-list) li a:focus-visible,
:is(.uzeda-footer__legal) a:focus-visible,
:is(.uzeda-footer__back-to-top):focus-visible {
	outline: 2px solid var(--uzeda-footer-accent) !important;
	outline-offset: 2px !important;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
	:is(.uzeda-prefooter__card),
	:is(.uzeda-footer__awards-list) img,
	:is(.uzeda-footer__social-link),
	:is(.uzeda-footer__back-to-top),
	:is(.uzeda-footer__nav-list) li a,
	:is(.uzeda-prefooter__submit) {
		transition-duration: 0.01ms !important;
	}
}
